]> Pileus Git - ~andy/linux/blob - drivers/scsi/lpfc/lpfc_sli.c
[SCSI] st: fix test of value range in st_set_options()
[~andy/linux] / drivers / scsi / lpfc / lpfc_sli.c
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.                        *
6  * www.emulex.com                                                  *
7  * Portions Copyright (C) 2004-2005 Christoph Hellwig              *
8  *                                                                 *
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  *******************************************************************/
21
22 #include <linux/blkdev.h>
23 #include <linux/pci.h>
24 #include <linux/interrupt.h>
25 #include <linux/delay.h>
26
27 #include <scsi/scsi.h>
28 #include <scsi/scsi_cmnd.h>
29 #include <scsi/scsi_device.h>
30 #include <scsi/scsi_host.h>
31 #include <scsi/scsi_transport_fc.h>
32 #include <scsi/fc/fc_fs.h>
33 #include <linux/aer.h>
34
35 #include "lpfc_hw4.h"
36 #include "lpfc_hw.h"
37 #include "lpfc_sli.h"
38 #include "lpfc_sli4.h"
39 #include "lpfc_nl.h"
40 #include "lpfc_disc.h"
41 #include "lpfc_scsi.h"
42 #include "lpfc.h"
43 #include "lpfc_crtn.h"
44 #include "lpfc_logmsg.h"
45 #include "lpfc_compat.h"
46 #include "lpfc_debugfs.h"
47 #include "lpfc_vport.h"
48
49 /* There are only four IOCB completion types. */
50 typedef enum _lpfc_iocb_type {
51         LPFC_UNKNOWN_IOCB,
52         LPFC_UNSOL_IOCB,
53         LPFC_SOL_IOCB,
54         LPFC_ABORT_IOCB
55 } lpfc_iocb_type;
56
57
58 /* Provide function prototypes local to this module. */
59 static int lpfc_sli_issue_mbox_s4(struct lpfc_hba *, LPFC_MBOXQ_t *,
60                                   uint32_t);
61 static int lpfc_sli4_read_rev(struct lpfc_hba *, LPFC_MBOXQ_t *,
62                               uint8_t *, uint32_t *);
63 static struct lpfc_iocbq *lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *,
64                                                          struct lpfc_iocbq *);
65 static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *,
66                                       struct hbq_dmabuf *);
67 static IOCB_t *
68 lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
69 {
70         return &iocbq->iocb;
71 }
72
73 /**
74  * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
75  * @q: The Work Queue to operate on.
76  * @wqe: The work Queue Entry to put on the Work queue.
77  *
78  * This routine will copy the contents of @wqe to the next available entry on
79  * the @q. This function will then ring the Work Queue Doorbell to signal the
80  * HBA to start processing the Work Queue Entry. This function returns 0 if
81  * successful. If no entries are available on @q then this function will return
82  * -ENOMEM.
83  * The caller is expected to hold the hbalock when calling this routine.
84  **/
85 static uint32_t
86 lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe *wqe)
87 {
88         union lpfc_wqe *temp_wqe = q->qe[q->host_index].wqe;
89         struct lpfc_register doorbell;
90         uint32_t host_index;
91
92         /* If the host has not yet processed the next entry then we are done */
93         if (((q->host_index + 1) % q->entry_count) == q->hba_index)
94                 return -ENOMEM;
95         /* set consumption flag every once in a while */
96         if (!((q->host_index + 1) % LPFC_RELEASE_NOTIFICATION_INTERVAL))
97                 bf_set(lpfc_wqe_gen_wqec, &wqe->generic, 1);
98
99         lpfc_sli_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
100
101         /* Update the host index before invoking device */
102         host_index = q->host_index;
103         q->host_index = ((q->host_index + 1) % q->entry_count);
104
105         /* Ring Doorbell */
106         doorbell.word0 = 0;
107         bf_set(lpfc_wq_doorbell_num_posted, &doorbell, 1);
108         bf_set(lpfc_wq_doorbell_index, &doorbell, host_index);
109         bf_set(lpfc_wq_doorbell_id, &doorbell, q->queue_id);
110         writel(doorbell.word0, q->phba->sli4_hba.WQDBregaddr);
111         readl(q->phba->sli4_hba.WQDBregaddr); /* Flush */
112
113         return 0;
114 }
115
116 /**
117  * lpfc_sli4_wq_release - Updates internal hba index for WQ
118  * @q: The Work Queue to operate on.
119  * @index: The index to advance the hba index to.
120  *
121  * This routine will update the HBA index of a queue to reflect consumption of
122  * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
123  * an entry the host calls this function to update the queue's internal
124  * pointers. This routine returns the number of entries that were consumed by
125  * the HBA.
126  **/
127 static uint32_t
128 lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
129 {
130         uint32_t released = 0;
131
132         if (q->hba_index == index)
133                 return 0;
134         do {
135                 q->hba_index = ((q->hba_index + 1) % q->entry_count);
136                 released++;
137         } while (q->hba_index != index);
138         return released;
139 }
140
141 /**
142  * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
143  * @q: The Mailbox Queue to operate on.
144  * @wqe: The Mailbox Queue Entry to put on the Work queue.
145  *
146  * This routine will copy the contents of @mqe to the next available entry on
147  * the @q. This function will then ring the Work Queue Doorbell to signal the
148  * HBA to start processing the Work Queue Entry. This function returns 0 if
149  * successful. If no entries are available on @q then this function will return
150  * -ENOMEM.
151  * The caller is expected to hold the hbalock when calling this routine.
152  **/
153 static uint32_t
154 lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
155 {
156         struct lpfc_mqe *temp_mqe = q->qe[q->host_index].mqe;
157         struct lpfc_register doorbell;
158         uint32_t host_index;
159
160         /* If the host has not yet processed the next entry then we are done */
161         if (((q->host_index + 1) % q->entry_count) == q->hba_index)
162                 return -ENOMEM;
163         lpfc_sli_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
164         /* Save off the mailbox pointer for completion */
165         q->phba->mbox = (MAILBOX_t *)temp_mqe;
166
167         /* Update the host index before invoking device */
168         host_index = q->host_index;
169         q->host_index = ((q->host_index + 1) % q->entry_count);
170
171         /* Ring Doorbell */
172         doorbell.word0 = 0;
173         bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
174         bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
175         writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
176         readl(q->phba->sli4_hba.MQDBregaddr); /* Flush */
177         return 0;
178 }
179
180 /**
181  * lpfc_sli4_mq_release - Updates internal hba index for MQ
182  * @q: The Mailbox Queue to operate on.
183  *
184  * This routine will update the HBA index of a queue to reflect consumption of
185  * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
186  * an entry the host calls this function to update the queue's internal
187  * pointers. This routine returns the number of entries that were consumed by
188  * the HBA.
189  **/
190 static uint32_t
191 lpfc_sli4_mq_release(struct lpfc_queue *q)
192 {
193         /* Clear the mailbox pointer for completion */
194         q->phba->mbox = NULL;
195         q->hba_index = ((q->hba_index + 1) % q->entry_count);
196         return 1;
197 }
198
199 /**
200  * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
201  * @q: The Event Queue to get the first valid EQE from
202  *
203  * This routine will get the first valid Event Queue Entry from @q, update
204  * the queue's internal hba index, and return the EQE. If no valid EQEs are in
205  * the Queue (no more work to do), or the Queue is full of EQEs that have been
206  * processed, but not popped back to the HBA then this routine will return NULL.
207  **/
208 static struct lpfc_eqe *
209 lpfc_sli4_eq_get(struct lpfc_queue *q)
210 {
211         struct lpfc_eqe *eqe = q->qe[q->hba_index].eqe;
212
213         /* If the next EQE is not valid then we are done */
214         if (!bf_get(lpfc_eqe_valid, eqe))
215                 return NULL;
216         /* If the host has not yet processed the next entry then we are done */
217         if (((q->hba_index + 1) % q->entry_count) == q->host_index)
218                 return NULL;
219
220         q->hba_index = ((q->hba_index + 1) % q->entry_count);
221         return eqe;
222 }
223
224 /**
225  * lpfc_sli4_eq_release - Indicates the host has finished processing an EQ
226  * @q: The Event Queue that the host has completed processing for.
227  * @arm: Indicates whether the host wants to arms this CQ.
228  *
229  * This routine will mark all Event Queue Entries on @q, from the last
230  * known completed entry to the last entry that was processed, as completed
231  * by clearing the valid bit for each completion queue entry. Then it will
232  * notify the HBA, by ringing the doorbell, that the EQEs have been processed.
233  * The internal host index in the @q will be updated by this routine to indicate
234  * that the host has finished processing the entries. The @arm parameter
235  * indicates that the queue should be rearmed when ringing the doorbell.
236  *
237  * This function will return the number of EQEs that were popped.
238  **/
239 uint32_t
240 lpfc_sli4_eq_release(struct lpfc_queue *q, bool arm)
241 {
242         uint32_t released = 0;
243         struct lpfc_eqe *temp_eqe;
244         struct lpfc_register doorbell;
245
246         /* while there are valid entries */
247         while (q->hba_index != q->host_index) {
248                 temp_eqe = q->qe[q->host_index].eqe;
249                 bf_set(lpfc_eqe_valid, temp_eqe, 0);
250                 released++;
251                 q->host_index = ((q->host_index + 1) % q->entry_count);
252         }
253         if (unlikely(released == 0 && !arm))
254                 return 0;
255
256         /* ring doorbell for number popped */
257         doorbell.word0 = 0;
258         if (arm) {
259                 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
260                 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
261         }
262         bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
263         bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
264         bf_set(lpfc_eqcq_doorbell_eqid, &doorbell, q->queue_id);
265         writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
266         return released;
267 }
268
269 /**
270  * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
271  * @q: The Completion Queue to get the first valid CQE from
272  *
273  * This routine will get the first valid Completion Queue Entry from @q, update
274  * the queue's internal hba index, and return the CQE. If no valid CQEs are in
275  * the Queue (no more work to do), or the Queue is full of CQEs that have been
276  * processed, but not popped back to the HBA then this routine will return NULL.
277  **/
278 static struct lpfc_cqe *
279 lpfc_sli4_cq_get(struct lpfc_queue *q)
280 {
281         struct lpfc_cqe *cqe;
282
283         /* If the next CQE is not valid then we are done */
284         if (!bf_get(lpfc_cqe_valid, q->qe[q->hba_index].cqe))
285                 return NULL;
286         /* If the host has not yet processed the next entry then we are done */
287         if (((q->hba_index + 1) % q->entry_count) == q->host_index)
288                 return NULL;
289
290         cqe = q->qe[q->hba_index].cqe;
291         q->hba_index = ((q->hba_index + 1) % q->entry_count);
292         return cqe;
293 }
294
295 /**
296  * lpfc_sli4_cq_release - Indicates the host has finished processing a CQ
297  * @q: The Completion Queue that the host has completed processing for.
298  * @arm: Indicates whether the host wants to arms this CQ.
299  *
300  * This routine will mark all Completion queue entries on @q, from the last
301  * known completed entry to the last entry that was processed, as completed
302  * by clearing the valid bit for each completion queue entry. Then it will
303  * notify the HBA, by ringing the doorbell, that the CQEs have been processed.
304  * The internal host index in the @q will be updated by this routine to indicate
305  * that the host has finished processing the entries. The @arm parameter
306  * indicates that the queue should be rearmed when ringing the doorbell.
307  *
308  * This function will return the number of CQEs that were released.
309  **/
310 uint32_t
311 lpfc_sli4_cq_release(struct lpfc_queue *q, bool arm)
312 {
313         uint32_t released = 0;
314         struct lpfc_cqe *temp_qe;
315         struct lpfc_register doorbell;
316
317         /* while there are valid entries */
318         while (q->hba_index != q->host_index) {
319                 temp_qe = q->qe[q->host_index].cqe;
320                 bf_set(lpfc_cqe_valid, temp_qe, 0);
321                 released++;
322                 q->host_index = ((q->host_index + 1) % q->entry_count);
323         }
324         if (unlikely(released == 0 && !arm))
325                 return 0;
326
327         /* ring doorbell for number popped */
328         doorbell.word0 = 0;
329         if (arm)
330                 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
331         bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, released);
332         bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
333         bf_set(lpfc_eqcq_doorbell_cqid, &doorbell, q->queue_id);
334         writel(doorbell.word0, q->phba->sli4_hba.EQCQDBregaddr);
335         return released;
336 }
337
338 /**
339  * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
340  * @q: The Header Receive Queue to operate on.
341  * @wqe: The Receive Queue Entry to put on the Receive queue.
342  *
343  * This routine will copy the contents of @wqe to the next available entry on
344  * the @q. This function will then ring the Receive Queue Doorbell to signal the
345  * HBA to start processing the Receive Queue Entry. This function returns the
346  * index that the rqe was copied to if successful. If no entries are available
347  * on @q then this function will return -ENOMEM.
348  * The caller is expected to hold the hbalock when calling this routine.
349  **/
350 static int
351 lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
352                  struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
353 {
354         struct lpfc_rqe *temp_hrqe = hq->qe[hq->host_index].rqe;
355         struct lpfc_rqe *temp_drqe = dq->qe[dq->host_index].rqe;
356         struct lpfc_register doorbell;
357         int put_index = hq->host_index;
358
359         if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
360                 return -EINVAL;
361         if (hq->host_index != dq->host_index)
362                 return -EINVAL;
363         /* If the host has not yet processed the next entry then we are done */
364         if (((hq->host_index + 1) % hq->entry_count) == hq->hba_index)
365                 return -EBUSY;
366         lpfc_sli_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
367         lpfc_sli_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
368
369         /* Update the host index to point to the next slot */
370         hq->host_index = ((hq->host_index + 1) % hq->entry_count);
371         dq->host_index = ((dq->host_index + 1) % dq->entry_count);
372
373         /* Ring The Header Receive Queue Doorbell */
374         if (!(hq->host_index % LPFC_RQ_POST_BATCH)) {
375                 doorbell.word0 = 0;
376                 bf_set(lpfc_rq_doorbell_num_posted, &doorbell,
377                        LPFC_RQ_POST_BATCH);
378                 bf_set(lpfc_rq_doorbell_id, &doorbell, hq->queue_id);
379                 writel(doorbell.word0, hq->phba->sli4_hba.RQDBregaddr);
380         }
381         return put_index;
382 }
383
384 /**
385  * lpfc_sli4_rq_release - Updates internal hba index for RQ
386  * @q: The Header Receive Queue to operate on.
387  *
388  * This routine will update the HBA index of a queue to reflect consumption of
389  * one Receive Queue Entry by the HBA. When the HBA indicates that it has
390  * consumed an entry the host calls this function to update the queue's
391  * internal pointers. This routine returns the number of entries that were
392  * consumed by the HBA.
393  **/
394 static uint32_t
395 lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
396 {
397         if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
398                 return 0;
399         hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
400         dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
401         return 1;
402 }
403
404 /**
405  * lpfc_cmd_iocb - Get next command iocb entry in the ring
406  * @phba: Pointer to HBA context object.
407  * @pring: Pointer to driver SLI ring object.
408  *
409  * This function returns pointer to next command iocb entry
410  * in the command ring. The caller must hold hbalock to prevent
411  * other threads consume the next command iocb.
412  * SLI-2/SLI-3 provide different sized iocbs.
413  **/
414 static inline IOCB_t *
415 lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
416 {
417         return (IOCB_t *) (((char *) pring->cmdringaddr) +
418                            pring->cmdidx * phba->iocb_cmd_size);
419 }
420
421 /**
422  * lpfc_resp_iocb - Get next response iocb entry in the ring
423  * @phba: Pointer to HBA context object.
424  * @pring: Pointer to driver SLI ring object.
425  *
426  * This function returns pointer to next response iocb entry
427  * in the response ring. The caller must hold hbalock to make sure
428  * that no other thread consume the next response iocb.
429  * SLI-2/SLI-3 provide different sized iocbs.
430  **/
431 static inline IOCB_t *
432 lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
433 {
434         return (IOCB_t *) (((char *) pring->rspringaddr) +
435                            pring->rspidx * phba->iocb_rsp_size);
436 }
437
438 /**
439  * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
440  * @phba: Pointer to HBA context object.
441  *
442  * This function is called with hbalock held. This function
443  * allocates a new driver iocb object from the iocb pool. If the
444  * allocation is successful, it returns pointer to the newly
445  * allocated iocb object else it returns NULL.
446  **/
447 static struct lpfc_iocbq *
448 __lpfc_sli_get_iocbq(struct lpfc_hba *phba)
449 {
450         struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
451         struct lpfc_iocbq * iocbq = NULL;
452
453         list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
454         return iocbq;
455 }
456
457 /**
458  * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
459  * @phba: Pointer to HBA context object.
460  * @xritag: XRI value.
461  *
462  * This function clears the sglq pointer from the array of acive
463  * sglq's. The xritag that is passed in is used to index into the
464  * array. Before the xritag can be used it needs to be adjusted
465  * by subtracting the xribase.
466  *
467  * Returns sglq ponter = success, NULL = Failure.
468  **/
469 static struct lpfc_sglq *
470 __lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
471 {
472         uint16_t adj_xri;
473         struct lpfc_sglq *sglq;
474         adj_xri = xritag - phba->sli4_hba.max_cfg_param.xri_base;
475         if (adj_xri > phba->sli4_hba.max_cfg_param.max_xri)
476                 return NULL;
477         sglq = phba->sli4_hba.lpfc_sglq_active_list[adj_xri];
478         phba->sli4_hba.lpfc_sglq_active_list[adj_xri] = NULL;
479         return sglq;
480 }
481
482 /**
483  * __lpfc_get_active_sglq - Get the active sglq for this XRI.
484  * @phba: Pointer to HBA context object.
485  * @xritag: XRI value.
486  *
487  * This function returns the sglq pointer from the array of acive
488  * sglq's. The xritag that is passed in is used to index into the
489  * array. Before the xritag can be used it needs to be adjusted
490  * by subtracting the xribase.
491  *
492  * Returns sglq ponter = success, NULL = Failure.
493  **/
494 static struct lpfc_sglq *
495 __lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
496 {
497         uint16_t adj_xri;
498         struct lpfc_sglq *sglq;
499         adj_xri = xritag - phba->sli4_hba.max_cfg_param.xri_base;
500         if (adj_xri > phba->sli4_hba.max_cfg_param.max_xri)
501                 return NULL;
502         sglq =  phba->sli4_hba.lpfc_sglq_active_list[adj_xri];
503         return sglq;
504 }
505
506 /**
507  * __lpfc_sli_get_sglq - Allocates an iocb object from sgl pool
508  * @phba: Pointer to HBA context object.
509  *
510  * This function is called with hbalock held. This function
511  * Gets a new driver sglq object from the sglq list. If the
512  * list is not empty then it is successful, it returns pointer to the newly
513  * allocated sglq object else it returns NULL.
514  **/
515 static struct lpfc_sglq *
516 __lpfc_sli_get_sglq(struct lpfc_hba *phba)
517 {
518         struct list_head *lpfc_sgl_list = &phba->sli4_hba.lpfc_sgl_list;
519         struct lpfc_sglq *sglq = NULL;
520         uint16_t adj_xri;
521         list_remove_head(lpfc_sgl_list, sglq, struct lpfc_sglq, list);
522         if (!sglq)
523                 return NULL;
524         adj_xri = sglq->sli4_xritag - phba->sli4_hba.max_cfg_param.xri_base;
525         phba->sli4_hba.lpfc_sglq_active_list[adj_xri] = sglq;
526         return sglq;
527 }
528
529 /**
530  * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
531  * @phba: Pointer to HBA context object.
532  *
533  * This function is called with no lock held. This function
534  * allocates a new driver iocb object from the iocb pool. If the
535  * allocation is successful, it returns pointer to the newly
536  * allocated iocb object else it returns NULL.
537  **/
538 struct lpfc_iocbq *
539 lpfc_sli_get_iocbq(struct lpfc_hba *phba)
540 {
541         struct lpfc_iocbq * iocbq = NULL;
542         unsigned long iflags;
543
544         spin_lock_irqsave(&phba->hbalock, iflags);
545         iocbq = __lpfc_sli_get_iocbq(phba);
546         spin_unlock_irqrestore(&phba->hbalock, iflags);
547         return iocbq;
548 }
549
550 /**
551  * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
552  * @phba: Pointer to HBA context object.
553  * @iocbq: Pointer to driver iocb object.
554  *
555  * This function is called with hbalock held to release driver
556  * iocb object to the iocb pool. The iotag in the iocb object
557  * does not change for each use of the iocb object. This function
558  * clears all other fields of the iocb object when it is freed.
559  * The sqlq structure that holds the xritag and phys and virtual
560  * mappings for the scatter gather list is retrieved from the
561  * active array of sglq. The get of the sglq pointer also clears
562  * the entry in the array. If the status of the IO indiactes that
563  * this IO was aborted then the sglq entry it put on the
564  * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
565  * IO has good status or fails for any other reason then the sglq
566  * entry is added to the free list (lpfc_sgl_list).
567  **/
568 static void
569 __lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
570 {
571         struct lpfc_sglq *sglq;
572         size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
573         unsigned long iflag;
574
575         if (iocbq->sli4_xritag == NO_XRI)
576                 sglq = NULL;
577         else
578                 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_xritag);
579         if (sglq)  {
580                 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED
581                         && ((iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
582                         && (iocbq->iocb.un.ulpWord[4]
583                                 == IOERR_ABORT_REQUESTED))) {
584                         spin_lock_irqsave(&phba->sli4_hba.abts_sgl_list_lock,
585                                         iflag);
586                         list_add(&sglq->list,
587                                 &phba->sli4_hba.lpfc_abts_els_sgl_list);
588                         spin_unlock_irqrestore(
589                                 &phba->sli4_hba.abts_sgl_list_lock, iflag);
590                 } else
591                         list_add(&sglq->list, &phba->sli4_hba.lpfc_sgl_list);
592         }
593
594
595         /*
596          * Clean all volatile data fields, preserve iotag and node struct.
597          */
598         memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
599         iocbq->sli4_xritag = NO_XRI;
600         list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
601 }
602
603 /**
604  * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
605  * @phba: Pointer to HBA context object.
606  * @iocbq: Pointer to driver iocb object.
607  *
608  * This function is called with hbalock held to release driver
609  * iocb object to the iocb pool. The iotag in the iocb object
610  * does not change for each use of the iocb object. This function
611  * clears all other fields of the iocb object when it is freed.
612  **/
613 static void
614 __lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
615 {
616         size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
617
618         /*
619          * Clean all volatile data fields, preserve iotag and node struct.
620          */
621         memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
622         iocbq->sli4_xritag = NO_XRI;
623         list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
624 }
625
626 /**
627  * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
628  * @phba: Pointer to HBA context object.
629  * @iocbq: Pointer to driver iocb object.
630  *
631  * This function is called with hbalock held to release driver
632  * iocb object to the iocb pool. The iotag in the iocb object
633  * does not change for each use of the iocb object. This function
634  * clears all other fields of the iocb object when it is freed.
635  **/
636 static void
637 __lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
638 {
639         phba->__lpfc_sli_release_iocbq(phba, iocbq);
640 }
641
642 /**
643  * lpfc_sli_release_iocbq - Release iocb to the iocb pool
644  * @phba: Pointer to HBA context object.
645  * @iocbq: Pointer to driver iocb object.
646  *
647  * This function is called with no lock held to release the iocb to
648  * iocb pool.
649  **/
650 void
651 lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
652 {
653         unsigned long iflags;
654
655         /*
656          * Clean all volatile data fields, preserve iotag and node struct.
657          */
658         spin_lock_irqsave(&phba->hbalock, iflags);
659         __lpfc_sli_release_iocbq(phba, iocbq);
660         spin_unlock_irqrestore(&phba->hbalock, iflags);
661 }
662
663 /**
664  * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
665  * @phba: Pointer to HBA context object.
666  * @iocblist: List of IOCBs.
667  * @ulpstatus: ULP status in IOCB command field.
668  * @ulpWord4: ULP word-4 in IOCB command field.
669  *
670  * This function is called with a list of IOCBs to cancel. It cancels the IOCB
671  * on the list by invoking the complete callback function associated with the
672  * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
673  * fields.
674  **/
675 void
676 lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
677                       uint32_t ulpstatus, uint32_t ulpWord4)
678 {
679         struct lpfc_iocbq *piocb;
680
681         while (!list_empty(iocblist)) {
682                 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
683
684                 if (!piocb->iocb_cmpl)
685                         lpfc_sli_release_iocbq(phba, piocb);
686                 else {
687                         piocb->iocb.ulpStatus = ulpstatus;
688                         piocb->iocb.un.ulpWord[4] = ulpWord4;
689                         (piocb->iocb_cmpl) (phba, piocb, piocb);
690                 }
691         }
692         return;
693 }
694
695 /**
696  * lpfc_sli_iocb_cmd_type - Get the iocb type
697  * @iocb_cmnd: iocb command code.
698  *
699  * This function is called by ring event handler function to get the iocb type.
700  * This function translates the iocb command to an iocb command type used to
701  * decide the final disposition of each completed IOCB.
702  * The function returns
703  * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
704  * LPFC_SOL_IOCB     if it is a solicited iocb completion
705  * LPFC_ABORT_IOCB   if it is an abort iocb
706  * LPFC_UNSOL_IOCB   if it is an unsolicited iocb
707  *
708  * The caller is not required to hold any lock.
709  **/
710 static lpfc_iocb_type
711 lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
712 {
713         lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
714
715         if (iocb_cmnd > CMD_MAX_IOCB_CMD)
716                 return 0;
717
718         switch (iocb_cmnd) {
719         case CMD_XMIT_SEQUENCE_CR:
720         case CMD_XMIT_SEQUENCE_CX:
721         case CMD_XMIT_BCAST_CN:
722         case CMD_XMIT_BCAST_CX:
723         case CMD_ELS_REQUEST_CR:
724         case CMD_ELS_REQUEST_CX:
725         case CMD_CREATE_XRI_CR:
726         case CMD_CREATE_XRI_CX:
727         case CMD_GET_RPI_CN:
728         case CMD_XMIT_ELS_RSP_CX:
729         case CMD_GET_RPI_CR:
730         case CMD_FCP_IWRITE_CR:
731         case CMD_FCP_IWRITE_CX:
732         case CMD_FCP_IREAD_CR:
733         case CMD_FCP_IREAD_CX:
734         case CMD_FCP_ICMND_CR:
735         case CMD_FCP_ICMND_CX:
736         case CMD_FCP_TSEND_CX:
737         case CMD_FCP_TRSP_CX:
738         case CMD_FCP_TRECEIVE_CX:
739         case CMD_FCP_AUTO_TRSP_CX:
740         case CMD_ADAPTER_MSG:
741         case CMD_ADAPTER_DUMP:
742         case CMD_XMIT_SEQUENCE64_CR:
743         case CMD_XMIT_SEQUENCE64_CX:
744         case CMD_XMIT_BCAST64_CN:
745         case CMD_XMIT_BCAST64_CX:
746         case CMD_ELS_REQUEST64_CR:
747         case CMD_ELS_REQUEST64_CX:
748         case CMD_FCP_IWRITE64_CR:
749         case CMD_FCP_IWRITE64_CX:
750         case CMD_FCP_IREAD64_CR:
751         case CMD_FCP_IREAD64_CX:
752         case CMD_FCP_ICMND64_CR:
753         case CMD_FCP_ICMND64_CX:
754         case CMD_FCP_TSEND64_CX:
755         case CMD_FCP_TRSP64_CX:
756         case CMD_FCP_TRECEIVE64_CX:
757         case CMD_GEN_REQUEST64_CR:
758         case CMD_GEN_REQUEST64_CX:
759         case CMD_XMIT_ELS_RSP64_CX:
760         case DSSCMD_IWRITE64_CR:
761         case DSSCMD_IWRITE64_CX:
762         case DSSCMD_IREAD64_CR:
763         case DSSCMD_IREAD64_CX:
764         case DSSCMD_INVALIDATE_DEK:
765         case DSSCMD_SET_KEK:
766         case DSSCMD_GET_KEK_ID:
767         case DSSCMD_GEN_XFER:
768                 type = LPFC_SOL_IOCB;
769                 break;
770         case CMD_ABORT_XRI_CN:
771         case CMD_ABORT_XRI_CX:
772         case CMD_CLOSE_XRI_CN:
773         case CMD_CLOSE_XRI_CX:
774         case CMD_XRI_ABORTED_CX:
775         case CMD_ABORT_MXRI64_CN:
776         case CMD_XMIT_BLS_RSP64_CX:
777                 type = LPFC_ABORT_IOCB;
778                 break;
779         case CMD_RCV_SEQUENCE_CX:
780         case CMD_RCV_ELS_REQ_CX:
781         case CMD_RCV_SEQUENCE64_CX:
782         case CMD_RCV_ELS_REQ64_CX:
783         case CMD_ASYNC_STATUS:
784         case CMD_IOCB_RCV_SEQ64_CX:
785         case CMD_IOCB_RCV_ELS64_CX:
786         case CMD_IOCB_RCV_CONT64_CX:
787         case CMD_IOCB_RET_XRI64_CX:
788                 type = LPFC_UNSOL_IOCB;
789                 break;
790         case CMD_IOCB_XMIT_MSEQ64_CR:
791         case CMD_IOCB_XMIT_MSEQ64_CX:
792         case CMD_IOCB_RCV_SEQ_LIST64_CX:
793         case CMD_IOCB_RCV_ELS_LIST64_CX:
794         case CMD_IOCB_CLOSE_EXTENDED_CN:
795         case CMD_IOCB_ABORT_EXTENDED_CN:
796         case CMD_IOCB_RET_HBQE64_CN:
797         case CMD_IOCB_FCP_IBIDIR64_CR:
798         case CMD_IOCB_FCP_IBIDIR64_CX:
799         case CMD_IOCB_FCP_ITASKMGT64_CX:
800         case CMD_IOCB_LOGENTRY_CN:
801         case CMD_IOCB_LOGENTRY_ASYNC_CN:
802                 printk("%s - Unhandled SLI-3 Command x%x\n",
803                                 __func__, iocb_cmnd);
804                 type = LPFC_UNKNOWN_IOCB;
805                 break;
806         default:
807                 type = LPFC_UNKNOWN_IOCB;
808                 break;
809         }
810
811         return type;
812 }
813
814 /**
815  * lpfc_sli_ring_map - Issue config_ring mbox for all rings
816  * @phba: Pointer to HBA context object.
817  *
818  * This function is called from SLI initialization code
819  * to configure every ring of the HBA's SLI interface. The
820  * caller is not required to hold any lock. This function issues
821  * a config_ring mailbox command for each ring.
822  * This function returns zero if successful else returns a negative
823  * error code.
824  **/
825 static int
826 lpfc_sli_ring_map(struct lpfc_hba *phba)
827 {
828         struct lpfc_sli *psli = &phba->sli;
829         LPFC_MBOXQ_t *pmb;
830         MAILBOX_t *pmbox;
831         int i, rc, ret = 0;
832
833         pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
834         if (!pmb)
835                 return -ENOMEM;
836         pmbox = &pmb->u.mb;
837         phba->link_state = LPFC_INIT_MBX_CMDS;
838         for (i = 0; i < psli->num_rings; i++) {
839                 lpfc_config_ring(phba, i, pmb);
840                 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
841                 if (rc != MBX_SUCCESS) {
842                         lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
843                                         "0446 Adapter failed to init (%d), "
844                                         "mbxCmd x%x CFG_RING, mbxStatus x%x, "
845                                         "ring %d\n",
846                                         rc, pmbox->mbxCommand,
847                                         pmbox->mbxStatus, i);
848                         phba->link_state = LPFC_HBA_ERROR;
849                         ret = -ENXIO;
850                         break;
851                 }
852         }
853         mempool_free(pmb, phba->mbox_mem_pool);
854         return ret;
855 }
856
857 /**
858  * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
859  * @phba: Pointer to HBA context object.
860  * @pring: Pointer to driver SLI ring object.
861  * @piocb: Pointer to the driver iocb object.
862  *
863  * This function is called with hbalock held. The function adds the
864  * new iocb to txcmplq of the given ring. This function always returns
865  * 0. If this function is called for ELS ring, this function checks if
866  * there is a vport associated with the ELS command. This function also
867  * starts els_tmofunc timer if this is an ELS command.
868  **/
869 static int
870 lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
871                         struct lpfc_iocbq *piocb)
872 {
873         list_add_tail(&piocb->list, &pring->txcmplq);
874         pring->txcmplq_cnt++;
875         if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
876            (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
877            (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
878                 if (!piocb->vport)
879                         BUG();
880                 else
881                         mod_timer(&piocb->vport->els_tmofunc,
882                                   jiffies + HZ * (phba->fc_ratov << 1));
883         }
884
885
886         return 0;
887 }
888
889 /**
890  * lpfc_sli_ringtx_get - Get first element of the txq
891  * @phba: Pointer to HBA context object.
892  * @pring: Pointer to driver SLI ring object.
893  *
894  * This function is called with hbalock held to get next
895  * iocb in txq of the given ring. If there is any iocb in
896  * the txq, the function returns first iocb in the list after
897  * removing the iocb from the list, else it returns NULL.
898  **/
899 static struct lpfc_iocbq *
900 lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
901 {
902         struct lpfc_iocbq *cmd_iocb;
903
904         list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
905         if (cmd_iocb != NULL)
906                 pring->txq_cnt--;
907         return cmd_iocb;
908 }
909
910 /**
911  * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
912  * @phba: Pointer to HBA context object.
913  * @pring: Pointer to driver SLI ring object.
914  *
915  * This function is called with hbalock held and the caller must post the
916  * iocb without releasing the lock. If the caller releases the lock,
917  * iocb slot returned by the function is not guaranteed to be available.
918  * The function returns pointer to the next available iocb slot if there
919  * is available slot in the ring, else it returns NULL.
920  * If the get index of the ring is ahead of the put index, the function
921  * will post an error attention event to the worker thread to take the
922  * HBA to offline state.
923  **/
924 static IOCB_t *
925 lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
926 {
927         struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
928         uint32_t  max_cmd_idx = pring->numCiocb;
929         if ((pring->next_cmdidx == pring->cmdidx) &&
930            (++pring->next_cmdidx >= max_cmd_idx))
931                 pring->next_cmdidx = 0;
932
933         if (unlikely(pring->local_getidx == pring->next_cmdidx)) {
934
935                 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
936
937                 if (unlikely(pring->local_getidx >= max_cmd_idx)) {
938                         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
939                                         "0315 Ring %d issue: portCmdGet %d "
940                                         "is bigger than cmd ring %d\n",
941                                         pring->ringno,
942                                         pring->local_getidx, max_cmd_idx);
943
944                         phba->link_state = LPFC_HBA_ERROR;
945                         /*
946                          * All error attention handlers are posted to
947                          * worker thread
948                          */
949                         phba->work_ha |= HA_ERATT;
950                         phba->work_hs = HS_FFER3;
951
952                         lpfc_worker_wake_up(phba);
953
954                         return NULL;
955                 }
956
957                 if (pring->local_getidx == pring->next_cmdidx)
958                         return NULL;
959         }
960
961         return lpfc_cmd_iocb(phba, pring);
962 }
963
964 /**
965  * lpfc_sli_next_iotag - Get an iotag for the iocb
966  * @phba: Pointer to HBA context object.
967  * @iocbq: Pointer to driver iocb object.
968  *
969  * This function gets an iotag for the iocb. If there is no unused iotag and
970  * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
971  * array and assigns a new iotag.
972  * The function returns the allocated iotag if successful, else returns zero.
973  * Zero is not a valid iotag.
974  * The caller is not required to hold any lock.
975  **/
976 uint16_t
977 lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
978 {
979         struct lpfc_iocbq **new_arr;
980         struct lpfc_iocbq **old_arr;
981         size_t new_len;
982         struct lpfc_sli *psli = &phba->sli;
983         uint16_t iotag;
984
985         spin_lock_irq(&phba->hbalock);
986         iotag = psli->last_iotag;
987         if(++iotag < psli->iocbq_lookup_len) {
988                 psli->last_iotag = iotag;
989                 psli->iocbq_lookup[iotag] = iocbq;
990                 spin_unlock_irq(&phba->hbalock);
991                 iocbq->iotag = iotag;
992                 return iotag;
993         } else if (psli->iocbq_lookup_len < (0xffff
994                                            - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
995                 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
996                 spin_unlock_irq(&phba->hbalock);
997                 new_arr = kzalloc(new_len * sizeof (struct lpfc_iocbq *),
998                                   GFP_KERNEL);
999                 if (new_arr) {
1000                         spin_lock_irq(&phba->hbalock);
1001                         old_arr = psli->iocbq_lookup;
1002                         if (new_len <= psli->iocbq_lookup_len) {
1003                                 /* highly unprobable case */
1004                                 kfree(new_arr);
1005                                 iotag = psli->last_iotag;
1006                                 if(++iotag < psli->iocbq_lookup_len) {
1007                                         psli->last_iotag = iotag;
1008                                         psli->iocbq_lookup[iotag] = iocbq;
1009                                         spin_unlock_irq(&phba->hbalock);
1010                                         iocbq->iotag = iotag;
1011                                         return iotag;
1012                                 }
1013                                 spin_unlock_irq(&phba->hbalock);
1014                                 return 0;
1015                         }
1016                         if (psli->iocbq_lookup)
1017                                 memcpy(new_arr, old_arr,
1018                                        ((psli->last_iotag  + 1) *
1019                                         sizeof (struct lpfc_iocbq *)));
1020                         psli->iocbq_lookup = new_arr;
1021                         psli->iocbq_lookup_len = new_len;
1022                         psli->last_iotag = iotag;
1023                         psli->iocbq_lookup[iotag] = iocbq;
1024                         spin_unlock_irq(&phba->hbalock);
1025                         iocbq->iotag = iotag;
1026                         kfree(old_arr);
1027                         return iotag;
1028                 }
1029         } else
1030                 spin_unlock_irq(&phba->hbalock);
1031
1032         lpfc_printf_log(phba, KERN_ERR,LOG_SLI,
1033                         "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1034                         psli->last_iotag);
1035
1036         return 0;
1037 }
1038
1039 /**
1040  * lpfc_sli_submit_iocb - Submit an iocb to the firmware
1041  * @phba: Pointer to HBA context object.
1042  * @pring: Pointer to driver SLI ring object.
1043  * @iocb: Pointer to iocb slot in the ring.
1044  * @nextiocb: Pointer to driver iocb object which need to be
1045  *            posted to firmware.
1046  *
1047  * This function is called with hbalock held to post a new iocb to
1048  * the firmware. This function copies the new iocb to ring iocb slot and
1049  * updates the ring pointers. It adds the new iocb to txcmplq if there is
1050  * a completion call back for this iocb else the function will free the
1051  * iocb object.
1052  **/
1053 static void
1054 lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1055                 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1056 {
1057         /*
1058          * Set up an iotag
1059          */
1060         nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
1061
1062
1063         if (pring->ringno == LPFC_ELS_RING) {
1064                 lpfc_debugfs_slow_ring_trc(phba,
1065                         "IOCB cmd ring:   wd4:x%08x wd6:x%08x wd7:x%08x",
1066                         *(((uint32_t *) &nextiocb->iocb) + 4),
1067                         *(((uint32_t *) &nextiocb->iocb) + 6),
1068                         *(((uint32_t *) &nextiocb->iocb) + 7));
1069         }
1070
1071         /*
1072          * Issue iocb command to adapter
1073          */
1074         lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
1075         wmb();
1076         pring->stats.iocb_cmd++;
1077
1078         /*
1079          * If there is no completion routine to call, we can release the
1080          * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1081          * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1082          */
1083         if (nextiocb->iocb_cmpl)
1084                 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
1085         else
1086                 __lpfc_sli_release_iocbq(phba, nextiocb);
1087
1088         /*
1089          * Let the HBA know what IOCB slot will be the next one the
1090          * driver will put a command into.
1091          */
1092         pring->cmdidx = pring->next_cmdidx;
1093         writel(pring->cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
1094 }
1095
1096 /**
1097  * lpfc_sli_update_full_ring - Update the chip attention register
1098  * @phba: Pointer to HBA context object.
1099  * @pring: Pointer to driver SLI ring object.
1100  *
1101  * The caller is not required to hold any lock for calling this function.
1102  * This function updates the chip attention bits for the ring to inform firmware
1103  * that there are pending work to be done for this ring and requests an
1104  * interrupt when there is space available in the ring. This function is
1105  * called when the driver is unable to post more iocbs to the ring due
1106  * to unavailability of space in the ring.
1107  **/
1108 static void
1109 lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1110 {
1111         int ringno = pring->ringno;
1112
1113         pring->flag |= LPFC_CALL_RING_AVAILABLE;
1114
1115         wmb();
1116
1117         /*
1118          * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1119          * The HBA will tell us when an IOCB entry is available.
1120          */
1121         writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1122         readl(phba->CAregaddr); /* flush */
1123
1124         pring->stats.iocb_cmd_full++;
1125 }
1126
1127 /**
1128  * lpfc_sli_update_ring - Update chip attention register
1129  * @phba: Pointer to HBA context object.
1130  * @pring: Pointer to driver SLI ring object.
1131  *
1132  * This function updates the chip attention register bit for the
1133  * given ring to inform HBA that there is more work to be done
1134  * in this ring. The caller is not required to hold any lock.
1135  **/
1136 static void
1137 lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1138 {
1139         int ringno = pring->ringno;
1140
1141         /*
1142          * Tell the HBA that there is work to do in this ring.
1143          */
1144         if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1145                 wmb();
1146                 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1147                 readl(phba->CAregaddr); /* flush */
1148         }
1149 }
1150
1151 /**
1152  * lpfc_sli_resume_iocb - Process iocbs in the txq
1153  * @phba: Pointer to HBA context object.
1154  * @pring: Pointer to driver SLI ring object.
1155  *
1156  * This function is called with hbalock held to post pending iocbs
1157  * in the txq to the firmware. This function is called when driver
1158  * detects space available in the ring.
1159  **/
1160 static void
1161 lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1162 {
1163         IOCB_t *iocb;
1164         struct lpfc_iocbq *nextiocb;
1165
1166         /*
1167          * Check to see if:
1168          *  (a) there is anything on the txq to send
1169          *  (b) link is up
1170          *  (c) link attention events can be processed (fcp ring only)
1171          *  (d) IOCB processing is not blocked by the outstanding mbox command.
1172          */
1173         if (pring->txq_cnt &&
1174             lpfc_is_link_up(phba) &&
1175             (pring->ringno != phba->sli.fcp_ring ||
1176              phba->sli.sli_flag & LPFC_PROCESS_LA)) {
1177
1178                 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1179                        (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1180                         lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1181
1182                 if (iocb)
1183                         lpfc_sli_update_ring(phba, pring);
1184                 else
1185                         lpfc_sli_update_full_ring(phba, pring);
1186         }
1187
1188         return;
1189 }
1190
1191 /**
1192  * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
1193  * @phba: Pointer to HBA context object.
1194  * @hbqno: HBQ number.
1195  *
1196  * This function is called with hbalock held to get the next
1197  * available slot for the given HBQ. If there is free slot
1198  * available for the HBQ it will return pointer to the next available
1199  * HBQ entry else it will return NULL.
1200  **/
1201 static struct lpfc_hbq_entry *
1202 lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1203 {
1204         struct hbq_s *hbqp = &phba->hbqs[hbqno];
1205
1206         if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1207             ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1208                 hbqp->next_hbqPutIdx = 0;
1209
1210         if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
1211                 uint32_t raw_index = phba->hbq_get[hbqno];
1212                 uint32_t getidx = le32_to_cpu(raw_index);
1213
1214                 hbqp->local_hbqGetIdx = getidx;
1215
1216                 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1217                         lpfc_printf_log(phba, KERN_ERR,
1218                                         LOG_SLI | LOG_VPORT,
1219                                         "1802 HBQ %d: local_hbqGetIdx "
1220                                         "%u is > than hbqp->entry_count %u\n",
1221                                         hbqno, hbqp->local_hbqGetIdx,
1222                                         hbqp->entry_count);
1223
1224                         phba->link_state = LPFC_HBA_ERROR;
1225                         return NULL;
1226                 }
1227
1228                 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1229                         return NULL;
1230         }
1231
1232         return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1233                         hbqp->hbqPutIdx;
1234 }
1235
1236 /**
1237  * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
1238  * @phba: Pointer to HBA context object.
1239  *
1240  * This function is called with no lock held to free all the
1241  * hbq buffers while uninitializing the SLI interface. It also
1242  * frees the HBQ buffers returned by the firmware but not yet
1243  * processed by the upper layers.
1244  **/
1245 void
1246 lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
1247 {
1248         struct lpfc_dmabuf *dmabuf, *next_dmabuf;
1249         struct hbq_dmabuf *hbq_buf;
1250         unsigned long flags;
1251         int i, hbq_count;
1252         uint32_t hbqno;
1253
1254         hbq_count = lpfc_sli_hbq_count();
1255         /* Return all memory used by all HBQs */
1256         spin_lock_irqsave(&phba->hbalock, flags);
1257         for (i = 0; i < hbq_count; ++i) {
1258                 list_for_each_entry_safe(dmabuf, next_dmabuf,
1259                                 &phba->hbqs[i].hbq_buffer_list, list) {
1260                         hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1261                         list_del(&hbq_buf->dbuf.list);
1262                         (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
1263                 }
1264                 phba->hbqs[i].buffer_count = 0;
1265         }
1266         /* Return all HBQ buffer that are in-fly */
1267         list_for_each_entry_safe(dmabuf, next_dmabuf, &phba->rb_pend_list,
1268                                  list) {
1269                 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
1270                 list_del(&hbq_buf->dbuf.list);
1271                 if (hbq_buf->tag == -1) {
1272                         (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1273                                 (phba, hbq_buf);
1274                 } else {
1275                         hbqno = hbq_buf->tag >> 16;
1276                         if (hbqno >= LPFC_MAX_HBQS)
1277                                 (phba->hbqs[LPFC_ELS_HBQ].hbq_free_buffer)
1278                                         (phba, hbq_buf);
1279                         else
1280                                 (phba->hbqs[hbqno].hbq_free_buffer)(phba,
1281                                         hbq_buf);
1282                 }
1283         }
1284
1285         /* Mark the HBQs not in use */
1286         phba->hbq_in_use = 0;
1287         spin_unlock_irqrestore(&phba->hbalock, flags);
1288 }
1289
1290 /**
1291  * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
1292  * @phba: Pointer to HBA context object.
1293  * @hbqno: HBQ number.
1294  * @hbq_buf: Pointer to HBQ buffer.
1295  *
1296  * This function is called with the hbalock held to post a
1297  * hbq buffer to the firmware. If the function finds an empty
1298  * slot in the HBQ, it will post the buffer. The function will return
1299  * pointer to the hbq entry if it successfully post the buffer
1300  * else it will return NULL.
1301  **/
1302 static int
1303 lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
1304                          struct hbq_dmabuf *hbq_buf)
1305 {
1306         return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
1307 }
1308
1309 /**
1310  * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
1311  * @phba: Pointer to HBA context object.
1312  * @hbqno: HBQ number.
1313  * @hbq_buf: Pointer to HBQ buffer.
1314  *
1315  * This function is called with the hbalock held to post a hbq buffer to the
1316  * firmware. If the function finds an empty slot in the HBQ, it will post the
1317  * buffer and place it on the hbq_buffer_list. The function will return zero if
1318  * it successfully post the buffer else it will return an error.
1319  **/
1320 static int
1321 lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
1322                             struct hbq_dmabuf *hbq_buf)
1323 {
1324         struct lpfc_hbq_entry *hbqe;
1325         dma_addr_t physaddr = hbq_buf->dbuf.phys;
1326
1327         /* Get next HBQ entry slot to use */
1328         hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
1329         if (hbqe) {
1330                 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1331
1332                 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
1333                 hbqe->bde.addrLow  = le32_to_cpu(putPaddrLow(physaddr));
1334                 hbqe->bde.tus.f.bdeSize = hbq_buf->size;
1335                 hbqe->bde.tus.f.bdeFlags = 0;
1336                 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
1337                 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
1338                                 /* Sync SLIM */
1339                 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
1340                 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
1341                                 /* flush */
1342                 readl(phba->hbq_put + hbqno);
1343                 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
1344                 return 0;
1345         } else
1346                 return -ENOMEM;
1347 }
1348
1349 /**
1350  * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
1351  * @phba: Pointer to HBA context object.
1352  * @hbqno: HBQ number.
1353  * @hbq_buf: Pointer to HBQ buffer.
1354  *
1355  * This function is called with the hbalock held to post an RQE to the SLI4
1356  * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
1357  * the hbq_buffer_list and return zero, otherwise it will return an error.
1358  **/
1359 static int
1360 lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
1361                             struct hbq_dmabuf *hbq_buf)
1362 {
1363         int rc;
1364         struct lpfc_rqe hrqe;
1365         struct lpfc_rqe drqe;
1366
1367         hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
1368         hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
1369         drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
1370         drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
1371         rc = lpfc_sli4_rq_put(phba->sli4_hba.hdr_rq, phba->sli4_hba.dat_rq,
1372                               &hrqe, &drqe);
1373         if (rc < 0)
1374                 return rc;
1375         hbq_buf->tag = rc;
1376         list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
1377         return 0;
1378 }
1379
1380 /* HBQ for ELS and CT traffic. */
1381 static struct lpfc_hbq_init lpfc_els_hbq = {
1382         .rn = 1,
1383         .entry_count = 200,
1384         .mask_count = 0,
1385         .profile = 0,
1386         .ring_mask = (1 << LPFC_ELS_RING),
1387         .buffer_count = 0,
1388         .init_count = 40,
1389         .add_count = 40,
1390 };
1391
1392 /* HBQ for the extra ring if needed */
1393 static struct lpfc_hbq_init lpfc_extra_hbq = {
1394         .rn = 1,
1395         .entry_count = 200,
1396         .mask_count = 0,
1397         .profile = 0,
1398         .ring_mask = (1 << LPFC_EXTRA_RING),
1399         .buffer_count = 0,
1400         .init_count = 0,
1401         .add_count = 5,
1402 };
1403
1404 /* Array of HBQs */
1405 struct lpfc_hbq_init *lpfc_hbq_defs[] = {
1406         &lpfc_els_hbq,
1407         &lpfc_extra_hbq,
1408 };
1409
1410 /**
1411  * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
1412  * @phba: Pointer to HBA context object.
1413  * @hbqno: HBQ number.
1414  * @count: Number of HBQ buffers to be posted.
1415  *
1416  * This function is called with no lock held to post more hbq buffers to the
1417  * given HBQ. The function returns the number of HBQ buffers successfully
1418  * posted.
1419  **/
1420 static int
1421 lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
1422 {
1423         uint32_t i, posted = 0;
1424         unsigned long flags;
1425         struct hbq_dmabuf *hbq_buffer;
1426         LIST_HEAD(hbq_buf_list);
1427         if (!phba->hbqs[hbqno].hbq_alloc_buffer)
1428                 return 0;
1429
1430         if ((phba->hbqs[hbqno].buffer_count + count) >
1431             lpfc_hbq_defs[hbqno]->entry_count)
1432                 count = lpfc_hbq_defs[hbqno]->entry_count -
1433                                         phba->hbqs[hbqno].buffer_count;
1434         if (!count)
1435                 return 0;
1436         /* Allocate HBQ entries */
1437         for (i = 0; i < count; i++) {
1438                 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
1439                 if (!hbq_buffer)
1440                         break;
1441                 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
1442         }
1443         /* Check whether HBQ is still in use */
1444         spin_lock_irqsave(&phba->hbalock, flags);
1445         if (!phba->hbq_in_use)
1446                 goto err;
1447         while (!list_empty(&hbq_buf_list)) {
1448                 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1449                                  dbuf.list);
1450                 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
1451                                       (hbqno << 16));
1452                 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
1453                         phba->hbqs[hbqno].buffer_count++;
1454                         posted++;
1455                 } else
1456                         (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1457         }
1458         spin_unlock_irqrestore(&phba->hbalock, flags);
1459         return posted;
1460 err:
1461         spin_unlock_irqrestore(&phba->hbalock, flags);
1462         while (!list_empty(&hbq_buf_list)) {
1463                 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
1464                                  dbuf.list);
1465                 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1466         }
1467         return 0;
1468 }
1469
1470 /**
1471  * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
1472  * @phba: Pointer to HBA context object.
1473  * @qno: HBQ number.
1474  *
1475  * This function posts more buffers to the HBQ. This function
1476  * is called with no lock held. The function returns the number of HBQ entries
1477  * successfully allocated.
1478  **/
1479 int
1480 lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
1481 {
1482         return(lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1483                                          lpfc_hbq_defs[qno]->add_count));
1484 }
1485
1486 /**
1487  * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
1488  * @phba: Pointer to HBA context object.
1489  * @qno:  HBQ queue number.
1490  *
1491  * This function is called from SLI initialization code path with
1492  * no lock held to post initial HBQ buffers to firmware. The
1493  * function returns the number of HBQ entries successfully allocated.
1494  **/
1495 static int
1496 lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
1497 {
1498         return(lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
1499                                          lpfc_hbq_defs[qno]->init_count));
1500 }
1501
1502 /**
1503  * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
1504  * @phba: Pointer to HBA context object.
1505  * @hbqno: HBQ number.
1506  *
1507  * This function removes the first hbq buffer on an hbq list and returns a
1508  * pointer to that buffer. If it finds no buffers on the list it returns NULL.
1509  **/
1510 static struct hbq_dmabuf *
1511 lpfc_sli_hbqbuf_get(struct list_head *rb_list)
1512 {
1513         struct lpfc_dmabuf *d_buf;
1514
1515         list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
1516         if (!d_buf)
1517                 return NULL;
1518         return container_of(d_buf, struct hbq_dmabuf, dbuf);
1519 }
1520
1521 /**
1522  * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
1523  * @phba: Pointer to HBA context object.
1524  * @tag: Tag of the hbq buffer.
1525  *
1526  * This function is called with hbalock held. This function searches
1527  * for the hbq buffer associated with the given tag in the hbq buffer
1528  * list. If it finds the hbq buffer, it returns the hbq_buffer other wise
1529  * it returns NULL.
1530  **/
1531 static struct hbq_dmabuf *
1532 lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
1533 {
1534         struct lpfc_dmabuf *d_buf;
1535         struct hbq_dmabuf *hbq_buf;
1536         uint32_t hbqno;
1537
1538         hbqno = tag >> 16;
1539         if (hbqno >= LPFC_MAX_HBQS)
1540                 return NULL;
1541
1542         spin_lock_irq(&phba->hbalock);
1543         list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
1544                 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
1545                 if (hbq_buf->tag == tag) {
1546                         spin_unlock_irq(&phba->hbalock);
1547                         return hbq_buf;
1548                 }
1549         }
1550         spin_unlock_irq(&phba->hbalock);
1551         lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
1552                         "1803 Bad hbq tag. Data: x%x x%x\n",
1553                         tag, phba->hbqs[tag >> 16].buffer_count);
1554         return NULL;
1555 }
1556
1557 /**
1558  * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
1559  * @phba: Pointer to HBA context object.
1560  * @hbq_buffer: Pointer to HBQ buffer.
1561  *
1562  * This function is called with hbalock. This function gives back
1563  * the hbq buffer to firmware. If the HBQ does not have space to
1564  * post the buffer, it will free the buffer.
1565  **/
1566 void
1567 lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
1568 {
1569         uint32_t hbqno;
1570
1571         if (hbq_buffer) {
1572                 hbqno = hbq_buffer->tag >> 16;
1573                 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
1574                         (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
1575         }
1576 }
1577
1578 /**
1579  * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
1580  * @mbxCommand: mailbox command code.
1581  *
1582  * This function is called by the mailbox event handler function to verify
1583  * that the completed mailbox command is a legitimate mailbox command. If the
1584  * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
1585  * and the mailbox event handler will take the HBA offline.
1586  **/
1587 static int
1588 lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
1589 {
1590         uint8_t ret;
1591
1592         switch (mbxCommand) {
1593         case MBX_LOAD_SM:
1594         case MBX_READ_NV:
1595         case MBX_WRITE_NV:
1596         case MBX_WRITE_VPARMS:
1597         case MBX_RUN_BIU_DIAG:
1598         case MBX_INIT_LINK:
1599         case MBX_DOWN_LINK:
1600         case MBX_CONFIG_LINK:
1601         case MBX_CONFIG_RING:
1602         case MBX_RESET_RING:
1603         case MBX_READ_CONFIG:
1604         case MBX_READ_RCONFIG:
1605         case MBX_READ_SPARM:
1606         case MBX_READ_STATUS:
1607         case MBX_READ_RPI:
1608         case MBX_READ_XRI:
1609         case MBX_READ_REV:
1610         case MBX_READ_LNK_STAT:
1611         case MBX_REG_LOGIN:
1612         case MBX_UNREG_LOGIN:
1613         case MBX_READ_LA:
1614         case MBX_CLEAR_LA:
1615         case MBX_DUMP_MEMORY:
1616         case MBX_DUMP_CONTEXT:
1617         case MBX_RUN_DIAGS:
1618         case MBX_RESTART:
1619         case MBX_UPDATE_CFG:
1620         case MBX_DOWN_LOAD:
1621         case MBX_DEL_LD_ENTRY:
1622         case MBX_RUN_PROGRAM:
1623         case MBX_SET_MASK:
1624         case MBX_SET_VARIABLE:
1625         case MBX_UNREG_D_ID:
1626         case MBX_KILL_BOARD:
1627         case MBX_CONFIG_FARP:
1628         case MBX_BEACON:
1629         case MBX_LOAD_AREA:
1630         case MBX_RUN_BIU_DIAG64:
1631         case MBX_CONFIG_PORT:
1632         case MBX_READ_SPARM64:
1633         case MBX_READ_RPI64:
1634         case MBX_REG_LOGIN64:
1635         case MBX_READ_LA64:
1636         case MBX_WRITE_WWN:
1637         case MBX_SET_DEBUG:
1638         case MBX_LOAD_EXP_ROM:
1639         case MBX_ASYNCEVT_ENABLE:
1640         case MBX_REG_VPI:
1641         case MBX_UNREG_VPI:
1642         case MBX_HEARTBEAT:
1643         case MBX_PORT_CAPABILITIES:
1644         case MBX_PORT_IOV_CONTROL:
1645         case MBX_SLI4_CONFIG:
1646         case MBX_SLI4_REQ_FTRS:
1647         case MBX_REG_FCFI:
1648         case MBX_UNREG_FCFI:
1649         case MBX_REG_VFI:
1650         case MBX_UNREG_VFI:
1651         case MBX_INIT_VPI:
1652         case MBX_INIT_VFI:
1653         case MBX_RESUME_RPI:
1654                 ret = mbxCommand;
1655                 break;
1656         default:
1657                 ret = MBX_SHUTDOWN;
1658                 break;
1659         }
1660         return ret;
1661 }
1662
1663 /**
1664  * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
1665  * @phba: Pointer to HBA context object.
1666  * @pmboxq: Pointer to mailbox command.
1667  *
1668  * This is completion handler function for mailbox commands issued from
1669  * lpfc_sli_issue_mbox_wait function. This function is called by the
1670  * mailbox event handler function with no lock held. This function
1671  * will wake up thread waiting on the wait queue pointed by context1
1672  * of the mailbox.
1673  **/
1674 void
1675 lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
1676 {
1677         wait_queue_head_t *pdone_q;
1678         unsigned long drvr_flag;
1679
1680         /*
1681          * If pdone_q is empty, the driver thread gave up waiting and
1682          * continued running.
1683          */
1684         pmboxq->mbox_flag |= LPFC_MBX_WAKE;
1685         spin_lock_irqsave(&phba->hbalock, drvr_flag);
1686         pdone_q = (wait_queue_head_t *) pmboxq->context1;
1687         if (pdone_q)
1688                 wake_up_interruptible(pdone_q);
1689         spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
1690         return;
1691 }
1692
1693
1694 /**
1695  * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
1696  * @phba: Pointer to HBA context object.
1697  * @pmb: Pointer to mailbox object.
1698  *
1699  * This function is the default mailbox completion handler. It
1700  * frees the memory resources associated with the completed mailbox
1701  * command. If the completed command is a REG_LOGIN mailbox command,
1702  * this function will issue a UREG_LOGIN to re-claim the RPI.
1703  **/
1704 void
1705 lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
1706 {
1707         struct lpfc_dmabuf *mp;
1708         uint16_t rpi, vpi;
1709         int rc;
1710
1711         mp = (struct lpfc_dmabuf *) (pmb->context1);
1712
1713         if (mp) {
1714                 lpfc_mbuf_free(phba, mp->virt, mp->phys);
1715                 kfree(mp);
1716         }
1717
1718         if ((pmb->u.mb.mbxCommand == MBX_UNREG_LOGIN) &&
1719             (phba->sli_rev == LPFC_SLI_REV4))
1720                 lpfc_sli4_free_rpi(phba, pmb->u.mb.un.varUnregLogin.rpi);
1721
1722         /*
1723          * If a REG_LOGIN succeeded  after node is destroyed or node
1724          * is in re-discovery driver need to cleanup the RPI.
1725          */
1726         if (!(phba->pport->load_flag & FC_UNLOADING) &&
1727             pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
1728             !pmb->u.mb.mbxStatus) {
1729                 rpi = pmb->u.mb.un.varWords[0];
1730                 vpi = pmb->u.mb.un.varRegLogin.vpi - phba->vpi_base;
1731                 lpfc_unreg_login(phba, vpi, rpi, pmb);
1732                 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
1733                 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
1734                 if (rc != MBX_NOT_FINISHED)
1735                         return;
1736         }
1737
1738         if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
1739                 lpfc_sli4_mbox_cmd_free(phba, pmb);
1740         else
1741                 mempool_free(pmb, phba->mbox_mem_pool);
1742 }
1743
1744 /**
1745  * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
1746  * @phba: Pointer to HBA context object.
1747  *
1748  * This function is called with no lock held. This function processes all
1749  * the completed mailbox commands and gives it to upper layers. The interrupt
1750  * service routine processes mailbox completion interrupt and adds completed
1751  * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
1752  * Worker thread call lpfc_sli_handle_mb_event, which will return the
1753  * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
1754  * function returns the mailbox commands to the upper layer by calling the
1755  * completion handler function of each mailbox.
1756  **/
1757 int
1758 lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
1759 {
1760         MAILBOX_t *pmbox;
1761         LPFC_MBOXQ_t *pmb;
1762         int rc;
1763         LIST_HEAD(cmplq);
1764
1765         phba->sli.slistat.mbox_event++;
1766
1767         /* Get all completed mailboxe buffers into the cmplq */
1768         spin_lock_irq(&phba->hbalock);
1769         list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
1770         spin_unlock_irq(&phba->hbalock);
1771
1772         /* Get a Mailbox buffer to setup mailbox commands for callback */
1773         do {
1774                 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
1775                 if (pmb == NULL)
1776                         break;
1777
1778                 pmbox = &pmb->u.mb;
1779
1780                 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
1781                         if (pmb->vport) {
1782                                 lpfc_debugfs_disc_trc(pmb->vport,
1783                                         LPFC_DISC_TRC_MBOX_VPORT,
1784                                         "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
1785                                         (uint32_t)pmbox->mbxCommand,
1786                                         pmbox->un.varWords[0],
1787                                         pmbox->un.varWords[1]);
1788                         }
1789                         else {
1790                                 lpfc_debugfs_disc_trc(phba->pport,
1791                                         LPFC_DISC_TRC_MBOX,
1792                                         "MBOX cmpl:       cmd:x%x mb:x%x x%x",
1793                                         (uint32_t)pmbox->mbxCommand,
1794                                         pmbox->un.varWords[0],
1795                                         pmbox->un.varWords[1]);
1796                         }
1797                 }
1798
1799                 /*
1800                  * It is a fatal error if unknown mbox command completion.
1801                  */
1802                 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
1803                     MBX_SHUTDOWN) {
1804                         /* Unknow mailbox command compl */
1805                         lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
1806                                         "(%d):0323 Unknown Mailbox command "
1807                                         "x%x (x%x) Cmpl\n",
1808                                         pmb->vport ? pmb->vport->vpi : 0,
1809                                         pmbox->mbxCommand,
1810                                         lpfc_sli4_mbox_opcode_get(phba, pmb));
1811                         phba->link_state = LPFC_HBA_ERROR;
1812                         phba->work_hs = HS_FFER3;
1813                         lpfc_handle_eratt(phba);
1814                         continue;
1815                 }
1816
1817                 if (pmbox->mbxStatus) {
1818                         phba->sli.slistat.mbox_stat_err++;
1819                         if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
1820                                 /* Mbox cmd cmpl error - RETRYing */
1821                                 lpfc_printf_log(phba, KERN_INFO,
1822                                                 LOG_MBOX | LOG_SLI,
1823                                                 "(%d):0305 Mbox cmd cmpl "
1824                                                 "error - RETRYing Data: x%x "
1825                                                 "(x%x) x%x x%x x%x\n",
1826                                                 pmb->vport ? pmb->vport->vpi :0,
1827                                                 pmbox->mbxCommand,
1828                                                 lpfc_sli4_mbox_opcode_get(phba,
1829                                                                           pmb),
1830                                                 pmbox->mbxStatus,
1831                                                 pmbox->un.varWords[0],
1832                                                 pmb->vport->port_state);
1833                                 pmbox->mbxStatus = 0;
1834                                 pmbox->mbxOwner = OWN_HOST;
1835                                 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
1836                                 if (rc != MBX_NOT_FINISHED)
1837                                         continue;
1838                         }
1839                 }
1840
1841                 /* Mailbox cmd <cmd> Cmpl <cmpl> */
1842                 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
1843                                 "(%d):0307 Mailbox cmd x%x (x%x) Cmpl x%p "
1844                                 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x\n",
1845                                 pmb->vport ? pmb->vport->vpi : 0,
1846                                 pmbox->mbxCommand,
1847                                 lpfc_sli4_mbox_opcode_get(phba, pmb),
1848                                 pmb->mbox_cmpl,
1849                                 *((uint32_t *) pmbox),
1850                                 pmbox->un.varWords[0],
1851                                 pmbox->un.varWords[1],
1852                                 pmbox->un.varWords[2],
1853                                 pmbox->un.varWords[3],
1854                                 pmbox->un.varWords[4],
1855                                 pmbox->un.varWords[5],
1856                                 pmbox->un.varWords[6],
1857                                 pmbox->un.varWords[7]);
1858
1859                 if (pmb->mbox_cmpl)
1860                         pmb->mbox_cmpl(phba,pmb);
1861         } while (1);
1862         return 0;
1863 }
1864
1865 /**
1866  * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
1867  * @phba: Pointer to HBA context object.
1868  * @pring: Pointer to driver SLI ring object.
1869  * @tag: buffer tag.
1870  *
1871  * This function is called with no lock held. When QUE_BUFTAG_BIT bit
1872  * is set in the tag the buffer is posted for a particular exchange,
1873  * the function will return the buffer without replacing the buffer.
1874  * If the buffer is for unsolicited ELS or CT traffic, this function
1875  * returns the buffer and also posts another buffer to the firmware.
1876  **/
1877 static struct lpfc_dmabuf *
1878 lpfc_sli_get_buff(struct lpfc_hba *phba,
1879                   struct lpfc_sli_ring *pring,
1880                   uint32_t tag)
1881 {
1882         struct hbq_dmabuf *hbq_entry;
1883
1884         if (tag & QUE_BUFTAG_BIT)
1885                 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
1886         hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
1887         if (!hbq_entry)
1888                 return NULL;
1889         return &hbq_entry->dbuf;
1890 }
1891
1892 /**
1893  * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
1894  * @phba: Pointer to HBA context object.
1895  * @pring: Pointer to driver SLI ring object.
1896  * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
1897  * @fch_r_ctl: the r_ctl for the first frame of the sequence.
1898  * @fch_type: the type for the first frame of the sequence.
1899  *
1900  * This function is called with no lock held. This function uses the r_ctl and
1901  * type of the received sequence to find the correct callback function to call
1902  * to process the sequence.
1903  **/
1904 static int
1905 lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1906                          struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
1907                          uint32_t fch_type)
1908 {
1909         int i;
1910
1911         /* unSolicited Responses */
1912         if (pring->prt[0].profile) {
1913                 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
1914                         (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
1915                                                                         saveq);
1916                 return 1;
1917         }
1918         /* We must search, based on rctl / type
1919            for the right routine */
1920         for (i = 0; i < pring->num_mask; i++) {
1921                 if ((pring->prt[i].rctl == fch_r_ctl) &&
1922                     (pring->prt[i].type == fch_type)) {
1923                         if (pring->prt[i].lpfc_sli_rcv_unsol_event)
1924                                 (pring->prt[i].lpfc_sli_rcv_unsol_event)
1925                                                 (phba, pring, saveq);
1926                         return 1;
1927                 }
1928         }
1929         return 0;
1930 }
1931
1932 /**
1933  * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
1934  * @phba: Pointer to HBA context object.
1935  * @pring: Pointer to driver SLI ring object.
1936  * @saveq: Pointer to the unsolicited iocb.
1937  *
1938  * This function is called with no lock held by the ring event handler
1939  * when there is an unsolicited iocb posted to the response ring by the
1940  * firmware. This function gets the buffer associated with the iocbs
1941  * and calls the event handler for the ring. This function handles both
1942  * qring buffers and hbq buffers.
1943  * When the function returns 1 the caller can free the iocb object otherwise
1944  * upper layer functions will free the iocb objects.
1945  **/
1946 static int
1947 lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1948                             struct lpfc_iocbq *saveq)
1949 {
1950         IOCB_t           * irsp;
1951         WORD5            * w5p;
1952         uint32_t           Rctl, Type;
1953         uint32_t           match;
1954         struct lpfc_iocbq *iocbq;
1955         struct lpfc_dmabuf *dmzbuf;
1956
1957         match = 0;
1958         irsp = &(saveq->iocb);
1959
1960         if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
1961                 if (pring->lpfc_sli_rcv_async_status)
1962                         pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
1963                 else
1964                         lpfc_printf_log(phba,
1965                                         KERN_WARNING,
1966                                         LOG_SLI,
1967                                         "0316 Ring %d handler: unexpected "
1968                                         "ASYNC_STATUS iocb received evt_code "
1969                                         "0x%x\n",
1970                                         pring->ringno,
1971                                         irsp->un.asyncstat.evt_code);
1972                 return 1;
1973         }
1974
1975         if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
1976                 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
1977                 if (irsp->ulpBdeCount > 0) {
1978                         dmzbuf = lpfc_sli_get_buff(phba, pring,
1979                                         irsp->un.ulpWord[3]);
1980                         lpfc_in_buf_free(phba, dmzbuf);
1981                 }
1982
1983                 if (irsp->ulpBdeCount > 1) {
1984                         dmzbuf = lpfc_sli_get_buff(phba, pring,
1985                                         irsp->unsli3.sli3Words[3]);
1986                         lpfc_in_buf_free(phba, dmzbuf);
1987                 }
1988
1989                 if (irsp->ulpBdeCount > 2) {
1990                         dmzbuf = lpfc_sli_get_buff(phba, pring,
1991                                 irsp->unsli3.sli3Words[7]);
1992                         lpfc_in_buf_free(phba, dmzbuf);
1993                 }
1994
1995                 return 1;
1996         }
1997
1998         if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
1999                 if (irsp->ulpBdeCount != 0) {
2000                         saveq->context2 = lpfc_sli_get_buff(phba, pring,
2001                                                 irsp->un.ulpWord[3]);
2002                         if (!saveq->context2)
2003                                 lpfc_printf_log(phba,
2004                                         KERN_ERR,
2005                                         LOG_SLI,
2006                                         "0341 Ring %d Cannot find buffer for "
2007                                         "an unsolicited iocb. tag 0x%x\n",
2008                                         pring->ringno,
2009                                         irsp->un.ulpWord[3]);
2010                 }
2011                 if (irsp->ulpBdeCount == 2) {
2012                         saveq->context3 = lpfc_sli_get_buff(phba, pring,
2013                                                 irsp->unsli3.sli3Words[7]);
2014                         if (!saveq->context3)
2015                                 lpfc_printf_log(phba,
2016                                         KERN_ERR,
2017                                         LOG_SLI,
2018                                         "0342 Ring %d Cannot find buffer for an"
2019                                         " unsolicited iocb. tag 0x%x\n",
2020                                         pring->ringno,
2021                                         irsp->unsli3.sli3Words[7]);
2022                 }
2023                 list_for_each_entry(iocbq, &saveq->list, list) {
2024                         irsp = &(iocbq->iocb);
2025                         if (irsp->ulpBdeCount != 0) {
2026                                 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2027                                                         irsp->un.ulpWord[3]);
2028                                 if (!iocbq->context2)
2029                                         lpfc_printf_log(phba,
2030                                                 KERN_ERR,
2031                                                 LOG_SLI,
2032                                                 "0343 Ring %d Cannot find "
2033                                                 "buffer for an unsolicited iocb"
2034                                                 ". tag 0x%x\n", pring->ringno,
2035                                                 irsp->un.ulpWord[3]);
2036                         }
2037                         if (irsp->ulpBdeCount == 2) {
2038                                 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
2039                                                 irsp->unsli3.sli3Words[7]);
2040                                 if (!iocbq->context3)
2041                                         lpfc_printf_log(phba,
2042                                                 KERN_ERR,
2043                                                 LOG_SLI,
2044                                                 "0344 Ring %d Cannot find "
2045                                                 "buffer for an unsolicited "
2046                                                 "iocb. tag 0x%x\n",
2047                                                 pring->ringno,
2048                                                 irsp->unsli3.sli3Words[7]);
2049                         }
2050                 }
2051         }
2052         if (irsp->ulpBdeCount != 0 &&
2053             (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2054              irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2055                 int found = 0;
2056
2057                 /* search continue save q for same XRI */
2058                 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
2059                         if (iocbq->iocb.ulpContext == saveq->iocb.ulpContext) {
2060                                 list_add_tail(&saveq->list, &iocbq->list);
2061                                 found = 1;
2062                                 break;
2063                         }
2064                 }
2065                 if (!found)
2066                         list_add_tail(&saveq->clist,
2067                                       &pring->iocb_continue_saveq);
2068                 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2069                         list_del_init(&iocbq->clist);
2070                         saveq = iocbq;
2071                         irsp = &(saveq->iocb);
2072                 } else
2073                         return 0;
2074         }
2075         if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2076             (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2077             (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
2078                 Rctl = FC_RCTL_ELS_REQ;
2079                 Type = FC_TYPE_ELS;
2080         } else {
2081                 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
2082                 Rctl = w5p->hcsw.Rctl;
2083                 Type = w5p->hcsw.Type;
2084
2085                 /* Firmware Workaround */
2086                 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
2087                         (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
2088                          irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
2089                         Rctl = FC_RCTL_ELS_REQ;
2090                         Type = FC_TYPE_ELS;
2091                         w5p->hcsw.Rctl = Rctl;
2092                         w5p->hcsw.Type = Type;
2093                 }
2094         }
2095
2096         if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
2097                 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
2098                                 "0313 Ring %d handler: unexpected Rctl x%x "
2099                                 "Type x%x received\n",
2100                                 pring->ringno, Rctl, Type);
2101
2102         return 1;
2103 }
2104
2105 /**
2106  * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
2107  * @phba: Pointer to HBA context object.
2108  * @pring: Pointer to driver SLI ring object.
2109  * @prspiocb: Pointer to response iocb object.
2110  *
2111  * This function looks up the iocb_lookup table to get the command iocb
2112  * corresponding to the given response iocb using the iotag of the
2113  * response iocb. This function is called with the hbalock held.
2114  * This function returns the command iocb object if it finds the command
2115  * iocb else returns NULL.
2116  **/
2117 static struct lpfc_iocbq *
2118 lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
2119                       struct lpfc_sli_ring *pring,
2120                       struct lpfc_iocbq *prspiocb)
2121 {
2122         struct lpfc_iocbq *cmd_iocb = NULL;
2123         uint16_t iotag;
2124
2125         iotag = prspiocb->iocb.ulpIoTag;
2126
2127         if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2128                 cmd_iocb = phba->sli.iocbq_lookup[iotag];
2129                 list_del_init(&cmd_iocb->list);
2130                 pring->txcmplq_cnt--;
2131                 return cmd_iocb;
2132         }
2133
2134         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2135                         "0317 iotag x%x is out off "
2136                         "range: max iotag x%x wd0 x%x\n",
2137                         iotag, phba->sli.last_iotag,
2138                         *(((uint32_t *) &prspiocb->iocb) + 7));
2139         return NULL;
2140 }
2141
2142 /**
2143  * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
2144  * @phba: Pointer to HBA context object.
2145  * @pring: Pointer to driver SLI ring object.
2146  * @iotag: IOCB tag.
2147  *
2148  * This function looks up the iocb_lookup table to get the command iocb
2149  * corresponding to the given iotag. This function is called with the
2150  * hbalock held.
2151  * This function returns the command iocb object if it finds the command
2152  * iocb else returns NULL.
2153  **/
2154 static struct lpfc_iocbq *
2155 lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
2156                              struct lpfc_sli_ring *pring, uint16_t iotag)
2157 {
2158         struct lpfc_iocbq *cmd_iocb;
2159
2160         if (iotag != 0 && iotag <= phba->sli.last_iotag) {
2161                 cmd_iocb = phba->sli.iocbq_lookup[iotag];
2162                 list_del_init(&cmd_iocb->list);
2163                 pring->txcmplq_cnt--;
2164                 return cmd_iocb;
2165         }
2166
2167         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2168                         "0372 iotag x%x is out off range: max iotag (x%x)\n",
2169                         iotag, phba->sli.last_iotag);
2170         return NULL;
2171 }
2172
2173 /**
2174  * lpfc_sli_process_sol_iocb - process solicited iocb completion
2175  * @phba: Pointer to HBA context object.
2176  * @pring: Pointer to driver SLI ring object.
2177  * @saveq: Pointer to the response iocb to be processed.
2178  *
2179  * This function is called by the ring event handler for non-fcp
2180  * rings when there is a new response iocb in the response ring.
2181  * The caller is not required to hold any locks. This function
2182  * gets the command iocb associated with the response iocb and
2183  * calls the completion handler for the command iocb. If there
2184  * is no completion handler, the function will free the resources
2185  * associated with command iocb. If the response iocb is for
2186  * an already aborted command iocb, the status of the completion
2187  * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
2188  * This function always returns 1.
2189  **/
2190 static int
2191 lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2192                           struct lpfc_iocbq *saveq)
2193 {
2194         struct lpfc_iocbq *cmdiocbp;
2195         int rc = 1;
2196         unsigned long iflag;
2197
2198         /* Based on the iotag field, get the cmd IOCB from the txcmplq */
2199         spin_lock_irqsave(&phba->hbalock, iflag);
2200         cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
2201         spin_unlock_irqrestore(&phba->hbalock, iflag);
2202
2203         if (cmdiocbp) {
2204                 if (cmdiocbp->iocb_cmpl) {
2205                         /*
2206                          * If an ELS command failed send an event to mgmt
2207                          * application.
2208                          */
2209                         if (saveq->iocb.ulpStatus &&
2210                              (pring->ringno == LPFC_ELS_RING) &&
2211                              (cmdiocbp->iocb.ulpCommand ==
2212                                 CMD_ELS_REQUEST64_CR))
2213                                 lpfc_send_els_failure_event(phba,
2214                                         cmdiocbp, saveq);
2215
2216                         /*
2217                          * Post all ELS completions to the worker thread.
2218                          * All other are passed to the completion callback.
2219                          */
2220                         if (pring->ringno == LPFC_ELS_RING) {
2221                                 if (cmdiocbp->iocb_flag & LPFC_DRIVER_ABORTED) {
2222                                         cmdiocbp->iocb_flag &=
2223                                                 ~LPFC_DRIVER_ABORTED;
2224                                         saveq->iocb.ulpStatus =
2225                                                 IOSTAT_LOCAL_REJECT;
2226                                         saveq->iocb.un.ulpWord[4] =
2227                                                 IOERR_SLI_ABORTED;
2228
2229                                         /* Firmware could still be in progress
2230                                          * of DMAing payload, so don't free data
2231                                          * buffer till after a hbeat.
2232                                          */
2233                                         saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
2234                                 }
2235                         }
2236                         (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
2237                 } else
2238                         lpfc_sli_release_iocbq(phba, cmdiocbp);
2239         } else {
2240                 /*
2241                  * Unknown initiating command based on the response iotag.
2242                  * This could be the case on the ELS ring because of
2243                  * lpfc_els_abort().
2244                  */
2245                 if (pring->ringno != LPFC_ELS_RING) {
2246                         /*
2247                          * Ring <ringno> handler: unexpected completion IoTag
2248                          * <IoTag>
2249                          */
2250                         lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
2251                                          "0322 Ring %d handler: "
2252                                          "unexpected completion IoTag x%x "
2253                                          "Data: x%x x%x x%x x%x\n",
2254                                          pring->ringno,
2255                                          saveq->iocb.ulpIoTag,
2256                                          saveq->iocb.ulpStatus,
2257                                          saveq->iocb.un.ulpWord[4],
2258                                          saveq->iocb.ulpCommand,
2259                                          saveq->iocb.ulpContext);
2260                 }
2261         }
2262
2263         return rc;
2264 }
2265
2266 /**
2267  * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
2268  * @phba: Pointer to HBA context object.
2269  * @pring: Pointer to driver SLI ring object.
2270  *
2271  * This function is called from the iocb ring event handlers when
2272  * put pointer is ahead of the get pointer for a ring. This function signal
2273  * an error attention condition to the worker thread and the worker
2274  * thread will transition the HBA to offline state.
2275  **/
2276 static void
2277 lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
2278 {
2279         struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
2280         /*
2281          * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
2282          * rsp ring <portRspMax>
2283          */
2284         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2285                         "0312 Ring %d handler: portRspPut %d "
2286                         "is bigger than rsp ring %d\n",
2287                         pring->ringno, le32_to_cpu(pgp->rspPutInx),
2288                         pring->numRiocb);
2289
2290         phba->link_state = LPFC_HBA_ERROR;
2291
2292         /*
2293          * All error attention handlers are posted to
2294          * worker thread
2295          */
2296         phba->work_ha |= HA_ERATT;
2297         phba->work_hs = HS_FFER3;
2298
2299         lpfc_worker_wake_up(phba);
2300
2301         return;
2302 }
2303
2304 /**
2305  * lpfc_poll_eratt - Error attention polling timer timeout handler
2306  * @ptr: Pointer to address of HBA context object.
2307  *
2308  * This function is invoked by the Error Attention polling timer when the
2309  * timer times out. It will check the SLI Error Attention register for
2310  * possible attention events. If so, it will post an Error Attention event
2311  * and wake up worker thread to process it. Otherwise, it will set up the
2312  * Error Attention polling timer for the next poll.
2313  **/
2314 void lpfc_poll_eratt(unsigned long ptr)
2315 {
2316         struct lpfc_hba *phba;
2317         uint32_t eratt = 0;
2318
2319         phba = (struct lpfc_hba *)ptr;
2320
2321         /* Check chip HA register for error event */
2322         eratt = lpfc_sli_check_eratt(phba);
2323
2324         if (eratt)
2325                 /* Tell the worker thread there is work to do */
2326                 lpfc_worker_wake_up(phba);
2327         else
2328                 /* Restart the timer for next eratt poll */
2329                 mod_timer(&phba->eratt_poll, jiffies +
2330                                         HZ * LPFC_ERATT_POLL_INTERVAL);
2331         return;
2332 }
2333
2334
2335 /**
2336  * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
2337  * @phba: Pointer to HBA context object.
2338  * @pring: Pointer to driver SLI ring object.
2339  * @mask: Host attention register mask for this ring.
2340  *
2341  * This function is called from the interrupt context when there is a ring
2342  * event for the fcp ring. The caller does not hold any lock.
2343  * The function processes each response iocb in the response ring until it
2344  * finds an iocb with LE bit set and chains all the iocbs upto the iocb with
2345  * LE bit set. The function will call the completion handler of the command iocb
2346  * if the response iocb indicates a completion for a command iocb or it is
2347  * an abort completion. The function will call lpfc_sli_process_unsol_iocb
2348  * function if this is an unsolicited iocb.
2349  * This routine presumes LPFC_FCP_RING handling and doesn't bother
2350  * to check it explicitly.
2351  */
2352 int
2353 lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
2354                                 struct lpfc_sli_ring *pring, uint32_t mask)
2355 {
2356         struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
2357         IOCB_t *irsp = NULL;
2358         IOCB_t *entry = NULL;
2359         struct lpfc_iocbq *cmdiocbq = NULL;
2360         struct lpfc_iocbq rspiocbq;
2361         uint32_t status;
2362         uint32_t portRspPut, portRspMax;
2363         int rc = 1;
2364         lpfc_iocb_type type;
2365         unsigned long iflag;
2366         uint32_t rsp_cmpl = 0;
2367
2368         spin_lock_irqsave(&phba->hbalock, iflag);
2369         pring->stats.iocb_event++;
2370
2371         /*
2372          * The next available response entry should never exceed the maximum
2373          * entries.  If it does, treat it as an adapter hardware error.
2374          */
2375         portRspMax = pring->numRiocb;
2376         portRspPut = le32_to_cpu(pgp->rspPutInx);
2377         if (unlikely(portRspPut >= portRspMax)) {
2378                 lpfc_sli_rsp_pointers_error(phba, pring);
2379                 spin_unlock_irqrestore(&phba->hbalock, iflag);
2380                 return 1;
2381         }
2382         if (phba->fcp_ring_in_use) {
2383                 spin_unlock_irqrestore(&phba->hbalock, iflag);
2384                 return 1;
2385         } else
2386                 phba->fcp_ring_in_use = 1;
2387
2388         rmb();
2389         while (pring->rspidx != portRspPut) {
2390                 /*
2391                  * Fetch an entry off the ring and copy it into a local data
2392                  * structure.  The copy involves a byte-swap since the
2393                  * network byte order and pci byte orders are different.
2394                  */
2395                 entry = lpfc_resp_iocb(phba, pring);
2396                 phba->last_completion_time = jiffies;
2397
2398                 if (++pring->rspidx >= portRspMax)
2399                         pring->rspidx = 0;
2400
2401                 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
2402                                       (uint32_t *) &rspiocbq.iocb,
2403                                       phba->iocb_rsp_size);
2404                 INIT_LIST_HEAD(&(rspiocbq.list));
2405                 irsp = &rspiocbq.iocb;
2406
2407                 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
2408                 pring->stats.iocb_rsp++;
2409                 rsp_cmpl++;
2410
2411                 if (unlikely(irsp->ulpStatus)) {
2412                         /*
2413                          * If resource errors reported from HBA, reduce
2414                          * queuedepths of the SCSI device.
2415                          */
2416                         if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
2417                                 (irsp->un.ulpWord[4] == IOERR_NO_RESOURCES)) {
2418                                 spin_unlock_irqrestore(&phba->hbalock, iflag);
2419                                 phba->lpfc_rampdown_queue_depth(phba);
2420                                 spin_lock_irqsave(&phba->hbalock, iflag);
2421                         }
2422
2423                         /* Rsp ring <ringno> error: IOCB */
2424                         lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
2425                                         "0336 Rsp Ring %d error: IOCB Data: "
2426                                         "x%x x%x x%x x%x x%x x%x x%x x%x\n",
2427                                         pring->ringno,
2428                                         irsp->un.ulpWord[0],
2429                                         irsp->un.ulpWord[1],
2430                                         irsp->un.ulpWord[2],
2431                                         irsp->un.ulpWord[3],
2432                                         irsp->un.ulpWord[4],
2433                                         irsp->un.ulpWord[5],
2434                                         *(uint32_t *)&irsp->un1,
2435                                         *((uint32_t *)&irsp->un1 + 1));
2436                 }
2437
2438                 switch (type) {
2439                 case LPFC_ABORT_IOCB:
2440                 case LPFC_SOL_IOCB:
2441                         /*
2442                          * Idle exchange closed via ABTS from port.  No iocb
2443                          * resources need to be recovered.
2444                          */
2445                         if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
2446                                 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
2447                                                 "0333 IOCB cmd 0x%x"
2448                                                 " processed. Skipping"
2449                                                 " completion\n",
2450                                                 irsp->ulpCommand);
2451                                 break;
2452                         }
2453
2454                         cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
2455                                                          &rspiocbq);
2456                         if ((cmdiocbq) && (cmdiocbq->iocb_cmpl)) {
2457                                         spin_unlock_irqrestore(&phba->hbalock,
2458                                                                iflag);
2459                                         (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
2460                                                               &rspiocbq);
2461                                         spin_lock_irqsave(&phba->hbalock,
2462                                                           iflag);
2463                                 }
2464                         break;
2465                 case LPFC_UNSOL_IOCB:
2466                         spin_unlock_irqrestore(&phba->hbalock, iflag);
2467                         lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
2468                         spin_lock_irqsave(&phba->hbalock, iflag);
2469                         break;
2470                 default:
2471                         if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
2472                                 char adaptermsg[LPFC_MAX_ADPTMSG];
2473                                 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
2474                                 memcpy(&adaptermsg[0], (uint8_t *) irsp,
2475                                        MAX_MSG_DATA);
2476                                 dev_warn(&((phba->pcidev)->dev),
2477                                          "lpfc%d: %s\n",
2478                                          phba->brd_no, adaptermsg);
2479                         } else {
2480                                 /* Unknown IOCB command */
2481                                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2482                                                 "0334 Unknown IOCB command "
2483                                                 "Data: x%x, x%x x%x x%x x%x\n",
2484                                                 type, irsp->ulpCommand,
2485                                                 irsp->ulpStatus,
2486                                                 irsp->ulpIoTag,
2487                                                 irsp->ulpContext);
2488                         }
2489                         break;
2490                 }
2491
2492                 /*
2493                  * The response IOCB has been processed.  Update the ring
2494                  * pointer in SLIM.  If the port response put pointer has not
2495                  * been updated, sync the pgp->rspPutInx and fetch the new port
2496                  * response put pointer.
2497                  */
2498                 writel(pring->rspidx, &phba->host_gp[pring->ringno].rspGetInx);
2499
2500                 if (pring->rspidx == portRspPut)
2501                         portRspPut = le32_to_cpu(pgp->rspPutInx);
2502         }
2503
2504         if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
2505                 pring->stats.iocb_rsp_full++;
2506                 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
2507                 writel(status, phba->CAregaddr);
2508                 readl(phba->CAregaddr);
2509         }
2510         if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
2511                 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
2512                 pring->stats.iocb_cmd_empty++;
2513
2514                 /* Force update of the local copy of cmdGetInx */
2515                 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
2516                 lpfc_sli_resume_iocb(phba, pring);
2517
2518                 if ((pring->lpfc_sli_cmd_available))
2519                         (pring->lpfc_sli_cmd_available) (phba, pring);
2520
2521         }
2522
2523         phba->fcp_ring_in_use = 0;
2524         spin_unlock_irqrestore(&phba->hbalock, iflag);
2525         return rc;
2526 }
2527
2528 /**
2529  * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
2530  * @phba: Pointer to HBA context object.
2531  * @pring: Pointer to driver SLI ring object.
2532  * @rspiocbp: Pointer to driver response IOCB object.
2533  *
2534  * This function is called from the worker thread when there is a slow-path
2535  * response IOCB to process. This function chains all the response iocbs until
2536  * seeing the iocb with the LE bit set. The function will call
2537  * lpfc_sli_process_sol_iocb function if the response iocb indicates a
2538  * completion of a command iocb. The function will call the
2539  * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
2540  * The function frees the resources or calls the completion handler if this
2541  * iocb is an abort completion. The function returns NULL when the response
2542  * iocb has the LE bit set and all the chained iocbs are processed, otherwise
2543  * this function shall chain the iocb on to the iocb_continueq and return the
2544  * response iocb passed in.
2545  **/
2546 static struct lpfc_iocbq *
2547 lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2548                         struct lpfc_iocbq *rspiocbp)
2549 {
2550         struct lpfc_iocbq *saveq;
2551         struct lpfc_iocbq *cmdiocbp;
2552         struct lpfc_iocbq *next_iocb;
2553         IOCB_t *irsp = NULL;
2554         uint32_t free_saveq;
2555         uint8_t iocb_cmd_type;
2556         lpfc_iocb_type type;
2557         unsigned long iflag;
2558         int rc;
2559
2560         spin_lock_irqsave(&phba->hbalock, iflag);
2561         /* First add the response iocb to the countinueq list */
2562         list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
2563         pring->iocb_continueq_cnt++;
2564
2565         /* Now, determine whetehr the list is completed for processing */
2566         irsp = &rspiocbp->iocb;
2567         if (irsp->ulpLe) {
2568                 /*
2569                  * By default, the driver expects to free all resources
2570                  * associated with this iocb completion.
2571                  */
2572                 free_saveq = 1;
2573                 saveq = list_get_first(&pring->iocb_continueq,
2574                                        struct lpfc_iocbq, list);
2575                 irsp = &(saveq->iocb);
2576                 list_del_init(&pring->iocb_continueq);
2577                 pring->iocb_continueq_cnt = 0;
2578
2579                 pring->stats.iocb_rsp++;
2580
2581                 /*
2582                  * If resource errors reported from HBA, reduce
2583                  * queuedepths of the SCSI device.
2584                  */
2585                 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
2586                     (irsp->un.ulpWord[4] == IOERR_NO_RESOURCES)) {
2587                         spin_unlock_irqrestore(&phba->hbalock, iflag);
2588                         phba->lpfc_rampdown_queue_depth(phba);
2589                         spin_lock_irqsave(&phba->hbalock, iflag);
2590                 }
2591
2592                 if (irsp->ulpStatus) {
2593                         /* Rsp ring <ringno> error: IOCB */
2594                         lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
2595                                         "0328 Rsp Ring %d error: "
2596                                         "IOCB Data: "
2597                                         "x%x x%x x%x x%x "
2598                                         "x%x x%x x%x x%x "
2599                                         "x%x x%x x%x x%x "
2600                                         "x%x x%x x%x x%x\n",
2601                                         pring->ringno,
2602                                         irsp->un.ulpWord[0],
2603                                         irsp->un.ulpWord[1],
2604                                         irsp->un.ulpWord[2],
2605                                         irsp->un.ulpWord[3],
2606                                         irsp->un.ulpWord[4],
2607                                         irsp->un.ulpWord[5],
2608                                         *(((uint32_t *) irsp) + 6),
2609                                         *(((uint32_t *) irsp) + 7),
2610                                         *(((uint32_t *) irsp) + 8),
2611                                         *(((uint32_t *) irsp) + 9),
2612                                         *(((uint32_t *) irsp) + 10),
2613                                         *(((uint32_t *) irsp) + 11),
2614                                         *(((uint32_t *) irsp) + 12),
2615                                         *(((uint32_t *) irsp) + 13),
2616                                         *(((uint32_t *) irsp) + 14),
2617                                         *(((uint32_t *) irsp) + 15));
2618                 }
2619
2620                 /*
2621                  * Fetch the IOCB command type and call the correct completion
2622                  * routine. Solicited and Unsolicited IOCBs on the ELS ring
2623                  * get freed back to the lpfc_iocb_list by the discovery
2624                  * kernel thread.
2625                  */
2626                 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
2627                 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
2628                 switch (type) {
2629                 case LPFC_SOL_IOCB:
2630                         spin_unlock_irqrestore(&phba->hbalock, iflag);
2631                         rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
2632                         spin_lock_irqsave(&phba->hbalock, iflag);
2633                         break;
2634
2635                 case LPFC_UNSOL_IOCB:
2636                         spin_unlock_irqrestore(&phba->hbalock, iflag);
2637                         rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
2638                         spin_lock_irqsave(&phba->hbalock, iflag);
2639                         if (!rc)
2640                                 free_saveq = 0;
2641                         break;
2642
2643                 case LPFC_ABORT_IOCB:
2644                         cmdiocbp = NULL;
2645                         if (irsp->ulpCommand != CMD_XRI_ABORTED_CX)
2646                                 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
2647                                                                  saveq);
2648                         if (cmdiocbp) {
2649                                 /* Call the specified completion routine */
2650                                 if (cmdiocbp->iocb_cmpl) {
2651                                         spin_unlock_irqrestore(&phba->hbalock,
2652                                                                iflag);
2653                                         (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
2654                                                               saveq);
2655                                         spin_lock_irqsave(&phba->hbalock,
2656                                                           iflag);
2657                                 } else
2658                                         __lpfc_sli_release_iocbq(phba,
2659                                                                  cmdiocbp);
2660                         }
2661                         break;
2662
2663                 case LPFC_UNKNOWN_IOCB:
2664                         if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
2665                                 char adaptermsg[LPFC_MAX_ADPTMSG];
2666                                 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
2667                                 memcpy(&adaptermsg[0], (uint8_t *)irsp,
2668                                        MAX_MSG_DATA);
2669                                 dev_warn(&((phba->pcidev)->dev),
2670                                          "lpfc%d: %s\n",
2671                                          phba->brd_no, adaptermsg);
2672                         } else {
2673                                 /* Unknown IOCB command */
2674                                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2675                                                 "0335 Unknown IOCB "
2676                                                 "command Data: x%x "
2677                                                 "x%x x%x x%x\n",
2678                                                 irsp->ulpCommand,
2679                                                 irsp->ulpStatus,
2680                                                 irsp->ulpIoTag,
2681                                                 irsp->ulpContext);
2682                         }
2683                         break;
2684                 }
2685
2686                 if (free_saveq) {
2687                         list_for_each_entry_safe(rspiocbp, next_iocb,
2688                                                  &saveq->list, list) {
2689                                 list_del(&rspiocbp->list);
2690                                 __lpfc_sli_release_iocbq(phba, rspiocbp);
2691                         }
2692                         __lpfc_sli_release_iocbq(phba, saveq);
2693                 }
2694                 rspiocbp = NULL;
2695         }
2696         spin_unlock_irqrestore(&phba->hbalock, iflag);
2697         return rspiocbp;
2698 }
2699
2700 /**
2701  * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
2702  * @phba: Pointer to HBA context object.
2703  * @pring: Pointer to driver SLI ring object.
2704  * @mask: Host attention register mask for this ring.
2705  *
2706  * This routine wraps the actual slow_ring event process routine from the
2707  * API jump table function pointer from the lpfc_hba struct.
2708  **/
2709 void
2710 lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
2711                                 struct lpfc_sli_ring *pring, uint32_t mask)
2712 {
2713         phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
2714 }
2715
2716 /**
2717  * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
2718  * @phba: Pointer to HBA context object.
2719  * @pring: Pointer to driver SLI ring object.
2720  * @mask: Host attention register mask for this ring.
2721  *
2722  * This function is called from the worker thread when there is a ring event
2723  * for non-fcp rings. The caller does not hold any lock. The function will
2724  * remove each response iocb in the response ring and calls the handle
2725  * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
2726  **/
2727 static void
2728 lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
2729                                    struct lpfc_sli_ring *pring, uint32_t mask)
2730 {
2731         struct lpfc_pgp *pgp;
2732         IOCB_t *entry;
2733         IOCB_t *irsp = NULL;
2734         struct lpfc_iocbq *rspiocbp = NULL;
2735         uint32_t portRspPut, portRspMax;
2736         unsigned long iflag;
2737         uint32_t status;
2738
2739         pgp = &phba->port_gp[pring->ringno];
2740         spin_lock_irqsave(&phba->hbalock, iflag);
2741         pring->stats.iocb_event++;
2742
2743         /*
2744          * The next available response entry should never exceed the maximum
2745          * entries.  If it does, treat it as an adapter hardware error.
2746          */
2747         portRspMax = pring->numRiocb;
2748         portRspPut = le32_to_cpu(pgp->rspPutInx);
2749         if (portRspPut >= portRspMax) {
2750                 /*
2751                  * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
2752                  * rsp ring <portRspMax>
2753                  */
2754                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
2755                                 "0303 Ring %d handler: portRspPut %d "
2756                                 "is bigger than rsp ring %d\n",
2757                                 pring->ringno, portRspPut, portRspMax);
2758
2759                 phba->link_state = LPFC_HBA_ERROR;
2760                 spin_unlock_irqrestore(&phba->hbalock, iflag);
2761
2762                 phba->work_hs = HS_FFER3;
2763                 lpfc_handle_eratt(phba);
2764
2765                 return;
2766         }
2767
2768         rmb();
2769         while (pring->rspidx != portRspPut) {
2770                 /*
2771                  * Build a completion list and call the appropriate handler.
2772                  * The process is to get the next available response iocb, get
2773                  * a free iocb from the list, copy the response data into the
2774                  * free iocb, insert to the continuation list, and update the
2775                  * next response index to slim.  This process makes response
2776                  * iocb's in the ring available to DMA as fast as possible but
2777                  * pays a penalty for a copy operation.  Since the iocb is
2778                  * only 32 bytes, this penalty is considered small relative to
2779                  * the PCI reads for register values and a slim write.  When
2780                  * the ulpLe field is set, the entire Command has been
2781                  * received.
2782                  */
2783                 entry = lpfc_resp_iocb(phba, pring);
2784
2785                 phba->last_completion_time = jiffies;
2786                 rspiocbp = __lpfc_sli_get_iocbq(phba);
2787                 if (rspiocbp == NULL) {
2788                         printk(KERN_ERR "%s: out of buffers! Failing "
2789                                "completion.\n", __func__);
2790                         break;
2791                 }
2792
2793                 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
2794                                       phba->iocb_rsp_size);
2795                 irsp = &rspiocbp->iocb;
2796
2797                 if (++pring->rspidx >= portRspMax)
2798                         pring->rspidx = 0;
2799
2800                 if (pring->ringno == LPFC_ELS_RING) {
2801                         lpfc_debugfs_slow_ring_trc(phba,
2802                         "IOCB rsp ring:   wd4:x%08x wd6:x%08x wd7:x%08x",
2803                                 *(((uint32_t *) irsp) + 4),
2804                                 *(((uint32_t *) irsp) + 6),
2805                                 *(((uint32_t *) irsp) + 7));
2806                 }
2807
2808                 writel(pring->rspidx, &phba->host_gp[pring->ringno].rspGetInx);
2809
2810                 spin_unlock_irqrestore(&phba->hbalock, iflag);
2811                 /* Handle the response IOCB */
2812                 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
2813                 spin_lock_irqsave(&phba->hbalock, iflag);
2814
2815                 /*
2816                  * If the port response put pointer has not been updated, sync
2817                  * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
2818                  * response put pointer.
2819                  */
2820                 if (pring->rspidx == portRspPut) {
2821                         portRspPut = le32_to_cpu(pgp->rspPutInx);
2822                 }
2823         } /* while (pring->rspidx != portRspPut) */
2824
2825         if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
2826                 /* At least one response entry has been freed */
2827                 pring->stats.iocb_rsp_full++;
2828                 /* SET RxRE_RSP in Chip Att register */
2829                 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
2830                 writel(status, phba->CAregaddr);
2831                 readl(phba->CAregaddr); /* flush */
2832         }
2833         if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
2834                 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
2835                 pring->stats.iocb_cmd_empty++;
2836
2837                 /* Force update of the local copy of cmdGetInx */
2838                 pring->local_getidx = le32_to_cpu(pgp->cmdGetInx);
2839                 lpfc_sli_resume_iocb(phba, pring);
2840
2841                 if ((pring->lpfc_sli_cmd_available))
2842                         (pring->lpfc_sli_cmd_available) (phba, pring);
2843
2844         }
2845
2846         spin_unlock_irqrestore(&phba->hbalock, iflag);
2847         return;
2848 }
2849
2850 /**
2851  * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
2852  * @phba: Pointer to HBA context object.
2853  * @pring: Pointer to driver SLI ring object.
2854  * @mask: Host attention register mask for this ring.
2855  *
2856  * This function is called from the worker thread when there is a pending
2857  * ELS response iocb on the driver internal slow-path response iocb worker
2858  * queue. The caller does not hold any lock. The function will remove each
2859  * response iocb from the response worker queue and calls the handle
2860  * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
2861  **/
2862 static void
2863 lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
2864                                    struct lpfc_sli_ring *pring, uint32_t mask)
2865 {
2866         struct lpfc_iocbq *irspiocbq;
2867         struct hbq_dmabuf *dmabuf;
2868         struct lpfc_cq_event *cq_event;
2869         unsigned long iflag;
2870
2871         spin_lock_irqsave(&phba->hbalock, iflag);
2872         phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
2873         spin_unlock_irqrestore(&phba->hbalock, iflag);
2874         while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
2875                 /* Get the response iocb from the head of work queue */
2876                 spin_lock_irqsave(&phba->hbalock, iflag);
2877                 list_remove_head(&phba->sli4_hba.sp_queue_event,
2878                                  cq_event, struct lpfc_cq_event, list);
2879                 spin_unlock_irqrestore(&phba->hbalock, iflag);
2880
2881                 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
2882                 case CQE_CODE_COMPL_WQE:
2883                         irspiocbq = container_of(cq_event, struct lpfc_iocbq,
2884                                                  cq_event);
2885                         /* Translate ELS WCQE to response IOCBQ */
2886                         irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
2887                                                                    irspiocbq);
2888                         if (irspiocbq)
2889                                 lpfc_sli_sp_handle_rspiocb(phba, pring,
2890                                                            irspiocbq);
2891                         break;
2892                 case CQE_CODE_RECEIVE:
2893                         dmabuf = container_of(cq_event, struct hbq_dmabuf,
2894                                               cq_event);
2895                         lpfc_sli4_handle_received_buffer(phba, dmabuf);
2896                         break;
2897                 default:
2898                         break;
2899                 }
2900         }
2901 }
2902
2903 /**
2904  * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
2905  * @phba: Pointer to HBA context object.
2906  * @pring: Pointer to driver SLI ring object.
2907  *
2908  * This function aborts all iocbs in the given ring and frees all the iocb
2909  * objects in txq. This function issues an abort iocb for all the iocb commands
2910  * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
2911  * the return of this function. The caller is not required to hold any locks.
2912  **/
2913 void
2914 lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
2915 {
2916         LIST_HEAD(completions);
2917         struct lpfc_iocbq *iocb, *next_iocb;
2918
2919         if (pring->ringno == LPFC_ELS_RING) {
2920                 lpfc_fabric_abort_hba(phba);
2921         }
2922
2923         /* Error everything on txq and txcmplq
2924          * First do the txq.
2925          */
2926         spin_lock_irq(&phba->hbalock);
2927         list_splice_init(&pring->txq, &completions);
2928         pring->txq_cnt = 0;
2929
2930         /* Next issue ABTS for everything on the txcmplq */
2931         list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
2932                 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
2933
2934         spin_unlock_irq(&phba->hbalock);
2935
2936         /* Cancel all the IOCBs from the completions list */
2937         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
2938                               IOERR_SLI_ABORTED);
2939 }
2940
2941 /**
2942  * lpfc_sli_flush_fcp_rings - flush all iocbs in the fcp ring
2943  * @phba: Pointer to HBA context object.
2944  *
2945  * This function flushes all iocbs in the fcp ring and frees all the iocb
2946  * objects in txq and txcmplq. This function will not issue abort iocbs
2947  * for all the iocb commands in txcmplq, they will just be returned with
2948  * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
2949  * slot has been permanently disabled.
2950  **/
2951 void
2952 lpfc_sli_flush_fcp_rings(struct lpfc_hba *phba)
2953 {
2954         LIST_HEAD(txq);
2955         LIST_HEAD(txcmplq);
2956         struct lpfc_sli *psli = &phba->sli;
2957         struct lpfc_sli_ring  *pring;
2958
2959         /* Currently, only one fcp ring */
2960         pring = &psli->ring[psli->fcp_ring];
2961
2962         spin_lock_irq(&phba->hbalock);
2963         /* Retrieve everything on txq */
2964         list_splice_init(&pring->txq, &txq);
2965         pring->txq_cnt = 0;
2966
2967         /* Retrieve everything on the txcmplq */
2968         list_splice_init(&pring->txcmplq, &txcmplq);
2969         pring->txcmplq_cnt = 0;
2970         spin_unlock_irq(&phba->hbalock);
2971
2972         /* Flush the txq */
2973         lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
2974                               IOERR_SLI_DOWN);
2975
2976         /* Flush the txcmpq */
2977         lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
2978                               IOERR_SLI_DOWN);
2979 }
2980
2981 /**
2982  * lpfc_sli_brdready_s3 - Check for sli3 host ready status
2983  * @phba: Pointer to HBA context object.
2984  * @mask: Bit mask to be checked.
2985  *
2986  * This function reads the host status register and compares
2987  * with the provided bit mask to check if HBA completed
2988  * the restart. This function will wait in a loop for the
2989  * HBA to complete restart. If the HBA does not restart within
2990  * 15 iterations, the function will reset the HBA again. The
2991  * function returns 1 when HBA fail to restart otherwise returns
2992  * zero.
2993  **/
2994 static int
2995 lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
2996 {
2997         uint32_t status;
2998         int i = 0;
2999         int retval = 0;
3000
3001         /* Read the HBA Host Status Register */
3002         status = readl(phba->HSregaddr);
3003
3004         /*
3005          * Check status register every 100ms for 5 retries, then every
3006          * 500ms for 5, then every 2.5 sec for 5, then reset board and
3007          * every 2.5 sec for 4.
3008          * Break our of the loop if errors occurred during init.
3009          */
3010         while (((status & mask) != mask) &&
3011                !(status & HS_FFERM) &&
3012                i++ < 20) {
3013
3014                 if (i <= 5)
3015                         msleep(10);
3016                 else if (i <= 10)
3017                         msleep(500);
3018                 else
3019                         msleep(2500);
3020
3021                 if (i == 15) {
3022                                 /* Do post */
3023                         phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3024                         lpfc_sli_brdrestart(phba);
3025                 }
3026                 /* Read the HBA Host Status Register */
3027                 status = readl(phba->HSregaddr);
3028         }
3029
3030         /* Check to see if any errors occurred during init */
3031         if ((status & HS_FFERM) || (i >= 20)) {
3032                 phba->link_state = LPFC_HBA_ERROR;
3033                 retval = 1;
3034         }
3035
3036         return retval;
3037 }
3038
3039 /**
3040  * lpfc_sli_brdready_s4 - Check for sli4 host ready status
3041  * @phba: Pointer to HBA context object.
3042  * @mask: Bit mask to be checked.
3043  *
3044  * This function checks the host status register to check if HBA is
3045  * ready. This function will wait in a loop for the HBA to be ready
3046  * If the HBA is not ready , the function will will reset the HBA PCI
3047  * function again. The function returns 1 when HBA fail to be ready
3048  * otherwise returns zero.
3049  **/
3050 static int
3051 lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
3052 {
3053         uint32_t status;
3054         int retval = 0;
3055
3056         /* Read the HBA Host Status Register */
3057         status = lpfc_sli4_post_status_check(phba);
3058
3059         if (status) {
3060                 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3061                 lpfc_sli_brdrestart(phba);
3062                 status = lpfc_sli4_post_status_check(phba);
3063         }
3064
3065         /* Check to see if any errors occurred during init */
3066         if (status) {
3067                 phba->link_state = LPFC_HBA_ERROR;
3068                 retval = 1;
3069         } else
3070                 phba->sli4_hba.intr_enable = 0;
3071
3072         return retval;
3073 }
3074
3075 /**
3076  * lpfc_sli_brdready - Wrapper func for checking the hba readyness
3077  * @phba: Pointer to HBA context object.
3078  * @mask: Bit mask to be checked.
3079  *
3080  * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
3081  * from the API jump table function pointer from the lpfc_hba struct.
3082  **/
3083 int
3084 lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
3085 {
3086         return phba->lpfc_sli_brdready(phba, mask);
3087 }
3088
3089 #define BARRIER_TEST_PATTERN (0xdeadbeef)
3090
3091 /**
3092  * lpfc_reset_barrier - Make HBA ready for HBA reset
3093  * @phba: Pointer to HBA context object.
3094  *
3095  * This function is called before resetting an HBA. This
3096  * function requests HBA to quiesce DMAs before a reset.
3097  **/
3098 void lpfc_reset_barrier(struct lpfc_hba *phba)
3099 {
3100         uint32_t __iomem *resp_buf;
3101         uint32_t __iomem *mbox_buf;
3102         volatile uint32_t mbox;
3103         uint32_t hc_copy;
3104         int  i;
3105         uint8_t hdrtype;
3106
3107         pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
3108         if (hdrtype != 0x80 ||
3109             (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
3110              FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
3111                 return;
3112
3113         /*
3114          * Tell the other part of the chip to suspend temporarily all
3115          * its DMA activity.
3116          */
3117         resp_buf = phba->MBslimaddr;
3118
3119         /* Disable the error attention */
3120         hc_copy = readl(phba->HCregaddr);
3121         writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
3122         readl(phba->HCregaddr); /* flush */
3123         phba->link_flag |= LS_IGNORE_ERATT;
3124
3125         if (readl(phba->HAregaddr) & HA_ERATT) {
3126                 /* Clear Chip error bit */
3127                 writel(HA_ERATT, phba->HAregaddr);
3128                 phba->pport->stopped = 1;
3129         }
3130
3131         mbox = 0;
3132         ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
3133         ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
3134
3135         writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
3136         mbox_buf = phba->MBslimaddr;
3137         writel(mbox, mbox_buf);
3138
3139         for (i = 0;
3140              readl(resp_buf + 1) != ~(BARRIER_TEST_PATTERN) && i < 50; i++)
3141                 mdelay(1);
3142
3143         if (readl(resp_buf + 1) != ~(BARRIER_TEST_PATTERN)) {
3144                 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
3145                     phba->pport->stopped)
3146                         goto restore_hc;
3147                 else
3148                         goto clear_errat;
3149         }
3150
3151         ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
3152         for (i = 0; readl(resp_buf) != mbox &&  i < 500; i++)
3153                 mdelay(1);
3154
3155 clear_errat:
3156
3157         while (!(readl(phba->HAregaddr) & HA_ERATT) && ++i < 500)
3158                 mdelay(1);
3159
3160         if (readl(phba->HAregaddr) & HA_ERATT) {
3161                 writel(HA_ERATT, phba->HAregaddr);
3162                 phba->pport->stopped = 1;
3163         }
3164
3165 restore_hc:
3166         phba->link_flag &= ~LS_IGNORE_ERATT;
3167         writel(hc_copy, phba->HCregaddr);
3168         readl(phba->HCregaddr); /* flush */
3169 }
3170
3171 /**
3172  * lpfc_sli_brdkill - Issue a kill_board mailbox command
3173  * @phba: Pointer to HBA context object.
3174  *
3175  * This function issues a kill_board mailbox command and waits for
3176  * the error attention interrupt. This function is called for stopping
3177  * the firmware processing. The caller is not required to hold any
3178  * locks. This function calls lpfc_hba_down_post function to free
3179  * any pending commands after the kill. The function will return 1 when it
3180  * fails to kill the board else will return 0.
3181  **/
3182 int
3183 lpfc_sli_brdkill(struct lpfc_hba *phba)
3184 {
3185         struct lpfc_sli *psli;
3186         LPFC_MBOXQ_t *pmb;
3187         uint32_t status;
3188         uint32_t ha_copy;
3189         int retval;
3190         int i = 0;
3191
3192         psli = &phba->sli;
3193
3194         /* Kill HBA */
3195         lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3196                         "0329 Kill HBA Data: x%x x%x\n",
3197                         phba->pport->port_state, psli->sli_flag);
3198
3199         pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3200         if (!pmb)
3201                 return 1;
3202
3203         /* Disable the error attention */
3204         spin_lock_irq(&phba->hbalock);
3205         status = readl(phba->HCregaddr);
3206         status &= ~HC_ERINT_ENA;
3207         writel(status, phba->HCregaddr);
3208         readl(phba->HCregaddr); /* flush */
3209         phba->link_flag |= LS_IGNORE_ERATT;
3210         spin_unlock_irq(&phba->hbalock);
3211
3212         lpfc_kill_board(phba, pmb);
3213         pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
3214         retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
3215
3216         if (retval != MBX_SUCCESS) {
3217                 if (retval != MBX_BUSY)
3218                         mempool_free(pmb, phba->mbox_mem_pool);
3219                 spin_lock_irq(&phba->hbalock);
3220                 phba->link_flag &= ~LS_IGNORE_ERATT;
3221                 spin_unlock_irq(&phba->hbalock);
3222                 return 1;
3223         }
3224
3225         spin_lock_irq(&phba->hbalock);
3226         psli->sli_flag &= ~LPFC_SLI_ACTIVE;
3227         spin_unlock_irq(&phba->hbalock);
3228
3229         mempool_free(pmb, phba->mbox_mem_pool);
3230
3231         /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
3232          * attention every 100ms for 3 seconds. If we don't get ERATT after
3233          * 3 seconds we still set HBA_ERROR state because the status of the
3234          * board is now undefined.
3235          */
3236         ha_copy = readl(phba->HAregaddr);
3237
3238         while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
3239                 mdelay(100);
3240                 ha_copy = readl(phba->HAregaddr);
3241         }
3242
3243         del_timer_sync(&psli->mbox_tmo);
3244         if (ha_copy & HA_ERATT) {
3245                 writel(HA_ERATT, phba->HAregaddr);
3246                 phba->pport->stopped = 1;
3247         }
3248         spin_lock_irq(&phba->hbalock);
3249         psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
3250         psli->mbox_active = NULL;
3251         phba->link_flag &= ~LS_IGNORE_ERATT;
3252         spin_unlock_irq(&phba->hbalock);
3253
3254         lpfc_hba_down_post(phba);
3255         phba->link_state = LPFC_HBA_ERROR;
3256
3257         return ha_copy & HA_ERATT ? 0 : 1;
3258 }
3259
3260 /**
3261  * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
3262  * @phba: Pointer to HBA context object.
3263  *
3264  * This function resets the HBA by writing HC_INITFF to the control
3265  * register. After the HBA resets, this function resets all the iocb ring
3266  * indices. This function disables PCI layer parity checking during
3267  * the reset.
3268  * This function returns 0 always.
3269  * The caller is not required to hold any locks.
3270  **/
3271 int
3272 lpfc_sli_brdreset(struct lpfc_hba *phba)
3273 {
3274         struct lpfc_sli *psli;
3275         struct lpfc_sli_ring *pring;
3276         uint16_t cfg_value;
3277         int i;
3278
3279         psli = &phba->sli;
3280
3281         /* Reset HBA */
3282         lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3283                         "0325 Reset HBA Data: x%x x%x\n",
3284                         phba->pport->port_state, psli->sli_flag);
3285
3286         /* perform board reset */
3287         phba->fc_eventTag = 0;
3288         phba->link_events = 0;
3289         phba->pport->fc_myDID = 0;
3290         phba->pport->fc_prevDID = 0;
3291
3292         /* Turn off parity checking and serr during the physical reset */
3293         pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3294         pci_write_config_word(phba->pcidev, PCI_COMMAND,
3295                               (cfg_value &
3296                                ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3297
3298         psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
3299
3300         /* Now toggle INITFF bit in the Host Control Register */
3301         writel(HC_INITFF, phba->HCregaddr);
3302         mdelay(1);
3303         readl(phba->HCregaddr); /* flush */
3304         writel(0, phba->HCregaddr);
3305         readl(phba->HCregaddr); /* flush */
3306
3307         /* Restore PCI cmd register */
3308         pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
3309
3310         /* Initialize relevant SLI info */
3311         for (i = 0; i < psli->num_rings; i++) {
3312                 pring = &psli->ring[i];
3313                 pring->flag = 0;
3314                 pring->rspidx = 0;
3315                 pring->next_cmdidx  = 0;
3316                 pring->local_getidx = 0;
3317                 pring->cmdidx = 0;
3318                 pring->missbufcnt = 0;
3319         }
3320
3321         phba->link_state = LPFC_WARM_START;
3322         return 0;
3323 }
3324
3325 /**
3326  * lpfc_sli4_brdreset - Reset a sli-4 HBA
3327  * @phba: Pointer to HBA context object.
3328  *
3329  * This function resets a SLI4 HBA. This function disables PCI layer parity
3330  * checking during resets the device. The caller is not required to hold
3331  * any locks.
3332  *
3333  * This function returns 0 always.
3334  **/
3335 int
3336 lpfc_sli4_brdreset(struct lpfc_hba *phba)
3337 {
3338         struct lpfc_sli *psli = &phba->sli;
3339         uint16_t cfg_value;
3340         uint8_t qindx;
3341
3342         /* Reset HBA */
3343         lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3344                         "0295 Reset HBA Data: x%x x%x\n",
3345                         phba->pport->port_state, psli->sli_flag);
3346
3347         /* perform board reset */
3348         phba->fc_eventTag = 0;
3349         phba->link_events = 0;
3350         phba->pport->fc_myDID = 0;
3351         phba->pport->fc_prevDID = 0;
3352
3353         /* Turn off parity checking and serr during the physical reset */
3354         pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value);
3355         pci_write_config_word(phba->pcidev, PCI_COMMAND,
3356                               (cfg_value &
3357                               ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
3358
3359         spin_lock_irq(&phba->hbalock);
3360         psli->sli_flag &= ~(LPFC_PROCESS_LA);
3361         phba->fcf.fcf_flag = 0;
3362         /* Clean up the child queue list for the CQs */
3363         list_del_init(&phba->sli4_hba.mbx_wq->list);
3364         list_del_init(&phba->sli4_hba.els_wq->list);
3365         list_del_init(&phba->sli4_hba.hdr_rq->list);
3366         list_del_init(&phba->sli4_hba.dat_rq->list);
3367         list_del_init(&phba->sli4_hba.mbx_cq->list);
3368         list_del_init(&phba->sli4_hba.els_cq->list);
3369         for (qindx = 0; qindx < phba->cfg_fcp_wq_count; qindx++)
3370                 list_del_init(&phba->sli4_hba.fcp_wq[qindx]->list);
3371         for (qindx = 0; qindx < phba->cfg_fcp_eq_count; qindx++)
3372                 list_del_init(&phba->sli4_hba.fcp_cq[qindx]->list);
3373         spin_unlock_irq(&phba->hbalock);
3374
3375         /* Now physically reset the device */
3376         lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3377                         "0389 Performing PCI function reset!\n");
3378         /* Perform FCoE PCI function reset */
3379         lpfc_pci_function_reset(phba);
3380
3381         return 0;
3382 }
3383
3384 /**
3385  * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
3386  * @phba: Pointer to HBA context object.
3387  *
3388  * This function is called in the SLI initialization code path to
3389  * restart the HBA. The caller is not required to hold any lock.
3390  * This function writes MBX_RESTART mailbox command to the SLIM and
3391  * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
3392  * function to free any pending commands. The function enables
3393  * POST only during the first initialization. The function returns zero.
3394  * The function does not guarantee completion of MBX_RESTART mailbox
3395  * command before the return of this function.
3396  **/
3397 static int
3398 lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
3399 {
3400         MAILBOX_t *mb;
3401         struct lpfc_sli *psli;
3402         volatile uint32_t word0;
3403         void __iomem *to_slim;
3404         uint32_t hba_aer_enabled;
3405
3406         spin_lock_irq(&phba->hbalock);
3407
3408         /* Take PCIe device Advanced Error Reporting (AER) state */
3409         hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
3410
3411         psli = &phba->sli;
3412
3413         /* Restart HBA */
3414         lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3415                         "0337 Restart HBA Data: x%x x%x\n",
3416                         phba->pport->port_state, psli->sli_flag);
3417
3418         word0 = 0;
3419         mb = (MAILBOX_t *) &word0;
3420         mb->mbxCommand = MBX_RESTART;
3421         mb->mbxHc = 1;
3422
3423         lpfc_reset_barrier(phba);
3424
3425         to_slim = phba->MBslimaddr;
3426         writel(*(uint32_t *) mb, to_slim);
3427         readl(to_slim); /* flush */
3428
3429         /* Only skip post after fc_ffinit is completed */
3430         if (phba->pport->port_state)
3431                 word0 = 1;      /* This is really setting up word1 */
3432         else
3433                 word0 = 0;      /* This is really setting up word1 */
3434         to_slim = phba->MBslimaddr + sizeof (uint32_t);
3435         writel(*(uint32_t *) mb, to_slim);
3436         readl(to_slim); /* flush */
3437
3438         lpfc_sli_brdreset(phba);
3439         phba->pport->stopped = 0;
3440         phba->link_state = LPFC_INIT_START;
3441         phba->hba_flag = 0;
3442         spin_unlock_irq(&phba->hbalock);
3443
3444         memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
3445         psli->stats_start = get_seconds();
3446
3447         /* Give the INITFF and Post time to settle. */
3448         mdelay(100);
3449
3450         /* Reset HBA AER if it was enabled, note hba_flag was reset above */
3451         if (hba_aer_enabled)
3452                 pci_disable_pcie_error_reporting(phba->pcidev);
3453
3454         lpfc_hba_down_post(phba);
3455
3456         return 0;
3457 }
3458
3459 /**
3460  * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
3461  * @phba: Pointer to HBA context object.
3462  *
3463  * This function is called in the SLI initialization code path to restart
3464  * a SLI4 HBA. The caller is not required to hold any lock.
3465  * At the end of the function, it calls lpfc_hba_down_post function to
3466  * free any pending commands.
3467  **/
3468 static int
3469 lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
3470 {
3471         struct lpfc_sli *psli = &phba->sli;
3472
3473
3474         /* Restart HBA */
3475         lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
3476                         "0296 Restart HBA Data: x%x x%x\n",
3477                         phba->pport->port_state, psli->sli_flag);
3478
3479         lpfc_sli4_brdreset(phba);
3480
3481         spin_lock_irq(&phba->hbalock);
3482         phba->pport->stopped = 0;
3483         phba->link_state = LPFC_INIT_START;
3484         phba->hba_flag = 0;
3485         spin_unlock_irq(&phba->hbalock);
3486
3487         memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
3488         psli->stats_start = get_seconds();
3489
3490         lpfc_hba_down_post(phba);
3491
3492         return 0;
3493 }
3494
3495 /**
3496  * lpfc_sli_brdrestart - Wrapper func for restarting hba
3497  * @phba: Pointer to HBA context object.
3498  *
3499  * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
3500  * API jump table function pointer from the lpfc_hba struct.
3501 **/
3502 int
3503 lpfc_sli_brdrestart(struct lpfc_hba *phba)
3504 {
3505         return phba->lpfc_sli_brdrestart(phba);
3506 }
3507
3508 /**
3509  * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
3510  * @phba: Pointer to HBA context object.
3511  *
3512  * This function is called after a HBA restart to wait for successful
3513  * restart of the HBA. Successful restart of the HBA is indicated by
3514  * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
3515  * iteration, the function will restart the HBA again. The function returns
3516  * zero if HBA successfully restarted else returns negative error code.
3517  **/
3518 static int
3519 lpfc_sli_chipset_init(struct lpfc_hba *phba)
3520 {
3521         uint32_t status, i = 0;
3522
3523         /* Read the HBA Host Status Register */
3524         status = readl(phba->HSregaddr);
3525
3526         /* Check status register to see what current state is */
3527         i = 0;
3528         while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
3529
3530                 /* Check every 100ms for 5 retries, then every 500ms for 5, then
3531                  * every 2.5 sec for 5, then reset board and every 2.5 sec for
3532                  * 4.
3533                  */
3534                 if (i++ >= 20) {
3535                         /* Adapter failed to init, timeout, status reg
3536                            <status> */
3537                         lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3538                                         "0436 Adapter failed to init, "
3539                                         "timeout, status reg x%x, "
3540                                         "FW Data: A8 x%x AC x%x\n", status,
3541                                         readl(phba->MBslimaddr + 0xa8),
3542                                         readl(phba->MBslimaddr + 0xac));
3543                         phba->link_state = LPFC_HBA_ERROR;
3544                         return -ETIMEDOUT;
3545                 }
3546
3547                 /* Check to see if any errors occurred during init */
3548                 if (status & HS_FFERM) {
3549                         /* ERROR: During chipset initialization */
3550                         /* Adapter failed to init, chipset, status reg
3551                            <status> */
3552                         lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3553                                         "0437 Adapter failed to init, "
3554                                         "chipset, status reg x%x, "
3555                                         "FW Data: A8 x%x AC x%x\n", status,
3556                                         readl(phba->MBslimaddr + 0xa8),
3557                                         readl(phba->MBslimaddr + 0xac));
3558                         phba->link_state = LPFC_HBA_ERROR;
3559                         return -EIO;
3560                 }
3561
3562                 if (i <= 5) {
3563                         msleep(10);
3564                 } else if (i <= 10) {
3565                         msleep(500);
3566                 } else {
3567                         msleep(2500);
3568                 }
3569
3570                 if (i == 15) {
3571                                 /* Do post */
3572                         phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3573                         lpfc_sli_brdrestart(phba);
3574                 }
3575                 /* Read the HBA Host Status Register */
3576                 status = readl(phba->HSregaddr);
3577         }
3578
3579         /* Check to see if any errors occurred during init */
3580         if (status & HS_FFERM) {
3581                 /* ERROR: During chipset initialization */
3582                 /* Adapter failed to init, chipset, status reg <status> */
3583                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3584                                 "0438 Adapter failed to init, chipset, "
3585                                 "status reg x%x, "
3586                                 "FW Data: A8 x%x AC x%x\n", status,
3587                                 readl(phba->MBslimaddr + 0xa8),
3588                                 readl(phba->MBslimaddr + 0xac));
3589                 phba->link_state = LPFC_HBA_ERROR;
3590                 return -EIO;
3591         }
3592
3593         /* Clear all interrupt enable conditions */
3594         writel(0, phba->HCregaddr);
3595         readl(phba->HCregaddr); /* flush */
3596
3597         /* setup host attn register */
3598         writel(0xffffffff, phba->HAregaddr);
3599         readl(phba->HAregaddr); /* flush */
3600         return 0;
3601 }
3602
3603 /**
3604  * lpfc_sli_hbq_count - Get the number of HBQs to be configured
3605  *
3606  * This function calculates and returns the number of HBQs required to be
3607  * configured.
3608  **/
3609 int
3610 lpfc_sli_hbq_count(void)
3611 {
3612         return ARRAY_SIZE(lpfc_hbq_defs);
3613 }
3614
3615 /**
3616  * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
3617  *
3618  * This function adds the number of hbq entries in every HBQ to get
3619  * the total number of hbq entries required for the HBA and returns
3620  * the total count.
3621  **/
3622 static int
3623 lpfc_sli_hbq_entry_count(void)
3624 {
3625         int  hbq_count = lpfc_sli_hbq_count();
3626         int  count = 0;
3627         int  i;
3628
3629         for (i = 0; i < hbq_count; ++i)
3630                 count += lpfc_hbq_defs[i]->entry_count;
3631         return count;
3632 }
3633
3634 /**
3635  * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
3636  *
3637  * This function calculates amount of memory required for all hbq entries
3638  * to be configured and returns the total memory required.
3639  **/
3640 int
3641 lpfc_sli_hbq_size(void)
3642 {
3643         return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
3644 }
3645
3646 /**
3647  * lpfc_sli_hbq_setup - configure and initialize HBQs
3648  * @phba: Pointer to HBA context object.
3649  *
3650  * This function is called during the SLI initialization to configure
3651  * all the HBQs and post buffers to the HBQ. The caller is not
3652  * required to hold any locks. This function will return zero if successful
3653  * else it will return negative error code.
3654  **/
3655 static int
3656 lpfc_sli_hbq_setup(struct lpfc_hba *phba)
3657 {
3658         int  hbq_count = lpfc_sli_hbq_count();
3659         LPFC_MBOXQ_t *pmb;
3660         MAILBOX_t *pmbox;
3661         uint32_t hbqno;
3662         uint32_t hbq_entry_index;
3663
3664                                 /* Get a Mailbox buffer to setup mailbox
3665                                  * commands for HBA initialization
3666                                  */
3667         pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3668
3669         if (!pmb)
3670                 return -ENOMEM;
3671
3672         pmbox = &pmb->u.mb;
3673
3674         /* Initialize the struct lpfc_sli_hbq structure for each hbq */
3675         phba->link_state = LPFC_INIT_MBX_CMDS;
3676         phba->hbq_in_use = 1;
3677
3678         hbq_entry_index = 0;
3679         for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
3680                 phba->hbqs[hbqno].next_hbqPutIdx = 0;
3681                 phba->hbqs[hbqno].hbqPutIdx      = 0;
3682                 phba->hbqs[hbqno].local_hbqGetIdx   = 0;
3683                 phba->hbqs[hbqno].entry_count =
3684                         lpfc_hbq_defs[hbqno]->entry_count;
3685                 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
3686                         hbq_entry_index, pmb);
3687                 hbq_entry_index += phba->hbqs[hbqno].entry_count;
3688
3689                 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
3690                         /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
3691                            mbxStatus <status>, ring <num> */
3692
3693                         lpfc_printf_log(phba, KERN_ERR,
3694                                         LOG_SLI | LOG_VPORT,
3695                                         "1805 Adapter failed to init. "
3696                                         "Data: x%x x%x x%x\n",
3697                                         pmbox->mbxCommand,
3698                                         pmbox->mbxStatus, hbqno);
3699
3700                         phba->link_state = LPFC_HBA_ERROR;
3701                         mempool_free(pmb, phba->mbox_mem_pool);
3702                         return ENXIO;
3703                 }
3704         }
3705         phba->hbq_count = hbq_count;
3706
3707         mempool_free(pmb, phba->mbox_mem_pool);
3708
3709         /* Initially populate or replenish the HBQs */
3710         for (hbqno = 0; hbqno < hbq_count; ++hbqno)
3711                 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
3712         return 0;
3713 }
3714
3715 /**
3716  * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
3717  * @phba: Pointer to HBA context object.
3718  *
3719  * This function is called during the SLI initialization to configure
3720  * all the HBQs and post buffers to the HBQ. The caller is not
3721  * required to hold any locks. This function will return zero if successful
3722  * else it will return negative error code.
3723  **/
3724 static int
3725 lpfc_sli4_rb_setup(struct lpfc_hba *phba)
3726 {
3727         phba->hbq_in_use = 1;
3728         phba->hbqs[0].entry_count = lpfc_hbq_defs[0]->entry_count;
3729         phba->hbq_count = 1;
3730         /* Initially populate or replenish the HBQs */
3731         lpfc_sli_hbqbuf_init_hbqs(phba, 0);
3732         return 0;
3733 }
3734
3735 /**
3736  * lpfc_sli_config_port - Issue config port mailbox command
3737  * @phba: Pointer to HBA context object.
3738  * @sli_mode: sli mode - 2/3
3739  *
3740  * This function is called by the sli intialization code path
3741  * to issue config_port mailbox command. This function restarts the
3742  * HBA firmware and issues a config_port mailbox command to configure
3743  * the SLI interface in the sli mode specified by sli_mode
3744  * variable. The caller is not required to hold any locks.
3745  * The function returns 0 if successful, else returns negative error
3746  * code.
3747  **/
3748 int
3749 lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
3750 {
3751         LPFC_MBOXQ_t *pmb;
3752         uint32_t resetcount = 0, rc = 0, done = 0;
3753
3754         pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
3755         if (!pmb) {
3756                 phba->link_state = LPFC_HBA_ERROR;
3757                 return -ENOMEM;
3758         }
3759
3760         phba->sli_rev = sli_mode;
3761         while (resetcount < 2 && !done) {
3762                 spin_lock_irq(&phba->hbalock);
3763                 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
3764                 spin_unlock_irq(&phba->hbalock);
3765                 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
3766                 lpfc_sli_brdrestart(phba);
3767                 rc = lpfc_sli_chipset_init(phba);
3768                 if (rc)
3769                         break;
3770
3771                 spin_lock_irq(&phba->hbalock);
3772                 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
3773                 spin_unlock_irq(&phba->hbalock);
3774                 resetcount++;
3775
3776                 /* Call pre CONFIG_PORT mailbox command initialization.  A
3777                  * value of 0 means the call was successful.  Any other
3778                  * nonzero value is a failure, but if ERESTART is returned,
3779                  * the driver may reset the HBA and try again.
3780                  */
3781                 rc = lpfc_config_port_prep(phba);
3782                 if (rc == -ERESTART) {
3783                         phba->link_state = LPFC_LINK_UNKNOWN;
3784                         continue;
3785                 } else if (rc)
3786                         break;
3787                 phba->link_state = LPFC_INIT_MBX_CMDS;
3788                 lpfc_config_port(phba, pmb);
3789                 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
3790                 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
3791                                         LPFC_SLI3_HBQ_ENABLED |
3792                                         LPFC_SLI3_CRP_ENABLED |
3793                                         LPFC_SLI3_INB_ENABLED |
3794                                         LPFC_SLI3_BG_ENABLED);
3795                 if (rc != MBX_SUCCESS) {
3796                         lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3797                                 "0442 Adapter failed to init, mbxCmd x%x "
3798                                 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
3799                                 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
3800                         spin_lock_irq(&phba->hbalock);
3801                         phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
3802                         spin_unlock_irq(&phba->hbalock);
3803                         rc = -ENXIO;
3804                 } else {
3805                         /* Allow asynchronous mailbox command to go through */
3806                         spin_lock_irq(&phba->hbalock);
3807                         phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
3808                         spin_unlock_irq(&phba->hbalock);
3809                         done = 1;
3810                 }
3811         }
3812         if (!done) {
3813                 rc = -EINVAL;
3814                 goto do_prep_failed;
3815         }
3816         if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
3817                 if (!pmb->u.mb.un.varCfgPort.cMA) {
3818                         rc = -ENXIO;
3819                         goto do_prep_failed;
3820                 }
3821                 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
3822                         phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
3823                         phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
3824                         phba->max_vports = (phba->max_vpi > phba->max_vports) ?
3825                                 phba->max_vpi : phba->max_vports;
3826
3827                 } else
3828                         phba->max_vpi = 0;
3829                 if (pmb->u.mb.un.varCfgPort.gdss)
3830                         phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
3831                 if (pmb->u.mb.un.varCfgPort.gerbm)
3832                         phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
3833                 if (pmb->u.mb.un.varCfgPort.gcrp)
3834                         phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
3835                 if (pmb->u.mb.un.varCfgPort.ginb) {
3836                         phba->sli3_options |= LPFC_SLI3_INB_ENABLED;
3837                         phba->hbq_get = phba->mbox->us.s3_inb_pgp.hbq_get;
3838                         phba->port_gp = phba->mbox->us.s3_inb_pgp.port;
3839                         phba->inb_ha_copy = &phba->mbox->us.s3_inb_pgp.ha_copy;
3840                         phba->inb_counter = &phba->mbox->us.s3_inb_pgp.counter;
3841                         phba->inb_last_counter =
3842                                         phba->mbox->us.s3_inb_pgp.counter;
3843                 } else {
3844                         phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
3845                         phba->port_gp = phba->mbox->us.s3_pgp.port;
3846                         phba->inb_ha_copy = NULL;
3847                         phba->inb_counter = NULL;
3848                 }
3849
3850                 if (phba->cfg_enable_bg) {
3851                         if (pmb->u.mb.un.varCfgPort.gbg)
3852                                 phba->sli3_options |= LPFC_SLI3_BG_ENABLED;
3853                         else
3854                                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
3855                                                 "0443 Adapter did not grant "
3856                                                 "BlockGuard\n");
3857                 }
3858         } else {
3859                 phba->hbq_get = NULL;
3860                 phba->port_gp = phba->mbox->us.s2.port;
3861                 phba->inb_ha_copy = NULL;
3862                 phba->inb_counter = NULL;
3863                 phba->max_vpi = 0;
3864         }
3865 do_prep_failed:
3866         mempool_free(pmb, phba->mbox_mem_pool);
3867         return rc;
3868 }
3869
3870
3871 /**
3872  * lpfc_sli_hba_setup - SLI intialization function
3873  * @phba: Pointer to HBA context object.
3874  *
3875  * This function is the main SLI intialization function. This function
3876  * is called by the HBA intialization code, HBA reset code and HBA
3877  * error attention handler code. Caller is not required to hold any
3878  * locks. This function issues config_port mailbox command to configure
3879  * the SLI, setup iocb rings and HBQ rings. In the end the function
3880  * calls the config_port_post function to issue init_link mailbox
3881  * command and to start the discovery. The function will return zero
3882  * if successful, else it will return negative error code.
3883  **/
3884 int
3885 lpfc_sli_hba_setup(struct lpfc_hba *phba)
3886 {
3887         uint32_t rc;
3888         int  mode = 3;
3889
3890         switch (lpfc_sli_mode) {
3891         case 2:
3892                 if (phba->cfg_enable_npiv) {
3893                         lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
3894                                 "1824 NPIV enabled: Override lpfc_sli_mode "
3895                                 "parameter (%d) to auto (0).\n",
3896                                 lpfc_sli_mode);
3897                         break;
3898                 }
3899                 mode = 2;
3900                 break;
3901         case 0:
3902         case 3:
3903                 break;
3904         default:
3905                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
3906                                 "1819 Unrecognized lpfc_sli_mode "
3907                                 "parameter: %d.\n", lpfc_sli_mode);
3908
3909                 break;
3910         }
3911
3912         rc = lpfc_sli_config_port(phba, mode);
3913
3914         if (rc && lpfc_sli_mode == 3)
3915                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
3916                                 "1820 Unable to select SLI-3.  "
3917                                 "Not supported by adapter.\n");
3918         if (rc && mode != 2)
3919                 rc = lpfc_sli_config_port(phba, 2);
3920         if (rc)
3921                 goto lpfc_sli_hba_setup_error;
3922
3923         /* Enable PCIe device Advanced Error Reporting (AER) if configured */
3924         if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
3925                 rc = pci_enable_pcie_error_reporting(phba->pcidev);
3926                 if (!rc) {
3927                         lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3928                                         "2709 This device supports "
3929                                         "Advanced Error Reporting (AER)\n");
3930                         spin_lock_irq(&phba->hbalock);
3931                         phba->hba_flag |= HBA_AER_ENABLED;
3932                         spin_unlock_irq(&phba->hbalock);
3933                 } else {
3934                         lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3935                                         "2708 This device does not support "
3936                                         "Advanced Error Reporting (AER)\n");
3937                         phba->cfg_aer_support = 0;
3938                 }
3939         }
3940
3941         if (phba->sli_rev == 3) {
3942                 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
3943                 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
3944         } else {
3945                 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
3946                 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
3947                 phba->sli3_options = 0;
3948         }
3949
3950         lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3951                         "0444 Firmware in SLI %x mode. Max_vpi %d\n",
3952                         phba->sli_rev, phba->max_vpi);
3953         rc = lpfc_sli_ring_map(phba);
3954
3955         if (rc)
3956                 goto lpfc_sli_hba_setup_error;
3957
3958         /* Init HBQs */
3959         if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
3960                 rc = lpfc_sli_hbq_setup(phba);
3961                 if (rc)
3962                         goto lpfc_sli_hba_setup_error;
3963         }
3964         spin_lock_irq(&phba->hbalock);
3965         phba->sli.sli_flag |= LPFC_PROCESS_LA;
3966         spin_unlock_irq(&phba->hbalock);
3967
3968         rc = lpfc_config_port_post(phba);
3969         if (rc)
3970                 goto lpfc_sli_hba_setup_error;
3971
3972         return rc;
3973
3974 lpfc_sli_hba_setup_error:
3975         phba->link_state = LPFC_HBA_ERROR;
3976         lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
3977                         "0445 Firmware initialization failed\n");
3978         return rc;
3979 }
3980
3981 /**
3982  * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
3983  * @phba: Pointer to HBA context object.
3984  * @mboxq: mailbox pointer.
3985  * This function issue a dump mailbox command to read config region
3986  * 23 and parse the records in the region and populate driver
3987  * data structure.
3988  **/
3989 static int
3990 lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba,
3991                 LPFC_MBOXQ_t *mboxq)
3992 {
3993         struct lpfc_dmabuf *mp;
3994         struct lpfc_mqe *mqe;
3995         uint32_t data_length;
3996         int rc;
3997
3998         /* Program the default value of vlan_id and fc_map */
3999         phba->valid_vlan = 0;
4000         phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
4001         phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
4002         phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
4003
4004         mqe = &mboxq->u.mqe;
4005         if (lpfc_dump_fcoe_param(phba, mboxq))
4006                 return -ENOMEM;
4007
4008         mp = (struct lpfc_dmabuf *) mboxq->context1;
4009         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4010
4011         lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4012                         "(%d):2571 Mailbox cmd x%x Status x%x "
4013                         "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4014                         "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
4015                         "CQ: x%x x%x x%x x%x\n",
4016                         mboxq->vport ? mboxq->vport->vpi : 0,
4017                         bf_get(lpfc_mqe_command, mqe),
4018                         bf_get(lpfc_mqe_status, mqe),
4019                         mqe->un.mb_words[0], mqe->un.mb_words[1],
4020                         mqe->un.mb_words[2], mqe->un.mb_words[3],
4021                         mqe->un.mb_words[4], mqe->un.mb_words[5],
4022                         mqe->un.mb_words[6], mqe->un.mb_words[7],
4023                         mqe->un.mb_words[8], mqe->un.mb_words[9],
4024                         mqe->un.mb_words[10], mqe->un.mb_words[11],
4025                         mqe->un.mb_words[12], mqe->un.mb_words[13],
4026                         mqe->un.mb_words[14], mqe->un.mb_words[15],
4027                         mqe->un.mb_words[16], mqe->un.mb_words[50],
4028                         mboxq->mcqe.word0,
4029                         mboxq->mcqe.mcqe_tag0,  mboxq->mcqe.mcqe_tag1,
4030                         mboxq->mcqe.trailer);
4031
4032         if (rc) {
4033                 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4034                 kfree(mp);
4035                 return -EIO;
4036         }
4037         data_length = mqe->un.mb_words[5];
4038         if (data_length > DMP_RGN23_SIZE) {
4039                 lpfc_mbuf_free(phba, mp->virt, mp->phys);
4040                 kfree(mp);
4041                 return -EIO;
4042         }
4043
4044         lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
4045         lpfc_mbuf_free(phba, mp->virt, mp->phys);
4046         kfree(mp);
4047         return 0;
4048 }
4049
4050 /**
4051  * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
4052  * @phba: pointer to lpfc hba data structure.
4053  * @mboxq: pointer to the LPFC_MBOXQ_t structure.
4054  * @vpd: pointer to the memory to hold resulting port vpd data.
4055  * @vpd_size: On input, the number of bytes allocated to @vpd.
4056  *            On output, the number of data bytes in @vpd.
4057  *
4058  * This routine executes a READ_REV SLI4 mailbox command.  In
4059  * addition, this routine gets the port vpd data.
4060  *
4061  * Return codes
4062  *      0 - sucessful
4063  *      ENOMEM - could not allocated memory.
4064  **/
4065 static int
4066 lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
4067                     uint8_t *vpd, uint32_t *vpd_size)
4068 {
4069         int rc = 0;
4070         uint32_t dma_size;
4071         struct lpfc_dmabuf *dmabuf;
4072         struct lpfc_mqe *mqe;
4073
4074         dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
4075         if (!dmabuf)
4076                 return -ENOMEM;
4077
4078         /*
4079          * Get a DMA buffer for the vpd data resulting from the READ_REV
4080          * mailbox command.
4081          */
4082         dma_size = *vpd_size;
4083         dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
4084                                           dma_size,
4085                                           &dmabuf->phys,
4086                                           GFP_KERNEL);
4087         if (!dmabuf->virt) {
4088                 kfree(dmabuf);
4089                 return -ENOMEM;
4090         }
4091         memset(dmabuf->virt, 0, dma_size);
4092
4093         /*
4094          * The SLI4 implementation of READ_REV conflicts at word1,
4095          * bits 31:16 and SLI4 adds vpd functionality not present
4096          * in SLI3.  This code corrects the conflicts.
4097          */
4098         lpfc_read_rev(phba, mboxq);
4099         mqe = &mboxq->u.mqe;
4100         mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
4101         mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
4102         mqe->un.read_rev.word1 &= 0x0000FFFF;
4103         bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
4104         bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
4105
4106         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4107         if (rc) {
4108                 dma_free_coherent(&phba->pcidev->dev, dma_size,
4109                                   dmabuf->virt, dmabuf->phys);
4110                 return -EIO;
4111         }
4112
4113         /*
4114          * The available vpd length cannot be bigger than the
4115          * DMA buffer passed to the port.  Catch the less than
4116          * case and update the caller's size.
4117          */
4118         if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
4119                 *vpd_size = mqe->un.read_rev.avail_vpd_len;
4120
4121         lpfc_sli_pcimem_bcopy(dmabuf->virt, vpd, *vpd_size);
4122         dma_free_coherent(&phba->pcidev->dev, dma_size,
4123                           dmabuf->virt, dmabuf->phys);
4124         kfree(dmabuf);
4125         return 0;
4126 }
4127
4128 /**
4129  * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
4130  * @phba: pointer to lpfc hba data structure.
4131  *
4132  * This routine is called to explicitly arm the SLI4 device's completion and
4133  * event queues
4134  **/
4135 static void
4136 lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
4137 {
4138         uint8_t fcp_eqidx;
4139
4140         lpfc_sli4_cq_release(phba->sli4_hba.mbx_cq, LPFC_QUEUE_REARM);
4141         lpfc_sli4_cq_release(phba->sli4_hba.els_cq, LPFC_QUEUE_REARM);
4142         for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++)
4143                 lpfc_sli4_cq_release(phba->sli4_hba.fcp_cq[fcp_eqidx],
4144                                      LPFC_QUEUE_REARM);
4145         lpfc_sli4_eq_release(phba->sli4_hba.sp_eq, LPFC_QUEUE_REARM);
4146         for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++)
4147                 lpfc_sli4_eq_release(phba->sli4_hba.fp_eq[fcp_eqidx],
4148                                      LPFC_QUEUE_REARM);
4149 }
4150
4151 /**
4152  * lpfc_sli4_hba_setup - SLI4 device intialization PCI function
4153  * @phba: Pointer to HBA context object.
4154  *
4155  * This function is the main SLI4 device intialization PCI function. This
4156  * function is called by the HBA intialization code, HBA reset code and
4157  * HBA error attention handler code. Caller is not required to hold any
4158  * locks.
4159  **/
4160 int
4161 lpfc_sli4_hba_setup(struct lpfc_hba *phba)
4162 {
4163         int rc;
4164         LPFC_MBOXQ_t *mboxq;
4165         struct lpfc_mqe *mqe;
4166         uint8_t *vpd;
4167         uint32_t vpd_size;
4168         uint32_t ftr_rsp = 0;
4169         struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
4170         struct lpfc_vport *vport = phba->pport;
4171         struct lpfc_dmabuf *mp;
4172
4173         /* Perform a PCI function reset to start from clean */
4174         rc = lpfc_pci_function_reset(phba);
4175         if (unlikely(rc))
4176                 return -ENODEV;
4177
4178         /* Check the HBA Host Status Register for readyness */
4179         rc = lpfc_sli4_post_status_check(phba);
4180         if (unlikely(rc))
4181                 return -ENODEV;
4182         else {
4183                 spin_lock_irq(&phba->hbalock);
4184                 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
4185                 spin_unlock_irq(&phba->hbalock);
4186         }
4187
4188         /*
4189          * Allocate a single mailbox container for initializing the
4190          * port.
4191          */
4192         mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4193         if (!mboxq)
4194                 return -ENOMEM;
4195
4196         /*
4197          * Continue initialization with default values even if driver failed
4198          * to read FCoE param config regions
4199          */
4200         if (lpfc_sli4_read_fcoe_params(phba, mboxq))
4201                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
4202                         "2570 Failed to read FCoE parameters\n");
4203
4204         /* Issue READ_REV to collect vpd and FW information. */
4205         vpd_size = PAGE_SIZE;
4206         vpd = kzalloc(vpd_size, GFP_KERNEL);
4207         if (!vpd) {
4208                 rc = -ENOMEM;
4209                 goto out_free_mbox;
4210         }
4211
4212         rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
4213         if (unlikely(rc))
4214                 goto out_free_vpd;
4215
4216         mqe = &mboxq->u.mqe;
4217         phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
4218         if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev))
4219                 phba->hba_flag |= HBA_FCOE_SUPPORT;
4220
4221         if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
4222                 LPFC_DCBX_CEE_MODE)
4223                 phba->hba_flag |= HBA_FIP_SUPPORT;
4224         else
4225                 phba->hba_flag &= ~HBA_FIP_SUPPORT;
4226
4227         if (phba->sli_rev != LPFC_SLI_REV4 ||
4228             !(phba->hba_flag & HBA_FCOE_SUPPORT)) {
4229                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4230                         "0376 READ_REV Error. SLI Level %d "
4231                         "FCoE enabled %d\n",
4232                         phba->sli_rev, phba->hba_flag & HBA_FCOE_SUPPORT);
4233                 rc = -EIO;
4234                 goto out_free_vpd;
4235         }
4236         /*
4237          * Evaluate the read rev and vpd data. Populate the driver
4238          * state with the results. If this routine fails, the failure
4239          * is not fatal as the driver will use generic values.
4240          */
4241         rc = lpfc_parse_vpd(phba, vpd, vpd_size);
4242         if (unlikely(!rc)) {
4243                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4244                                 "0377 Error %d parsing vpd. "
4245                                 "Using defaults.\n", rc);
4246                 rc = 0;
4247         }
4248
4249         /* Save information as VPD data */
4250         phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
4251         phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
4252         phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
4253         phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
4254                                          &mqe->un.read_rev);
4255         phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
4256                                        &mqe->un.read_rev);
4257         phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
4258                                             &mqe->un.read_rev);
4259         phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
4260                                            &mqe->un.read_rev);
4261         phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
4262         memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
4263         phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
4264         memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
4265         phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
4266         memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
4267         lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4268                         "(%d):0380 READ_REV Status x%x "
4269                         "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
4270                         mboxq->vport ? mboxq->vport->vpi : 0,
4271                         bf_get(lpfc_mqe_status, mqe),
4272                         phba->vpd.rev.opFwName,
4273                         phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
4274                         phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
4275
4276         /*
4277          * Discover the port's supported feature set and match it against the
4278          * hosts requests.
4279          */
4280         lpfc_request_features(phba, mboxq);
4281         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4282         if (unlikely(rc)) {
4283                 rc = -EIO;
4284                 goto out_free_vpd;
4285         }
4286
4287         /*
4288          * The port must support FCP initiator mode as this is the
4289          * only mode running in the host.
4290          */
4291         if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
4292                 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
4293                                 "0378 No support for fcpi mode.\n");
4294                 ftr_rsp++;
4295         }
4296
4297         /*
4298          * If the port cannot support the host's requested features
4299          * then turn off the global config parameters to disable the
4300          * feature in the driver.  This is not a fatal error.
4301          */
4302         if ((phba->cfg_enable_bg) &&
4303             !(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
4304                 ftr_rsp++;
4305
4306         if (phba->max_vpi && phba->cfg_enable_npiv &&
4307             !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
4308                 ftr_rsp++;
4309
4310         if (ftr_rsp) {
4311                 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
4312                                 "0379 Feature Mismatch Data: x%08x %08x "
4313                                 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
4314                                 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
4315                                 phba->cfg_enable_npiv, phba->max_vpi);
4316                 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
4317                         phba->cfg_enable_bg = 0;
4318                 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
4319                         phba->cfg_enable_npiv = 0;
4320         }
4321
4322         /* These SLI3 features are assumed in SLI4 */
4323         spin_lock_irq(&phba->hbalock);
4324         phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
4325         spin_unlock_irq(&phba->hbalock);
4326
4327         /* Read the port's service parameters. */
4328         lpfc_read_sparam(phba, mboxq, vport->vpi);
4329         mboxq->vport = vport;
4330         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
4331         mp = (struct lpfc_dmabuf *) mboxq->context1;
4332         if (rc == MBX_SUCCESS) {
4333                 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
4334                 rc = 0;
4335         }
4336
4337         /*
4338          * This memory was allocated by the lpfc_read_sparam routine. Release
4339          * it to the mbuf pool.
4340          */
4341         lpfc_mbuf_free(phba, mp->virt, mp->phys);
4342         kfree(mp);
4343         mboxq->context1 = NULL;
4344         if (unlikely(rc)) {
4345                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4346                                 "0382 READ_SPARAM command failed "
4347                                 "status %d, mbxStatus x%x\n",
4348                                 rc, bf_get(lpfc_mqe_status, mqe));
4349                 phba->link_state = LPFC_HBA_ERROR;
4350                 rc = -EIO;
4351                 goto out_free_vpd;
4352         }
4353
4354         if (phba->cfg_soft_wwnn)
4355                 u64_to_wwn(phba->cfg_soft_wwnn,
4356                            vport->fc_sparam.nodeName.u.wwn);
4357         if (phba->cfg_soft_wwpn)
4358                 u64_to_wwn(phba->cfg_soft_wwpn,
4359                            vport->fc_sparam.portName.u.wwn);
4360         memcpy(&vport->fc_nodename, &vport->fc_sparam.nodeName,
4361                sizeof(struct lpfc_name));
4362         memcpy(&vport->fc_portname, &vport->fc_sparam.portName,
4363                sizeof(struct lpfc_name));
4364
4365         /* Update the fc_host data structures with new wwn. */
4366         fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
4367         fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
4368
4369         /* Register SGL pool to the device using non-embedded mailbox command */
4370         rc = lpfc_sli4_post_sgl_list(phba);
4371         if (unlikely(rc)) {
4372                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4373                                 "0582 Error %d during sgl post operation\n",
4374                                         rc);
4375                 rc = -ENODEV;
4376                 goto out_free_vpd;
4377         }
4378
4379         /* Register SCSI SGL pool to the device */
4380         rc = lpfc_sli4_repost_scsi_sgl_list(phba);
4381         if (unlikely(rc)) {
4382                 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
4383                                 "0383 Error %d during scsi sgl post "
4384                                 "operation\n", rc);
4385                 /* Some Scsi buffers were moved to the abort scsi list */
4386                 /* A pci function reset will repost them */
4387                 rc = -ENODEV;
4388                 goto out_free_vpd;
4389         }
4390
4391         /* Post the rpi header region to the device. */
4392         rc = lpfc_sli4_post_all_rpi_hdrs(phba);
4393         if (unlikely(rc)) {
4394                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4395                                 "0393 Error %d during rpi post operation\n",
4396                                 rc);
4397                 rc = -ENODEV;
4398                 goto out_free_vpd;
4399         }
4400
4401         /* Set up all the queues to the device */
4402         rc = lpfc_sli4_queue_setup(phba);
4403         if (unlikely(rc)) {
4404                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4405                                 "0381 Error %d during queue setup.\n ", rc);
4406                 goto out_stop_timers;
4407         }
4408
4409         /* Arm the CQs and then EQs on device */
4410         lpfc_sli4_arm_cqeq_intr(phba);
4411
4412         /* Indicate device interrupt mode */
4413         phba->sli4_hba.intr_enable = 1;
4414
4415         /* Allow asynchronous mailbox command to go through */
4416         spin_lock_irq(&phba->hbalock);
4417         phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4418         spin_unlock_irq(&phba->hbalock);
4419
4420         /* Post receive buffers to the device */
4421         lpfc_sli4_rb_setup(phba);
4422
4423         /* Start the ELS watchdog timer */
4424         mod_timer(&vport->els_tmofunc,
4425                   jiffies + HZ * (phba->fc_ratov * 2));
4426
4427         /* Start heart beat timer */
4428         mod_timer(&phba->hb_tmofunc,
4429                   jiffies + HZ * LPFC_HB_MBOX_INTERVAL);
4430         phba->hb_outstanding = 0;
4431         phba->last_completion_time = jiffies;
4432
4433         /* Start error attention (ERATT) polling timer */
4434         mod_timer(&phba->eratt_poll, jiffies + HZ * LPFC_ERATT_POLL_INTERVAL);
4435
4436         /*
4437          * The port is ready, set the host's link state to LINK_DOWN
4438          * in preparation for link interrupts.
4439          */
4440         lpfc_init_link(phba, mboxq, phba->cfg_topology, phba->cfg_link_speed);
4441         mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4442         lpfc_set_loopback_flag(phba);
4443         /* Change driver state to LPFC_LINK_DOWN right before init link */
4444         spin_lock_irq(&phba->hbalock);
4445         phba->link_state = LPFC_LINK_DOWN;
4446         spin_unlock_irq(&phba->hbalock);
4447         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
4448         if (unlikely(rc != MBX_NOT_FINISHED)) {
4449                 kfree(vpd);
4450                 return 0;
4451         } else
4452                 rc = -EIO;
4453
4454         /* Unset all the queues set up in this routine when error out */
4455         if (rc)
4456                 lpfc_sli4_queue_unset(phba);
4457
4458 out_stop_timers:
4459         if (rc)
4460                 lpfc_stop_hba_timers(phba);
4461 out_free_vpd:
4462         kfree(vpd);
4463 out_free_mbox:
4464         mempool_free(mboxq, phba->mbox_mem_pool);
4465         return rc;
4466 }
4467
4468 /**
4469  * lpfc_mbox_timeout - Timeout call back function for mbox timer
4470  * @ptr: context object - pointer to hba structure.
4471  *
4472  * This is the callback function for mailbox timer. The mailbox
4473  * timer is armed when a new mailbox command is issued and the timer
4474  * is deleted when the mailbox complete. The function is called by
4475  * the kernel timer code when a mailbox does not complete within
4476  * expected time. This function wakes up the worker thread to
4477  * process the mailbox timeout and returns. All the processing is
4478  * done by the worker thread function lpfc_mbox_timeout_handler.
4479  **/
4480 void
4481 lpfc_mbox_timeout(unsigned long ptr)
4482 {
4483         struct lpfc_hba  *phba = (struct lpfc_hba *) ptr;
4484         unsigned long iflag;
4485         uint32_t tmo_posted;
4486
4487         spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
4488         tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
4489         if (!tmo_posted)
4490                 phba->pport->work_port_events |= WORKER_MBOX_TMO;
4491         spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
4492
4493         if (!tmo_posted)
4494                 lpfc_worker_wake_up(phba);
4495         return;
4496 }
4497
4498
4499 /**
4500  * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
4501  * @phba: Pointer to HBA context object.
4502  *
4503  * This function is called from worker thread when a mailbox command times out.
4504  * The caller is not required to hold any locks. This function will reset the
4505  * HBA and recover all the pending commands.
4506  **/
4507 void
4508 lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
4509 {
4510         LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
4511         MAILBOX_t *mb = &pmbox->u.mb;
4512         struct lpfc_sli *psli = &phba->sli;
4513         struct lpfc_sli_ring *pring;
4514
4515         /* Check the pmbox pointer first.  There is a race condition
4516          * between the mbox timeout handler getting executed in the
4517          * worklist and the mailbox actually completing. When this
4518          * race condition occurs, the mbox_active will be NULL.
4519          */
4520         spin_lock_irq(&phba->hbalock);
4521         if (pmbox == NULL) {
4522                 lpfc_printf_log(phba, KERN_WARNING,
4523                                 LOG_MBOX | LOG_SLI,
4524                                 "0353 Active Mailbox cleared - mailbox timeout "
4525                                 "exiting\n");
4526                 spin_unlock_irq(&phba->hbalock);
4527                 return;
4528         }
4529
4530         /* Mbox cmd <mbxCommand> timeout */
4531         lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4532                         "0310 Mailbox command x%x timeout Data: x%x x%x x%p\n",
4533                         mb->mbxCommand,
4534                         phba->pport->port_state,
4535                         phba->sli.sli_flag,
4536                         phba->sli.mbox_active);
4537         spin_unlock_irq(&phba->hbalock);
4538
4539         /* Setting state unknown so lpfc_sli_abort_iocb_ring
4540          * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
4541          * it to fail all oustanding SCSI IO.
4542          */
4543         spin_lock_irq(&phba->pport->work_port_lock);
4544         phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
4545         spin_unlock_irq(&phba->pport->work_port_lock);
4546         spin_lock_irq(&phba->hbalock);
4547         phba->link_state = LPFC_LINK_UNKNOWN;
4548         psli->sli_flag &= ~LPFC_SLI_ACTIVE;
4549         spin_unlock_irq(&phba->hbalock);
4550
4551         pring = &psli->ring[psli->fcp_ring];
4552         lpfc_sli_abort_iocb_ring(phba, pring);
4553
4554         lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4555                         "0345 Resetting board due to mailbox timeout\n");
4556
4557         /* Reset the HBA device */
4558         lpfc_reset_hba(phba);
4559 }
4560
4561 /**
4562  * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
4563  * @phba: Pointer to HBA context object.
4564  * @pmbox: Pointer to mailbox object.
4565  * @flag: Flag indicating how the mailbox need to be processed.
4566  *
4567  * This function is called by discovery code and HBA management code
4568  * to submit a mailbox command to firmware with SLI-3 interface spec. This
4569  * function gets the hbalock to protect the data structures.
4570  * The mailbox command can be submitted in polling mode, in which case
4571  * this function will wait in a polling loop for the completion of the
4572  * mailbox.
4573  * If the mailbox is submitted in no_wait mode (not polling) the
4574  * function will submit the command and returns immediately without waiting
4575  * for the mailbox completion. The no_wait is supported only when HBA
4576  * is in SLI2/SLI3 mode - interrupts are enabled.
4577  * The SLI interface allows only one mailbox pending at a time. If the
4578  * mailbox is issued in polling mode and there is already a mailbox
4579  * pending, then the function will return an error. If the mailbox is issued
4580  * in NO_WAIT mode and there is a mailbox pending already, the function
4581  * will return MBX_BUSY after queuing the mailbox into mailbox queue.
4582  * The sli layer owns the mailbox object until the completion of mailbox
4583  * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
4584  * return codes the caller owns the mailbox command after the return of
4585  * the function.
4586  **/
4587 static int
4588 lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
4589                        uint32_t flag)
4590 {
4591         MAILBOX_t *mb;
4592         struct lpfc_sli *psli = &phba->sli;
4593         uint32_t status, evtctr;
4594         uint32_t ha_copy;
4595         int i;
4596         unsigned long timeout;
4597         unsigned long drvr_flag = 0;
4598         uint32_t word0, ldata;
4599         void __iomem *to_slim;
4600         int processing_queue = 0;
4601
4602         spin_lock_irqsave(&phba->hbalock, drvr_flag);
4603         if (!pmbox) {
4604                 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
4605                 /* processing mbox queue from intr_handler */
4606                 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
4607                         spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4608                         return MBX_SUCCESS;
4609                 }
4610                 processing_queue = 1;
4611                 pmbox = lpfc_mbox_get(phba);
4612                 if (!pmbox) {
4613                         spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4614                         return MBX_SUCCESS;
4615                 }
4616         }
4617
4618         if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
4619                 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
4620                 if(!pmbox->vport) {
4621                         spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4622                         lpfc_printf_log(phba, KERN_ERR,
4623                                         LOG_MBOX | LOG_VPORT,
4624                                         "1806 Mbox x%x failed. No vport\n",
4625                                         pmbox->u.mb.mbxCommand);
4626                         dump_stack();
4627                         goto out_not_finished;
4628                 }
4629         }
4630
4631         /* If the PCI channel is in offline state, do not post mbox. */
4632         if (unlikely(pci_channel_offline(phba->pcidev))) {
4633                 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4634                 goto out_not_finished;
4635         }
4636
4637         /* If HBA has a deferred error attention, fail the iocb. */
4638         if (unlikely(phba->hba_flag & DEFER_ERATT)) {
4639                 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4640                 goto out_not_finished;
4641         }
4642
4643         psli = &phba->sli;
4644
4645         mb = &pmbox->u.mb;
4646         status = MBX_SUCCESS;
4647
4648         if (phba->link_state == LPFC_HBA_ERROR) {
4649                 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4650
4651                 /* Mbox command <mbxCommand> cannot issue */
4652                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4653                                 "(%d):0311 Mailbox command x%x cannot "
4654                                 "issue Data: x%x x%x\n",
4655                                 pmbox->vport ? pmbox->vport->vpi : 0,
4656                                 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
4657                 goto out_not_finished;
4658         }
4659
4660         if (mb->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT &&
4661             !(readl(phba->HCregaddr) & HC_MBINT_ENA)) {
4662                 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4663                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4664                                 "(%d):2528 Mailbox command x%x cannot "
4665                                 "issue Data: x%x x%x\n",
4666                                 pmbox->vport ? pmbox->vport->vpi : 0,
4667                                 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
4668                 goto out_not_finished;
4669         }
4670
4671         if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
4672                 /* Polling for a mbox command when another one is already active
4673                  * is not allowed in SLI. Also, the driver must have established
4674                  * SLI2 mode to queue and process multiple mbox commands.
4675                  */
4676
4677                 if (flag & MBX_POLL) {
4678                         spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4679
4680                         /* Mbox command <mbxCommand> cannot issue */
4681                         lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4682                                         "(%d):2529 Mailbox command x%x "
4683                                         "cannot issue Data: x%x x%x\n",
4684                                         pmbox->vport ? pmbox->vport->vpi : 0,
4685                                         pmbox->u.mb.mbxCommand,
4686                                         psli->sli_flag, flag);
4687                         goto out_not_finished;
4688                 }
4689
4690                 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
4691                         spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4692                         /* Mbox command <mbxCommand> cannot issue */
4693                         lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4694                                         "(%d):2530 Mailbox command x%x "
4695                                         "cannot issue Data: x%x x%x\n",
4696                                         pmbox->vport ? pmbox->vport->vpi : 0,
4697                                         pmbox->u.mb.mbxCommand,
4698                                         psli->sli_flag, flag);
4699                         goto out_not_finished;
4700                 }
4701
4702                 /* Another mailbox command is still being processed, queue this
4703                  * command to be processed later.
4704                  */
4705                 lpfc_mbox_put(phba, pmbox);
4706
4707                 /* Mbox cmd issue - BUSY */
4708                 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4709                                 "(%d):0308 Mbox cmd issue - BUSY Data: "
4710                                 "x%x x%x x%x x%x\n",
4711                                 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
4712                                 mb->mbxCommand, phba->pport->port_state,
4713                                 psli->sli_flag, flag);
4714
4715                 psli->slistat.mbox_busy++;
4716                 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4717
4718                 if (pmbox->vport) {
4719                         lpfc_debugfs_disc_trc(pmbox->vport,
4720                                 LPFC_DISC_TRC_MBOX_VPORT,
4721                                 "MBOX Bsy vport:  cmd:x%x mb:x%x x%x",
4722                                 (uint32_t)mb->mbxCommand,
4723                                 mb->un.varWords[0], mb->un.varWords[1]);
4724                 }
4725                 else {
4726                         lpfc_debugfs_disc_trc(phba->pport,
4727                                 LPFC_DISC_TRC_MBOX,
4728                                 "MBOX Bsy:        cmd:x%x mb:x%x x%x",
4729                                 (uint32_t)mb->mbxCommand,
4730                                 mb->un.varWords[0], mb->un.varWords[1]);
4731                 }
4732
4733                 return MBX_BUSY;
4734         }
4735
4736         psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
4737
4738         /* If we are not polling, we MUST be in SLI2 mode */
4739         if (flag != MBX_POLL) {
4740                 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
4741                     (mb->mbxCommand != MBX_KILL_BOARD)) {
4742                         psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
4743                         spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4744                         /* Mbox command <mbxCommand> cannot issue */
4745                         lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
4746                                         "(%d):2531 Mailbox command x%x "
4747                                         "cannot issue Data: x%x x%x\n",
4748                                         pmbox->vport ? pmbox->vport->vpi : 0,
4749                                         pmbox->u.mb.mbxCommand,
4750                                         psli->sli_flag, flag);
4751                         goto out_not_finished;
4752                 }
4753                 /* timeout active mbox command */
4754                 mod_timer(&psli->mbox_tmo, (jiffies +
4755                                (HZ * lpfc_mbox_tmo_val(phba, mb->mbxCommand))));
4756         }
4757
4758         /* Mailbox cmd <cmd> issue */
4759         lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
4760                         "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
4761                         "x%x\n",
4762                         pmbox->vport ? pmbox->vport->vpi : 0,
4763                         mb->mbxCommand, phba->pport->port_state,
4764                         psli->sli_flag, flag);
4765
4766         if (mb->mbxCommand != MBX_HEARTBEAT) {
4767                 if (pmbox->vport) {
4768                         lpfc_debugfs_disc_trc(pmbox->vport,
4769                                 LPFC_DISC_TRC_MBOX_VPORT,
4770                                 "MBOX Send vport: cmd:x%x mb:x%x x%x",
4771                                 (uint32_t)mb->mbxCommand,
4772                                 mb->un.varWords[0], mb->un.varWords[1]);
4773                 }
4774                 else {
4775                         lpfc_debugfs_disc_trc(phba->pport,
4776                                 LPFC_DISC_TRC_MBOX,
4777                                 "MBOX Send:       cmd:x%x mb:x%x x%x",
4778                                 (uint32_t)mb->mbxCommand,
4779                                 mb->un.varWords[0], mb->un.varWords[1]);
4780                 }
4781         }
4782
4783         psli->slistat.mbox_cmd++;
4784         evtctr = psli->slistat.mbox_event;
4785
4786         /* next set own bit for the adapter and copy over command word */
4787         mb->mbxOwner = OWN_CHIP;
4788
4789         if (psli->sli_flag & LPFC_SLI_ACTIVE) {
4790                 /* First copy command data to host SLIM area */
4791                 lpfc_sli_pcimem_bcopy(mb, phba->mbox, MAILBOX_CMD_SIZE);
4792         } else {
4793                 if (mb->mbxCommand == MBX_CONFIG_PORT) {
4794                         /* copy command data into host mbox for cmpl */
4795                         lpfc_sli_pcimem_bcopy(mb, phba->mbox, MAILBOX_CMD_SIZE);
4796                 }
4797
4798                 /* First copy mbox command data to HBA SLIM, skip past first
4799                    word */
4800                 to_slim = phba->MBslimaddr + sizeof (uint32_t);
4801                 lpfc_memcpy_to_slim(to_slim, &mb->un.varWords[0],
4802                             MAILBOX_CMD_SIZE - sizeof (uint32_t));
4803
4804                 /* Next copy over first word, with mbxOwner set */
4805                 ldata = *((uint32_t *)mb);
4806                 to_slim = phba->MBslimaddr;
4807                 writel(ldata, to_slim);
4808                 readl(to_slim); /* flush */
4809
4810                 if (mb->mbxCommand == MBX_CONFIG_PORT) {
4811                         /* switch over to host mailbox */
4812                         psli->sli_flag |= LPFC_SLI_ACTIVE;
4813                 }
4814         }
4815
4816         wmb();
4817
4818         switch (flag) {
4819         case MBX_NOWAIT:
4820                 /* Set up reference to mailbox command */
4821                 psli->mbox_active = pmbox;
4822                 /* Interrupt board to do it */
4823                 writel(CA_MBATT, phba->CAregaddr);
4824                 readl(phba->CAregaddr); /* flush */
4825                 /* Don't wait for it to finish, just return */
4826                 break;
4827
4828         case MBX_POLL:
4829                 /* Set up null reference to mailbox command */
4830                 psli->mbox_active = NULL;
4831                 /* Interrupt board to do it */
4832                 writel(CA_MBATT, phba->CAregaddr);
4833                 readl(phba->CAregaddr); /* flush */
4834
4835                 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
4836                         /* First read mbox status word */
4837                         word0 = *((uint32_t *)phba->mbox);
4838                         word0 = le32_to_cpu(word0);
4839                 } else {
4840                         /* First read mbox status word */
4841                         word0 = readl(phba->MBslimaddr);
4842                 }
4843
4844                 /* Read the HBA Host Attention Register */
4845                 ha_copy = readl(phba->HAregaddr);
4846                 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
4847                                                              mb->mbxCommand) *
4848                                            1000) + jiffies;
4849                 i = 0;
4850                 /* Wait for command to complete */
4851                 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
4852                        (!(ha_copy & HA_MBATT) &&
4853                         (phba->link_state > LPFC_WARM_START))) {
4854                         if (time_after(jiffies, timeout)) {
4855                                 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
4856                                 spin_unlock_irqrestore(&phba->hbalock,
4857                                                        drvr_flag);
4858                                 goto out_not_finished;
4859                         }
4860
4861                         /* Check if we took a mbox interrupt while we were
4862                            polling */
4863                         if (((word0 & OWN_CHIP) != OWN_CHIP)
4864                             && (evtctr != psli->slistat.mbox_event))
4865                                 break;
4866
4867                         if (i++ > 10) {
4868                                 spin_unlock_irqrestore(&phba->hbalock,
4869                                                        drvr_flag);
4870                                 msleep(1);
4871                                 spin_lock_irqsave(&phba->hbalock, drvr_flag);
4872                         }
4873
4874                         if (psli->sli_flag & LPFC_SLI_ACTIVE) {
4875                                 /* First copy command data */
4876                                 word0 = *((uint32_t *)phba->mbox);
4877                                 word0 = le32_to_cpu(word0);
4878                                 if (mb->mbxCommand == MBX_CONFIG_PORT) {
4879                                         MAILBOX_t *slimmb;
4880                                         uint32_t slimword0;
4881                                         /* Check real SLIM for any errors */
4882                                         slimword0 = readl(phba->MBslimaddr);
4883                                         slimmb = (MAILBOX_t *) & slimword0;
4884                                         if (((slimword0 & OWN_CHIP) != OWN_CHIP)
4885                                             && slimmb->mbxStatus) {
4886                                                 psli->sli_flag &=
4887                                                     ~LPFC_SLI_ACTIVE;
4888                                                 word0 = slimword0;
4889                                         }
4890                                 }
4891                         } else {
4892                                 /* First copy command data */
4893                                 word0 = readl(phba->MBslimaddr);
4894                         }
4895                         /* Read the HBA Host Attention Register */
4896                         ha_copy = readl(phba->HAregaddr);
4897                 }
4898
4899                 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
4900                         /* copy results back to user */
4901                         lpfc_sli_pcimem_bcopy(phba->mbox, mb, MAILBOX_CMD_SIZE);
4902                 } else {
4903                         /* First copy command data */
4904                         lpfc_memcpy_from_slim(mb, phba->MBslimaddr,
4905                                                         MAILBOX_CMD_SIZE);
4906                         if ((mb->mbxCommand == MBX_DUMP_MEMORY) &&
4907                                 pmbox->context2) {
4908                                 lpfc_memcpy_from_slim((void *)pmbox->context2,
4909                                       phba->MBslimaddr + DMP_RSP_OFFSET,
4910                                                       mb->un.varDmp.word_cnt);
4911                         }
4912                 }
4913
4914                 writel(HA_MBATT, phba->HAregaddr);
4915                 readl(phba->HAregaddr); /* flush */
4916
4917                 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
4918                 status = mb->mbxStatus;
4919         }
4920
4921         spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
4922         return status;
4923
4924 out_not_finished:
4925         if (processing_queue) {
4926                 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
4927                 lpfc_mbox_cmpl_put(phba, pmbox);
4928         }
4929         return MBX_NOT_FINISHED;
4930 }
4931
4932 /**
4933  * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
4934  * @phba: Pointer to HBA context object.
4935  *
4936  * The function blocks the posting of SLI4 asynchronous mailbox commands from
4937  * the driver internal pending mailbox queue. It will then try to wait out the
4938  * possible outstanding mailbox command before return.
4939  *
4940  * Returns:
4941  *      0 - the outstanding mailbox command completed; otherwise, the wait for
4942  *      the outstanding mailbox command timed out.
4943  **/
4944 static int
4945 lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
4946 {
4947         struct lpfc_sli *psli = &phba->sli;
4948         uint8_t actcmd = MBX_HEARTBEAT;
4949         int rc = 0;
4950         unsigned long timeout;
4951
4952         /* Mark the asynchronous mailbox command posting as blocked */
4953         spin_lock_irq(&phba->hbalock);
4954         psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
4955         if (phba->sli.mbox_active)
4956                 actcmd = phba->sli.mbox_active->u.mb.mbxCommand;
4957         spin_unlock_irq(&phba->hbalock);
4958         /* Determine how long we might wait for the active mailbox
4959          * command to be gracefully completed by firmware.
4960          */
4961         timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, actcmd) * 1000) +
4962                                    jiffies;
4963         /* Wait for the outstnading mailbox command to complete */
4964         while (phba->sli.mbox_active) {
4965                 /* Check active mailbox complete status every 2ms */
4966                 msleep(2);
4967                 if (time_after(jiffies, timeout)) {
4968                         /* Timeout, marked the outstanding cmd not complete */
4969                         rc = 1;
4970                         break;
4971                 }
4972         }
4973
4974         /* Can not cleanly block async mailbox command, fails it */
4975         if (rc) {
4976                 spin_lock_irq(&phba->hbalock);
4977                 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
4978                 spin_unlock_irq(&phba->hbalock);
4979         }
4980         return rc;
4981 }
4982
4983 /**
4984  * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
4985  * @phba: Pointer to HBA context object.
4986  *
4987  * The function unblocks and resume posting of SLI4 asynchronous mailbox
4988  * commands from the driver internal pending mailbox queue. It makes sure
4989  * that there is no outstanding mailbox command before resuming posting
4990  * asynchronous mailbox commands. If, for any reason, there is outstanding
4991  * mailbox command, it will try to wait it out before resuming asynchronous
4992  * mailbox command posting.
4993  **/
4994 static void
4995 lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
4996 {
4997         struct lpfc_sli *psli = &phba->sli;
4998
4999         spin_lock_irq(&phba->hbalock);
5000         if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
5001                 /* Asynchronous mailbox posting is not blocked, do nothing */
5002                 spin_unlock_irq(&phba->hbalock);
5003                 return;
5004         }
5005
5006         /* Outstanding synchronous mailbox command is guaranteed to be done,
5007          * successful or timeout, after timing-out the outstanding mailbox
5008          * command shall always be removed, so just unblock posting async
5009          * mailbox command and resume
5010          */
5011         psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
5012         spin_unlock_irq(&phba->hbalock);
5013
5014         /* wake up worker thread to post asynchronlous mailbox command */
5015         lpfc_worker_wake_up(phba);
5016 }
5017
5018 /**
5019  * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
5020  * @phba: Pointer to HBA context object.
5021  * @mboxq: Pointer to mailbox object.
5022  *
5023  * The function posts a mailbox to the port.  The mailbox is expected
5024  * to be comletely filled in and ready for the port to operate on it.
5025  * This routine executes a synchronous completion operation on the
5026  * mailbox by polling for its completion.
5027  *
5028  * The caller must not be holding any locks when calling this routine.
5029  *
5030  * Returns:
5031  *      MBX_SUCCESS - mailbox posted successfully
5032  *      Any of the MBX error values.
5033  **/
5034 static int
5035 lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
5036 {
5037         int rc = MBX_SUCCESS;
5038         unsigned long iflag;
5039         uint32_t db_ready;
5040         uint32_t mcqe_status;
5041         uint32_t mbx_cmnd;
5042         unsigned long timeout;
5043         struct lpfc_sli *psli = &phba->sli;
5044         struct lpfc_mqe *mb = &mboxq->u.mqe;
5045         struct lpfc_bmbx_create *mbox_rgn;
5046         struct dma_address *dma_address;
5047         struct lpfc_register bmbx_reg;
5048
5049         /*
5050          * Only one mailbox can be active to the bootstrap mailbox region
5051          * at a time and there is no queueing provided.
5052          */
5053         spin_lock_irqsave(&phba->hbalock, iflag);
5054         if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
5055                 spin_unlock_irqrestore(&phba->hbalock, iflag);
5056                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5057                                 "(%d):2532 Mailbox command x%x (x%x) "
5058                                 "cannot issue Data: x%x x%x\n",
5059                                 mboxq->vport ? mboxq->vport->vpi : 0,
5060                                 mboxq->u.mb.mbxCommand,
5061                                 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5062                                 psli->sli_flag, MBX_POLL);
5063                 return MBXERR_ERROR;
5064         }
5065         /* The server grabs the token and owns it until release */
5066         psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
5067         phba->sli.mbox_active = mboxq;
5068         spin_unlock_irqrestore(&phba->hbalock, iflag);
5069
5070         /*
5071          * Initialize the bootstrap memory region to avoid stale data areas
5072          * in the mailbox post.  Then copy the caller's mailbox contents to
5073          * the bmbx mailbox region.
5074          */
5075         mbx_cmnd = bf_get(lpfc_mqe_command, mb);
5076         memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
5077         lpfc_sli_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
5078                               sizeof(struct lpfc_mqe));
5079
5080         /* Post the high mailbox dma address to the port and wait for ready. */
5081         dma_address = &phba->sli4_hba.bmbx.dma_address;
5082         writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
5083
5084         timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mbx_cmnd)
5085                                    * 1000) + jiffies;
5086         do {
5087                 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
5088                 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
5089                 if (!db_ready)
5090                         msleep(2);
5091
5092                 if (time_after(jiffies, timeout)) {
5093                         rc = MBXERR_ERROR;
5094                         goto exit;
5095                 }
5096         } while (!db_ready);
5097
5098         /* Post the low mailbox dma address to the port. */
5099         writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
5100         timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mbx_cmnd)
5101                                    * 1000) + jiffies;
5102         do {
5103                 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
5104                 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
5105                 if (!db_ready)
5106                         msleep(2);
5107
5108                 if (time_after(jiffies, timeout)) {
5109                         rc = MBXERR_ERROR;
5110                         goto exit;
5111                 }
5112         } while (!db_ready);
5113
5114         /*
5115          * Read the CQ to ensure the mailbox has completed.
5116          * If so, update the mailbox status so that the upper layers
5117          * can complete the request normally.
5118          */
5119         lpfc_sli_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
5120                               sizeof(struct lpfc_mqe));
5121         mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
5122         lpfc_sli_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
5123                               sizeof(struct lpfc_mcqe));
5124         mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
5125
5126         /* Prefix the mailbox status with range x4000 to note SLI4 status. */
5127         if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
5128                 bf_set(lpfc_mqe_status, mb, LPFC_MBX_ERROR_RANGE | mcqe_status);
5129                 rc = MBXERR_ERROR;
5130         }
5131
5132         lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
5133                         "(%d):0356 Mailbox cmd x%x (x%x) Status x%x "
5134                         "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
5135                         " x%x x%x CQ: x%x x%x x%x x%x\n",
5136                         mboxq->vport ? mboxq->vport->vpi : 0,
5137                         mbx_cmnd, lpfc_sli4_mbox_opcode_get(phba, mboxq),
5138                         bf_get(lpfc_mqe_status, mb),
5139                         mb->un.mb_words[0], mb->un.mb_words[1],
5140                         mb->un.mb_words[2], mb->un.mb_words[3],
5141                         mb->un.mb_words[4], mb->un.mb_words[5],
5142                         mb->un.mb_words[6], mb->un.mb_words[7],
5143                         mb->un.mb_words[8], mb->un.mb_words[9],
5144                         mb->un.mb_words[10], mb->un.mb_words[11],
5145                         mb->un.mb_words[12], mboxq->mcqe.word0,
5146                         mboxq->mcqe.mcqe_tag0,  mboxq->mcqe.mcqe_tag1,
5147                         mboxq->mcqe.trailer);
5148 exit:
5149         /* We are holding the token, no needed for lock when release */
5150         spin_lock_irqsave(&phba->hbalock, iflag);
5151         psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
5152         phba->sli.mbox_active = NULL;
5153         spin_unlock_irqrestore(&phba->hbalock, iflag);
5154         return rc;
5155 }
5156
5157 /**
5158  * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
5159  * @phba: Pointer to HBA context object.
5160  * @pmbox: Pointer to mailbox object.
5161  * @flag: Flag indicating how the mailbox need to be processed.
5162  *
5163  * This function is called by discovery code and HBA management code to submit
5164  * a mailbox command to firmware with SLI-4 interface spec.
5165  *
5166  * Return codes the caller owns the mailbox command after the return of the
5167  * function.
5168  **/
5169 static int
5170 lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
5171                        uint32_t flag)
5172 {
5173         struct lpfc_sli *psli = &phba->sli;
5174         unsigned long iflags;
5175         int rc;
5176
5177         rc = lpfc_mbox_dev_check(phba);
5178         if (unlikely(rc)) {
5179                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5180                                 "(%d):2544 Mailbox command x%x (x%x) "
5181                                 "cannot issue Data: x%x x%x\n",
5182                                 mboxq->vport ? mboxq->vport->vpi : 0,
5183                                 mboxq->u.mb.mbxCommand,
5184                                 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5185                                 psli->sli_flag, flag);
5186                 goto out_not_finished;
5187         }
5188
5189         /* Detect polling mode and jump to a handler */
5190         if (!phba->sli4_hba.intr_enable) {
5191                 if (flag == MBX_POLL)
5192                         rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
5193                 else
5194                         rc = -EIO;
5195                 if (rc != MBX_SUCCESS)
5196                         lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5197                                         "(%d):2541 Mailbox command x%x "
5198                                         "(x%x) cannot issue Data: x%x x%x\n",
5199                                         mboxq->vport ? mboxq->vport->vpi : 0,
5200                                         mboxq->u.mb.mbxCommand,
5201                                         lpfc_sli4_mbox_opcode_get(phba, mboxq),
5202                                         psli->sli_flag, flag);
5203                 return rc;
5204         } else if (flag == MBX_POLL) {
5205                 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
5206                                 "(%d):2542 Try to issue mailbox command "
5207                                 "x%x (x%x) synchronously ahead of async"
5208                                 "mailbox command queue: x%x x%x\n",
5209                                 mboxq->vport ? mboxq->vport->vpi : 0,
5210                                 mboxq->u.mb.mbxCommand,
5211                                 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5212                                 psli->sli_flag, flag);
5213                 /* Try to block the asynchronous mailbox posting */
5214                 rc = lpfc_sli4_async_mbox_block(phba);
5215                 if (!rc) {
5216                         /* Successfully blocked, now issue sync mbox cmd */
5217                         rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
5218                         if (rc != MBX_SUCCESS)
5219                                 lpfc_printf_log(phba, KERN_ERR,
5220                                                 LOG_MBOX | LOG_SLI,
5221                                                 "(%d):2597 Mailbox command "
5222                                                 "x%x (x%x) cannot issue "
5223                                                 "Data: x%x x%x\n",
5224                                                 mboxq->vport ?
5225                                                 mboxq->vport->vpi : 0,
5226                                                 mboxq->u.mb.mbxCommand,
5227                                                 lpfc_sli4_mbox_opcode_get(phba,
5228                                                                 mboxq),
5229                                                 psli->sli_flag, flag);
5230                         /* Unblock the async mailbox posting afterward */
5231                         lpfc_sli4_async_mbox_unblock(phba);
5232                 }
5233                 return rc;
5234         }
5235
5236         /* Now, interrupt mode asynchrous mailbox command */
5237         rc = lpfc_mbox_cmd_check(phba, mboxq);
5238         if (rc) {
5239                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5240                                 "(%d):2543 Mailbox command x%x (x%x) "
5241                                 "cannot issue Data: x%x x%x\n",
5242                                 mboxq->vport ? mboxq->vport->vpi : 0,
5243                                 mboxq->u.mb.mbxCommand,
5244                                 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5245                                 psli->sli_flag, flag);
5246                 goto out_not_finished;
5247         }
5248
5249         /* Put the mailbox command to the driver internal FIFO */
5250         psli->slistat.mbox_busy++;
5251         spin_lock_irqsave(&phba->hbalock, iflags);
5252         lpfc_mbox_put(phba, mboxq);
5253         spin_unlock_irqrestore(&phba->hbalock, iflags);
5254         lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
5255                         "(%d):0354 Mbox cmd issue - Enqueue Data: "
5256                         "x%x (x%x) x%x x%x x%x\n",
5257                         mboxq->vport ? mboxq->vport->vpi : 0xffffff,
5258                         bf_get(lpfc_mqe_command, &mboxq->u.mqe),
5259                         lpfc_sli4_mbox_opcode_get(phba, mboxq),
5260                         phba->pport->port_state,
5261                         psli->sli_flag, MBX_NOWAIT);
5262         /* Wake up worker thread to transport mailbox command from head */
5263         lpfc_worker_wake_up(phba);
5264
5265         return MBX_BUSY;
5266
5267 out_not_finished:
5268         return MBX_NOT_FINISHED;
5269 }
5270
5271 /**
5272  * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
5273  * @phba: Pointer to HBA context object.
5274  *
5275  * This function is called by worker thread to send a mailbox command to
5276  * SLI4 HBA firmware.
5277  *
5278  **/
5279 int
5280 lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
5281 {
5282         struct lpfc_sli *psli = &phba->sli;
5283         LPFC_MBOXQ_t *mboxq;
5284         int rc = MBX_SUCCESS;
5285         unsigned long iflags;
5286         struct lpfc_mqe *mqe;
5287         uint32_t mbx_cmnd;
5288
5289         /* Check interrupt mode before post async mailbox command */
5290         if (unlikely(!phba->sli4_hba.intr_enable))
5291                 return MBX_NOT_FINISHED;
5292
5293         /* Check for mailbox command service token */
5294         spin_lock_irqsave(&phba->hbalock, iflags);
5295         if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
5296                 spin_unlock_irqrestore(&phba->hbalock, iflags);
5297                 return MBX_NOT_FINISHED;
5298         }
5299         if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
5300                 spin_unlock_irqrestore(&phba->hbalock, iflags);
5301                 return MBX_NOT_FINISHED;
5302         }
5303         if (unlikely(phba->sli.mbox_active)) {
5304                 spin_unlock_irqrestore(&phba->hbalock, iflags);
5305                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5306                                 "0384 There is pending active mailbox cmd\n");
5307                 return MBX_NOT_FINISHED;
5308         }
5309         /* Take the mailbox command service token */
5310         psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
5311
5312         /* Get the next mailbox command from head of queue */
5313         mboxq = lpfc_mbox_get(phba);
5314
5315         /* If no more mailbox command waiting for post, we're done */
5316         if (!mboxq) {
5317                 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
5318                 spin_unlock_irqrestore(&phba->hbalock, iflags);
5319                 return MBX_SUCCESS;
5320         }
5321         phba->sli.mbox_active = mboxq;
5322         spin_unlock_irqrestore(&phba->hbalock, iflags);
5323
5324         /* Check device readiness for posting mailbox command */
5325         rc = lpfc_mbox_dev_check(phba);
5326         if (unlikely(rc))
5327                 /* Driver clean routine will clean up pending mailbox */
5328                 goto out_not_finished;
5329
5330         /* Prepare the mbox command to be posted */
5331         mqe = &mboxq->u.mqe;
5332         mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
5333
5334         /* Start timer for the mbox_tmo and log some mailbox post messages */
5335         mod_timer(&psli->mbox_tmo, (jiffies +
5336                   (HZ * lpfc_mbox_tmo_val(phba, mbx_cmnd))));
5337
5338         lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
5339                         "(%d):0355 Mailbox cmd x%x (x%x) issue Data: "
5340                         "x%x x%x\n",
5341                         mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
5342                         lpfc_sli4_mbox_opcode_get(phba, mboxq),
5343                         phba->pport->port_state, psli->sli_flag);
5344
5345         if (mbx_cmnd != MBX_HEARTBEAT) {
5346                 if (mboxq->vport) {
5347                         lpfc_debugfs_disc_trc(mboxq->vport,
5348                                 LPFC_DISC_TRC_MBOX_VPORT,
5349                                 "MBOX Send vport: cmd:x%x mb:x%x x%x",
5350                                 mbx_cmnd, mqe->un.mb_words[0],
5351                                 mqe->un.mb_words[1]);
5352                 } else {
5353                         lpfc_debugfs_disc_trc(phba->pport,
5354                                 LPFC_DISC_TRC_MBOX,
5355                                 "MBOX Send: cmd:x%x mb:x%x x%x",
5356                                 mbx_cmnd, mqe->un.mb_words[0],
5357                                 mqe->un.mb_words[1]);
5358                 }
5359         }
5360         psli->slistat.mbox_cmd++;
5361
5362         /* Post the mailbox command to the port */
5363         rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
5364         if (rc != MBX_SUCCESS) {
5365                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
5366                                 "(%d):2533 Mailbox command x%x (x%x) "
5367                                 "cannot issue Data: x%x x%x\n",
5368                                 mboxq->vport ? mboxq->vport->vpi : 0,
5369                                 mboxq->u.mb.mbxCommand,
5370                                 lpfc_sli4_mbox_opcode_get(phba, mboxq),
5371                                 psli->sli_flag, MBX_NOWAIT);
5372                 goto out_not_finished;
5373         }
5374
5375         return rc;
5376
5377 out_not_finished:
5378         spin_lock_irqsave(&phba->hbalock, iflags);
5379         mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
5380         __lpfc_mbox_cmpl_put(phba, mboxq);
5381         /* Release the token */
5382         psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
5383         phba->sli.mbox_active = NULL;
5384         spin_unlock_irqrestore(&phba->hbalock, iflags);
5385
5386         return MBX_NOT_FINISHED;
5387 }
5388
5389 /**
5390  * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
5391  * @phba: Pointer to HBA context object.
5392  * @pmbox: Pointer to mailbox object.
5393  * @flag: Flag indicating how the mailbox need to be processed.
5394  *
5395  * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
5396  * the API jump table function pointer from the lpfc_hba struct.
5397  *
5398  * Return codes the caller owns the mailbox command after the return of the
5399  * function.
5400  **/
5401 int
5402 lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
5403 {
5404         return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
5405 }
5406
5407 /**
5408  * lpfc_mbox_api_table_setup - Set up mbox api fucntion jump table
5409  * @phba: The hba struct for which this call is being executed.
5410  * @dev_grp: The HBA PCI-Device group number.
5411  *
5412  * This routine sets up the mbox interface API function jump table in @phba
5413  * struct.
5414  * Returns: 0 - success, -ENODEV - failure.
5415  **/
5416 int
5417 lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
5418 {
5419
5420         switch (dev_grp) {
5421         case LPFC_PCI_DEV_LP:
5422                 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
5423                 phba->lpfc_sli_handle_slow_ring_event =
5424                                 lpfc_sli_handle_slow_ring_event_s3;
5425                 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
5426                 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
5427                 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
5428                 break;
5429         case LPFC_PCI_DEV_OC:
5430                 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
5431                 phba->lpfc_sli_handle_slow_ring_event =
5432                                 lpfc_sli_handle_slow_ring_event_s4;
5433                 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
5434                 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
5435                 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
5436                 break;
5437         default:
5438                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5439                                 "1420 Invalid HBA PCI-device group: 0x%x\n",
5440                                 dev_grp);
5441                 return -ENODEV;
5442                 break;
5443         }
5444         return 0;
5445 }
5446
5447 /**
5448  * __lpfc_sli_ringtx_put - Add an iocb to the txq
5449  * @phba: Pointer to HBA context object.
5450  * @pring: Pointer to driver SLI ring object.
5451  * @piocb: Pointer to address of newly added command iocb.
5452  *
5453  * This function is called with hbalock held to add a command
5454  * iocb to the txq when SLI layer cannot submit the command iocb
5455  * to the ring.
5456  **/
5457 static void
5458 __lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
5459                     struct lpfc_iocbq *piocb)
5460 {
5461         /* Insert the caller's iocb in the txq tail for later processing. */
5462         list_add_tail(&piocb->list, &pring->txq);
5463         pring->txq_cnt++;
5464 }
5465
5466 /**
5467  * lpfc_sli_next_iocb - Get the next iocb in the txq
5468  * @phba: Pointer to HBA context object.
5469  * @pring: Pointer to driver SLI ring object.
5470  * @piocb: Pointer to address of newly added command iocb.
5471  *
5472  * This function is called with hbalock held before a new
5473  * iocb is submitted to the firmware. This function checks
5474  * txq to flush the iocbs in txq to Firmware before
5475  * submitting new iocbs to the Firmware.
5476  * If there are iocbs in the txq which need to be submitted
5477  * to firmware, lpfc_sli_next_iocb returns the first element
5478  * of the txq after dequeuing it from txq.
5479  * If there is no iocb in the txq then the function will return
5480  * *piocb and *piocb is set to NULL. Caller needs to check
5481  * *piocb to find if there are more commands in the txq.
5482  **/
5483 static struct lpfc_iocbq *
5484 lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
5485                    struct lpfc_iocbq **piocb)
5486 {
5487         struct lpfc_iocbq * nextiocb;
5488
5489         nextiocb = lpfc_sli_ringtx_get(phba, pring);
5490         if (!nextiocb) {
5491                 nextiocb = *piocb;
5492                 *piocb = NULL;
5493         }
5494
5495         return nextiocb;
5496 }
5497
5498 /**
5499  * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
5500  * @phba: Pointer to HBA context object.
5501  * @ring_number: SLI ring number to issue iocb on.
5502  * @piocb: Pointer to command iocb.
5503  * @flag: Flag indicating if this command can be put into txq.
5504  *
5505  * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
5506  * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
5507  * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
5508  * flag is turned on, the function returns IOCB_ERROR. When the link is down,
5509  * this function allows only iocbs for posting buffers. This function finds
5510  * next available slot in the command ring and posts the command to the
5511  * available slot and writes the port attention register to request HBA start
5512  * processing new iocb. If there is no slot available in the ring and
5513  * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
5514  * the function returns IOCB_BUSY.
5515  *
5516  * This function is called with hbalock held. The function will return success
5517  * after it successfully submit the iocb to firmware or after adding to the
5518  * txq.
5519  **/
5520 static int
5521 __lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
5522                     struct lpfc_iocbq *piocb, uint32_t flag)
5523 {
5524         struct lpfc_iocbq *nextiocb;
5525         IOCB_t *iocb;
5526         struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
5527
5528         if (piocb->iocb_cmpl && (!piocb->vport) &&
5529            (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
5530            (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
5531                 lpfc_printf_log(phba, KERN_ERR,
5532                                 LOG_SLI | LOG_VPORT,
5533                                 "1807 IOCB x%x failed. No vport\n",
5534                                 piocb->iocb.ulpCommand);
5535                 dump_stack();
5536                 return IOCB_ERROR;
5537         }
5538
5539
5540         /* If the PCI channel is in offline state, do not post iocbs. */
5541         if (unlikely(pci_channel_offline(phba->pcidev)))
5542                 return IOCB_ERROR;
5543
5544         /* If HBA has a deferred error attention, fail the iocb. */
5545         if (unlikely(phba->hba_flag & DEFER_ERATT))
5546                 return IOCB_ERROR;
5547
5548         /*
5549          * We should never get an IOCB if we are in a < LINK_DOWN state
5550          */
5551         if (unlikely(phba->link_state < LPFC_LINK_DOWN))
5552                 return IOCB_ERROR;
5553
5554         /*
5555          * Check to see if we are blocking IOCB processing because of a
5556          * outstanding event.
5557          */
5558         if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
5559                 goto iocb_busy;
5560
5561         if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
5562                 /*
5563                  * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
5564                  * can be issued if the link is not up.
5565                  */
5566                 switch (piocb->iocb.ulpCommand) {
5567                 case CMD_GEN_REQUEST64_CR:
5568                 case CMD_GEN_REQUEST64_CX:
5569                         if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
5570                                 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
5571                                         FC_RCTL_DD_UNSOL_CMD) ||
5572                                 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
5573                                         MENLO_TRANSPORT_TYPE))
5574
5575                                 goto iocb_busy;
5576                         break;
5577                 case CMD_QUE_RING_BUF_CN:
5578                 case CMD_QUE_RING_BUF64_CN:
5579                         /*
5580                          * For IOCBs, like QUE_RING_BUF, that have no rsp ring
5581                          * completion, iocb_cmpl MUST be 0.
5582                          */
5583                         if (piocb->iocb_cmpl)
5584                                 piocb->iocb_cmpl = NULL;
5585                         /*FALLTHROUGH*/
5586                 case CMD_CREATE_XRI_CR:
5587                 case CMD_CLOSE_XRI_CN:
5588                 case CMD_CLOSE_XRI_CX:
5589                         break;
5590                 default:
5591                         goto iocb_busy;
5592                 }
5593
5594         /*
5595          * For FCP commands, we must be in a state where we can process link
5596          * attention events.
5597          */
5598         } else if (unlikely(pring->ringno == phba->sli.fcp_ring &&
5599                             !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
5600                 goto iocb_busy;
5601         }
5602
5603         while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
5604                (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
5605                 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
5606
5607         if (iocb)
5608                 lpfc_sli_update_ring(phba, pring);
5609         else
5610                 lpfc_sli_update_full_ring(phba, pring);
5611
5612         if (!piocb)
5613                 return IOCB_SUCCESS;
5614
5615         goto out_busy;
5616
5617  iocb_busy:
5618         pring->stats.iocb_cmd_delay++;
5619
5620  out_busy:
5621
5622         if (!(flag & SLI_IOCB_RET_IOCB)) {
5623                 __lpfc_sli_ringtx_put(phba, pring, piocb);
5624                 return IOCB_SUCCESS;
5625         }
5626
5627         return IOCB_BUSY;
5628 }
5629
5630 /**
5631  * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
5632  * @phba: Pointer to HBA context object.
5633  * @piocb: Pointer to command iocb.
5634  * @sglq: Pointer to the scatter gather queue object.
5635  *
5636  * This routine converts the bpl or bde that is in the IOCB
5637  * to a sgl list for the sli4 hardware. The physical address
5638  * of the bpl/bde is converted back to a virtual address.
5639  * If the IOCB contains a BPL then the list of BDE's is
5640  * converted to sli4_sge's. If the IOCB contains a single
5641  * BDE then it is converted to a single sli_sge.
5642  * The IOCB is still in cpu endianess so the contents of
5643  * the bpl can be used without byte swapping.
5644  *
5645  * Returns valid XRI = Success, NO_XRI = Failure.
5646 **/
5647 static uint16_t
5648 lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
5649                 struct lpfc_sglq *sglq)
5650 {
5651         uint16_t xritag = NO_XRI;
5652         struct ulp_bde64 *bpl = NULL;
5653         struct ulp_bde64 bde;
5654         struct sli4_sge *sgl  = NULL;
5655         IOCB_t *icmd;
5656         int numBdes = 0;
5657         int i = 0;
5658
5659         if (!piocbq || !sglq)
5660                 return xritag;
5661
5662         sgl  = (struct sli4_sge *)sglq->sgl;
5663         icmd = &piocbq->iocb;
5664         if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
5665                 numBdes = icmd->un.genreq64.bdl.bdeSize /
5666                                 sizeof(struct ulp_bde64);
5667                 /* The addrHigh and addrLow fields within the IOCB
5668                  * have not been byteswapped yet so there is no
5669                  * need to swap them back.
5670                  */
5671                 bpl  = (struct ulp_bde64 *)
5672                         ((struct lpfc_dmabuf *)piocbq->context3)->virt;
5673
5674                 if (!bpl)
5675                         return xritag;
5676
5677                 for (i = 0; i < numBdes; i++) {
5678                         /* Should already be byte swapped. */
5679                         sgl->addr_hi =  bpl->addrHigh;
5680                         sgl->addr_lo =  bpl->addrLow;
5681                         /* swap the size field back to the cpu so we
5682                          * can assign it to the sgl.
5683                          */
5684                         bde.tus.w  = le32_to_cpu(bpl->tus.w);
5685                         bf_set(lpfc_sli4_sge_len, sgl, bde.tus.f.bdeSize);
5686                         if ((i+1) == numBdes)
5687                                 bf_set(lpfc_sli4_sge_last, sgl, 1);
5688                         else
5689                                 bf_set(lpfc_sli4_sge_last, sgl, 0);
5690                         sgl->word2 = cpu_to_le32(sgl->word2);
5691                         sgl->word3 = cpu_to_le32(sgl->word3);
5692                         bpl++;
5693                         sgl++;
5694                 }
5695         } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
5696                         /* The addrHigh and addrLow fields of the BDE have not
5697                          * been byteswapped yet so they need to be swapped
5698                          * before putting them in the sgl.
5699                          */
5700                         sgl->addr_hi =
5701                                 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
5702                         sgl->addr_lo =
5703                                 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
5704                         bf_set(lpfc_sli4_sge_len, sgl,
5705                                 icmd->un.genreq64.bdl.bdeSize);
5706                         bf_set(lpfc_sli4_sge_last, sgl, 1);
5707                         sgl->word2 = cpu_to_le32(sgl->word2);
5708                         sgl->word3 = cpu_to_le32(sgl->word3);
5709         }
5710         return sglq->sli4_xritag;
5711 }
5712
5713 /**
5714  * lpfc_sli4_scmd_to_wqidx_distr - scsi command to SLI4 WQ index distribution
5715  * @phba: Pointer to HBA context object.
5716  *
5717  * This routine performs a round robin SCSI command to SLI4 FCP WQ index
5718  * distribution.  This is called by __lpfc_sli_issue_iocb_s4() with the hbalock
5719  * held.
5720  *
5721  * Return: index into SLI4 fast-path FCP queue index.
5722  **/
5723 static uint32_t
5724 lpfc_sli4_scmd_to_wqidx_distr(struct lpfc_hba *phba)
5725 {
5726         ++phba->fcp_qidx;
5727         if (phba->fcp_qidx >= phba->cfg_fcp_wq_count)
5728                 phba->fcp_qidx = 0;
5729
5730         return phba->fcp_qidx;
5731 }
5732
5733 /**
5734  * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
5735  * @phba: Pointer to HBA context object.
5736  * @piocb: Pointer to command iocb.
5737  * @wqe: Pointer to the work queue entry.
5738  *
5739  * This routine converts the iocb command to its Work Queue Entry
5740  * equivalent. The wqe pointer should not have any fields set when
5741  * this routine is called because it will memcpy over them.
5742  * This routine does not set the CQ_ID or the WQEC bits in the
5743  * wqe.
5744  *
5745  * Returns: 0 = Success, IOCB_ERROR = Failure.
5746  **/
5747 static int
5748 lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
5749                 union lpfc_wqe *wqe)
5750 {
5751         uint32_t payload_len = 0;
5752         uint8_t ct = 0;
5753         uint32_t fip;
5754         uint32_t abort_tag;
5755         uint8_t command_type = ELS_COMMAND_NON_FIP;
5756         uint8_t cmnd;
5757         uint16_t xritag;
5758         struct ulp_bde64 *bpl = NULL;
5759
5760         fip = phba->hba_flag & HBA_FIP_SUPPORT;
5761         /* The fcp commands will set command type */
5762         if (iocbq->iocb_flag &  LPFC_IO_FCP)
5763                 command_type = FCP_COMMAND;
5764         else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS))
5765                 command_type = ELS_COMMAND_FIP;
5766         else
5767                 command_type = ELS_COMMAND_NON_FIP;
5768
5769         /* Some of the fields are in the right position already */
5770         memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
5771         abort_tag = (uint32_t) iocbq->iotag;
5772         xritag = iocbq->sli4_xritag;
5773         wqe->words[7] = 0; /* The ct field has moved so reset */
5774         /* words0-2 bpl convert bde */
5775         if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
5776                 bpl  = (struct ulp_bde64 *)
5777                         ((struct lpfc_dmabuf *)iocbq->context3)->virt;
5778                 if (!bpl)
5779                         return IOCB_ERROR;
5780
5781                 /* Should already be byte swapped. */
5782                 wqe->generic.bde.addrHigh =  le32_to_cpu(bpl->addrHigh);
5783                 wqe->generic.bde.addrLow =  le32_to_cpu(bpl->addrLow);
5784                 /* swap the size field back to the cpu so we
5785                  * can assign it to the sgl.
5786                  */
5787                 wqe->generic.bde.tus.w  = le32_to_cpu(bpl->tus.w);
5788                 payload_len = wqe->generic.bde.tus.f.bdeSize;
5789         } else
5790                 payload_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
5791
5792         iocbq->iocb.ulpIoTag = iocbq->iotag;
5793         cmnd = iocbq->iocb.ulpCommand;
5794
5795         switch (iocbq->iocb.ulpCommand) {
5796         case CMD_ELS_REQUEST64_CR:
5797                 if (!iocbq->iocb.ulpLe) {
5798                         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5799                                 "2007 Only Limited Edition cmd Format"
5800                                 " supported 0x%x\n",
5801                                 iocbq->iocb.ulpCommand);
5802                         return IOCB_ERROR;
5803                 }
5804                 wqe->els_req.payload_len = payload_len;
5805                 /* Els_reguest64 has a TMO */
5806                 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
5807                         iocbq->iocb.ulpTimeout);
5808                 /* Need a VF for word 4 set the vf bit*/
5809                 bf_set(els_req64_vf, &wqe->els_req, 0);
5810                 /* And a VFID for word 12 */
5811                 bf_set(els_req64_vfid, &wqe->els_req, 0);
5812                 /*
5813                  * Set ct field to 3, indicates that the context_tag field
5814                  * contains the FCFI and remote N_Port_ID is
5815                  * in word 5.
5816                  */
5817
5818                 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
5819                 bf_set(lpfc_wqe_gen_context, &wqe->generic,
5820                                 iocbq->iocb.ulpContext);
5821
5822                 bf_set(lpfc_wqe_gen_ct, &wqe->generic, ct);
5823                 bf_set(lpfc_wqe_gen_pu, &wqe->generic, 0);
5824                 /* CCP CCPE PV PRI in word10 were set in the memcpy */
5825         break;
5826         case CMD_XMIT_SEQUENCE64_CR:
5827                 /* word3 iocb=io_tag32 wqe=payload_offset */
5828                 /* payload offset used for multilpe outstanding
5829                  * sequences on the same exchange
5830                  */
5831                 wqe->words[3] = 0;
5832                 /* word4 relative_offset memcpy */
5833                 /* word5 r_ctl/df_ctl memcpy */
5834                 bf_set(lpfc_wqe_gen_pu, &wqe->generic, 0);
5835                 wqe->xmit_sequence.xmit_len = payload_len;
5836         break;
5837         case CMD_XMIT_BCAST64_CN:
5838                 /* word3 iocb=iotag32 wqe=payload_len */
5839                 wqe->words[3] = 0; /* no definition for this in wqe */
5840                 /* word4 iocb=rsvd wqe=rsvd */
5841                 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
5842                 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
5843                 bf_set(lpfc_wqe_gen_ct, &wqe->generic,
5844                         ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
5845         break;
5846         case CMD_FCP_IWRITE64_CR:
5847                 command_type = FCP_COMMAND_DATA_OUT;
5848                 /* The struct for wqe fcp_iwrite has 3 fields that are somewhat
5849                  * confusing.
5850                  * word3 is payload_len: byte offset to the sgl entry for the
5851                  * fcp_command.
5852                  * word4 is total xfer len, same as the IOCB->ulpParameter.
5853                  * word5 is initial xfer len 0 = wait for xfer-ready
5854                  */
5855
5856                 /* Always wait for xfer-ready before sending data */
5857                 wqe->fcp_iwrite.initial_xfer_len = 0;
5858                 /* word 4 (xfer length) should have been set on the memcpy */
5859
5860         /* allow write to fall through to read */
5861         case CMD_FCP_IREAD64_CR:
5862                 /* FCP_CMD is always the 1st sgl entry */
5863                 wqe->fcp_iread.payload_len =
5864                         payload_len + sizeof(struct fcp_rsp);
5865
5866                 /* word 4 (xfer length) should have been set on the memcpy */
5867
5868                 bf_set(lpfc_wqe_gen_erp, &wqe->generic,
5869                         iocbq->iocb.ulpFCP2Rcvy);
5870                 bf_set(lpfc_wqe_gen_lnk, &wqe->generic, iocbq->iocb.ulpXS);
5871                 /* The XC bit and the XS bit are similar. The driver never
5872                  * tracked whether or not the exchange was previouslly open.
5873                  * XC = Exchange create, 0 is create. 1 is already open.
5874                  * XS = link cmd: 1 do not close the exchange after command.
5875                  * XS = 0 close exchange when command completes.
5876                  * The only time we would not set the XC bit is when the XS bit
5877                  * is set and we are sending our 2nd or greater command on
5878                  * this exchange.
5879                  */
5880                 /* Always open the exchange */
5881                 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
5882
5883                 wqe->words[10] &= 0xffff0000; /* zero out ebde count */
5884                 bf_set(lpfc_wqe_gen_pu, &wqe->generic, iocbq->iocb.ulpPU);
5885                 break;
5886         case CMD_FCP_ICMND64_CR:
5887                 /* Always open the exchange */
5888                 bf_set(wqe_xc, &wqe->fcp_iread.wqe_com, 0);
5889
5890                 wqe->words[4] = 0;
5891                 wqe->words[10] &= 0xffff0000; /* zero out ebde count */
5892                 bf_set(lpfc_wqe_gen_pu, &wqe->generic, 0);
5893         break;
5894         case CMD_GEN_REQUEST64_CR:
5895                 /* word3 command length is described as byte offset to the
5896                  * rsp_data. Would always be 16, sizeof(struct sli4_sge)
5897                  * sgl[0] = cmnd
5898                  * sgl[1] = rsp.
5899                  *
5900                  */
5901                 wqe->gen_req.command_len = payload_len;
5902                 /* Word4 parameter  copied in the memcpy */
5903                 /* Word5 [rctl, type, df_ctl, la] copied in memcpy */
5904                 /* word6 context tag copied in memcpy */
5905                 if (iocbq->iocb.ulpCt_h  || iocbq->iocb.ulpCt_l) {
5906                         ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
5907                         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5908                                 "2015 Invalid CT %x command 0x%x\n",
5909                                 ct, iocbq->iocb.ulpCommand);
5910                         return IOCB_ERROR;
5911                 }
5912                 bf_set(lpfc_wqe_gen_ct, &wqe->generic, 0);
5913                 bf_set(wqe_tmo, &wqe->gen_req.wqe_com,
5914                         iocbq->iocb.ulpTimeout);
5915
5916                 bf_set(lpfc_wqe_gen_pu, &wqe->generic, iocbq->iocb.ulpPU);
5917                 command_type = OTHER_COMMAND;
5918         break;
5919         case CMD_XMIT_ELS_RSP64_CX:
5920                 /* words0-2 BDE memcpy */
5921                 /* word3 iocb=iotag32 wqe=rsvd */
5922                 wqe->words[3] = 0;
5923                 /* word4 iocb=did wge=rsvd. */
5924                 wqe->words[4] = 0;
5925                 /* word5 iocb=rsvd wge=did */
5926                 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
5927                          iocbq->iocb.un.elsreq64.remoteID);
5928
5929                 bf_set(lpfc_wqe_gen_ct, &wqe->generic,
5930                         ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
5931
5932                 bf_set(lpfc_wqe_gen_pu, &wqe->generic, iocbq->iocb.ulpPU);
5933                 bf_set(wqe_rcvoxid, &wqe->generic, iocbq->iocb.ulpContext);
5934                 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
5935                         bf_set(lpfc_wqe_gen_context, &wqe->generic,
5936                                iocbq->vport->vpi + phba->vpi_base);
5937                 command_type = OTHER_COMMAND;
5938         break;
5939         case CMD_CLOSE_XRI_CN:
5940         case CMD_ABORT_XRI_CN:
5941         case CMD_ABORT_XRI_CX:
5942                 /* words 0-2 memcpy should be 0 rserved */
5943                 /* port will send abts */
5944                 if (iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
5945                         /*
5946                          * The link is down so the fw does not need to send abts
5947                          * on the wire.
5948                          */
5949                         bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
5950                 else
5951                         bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
5952                 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
5953                 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
5954                 wqe->words[5] = 0;
5955                 bf_set(lpfc_wqe_gen_ct, &wqe->generic,
5956                         ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
5957                 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
5958                 wqe->generic.abort_tag = abort_tag;
5959                 /*
5960                  * The abort handler will send us CMD_ABORT_XRI_CN or
5961                  * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
5962                  */
5963                 bf_set(lpfc_wqe_gen_command, &wqe->generic, CMD_ABORT_XRI_CX);
5964                 cmnd = CMD_ABORT_XRI_CX;
5965                 command_type = OTHER_COMMAND;
5966                 xritag = 0;
5967         break;
5968         case CMD_XMIT_BLS_RSP64_CX:
5969                 /* As BLS ABTS-ACC WQE is very different from other WQEs,
5970                  * we re-construct this WQE here based on information in
5971                  * iocbq from scratch.
5972                  */
5973                 memset(wqe, 0, sizeof(union lpfc_wqe));
5974                 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
5975                        iocbq->iocb.un.ulpWord[3]);
5976                 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
5977                        iocbq->sli4_xritag);
5978                 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
5979                 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
5980                 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
5981                        iocbq->iocb.ulpContext);
5982                 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
5983                 command_type = OTHER_COMMAND;
5984         break;
5985         case CMD_XRI_ABORTED_CX:
5986         case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
5987                 /* words0-2 are all 0's no bde */
5988                 /* word3 and word4 are rsvrd */
5989                 wqe->words[3] = 0;
5990                 wqe->words[4] = 0;
5991                 /* word5 iocb=rsvd wge=did */
5992                 /* There is no remote port id in the IOCB? */
5993                 /* Let this fall through and fail */
5994         case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
5995         case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
5996         case CMD_FCP_TRSP64_CX: /* Target mode rcv */
5997         case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
5998         default:
5999                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6000                                 "2014 Invalid command 0x%x\n",
6001                                 iocbq->iocb.ulpCommand);
6002                 return IOCB_ERROR;
6003         break;
6004
6005         }
6006         bf_set(lpfc_wqe_gen_xri, &wqe->generic, xritag);
6007         bf_set(lpfc_wqe_gen_request_tag, &wqe->generic, iocbq->iotag);
6008         wqe->generic.abort_tag = abort_tag;
6009         bf_set(lpfc_wqe_gen_cmd_type, &wqe->generic, command_type);
6010         bf_set(lpfc_wqe_gen_command, &wqe->generic, cmnd);
6011         bf_set(lpfc_wqe_gen_class, &wqe->generic, iocbq->iocb.ulpClass);
6012         bf_set(lpfc_wqe_gen_cq_id, &wqe->generic, LPFC_WQE_CQ_ID_DEFAULT);
6013
6014         return 0;
6015 }
6016
6017 /**
6018  * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
6019  * @phba: Pointer to HBA context object.
6020  * @ring_number: SLI ring number to issue iocb on.
6021  * @piocb: Pointer to command iocb.
6022  * @flag: Flag indicating if this command can be put into txq.
6023  *
6024  * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
6025  * an iocb command to an HBA with SLI-4 interface spec.
6026  *
6027  * This function is called with hbalock held. The function will return success
6028  * after it successfully submit the iocb to firmware or after adding to the
6029  * txq.
6030  **/
6031 static int
6032 __lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
6033                          struct lpfc_iocbq *piocb, uint32_t flag)
6034 {
6035         struct lpfc_sglq *sglq;
6036         uint16_t xritag;
6037         union lpfc_wqe wqe;
6038         struct lpfc_sli_ring *pring = &phba->sli.ring[ring_number];
6039         uint32_t fcp_wqidx;
6040
6041         if (piocb->sli4_xritag == NO_XRI) {
6042                 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
6043                     piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
6044                         sglq = NULL;
6045                 else {
6046                         sglq = __lpfc_sli_get_sglq(phba);
6047                         if (!sglq)
6048                                 return IOCB_ERROR;
6049                         piocb->sli4_xritag = sglq->sli4_xritag;
6050                 }
6051         } else if (piocb->iocb_flag &  LPFC_IO_FCP) {
6052                 sglq = NULL; /* These IO's already have an XRI and
6053                               * a mapped sgl.
6054                               */
6055         } else {
6056                 /* This is a continuation of a commandi,(CX) so this
6057                  * sglq is on the active list
6058                  */
6059                 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_xritag);
6060                 if (!sglq)
6061                         return IOCB_ERROR;
6062         }
6063
6064         if (sglq) {
6065                 xritag = lpfc_sli4_bpl2sgl(phba, piocb, sglq);
6066                 if (xritag != sglq->sli4_xritag)
6067                         return IOCB_ERROR;
6068         }
6069
6070         if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
6071                 return IOCB_ERROR;
6072
6073         if (piocb->iocb_flag &  LPFC_IO_FCP) {
6074                 fcp_wqidx = lpfc_sli4_scmd_to_wqidx_distr(phba);
6075                 if (lpfc_sli4_wq_put(phba->sli4_hba.fcp_wq[fcp_wqidx], &wqe))
6076                         return IOCB_ERROR;
6077         } else {
6078                 if (lpfc_sli4_wq_put(phba->sli4_hba.els_wq, &wqe))
6079                         return IOCB_ERROR;
6080         }
6081         lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
6082
6083         return 0;
6084 }
6085
6086 /**
6087  * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
6088  *
6089  * This routine wraps the actual lockless version for issusing IOCB function
6090  * pointer from the lpfc_hba struct.
6091  *
6092  * Return codes:
6093  *      IOCB_ERROR - Error
6094  *      IOCB_SUCCESS - Success
6095  *      IOCB_BUSY - Busy
6096  **/
6097 static inline int
6098 __lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
6099                 struct lpfc_iocbq *piocb, uint32_t flag)
6100 {
6101         return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
6102 }
6103
6104 /**
6105  * lpfc_sli_api_table_setup - Set up sli api fucntion jump table
6106  * @phba: The hba struct for which this call is being executed.
6107  * @dev_grp: The HBA PCI-Device group number.
6108  *
6109  * This routine sets up the SLI interface API function jump table in @phba
6110  * struct.
6111  * Returns: 0 - success, -ENODEV - failure.
6112  **/
6113 int
6114 lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
6115 {
6116
6117         switch (dev_grp) {
6118         case LPFC_PCI_DEV_LP:
6119                 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
6120                 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
6121                 break;
6122         case LPFC_PCI_DEV_OC:
6123                 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
6124                 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
6125                 break;
6126         default:
6127                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6128                                 "1419 Invalid HBA PCI-device group: 0x%x\n",
6129                                 dev_grp);
6130                 return -ENODEV;
6131                 break;
6132         }
6133         phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
6134         return 0;
6135 }
6136
6137 /**
6138  * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
6139  * @phba: Pointer to HBA context object.
6140  * @pring: Pointer to driver SLI ring object.
6141  * @piocb: Pointer to command iocb.
6142  * @flag: Flag indicating if this command can be put into txq.
6143  *
6144  * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
6145  * function. This function gets the hbalock and calls
6146  * __lpfc_sli_issue_iocb function and will return the error returned
6147  * by __lpfc_sli_issue_iocb function. This wrapper is used by
6148  * functions which do not hold hbalock.
6149  **/
6150 int
6151 lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
6152                     struct lpfc_iocbq *piocb, uint32_t flag)
6153 {
6154         unsigned long iflags;
6155         int rc;
6156
6157         spin_lock_irqsave(&phba->hbalock, iflags);
6158         rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
6159         spin_unlock_irqrestore(&phba->hbalock, iflags);
6160
6161         return rc;
6162 }
6163
6164 /**
6165  * lpfc_extra_ring_setup - Extra ring setup function
6166  * @phba: Pointer to HBA context object.
6167  *
6168  * This function is called while driver attaches with the
6169  * HBA to setup the extra ring. The extra ring is used
6170  * only when driver needs to support target mode functionality
6171  * or IP over FC functionalities.
6172  *
6173  * This function is called with no lock held.
6174  **/
6175 static int
6176 lpfc_extra_ring_setup( struct lpfc_hba *phba)
6177 {
6178         struct lpfc_sli *psli;
6179         struct lpfc_sli_ring *pring;
6180
6181         psli = &phba->sli;
6182
6183         /* Adjust cmd/rsp ring iocb entries more evenly */
6184
6185         /* Take some away from the FCP ring */
6186         pring = &psli->ring[psli->fcp_ring];
6187         pring->numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
6188         pring->numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
6189         pring->numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
6190         pring->numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
6191
6192         /* and give them to the extra ring */
6193         pring = &psli->ring[psli->extra_ring];
6194
6195         pring->numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
6196         pring->numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
6197         pring->numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
6198         pring->numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
6199
6200         /* Setup default profile for this ring */
6201         pring->iotag_max = 4096;
6202         pring->num_mask = 1;
6203         pring->prt[0].profile = 0;      /* Mask 0 */
6204         pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
6205         pring->prt[0].type = phba->cfg_multi_ring_type;
6206         pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
6207         return 0;
6208 }
6209
6210 /**
6211  * lpfc_sli_async_event_handler - ASYNC iocb handler function
6212  * @phba: Pointer to HBA context object.
6213  * @pring: Pointer to driver SLI ring object.
6214  * @iocbq: Pointer to iocb object.
6215  *
6216  * This function is called by the slow ring event handler
6217  * function when there is an ASYNC event iocb in the ring.
6218  * This function is called with no lock held.
6219  * Currently this function handles only temperature related
6220  * ASYNC events. The function decodes the temperature sensor
6221  * event message and posts events for the management applications.
6222  **/
6223 static void
6224 lpfc_sli_async_event_handler(struct lpfc_hba * phba,
6225         struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
6226 {
6227         IOCB_t *icmd;
6228         uint16_t evt_code;
6229         uint16_t temp;
6230         struct temp_event temp_event_data;
6231         struct Scsi_Host *shost;
6232         uint32_t *iocb_w;
6233
6234         icmd = &iocbq->iocb;
6235         evt_code = icmd->un.asyncstat.evt_code;
6236         temp = icmd->ulpContext;
6237
6238         if ((evt_code != ASYNC_TEMP_WARN) &&
6239                 (evt_code != ASYNC_TEMP_SAFE)) {
6240                 iocb_w = (uint32_t *) icmd;
6241                 lpfc_printf_log(phba,
6242                         KERN_ERR,
6243                         LOG_SLI,
6244                         "0346 Ring %d handler: unexpected ASYNC_STATUS"
6245                         " evt_code 0x%x\n"
6246                         "W0  0x%08x W1  0x%08x W2  0x%08x W3  0x%08x\n"
6247                         "W4  0x%08x W5  0x%08x W6  0x%08x W7  0x%08x\n"
6248                         "W8  0x%08x W9  0x%08x W10 0x%08x W11 0x%08x\n"
6249                         "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
6250                         pring->ringno,
6251                         icmd->un.asyncstat.evt_code,
6252                         iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
6253                         iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
6254                         iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
6255                         iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
6256
6257                 return;
6258         }
6259         temp_event_data.data = (uint32_t)temp;
6260         temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
6261         if (evt_code == ASYNC_TEMP_WARN) {
6262                 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
6263                 lpfc_printf_log(phba,
6264                                 KERN_ERR,
6265                                 LOG_TEMP,
6266                                 "0347 Adapter is very hot, please take "
6267                                 "corrective action. temperature : %d Celsius\n",
6268                                 temp);
6269         }
6270         if (evt_code == ASYNC_TEMP_SAFE) {
6271                 temp_event_data.event_code = LPFC_NORMAL_TEMP;
6272                 lpfc_printf_log(phba,
6273                                 KERN_ERR,
6274                                 LOG_TEMP,
6275                                 "0340 Adapter temperature is OK now. "
6276                                 "temperature : %d Celsius\n",
6277                                 temp);
6278         }
6279
6280         /* Send temperature change event to applications */
6281         shost = lpfc_shost_from_vport(phba->pport);
6282         fc_host_post_vendor_event(shost, fc_get_event_number(),
6283                 sizeof(temp_event_data), (char *) &temp_event_data,
6284                 LPFC_NL_VENDOR_ID);
6285
6286 }
6287
6288
6289 /**
6290  * lpfc_sli_setup - SLI ring setup function
6291  * @phba: Pointer to HBA context object.
6292  *
6293  * lpfc_sli_setup sets up rings of the SLI interface with
6294  * number of iocbs per ring and iotags. This function is
6295  * called while driver attach to the HBA and before the
6296  * interrupts are enabled. So there is no need for locking.
6297  *
6298  * This function always returns 0.
6299  **/
6300 int
6301 lpfc_sli_setup(struct lpfc_hba *phba)
6302 {
6303         int i, totiocbsize = 0;
6304         struct lpfc_sli *psli = &phba->sli;
6305         struct lpfc_sli_ring *pring;
6306
6307         psli->num_rings = MAX_CONFIGURED_RINGS;
6308         psli->sli_flag = 0;
6309         psli->fcp_ring = LPFC_FCP_RING;
6310         psli->next_ring = LPFC_FCP_NEXT_RING;
6311         psli->extra_ring = LPFC_EXTRA_RING;
6312
6313         psli->iocbq_lookup = NULL;
6314         psli->iocbq_lookup_len = 0;
6315         psli->last_iotag = 0;
6316
6317         for (i = 0; i < psli->num_rings; i++) {
6318                 pring = &psli->ring[i];
6319                 switch (i) {
6320                 case LPFC_FCP_RING:     /* ring 0 - FCP */
6321                         /* numCiocb and numRiocb are used in config_port */
6322                         pring->numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
6323                         pring->numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
6324                         pring->numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
6325                         pring->numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
6326                         pring->numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
6327                         pring->numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
6328                         pring->sizeCiocb = (phba->sli_rev == 3) ?
6329                                                         SLI3_IOCB_CMD_SIZE :
6330                                                         SLI2_IOCB_CMD_SIZE;
6331                         pring->sizeRiocb = (phba->sli_rev == 3) ?
6332                                                         SLI3_IOCB_RSP_SIZE :
6333                                                         SLI2_IOCB_RSP_SIZE;
6334                         pring->iotag_ctr = 0;
6335                         pring->iotag_max =
6336                             (phba->cfg_hba_queue_depth * 2);
6337                         pring->fast_iotag = pring->iotag_max;
6338                         pring->num_mask = 0;
6339                         break;
6340                 case LPFC_EXTRA_RING:   /* ring 1 - EXTRA */
6341                         /* numCiocb and numRiocb are used in config_port */
6342                         pring->numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
6343                         pring->numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
6344                         pring->sizeCiocb = (phba->sli_rev == 3) ?
6345                                                         SLI3_IOCB_CMD_SIZE :
6346                                                         SLI2_IOCB_CMD_SIZE;
6347                         pring->sizeRiocb = (phba->sli_rev == 3) ?
6348                                                         SLI3_IOCB_RSP_SIZE :
6349                                                         SLI2_IOCB_RSP_SIZE;
6350                         pring->iotag_max = phba->cfg_hba_queue_depth;
6351                         pring->num_mask = 0;
6352                         break;
6353                 case LPFC_ELS_RING:     /* ring 2 - ELS / CT */
6354                         /* numCiocb and numRiocb are used in config_port */
6355                         pring->numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
6356                         pring->numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
6357                         pring->sizeCiocb = (phba->sli_rev == 3) ?
6358                                                         SLI3_IOCB_CMD_SIZE :
6359                                                         SLI2_IOCB_CMD_SIZE;
6360                         pring->sizeRiocb = (phba->sli_rev == 3) ?
6361                                                         SLI3_IOCB_RSP_SIZE :
6362                                                         SLI2_IOCB_RSP_SIZE;
6363                         pring->fast_iotag = 0;
6364                         pring->iotag_ctr = 0;
6365                         pring->iotag_max = 4096;
6366                         pring->lpfc_sli_rcv_async_status =
6367                                 lpfc_sli_async_event_handler;
6368                         pring->num_mask = LPFC_MAX_RING_MASK;
6369                         pring->prt[0].profile = 0;      /* Mask 0 */
6370                         pring->prt[0].rctl = FC_RCTL_ELS_REQ;
6371                         pring->prt[0].type = FC_TYPE_ELS;
6372                         pring->prt[0].lpfc_sli_rcv_unsol_event =
6373                             lpfc_els_unsol_event;
6374                         pring->prt[1].profile = 0;      /* Mask 1 */
6375                         pring->prt[1].rctl = FC_RCTL_ELS_REP;
6376                         pring->prt[1].type = FC_TYPE_ELS;
6377                         pring->prt[1].lpfc_sli_rcv_unsol_event =
6378                             lpfc_els_unsol_event;
6379                         pring->prt[2].profile = 0;      /* Mask 2 */
6380                         /* NameServer Inquiry */
6381                         pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
6382                         /* NameServer */
6383                         pring->prt[2].type = FC_TYPE_CT;
6384                         pring->prt[2].lpfc_sli_rcv_unsol_event =
6385                             lpfc_ct_unsol_event;
6386                         pring->prt[3].profile = 0;      /* Mask 3 */
6387                         /* NameServer response */
6388                         pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
6389                         /* NameServer */
6390                         pring->prt[3].type = FC_TYPE_CT;
6391                         pring->prt[3].lpfc_sli_rcv_unsol_event =
6392                             lpfc_ct_unsol_event;
6393                         /* abort unsolicited sequence */
6394                         pring->prt[4].profile = 0;      /* Mask 4 */
6395                         pring->prt[4].rctl = FC_RCTL_BA_ABTS;
6396                         pring->prt[4].type = FC_TYPE_BLS;
6397                         pring->prt[4].lpfc_sli_rcv_unsol_event =
6398                             lpfc_sli4_ct_abort_unsol_event;
6399                         break;
6400                 }
6401                 totiocbsize += (pring->numCiocb * pring->sizeCiocb) +
6402                                 (pring->numRiocb * pring->sizeRiocb);
6403         }
6404         if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
6405                 /* Too many cmd / rsp ring entries in SLI2 SLIM */
6406                 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
6407                        "SLI2 SLIM Data: x%x x%lx\n",
6408                        phba->brd_no, totiocbsize,
6409                        (unsigned long) MAX_SLIM_IOCB_SIZE);
6410         }
6411         if (phba->cfg_multi_ring_support == 2)
6412                 lpfc_extra_ring_setup(phba);
6413
6414         return 0;
6415 }
6416
6417 /**
6418  * lpfc_sli_queue_setup - Queue initialization function
6419  * @phba: Pointer to HBA context object.
6420  *
6421  * lpfc_sli_queue_setup sets up mailbox queues and iocb queues for each
6422  * ring. This function also initializes ring indices of each ring.
6423  * This function is called during the initialization of the SLI
6424  * interface of an HBA.
6425  * This function is called with no lock held and always returns
6426  * 1.
6427  **/
6428 int
6429 lpfc_sli_queue_setup(struct lpfc_hba *phba)
6430 {
6431         struct lpfc_sli *psli;
6432         struct lpfc_sli_ring *pring;
6433         int i;
6434
6435         psli = &phba->sli;
6436         spin_lock_irq(&phba->hbalock);
6437         INIT_LIST_HEAD(&psli->mboxq);
6438         INIT_LIST_HEAD(&psli->mboxq_cmpl);
6439         /* Initialize list headers for txq and txcmplq as double linked lists */
6440         for (i = 0; i < psli->num_rings; i++) {
6441                 pring = &psli->ring[i];
6442                 pring->ringno = i;
6443                 pring->next_cmdidx  = 0;
6444                 pring->local_getidx = 0;
6445                 pring->cmdidx = 0;
6446                 INIT_LIST_HEAD(&pring->txq);
6447                 INIT_LIST_HEAD(&pring->txcmplq);
6448                 INIT_LIST_HEAD(&pring->iocb_continueq);
6449                 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
6450                 INIT_LIST_HEAD(&pring->postbufq);
6451         }
6452         spin_unlock_irq(&phba->hbalock);
6453         return 1;
6454 }
6455
6456 /**
6457  * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
6458  * @phba: Pointer to HBA context object.
6459  *
6460  * This routine flushes the mailbox command subsystem. It will unconditionally
6461  * flush all the mailbox commands in the three possible stages in the mailbox
6462  * command sub-system: pending mailbox command queue; the outstanding mailbox
6463  * command; and completed mailbox command queue. It is caller's responsibility
6464  * to make sure that the driver is in the proper state to flush the mailbox
6465  * command sub-system. Namely, the posting of mailbox commands into the
6466  * pending mailbox command queue from the various clients must be stopped;
6467  * either the HBA is in a state that it will never works on the outstanding
6468  * mailbox command (such as in EEH or ERATT conditions) or the outstanding
6469  * mailbox command has been completed.
6470  **/
6471 static void
6472 lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
6473 {
6474         LIST_HEAD(completions);
6475         struct lpfc_sli *psli = &phba->sli;
6476         LPFC_MBOXQ_t *pmb;
6477         unsigned long iflag;
6478
6479         /* Flush all the mailbox commands in the mbox system */
6480         spin_lock_irqsave(&phba->hbalock, iflag);
6481         /* The pending mailbox command queue */
6482         list_splice_init(&phba->sli.mboxq, &completions);
6483         /* The outstanding active mailbox command */
6484         if (psli->mbox_active) {
6485                 list_add_tail(&psli->mbox_active->list, &completions);
6486                 psli->mbox_active = NULL;
6487                 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
6488         }
6489         /* The completed mailbox command queue */
6490         list_splice_init(&phba->sli.mboxq_cmpl, &completions);
6491         spin_unlock_irqrestore(&phba->hbalock, iflag);
6492
6493         /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
6494         while (!list_empty(&completions)) {
6495                 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
6496                 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
6497                 if (pmb->mbox_cmpl)
6498                         pmb->mbox_cmpl(phba, pmb);
6499         }
6500 }
6501
6502 /**
6503  * lpfc_sli_host_down - Vport cleanup function
6504  * @vport: Pointer to virtual port object.
6505  *
6506  * lpfc_sli_host_down is called to clean up the resources
6507  * associated with a vport before destroying virtual
6508  * port data structures.
6509  * This function does following operations:
6510  * - Free discovery resources associated with this virtual
6511  *   port.
6512  * - Free iocbs associated with this virtual port in
6513  *   the txq.
6514  * - Send abort for all iocb commands associated with this
6515  *   vport in txcmplq.
6516  *
6517  * This function is called with no lock held and always returns 1.
6518  **/
6519 int
6520 lpfc_sli_host_down(struct lpfc_vport *vport)
6521 {
6522         LIST_HEAD(completions);
6523         struct lpfc_hba *phba = vport->phba;
6524         struct lpfc_sli *psli = &phba->sli;
6525         struct lpfc_sli_ring *pring;
6526         struct lpfc_iocbq *iocb, *next_iocb;
6527         int i;
6528         unsigned long flags = 0;
6529         uint16_t prev_pring_flag;
6530
6531         lpfc_cleanup_discovery_resources(vport);
6532
6533         spin_lock_irqsave(&phba->hbalock, flags);
6534         for (i = 0; i < psli->num_rings; i++) {
6535                 pring = &psli->ring[i];
6536                 prev_pring_flag = pring->flag;
6537                 /* Only slow rings */
6538                 if (pring->ringno == LPFC_ELS_RING) {
6539                         pring->flag |= LPFC_DEFERRED_RING_EVENT;
6540                         /* Set the lpfc data pending flag */
6541                         set_bit(LPFC_DATA_READY, &phba->data_flags);
6542                 }
6543                 /*
6544                  * Error everything on the txq since these iocbs have not been
6545                  * given to the FW yet.
6546                  */
6547                 list_for_each_entry_safe(iocb, next_iocb, &pring->txq, list) {
6548                         if (iocb->vport != vport)
6549                                 continue;
6550                         list_move_tail(&iocb->list, &completions);
6551                         pring->txq_cnt--;
6552                 }
6553
6554                 /* Next issue ABTS for everything on the txcmplq */
6555                 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq,
6556                                                                         list) {
6557                         if (iocb->vport != vport)
6558                                 continue;
6559                         lpfc_sli_issue_abort_iotag(phba, pring, iocb);
6560                 }
6561
6562                 pring->flag = prev_pring_flag;
6563         }
6564
6565         spin_unlock_irqrestore(&phba->hbalock, flags);
6566
6567         /* Cancel all the IOCBs from the completions list */
6568         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6569                               IOERR_SLI_DOWN);
6570         return 1;
6571 }
6572
6573 /**
6574  * lpfc_sli_hba_down - Resource cleanup function for the HBA
6575  * @phba: Pointer to HBA context object.
6576  *
6577  * This function cleans up all iocb, buffers, mailbox commands
6578  * while shutting down the HBA. This function is called with no
6579  * lock held and always returns 1.
6580  * This function does the following to cleanup driver resources:
6581  * - Free discovery resources for each virtual port
6582  * - Cleanup any pending fabric iocbs
6583  * - Iterate through the iocb txq and free each entry
6584  *   in the list.
6585  * - Free up any buffer posted to the HBA
6586  * - Free mailbox commands in the mailbox queue.
6587  **/
6588 int
6589 lpfc_sli_hba_down(struct lpfc_hba *phba)
6590 {
6591         LIST_HEAD(completions);
6592         struct lpfc_sli *psli = &phba->sli;
6593         struct lpfc_sli_ring *pring;
6594         struct lpfc_dmabuf *buf_ptr;
6595         unsigned long flags = 0;
6596         int i;
6597
6598         /* Shutdown the mailbox command sub-system */
6599         lpfc_sli_mbox_sys_shutdown(phba);
6600
6601         lpfc_hba_down_prep(phba);
6602
6603         lpfc_fabric_abort_hba(phba);
6604
6605         spin_lock_irqsave(&phba->hbalock, flags);
6606         for (i = 0; i < psli->num_rings; i++) {
6607                 pring = &psli->ring[i];
6608                 /* Only slow rings */
6609                 if (pring->ringno == LPFC_ELS_RING) {
6610                         pring->flag |= LPFC_DEFERRED_RING_EVENT;
6611                         /* Set the lpfc data pending flag */
6612                         set_bit(LPFC_DATA_READY, &phba->data_flags);
6613                 }
6614
6615                 /*
6616                  * Error everything on the txq since these iocbs have not been
6617                  * given to the FW yet.
6618                  */
6619                 list_splice_init(&pring->txq, &completions);
6620                 pring->txq_cnt = 0;
6621
6622         }
6623         spin_unlock_irqrestore(&phba->hbalock, flags);
6624
6625         /* Cancel all the IOCBs from the completions list */
6626         lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
6627                               IOERR_SLI_DOWN);
6628
6629         spin_lock_irqsave(&phba->hbalock, flags);
6630         list_splice_init(&phba->elsbuf, &completions);
6631         phba->elsbuf_cnt = 0;
6632         phba->elsbuf_prev_cnt = 0;
6633         spin_unlock_irqrestore(&phba->hbalock, flags);
6634
6635         while (!list_empty(&completions)) {
6636                 list_remove_head(&completions, buf_ptr,
6637                         struct lpfc_dmabuf, list);
6638                 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
6639                 kfree(buf_ptr);
6640         }
6641
6642         /* Return any active mbox cmds */
6643         del_timer_sync(&psli->mbox_tmo);
6644
6645         spin_lock_irqsave(&phba->pport->work_port_lock, flags);
6646         phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
6647         spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
6648
6649         return 1;
6650 }
6651
6652 /**
6653  * lpfc_sli4_hba_down - PCI function resource cleanup for the SLI4 HBA
6654  * @phba: Pointer to HBA context object.
6655  *
6656  * This function cleans up all queues, iocb, buffers, mailbox commands while
6657  * shutting down the SLI4 HBA FCoE function. This function is called with no
6658  * lock held and always returns 1.
6659  *
6660  * This function does the following to cleanup driver FCoE function resources:
6661  * - Free discovery resources for each virtual port
6662  * - Cleanup any pending fabric iocbs
6663  * - Iterate through the iocb txq and free each entry in the list.
6664  * - Free up any buffer posted to the HBA.
6665  * - Clean up all the queue entries: WQ, RQ, MQ, EQ, CQ, etc.
6666  * - Free mailbox commands in the mailbox queue.
6667  **/
6668 int
6669 lpfc_sli4_hba_down(struct lpfc_hba *phba)
6670 {
6671         /* Stop the SLI4 device port */
6672         lpfc_stop_port(phba);
6673
6674         /* Tear down the queues in the HBA */
6675         lpfc_sli4_queue_unset(phba);
6676
6677         /* unregister default FCFI from the HBA */
6678         lpfc_sli4_fcfi_unreg(phba, phba->fcf.fcfi);
6679
6680         return 1;
6681 }
6682
6683 /**
6684  * lpfc_sli_pcimem_bcopy - SLI memory copy function
6685  * @srcp: Source memory pointer.
6686  * @destp: Destination memory pointer.
6687  * @cnt: Number of words required to be copied.
6688  *
6689  * This function is used for copying data between driver memory
6690  * and the SLI memory. This function also changes the endianness
6691  * of each word if native endianness is different from SLI
6692  * endianness. This function can be called with or without
6693  * lock.
6694  **/
6695 void
6696 lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
6697 {
6698         uint32_t *src = srcp;
6699         uint32_t *dest = destp;
6700         uint32_t ldata;
6701         int i;
6702
6703         for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
6704                 ldata = *src;
6705                 ldata = le32_to_cpu(ldata);
6706                 *dest = ldata;
6707                 src++;
6708                 dest++;
6709         }
6710 }
6711
6712
6713 /**
6714  * lpfc_sli_bemem_bcopy - SLI memory copy function
6715  * @srcp: Source memory pointer.
6716  * @destp: Destination memory pointer.
6717  * @cnt: Number of words required to be copied.
6718  *
6719  * This function is used for copying data between a data structure
6720  * with big endian representation to local endianness.
6721  * This function can be called with or without lock.
6722  **/
6723 void
6724 lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
6725 {
6726         uint32_t *src = srcp;
6727         uint32_t *dest = destp;
6728         uint32_t ldata;
6729         int i;
6730
6731         for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
6732                 ldata = *src;
6733                 ldata = be32_to_cpu(ldata);
6734                 *dest = ldata;
6735                 src++;
6736                 dest++;
6737         }
6738 }
6739
6740 /**
6741  * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
6742  * @phba: Pointer to HBA context object.
6743  * @pring: Pointer to driver SLI ring object.
6744  * @mp: Pointer to driver buffer object.
6745  *
6746  * This function is called with no lock held.
6747  * It always return zero after adding the buffer to the postbufq
6748  * buffer list.
6749  **/
6750 int
6751 lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
6752                          struct lpfc_dmabuf *mp)
6753 {
6754         /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
6755            later */
6756         spin_lock_irq(&phba->hbalock);
6757         list_add_tail(&mp->list, &pring->postbufq);
6758         pring->postbufq_cnt++;
6759         spin_unlock_irq(&phba->hbalock);
6760         return 0;
6761 }
6762
6763 /**
6764  * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
6765  * @phba: Pointer to HBA context object.
6766  *
6767  * When HBQ is enabled, buffers are searched based on tags. This function
6768  * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
6769  * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
6770  * does not conflict with tags of buffer posted for unsolicited events.
6771  * The function returns the allocated tag. The function is called with
6772  * no locks held.
6773  **/
6774 uint32_t
6775 lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
6776 {
6777         spin_lock_irq(&phba->hbalock);
6778         phba->buffer_tag_count++;
6779         /*
6780          * Always set the QUE_BUFTAG_BIT to distiguish between
6781          * a tag assigned by HBQ.
6782          */
6783         phba->buffer_tag_count |= QUE_BUFTAG_BIT;
6784         spin_unlock_irq(&phba->hbalock);
6785         return phba->buffer_tag_count;
6786 }
6787
6788 /**
6789  * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
6790  * @phba: Pointer to HBA context object.
6791  * @pring: Pointer to driver SLI ring object.
6792  * @tag: Buffer tag.
6793  *
6794  * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
6795  * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
6796  * iocb is posted to the response ring with the tag of the buffer.
6797  * This function searches the pring->postbufq list using the tag
6798  * to find buffer associated with CMD_IOCB_RET_XRI64_CX
6799  * iocb. If the buffer is found then lpfc_dmabuf object of the
6800  * buffer is returned to the caller else NULL is returned.
6801  * This function is called with no lock held.
6802  **/
6803 struct lpfc_dmabuf *
6804 lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
6805                         uint32_t tag)
6806 {
6807         struct lpfc_dmabuf *mp, *next_mp;
6808         struct list_head *slp = &pring->postbufq;
6809
6810         /* Search postbufq, from the begining, looking for a match on tag */
6811         spin_lock_irq(&phba->hbalock);
6812         list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
6813                 if (mp->buffer_tag == tag) {
6814                         list_del_init(&mp->list);
6815                         pring->postbufq_cnt--;
6816                         spin_unlock_irq(&phba->hbalock);
6817                         return mp;
6818                 }
6819         }
6820
6821         spin_unlock_irq(&phba->hbalock);
6822         lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6823                         "0402 Cannot find virtual addr for buffer tag on "
6824                         "ring %d Data x%lx x%p x%p x%x\n",
6825                         pring->ringno, (unsigned long) tag,
6826                         slp->next, slp->prev, pring->postbufq_cnt);
6827
6828         return NULL;
6829 }
6830
6831 /**
6832  * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
6833  * @phba: Pointer to HBA context object.
6834  * @pring: Pointer to driver SLI ring object.
6835  * @phys: DMA address of the buffer.
6836  *
6837  * This function searches the buffer list using the dma_address
6838  * of unsolicited event to find the driver's lpfc_dmabuf object
6839  * corresponding to the dma_address. The function returns the
6840  * lpfc_dmabuf object if a buffer is found else it returns NULL.
6841  * This function is called by the ct and els unsolicited event
6842  * handlers to get the buffer associated with the unsolicited
6843  * event.
6844  *
6845  * This function is called with no lock held.
6846  **/
6847 struct lpfc_dmabuf *
6848 lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
6849                          dma_addr_t phys)
6850 {
6851         struct lpfc_dmabuf *mp, *next_mp;
6852         struct list_head *slp = &pring->postbufq;
6853
6854         /* Search postbufq, from the begining, looking for a match on phys */
6855         spin_lock_irq(&phba->hbalock);
6856         list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
6857                 if (mp->phys == phys) {
6858                         list_del_init(&mp->list);
6859                         pring->postbufq_cnt--;
6860                         spin_unlock_irq(&phba->hbalock);
6861                         return mp;
6862                 }
6863         }
6864
6865         spin_unlock_irq(&phba->hbalock);
6866         lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6867                         "0410 Cannot find virtual addr for mapped buf on "
6868                         "ring %d Data x%llx x%p x%p x%x\n",
6869                         pring->ringno, (unsigned long long)phys,
6870                         slp->next, slp->prev, pring->postbufq_cnt);
6871         return NULL;
6872 }
6873
6874 /**
6875  * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
6876  * @phba: Pointer to HBA context object.
6877  * @cmdiocb: Pointer to driver command iocb object.
6878  * @rspiocb: Pointer to driver response iocb object.
6879  *
6880  * This function is the completion handler for the abort iocbs for
6881  * ELS commands. This function is called from the ELS ring event
6882  * handler with no lock held. This function frees memory resources
6883  * associated with the abort iocb.
6884  **/
6885 static void
6886 lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
6887                         struct lpfc_iocbq *rspiocb)
6888 {
6889         IOCB_t *irsp = &rspiocb->iocb;
6890         uint16_t abort_iotag, abort_context;
6891         struct lpfc_iocbq *abort_iocb;
6892         struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
6893
6894         abort_iocb = NULL;
6895
6896         if (irsp->ulpStatus) {
6897                 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
6898                 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
6899
6900                 spin_lock_irq(&phba->hbalock);
6901                 if (phba->sli_rev < LPFC_SLI_REV4) {
6902                         if (abort_iotag != 0 &&
6903                                 abort_iotag <= phba->sli.last_iotag)
6904                                 abort_iocb =
6905                                         phba->sli.iocbq_lookup[abort_iotag];
6906                 } else
6907                         /* For sli4 the abort_tag is the XRI,
6908                          * so the abort routine puts the iotag  of the iocb
6909                          * being aborted in the context field of the abort
6910                          * IOCB.
6911                          */
6912                         abort_iocb = phba->sli.iocbq_lookup[abort_context];
6913
6914                 lpfc_printf_log(phba, KERN_INFO, LOG_ELS | LOG_SLI,
6915                                 "0327 Cannot abort els iocb %p "
6916                                 "with tag %x context %x, abort status %x, "
6917                                 "abort code %x\n",
6918                                 abort_iocb, abort_iotag, abort_context,
6919                                 irsp->ulpStatus, irsp->un.ulpWord[4]);
6920
6921                 /*
6922                  *  If the iocb is not found in Firmware queue the iocb
6923                  *  might have completed already. Do not free it again.
6924                  */
6925                 if (irsp->ulpStatus == IOSTAT_LOCAL_REJECT) {
6926                         if (irsp->un.ulpWord[4] != IOERR_NO_XRI) {
6927                                 spin_unlock_irq(&phba->hbalock);
6928                                 lpfc_sli_release_iocbq(phba, cmdiocb);
6929                                 return;
6930                         }
6931                         /* For SLI4 the ulpContext field for abort IOCB
6932                          * holds the iotag of the IOCB being aborted so
6933                          * the local abort_context needs to be reset to
6934                          * match the aborted IOCBs ulpContext.
6935                          */
6936                         if (abort_iocb && phba->sli_rev == LPFC_SLI_REV4)
6937                                 abort_context = abort_iocb->iocb.ulpContext;
6938                 }
6939                 /*
6940                  * make sure we have the right iocbq before taking it
6941                  * off the txcmplq and try to call completion routine.
6942                  */
6943                 if (!abort_iocb ||
6944                     abort_iocb->iocb.ulpContext != abort_context ||
6945                     (abort_iocb->iocb_flag & LPFC_DRIVER_ABORTED) == 0)
6946                         spin_unlock_irq(&phba->hbalock);
6947                 else {
6948                         list_del_init(&abort_iocb->list);
6949                         pring->txcmplq_cnt--;
6950                         spin_unlock_irq(&phba->hbalock);
6951
6952                         /* Firmware could still be in progress of DMAing
6953                          * payload, so don't free data buffer till after
6954                          * a hbeat.
6955                          */
6956                         abort_iocb->iocb_flag |= LPFC_DELAY_MEM_FREE;
6957
6958                         abort_iocb->iocb_flag &= ~LPFC_DRIVER_ABORTED;
6959                         abort_iocb->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
6960                         abort_iocb->iocb.un.ulpWord[4] = IOERR_SLI_ABORTED;
6961                         (abort_iocb->iocb_cmpl)(phba, abort_iocb, abort_iocb);
6962                 }
6963         }
6964
6965         lpfc_sli_release_iocbq(phba, cmdiocb);
6966         return;
6967 }
6968
6969 /**
6970  * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
6971  * @phba: Pointer to HBA context object.
6972  * @cmdiocb: Pointer to driver command iocb object.
6973  * @rspiocb: Pointer to driver response iocb object.
6974  *
6975  * The function is called from SLI ring event handler with no
6976  * lock held. This function is the completion handler for ELS commands
6977  * which are aborted. The function frees memory resources used for
6978  * the aborted ELS commands.
6979  **/
6980 static void
6981 lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
6982                      struct lpfc_iocbq *rspiocb)
6983 {
6984         IOCB_t *irsp = &rspiocb->iocb;
6985
6986         /* ELS cmd tag <ulpIoTag> completes */
6987         lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
6988                         "0139 Ignoring ELS cmd tag x%x completion Data: "
6989                         "x%x x%x x%x\n",
6990                         irsp->ulpIoTag, irsp->ulpStatus,
6991                         irsp->un.ulpWord[4], irsp->ulpTimeout);
6992         if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
6993                 lpfc_ct_free_iocb(phba, cmdiocb);
6994         else
6995                 lpfc_els_free_iocb(phba, cmdiocb);
6996         return;
6997 }
6998
6999 /**
7000  * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
7001  * @phba: Pointer to HBA context object.
7002  * @pring: Pointer to driver SLI ring object.
7003  * @cmdiocb: Pointer to driver command iocb object.
7004  *
7005  * This function issues an abort iocb for the provided command
7006  * iocb. This function is called with hbalock held.
7007  * The function returns 0 when it fails due to memory allocation
7008  * failure or when the command iocb is an abort request.
7009  **/
7010 int
7011 lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
7012                            struct lpfc_iocbq *cmdiocb)
7013 {
7014         struct lpfc_vport *vport = cmdiocb->vport;
7015         struct lpfc_iocbq *abtsiocbp;
7016         IOCB_t *icmd = NULL;
7017         IOCB_t *iabt = NULL;
7018         int retval = IOCB_ERROR;
7019
7020         /*
7021          * There are certain command types we don't want to abort.  And we
7022          * don't want to abort commands that are already in the process of
7023          * being aborted.
7024          */
7025         icmd = &cmdiocb->iocb;
7026         if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
7027             icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
7028             (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
7029                 return 0;
7030
7031         /* If we're unloading, don't abort iocb on the ELS ring, but change the
7032          * callback so that nothing happens when it finishes.
7033          */
7034         if ((vport->load_flag & FC_UNLOADING) &&
7035             (pring->ringno == LPFC_ELS_RING)) {
7036                 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
7037                         cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
7038                 else
7039                         cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
7040                 goto abort_iotag_exit;
7041         }
7042
7043         /* issue ABTS for this IOCB based on iotag */
7044         abtsiocbp = __lpfc_sli_get_iocbq(phba);
7045         if (abtsiocbp == NULL)
7046                 return 0;
7047
7048         /* This signals the response to set the correct status
7049          * before calling the completion handler.
7050          */
7051         cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
7052
7053         iabt = &abtsiocbp->iocb;
7054         iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
7055         iabt->un.acxri.abortContextTag = icmd->ulpContext;
7056         if (phba->sli_rev == LPFC_SLI_REV4) {
7057                 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
7058                 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
7059         }
7060         else
7061                 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
7062         iabt->ulpLe = 1;
7063         iabt->ulpClass = icmd->ulpClass;
7064
7065         if (phba->link_state >= LPFC_LINK_UP)
7066                 iabt->ulpCommand = CMD_ABORT_XRI_CN;
7067         else
7068                 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
7069
7070         abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
7071
7072         lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
7073                          "0339 Abort xri x%x, original iotag x%x, "
7074                          "abort cmd iotag x%x\n",
7075                          iabt->un.acxri.abortContextTag,
7076                          iabt->un.acxri.abortIoTag, abtsiocbp->iotag);
7077         retval = __lpfc_sli_issue_iocb(phba, pring->ringno, abtsiocbp, 0);
7078
7079         if (retval)
7080                 __lpfc_sli_release_iocbq(phba, abtsiocbp);
7081 abort_iotag_exit:
7082         /*
7083          * Caller to this routine should check for IOCB_ERROR
7084          * and handle it properly.  This routine no longer removes
7085          * iocb off txcmplq and call compl in case of IOCB_ERROR.
7086          */
7087         return retval;
7088 }
7089
7090 /**
7091  * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
7092  * @iocbq: Pointer to driver iocb object.
7093  * @vport: Pointer to driver virtual port object.
7094  * @tgt_id: SCSI ID of the target.
7095  * @lun_id: LUN ID of the scsi device.
7096  * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
7097  *
7098  * This function acts as an iocb filter for functions which abort or count
7099  * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
7100  * 0 if the filtering criteria is met for the given iocb and will return
7101  * 1 if the filtering criteria is not met.
7102  * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
7103  * given iocb is for the SCSI device specified by vport, tgt_id and
7104  * lun_id parameter.
7105  * If ctx_cmd == LPFC_CTX_TGT,  the function returns 0 only if the
7106  * given iocb is for the SCSI target specified by vport and tgt_id
7107  * parameters.
7108  * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
7109  * given iocb is for the SCSI host associated with the given vport.
7110  * This function is called with no locks held.
7111  **/
7112 static int
7113 lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
7114                            uint16_t tgt_id, uint64_t lun_id,
7115                            lpfc_ctx_cmd ctx_cmd)
7116 {
7117         struct lpfc_scsi_buf *lpfc_cmd;
7118         int rc = 1;
7119
7120         if (!(iocbq->iocb_flag &  LPFC_IO_FCP))
7121                 return rc;
7122
7123         if (iocbq->vport != vport)
7124                 return rc;
7125
7126         lpfc_cmd = container_of(iocbq, struct lpfc_scsi_buf, cur_iocbq);
7127
7128         if (lpfc_cmd->pCmd == NULL)
7129                 return rc;
7130
7131         switch (ctx_cmd) {
7132         case LPFC_CTX_LUN:
7133                 if ((lpfc_cmd->rdata->pnode) &&
7134                     (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
7135                     (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
7136                         rc = 0;
7137                 break;
7138         case LPFC_CTX_TGT:
7139                 if ((lpfc_cmd->rdata->pnode) &&
7140                     (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
7141                         rc = 0;
7142                 break;
7143         case LPFC_CTX_HOST:
7144                 rc = 0;
7145                 break;
7146         default:
7147                 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
7148                         __func__, ctx_cmd);
7149                 break;
7150         }
7151
7152         return rc;
7153 }
7154
7155 /**
7156  * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
7157  * @vport: Pointer to virtual port.
7158  * @tgt_id: SCSI ID of the target.
7159  * @lun_id: LUN ID of the scsi device.
7160  * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
7161  *
7162  * This function returns number of FCP commands pending for the vport.
7163  * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
7164  * commands pending on the vport associated with SCSI device specified
7165  * by tgt_id and lun_id parameters.
7166  * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
7167  * commands pending on the vport associated with SCSI target specified
7168  * by tgt_id parameter.
7169  * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
7170  * commands pending on the vport.
7171  * This function returns the number of iocbs which satisfy the filter.
7172  * This function is called without any lock held.
7173  **/
7174 int
7175 lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
7176                   lpfc_ctx_cmd ctx_cmd)
7177 {
7178         struct lpfc_hba *phba = vport->phba;
7179         struct lpfc_iocbq *iocbq;
7180         int sum, i;
7181
7182         for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
7183                 iocbq = phba->sli.iocbq_lookup[i];
7184
7185                 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
7186                                                 ctx_cmd) == 0)
7187                         sum++;
7188         }
7189
7190         return sum;
7191 }
7192
7193 /**
7194  * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
7195  * @phba: Pointer to HBA context object
7196  * @cmdiocb: Pointer to command iocb object.
7197  * @rspiocb: Pointer to response iocb object.
7198  *
7199  * This function is called when an aborted FCP iocb completes. This
7200  * function is called by the ring event handler with no lock held.
7201  * This function frees the iocb.
7202  **/
7203 void
7204 lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
7205                         struct lpfc_iocbq *rspiocb)
7206 {
7207         lpfc_sli_release_iocbq(phba, cmdiocb);
7208         return;
7209 }
7210
7211 /**
7212  * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
7213  * @vport: Pointer to virtual port.
7214  * @pring: Pointer to driver SLI ring object.
7215  * @tgt_id: SCSI ID of the target.
7216  * @lun_id: LUN ID of the scsi device.
7217  * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
7218  *
7219  * This function sends an abort command for every SCSI command
7220  * associated with the given virtual port pending on the ring
7221  * filtered by lpfc_sli_validate_fcp_iocb function.
7222  * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
7223  * FCP iocbs associated with lun specified by tgt_id and lun_id
7224  * parameters
7225  * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
7226  * FCP iocbs associated with SCSI target specified by tgt_id parameter.
7227  * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
7228  * FCP iocbs associated with virtual port.
7229  * This function returns number of iocbs it failed to abort.
7230  * This function is called with no locks held.
7231  **/
7232 int
7233 lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
7234                     uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
7235 {
7236         struct lpfc_hba *phba = vport->phba;
7237         struct lpfc_iocbq *iocbq;
7238         struct lpfc_iocbq *abtsiocb;
7239         IOCB_t *cmd = NULL;
7240         int errcnt = 0, ret_val = 0;
7241         int i;
7242
7243         for (i = 1; i <= phba->sli.last_iotag; i++) {
7244                 iocbq = phba->sli.iocbq_lookup[i];
7245
7246                 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
7247                                                abort_cmd) != 0)
7248                         continue;
7249
7250                 /* issue ABTS for this IOCB based on iotag */
7251                 abtsiocb = lpfc_sli_get_iocbq(phba);
7252                 if (abtsiocb == NULL) {
7253                         errcnt++;
7254                         continue;
7255                 }
7256
7257                 cmd = &iocbq->iocb;
7258                 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
7259                 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
7260                 if (phba->sli_rev == LPFC_SLI_REV4)
7261                         abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
7262                 else
7263                         abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
7264                 abtsiocb->iocb.ulpLe = 1;
7265                 abtsiocb->iocb.ulpClass = cmd->ulpClass;
7266                 abtsiocb->vport = phba->pport;
7267
7268                 if (lpfc_is_link_up(phba))
7269                         abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
7270                 else
7271                         abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
7272
7273                 /* Setup callback routine and issue the command. */
7274                 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
7275                 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
7276                                               abtsiocb, 0);
7277                 if (ret_val == IOCB_ERROR) {
7278                         lpfc_sli_release_iocbq(phba, abtsiocb);
7279                         errcnt++;
7280                         continue;
7281                 }
7282         }
7283
7284         return errcnt;
7285 }
7286
7287 /**
7288  * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
7289  * @phba: Pointer to HBA context object.
7290  * @cmdiocbq: Pointer to command iocb.
7291  * @rspiocbq: Pointer to response iocb.
7292  *
7293  * This function is the completion handler for iocbs issued using
7294  * lpfc_sli_issue_iocb_wait function. This function is called by the
7295  * ring event handler function without any lock held. This function
7296  * can be called from both worker thread context and interrupt
7297  * context. This function also can be called from other thread which
7298  * cleans up the SLI layer objects.
7299  * This function copy the contents of the response iocb to the
7300  * response iocb memory object provided by the caller of
7301  * lpfc_sli_issue_iocb_wait and then wakes up the thread which
7302  * sleeps for the iocb completion.
7303  **/
7304 static void
7305 lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
7306                         struct lpfc_iocbq *cmdiocbq,
7307                         struct lpfc_iocbq *rspiocbq)
7308 {
7309         wait_queue_head_t *pdone_q;
7310         unsigned long iflags;
7311
7312         spin_lock_irqsave(&phba->hbalock, iflags);
7313         cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
7314         if (cmdiocbq->context2 && rspiocbq)
7315                 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
7316                        &rspiocbq->iocb, sizeof(IOCB_t));
7317
7318         pdone_q = cmdiocbq->context_un.wait_queue;
7319         if (pdone_q)
7320                 wake_up(pdone_q);
7321         spin_unlock_irqrestore(&phba->hbalock, iflags);
7322         return;
7323 }
7324
7325 /**
7326  * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
7327  * @phba: Pointer to HBA context object..
7328  * @piocbq: Pointer to command iocb.
7329  * @flag: Flag to test.
7330  *
7331  * This routine grabs the hbalock and then test the iocb_flag to
7332  * see if the passed in flag is set.
7333  * Returns:
7334  * 1 if flag is set.
7335  * 0 if flag is not set.
7336  **/
7337 static int
7338 lpfc_chk_iocb_flg(struct lpfc_hba *phba,
7339                  struct lpfc_iocbq *piocbq, uint32_t flag)
7340 {
7341         unsigned long iflags;
7342         int ret;
7343
7344         spin_lock_irqsave(&phba->hbalock, iflags);
7345         ret = piocbq->iocb_flag & flag;
7346         spin_unlock_irqrestore(&phba->hbalock, iflags);
7347         return ret;
7348
7349 }
7350
7351 /**
7352  * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
7353  * @phba: Pointer to HBA context object..
7354  * @pring: Pointer to sli ring.
7355  * @piocb: Pointer to command iocb.
7356  * @prspiocbq: Pointer to response iocb.
7357  * @timeout: Timeout in number of seconds.
7358  *
7359  * This function issues the iocb to firmware and waits for the
7360  * iocb to complete. If the iocb command is not
7361  * completed within timeout seconds, it returns IOCB_TIMEDOUT.
7362  * Caller should not free the iocb resources if this function
7363  * returns IOCB_TIMEDOUT.
7364  * The function waits for the iocb completion using an
7365  * non-interruptible wait.
7366  * This function will sleep while waiting for iocb completion.
7367  * So, this function should not be called from any context which
7368  * does not allow sleeping. Due to the same reason, this function
7369  * cannot be called with interrupt disabled.
7370  * This function assumes that the iocb completions occur while
7371  * this function sleep. So, this function cannot be called from
7372  * the thread which process iocb completion for this ring.
7373  * This function clears the iocb_flag of the iocb object before
7374  * issuing the iocb and the iocb completion handler sets this
7375  * flag and wakes this thread when the iocb completes.
7376  * The contents of the response iocb will be copied to prspiocbq
7377  * by the completion handler when the command completes.
7378  * This function returns IOCB_SUCCESS when success.
7379  * This function is called with no lock held.
7380  **/
7381 int
7382 lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
7383                          uint32_t ring_number,
7384                          struct lpfc_iocbq *piocb,
7385                          struct lpfc_iocbq *prspiocbq,
7386                          uint32_t timeout)
7387 {
7388         DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
7389         long timeleft, timeout_req = 0;
7390         int retval = IOCB_SUCCESS;
7391         uint32_t creg_val;
7392
7393         /*
7394          * If the caller has provided a response iocbq buffer, then context2
7395          * is NULL or its an error.
7396          */
7397         if (prspiocbq) {
7398                 if (piocb->context2)
7399                         return IOCB_ERROR;
7400                 piocb->context2 = prspiocbq;
7401         }
7402
7403         piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
7404         piocb->context_un.wait_queue = &done_q;
7405         piocb->iocb_flag &= ~LPFC_IO_WAKE;
7406
7407         if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
7408                 creg_val = readl(phba->HCregaddr);
7409                 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
7410                 writel(creg_val, phba->HCregaddr);
7411                 readl(phba->HCregaddr); /* flush */
7412         }
7413
7414         retval = lpfc_sli_issue_iocb(phba, ring_number, piocb, 0);
7415         if (retval == IOCB_SUCCESS) {
7416                 timeout_req = timeout * HZ;
7417                 timeleft = wait_event_timeout(done_q,
7418                                 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
7419                                 timeout_req);
7420
7421                 if (piocb->iocb_flag & LPFC_IO_WAKE) {
7422                         lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
7423                                         "0331 IOCB wake signaled\n");
7424                 } else if (timeleft == 0) {
7425                         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
7426                                         "0338 IOCB wait timeout error - no "
7427                                         "wake response Data x%x\n", timeout);
7428                         retval = IOCB_TIMEDOUT;
7429                 } else {
7430                         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
7431                                         "0330 IOCB wake NOT set, "
7432                                         "Data x%x x%lx\n",
7433                                         timeout, (timeleft / jiffies));
7434                         retval = IOCB_TIMEDOUT;
7435                 }
7436         } else {
7437                 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
7438                                 "0332 IOCB wait issue failed, Data x%x\n",
7439                                 retval);
7440                 retval = IOCB_ERROR;
7441         }
7442
7443         if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
7444                 creg_val = readl(phba->HCregaddr);
7445                 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
7446                 writel(creg_val, phba->HCregaddr);
7447                 readl(phba->HCregaddr); /* flush */
7448         }
7449
7450         if (prspiocbq)
7451                 piocb->context2 = NULL;
7452
7453         piocb->context_un.wait_queue = NULL;
7454         piocb->iocb_cmpl = NULL;
7455         return retval;
7456 }
7457
7458 /**
7459  * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
7460  * @phba: Pointer to HBA context object.
7461  * @pmboxq: Pointer to driver mailbox object.
7462  * @timeout: Timeout in number of seconds.
7463  *
7464  * This function issues the mailbox to firmware and waits for the
7465  * mailbox command to complete. If the mailbox command is not
7466  * completed within timeout seconds, it returns MBX_TIMEOUT.
7467  * The function waits for the mailbox completion using an
7468  * interruptible wait. If the thread is woken up due to a
7469  * signal, MBX_TIMEOUT error is returned to the caller. Caller
7470  * should not free the mailbox resources, if this function returns
7471  * MBX_TIMEOUT.
7472  * This function will sleep while waiting for mailbox completion.
7473  * So, this function should not be called from any context which
7474  * does not allow sleeping. Due to the same reason, this function
7475  * cannot be called with interrupt disabled.
7476  * This function assumes that the mailbox completion occurs while
7477  * this function sleep. So, this function cannot be called from
7478  * the worker thread which processes mailbox completion.
7479  * This function is called in the context of HBA management
7480  * applications.
7481  * This function returns MBX_SUCCESS when successful.
7482  * This function is called with no lock held.
7483  **/
7484 int
7485 lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
7486                          uint32_t timeout)
7487 {
7488         DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
7489         int retval;
7490         unsigned long flag;
7491
7492         /* The caller must leave context1 empty. */
7493         if (pmboxq->context1)
7494                 return MBX_NOT_FINISHED;
7495
7496         pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
7497         /* setup wake call as IOCB callback */
7498         pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
7499         /* setup context field to pass wait_queue pointer to wake function  */
7500         pmboxq->context1 = &done_q;
7501
7502         /* now issue the command */
7503         retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
7504
7505         if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
7506                 wait_event_interruptible_timeout(done_q,
7507                                 pmboxq->mbox_flag & LPFC_MBX_WAKE,
7508                                 timeout * HZ);
7509
7510                 spin_lock_irqsave(&phba->hbalock, flag);
7511                 pmboxq->context1 = NULL;
7512                 /*
7513                  * if LPFC_MBX_WAKE flag is set the mailbox is completed
7514                  * else do not free the resources.
7515                  */
7516                 if (pmboxq->mbox_flag & LPFC_MBX_WAKE)
7517                         retval = MBX_SUCCESS;
7518                 else {
7519                         retval = MBX_TIMEOUT;
7520                         pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
7521                 }
7522                 spin_unlock_irqrestore(&phba->hbalock, flag);
7523         }
7524
7525         return retval;
7526 }
7527
7528 /**
7529  * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
7530  * @phba: Pointer to HBA context.
7531  *
7532  * This function is called to shutdown the driver's mailbox sub-system.
7533  * It first marks the mailbox sub-system is in a block state to prevent
7534  * the asynchronous mailbox command from issued off the pending mailbox
7535  * command queue. If the mailbox command sub-system shutdown is due to
7536  * HBA error conditions such as EEH or ERATT, this routine shall invoke
7537  * the mailbox sub-system flush routine to forcefully bring down the
7538  * mailbox sub-system. Otherwise, if it is due to normal condition (such
7539  * as with offline or HBA function reset), this routine will wait for the
7540  * outstanding mailbox command to complete before invoking the mailbox
7541  * sub-system flush routine to gracefully bring down mailbox sub-system.
7542  **/
7543 void
7544 lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba)
7545 {
7546         struct lpfc_sli *psli = &phba->sli;
7547         uint8_t actcmd = MBX_HEARTBEAT;
7548         unsigned long timeout;
7549
7550         spin_lock_irq(&phba->hbalock);
7551         psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
7552         spin_unlock_irq(&phba->hbalock);
7553
7554         if (psli->sli_flag & LPFC_SLI_ACTIVE) {
7555                 spin_lock_irq(&phba->hbalock);
7556                 if (phba->sli.mbox_active)
7557                         actcmd = phba->sli.mbox_active->u.mb.mbxCommand;
7558                 spin_unlock_irq(&phba->hbalock);
7559                 /* Determine how long we might wait for the active mailbox
7560                  * command to be gracefully completed by firmware.
7561                  */
7562                 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, actcmd) *
7563                                            1000) + jiffies;
7564                 while (phba->sli.mbox_active) {
7565                         /* Check active mailbox complete status every 2ms */
7566                         msleep(2);
7567                         if (time_after(jiffies, timeout))
7568                                 /* Timeout, let the mailbox flush routine to
7569                                  * forcefully release active mailbox command
7570                                  */
7571                                 break;
7572                 }
7573         }
7574         lpfc_sli_mbox_sys_flush(phba);
7575 }
7576
7577 /**
7578  * lpfc_sli_eratt_read - read sli-3 error attention events
7579  * @phba: Pointer to HBA context.
7580  *
7581  * This function is called to read the SLI3 device error attention registers
7582  * for possible error attention events. The caller must hold the hostlock
7583  * with spin_lock_irq().
7584  *
7585  * This fucntion returns 1 when there is Error Attention in the Host Attention
7586  * Register and returns 0 otherwise.
7587  **/
7588 static int
7589 lpfc_sli_eratt_read(struct lpfc_hba *phba)
7590 {
7591         uint32_t ha_copy;
7592
7593         /* Read chip Host Attention (HA) register */
7594         ha_copy = readl(phba->HAregaddr);
7595         if (ha_copy & HA_ERATT) {
7596                 /* Read host status register to retrieve error event */
7597                 lpfc_sli_read_hs(phba);
7598
7599                 /* Check if there is a deferred error condition is active */
7600                 if ((HS_FFER1 & phba->work_hs) &&
7601                     ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
7602                      HS_FFER6 | HS_FFER7) & phba->work_hs)) {
7603                         phba->hba_flag |= DEFER_ERATT;
7604                         /* Clear all interrupt enable conditions */
7605                         writel(0, phba->HCregaddr);
7606                         readl(phba->HCregaddr);
7607                 }
7608
7609                 /* Set the driver HA work bitmap */
7610                 phba->work_ha |= HA_ERATT;
7611                 /* Indicate polling handles this ERATT */
7612                 phba->hba_flag |= HBA_ERATT_HANDLED;
7613                 return 1;
7614         }
7615         return 0;
7616 }
7617
7618 /**
7619  * lpfc_sli4_eratt_read - read sli-4 error attention events
7620  * @phba: Pointer to HBA context.
7621  *
7622  * This function is called to read the SLI4 device error attention registers
7623  * for possible error attention events. The caller must hold the hostlock
7624  * with spin_lock_irq().
7625  *
7626  * This fucntion returns 1 when there is Error Attention in the Host Attention
7627  * Register and returns 0 otherwise.
7628  **/
7629 static int
7630 lpfc_sli4_eratt_read(struct lpfc_hba *phba)
7631 {
7632         uint32_t uerr_sta_hi, uerr_sta_lo;
7633         uint32_t onlnreg0, onlnreg1;
7634
7635         /* For now, use the SLI4 device internal unrecoverable error
7636          * registers for error attention. This can be changed later.
7637          */
7638         onlnreg0 = readl(phba->sli4_hba.ONLINE0regaddr);
7639         onlnreg1 = readl(phba->sli4_hba.ONLINE1regaddr);
7640         if ((onlnreg0 != LPFC_ONLINE_NERR) || (onlnreg1 != LPFC_ONLINE_NERR)) {
7641                 uerr_sta_lo = readl(phba->sli4_hba.UERRLOregaddr);
7642                 uerr_sta_hi = readl(phba->sli4_hba.UERRHIregaddr);
7643                 if (uerr_sta_lo || uerr_sta_hi) {
7644                         lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7645                                         "1423 HBA Unrecoverable error: "
7646                                         "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
7647                                         "online0_reg=0x%x, online1_reg=0x%x\n",
7648                                         uerr_sta_lo, uerr_sta_hi,
7649                                         onlnreg0, onlnreg1);
7650                         phba->work_status[0] = uerr_sta_lo;
7651                         phba->work_status[1] = uerr_sta_hi;
7652                         /* Set the driver HA work bitmap */
7653                         phba->work_ha |= HA_ERATT;
7654                         /* Indicate polling handles this ERATT */
7655                         phba->hba_flag |= HBA_ERATT_HANDLED;
7656                         return 1;
7657                 }
7658         }
7659         return 0;
7660 }
7661
7662 /**
7663  * lpfc_sli_check_eratt - check error attention events
7664  * @phba: Pointer to HBA context.
7665  *
7666  * This function is called from timer soft interrupt context to check HBA's
7667  * error attention register bit for error attention events.
7668  *
7669  * This fucntion returns 1 when there is Error Attention in the Host Attention
7670  * Register and returns 0 otherwise.
7671  **/
7672 int
7673 lpfc_sli_check_eratt(struct lpfc_hba *phba)
7674 {
7675         uint32_t ha_copy;
7676
7677         /* If somebody is waiting to handle an eratt, don't process it
7678          * here. The brdkill function will do this.
7679          */
7680         if (phba->link_flag & LS_IGNORE_ERATT)
7681                 return 0;
7682
7683         /* Check if interrupt handler handles this ERATT */
7684         spin_lock_irq(&phba->hbalock);
7685         if (phba->hba_flag & HBA_ERATT_HANDLED) {
7686                 /* Interrupt handler has handled ERATT */
7687                 spin_unlock_irq(&phba->hbalock);
7688                 return 0;
7689         }
7690
7691         /*
7692          * If there is deferred error attention, do not check for error
7693          * attention
7694          */
7695         if (unlikely(phba->hba_flag & DEFER_ERATT)) {
7696                 spin_unlock_irq(&phba->hbalock);
7697                 return 0;
7698         }
7699
7700         /* If PCI channel is offline, don't process it */
7701         if (unlikely(pci_channel_offline(phba->pcidev))) {
7702                 spin_unlock_irq(&phba->hbalock);
7703                 return 0;
7704         }
7705
7706         switch (phba->sli_rev) {
7707         case LPFC_SLI_REV2:
7708         case LPFC_SLI_REV3:
7709                 /* Read chip Host Attention (HA) register */
7710                 ha_copy = lpfc_sli_eratt_read(phba);
7711                 break;
7712         case LPFC_SLI_REV4:
7713                 /* Read devcie Uncoverable Error (UERR) registers */
7714                 ha_copy = lpfc_sli4_eratt_read(phba);
7715                 break;
7716         default:
7717                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7718                                 "0299 Invalid SLI revision (%d)\n",
7719                                 phba->sli_rev);
7720                 ha_copy = 0;
7721                 break;
7722         }
7723         spin_unlock_irq(&phba->hbalock);
7724
7725         return ha_copy;
7726 }
7727
7728 /**
7729  * lpfc_intr_state_check - Check device state for interrupt handling
7730  * @phba: Pointer to HBA context.
7731  *
7732  * This inline routine checks whether a device or its PCI slot is in a state
7733  * that the interrupt should be handled.
7734  *
7735  * This function returns 0 if the device or the PCI slot is in a state that
7736  * interrupt should be handled, otherwise -EIO.
7737  */
7738 static inline int
7739 lpfc_intr_state_check(struct lpfc_hba *phba)
7740 {
7741         /* If the pci channel is offline, ignore all the interrupts */
7742         if (unlikely(pci_channel_offline(phba->pcidev)))
7743                 return -EIO;
7744
7745         /* Update device level interrupt statistics */
7746         phba->sli.slistat.sli_intr++;
7747
7748         /* Ignore all interrupts during initialization. */
7749         if (unlikely(phba->link_state < LPFC_LINK_DOWN))
7750                 return -EIO;
7751
7752         return 0;
7753 }
7754
7755 /**
7756  * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
7757  * @irq: Interrupt number.
7758  * @dev_id: The device context pointer.
7759  *
7760  * This function is directly called from the PCI layer as an interrupt
7761  * service routine when device with SLI-3 interface spec is enabled with
7762  * MSI-X multi-message interrupt mode and there are slow-path events in
7763  * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
7764  * interrupt mode, this function is called as part of the device-level
7765  * interrupt handler. When the PCI slot is in error recovery or the HBA
7766  * is undergoing initialization, the interrupt handler will not process
7767  * the interrupt. The link attention and ELS ring attention events are
7768  * handled by the worker thread. The interrupt handler signals the worker
7769  * thread and returns for these events. This function is called without
7770  * any lock held. It gets the hbalock to access and update SLI data
7771  * structures.
7772  *
7773  * This function returns IRQ_HANDLED when interrupt is handled else it
7774  * returns IRQ_NONE.
7775  **/
7776 irqreturn_t
7777 lpfc_sli_sp_intr_handler(int irq, void *dev_id)
7778 {
7779         struct lpfc_hba  *phba;
7780         uint32_t ha_copy;
7781         uint32_t work_ha_copy;
7782         unsigned long status;
7783         unsigned long iflag;
7784         uint32_t control;
7785
7786         MAILBOX_t *mbox, *pmbox;
7787         struct lpfc_vport *vport;
7788         struct lpfc_nodelist *ndlp;
7789         struct lpfc_dmabuf *mp;
7790         LPFC_MBOXQ_t *pmb;
7791         int rc;
7792
7793         /*
7794          * Get the driver's phba structure from the dev_id and
7795          * assume the HBA is not interrupting.
7796          */
7797         phba = (struct lpfc_hba *)dev_id;
7798
7799         if (unlikely(!phba))
7800                 return IRQ_NONE;
7801
7802         /*
7803          * Stuff needs to be attented to when this function is invoked as an
7804          * individual interrupt handler in MSI-X multi-message interrupt mode
7805          */
7806         if (phba->intr_type == MSIX) {
7807                 /* Check device state for handling interrupt */
7808                 if (lpfc_intr_state_check(phba))
7809                         return IRQ_NONE;
7810                 /* Need to read HA REG for slow-path events */
7811                 spin_lock_irqsave(&phba->hbalock, iflag);
7812                 ha_copy = readl(phba->HAregaddr);
7813                 /* If somebody is waiting to handle an eratt don't process it
7814                  * here. The brdkill function will do this.
7815                  */
7816                 if (phba->link_flag & LS_IGNORE_ERATT)
7817                         ha_copy &= ~HA_ERATT;
7818                 /* Check the need for handling ERATT in interrupt handler */
7819                 if (ha_copy & HA_ERATT) {
7820                         if (phba->hba_flag & HBA_ERATT_HANDLED)
7821                                 /* ERATT polling has handled ERATT */
7822                                 ha_copy &= ~HA_ERATT;
7823                         else
7824                                 /* Indicate interrupt handler handles ERATT */
7825                                 phba->hba_flag |= HBA_ERATT_HANDLED;
7826                 }
7827
7828                 /*
7829                  * If there is deferred error attention, do not check for any
7830                  * interrupt.
7831                  */
7832                 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
7833                         spin_unlock_irqrestore(&phba->hbalock, iflag);
7834                         return IRQ_NONE;
7835                 }
7836
7837                 /* Clear up only attention source related to slow-path */
7838                 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
7839                         phba->HAregaddr);
7840                 readl(phba->HAregaddr); /* flush */
7841                 spin_unlock_irqrestore(&phba->hbalock, iflag);
7842         } else
7843                 ha_copy = phba->ha_copy;
7844
7845         work_ha_copy = ha_copy & phba->work_ha_mask;
7846
7847         if (work_ha_copy) {
7848                 if (work_ha_copy & HA_LATT) {
7849                         if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
7850                                 /*
7851                                  * Turn off Link Attention interrupts
7852                                  * until CLEAR_LA done
7853                                  */
7854                                 spin_lock_irqsave(&phba->hbalock, iflag);
7855                                 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
7856                                 control = readl(phba->HCregaddr);
7857                                 control &= ~HC_LAINT_ENA;
7858                                 writel(control, phba->HCregaddr);
7859                                 readl(phba->HCregaddr); /* flush */
7860                                 spin_unlock_irqrestore(&phba->hbalock, iflag);
7861                         }
7862                         else
7863                                 work_ha_copy &= ~HA_LATT;
7864                 }
7865
7866                 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
7867                         /*
7868                          * Turn off Slow Rings interrupts, LPFC_ELS_RING is
7869                          * the only slow ring.
7870                          */
7871                         status = (work_ha_copy &
7872                                 (HA_RXMASK  << (4*LPFC_ELS_RING)));
7873                         status >>= (4*LPFC_ELS_RING);
7874                         if (status & HA_RXMASK) {
7875                                 spin_lock_irqsave(&phba->hbalock, iflag);
7876                                 control = readl(phba->HCregaddr);
7877
7878                                 lpfc_debugfs_slow_ring_trc(phba,
7879                                 "ISR slow ring:   ctl:x%x stat:x%x isrcnt:x%x",
7880                                 control, status,
7881                                 (uint32_t)phba->sli.slistat.sli_intr);
7882
7883                                 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
7884                                         lpfc_debugfs_slow_ring_trc(phba,
7885                                                 "ISR Disable ring:"
7886                                                 "pwork:x%x hawork:x%x wait:x%x",
7887                                                 phba->work_ha, work_ha_copy,
7888                                                 (uint32_t)((unsigned long)
7889                                                 &phba->work_waitq));
7890
7891                                         control &=
7892                                             ~(HC_R0INT_ENA << LPFC_ELS_RING);
7893                                         writel(control, phba->HCregaddr);
7894                                         readl(phba->HCregaddr); /* flush */
7895                                 }
7896                                 else {
7897                                         lpfc_debugfs_slow_ring_trc(phba,
7898                                                 "ISR slow ring:   pwork:"
7899                                                 "x%x hawork:x%x wait:x%x",
7900                                                 phba->work_ha, work_ha_copy,
7901                                                 (uint32_t)((unsigned long)
7902                                                 &phba->work_waitq));
7903                                 }
7904                                 spin_unlock_irqrestore(&phba->hbalock, iflag);
7905                         }
7906                 }
7907                 spin_lock_irqsave(&phba->hbalock, iflag);
7908                 if (work_ha_copy & HA_ERATT) {
7909                         lpfc_sli_read_hs(phba);
7910                         /*
7911                          * Check if there is a deferred error condition
7912                          * is active
7913                          */
7914                         if ((HS_FFER1 & phba->work_hs) &&
7915                                 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
7916                                 HS_FFER6 | HS_FFER7) & phba->work_hs)) {
7917                                 phba->hba_flag |= DEFER_ERATT;
7918                                 /* Clear all interrupt enable conditions */
7919                                 writel(0, phba->HCregaddr);
7920                                 readl(phba->HCregaddr);
7921                         }
7922                 }
7923
7924                 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
7925                         pmb = phba->sli.mbox_active;
7926                         pmbox = &pmb->u.mb;
7927                         mbox = phba->mbox;
7928                         vport = pmb->vport;
7929
7930                         /* First check out the status word */
7931                         lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
7932                         if (pmbox->mbxOwner != OWN_HOST) {
7933                                 spin_unlock_irqrestore(&phba->hbalock, iflag);
7934                                 /*
7935                                  * Stray Mailbox Interrupt, mbxCommand <cmd>
7936                                  * mbxStatus <status>
7937                                  */
7938                                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
7939                                                 LOG_SLI,
7940                                                 "(%d):0304 Stray Mailbox "
7941                                                 "Interrupt mbxCommand x%x "
7942                                                 "mbxStatus x%x\n",
7943                                                 (vport ? vport->vpi : 0),
7944                                                 pmbox->mbxCommand,
7945                                                 pmbox->mbxStatus);
7946                                 /* clear mailbox attention bit */
7947                                 work_ha_copy &= ~HA_MBATT;
7948                         } else {
7949                                 phba->sli.mbox_active = NULL;
7950                                 spin_unlock_irqrestore(&phba->hbalock, iflag);
7951                                 phba->last_completion_time = jiffies;
7952                                 del_timer(&phba->sli.mbox_tmo);
7953                                 if (pmb->mbox_cmpl) {
7954                                         lpfc_sli_pcimem_bcopy(mbox, pmbox,
7955                                                         MAILBOX_CMD_SIZE);
7956                                 }
7957                                 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
7958                                         pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
7959
7960                                         lpfc_debugfs_disc_trc(vport,
7961                                                 LPFC_DISC_TRC_MBOX_VPORT,
7962                                                 "MBOX dflt rpi: : "
7963                                                 "status:x%x rpi:x%x",
7964                                                 (uint32_t)pmbox->mbxStatus,
7965                                                 pmbox->un.varWords[0], 0);
7966
7967                                         if (!pmbox->mbxStatus) {
7968                                                 mp = (struct lpfc_dmabuf *)
7969                                                         (pmb->context1);
7970                                                 ndlp = (struct lpfc_nodelist *)
7971                                                         pmb->context2;
7972
7973                                                 /* Reg_LOGIN of dflt RPI was
7974                                                  * successful. new lets get
7975                                                  * rid of the RPI using the
7976                                                  * same mbox buffer.
7977                                                  */
7978                                                 lpfc_unreg_login(phba,
7979                                                         vport->vpi,
7980                                                         pmbox->un.varWords[0],
7981                                                         pmb);
7982                                                 pmb->mbox_cmpl =
7983                                                         lpfc_mbx_cmpl_dflt_rpi;
7984                                                 pmb->context1 = mp;
7985                                                 pmb->context2 = ndlp;
7986                                                 pmb->vport = vport;
7987                                                 rc = lpfc_sli_issue_mbox(phba,
7988                                                                 pmb,
7989                                                                 MBX_NOWAIT);
7990                                                 if (rc != MBX_BUSY)
7991                                                         lpfc_printf_log(phba,
7992                                                         KERN_ERR,
7993                                                         LOG_MBOX | LOG_SLI,
7994                                                         "0350 rc should have"
7995                                                         "been MBX_BUSY\n");
7996                                                 if (rc != MBX_NOT_FINISHED)
7997                                                         goto send_current_mbox;
7998                                         }
7999                                 }
8000                                 spin_lock_irqsave(
8001                                                 &phba->pport->work_port_lock,
8002                                                 iflag);
8003                                 phba->pport->work_port_events &=
8004                                         ~WORKER_MBOX_TMO;
8005                                 spin_unlock_irqrestore(
8006                                                 &phba->pport->work_port_lock,
8007                                                 iflag);
8008                                 lpfc_mbox_cmpl_put(phba, pmb);
8009                         }
8010                 } else
8011                         spin_unlock_irqrestore(&phba->hbalock, iflag);
8012
8013                 if ((work_ha_copy & HA_MBATT) &&
8014                     (phba->sli.mbox_active == NULL)) {
8015 send_current_mbox:
8016                         /* Process next mailbox command if there is one */
8017                         do {
8018                                 rc = lpfc_sli_issue_mbox(phba, NULL,
8019                                                          MBX_NOWAIT);
8020                         } while (rc == MBX_NOT_FINISHED);
8021                         if (rc != MBX_SUCCESS)
8022                                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
8023                                                 LOG_SLI, "0349 rc should be "
8024                                                 "MBX_SUCCESS\n");
8025                 }
8026
8027                 spin_lock_irqsave(&phba->hbalock, iflag);
8028                 phba->work_ha |= work_ha_copy;
8029                 spin_unlock_irqrestore(&phba->hbalock, iflag);
8030                 lpfc_worker_wake_up(phba);
8031         }
8032         return IRQ_HANDLED;
8033
8034 } /* lpfc_sli_sp_intr_handler */
8035
8036 /**
8037  * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
8038  * @irq: Interrupt number.
8039  * @dev_id: The device context pointer.
8040  *
8041  * This function is directly called from the PCI layer as an interrupt
8042  * service routine when device with SLI-3 interface spec is enabled with
8043  * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
8044  * ring event in the HBA. However, when the device is enabled with either
8045  * MSI or Pin-IRQ interrupt mode, this function is called as part of the
8046  * device-level interrupt handler. When the PCI slot is in error recovery
8047  * or the HBA is undergoing initialization, the interrupt handler will not
8048  * process the interrupt. The SCSI FCP fast-path ring event are handled in
8049  * the intrrupt context. This function is called without any lock held.
8050  * It gets the hbalock to access and update SLI data structures.
8051  *
8052  * This function returns IRQ_HANDLED when interrupt is handled else it
8053  * returns IRQ_NONE.
8054  **/
8055 irqreturn_t
8056 lpfc_sli_fp_intr_handler(int irq, void *dev_id)
8057 {
8058         struct lpfc_hba  *phba;
8059         uint32_t ha_copy;
8060         unsigned long status;
8061         unsigned long iflag;
8062
8063         /* Get the driver's phba structure from the dev_id and
8064          * assume the HBA is not interrupting.
8065          */
8066         phba = (struct lpfc_hba *) dev_id;
8067
8068         if (unlikely(!phba))
8069                 return IRQ_NONE;
8070
8071         /*
8072          * Stuff needs to be attented to when this function is invoked as an
8073          * individual interrupt handler in MSI-X multi-message interrupt mode
8074          */
8075         if (phba->intr_type == MSIX) {
8076                 /* Check device state for handling interrupt */
8077                 if (lpfc_intr_state_check(phba))
8078                         return IRQ_NONE;
8079                 /* Need to read HA REG for FCP ring and other ring events */
8080                 ha_copy = readl(phba->HAregaddr);
8081                 /* Clear up only attention source related to fast-path */
8082                 spin_lock_irqsave(&phba->hbalock, iflag);
8083                 /*
8084                  * If there is deferred error attention, do not check for
8085                  * any interrupt.
8086                  */
8087                 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
8088                         spin_unlock_irqrestore(&phba->hbalock, iflag);
8089                         return IRQ_NONE;
8090                 }
8091                 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
8092                         phba->HAregaddr);
8093                 readl(phba->HAregaddr); /* flush */
8094                 spin_unlock_irqrestore(&phba->hbalock, iflag);
8095         } else
8096                 ha_copy = phba->ha_copy;
8097
8098         /*
8099          * Process all events on FCP ring. Take the optimized path for FCP IO.
8100          */
8101         ha_copy &= ~(phba->work_ha_mask);
8102
8103         status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
8104         status >>= (4*LPFC_FCP_RING);
8105         if (status & HA_RXMASK)
8106                 lpfc_sli_handle_fast_ring_event(phba,
8107                                                 &phba->sli.ring[LPFC_FCP_RING],
8108                                                 status);
8109
8110         if (phba->cfg_multi_ring_support == 2) {
8111                 /*
8112                  * Process all events on extra ring. Take the optimized path
8113                  * for extra ring IO.
8114                  */
8115                 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
8116                 status >>= (4*LPFC_EXTRA_RING);
8117                 if (status & HA_RXMASK) {
8118                         lpfc_sli_handle_fast_ring_event(phba,
8119                                         &phba->sli.ring[LPFC_EXTRA_RING],
8120                                         status);
8121                 }
8122         }
8123         return IRQ_HANDLED;
8124 }  /* lpfc_sli_fp_intr_handler */
8125
8126 /**
8127  * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
8128  * @irq: Interrupt number.
8129  * @dev_id: The device context pointer.
8130  *
8131  * This function is the HBA device-level interrupt handler to device with
8132  * SLI-3 interface spec, called from the PCI layer when either MSI or
8133  * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
8134  * requires driver attention. This function invokes the slow-path interrupt
8135  * attention handling function and fast-path interrupt attention handling
8136  * function in turn to process the relevant HBA attention events. This
8137  * function is called without any lock held. It gets the hbalock to access
8138  * and update SLI data structures.
8139  *
8140  * This function returns IRQ_HANDLED when interrupt is handled, else it
8141  * returns IRQ_NONE.
8142  **/
8143 irqreturn_t
8144 lpfc_sli_intr_handler(int irq, void *dev_id)
8145 {
8146         struct lpfc_hba  *phba;
8147         irqreturn_t sp_irq_rc, fp_irq_rc;
8148         unsigned long status1, status2;
8149
8150         /*
8151          * Get the driver's phba structure from the dev_id and
8152          * assume the HBA is not interrupting.
8153          */
8154         phba = (struct lpfc_hba *) dev_id;
8155
8156         if (unlikely(!phba))
8157                 return IRQ_NONE;
8158
8159         /* Check device state for handling interrupt */
8160         if (lpfc_intr_state_check(phba))
8161                 return IRQ_NONE;
8162
8163         spin_lock(&phba->hbalock);
8164         phba->ha_copy = readl(phba->HAregaddr);
8165         if (unlikely(!phba->ha_copy)) {
8166                 spin_unlock(&phba->hbalock);
8167                 return IRQ_NONE;
8168         } else if (phba->ha_copy & HA_ERATT) {
8169                 if (phba->hba_flag & HBA_ERATT_HANDLED)
8170                         /* ERATT polling has handled ERATT */
8171                         phba->ha_copy &= ~HA_ERATT;
8172                 else
8173                         /* Indicate interrupt handler handles ERATT */
8174                         phba->hba_flag |= HBA_ERATT_HANDLED;
8175         }
8176
8177         /*
8178          * If there is deferred error attention, do not check for any interrupt.
8179          */
8180         if (unlikely(phba->hba_flag & DEFER_ERATT)) {
8181                 spin_unlock_irq(&phba->hbalock);
8182                 return IRQ_NONE;
8183         }
8184
8185         /* Clear attention sources except link and error attentions */
8186         writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
8187         readl(phba->HAregaddr); /* flush */
8188         spin_unlock(&phba->hbalock);
8189
8190         /*
8191          * Invokes slow-path host attention interrupt handling as appropriate.
8192          */
8193
8194         /* status of events with mailbox and link attention */
8195         status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
8196
8197         /* status of events with ELS ring */
8198         status2 = (phba->ha_copy & (HA_RXMASK  << (4*LPFC_ELS_RING)));
8199         status2 >>= (4*LPFC_ELS_RING);
8200
8201         if (status1 || (status2 & HA_RXMASK))
8202                 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
8203         else
8204                 sp_irq_rc = IRQ_NONE;
8205
8206         /*
8207          * Invoke fast-path host attention interrupt handling as appropriate.
8208          */
8209
8210         /* status of events with FCP ring */
8211         status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
8212         status1 >>= (4*LPFC_FCP_RING);
8213
8214         /* status of events with extra ring */
8215         if (phba->cfg_multi_ring_support == 2) {
8216                 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
8217                 status2 >>= (4*LPFC_EXTRA_RING);
8218         } else
8219                 status2 = 0;
8220
8221         if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
8222                 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
8223         else
8224                 fp_irq_rc = IRQ_NONE;
8225
8226         /* Return device-level interrupt handling status */
8227         return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
8228 }  /* lpfc_sli_intr_handler */
8229
8230 /**
8231  * lpfc_sli4_fcp_xri_abort_event_proc - Process fcp xri abort event
8232  * @phba: pointer to lpfc hba data structure.
8233  *
8234  * This routine is invoked by the worker thread to process all the pending
8235  * SLI4 FCP abort XRI events.
8236  **/
8237 void lpfc_sli4_fcp_xri_abort_event_proc(struct lpfc_hba *phba)
8238 {
8239         struct lpfc_cq_event *cq_event;
8240
8241         /* First, declare the fcp xri abort event has been handled */
8242         spin_lock_irq(&phba->hbalock);
8243         phba->hba_flag &= ~FCP_XRI_ABORT_EVENT;
8244         spin_unlock_irq(&phba->hbalock);
8245         /* Now, handle all the fcp xri abort events */
8246         while (!list_empty(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue)) {
8247                 /* Get the first event from the head of the event queue */
8248                 spin_lock_irq(&phba->hbalock);
8249                 list_remove_head(&phba->sli4_hba.sp_fcp_xri_aborted_work_queue,
8250                                  cq_event, struct lpfc_cq_event, list);
8251                 spin_unlock_irq(&phba->hbalock);
8252                 /* Notify aborted XRI for FCP work queue */
8253                 lpfc_sli4_fcp_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
8254                 /* Free the event processed back to the free pool */
8255                 lpfc_sli4_cq_event_release(phba, cq_event);
8256         }
8257 }
8258
8259 /**
8260  * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
8261  * @phba: pointer to lpfc hba data structure.
8262  *
8263  * This routine is invoked by the worker thread to process all the pending
8264  * SLI4 els abort xri events.
8265  **/
8266 void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
8267 {
8268         struct lpfc_cq_event *cq_event;
8269
8270         /* First, declare the els xri abort event has been handled */
8271         spin_lock_irq(&phba->hbalock);
8272         phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
8273         spin_unlock_irq(&phba->hbalock);
8274         /* Now, handle all the els xri abort events */
8275         while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
8276                 /* Get the first event from the head of the event queue */
8277                 spin_lock_irq(&phba->hbalock);
8278                 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
8279                                  cq_event, struct lpfc_cq_event, list);
8280                 spin_unlock_irq(&phba->hbalock);
8281                 /* Notify aborted XRI for ELS work queue */
8282                 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
8283                 /* Free the event processed back to the free pool */
8284                 lpfc_sli4_cq_event_release(phba, cq_event);
8285         }
8286 }
8287
8288 static void
8289 lpfc_sli4_iocb_param_transfer(struct lpfc_iocbq *pIocbIn,
8290                               struct lpfc_iocbq *pIocbOut,
8291                               struct lpfc_wcqe_complete *wcqe)
8292 {
8293         size_t offset = offsetof(struct lpfc_iocbq, iocb);
8294
8295         memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
8296                sizeof(struct lpfc_iocbq) - offset);
8297         /* Map WCQE parameters into irspiocb parameters */
8298         pIocbIn->iocb.ulpStatus = bf_get(lpfc_wcqe_c_status, wcqe);
8299         if (pIocbOut->iocb_flag & LPFC_IO_FCP)
8300                 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
8301                         pIocbIn->iocb.un.fcpi.fcpi_parm =
8302                                         pIocbOut->iocb.un.fcpi.fcpi_parm -
8303                                         wcqe->total_data_placed;
8304                 else
8305                         pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
8306         else
8307                 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
8308 }
8309
8310 /**
8311  * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
8312  * @phba: Pointer to HBA context object.
8313  * @wcqe: Pointer to work-queue completion queue entry.
8314  *
8315  * This routine handles an ELS work-queue completion event and construct
8316  * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
8317  * discovery engine to handle.
8318  *
8319  * Return: Pointer to the receive IOCBQ, NULL otherwise.
8320  **/
8321 static struct lpfc_iocbq *
8322 lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
8323                                struct lpfc_iocbq *irspiocbq)
8324 {
8325         struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_ELS_RING];
8326         struct lpfc_iocbq *cmdiocbq;
8327         struct lpfc_wcqe_complete *wcqe;
8328         unsigned long iflags;
8329
8330         wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
8331         spin_lock_irqsave(&phba->hbalock, iflags);
8332         pring->stats.iocb_event++;
8333         /* Look up the ELS command IOCB and create pseudo response IOCB */
8334         cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
8335                                 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8336         spin_unlock_irqrestore(&phba->hbalock, iflags);
8337
8338         if (unlikely(!cmdiocbq)) {
8339                 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8340                                 "0386 ELS complete with no corresponding "
8341                                 "cmdiocb: iotag (%d)\n",
8342                                 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8343                 lpfc_sli_release_iocbq(phba, irspiocbq);
8344                 return NULL;
8345         }
8346
8347         /* Fake the irspiocbq and copy necessary response information */
8348         lpfc_sli4_iocb_param_transfer(irspiocbq, cmdiocbq, wcqe);
8349
8350         return irspiocbq;
8351 }
8352
8353 /**
8354  * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
8355  * @phba: Pointer to HBA context object.
8356  * @cqe: Pointer to mailbox completion queue entry.
8357  *
8358  * This routine process a mailbox completion queue entry with asynchrous
8359  * event.
8360  *
8361  * Return: true if work posted to worker thread, otherwise false.
8362  **/
8363 static bool
8364 lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
8365 {
8366         struct lpfc_cq_event *cq_event;
8367         unsigned long iflags;
8368
8369         lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
8370                         "0392 Async Event: word0:x%x, word1:x%x, "
8371                         "word2:x%x, word3:x%x\n", mcqe->word0,
8372                         mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
8373
8374         /* Allocate a new internal CQ_EVENT entry */
8375         cq_event = lpfc_sli4_cq_event_alloc(phba);
8376         if (!cq_event) {
8377                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8378                                 "0394 Failed to allocate CQ_EVENT entry\n");
8379                 return false;
8380         }
8381
8382         /* Move the CQE into an asynchronous event entry */
8383         memcpy(&cq_event->cqe, mcqe, sizeof(struct lpfc_mcqe));
8384         spin_lock_irqsave(&phba->hbalock, iflags);
8385         list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
8386         /* Set the async event flag */
8387         phba->hba_flag |= ASYNC_EVENT;
8388         spin_unlock_irqrestore(&phba->hbalock, iflags);
8389
8390         return true;
8391 }
8392
8393 /**
8394  * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
8395  * @phba: Pointer to HBA context object.
8396  * @cqe: Pointer to mailbox completion queue entry.
8397  *
8398  * This routine process a mailbox completion queue entry with mailbox
8399  * completion event.
8400  *
8401  * Return: true if work posted to worker thread, otherwise false.
8402  **/
8403 static bool
8404 lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
8405 {
8406         uint32_t mcqe_status;
8407         MAILBOX_t *mbox, *pmbox;
8408         struct lpfc_mqe *mqe;
8409         struct lpfc_vport *vport;
8410         struct lpfc_nodelist *ndlp;
8411         struct lpfc_dmabuf *mp;
8412         unsigned long iflags;
8413         LPFC_MBOXQ_t *pmb;
8414         bool workposted = false;
8415         int rc;
8416
8417         /* If not a mailbox complete MCQE, out by checking mailbox consume */
8418         if (!bf_get(lpfc_trailer_completed, mcqe))
8419                 goto out_no_mqe_complete;
8420
8421         /* Get the reference to the active mbox command */
8422         spin_lock_irqsave(&phba->hbalock, iflags);
8423         pmb = phba->sli.mbox_active;
8424         if (unlikely(!pmb)) {
8425                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
8426                                 "1832 No pending MBOX command to handle\n");
8427                 spin_unlock_irqrestore(&phba->hbalock, iflags);
8428                 goto out_no_mqe_complete;
8429         }
8430         spin_unlock_irqrestore(&phba->hbalock, iflags);
8431         mqe = &pmb->u.mqe;
8432         pmbox = (MAILBOX_t *)&pmb->u.mqe;
8433         mbox = phba->mbox;
8434         vport = pmb->vport;
8435
8436         /* Reset heartbeat timer */
8437         phba->last_completion_time = jiffies;
8438         del_timer(&phba->sli.mbox_tmo);
8439
8440         /* Move mbox data to caller's mailbox region, do endian swapping */
8441         if (pmb->mbox_cmpl && mbox)
8442                 lpfc_sli_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
8443         /* Set the mailbox status with SLI4 range 0x4000 */
8444         mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
8445         if (mcqe_status != MB_CQE_STATUS_SUCCESS)
8446                 bf_set(lpfc_mqe_status, mqe,
8447                        (LPFC_MBX_ERROR_RANGE | mcqe_status));
8448
8449         if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
8450                 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
8451                 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
8452                                       "MBOX dflt rpi: status:x%x rpi:x%x",
8453                                       mcqe_status,
8454                                       pmbox->un.varWords[0], 0);
8455                 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
8456                         mp = (struct lpfc_dmabuf *)(pmb->context1);
8457                         ndlp = (struct lpfc_nodelist *)pmb->context2;
8458                         /* Reg_LOGIN of dflt RPI was successful. Now lets get
8459                          * RID of the PPI using the same mbox buffer.
8460                          */
8461                         lpfc_unreg_login(phba, vport->vpi,
8462                                          pmbox->un.varWords[0], pmb);
8463                         pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
8464                         pmb->context1 = mp;
8465                         pmb->context2 = ndlp;
8466                         pmb->vport = vport;
8467                         rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
8468                         if (rc != MBX_BUSY)
8469                                 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
8470                                                 LOG_SLI, "0385 rc should "
8471                                                 "have been MBX_BUSY\n");
8472                         if (rc != MBX_NOT_FINISHED)
8473                                 goto send_current_mbox;
8474                 }
8475         }
8476         spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
8477         phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
8478         spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
8479
8480         /* There is mailbox completion work to do */
8481         spin_lock_irqsave(&phba->hbalock, iflags);
8482         __lpfc_mbox_cmpl_put(phba, pmb);
8483         phba->work_ha |= HA_MBATT;
8484         spin_unlock_irqrestore(&phba->hbalock, iflags);
8485         workposted = true;
8486
8487 send_current_mbox:
8488         spin_lock_irqsave(&phba->hbalock, iflags);
8489         /* Release the mailbox command posting token */
8490         phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
8491         /* Setting active mailbox pointer need to be in sync to flag clear */
8492         phba->sli.mbox_active = NULL;
8493         spin_unlock_irqrestore(&phba->hbalock, iflags);
8494         /* Wake up worker thread to post the next pending mailbox command */
8495         lpfc_worker_wake_up(phba);
8496 out_no_mqe_complete:
8497         if (bf_get(lpfc_trailer_consumed, mcqe))
8498                 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
8499         return workposted;
8500 }
8501
8502 /**
8503  * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
8504  * @phba: Pointer to HBA context object.
8505  * @cqe: Pointer to mailbox completion queue entry.
8506  *
8507  * This routine process a mailbox completion queue entry, it invokes the
8508  * proper mailbox complete handling or asynchrous event handling routine
8509  * according to the MCQE's async bit.
8510  *
8511  * Return: true if work posted to worker thread, otherwise false.
8512  **/
8513 static bool
8514 lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_cqe *cqe)
8515 {
8516         struct lpfc_mcqe mcqe;
8517         bool workposted;
8518
8519         /* Copy the mailbox MCQE and convert endian order as needed */
8520         lpfc_sli_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
8521
8522         /* Invoke the proper event handling routine */
8523         if (!bf_get(lpfc_trailer_async, &mcqe))
8524                 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
8525         else
8526                 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
8527         return workposted;
8528 }
8529
8530 /**
8531  * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
8532  * @phba: Pointer to HBA context object.
8533  * @wcqe: Pointer to work-queue completion queue entry.
8534  *
8535  * This routine handles an ELS work-queue completion event.
8536  *
8537  * Return: true if work posted to worker thread, otherwise false.
8538  **/
8539 static bool
8540 lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba,
8541                              struct lpfc_wcqe_complete *wcqe)
8542 {
8543         struct lpfc_iocbq *irspiocbq;
8544         unsigned long iflags;
8545
8546         /* Get an irspiocbq for later ELS response processing use */
8547         irspiocbq = lpfc_sli_get_iocbq(phba);
8548         if (!irspiocbq) {
8549                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8550                                 "0387 Failed to allocate an iocbq\n");
8551                 return false;
8552         }
8553
8554         /* Save off the slow-path queue event for work thread to process */
8555         memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
8556         spin_lock_irqsave(&phba->hbalock, iflags);
8557         list_add_tail(&irspiocbq->cq_event.list,
8558                       &phba->sli4_hba.sp_queue_event);
8559         phba->hba_flag |= HBA_SP_QUEUE_EVT;
8560         spin_unlock_irqrestore(&phba->hbalock, iflags);
8561
8562         return true;
8563 }
8564
8565 /**
8566  * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
8567  * @phba: Pointer to HBA context object.
8568  * @wcqe: Pointer to work-queue completion queue entry.
8569  *
8570  * This routine handles slow-path WQ entry comsumed event by invoking the
8571  * proper WQ release routine to the slow-path WQ.
8572  **/
8573 static void
8574 lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
8575                              struct lpfc_wcqe_release *wcqe)
8576 {
8577         /* Check for the slow-path ELS work queue */
8578         if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
8579                 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
8580                                      bf_get(lpfc_wcqe_r_wqe_index, wcqe));
8581         else
8582                 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8583                                 "2579 Slow-path wqe consume event carries "
8584                                 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
8585                                 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
8586                                 phba->sli4_hba.els_wq->queue_id);
8587 }
8588
8589 /**
8590  * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
8591  * @phba: Pointer to HBA context object.
8592  * @cq: Pointer to a WQ completion queue.
8593  * @wcqe: Pointer to work-queue completion queue entry.
8594  *
8595  * This routine handles an XRI abort event.
8596  *
8597  * Return: true if work posted to worker thread, otherwise false.
8598  **/
8599 static bool
8600 lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
8601                                    struct lpfc_queue *cq,
8602                                    struct sli4_wcqe_xri_aborted *wcqe)
8603 {
8604         bool workposted = false;
8605         struct lpfc_cq_event *cq_event;
8606         unsigned long iflags;
8607
8608         /* Allocate a new internal CQ_EVENT entry */
8609         cq_event = lpfc_sli4_cq_event_alloc(phba);
8610         if (!cq_event) {
8611                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8612                                 "0602 Failed to allocate CQ_EVENT entry\n");
8613                 return false;
8614         }
8615
8616         /* Move the CQE into the proper xri abort event list */
8617         memcpy(&cq_event->cqe, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
8618         switch (cq->subtype) {
8619         case LPFC_FCP:
8620                 spin_lock_irqsave(&phba->hbalock, iflags);
8621                 list_add_tail(&cq_event->list,
8622                               &phba->sli4_hba.sp_fcp_xri_aborted_work_queue);
8623                 /* Set the fcp xri abort event flag */
8624                 phba->hba_flag |= FCP_XRI_ABORT_EVENT;
8625                 spin_unlock_irqrestore(&phba->hbalock, iflags);
8626                 workposted = true;
8627                 break;
8628         case LPFC_ELS:
8629                 spin_lock_irqsave(&phba->hbalock, iflags);
8630                 list_add_tail(&cq_event->list,
8631                               &phba->sli4_hba.sp_els_xri_aborted_work_queue);
8632                 /* Set the els xri abort event flag */
8633                 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
8634                 spin_unlock_irqrestore(&phba->hbalock, iflags);
8635                 workposted = true;
8636                 break;
8637         default:
8638                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8639                                 "0603 Invalid work queue CQE subtype (x%x)\n",
8640                                 cq->subtype);
8641                 workposted = false;
8642                 break;
8643         }
8644         return workposted;
8645 }
8646
8647 /**
8648  * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
8649  * @phba: Pointer to HBA context object.
8650  * @rcqe: Pointer to receive-queue completion queue entry.
8651  *
8652  * This routine process a receive-queue completion queue entry.
8653  *
8654  * Return: true if work posted to worker thread, otherwise false.
8655  **/
8656 static bool
8657 lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
8658 {
8659         bool workposted = false;
8660         struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
8661         struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
8662         struct hbq_dmabuf *dma_buf;
8663         uint32_t status;
8664         unsigned long iflags;
8665
8666         lpfc_sli4_rq_release(hrq, drq);
8667         if (bf_get(lpfc_rcqe_rq_id, rcqe) != hrq->queue_id)
8668                 goto out;
8669
8670         status = bf_get(lpfc_rcqe_status, rcqe);
8671         switch (status) {
8672         case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
8673                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8674                                 "2537 Receive Frame Truncated!!\n");
8675         case FC_STATUS_RQ_SUCCESS:
8676                 spin_lock_irqsave(&phba->hbalock, iflags);
8677                 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
8678                 if (!dma_buf) {
8679                         spin_unlock_irqrestore(&phba->hbalock, iflags);
8680                         goto out;
8681                 }
8682                 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
8683                 /* save off the frame for the word thread to process */
8684                 list_add_tail(&dma_buf->cq_event.list,
8685                               &phba->sli4_hba.sp_queue_event);
8686                 /* Frame received */
8687                 phba->hba_flag |= HBA_SP_QUEUE_EVT;
8688                 spin_unlock_irqrestore(&phba->hbalock, iflags);
8689                 workposted = true;
8690                 break;
8691         case FC_STATUS_INSUFF_BUF_NEED_BUF:
8692         case FC_STATUS_INSUFF_BUF_FRM_DISC:
8693                 /* Post more buffers if possible */
8694                 spin_lock_irqsave(&phba->hbalock, iflags);
8695                 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
8696                 spin_unlock_irqrestore(&phba->hbalock, iflags);
8697                 workposted = true;
8698                 break;
8699         }
8700 out:
8701         return workposted;
8702 }
8703
8704 /**
8705  * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
8706  * @phba: Pointer to HBA context object.
8707  * @cq: Pointer to the completion queue.
8708  * @wcqe: Pointer to a completion queue entry.
8709  *
8710  * This routine process a slow-path work-queue or recieve queue completion queue
8711  * entry.
8712  *
8713  * Return: true if work posted to worker thread, otherwise false.
8714  **/
8715 static bool
8716 lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
8717                          struct lpfc_cqe *cqe)
8718 {
8719         struct lpfc_cqe cqevt;
8720         bool workposted = false;
8721
8722         /* Copy the work queue CQE and convert endian order if needed */
8723         lpfc_sli_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
8724
8725         /* Check and process for different type of WCQE and dispatch */
8726         switch (bf_get(lpfc_cqe_code, &cqevt)) {
8727         case CQE_CODE_COMPL_WQE:
8728                 /* Process the WQ/RQ complete event */
8729                 workposted = lpfc_sli4_sp_handle_els_wcqe(phba,
8730                                 (struct lpfc_wcqe_complete *)&cqevt);
8731                 break;
8732         case CQE_CODE_RELEASE_WQE:
8733                 /* Process the WQ release event */
8734                 lpfc_sli4_sp_handle_rel_wcqe(phba,
8735                                 (struct lpfc_wcqe_release *)&cqevt);
8736                 break;
8737         case CQE_CODE_XRI_ABORTED:
8738                 /* Process the WQ XRI abort event */
8739                 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
8740                                 (struct sli4_wcqe_xri_aborted *)&cqevt);
8741                 break;
8742         case CQE_CODE_RECEIVE:
8743                 /* Process the RQ event */
8744                 workposted = lpfc_sli4_sp_handle_rcqe(phba,
8745                                 (struct lpfc_rcqe *)&cqevt);
8746                 break;
8747         default:
8748                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8749                                 "0388 Not a valid WCQE code: x%x\n",
8750                                 bf_get(lpfc_cqe_code, &cqevt));
8751                 break;
8752         }
8753         return workposted;
8754 }
8755
8756 /**
8757  * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
8758  * @phba: Pointer to HBA context object.
8759  * @eqe: Pointer to fast-path event queue entry.
8760  *
8761  * This routine process a event queue entry from the slow-path event queue.
8762  * It will check the MajorCode and MinorCode to determine this is for a
8763  * completion event on a completion queue, if not, an error shall be logged
8764  * and just return. Otherwise, it will get to the corresponding completion
8765  * queue and process all the entries on that completion queue, rearm the
8766  * completion queue, and then return.
8767  *
8768  **/
8769 static void
8770 lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe)
8771 {
8772         struct lpfc_queue *cq = NULL, *childq, *speq;
8773         struct lpfc_cqe *cqe;
8774         bool workposted = false;
8775         int ecount = 0;
8776         uint16_t cqid;
8777
8778         if (bf_get(lpfc_eqe_major_code, eqe) != 0 ||
8779             bf_get(lpfc_eqe_minor_code, eqe) != 0) {
8780                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8781                                 "0359 Not a valid slow-path completion "
8782                                 "event: majorcode=x%x, minorcode=x%x\n",
8783                                 bf_get(lpfc_eqe_major_code, eqe),
8784                                 bf_get(lpfc_eqe_minor_code, eqe));
8785                 return;
8786         }
8787
8788         /* Get the reference to the corresponding CQ */
8789         cqid = bf_get(lpfc_eqe_resource_id, eqe);
8790
8791         /* Search for completion queue pointer matching this cqid */
8792         speq = phba->sli4_hba.sp_eq;
8793         list_for_each_entry(childq, &speq->child_list, list) {
8794                 if (childq->queue_id == cqid) {
8795                         cq = childq;
8796                         break;
8797                 }
8798         }
8799         if (unlikely(!cq)) {
8800                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8801                                 "0365 Slow-path CQ identifier (%d) does "
8802                                 "not exist\n", cqid);
8803                 return;
8804         }
8805
8806         /* Process all the entries to the CQ */
8807         switch (cq->type) {
8808         case LPFC_MCQ:
8809                 while ((cqe = lpfc_sli4_cq_get(cq))) {
8810                         workposted |= lpfc_sli4_sp_handle_mcqe(phba, cqe);
8811                         if (!(++ecount % LPFC_GET_QE_REL_INT))
8812                                 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
8813                 }
8814                 break;
8815         case LPFC_WCQ:
8816                 while ((cqe = lpfc_sli4_cq_get(cq))) {
8817                         workposted |= lpfc_sli4_sp_handle_cqe(phba, cq, cqe);
8818                         if (!(++ecount % LPFC_GET_QE_REL_INT))
8819                                 lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
8820                 }
8821                 break;
8822         default:
8823                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8824                                 "0370 Invalid completion queue type (%d)\n",
8825                                 cq->type);
8826                 return;
8827         }
8828
8829         /* Catch the no cq entry condition, log an error */
8830         if (unlikely(ecount == 0))
8831                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8832                                 "0371 No entry from the CQ: identifier "
8833                                 "(x%x), type (%d)\n", cq->queue_id, cq->type);
8834
8835         /* In any case, flash and re-arm the RCQ */
8836         lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
8837
8838         /* wake up worker thread if there are works to be done */
8839         if (workposted)
8840                 lpfc_worker_wake_up(phba);
8841 }
8842
8843 /**
8844  * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
8845  * @eqe: Pointer to fast-path completion queue entry.
8846  *
8847  * This routine process a fast-path work queue completion entry from fast-path
8848  * event queue for FCP command response completion.
8849  **/
8850 static void
8851 lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba,
8852                              struct lpfc_wcqe_complete *wcqe)
8853 {
8854         struct lpfc_sli_ring *pring = &phba->sli.ring[LPFC_FCP_RING];
8855         struct lpfc_iocbq *cmdiocbq;
8856         struct lpfc_iocbq irspiocbq;
8857         unsigned long iflags;
8858
8859         spin_lock_irqsave(&phba->hbalock, iflags);
8860         pring->stats.iocb_event++;
8861         spin_unlock_irqrestore(&phba->hbalock, iflags);
8862
8863         /* Check for response status */
8864         if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
8865                 /* If resource errors reported from HBA, reduce queue
8866                  * depth of the SCSI device.
8867                  */
8868                 if ((bf_get(lpfc_wcqe_c_status, wcqe) ==
8869                      IOSTAT_LOCAL_REJECT) &&
8870                     (wcqe->parameter == IOERR_NO_RESOURCES)) {
8871                         phba->lpfc_rampdown_queue_depth(phba);
8872                 }
8873                 /* Log the error status */
8874                 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8875                                 "0373 FCP complete error: status=x%x, "
8876                                 "hw_status=x%x, total_data_specified=%d, "
8877                                 "parameter=x%x, word3=x%x\n",
8878                                 bf_get(lpfc_wcqe_c_status, wcqe),
8879                                 bf_get(lpfc_wcqe_c_hw_status, wcqe),
8880                                 wcqe->total_data_placed, wcqe->parameter,
8881                                 wcqe->word3);
8882         }
8883
8884         /* Look up the FCP command IOCB and create pseudo response IOCB */
8885         spin_lock_irqsave(&phba->hbalock, iflags);
8886         cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
8887                                 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8888         spin_unlock_irqrestore(&phba->hbalock, iflags);
8889         if (unlikely(!cmdiocbq)) {
8890                 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8891                                 "0374 FCP complete with no corresponding "
8892                                 "cmdiocb: iotag (%d)\n",
8893                                 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8894                 return;
8895         }
8896         if (unlikely(!cmdiocbq->iocb_cmpl)) {
8897                 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8898                                 "0375 FCP cmdiocb not callback function "
8899                                 "iotag: (%d)\n",
8900                                 bf_get(lpfc_wcqe_c_request_tag, wcqe));
8901                 return;
8902         }
8903
8904         /* Fake the irspiocb and copy necessary response information */
8905         lpfc_sli4_iocb_param_transfer(&irspiocbq, cmdiocbq, wcqe);
8906
8907         /* Pass the cmd_iocb and the rsp state to the upper layer */
8908         (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
8909 }
8910
8911 /**
8912  * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
8913  * @phba: Pointer to HBA context object.
8914  * @cq: Pointer to completion queue.
8915  * @wcqe: Pointer to work-queue completion queue entry.
8916  *
8917  * This routine handles an fast-path WQ entry comsumed event by invoking the
8918  * proper WQ release routine to the slow-path WQ.
8919  **/
8920 static void
8921 lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
8922                              struct lpfc_wcqe_release *wcqe)
8923 {
8924         struct lpfc_queue *childwq;
8925         bool wqid_matched = false;
8926         uint16_t fcp_wqid;
8927
8928         /* Check for fast-path FCP work queue release */
8929         fcp_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
8930         list_for_each_entry(childwq, &cq->child_list, list) {
8931                 if (childwq->queue_id == fcp_wqid) {
8932                         lpfc_sli4_wq_release(childwq,
8933                                         bf_get(lpfc_wcqe_r_wqe_index, wcqe));
8934                         wqid_matched = true;
8935                         break;
8936                 }
8937         }
8938         /* Report warning log message if no match found */
8939         if (wqid_matched != true)
8940                 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
8941                                 "2580 Fast-path wqe consume event carries "
8942                                 "miss-matched qid: wcqe-qid=x%x\n", fcp_wqid);
8943 }
8944
8945 /**
8946  * lpfc_sli4_fp_handle_wcqe - Process fast-path work queue completion entry
8947  * @cq: Pointer to the completion queue.
8948  * @eqe: Pointer to fast-path completion queue entry.
8949  *
8950  * This routine process a fast-path work queue completion entry from fast-path
8951  * event queue for FCP command response completion.
8952  **/
8953 static int
8954 lpfc_sli4_fp_handle_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
8955                          struct lpfc_cqe *cqe)
8956 {
8957         struct lpfc_wcqe_release wcqe;
8958         bool workposted = false;
8959
8960         /* Copy the work queue CQE and convert endian order if needed */
8961         lpfc_sli_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
8962
8963         /* Check and process for different type of WCQE and dispatch */
8964         switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
8965         case CQE_CODE_COMPL_WQE:
8966                 /* Process the WQ complete event */
8967                 lpfc_sli4_fp_handle_fcp_wcqe(phba,
8968                                 (struct lpfc_wcqe_complete *)&wcqe);
8969                 break;
8970         case CQE_CODE_RELEASE_WQE:
8971                 /* Process the WQ release event */
8972                 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
8973                                 (struct lpfc_wcqe_release *)&wcqe);
8974                 break;
8975         case CQE_CODE_XRI_ABORTED:
8976                 /* Process the WQ XRI abort event */
8977                 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
8978                                 (struct sli4_wcqe_xri_aborted *)&wcqe);
8979                 break;
8980         default:
8981                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
8982                                 "0144 Not a valid WCQE code: x%x\n",
8983                                 bf_get(lpfc_wcqe_c_code, &wcqe));
8984                 break;
8985         }
8986         return workposted;
8987 }
8988
8989 /**
8990  * lpfc_sli4_fp_handle_eqe - Process a fast-path event queue entry
8991  * @phba: Pointer to HBA context object.
8992  * @eqe: Pointer to fast-path event queue entry.
8993  *
8994  * This routine process a event queue entry from the fast-path event queue.
8995  * It will check the MajorCode and MinorCode to determine this is for a
8996  * completion event on a completion queue, if not, an error shall be logged
8997  * and just return. Otherwise, it will get to the corresponding completion
8998  * queue and process all the entries on the completion queue, rearm the
8999  * completion queue, and then return.
9000  **/
9001 static void
9002 lpfc_sli4_fp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
9003                         uint32_t fcp_cqidx)
9004 {
9005         struct lpfc_queue *cq;
9006         struct lpfc_cqe *cqe;
9007         bool workposted = false;
9008         uint16_t cqid;
9009         int ecount = 0;
9010
9011         if (unlikely(bf_get(lpfc_eqe_major_code, eqe) != 0) ||
9012             unlikely(bf_get(lpfc_eqe_minor_code, eqe) != 0)) {
9013                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9014                                 "0366 Not a valid fast-path completion "
9015                                 "event: majorcode=x%x, minorcode=x%x\n",
9016                                 bf_get(lpfc_eqe_major_code, eqe),
9017                                 bf_get(lpfc_eqe_minor_code, eqe));
9018                 return;
9019         }
9020
9021         cq = phba->sli4_hba.fcp_cq[fcp_cqidx];
9022         if (unlikely(!cq)) {
9023                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9024                                 "0367 Fast-path completion queue does not "
9025                                 "exist\n");
9026                 return;
9027         }
9028
9029         /* Get the reference to the corresponding CQ */
9030         cqid = bf_get(lpfc_eqe_resource_id, eqe);
9031         if (unlikely(cqid != cq->queue_id)) {
9032                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9033                                 "0368 Miss-matched fast-path completion "
9034                                 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
9035                                 cqid, cq->queue_id);
9036                 return;
9037         }
9038
9039         /* Process all the entries to the CQ */
9040         while ((cqe = lpfc_sli4_cq_get(cq))) {
9041                 workposted |= lpfc_sli4_fp_handle_wcqe(phba, cq, cqe);
9042                 if (!(++ecount % LPFC_GET_QE_REL_INT))
9043                         lpfc_sli4_cq_release(cq, LPFC_QUEUE_NOARM);
9044         }
9045
9046         /* Catch the no cq entry condition */
9047         if (unlikely(ecount == 0))
9048                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9049                                 "0369 No entry from fast-path completion "
9050                                 "queue fcpcqid=%d\n", cq->queue_id);
9051
9052         /* In any case, flash and re-arm the CQ */
9053         lpfc_sli4_cq_release(cq, LPFC_QUEUE_REARM);
9054
9055         /* wake up worker thread if there are works to be done */
9056         if (workposted)
9057                 lpfc_worker_wake_up(phba);
9058 }
9059
9060 static void
9061 lpfc_sli4_eq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
9062 {
9063         struct lpfc_eqe *eqe;
9064
9065         /* walk all the EQ entries and drop on the floor */
9066         while ((eqe = lpfc_sli4_eq_get(eq)))
9067                 ;
9068
9069         /* Clear and re-arm the EQ */
9070         lpfc_sli4_eq_release(eq, LPFC_QUEUE_REARM);
9071 }
9072
9073 /**
9074  * lpfc_sli4_sp_intr_handler - Slow-path interrupt handler to SLI-4 device
9075  * @irq: Interrupt number.
9076  * @dev_id: The device context pointer.
9077  *
9078  * This function is directly called from the PCI layer as an interrupt
9079  * service routine when device with SLI-4 interface spec is enabled with
9080  * MSI-X multi-message interrupt mode and there are slow-path events in
9081  * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
9082  * interrupt mode, this function is called as part of the device-level
9083  * interrupt handler. When the PCI slot is in error recovery or the HBA is
9084  * undergoing initialization, the interrupt handler will not process the
9085  * interrupt. The link attention and ELS ring attention events are handled
9086  * by the worker thread. The interrupt handler signals the worker thread
9087  * and returns for these events. This function is called without any lock
9088  * held. It gets the hbalock to access and update SLI data structures.
9089  *
9090  * This function returns IRQ_HANDLED when interrupt is handled else it
9091  * returns IRQ_NONE.
9092  **/
9093 irqreturn_t
9094 lpfc_sli4_sp_intr_handler(int irq, void *dev_id)
9095 {
9096         struct lpfc_hba *phba;
9097         struct lpfc_queue *speq;
9098         struct lpfc_eqe *eqe;
9099         unsigned long iflag;
9100         int ecount = 0;
9101
9102         /*
9103          * Get the driver's phba structure from the dev_id
9104          */
9105         phba = (struct lpfc_hba *)dev_id;
9106
9107         if (unlikely(!phba))
9108                 return IRQ_NONE;
9109
9110         /* Get to the EQ struct associated with this vector */
9111         speq = phba->sli4_hba.sp_eq;
9112
9113         /* Check device state for handling interrupt */
9114         if (unlikely(lpfc_intr_state_check(phba))) {
9115                 /* Check again for link_state with lock held */
9116                 spin_lock_irqsave(&phba->hbalock, iflag);
9117                 if (phba->link_state < LPFC_LINK_DOWN)
9118                         /* Flush, clear interrupt, and rearm the EQ */
9119                         lpfc_sli4_eq_flush(phba, speq);
9120                 spin_unlock_irqrestore(&phba->hbalock, iflag);
9121                 return IRQ_NONE;
9122         }
9123
9124         /*
9125          * Process all the event on FCP slow-path EQ
9126          */
9127         while ((eqe = lpfc_sli4_eq_get(speq))) {
9128                 lpfc_sli4_sp_handle_eqe(phba, eqe);
9129                 if (!(++ecount % LPFC_GET_QE_REL_INT))
9130                         lpfc_sli4_eq_release(speq, LPFC_QUEUE_NOARM);
9131         }
9132
9133         /* Always clear and re-arm the slow-path EQ */
9134         lpfc_sli4_eq_release(speq, LPFC_QUEUE_REARM);
9135
9136         /* Catch the no cq entry condition */
9137         if (unlikely(ecount == 0)) {
9138                 if (phba->intr_type == MSIX)
9139                         /* MSI-X treated interrupt served as no EQ share INT */
9140                         lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9141                                         "0357 MSI-X interrupt with no EQE\n");
9142                 else
9143                         /* Non MSI-X treated on interrupt as EQ share INT */
9144                         return IRQ_NONE;
9145         }
9146
9147         return IRQ_HANDLED;
9148 } /* lpfc_sli4_sp_intr_handler */
9149
9150 /**
9151  * lpfc_sli4_fp_intr_handler - Fast-path interrupt handler to SLI-4 device
9152  * @irq: Interrupt number.
9153  * @dev_id: The device context pointer.
9154  *
9155  * This function is directly called from the PCI layer as an interrupt
9156  * service routine when device with SLI-4 interface spec is enabled with
9157  * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
9158  * ring event in the HBA. However, when the device is enabled with either
9159  * MSI or Pin-IRQ interrupt mode, this function is called as part of the
9160  * device-level interrupt handler. When the PCI slot is in error recovery
9161  * or the HBA is undergoing initialization, the interrupt handler will not
9162  * process the interrupt. The SCSI FCP fast-path ring event are handled in
9163  * the intrrupt context. This function is called without any lock held.
9164  * It gets the hbalock to access and update SLI data structures. Note that,
9165  * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
9166  * equal to that of FCP CQ index.
9167  *
9168  * This function returns IRQ_HANDLED when interrupt is handled else it
9169  * returns IRQ_NONE.
9170  **/
9171 irqreturn_t
9172 lpfc_sli4_fp_intr_handler(int irq, void *dev_id)
9173 {
9174         struct lpfc_hba *phba;
9175         struct lpfc_fcp_eq_hdl *fcp_eq_hdl;
9176         struct lpfc_queue *fpeq;
9177         struct lpfc_eqe *eqe;
9178         unsigned long iflag;
9179         int ecount = 0;
9180         uint32_t fcp_eqidx;
9181
9182         /* Get the driver's phba structure from the dev_id */
9183         fcp_eq_hdl = (struct lpfc_fcp_eq_hdl *)dev_id;
9184         phba = fcp_eq_hdl->phba;
9185         fcp_eqidx = fcp_eq_hdl->idx;
9186
9187         if (unlikely(!phba))
9188                 return IRQ_NONE;
9189
9190         /* Get to the EQ struct associated with this vector */
9191         fpeq = phba->sli4_hba.fp_eq[fcp_eqidx];
9192
9193         /* Check device state for handling interrupt */
9194         if (unlikely(lpfc_intr_state_check(phba))) {
9195                 /* Check again for link_state with lock held */
9196                 spin_lock_irqsave(&phba->hbalock, iflag);
9197                 if (phba->link_state < LPFC_LINK_DOWN)
9198                         /* Flush, clear interrupt, and rearm the EQ */
9199                         lpfc_sli4_eq_flush(phba, fpeq);
9200                 spin_unlock_irqrestore(&phba->hbalock, iflag);
9201                 return IRQ_NONE;
9202         }
9203
9204         /*
9205          * Process all the event on FCP fast-path EQ
9206          */
9207         while ((eqe = lpfc_sli4_eq_get(fpeq))) {
9208                 lpfc_sli4_fp_handle_eqe(phba, eqe, fcp_eqidx);
9209                 if (!(++ecount % LPFC_GET_QE_REL_INT))
9210                         lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_NOARM);
9211         }
9212
9213         /* Always clear and re-arm the fast-path EQ */
9214         lpfc_sli4_eq_release(fpeq, LPFC_QUEUE_REARM);
9215
9216         if (unlikely(ecount == 0)) {
9217                 if (phba->intr_type == MSIX)
9218                         /* MSI-X treated interrupt served as no EQ share INT */
9219                         lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
9220                                         "0358 MSI-X interrupt with no EQE\n");
9221                 else
9222                         /* Non MSI-X treated on interrupt as EQ share INT */
9223                         return IRQ_NONE;
9224         }
9225
9226         return IRQ_HANDLED;
9227 } /* lpfc_sli4_fp_intr_handler */
9228
9229 /**
9230  * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
9231  * @irq: Interrupt number.
9232  * @dev_id: The device context pointer.
9233  *
9234  * This function is the device-level interrupt handler to device with SLI-4
9235  * interface spec, called from the PCI layer when either MSI or Pin-IRQ
9236  * interrupt mode is enabled and there is an event in the HBA which requires
9237  * driver attention. This function invokes the slow-path interrupt attention
9238  * handling function and fast-path interrupt attention handling function in
9239  * turn to process the relevant HBA attention events. This function is called
9240  * without any lock held. It gets the hbalock to access and update SLI data
9241  * structures.
9242  *
9243  * This function returns IRQ_HANDLED when interrupt is handled, else it
9244  * returns IRQ_NONE.
9245  **/
9246 irqreturn_t
9247 lpfc_sli4_intr_handler(int irq, void *dev_id)
9248 {
9249         struct lpfc_hba  *phba;
9250         irqreturn_t sp_irq_rc, fp_irq_rc;
9251         bool fp_handled = false;
9252         uint32_t fcp_eqidx;
9253
9254         /* Get the driver's phba structure from the dev_id */
9255         phba = (struct lpfc_hba *)dev_id;
9256
9257         if (unlikely(!phba))
9258                 return IRQ_NONE;
9259
9260         /*
9261          * Invokes slow-path host attention interrupt handling as appropriate.
9262          */
9263         sp_irq_rc = lpfc_sli4_sp_intr_handler(irq, dev_id);
9264
9265         /*
9266          * Invoke fast-path host attention interrupt handling as appropriate.
9267          */
9268         for (fcp_eqidx = 0; fcp_eqidx < phba->cfg_fcp_eq_count; fcp_eqidx++) {
9269                 fp_irq_rc = lpfc_sli4_fp_intr_handler(irq,
9270                                         &phba->sli4_hba.fcp_eq_hdl[fcp_eqidx]);
9271                 if (fp_irq_rc == IRQ_HANDLED)
9272                         fp_handled |= true;
9273         }
9274
9275         return (fp_handled == true) ? IRQ_HANDLED : sp_irq_rc;
9276 } /* lpfc_sli4_intr_handler */
9277
9278 /**
9279  * lpfc_sli4_queue_free - free a queue structure and associated memory
9280  * @queue: The queue structure to free.
9281  *
9282  * This function frees a queue structure and the DMAable memeory used for
9283  * the host resident queue. This function must be called after destroying the
9284  * queue on the HBA.
9285  **/
9286 void
9287 lpfc_sli4_queue_free(struct lpfc_queue *queue)
9288 {
9289         struct lpfc_dmabuf *dmabuf;
9290
9291         if (!queue)
9292                 return;
9293
9294         while (!list_empty(&queue->page_list)) {
9295                 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
9296                                  list);
9297                 dma_free_coherent(&queue->phba->pcidev->dev, PAGE_SIZE,
9298                                   dmabuf->virt, dmabuf->phys);
9299                 kfree(dmabuf);
9300         }
9301         kfree(queue);
9302         return;
9303 }
9304
9305 /**
9306  * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
9307  * @phba: The HBA that this queue is being created on.
9308  * @entry_size: The size of each queue entry for this queue.
9309  * @entry count: The number of entries that this queue will handle.
9310  *
9311  * This function allocates a queue structure and the DMAable memory used for
9312  * the host resident queue. This function must be called before creating the
9313  * queue on the HBA.
9314  **/
9315 struct lpfc_queue *
9316 lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t entry_size,
9317                       uint32_t entry_count)
9318 {
9319         struct lpfc_queue *queue;
9320         struct lpfc_dmabuf *dmabuf;
9321         int x, total_qe_count;
9322         void *dma_pointer;
9323
9324
9325         queue = kzalloc(sizeof(struct lpfc_queue) +
9326                         (sizeof(union sli4_qe) * entry_count), GFP_KERNEL);
9327         if (!queue)
9328                 return NULL;
9329         queue->page_count = (PAGE_ALIGN(entry_size * entry_count))/PAGE_SIZE;
9330         INIT_LIST_HEAD(&queue->list);
9331         INIT_LIST_HEAD(&queue->page_list);
9332         INIT_LIST_HEAD(&queue->child_list);
9333         for (x = 0, total_qe_count = 0; x < queue->page_count; x++) {
9334                 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
9335                 if (!dmabuf)
9336                         goto out_fail;
9337                 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
9338                                                   PAGE_SIZE, &dmabuf->phys,
9339                                                   GFP_KERNEL);
9340                 if (!dmabuf->virt) {
9341                         kfree(dmabuf);
9342                         goto out_fail;
9343                 }
9344                 memset(dmabuf->virt, 0, PAGE_SIZE);
9345                 dmabuf->buffer_tag = x;
9346                 list_add_tail(&dmabuf->list, &queue->page_list);
9347                 /* initialize queue's entry array */
9348                 dma_pointer = dmabuf->virt;
9349                 for (; total_qe_count < entry_count &&
9350                      dma_pointer < (PAGE_SIZE + dmabuf->virt);
9351                      total_qe_count++, dma_pointer += entry_size) {
9352                         queue->qe[total_qe_count].address = dma_pointer;
9353                 }
9354         }
9355         queue->entry_size = entry_size;
9356         queue->entry_count = entry_count;
9357         queue->phba = phba;
9358
9359         return queue;
9360 out_fail:
9361         lpfc_sli4_queue_free(queue);
9362         return NULL;
9363 }
9364
9365 /**
9366  * lpfc_eq_create - Create an Event Queue on the HBA
9367  * @phba: HBA structure that indicates port to create a queue on.
9368  * @eq: The queue structure to use to create the event queue.
9369  * @imax: The maximum interrupt per second limit.
9370  *
9371  * This function creates an event queue, as detailed in @eq, on a port,
9372  * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
9373  *
9374  * The @phba struct is used to send mailbox command to HBA. The @eq struct
9375  * is used to get the entry count and entry size that are necessary to
9376  * determine the number of pages to allocate and use for this queue. This
9377  * function will send the EQ_CREATE mailbox command to the HBA to setup the
9378  * event queue. This function is asynchronous and will wait for the mailbox
9379  * command to finish before continuing.
9380  *
9381  * On success this function will return a zero. If unable to allocate enough
9382  * memory this function will return ENOMEM. If the queue create mailbox command
9383  * fails this function will return ENXIO.
9384  **/
9385 uint32_t
9386 lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint16_t imax)
9387 {
9388         struct lpfc_mbx_eq_create *eq_create;
9389         LPFC_MBOXQ_t *mbox;
9390         int rc, length, status = 0;
9391         struct lpfc_dmabuf *dmabuf;
9392         uint32_t shdr_status, shdr_add_status;
9393         union lpfc_sli4_cfg_shdr *shdr;
9394         uint16_t dmult;
9395
9396         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9397         if (!mbox)
9398                 return -ENOMEM;
9399         length = (sizeof(struct lpfc_mbx_eq_create) -
9400                   sizeof(struct lpfc_sli4_cfg_mhdr));
9401         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
9402                          LPFC_MBOX_OPCODE_EQ_CREATE,
9403                          length, LPFC_SLI4_MBX_EMBED);
9404         eq_create = &mbox->u.mqe.un.eq_create;
9405         bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
9406                eq->page_count);
9407         bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
9408                LPFC_EQE_SIZE);
9409         bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
9410         /* Calculate delay multiper from maximum interrupt per second */
9411         dmult = LPFC_DMULT_CONST/imax - 1;
9412         bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
9413                dmult);
9414         switch (eq->entry_count) {
9415         default:
9416                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9417                                 "0360 Unsupported EQ count. (%d)\n",
9418                                 eq->entry_count);
9419                 if (eq->entry_count < 256)
9420                         return -EINVAL;
9421                 /* otherwise default to smallest count (drop through) */
9422         case 256:
9423                 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9424                        LPFC_EQ_CNT_256);
9425                 break;
9426         case 512:
9427                 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9428                        LPFC_EQ_CNT_512);
9429                 break;
9430         case 1024:
9431                 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9432                        LPFC_EQ_CNT_1024);
9433                 break;
9434         case 2048:
9435                 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9436                        LPFC_EQ_CNT_2048);
9437                 break;
9438         case 4096:
9439                 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
9440                        LPFC_EQ_CNT_4096);
9441                 break;
9442         }
9443         list_for_each_entry(dmabuf, &eq->page_list, list) {
9444                 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9445                                         putPaddrLow(dmabuf->phys);
9446                 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9447                                         putPaddrHigh(dmabuf->phys);
9448         }
9449         mbox->vport = phba->pport;
9450         mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
9451         mbox->context1 = NULL;
9452         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9453         shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
9454         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9455         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9456         if (shdr_status || shdr_add_status || rc) {
9457                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9458                                 "2500 EQ_CREATE mailbox failed with "
9459                                 "status x%x add_status x%x, mbx status x%x\n",
9460                                 shdr_status, shdr_add_status, rc);
9461                 status = -ENXIO;
9462         }
9463         eq->type = LPFC_EQ;
9464         eq->subtype = LPFC_NONE;
9465         eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
9466         if (eq->queue_id == 0xFFFF)
9467                 status = -ENXIO;
9468         eq->host_index = 0;
9469         eq->hba_index = 0;
9470
9471         mempool_free(mbox, phba->mbox_mem_pool);
9472         return status;
9473 }
9474
9475 /**
9476  * lpfc_cq_create - Create a Completion Queue on the HBA
9477  * @phba: HBA structure that indicates port to create a queue on.
9478  * @cq: The queue structure to use to create the completion queue.
9479  * @eq: The event queue to bind this completion queue to.
9480  *
9481  * This function creates a completion queue, as detailed in @wq, on a port,
9482  * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
9483  *
9484  * The @phba struct is used to send mailbox command to HBA. The @cq struct
9485  * is used to get the entry count and entry size that are necessary to
9486  * determine the number of pages to allocate and use for this queue. The @eq
9487  * is used to indicate which event queue to bind this completion queue to. This
9488  * function will send the CQ_CREATE mailbox command to the HBA to setup the
9489  * completion queue. This function is asynchronous and will wait for the mailbox
9490  * command to finish before continuing.
9491  *
9492  * On success this function will return a zero. If unable to allocate enough
9493  * memory this function will return ENOMEM. If the queue create mailbox command
9494  * fails this function will return ENXIO.
9495  **/
9496 uint32_t
9497 lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
9498                struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
9499 {
9500         struct lpfc_mbx_cq_create *cq_create;
9501         struct lpfc_dmabuf *dmabuf;
9502         LPFC_MBOXQ_t *mbox;
9503         int rc, length, status = 0;
9504         uint32_t shdr_status, shdr_add_status;
9505         union lpfc_sli4_cfg_shdr *shdr;
9506
9507         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9508         if (!mbox)
9509                 return -ENOMEM;
9510         length = (sizeof(struct lpfc_mbx_cq_create) -
9511                   sizeof(struct lpfc_sli4_cfg_mhdr));
9512         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
9513                          LPFC_MBOX_OPCODE_CQ_CREATE,
9514                          length, LPFC_SLI4_MBX_EMBED);
9515         cq_create = &mbox->u.mqe.un.cq_create;
9516         bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
9517                     cq->page_count);
9518         bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
9519         bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
9520         bf_set(lpfc_cq_eq_id, &cq_create->u.request.context, eq->queue_id);
9521         switch (cq->entry_count) {
9522         default:
9523                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9524                                 "0361 Unsupported CQ count. (%d)\n",
9525                                 cq->entry_count);
9526                 if (cq->entry_count < 256)
9527                         return -EINVAL;
9528                 /* otherwise default to smallest count (drop through) */
9529         case 256:
9530                 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
9531                        LPFC_CQ_CNT_256);
9532                 break;
9533         case 512:
9534                 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
9535                        LPFC_CQ_CNT_512);
9536                 break;
9537         case 1024:
9538                 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
9539                        LPFC_CQ_CNT_1024);
9540                 break;
9541         }
9542         list_for_each_entry(dmabuf, &cq->page_list, list) {
9543                 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9544                                         putPaddrLow(dmabuf->phys);
9545                 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9546                                         putPaddrHigh(dmabuf->phys);
9547         }
9548         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9549
9550         /* The IOCTL status is embedded in the mailbox subheader. */
9551         shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
9552         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9553         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9554         if (shdr_status || shdr_add_status || rc) {
9555                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9556                                 "2501 CQ_CREATE mailbox failed with "
9557                                 "status x%x add_status x%x, mbx status x%x\n",
9558                                 shdr_status, shdr_add_status, rc);
9559                 status = -ENXIO;
9560                 goto out;
9561         }
9562         cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
9563         if (cq->queue_id == 0xFFFF) {
9564                 status = -ENXIO;
9565                 goto out;
9566         }
9567         /* link the cq onto the parent eq child list */
9568         list_add_tail(&cq->list, &eq->child_list);
9569         /* Set up completion queue's type and subtype */
9570         cq->type = type;
9571         cq->subtype = subtype;
9572         cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
9573         cq->host_index = 0;
9574         cq->hba_index = 0;
9575
9576 out:
9577         mempool_free(mbox, phba->mbox_mem_pool);
9578         return status;
9579 }
9580
9581 /**
9582  * lpfc_mq_create - Create a mailbox Queue on the HBA
9583  * @phba: HBA structure that indicates port to create a queue on.
9584  * @mq: The queue structure to use to create the mailbox queue.
9585  *
9586  * This function creates a mailbox queue, as detailed in @mq, on a port,
9587  * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
9588  *
9589  * The @phba struct is used to send mailbox command to HBA. The @cq struct
9590  * is used to get the entry count and entry size that are necessary to
9591  * determine the number of pages to allocate and use for this queue. This
9592  * function will send the MQ_CREATE mailbox command to the HBA to setup the
9593  * mailbox queue. This function is asynchronous and will wait for the mailbox
9594  * command to finish before continuing.
9595  *
9596  * On success this function will return a zero. If unable to allocate enough
9597  * memory this function will return ENOMEM. If the queue create mailbox command
9598  * fails this function will return ENXIO.
9599  **/
9600 uint32_t
9601 lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
9602                struct lpfc_queue *cq, uint32_t subtype)
9603 {
9604         struct lpfc_mbx_mq_create *mq_create;
9605         struct lpfc_dmabuf *dmabuf;
9606         LPFC_MBOXQ_t *mbox;
9607         int rc, length, status = 0;
9608         uint32_t shdr_status, shdr_add_status;
9609         union lpfc_sli4_cfg_shdr *shdr;
9610
9611         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9612         if (!mbox)
9613                 return -ENOMEM;
9614         length = (sizeof(struct lpfc_mbx_mq_create) -
9615                   sizeof(struct lpfc_sli4_cfg_mhdr));
9616         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
9617                          LPFC_MBOX_OPCODE_MQ_CREATE,
9618                          length, LPFC_SLI4_MBX_EMBED);
9619         mq_create = &mbox->u.mqe.un.mq_create;
9620         bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
9621                     mq->page_count);
9622         bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
9623                     cq->queue_id);
9624         bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
9625         switch (mq->entry_count) {
9626         default:
9627                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9628                                 "0362 Unsupported MQ count. (%d)\n",
9629                                 mq->entry_count);
9630                 if (mq->entry_count < 16)
9631                         return -EINVAL;
9632                 /* otherwise default to smallest count (drop through) */
9633         case 16:
9634                 bf_set(lpfc_mq_context_count, &mq_create->u.request.context,
9635                        LPFC_MQ_CNT_16);
9636                 break;
9637         case 32:
9638                 bf_set(lpfc_mq_context_count, &mq_create->u.request.context,
9639                        LPFC_MQ_CNT_32);
9640                 break;
9641         case 64:
9642                 bf_set(lpfc_mq_context_count, &mq_create->u.request.context,
9643                        LPFC_MQ_CNT_64);
9644                 break;
9645         case 128:
9646                 bf_set(lpfc_mq_context_count, &mq_create->u.request.context,
9647                        LPFC_MQ_CNT_128);
9648                 break;
9649         }
9650         list_for_each_entry(dmabuf, &mq->page_list, list) {
9651                 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9652                                         putPaddrLow(dmabuf->phys);
9653                 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9654                                         putPaddrHigh(dmabuf->phys);
9655         }
9656         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9657         /* The IOCTL status is embedded in the mailbox subheader. */
9658         shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
9659         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9660         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9661         if (shdr_status || shdr_add_status || rc) {
9662                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9663                                 "2502 MQ_CREATE mailbox failed with "
9664                                 "status x%x add_status x%x, mbx status x%x\n",
9665                                 shdr_status, shdr_add_status, rc);
9666                 status = -ENXIO;
9667                 goto out;
9668         }
9669         mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id, &mq_create->u.response);
9670         if (mq->queue_id == 0xFFFF) {
9671                 status = -ENXIO;
9672                 goto out;
9673         }
9674         mq->type = LPFC_MQ;
9675         mq->subtype = subtype;
9676         mq->host_index = 0;
9677         mq->hba_index = 0;
9678
9679         /* link the mq onto the parent cq child list */
9680         list_add_tail(&mq->list, &cq->child_list);
9681 out:
9682         mempool_free(mbox, phba->mbox_mem_pool);
9683         return status;
9684 }
9685
9686 /**
9687  * lpfc_wq_create - Create a Work Queue on the HBA
9688  * @phba: HBA structure that indicates port to create a queue on.
9689  * @wq: The queue structure to use to create the work queue.
9690  * @cq: The completion queue to bind this work queue to.
9691  * @subtype: The subtype of the work queue indicating its functionality.
9692  *
9693  * This function creates a work queue, as detailed in @wq, on a port, described
9694  * by @phba by sending a WQ_CREATE mailbox command to the HBA.
9695  *
9696  * The @phba struct is used to send mailbox command to HBA. The @wq 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 @cq
9699  * is used to indicate which completion queue to bind this work queue to. This
9700  * function will send the WQ_CREATE mailbox command to the HBA to setup the
9701  * work queue. This function is asynchronous and will wait for the mailbox
9702  * command to finish before continuing.
9703  *
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.
9707  **/
9708 uint32_t
9709 lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
9710                struct lpfc_queue *cq, uint32_t subtype)
9711 {
9712         struct lpfc_mbx_wq_create *wq_create;
9713         struct lpfc_dmabuf *dmabuf;
9714         LPFC_MBOXQ_t *mbox;
9715         int rc, length, status = 0;
9716         uint32_t shdr_status, shdr_add_status;
9717         union lpfc_sli4_cfg_shdr *shdr;
9718
9719         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9720         if (!mbox)
9721                 return -ENOMEM;
9722         length = (sizeof(struct lpfc_mbx_wq_create) -
9723                   sizeof(struct lpfc_sli4_cfg_mhdr));
9724         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
9725                          LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
9726                          length, LPFC_SLI4_MBX_EMBED);
9727         wq_create = &mbox->u.mqe.un.wq_create;
9728         bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
9729                     wq->page_count);
9730         bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
9731                     cq->queue_id);
9732         list_for_each_entry(dmabuf, &wq->page_list, list) {
9733                 wq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9734                                         putPaddrLow(dmabuf->phys);
9735                 wq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9736                                         putPaddrHigh(dmabuf->phys);
9737         }
9738         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9739         /* The IOCTL status is embedded in the mailbox subheader. */
9740         shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
9741         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9742         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9743         if (shdr_status || shdr_add_status || rc) {
9744                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9745                                 "2503 WQ_CREATE mailbox failed with "
9746                                 "status x%x add_status x%x, mbx status x%x\n",
9747                                 shdr_status, shdr_add_status, rc);
9748                 status = -ENXIO;
9749                 goto out;
9750         }
9751         wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id, &wq_create->u.response);
9752         if (wq->queue_id == 0xFFFF) {
9753                 status = -ENXIO;
9754                 goto out;
9755         }
9756         wq->type = LPFC_WQ;
9757         wq->subtype = subtype;
9758         wq->host_index = 0;
9759         wq->hba_index = 0;
9760
9761         /* link the wq onto the parent cq child list */
9762         list_add_tail(&wq->list, &cq->child_list);
9763 out:
9764         mempool_free(mbox, phba->mbox_mem_pool);
9765         return status;
9766 }
9767
9768 /**
9769  * lpfc_rq_create - Create a Receive Queue on the HBA
9770  * @phba: HBA structure that indicates port to create a queue on.
9771  * @hrq: The queue structure to use to create the header receive queue.
9772  * @drq: The queue structure to use to create the data receive queue.
9773  * @cq: The completion queue to bind this work queue to.
9774  *
9775  * This function creates a receive buffer queue pair , as detailed in @hrq and
9776  * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
9777  * to the HBA.
9778  *
9779  * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
9780  * struct is used to get the entry count that is necessary to determine the
9781  * number of pages to use for this queue. The @cq is used to indicate which
9782  * completion queue to bind received buffers that are posted to these queues to.
9783  * This function will send the RQ_CREATE mailbox command to the HBA to setup the
9784  * receive queue pair. This function is asynchronous and will wait for the
9785  * mailbox command to finish before continuing.
9786  *
9787  * On success this function will return a zero. If unable to allocate enough
9788  * memory this function will return ENOMEM. If the queue create mailbox command
9789  * fails this function will return ENXIO.
9790  **/
9791 uint32_t
9792 lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
9793                struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
9794 {
9795         struct lpfc_mbx_rq_create *rq_create;
9796         struct lpfc_dmabuf *dmabuf;
9797         LPFC_MBOXQ_t *mbox;
9798         int rc, length, status = 0;
9799         uint32_t shdr_status, shdr_add_status;
9800         union lpfc_sli4_cfg_shdr *shdr;
9801
9802         if (hrq->entry_count != drq->entry_count)
9803                 return -EINVAL;
9804         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
9805         if (!mbox)
9806                 return -ENOMEM;
9807         length = (sizeof(struct lpfc_mbx_rq_create) -
9808                   sizeof(struct lpfc_sli4_cfg_mhdr));
9809         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
9810                          LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
9811                          length, LPFC_SLI4_MBX_EMBED);
9812         rq_create = &mbox->u.mqe.un.rq_create;
9813         switch (hrq->entry_count) {
9814         default:
9815                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9816                                 "2535 Unsupported RQ count. (%d)\n",
9817                                 hrq->entry_count);
9818                 if (hrq->entry_count < 512)
9819                         return -EINVAL;
9820                 /* otherwise default to smallest count (drop through) */
9821         case 512:
9822                 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9823                        LPFC_RQ_RING_SIZE_512);
9824                 break;
9825         case 1024:
9826                 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9827                        LPFC_RQ_RING_SIZE_1024);
9828                 break;
9829         case 2048:
9830                 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9831                        LPFC_RQ_RING_SIZE_2048);
9832                 break;
9833         case 4096:
9834                 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9835                        LPFC_RQ_RING_SIZE_4096);
9836                 break;
9837         }
9838         bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
9839                cq->queue_id);
9840         bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
9841                hrq->page_count);
9842         bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
9843                LPFC_HDR_BUF_SIZE);
9844         list_for_each_entry(dmabuf, &hrq->page_list, list) {
9845                 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9846                                         putPaddrLow(dmabuf->phys);
9847                 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9848                                         putPaddrHigh(dmabuf->phys);
9849         }
9850         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9851         /* The IOCTL status is embedded in the mailbox subheader. */
9852         shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
9853         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9854         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9855         if (shdr_status || shdr_add_status || rc) {
9856                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9857                                 "2504 RQ_CREATE mailbox failed with "
9858                                 "status x%x add_status x%x, mbx status x%x\n",
9859                                 shdr_status, shdr_add_status, rc);
9860                 status = -ENXIO;
9861                 goto out;
9862         }
9863         hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
9864         if (hrq->queue_id == 0xFFFF) {
9865                 status = -ENXIO;
9866                 goto out;
9867         }
9868         hrq->type = LPFC_HRQ;
9869         hrq->subtype = subtype;
9870         hrq->host_index = 0;
9871         hrq->hba_index = 0;
9872
9873         /* now create the data queue */
9874         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
9875                          LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
9876                          length, LPFC_SLI4_MBX_EMBED);
9877         switch (drq->entry_count) {
9878         default:
9879                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9880                                 "2536 Unsupported RQ count. (%d)\n",
9881                                 drq->entry_count);
9882                 if (drq->entry_count < 512)
9883                         return -EINVAL;
9884                 /* otherwise default to smallest count (drop through) */
9885         case 512:
9886                 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9887                        LPFC_RQ_RING_SIZE_512);
9888                 break;
9889         case 1024:
9890                 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9891                        LPFC_RQ_RING_SIZE_1024);
9892                 break;
9893         case 2048:
9894                 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9895                        LPFC_RQ_RING_SIZE_2048);
9896                 break;
9897         case 4096:
9898                 bf_set(lpfc_rq_context_rq_size, &rq_create->u.request.context,
9899                        LPFC_RQ_RING_SIZE_4096);
9900                 break;
9901         }
9902         bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
9903                cq->queue_id);
9904         bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
9905                drq->page_count);
9906         bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
9907                LPFC_DATA_BUF_SIZE);
9908         list_for_each_entry(dmabuf, &drq->page_list, list) {
9909                 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
9910                                         putPaddrLow(dmabuf->phys);
9911                 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
9912                                         putPaddrHigh(dmabuf->phys);
9913         }
9914         rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
9915         /* The IOCTL status is embedded in the mailbox subheader. */
9916         shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
9917         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9918         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9919         if (shdr_status || shdr_add_status || rc) {
9920                 status = -ENXIO;
9921                 goto out;
9922         }
9923         drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
9924         if (drq->queue_id == 0xFFFF) {
9925                 status = -ENXIO;
9926                 goto out;
9927         }
9928         drq->type = LPFC_DRQ;
9929         drq->subtype = subtype;
9930         drq->host_index = 0;
9931         drq->hba_index = 0;
9932
9933         /* link the header and data RQs onto the parent cq child list */
9934         list_add_tail(&hrq->list, &cq->child_list);
9935         list_add_tail(&drq->list, &cq->child_list);
9936
9937 out:
9938         mempool_free(mbox, phba->mbox_mem_pool);
9939         return status;
9940 }
9941
9942 /**
9943  * lpfc_eq_destroy - Destroy an event Queue on the HBA
9944  * @eq: The queue structure associated with the queue to destroy.
9945  *
9946  * This function destroys a queue, as detailed in @eq by sending an mailbox
9947  * command, specific to the type of queue, to the HBA.
9948  *
9949  * The @eq struct is used to get the queue ID of the queue to destroy.
9950  *
9951  * On success this function will return a zero. If the queue destroy mailbox
9952  * command fails this function will return ENXIO.
9953  **/
9954 uint32_t
9955 lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
9956 {
9957         LPFC_MBOXQ_t *mbox;
9958         int rc, length, status = 0;
9959         uint32_t shdr_status, shdr_add_status;
9960         union lpfc_sli4_cfg_shdr *shdr;
9961
9962         if (!eq)
9963                 return -ENODEV;
9964         mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
9965         if (!mbox)
9966                 return -ENOMEM;
9967         length = (sizeof(struct lpfc_mbx_eq_destroy) -
9968                   sizeof(struct lpfc_sli4_cfg_mhdr));
9969         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
9970                          LPFC_MBOX_OPCODE_EQ_DESTROY,
9971                          length, LPFC_SLI4_MBX_EMBED);
9972         bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
9973                eq->queue_id);
9974         mbox->vport = eq->phba->pport;
9975         mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
9976
9977         rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
9978         /* The IOCTL status is embedded in the mailbox subheader. */
9979         shdr = (union lpfc_sli4_cfg_shdr *)
9980                 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
9981         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
9982         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
9983         if (shdr_status || shdr_add_status || rc) {
9984                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
9985                                 "2505 EQ_DESTROY mailbox failed with "
9986                                 "status x%x add_status x%x, mbx status x%x\n",
9987                                 shdr_status, shdr_add_status, rc);
9988                 status = -ENXIO;
9989         }
9990
9991         /* Remove eq from any list */
9992         list_del_init(&eq->list);
9993         mempool_free(mbox, eq->phba->mbox_mem_pool);
9994         return status;
9995 }
9996
9997 /**
9998  * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
9999  * @cq: The queue structure associated with the queue to destroy.
10000  *
10001  * This function destroys a queue, as detailed in @cq by sending an mailbox
10002  * command, specific to the type of queue, to the HBA.
10003  *
10004  * The @cq struct is used to get the queue ID of the queue to destroy.
10005  *
10006  * On success this function will return a zero. If the queue destroy mailbox
10007  * command fails this function will return ENXIO.
10008  **/
10009 uint32_t
10010 lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
10011 {
10012         LPFC_MBOXQ_t *mbox;
10013         int rc, length, status = 0;
10014         uint32_t shdr_status, shdr_add_status;
10015         union lpfc_sli4_cfg_shdr *shdr;
10016
10017         if (!cq)
10018                 return -ENODEV;
10019         mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
10020         if (!mbox)
10021                 return -ENOMEM;
10022         length = (sizeof(struct lpfc_mbx_cq_destroy) -
10023                   sizeof(struct lpfc_sli4_cfg_mhdr));
10024         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
10025                          LPFC_MBOX_OPCODE_CQ_DESTROY,
10026                          length, LPFC_SLI4_MBX_EMBED);
10027         bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
10028                cq->queue_id);
10029         mbox->vport = cq->phba->pport;
10030         mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10031         rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
10032         /* The IOCTL status is embedded in the mailbox subheader. */
10033         shdr = (union lpfc_sli4_cfg_shdr *)
10034                 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
10035         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10036         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10037         if (shdr_status || shdr_add_status || rc) {
10038                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10039                                 "2506 CQ_DESTROY mailbox failed with "
10040                                 "status x%x add_status x%x, mbx status x%x\n",
10041                                 shdr_status, shdr_add_status, rc);
10042                 status = -ENXIO;
10043         }
10044         /* Remove cq from any list */
10045         list_del_init(&cq->list);
10046         mempool_free(mbox, cq->phba->mbox_mem_pool);
10047         return status;
10048 }
10049
10050 /**
10051  * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
10052  * @qm: The queue structure associated with the queue to destroy.
10053  *
10054  * This function destroys a queue, as detailed in @mq by sending an mailbox
10055  * command, specific to the type of queue, to the HBA.
10056  *
10057  * The @mq struct is used to get the queue ID of the queue to destroy.
10058  *
10059  * On success this function will return a zero. If the queue destroy mailbox
10060  * command fails this function will return ENXIO.
10061  **/
10062 uint32_t
10063 lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
10064 {
10065         LPFC_MBOXQ_t *mbox;
10066         int rc, length, status = 0;
10067         uint32_t shdr_status, shdr_add_status;
10068         union lpfc_sli4_cfg_shdr *shdr;
10069
10070         if (!mq)
10071                 return -ENODEV;
10072         mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
10073         if (!mbox)
10074                 return -ENOMEM;
10075         length = (sizeof(struct lpfc_mbx_mq_destroy) -
10076                   sizeof(struct lpfc_sli4_cfg_mhdr));
10077         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
10078                          LPFC_MBOX_OPCODE_MQ_DESTROY,
10079                          length, LPFC_SLI4_MBX_EMBED);
10080         bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
10081                mq->queue_id);
10082         mbox->vport = mq->phba->pport;
10083         mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10084         rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
10085         /* The IOCTL status is embedded in the mailbox subheader. */
10086         shdr = (union lpfc_sli4_cfg_shdr *)
10087                 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
10088         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10089         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10090         if (shdr_status || shdr_add_status || rc) {
10091                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10092                                 "2507 MQ_DESTROY mailbox failed with "
10093                                 "status x%x add_status x%x, mbx status x%x\n",
10094                                 shdr_status, shdr_add_status, rc);
10095                 status = -ENXIO;
10096         }
10097         /* Remove mq from any list */
10098         list_del_init(&mq->list);
10099         mempool_free(mbox, mq->phba->mbox_mem_pool);
10100         return status;
10101 }
10102
10103 /**
10104  * lpfc_wq_destroy - Destroy a Work Queue on the HBA
10105  * @wq: The queue structure associated with the queue to destroy.
10106  *
10107  * This function destroys a queue, as detailed in @wq by sending an mailbox
10108  * command, specific to the type of queue, to the HBA.
10109  *
10110  * The @wq struct is used to get the queue ID of the queue to destroy.
10111  *
10112  * On success this function will return a zero. If the queue destroy mailbox
10113  * command fails this function will return ENXIO.
10114  **/
10115 uint32_t
10116 lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
10117 {
10118         LPFC_MBOXQ_t *mbox;
10119         int rc, length, status = 0;
10120         uint32_t shdr_status, shdr_add_status;
10121         union lpfc_sli4_cfg_shdr *shdr;
10122
10123         if (!wq)
10124                 return -ENODEV;
10125         mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
10126         if (!mbox)
10127                 return -ENOMEM;
10128         length = (sizeof(struct lpfc_mbx_wq_destroy) -
10129                   sizeof(struct lpfc_sli4_cfg_mhdr));
10130         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10131                          LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
10132                          length, LPFC_SLI4_MBX_EMBED);
10133         bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
10134                wq->queue_id);
10135         mbox->vport = wq->phba->pport;
10136         mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10137         rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
10138         shdr = (union lpfc_sli4_cfg_shdr *)
10139                 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
10140         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10141         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10142         if (shdr_status || shdr_add_status || rc) {
10143                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10144                                 "2508 WQ_DESTROY mailbox failed with "
10145                                 "status x%x add_status x%x, mbx status x%x\n",
10146                                 shdr_status, shdr_add_status, rc);
10147                 status = -ENXIO;
10148         }
10149         /* Remove wq from any list */
10150         list_del_init(&wq->list);
10151         mempool_free(mbox, wq->phba->mbox_mem_pool);
10152         return status;
10153 }
10154
10155 /**
10156  * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
10157  * @rq: The queue structure associated with the queue to destroy.
10158  *
10159  * This function destroys a queue, as detailed in @rq by sending an mailbox
10160  * command, specific to the type of queue, to the HBA.
10161  *
10162  * The @rq struct is used to get the queue ID of the queue to destroy.
10163  *
10164  * On success this function will return a zero. If the queue destroy mailbox
10165  * command fails this function will return ENXIO.
10166  **/
10167 uint32_t
10168 lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
10169                 struct lpfc_queue *drq)
10170 {
10171         LPFC_MBOXQ_t *mbox;
10172         int rc, length, status = 0;
10173         uint32_t shdr_status, shdr_add_status;
10174         union lpfc_sli4_cfg_shdr *shdr;
10175
10176         if (!hrq || !drq)
10177                 return -ENODEV;
10178         mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
10179         if (!mbox)
10180                 return -ENOMEM;
10181         length = (sizeof(struct lpfc_mbx_rq_destroy) -
10182                   sizeof(struct mbox_header));
10183         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10184                          LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
10185                          length, LPFC_SLI4_MBX_EMBED);
10186         bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
10187                hrq->queue_id);
10188         mbox->vport = hrq->phba->pport;
10189         mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
10190         rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
10191         /* The IOCTL status is embedded in the mailbox subheader. */
10192         shdr = (union lpfc_sli4_cfg_shdr *)
10193                 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
10194         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10195         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10196         if (shdr_status || shdr_add_status || rc) {
10197                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10198                                 "2509 RQ_DESTROY mailbox failed with "
10199                                 "status x%x add_status x%x, mbx status x%x\n",
10200                                 shdr_status, shdr_add_status, rc);
10201                 if (rc != MBX_TIMEOUT)
10202                         mempool_free(mbox, hrq->phba->mbox_mem_pool);
10203                 return -ENXIO;
10204         }
10205         bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
10206                drq->queue_id);
10207         rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
10208         shdr = (union lpfc_sli4_cfg_shdr *)
10209                 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
10210         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10211         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10212         if (shdr_status || shdr_add_status || rc) {
10213                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10214                                 "2510 RQ_DESTROY mailbox failed with "
10215                                 "status x%x add_status x%x, mbx status x%x\n",
10216                                 shdr_status, shdr_add_status, rc);
10217                 status = -ENXIO;
10218         }
10219         list_del_init(&hrq->list);
10220         list_del_init(&drq->list);
10221         mempool_free(mbox, hrq->phba->mbox_mem_pool);
10222         return status;
10223 }
10224
10225 /**
10226  * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
10227  * @phba: The virtual port for which this call being executed.
10228  * @pdma_phys_addr0: Physical address of the 1st SGL page.
10229  * @pdma_phys_addr1: Physical address of the 2nd SGL page.
10230  * @xritag: the xritag that ties this io to the SGL pages.
10231  *
10232  * This routine will post the sgl pages for the IO that has the xritag
10233  * that is in the iocbq structure. The xritag is assigned during iocbq
10234  * creation and persists for as long as the driver is loaded.
10235  * if the caller has fewer than 256 scatter gather segments to map then
10236  * pdma_phys_addr1 should be 0.
10237  * If the caller needs to map more than 256 scatter gather segment then
10238  * pdma_phys_addr1 should be a valid physical address.
10239  * physical address for SGLs must be 64 byte aligned.
10240  * If you are going to map 2 SGL's then the first one must have 256 entries
10241  * the second sgl can have between 1 and 256 entries.
10242  *
10243  * Return codes:
10244  *      0 - Success
10245  *      -ENXIO, -ENOMEM - Failure
10246  **/
10247 int
10248 lpfc_sli4_post_sgl(struct lpfc_hba *phba,
10249                 dma_addr_t pdma_phys_addr0,
10250                 dma_addr_t pdma_phys_addr1,
10251                 uint16_t xritag)
10252 {
10253         struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
10254         LPFC_MBOXQ_t *mbox;
10255         int rc;
10256         uint32_t shdr_status, shdr_add_status;
10257         union lpfc_sli4_cfg_shdr *shdr;
10258
10259         if (xritag == NO_XRI) {
10260                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
10261                                 "0364 Invalid param:\n");
10262                 return -EINVAL;
10263         }
10264
10265         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
10266         if (!mbox)
10267                 return -ENOMEM;
10268
10269         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10270                         LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
10271                         sizeof(struct lpfc_mbx_post_sgl_pages) -
10272                         sizeof(struct mbox_header), LPFC_SLI4_MBX_EMBED);
10273
10274         post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
10275                                 &mbox->u.mqe.un.post_sgl_pages;
10276         bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
10277         bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
10278
10279         post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
10280                                 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
10281         post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
10282                                 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
10283
10284         post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
10285                                 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
10286         post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
10287                                 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
10288         if (!phba->sli4_hba.intr_enable)
10289                 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
10290         else
10291                 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
10292         /* The IOCTL status is embedded in the mailbox subheader. */
10293         shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
10294         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10295         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10296         if (rc != MBX_TIMEOUT)
10297                 mempool_free(mbox, phba->mbox_mem_pool);
10298         if (shdr_status || shdr_add_status || rc) {
10299                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10300                                 "2511 POST_SGL mailbox failed with "
10301                                 "status x%x add_status x%x, mbx status x%x\n",
10302                                 shdr_status, shdr_add_status, rc);
10303                 rc = -ENXIO;
10304         }
10305         return 0;
10306 }
10307 /**
10308  * lpfc_sli4_remove_all_sgl_pages - Post scatter gather list for an XRI to HBA
10309  * @phba: The virtual port for which this call being executed.
10310  *
10311  * This routine will remove all of the sgl pages registered with the hba.
10312  *
10313  * Return codes:
10314  *      0 - Success
10315  *      -ENXIO, -ENOMEM - Failure
10316  **/
10317 int
10318 lpfc_sli4_remove_all_sgl_pages(struct lpfc_hba *phba)
10319 {
10320         LPFC_MBOXQ_t *mbox;
10321         int rc;
10322         uint32_t shdr_status, shdr_add_status;
10323         union lpfc_sli4_cfg_shdr *shdr;
10324
10325         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
10326         if (!mbox)
10327                 return -ENOMEM;
10328
10329         lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10330                         LPFC_MBOX_OPCODE_FCOE_REMOVE_SGL_PAGES, 0,
10331                         LPFC_SLI4_MBX_EMBED);
10332         if (!phba->sli4_hba.intr_enable)
10333                 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
10334         else
10335                 rc = lpfc_sli_issue_mbox_wait(phba, mbox, LPFC_MBOX_TMO);
10336         /* The IOCTL status is embedded in the mailbox subheader. */
10337         shdr = (union lpfc_sli4_cfg_shdr *)
10338                 &mbox->u.mqe.un.sli4_config.header.cfg_shdr;
10339         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10340         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10341         if (rc != MBX_TIMEOUT)
10342                 mempool_free(mbox, phba->mbox_mem_pool);
10343         if (shdr_status || shdr_add_status || rc) {
10344                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10345                                 "2512 REMOVE_ALL_SGL_PAGES mailbox failed with "
10346                                 "status x%x add_status x%x, mbx status x%x\n",
10347                                 shdr_status, shdr_add_status, rc);
10348                 rc = -ENXIO;
10349         }
10350         return rc;
10351 }
10352
10353 /**
10354  * lpfc_sli4_next_xritag - Get an xritag for the io
10355  * @phba: Pointer to HBA context object.
10356  *
10357  * This function gets an xritag for the iocb. If there is no unused xritag
10358  * it will return 0xffff.
10359  * The function returns the allocated xritag if successful, else returns zero.
10360  * Zero is not a valid xritag.
10361  * The caller is not required to hold any lock.
10362  **/
10363 uint16_t
10364 lpfc_sli4_next_xritag(struct lpfc_hba *phba)
10365 {
10366         uint16_t xritag;
10367
10368         spin_lock_irq(&phba->hbalock);
10369         xritag = phba->sli4_hba.next_xri;
10370         if ((xritag != (uint16_t) -1) && xritag <
10371                 (phba->sli4_hba.max_cfg_param.max_xri
10372                         + phba->sli4_hba.max_cfg_param.xri_base)) {
10373                 phba->sli4_hba.next_xri++;
10374                 phba->sli4_hba.max_cfg_param.xri_used++;
10375                 spin_unlock_irq(&phba->hbalock);
10376                 return xritag;
10377         }
10378         spin_unlock_irq(&phba->hbalock);
10379         lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
10380                         "2004 Failed to allocate XRI.last XRITAG is %d"
10381                         " Max XRI is %d, Used XRI is %d\n",
10382                         phba->sli4_hba.next_xri,
10383                         phba->sli4_hba.max_cfg_param.max_xri,
10384                         phba->sli4_hba.max_cfg_param.xri_used);
10385         return -1;
10386 }
10387
10388 /**
10389  * lpfc_sli4_post_sgl_list - post a block of sgl list to the firmware.
10390  * @phba: pointer to lpfc hba data structure.
10391  *
10392  * This routine is invoked to post a block of driver's sgl pages to the
10393  * HBA using non-embedded mailbox command. No Lock is held. This routine
10394  * is only called when the driver is loading and after all IO has been
10395  * stopped.
10396  **/
10397 int
10398 lpfc_sli4_post_sgl_list(struct lpfc_hba *phba)
10399 {
10400         struct lpfc_sglq *sglq_entry;
10401         struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
10402         struct sgl_page_pairs *sgl_pg_pairs;
10403         void *viraddr;
10404         LPFC_MBOXQ_t *mbox;
10405         uint32_t reqlen, alloclen, pg_pairs;
10406         uint32_t mbox_tmo;
10407         uint16_t xritag_start = 0;
10408         int els_xri_cnt, rc = 0;
10409         uint32_t shdr_status, shdr_add_status;
10410         union lpfc_sli4_cfg_shdr *shdr;
10411
10412         /* The number of sgls to be posted */
10413         els_xri_cnt = lpfc_sli4_get_els_iocb_cnt(phba);
10414
10415         reqlen = els_xri_cnt * sizeof(struct sgl_page_pairs) +
10416                  sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
10417         if (reqlen > PAGE_SIZE) {
10418                 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
10419                                 "2559 Block sgl registration required DMA "
10420                                 "size (%d) great than a page\n", reqlen);
10421                 return -ENOMEM;
10422         }
10423         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
10424         if (!mbox) {
10425                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10426                                 "2560 Failed to allocate mbox cmd memory\n");
10427                 return -ENOMEM;
10428         }
10429
10430         /* Allocate DMA memory and set up the non-embedded mailbox command */
10431         alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10432                          LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
10433                          LPFC_SLI4_MBX_NEMBED);
10434
10435         if (alloclen < reqlen) {
10436                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10437                                 "0285 Allocated DMA memory size (%d) is "
10438                                 "less than the requested DMA memory "
10439                                 "size (%d)\n", alloclen, reqlen);
10440                 lpfc_sli4_mbox_cmd_free(phba, mbox);
10441                 return -ENOMEM;
10442         }
10443         /* Get the first SGE entry from the non-embedded DMA memory */
10444         viraddr = mbox->sge_array->addr[0];
10445
10446         /* Set up the SGL pages in the non-embedded DMA pages */
10447         sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
10448         sgl_pg_pairs = &sgl->sgl_pg_pairs;
10449
10450         for (pg_pairs = 0; pg_pairs < els_xri_cnt; pg_pairs++) {
10451                 sglq_entry = phba->sli4_hba.lpfc_els_sgl_array[pg_pairs];
10452                 /* Set up the sge entry */
10453                 sgl_pg_pairs->sgl_pg0_addr_lo =
10454                                 cpu_to_le32(putPaddrLow(sglq_entry->phys));
10455                 sgl_pg_pairs->sgl_pg0_addr_hi =
10456                                 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
10457                 sgl_pg_pairs->sgl_pg1_addr_lo =
10458                                 cpu_to_le32(putPaddrLow(0));
10459                 sgl_pg_pairs->sgl_pg1_addr_hi =
10460                                 cpu_to_le32(putPaddrHigh(0));
10461                 /* Keep the first xritag on the list */
10462                 if (pg_pairs == 0)
10463                         xritag_start = sglq_entry->sli4_xritag;
10464                 sgl_pg_pairs++;
10465         }
10466         bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
10467         bf_set(lpfc_post_sgl_pages_xricnt, sgl, els_xri_cnt);
10468         /* Perform endian conversion if necessary */
10469         sgl->word0 = cpu_to_le32(sgl->word0);
10470
10471         if (!phba->sli4_hba.intr_enable)
10472                 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
10473         else {
10474                 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
10475                 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
10476         }
10477         shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
10478         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10479         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10480         if (rc != MBX_TIMEOUT)
10481                 lpfc_sli4_mbox_cmd_free(phba, mbox);
10482         if (shdr_status || shdr_add_status || rc) {
10483                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
10484                                 "2513 POST_SGL_BLOCK mailbox command failed "
10485                                 "status x%x add_status x%x mbx status x%x\n",
10486                                 shdr_status, shdr_add_status, rc);
10487                 rc = -ENXIO;
10488         }
10489         return rc;
10490 }
10491
10492 /**
10493  * lpfc_sli4_post_scsi_sgl_block - post a block of scsi sgl list to firmware
10494  * @phba: pointer to lpfc hba data structure.
10495  * @sblist: pointer to scsi buffer list.
10496  * @count: number of scsi buffers on the list.
10497  *
10498  * This routine is invoked to post a block of @count scsi sgl pages from a
10499  * SCSI buffer list @sblist to the HBA using non-embedded mailbox command.
10500  * No Lock is held.
10501  *
10502  **/
10503 int
10504 lpfc_sli4_post_scsi_sgl_block(struct lpfc_hba *phba, struct list_head *sblist,
10505                               int cnt)
10506 {
10507         struct lpfc_scsi_buf *psb;
10508         struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
10509         struct sgl_page_pairs *sgl_pg_pairs;
10510         void *viraddr;
10511         LPFC_MBOXQ_t *mbox;
10512         uint32_t reqlen, alloclen, pg_pairs;
10513         uint32_t mbox_tmo;
10514         uint16_t xritag_start = 0;
10515         int rc = 0;
10516         uint32_t shdr_status, shdr_add_status;
10517         dma_addr_t pdma_phys_bpl1;
10518         union lpfc_sli4_cfg_shdr *shdr;
10519
10520         /* Calculate the requested length of the dma memory */
10521         reqlen = cnt * sizeof(struct sgl_page_pairs) +
10522                  sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
10523         if (reqlen > PAGE_SIZE) {
10524                 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
10525                                 "0217 Block sgl registration required DMA "
10526                                 "size (%d) great than a page\n", reqlen);
10527                 return -ENOMEM;
10528         }
10529         mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
10530         if (!mbox) {
10531                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10532                                 "0283 Failed to allocate mbox cmd memory\n");
10533                 return -ENOMEM;
10534         }
10535
10536         /* Allocate DMA memory and set up the non-embedded mailbox command */
10537         alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
10538                                 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
10539                                 LPFC_SLI4_MBX_NEMBED);
10540
10541         if (alloclen < reqlen) {
10542                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10543                                 "2561 Allocated DMA memory size (%d) is "
10544                                 "less than the requested DMA memory "
10545                                 "size (%d)\n", alloclen, reqlen);
10546                 lpfc_sli4_mbox_cmd_free(phba, mbox);
10547                 return -ENOMEM;
10548         }
10549         /* Get the first SGE entry from the non-embedded DMA memory */
10550         viraddr = mbox->sge_array->addr[0];
10551
10552         /* Set up the SGL pages in the non-embedded DMA pages */
10553         sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
10554         sgl_pg_pairs = &sgl->sgl_pg_pairs;
10555
10556         pg_pairs = 0;
10557         list_for_each_entry(psb, sblist, list) {
10558                 /* Set up the sge entry */
10559                 sgl_pg_pairs->sgl_pg0_addr_lo =
10560                         cpu_to_le32(putPaddrLow(psb->dma_phys_bpl));
10561                 sgl_pg_pairs->sgl_pg0_addr_hi =
10562                         cpu_to_le32(putPaddrHigh(psb->dma_phys_bpl));
10563                 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
10564                         pdma_phys_bpl1 = psb->dma_phys_bpl + SGL_PAGE_SIZE;
10565                 else
10566                         pdma_phys_bpl1 = 0;
10567                 sgl_pg_pairs->sgl_pg1_addr_lo =
10568                         cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
10569                 sgl_pg_pairs->sgl_pg1_addr_hi =
10570                         cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
10571                 /* Keep the first xritag on the list */
10572                 if (pg_pairs == 0)
10573                         xritag_start = psb->cur_iocbq.sli4_xritag;
10574                 sgl_pg_pairs++;
10575                 pg_pairs++;
10576         }
10577         bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
10578         bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
10579         /* Perform endian conversion if necessary */
10580         sgl->word0 = cpu_to_le32(sgl->word0);
10581
10582         if (!phba->sli4_hba.intr_enable)
10583                 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
10584         else {
10585                 mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
10586                 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
10587         }
10588         shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
10589         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
10590         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
10591         if (rc != MBX_TIMEOUT)
10592                 lpfc_sli4_mbox_cmd_free(phba, mbox);
10593         if (shdr_status || shdr_add_status || rc) {
10594                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
10595                                 "2564 POST_SGL_BLOCK mailbox command failed "
10596                                 "status x%x add_status x%x mbx status x%x\n",
10597                                 shdr_status, shdr_add_status, rc);
10598                 rc = -ENXIO;
10599         }
10600         return rc;
10601 }
10602
10603 /**
10604  * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
10605  * @phba: pointer to lpfc_hba struct that the frame was received on
10606  * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
10607  *
10608  * This function checks the fields in the @fc_hdr to see if the FC frame is a
10609  * valid type of frame that the LPFC driver will handle. This function will
10610  * return a zero if the frame is a valid frame or a non zero value when the
10611  * frame does not pass the check.
10612  **/
10613 static int
10614 lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
10615 {
10616         char *rctl_names[] = FC_RCTL_NAMES_INIT;
10617         char *type_names[] = FC_TYPE_NAMES_INIT;
10618         struct fc_vft_header *fc_vft_hdr;
10619
10620         switch (fc_hdr->fh_r_ctl) {
10621         case FC_RCTL_DD_UNCAT:          /* uncategorized information */
10622         case FC_RCTL_DD_SOL_DATA:       /* solicited data */
10623         case FC_RCTL_DD_UNSOL_CTL:      /* unsolicited control */
10624         case FC_RCTL_DD_SOL_CTL:        /* solicited control or reply */
10625         case FC_RCTL_DD_UNSOL_DATA:     /* unsolicited data */
10626         case FC_RCTL_DD_DATA_DESC:      /* data descriptor */
10627         case FC_RCTL_DD_UNSOL_CMD:      /* unsolicited command */
10628         case FC_RCTL_DD_CMD_STATUS:     /* command status */
10629         case FC_RCTL_ELS_REQ:   /* extended link services request */
10630         case FC_RCTL_ELS_REP:   /* extended link services reply */
10631         case FC_RCTL_ELS4_REQ:  /* FC-4 ELS request */
10632         case FC_RCTL_ELS4_REP:  /* FC-4 ELS reply */
10633         case FC_RCTL_BA_NOP:    /* basic link service NOP */
10634         case FC_RCTL_BA_ABTS:   /* basic link service abort */
10635         case FC_RCTL_BA_RMC:    /* remove connection */
10636         case FC_RCTL_BA_ACC:    /* basic accept */
10637         case FC_RCTL_BA_RJT:    /* basic reject */
10638         case FC_RCTL_BA_PRMT:
10639         case FC_RCTL_ACK_1:     /* acknowledge_1 */
10640         case FC_RCTL_ACK_0:     /* acknowledge_0 */
10641         case FC_RCTL_P_RJT:     /* port reject */
10642         case FC_RCTL_F_RJT:     /* fabric reject */
10643         case FC_RCTL_P_BSY:     /* port busy */
10644         case FC_RCTL_F_BSY:     /* fabric busy to data frame */
10645         case FC_RCTL_F_BSYL:    /* fabric busy to link control frame */
10646         case FC_RCTL_LCR:       /* link credit reset */
10647         case FC_RCTL_END:       /* end */
10648                 break;
10649         case FC_RCTL_VFTH:      /* Virtual Fabric tagging Header */
10650                 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
10651                 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
10652                 return lpfc_fc_frame_check(phba, fc_hdr);
10653         default:
10654                 goto drop;
10655         }
10656         switch (fc_hdr->fh_type) {
10657         case FC_TYPE_BLS:
10658         case FC_TYPE_ELS:
10659         case FC_TYPE_FCP:
10660         case FC_TYPE_CT:
10661                 break;
10662         case FC_TYPE_IP:
10663         case FC_TYPE_ILS:
10664         default:
10665                 goto drop;
10666         }
10667         lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
10668                         "2538 Received frame rctl:%s type:%s\n",
10669                         rctl_names[fc_hdr->fh_r_ctl],
10670                         type_names[fc_hdr->fh_type]);
10671         return 0;
10672 drop:
10673         lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
10674                         "2539 Dropped frame rctl:%s type:%s\n",
10675                         rctl_names[fc_hdr->fh_r_ctl],
10676                         type_names[fc_hdr->fh_type]);
10677         return 1;
10678 }
10679
10680 /**
10681  * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
10682  * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
10683  *
10684  * This function processes the FC header to retrieve the VFI from the VF
10685  * header, if one exists. This function will return the VFI if one exists
10686  * or 0 if no VSAN Header exists.
10687  **/
10688 static uint32_t
10689 lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
10690 {
10691         struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
10692
10693         if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
10694                 return 0;
10695         return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
10696 }
10697
10698 /**
10699  * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
10700  * @phba: Pointer to the HBA structure to search for the vport on
10701  * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
10702  * @fcfi: The FC Fabric ID that the frame came from
10703  *
10704  * This function searches the @phba for a vport that matches the content of the
10705  * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
10706  * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
10707  * returns the matching vport pointer or NULL if unable to match frame to a
10708  * vport.
10709  **/
10710 static struct lpfc_vport *
10711 lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
10712                        uint16_t fcfi)
10713 {
10714         struct lpfc_vport **vports;
10715         struct lpfc_vport *vport = NULL;
10716         int i;
10717         uint32_t did = (fc_hdr->fh_d_id[0] << 16 |
10718                         fc_hdr->fh_d_id[1] << 8 |
10719                         fc_hdr->fh_d_id[2]);
10720
10721         vports = lpfc_create_vport_work_array(phba);
10722         if (vports != NULL)
10723                 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
10724                         if (phba->fcf.fcfi == fcfi &&
10725                             vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
10726                             vports[i]->fc_myDID == did) {
10727                                 vport = vports[i];
10728                                 break;
10729                         }
10730                 }
10731         lpfc_destroy_vport_work_array(phba, vports);
10732         return vport;
10733 }
10734
10735 /**
10736  * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
10737  * @vport: The vport to work on.
10738  *
10739  * This function updates the receive sequence time stamp for this vport. The
10740  * receive sequence time stamp indicates the time that the last frame of the
10741  * the sequence that has been idle for the longest amount of time was received.
10742  * the driver uses this time stamp to indicate if any received sequences have
10743  * timed out.
10744  **/
10745 void
10746 lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
10747 {
10748         struct lpfc_dmabuf *h_buf;
10749         struct hbq_dmabuf *dmabuf = NULL;
10750
10751         /* get the oldest sequence on the rcv list */
10752         h_buf = list_get_first(&vport->rcv_buffer_list,
10753                                struct lpfc_dmabuf, list);
10754         if (!h_buf)
10755                 return;
10756         dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
10757         vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
10758 }
10759
10760 /**
10761  * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
10762  * @vport: The vport that the received sequences were sent to.
10763  *
10764  * This function cleans up all outstanding received sequences. This is called
10765  * by the driver when a link event or user action invalidates all the received
10766  * sequences.
10767  **/
10768 void
10769 lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
10770 {
10771         struct lpfc_dmabuf *h_buf, *hnext;
10772         struct lpfc_dmabuf *d_buf, *dnext;
10773         struct hbq_dmabuf *dmabuf = NULL;
10774
10775         /* start with the oldest sequence on the rcv list */
10776         list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
10777                 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
10778                 list_del_init(&dmabuf->hbuf.list);
10779                 list_for_each_entry_safe(d_buf, dnext,
10780                                          &dmabuf->dbuf.list, list) {
10781                         list_del_init(&d_buf->list);
10782                         lpfc_in_buf_free(vport->phba, d_buf);
10783                 }
10784                 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
10785         }
10786 }
10787
10788 /**
10789  * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
10790  * @vport: The vport that the received sequences were sent to.
10791  *
10792  * This function determines whether any received sequences have timed out by
10793  * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
10794  * indicates that there is at least one timed out sequence this routine will
10795  * go through the received sequences one at a time from most inactive to most
10796  * active to determine which ones need to be cleaned up. Once it has determined
10797  * that a sequence needs to be cleaned up it will simply free up the resources
10798  * without sending an abort.
10799  **/
10800 void
10801 lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
10802 {
10803         struct lpfc_dmabuf *h_buf, *hnext;
10804         struct lpfc_dmabuf *d_buf, *dnext;
10805         struct hbq_dmabuf *dmabuf = NULL;
10806         unsigned long timeout;
10807         int abort_count = 0;
10808
10809         timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
10810                    vport->rcv_buffer_time_stamp);
10811         if (list_empty(&vport->rcv_buffer_list) ||
10812             time_before(jiffies, timeout))
10813                 return;
10814         /* start with the oldest sequence on the rcv list */
10815         list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
10816                 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
10817                 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
10818                            dmabuf->time_stamp);
10819                 if (time_before(jiffies, timeout))
10820                         break;
10821                 abort_count++;
10822                 list_del_init(&dmabuf->hbuf.list);
10823                 list_for_each_entry_safe(d_buf, dnext,
10824                                          &dmabuf->dbuf.list, list) {
10825                         list_del_init(&d_buf->list);
10826                         lpfc_in_buf_free(vport->phba, d_buf);
10827                 }
10828                 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
10829         }
10830         if (abort_count)
10831                 lpfc_update_rcv_time_stamp(vport);
10832 }
10833
10834 /**
10835  * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
10836  * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
10837  *
10838  * This function searches through the existing incomplete sequences that have
10839  * been sent to this @vport. If the frame matches one of the incomplete
10840  * sequences then the dbuf in the @dmabuf is added to the list of frames that
10841  * make up that sequence. If no sequence is found that matches this frame then
10842  * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
10843  * This function returns a pointer to the first dmabuf in the sequence list that
10844  * the frame was linked to.
10845  **/
10846 static struct hbq_dmabuf *
10847 lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
10848 {
10849         struct fc_frame_header *new_hdr;
10850         struct fc_frame_header *temp_hdr;
10851         struct lpfc_dmabuf *d_buf;
10852         struct lpfc_dmabuf *h_buf;
10853         struct hbq_dmabuf *seq_dmabuf = NULL;
10854         struct hbq_dmabuf *temp_dmabuf = NULL;
10855
10856         INIT_LIST_HEAD(&dmabuf->dbuf.list);
10857         dmabuf->time_stamp = jiffies;
10858         new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
10859         /* Use the hdr_buf to find the sequence that this frame belongs to */
10860         list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
10861                 temp_hdr = (struct fc_frame_header *)h_buf->virt;
10862                 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
10863                     (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
10864                     (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
10865                         continue;
10866                 /* found a pending sequence that matches this frame */
10867                 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
10868                 break;
10869         }
10870         if (!seq_dmabuf) {
10871                 /*
10872                  * This indicates first frame received for this sequence.
10873                  * Queue the buffer on the vport's rcv_buffer_list.
10874                  */
10875                 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
10876                 lpfc_update_rcv_time_stamp(vport);
10877                 return dmabuf;
10878         }
10879         temp_hdr = seq_dmabuf->hbuf.virt;
10880         if (new_hdr->fh_seq_cnt < temp_hdr->fh_seq_cnt) {
10881                 list_del_init(&seq_dmabuf->hbuf.list);
10882                 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
10883                 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
10884                 lpfc_update_rcv_time_stamp(vport);
10885                 return dmabuf;
10886         }
10887         /* move this sequence to the tail to indicate a young sequence */
10888         list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
10889         seq_dmabuf->time_stamp = jiffies;
10890         lpfc_update_rcv_time_stamp(vport);
10891         /* find the correct place in the sequence to insert this frame */
10892         list_for_each_entry_reverse(d_buf, &seq_dmabuf->dbuf.list, list) {
10893                 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
10894                 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
10895                 /*
10896                  * If the frame's sequence count is greater than the frame on
10897                  * the list then insert the frame right after this frame
10898                  */
10899                 if (new_hdr->fh_seq_cnt > temp_hdr->fh_seq_cnt) {
10900                         list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
10901                         return seq_dmabuf;
10902                 }
10903         }
10904         return NULL;
10905 }
10906
10907 /**
10908  * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
10909  * @vport: pointer to a vitural port
10910  * @dmabuf: pointer to a dmabuf that describes the FC sequence
10911  *
10912  * This function tries to abort from the partially assembed sequence, described
10913  * by the information from basic abbort @dmabuf. It checks to see whether such
10914  * partially assembled sequence held by the driver. If so, it shall free up all
10915  * the frames from the partially assembled sequence.
10916  *
10917  * Return
10918  * true  -- if there is matching partially assembled sequence present and all
10919  *          the frames freed with the sequence;
10920  * false -- if there is no matching partially assembled sequence present so
10921  *          nothing got aborted in the lower layer driver
10922  **/
10923 static bool
10924 lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
10925                             struct hbq_dmabuf *dmabuf)
10926 {
10927         struct fc_frame_header *new_hdr;
10928         struct fc_frame_header *temp_hdr;
10929         struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
10930         struct hbq_dmabuf *seq_dmabuf = NULL;
10931
10932         /* Use the hdr_buf to find the sequence that matches this frame */
10933         INIT_LIST_HEAD(&dmabuf->dbuf.list);
10934         INIT_LIST_HEAD(&dmabuf->hbuf.list);
10935         new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
10936         list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
10937                 temp_hdr = (struct fc_frame_header *)h_buf->virt;
10938                 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
10939                     (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
10940                     (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
10941                         continue;
10942                 /* found a pending sequence that matches this frame */
10943                 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
10944                 break;
10945         }
10946
10947         /* Free up all the frames from the partially assembled sequence */
10948         if (seq_dmabuf) {
10949                 list_for_each_entry_safe(d_buf, n_buf,
10950                                          &seq_dmabuf->dbuf.list, list) {
10951                         list_del_init(&d_buf->list);
10952                         lpfc_in_buf_free(vport->phba, d_buf);
10953                 }
10954                 return true;
10955         }
10956         return false;
10957 }
10958
10959 /**
10960  * lpfc_sli4_seq_abort_acc_cmpl - Accept seq abort iocb complete handler
10961  * @phba: Pointer to HBA context object.
10962  * @cmd_iocbq: pointer to the command iocbq structure.
10963  * @rsp_iocbq: pointer to the response iocbq structure.
10964  *
10965  * This function handles the sequence abort accept iocb command complete
10966  * event. It properly releases the memory allocated to the sequence abort
10967  * accept iocb.
10968  **/
10969 static void
10970 lpfc_sli4_seq_abort_acc_cmpl(struct lpfc_hba *phba,
10971                              struct lpfc_iocbq *cmd_iocbq,
10972                              struct lpfc_iocbq *rsp_iocbq)
10973 {
10974         if (cmd_iocbq)
10975                 lpfc_sli_release_iocbq(phba, cmd_iocbq);
10976 }
10977
10978 /**
10979  * lpfc_sli4_seq_abort_acc - Accept sequence abort
10980  * @phba: Pointer to HBA context object.
10981  * @fc_hdr: pointer to a FC frame header.
10982  *
10983  * This function sends a basic accept to a previous unsol sequence abort
10984  * event after aborting the sequence handling.
10985  **/
10986 static void
10987 lpfc_sli4_seq_abort_acc(struct lpfc_hba *phba,
10988                         struct fc_frame_header *fc_hdr)
10989 {
10990         struct lpfc_iocbq *ctiocb = NULL;
10991         struct lpfc_nodelist *ndlp;
10992         uint16_t oxid;
10993         uint32_t sid;
10994         IOCB_t *icmd;
10995
10996         if (!lpfc_is_link_up(phba))
10997                 return;
10998
10999         sid = sli4_sid_from_fc_hdr(fc_hdr);
11000         oxid = be16_to_cpu(fc_hdr->fh_ox_id);
11001
11002         ndlp = lpfc_findnode_did(phba->pport, sid);
11003         if (!ndlp) {
11004                 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
11005                                 "1268 Find ndlp returned NULL for oxid:x%x "
11006                                 "SID:x%x\n", oxid, sid);
11007                 return;
11008         }
11009
11010         /* Allocate buffer for acc iocb */
11011         ctiocb = lpfc_sli_get_iocbq(phba);
11012         if (!ctiocb)
11013                 return;
11014
11015         icmd = &ctiocb->iocb;
11016         icmd->un.xseq64.bdl.ulpIoTag32 = 0;
11017         icmd->un.xseq64.bdl.bdeSize = 0;
11018         icmd->un.xseq64.w5.hcsw.Dfctl = 0;
11019         icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
11020         icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
11021
11022         /* Fill in the rest of iocb fields */
11023         icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
11024         icmd->ulpBdeCount = 0;
11025         icmd->ulpLe = 1;
11026         icmd->ulpClass = CLASS3;
11027         icmd->ulpContext = ndlp->nlp_rpi;
11028         icmd->un.ulpWord[3] = oxid;
11029
11030         ctiocb->sli4_xritag = NO_XRI;
11031         ctiocb->iocb_cmpl = NULL;
11032         ctiocb->vport = phba->pport;
11033         ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_acc_cmpl;
11034
11035         /* Xmit CT abts accept on exchange <xid> */
11036         lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
11037                         "1200 Xmit CT ABTS ACC on exchange x%x Data: x%x\n",
11038                         CMD_XMIT_BLS_RSP64_CX, phba->link_state);
11039         lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
11040 }
11041
11042 /**
11043  * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
11044  * @vport: Pointer to the vport on which this sequence was received
11045  * @dmabuf: pointer to a dmabuf that describes the FC sequence
11046  *
11047  * This function handles an SLI-4 unsolicited abort event. If the unsolicited
11048  * receive sequence is only partially assembed by the driver, it shall abort
11049  * the partially assembled frames for the sequence. Otherwise, if the
11050  * unsolicited receive sequence has been completely assembled and passed to
11051  * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
11052  * unsolicited sequence has been aborted. After that, it will issue a basic
11053  * accept to accept the abort.
11054  **/
11055 void
11056 lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
11057                              struct hbq_dmabuf *dmabuf)
11058 {
11059         struct lpfc_hba *phba = vport->phba;
11060         struct fc_frame_header fc_hdr;
11061         bool abts_par;
11062
11063         /* Try to abort partially assembled seq */
11064         abts_par = lpfc_sli4_abort_partial_seq(vport, dmabuf);
11065
11066         /* Make a copy of fc_hdr before the dmabuf being released */
11067         memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
11068
11069         /* Send abort to ULP if partially seq abort failed */
11070         if (abts_par == false)
11071                 lpfc_sli4_send_seq_to_ulp(vport, dmabuf);
11072         else
11073                 lpfc_in_buf_free(phba, &dmabuf->dbuf);
11074         /* Send basic accept (BA_ACC) to the abort requester */
11075         lpfc_sli4_seq_abort_acc(phba, &fc_hdr);
11076 }
11077
11078 /**
11079  * lpfc_seq_complete - Indicates if a sequence is complete
11080  * @dmabuf: pointer to a dmabuf that describes the FC sequence
11081  *
11082  * This function checks the sequence, starting with the frame described by
11083  * @dmabuf, to see if all the frames associated with this sequence are present.
11084  * the frames associated with this sequence are linked to the @dmabuf using the
11085  * dbuf list. This function looks for two major things. 1) That the first frame
11086  * has a sequence count of zero. 2) There is a frame with last frame of sequence
11087  * set. 3) That there are no holes in the sequence count. The function will
11088  * return 1 when the sequence is complete, otherwise it will return 0.
11089  **/
11090 static int
11091 lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
11092 {
11093         struct fc_frame_header *hdr;
11094         struct lpfc_dmabuf *d_buf;
11095         struct hbq_dmabuf *seq_dmabuf;
11096         uint32_t fctl;
11097         int seq_count = 0;
11098
11099         hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
11100         /* make sure first fame of sequence has a sequence count of zero */
11101         if (hdr->fh_seq_cnt != seq_count)
11102                 return 0;
11103         fctl = (hdr->fh_f_ctl[0] << 16 |
11104                 hdr->fh_f_ctl[1] << 8 |
11105                 hdr->fh_f_ctl[2]);
11106         /* If last frame of sequence we can return success. */
11107         if (fctl & FC_FC_END_SEQ)
11108                 return 1;
11109         list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
11110                 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
11111                 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
11112                 /* If there is a hole in the sequence count then fail. */
11113                 if (++seq_count != hdr->fh_seq_cnt)
11114                         return 0;
11115                 fctl = (hdr->fh_f_ctl[0] << 16 |
11116                         hdr->fh_f_ctl[1] << 8 |
11117                         hdr->fh_f_ctl[2]);
11118                 /* If last frame of sequence we can return success. */
11119                 if (fctl & FC_FC_END_SEQ)
11120                         return 1;
11121         }
11122         return 0;
11123 }
11124
11125 /**
11126  * lpfc_prep_seq - Prep sequence for ULP processing
11127  * @vport: Pointer to the vport on which this sequence was received
11128  * @dmabuf: pointer to a dmabuf that describes the FC sequence
11129  *
11130  * This function takes a sequence, described by a list of frames, and creates
11131  * a list of iocbq structures to describe the sequence. This iocbq list will be
11132  * used to issue to the generic unsolicited sequence handler. This routine
11133  * returns a pointer to the first iocbq in the list. If the function is unable
11134  * to allocate an iocbq then it throw out the received frames that were not
11135  * able to be described and return a pointer to the first iocbq. If unable to
11136  * allocate any iocbqs (including the first) this function will return NULL.
11137  **/
11138 static struct lpfc_iocbq *
11139 lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
11140 {
11141         struct lpfc_dmabuf *d_buf, *n_buf;
11142         struct lpfc_iocbq *first_iocbq, *iocbq;
11143         struct fc_frame_header *fc_hdr;
11144         uint32_t sid;
11145
11146         fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
11147         /* remove from receive buffer list */
11148         list_del_init(&seq_dmabuf->hbuf.list);
11149         lpfc_update_rcv_time_stamp(vport);
11150         /* get the Remote Port's SID */
11151         sid = sli4_sid_from_fc_hdr(fc_hdr);
11152         /* Get an iocbq struct to fill in. */
11153         first_iocbq = lpfc_sli_get_iocbq(vport->phba);
11154         if (first_iocbq) {
11155                 /* Initialize the first IOCB. */
11156                 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
11157                 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
11158                 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
11159                 first_iocbq->iocb.ulpContext = be16_to_cpu(fc_hdr->fh_ox_id);
11160                 first_iocbq->iocb.unsli3.rcvsli3.vpi =
11161                                         vport->vpi + vport->phba->vpi_base;
11162                 /* put the first buffer into the first IOCBq */
11163                 first_iocbq->context2 = &seq_dmabuf->dbuf;
11164                 first_iocbq->context3 = NULL;
11165                 first_iocbq->iocb.ulpBdeCount = 1;
11166                 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
11167                                                         LPFC_DATA_BUF_SIZE;
11168                 first_iocbq->iocb.un.rcvels.remoteID = sid;
11169                 first_iocbq->iocb.unsli3.rcvsli3.acc_len +=
11170                                 bf_get(lpfc_rcqe_length,
11171                                        &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
11172         }
11173         iocbq = first_iocbq;
11174         /*
11175          * Each IOCBq can have two Buffers assigned, so go through the list
11176          * of buffers for this sequence and save two buffers in each IOCBq
11177          */
11178         list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
11179                 if (!iocbq) {
11180                         lpfc_in_buf_free(vport->phba, d_buf);
11181                         continue;
11182                 }
11183                 if (!iocbq->context3) {
11184                         iocbq->context3 = d_buf;
11185                         iocbq->iocb.ulpBdeCount++;
11186                         iocbq->iocb.unsli3.rcvsli3.bde2.tus.f.bdeSize =
11187                                                         LPFC_DATA_BUF_SIZE;
11188                         first_iocbq->iocb.unsli3.rcvsli3.acc_len +=
11189                                 bf_get(lpfc_rcqe_length,
11190                                        &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
11191                 } else {
11192                         iocbq = lpfc_sli_get_iocbq(vport->phba);
11193                         if (!iocbq) {
11194                                 if (first_iocbq) {
11195                                         first_iocbq->iocb.ulpStatus =
11196                                                         IOSTAT_FCP_RSP_ERROR;
11197                                         first_iocbq->iocb.un.ulpWord[4] =
11198                                                         IOERR_NO_RESOURCES;
11199                                 }
11200                                 lpfc_in_buf_free(vport->phba, d_buf);
11201                                 continue;
11202                         }
11203                         iocbq->context2 = d_buf;
11204                         iocbq->context3 = NULL;
11205                         iocbq->iocb.ulpBdeCount = 1;
11206                         iocbq->iocb.un.cont64[0].tus.f.bdeSize =
11207                                                         LPFC_DATA_BUF_SIZE;
11208                         first_iocbq->iocb.unsli3.rcvsli3.acc_len +=
11209                                 bf_get(lpfc_rcqe_length,
11210                                        &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
11211                         iocbq->iocb.un.rcvels.remoteID = sid;
11212                         list_add_tail(&iocbq->list, &first_iocbq->list);
11213                 }
11214         }
11215         return first_iocbq;
11216 }
11217
11218 static void
11219 lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
11220                           struct hbq_dmabuf *seq_dmabuf)
11221 {
11222         struct fc_frame_header *fc_hdr;
11223         struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
11224         struct lpfc_hba *phba = vport->phba;
11225
11226         fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
11227         iocbq = lpfc_prep_seq(vport, seq_dmabuf);
11228         if (!iocbq) {
11229                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11230                                 "2707 Ring %d handler: Failed to allocate "
11231                                 "iocb Rctl x%x Type x%x received\n",
11232                                 LPFC_ELS_RING,
11233                                 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
11234                 return;
11235         }
11236         if (!lpfc_complete_unsol_iocb(phba,
11237                                       &phba->sli.ring[LPFC_ELS_RING],
11238                                       iocbq, fc_hdr->fh_r_ctl,
11239                                       fc_hdr->fh_type))
11240                 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
11241                                 "2540 Ring %d handler: unexpected Rctl "
11242                                 "x%x Type x%x received\n",
11243                                 LPFC_ELS_RING,
11244                                 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
11245
11246         /* Free iocb created in lpfc_prep_seq */
11247         list_for_each_entry_safe(curr_iocb, next_iocb,
11248                 &iocbq->list, list) {
11249                 list_del_init(&curr_iocb->list);
11250                 lpfc_sli_release_iocbq(phba, curr_iocb);
11251         }
11252         lpfc_sli_release_iocbq(phba, iocbq);
11253 }
11254
11255 /**
11256  * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
11257  * @phba: Pointer to HBA context object.
11258  *
11259  * This function is called with no lock held. This function processes all
11260  * the received buffers and gives it to upper layers when a received buffer
11261  * indicates that it is the final frame in the sequence. The interrupt
11262  * service routine processes received buffers at interrupt contexts and adds
11263  * received dma buffers to the rb_pend_list queue and signals the worker thread.
11264  * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
11265  * appropriate receive function when the final frame in a sequence is received.
11266  **/
11267 void
11268 lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
11269                                  struct hbq_dmabuf *dmabuf)
11270 {
11271         struct hbq_dmabuf *seq_dmabuf;
11272         struct fc_frame_header *fc_hdr;
11273         struct lpfc_vport *vport;
11274         uint32_t fcfi;
11275
11276         /* Process each received buffer */
11277         fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
11278         /* check to see if this a valid type of frame */
11279         if (lpfc_fc_frame_check(phba, fc_hdr)) {
11280                 lpfc_in_buf_free(phba, &dmabuf->dbuf);
11281                 return;
11282         }
11283         fcfi = bf_get(lpfc_rcqe_fcf_id, &dmabuf->cq_event.cqe.rcqe_cmpl);
11284         vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi);
11285         if (!vport) {
11286                 /* throw out the frame */
11287                 lpfc_in_buf_free(phba, &dmabuf->dbuf);
11288                 return;
11289         }
11290         /* Handle the basic abort sequence (BA_ABTS) event */
11291         if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
11292                 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
11293                 return;
11294         }
11295
11296         /* Link this frame */
11297         seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
11298         if (!seq_dmabuf) {
11299                 /* unable to add frame to vport - throw it out */
11300                 lpfc_in_buf_free(phba, &dmabuf->dbuf);
11301                 return;
11302         }
11303         /* If not last frame in sequence continue processing frames. */
11304         if (!lpfc_seq_complete(seq_dmabuf)) {
11305                 /*
11306                  * When saving off frames post a new one and mark this
11307                  * frame to be freed when it is finished.
11308                  **/
11309                 lpfc_sli_hbqbuf_fill_hbqs(phba, LPFC_ELS_HBQ, 1);
11310                 dmabuf->tag = -1;
11311                 return;
11312         }
11313         /* Send the complete sequence to the upper layer protocol */
11314         lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
11315 }
11316
11317 /**
11318  * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
11319  * @phba: pointer to lpfc hba data structure.
11320  *
11321  * This routine is invoked to post rpi header templates to the
11322  * HBA consistent with the SLI-4 interface spec.  This routine
11323  * posts a PAGE_SIZE memory region to the port to hold up to
11324  * PAGE_SIZE modulo 64 rpi context headers.
11325  *
11326  * This routine does not require any locks.  It's usage is expected
11327  * to be driver load or reset recovery when the driver is
11328  * sequential.
11329  *
11330  * Return codes
11331  *      0 - sucessful
11332  *      EIO - The mailbox failed to complete successfully.
11333  *      When this error occurs, the driver is not guaranteed
11334  *      to have any rpi regions posted to the device and
11335  *      must either attempt to repost the regions or take a
11336  *      fatal error.
11337  **/
11338 int
11339 lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
11340 {
11341         struct lpfc_rpi_hdr *rpi_page;
11342         uint32_t rc = 0;
11343
11344         /* Post all rpi memory regions to the port. */
11345         list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
11346                 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
11347                 if (rc != MBX_SUCCESS) {
11348                         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11349                                         "2008 Error %d posting all rpi "
11350                                         "headers\n", rc);
11351                         rc = -EIO;
11352                         break;
11353                 }
11354         }
11355
11356         return rc;
11357 }
11358
11359 /**
11360  * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
11361  * @phba: pointer to lpfc hba data structure.
11362  * @rpi_page:  pointer to the rpi memory region.
11363  *
11364  * This routine is invoked to post a single rpi header to the
11365  * HBA consistent with the SLI-4 interface spec.  This memory region
11366  * maps up to 64 rpi context regions.
11367  *
11368  * Return codes
11369  *      0 - sucessful
11370  *      ENOMEM - No available memory
11371  *      EIO - The mailbox failed to complete successfully.
11372  **/
11373 int
11374 lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
11375 {
11376         LPFC_MBOXQ_t *mboxq;
11377         struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
11378         uint32_t rc = 0;
11379         uint32_t mbox_tmo;
11380         uint32_t shdr_status, shdr_add_status;
11381         union lpfc_sli4_cfg_shdr *shdr;
11382
11383         /* The port is notified of the header region via a mailbox command. */
11384         mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11385         if (!mboxq) {
11386                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11387                                 "2001 Unable to allocate memory for issuing "
11388                                 "SLI_CONFIG_SPECIAL mailbox command\n");
11389                 return -ENOMEM;
11390         }
11391
11392         /* Post all rpi memory regions to the port. */
11393         hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
11394         mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_SLI4_CONFIG);
11395         lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
11396                          LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
11397                          sizeof(struct lpfc_mbx_post_hdr_tmpl) -
11398                          sizeof(struct mbox_header), LPFC_SLI4_MBX_EMBED);
11399         bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
11400                hdr_tmpl, rpi_page->page_count);
11401         bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
11402                rpi_page->start_rpi);
11403         hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
11404         hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
11405         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
11406         shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
11407         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
11408         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
11409         if (rc != MBX_TIMEOUT)
11410                 mempool_free(mboxq, phba->mbox_mem_pool);
11411         if (shdr_status || shdr_add_status || rc) {
11412                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11413                                 "2514 POST_RPI_HDR mailbox failed with "
11414                                 "status x%x add_status x%x, mbx status x%x\n",
11415                                 shdr_status, shdr_add_status, rc);
11416                 rc = -ENXIO;
11417         }
11418         return rc;
11419 }
11420
11421 /**
11422  * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
11423  * @phba: pointer to lpfc hba data structure.
11424  *
11425  * This routine is invoked to post rpi header templates to the
11426  * HBA consistent with the SLI-4 interface spec.  This routine
11427  * posts a PAGE_SIZE memory region to the port to hold up to
11428  * PAGE_SIZE modulo 64 rpi context headers.
11429  *
11430  * Returns
11431  *      A nonzero rpi defined as rpi_base <= rpi < max_rpi if sucessful
11432  *      LPFC_RPI_ALLOC_ERROR if no rpis are available.
11433  **/
11434 int
11435 lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
11436 {
11437         int rpi;
11438         uint16_t max_rpi, rpi_base, rpi_limit;
11439         uint16_t rpi_remaining;
11440         struct lpfc_rpi_hdr *rpi_hdr;
11441
11442         max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
11443         rpi_base = phba->sli4_hba.max_cfg_param.rpi_base;
11444         rpi_limit = phba->sli4_hba.next_rpi;
11445
11446         /*
11447          * The valid rpi range is not guaranteed to be zero-based.  Start
11448          * the search at the rpi_base as reported by the port.
11449          */
11450         spin_lock_irq(&phba->hbalock);
11451         rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, rpi_base);
11452         if (rpi >= rpi_limit || rpi < rpi_base)
11453                 rpi = LPFC_RPI_ALLOC_ERROR;
11454         else {
11455                 set_bit(rpi, phba->sli4_hba.rpi_bmask);
11456                 phba->sli4_hba.max_cfg_param.rpi_used++;
11457                 phba->sli4_hba.rpi_count++;
11458         }
11459
11460         /*
11461          * Don't try to allocate more rpi header regions if the device limit
11462          * on available rpis max has been exhausted.
11463          */
11464         if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
11465             (phba->sli4_hba.rpi_count >= max_rpi)) {
11466                 spin_unlock_irq(&phba->hbalock);
11467                 return rpi;
11468         }
11469
11470         /*
11471          * If the driver is running low on rpi resources, allocate another
11472          * page now.  Note that the next_rpi value is used because
11473          * it represents how many are actually in use whereas max_rpi notes
11474          * how many are supported max by the device.
11475          */
11476         rpi_remaining = phba->sli4_hba.next_rpi - rpi_base -
11477                 phba->sli4_hba.rpi_count;
11478         spin_unlock_irq(&phba->hbalock);
11479         if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
11480                 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
11481                 if (!rpi_hdr) {
11482                         lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11483                                         "2002 Error Could not grow rpi "
11484                                         "count\n");
11485                 } else {
11486                         lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
11487                 }
11488         }
11489
11490         return rpi;
11491 }
11492
11493 /**
11494  * lpfc_sli4_free_rpi - Release an rpi for reuse.
11495  * @phba: pointer to lpfc hba data structure.
11496  *
11497  * This routine is invoked to release an rpi to the pool of
11498  * available rpis maintained by the driver.
11499  **/
11500 void
11501 lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
11502 {
11503         spin_lock_irq(&phba->hbalock);
11504         clear_bit(rpi, phba->sli4_hba.rpi_bmask);
11505         phba->sli4_hba.rpi_count--;
11506         phba->sli4_hba.max_cfg_param.rpi_used--;
11507         spin_unlock_irq(&phba->hbalock);
11508 }
11509
11510 /**
11511  * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
11512  * @phba: pointer to lpfc hba data structure.
11513  *
11514  * This routine is invoked to remove the memory region that
11515  * provided rpi via a bitmask.
11516  **/
11517 void
11518 lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
11519 {
11520         kfree(phba->sli4_hba.rpi_bmask);
11521 }
11522
11523 /**
11524  * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
11525  * @phba: pointer to lpfc hba data structure.
11526  *
11527  * This routine is invoked to remove the memory region that
11528  * provided rpi via a bitmask.
11529  **/
11530 int
11531 lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp)
11532 {
11533         LPFC_MBOXQ_t *mboxq;
11534         struct lpfc_hba *phba = ndlp->phba;
11535         int rc;
11536
11537         /* The port is notified of the header region via a mailbox command. */
11538         mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11539         if (!mboxq)
11540                 return -ENOMEM;
11541
11542         /* Post all rpi memory regions to the port. */
11543         lpfc_resume_rpi(mboxq, ndlp);
11544         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
11545         if (rc == MBX_NOT_FINISHED) {
11546                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11547                                 "2010 Resume RPI Mailbox failed "
11548                                 "status %d, mbxStatus x%x\n", rc,
11549                                 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
11550                 mempool_free(mboxq, phba->mbox_mem_pool);
11551                 return -EIO;
11552         }
11553         return 0;
11554 }
11555
11556 /**
11557  * lpfc_sli4_init_vpi - Initialize a vpi with the port
11558  * @phba: pointer to lpfc hba data structure.
11559  * @vpi: vpi value to activate with the port.
11560  *
11561  * This routine is invoked to activate a vpi with the
11562  * port when the host intends to use vports with a
11563  * nonzero vpi.
11564  *
11565  * Returns:
11566  *    0 success
11567  *    -Evalue otherwise
11568  **/
11569 int
11570 lpfc_sli4_init_vpi(struct lpfc_hba *phba, uint16_t vpi)
11571 {
11572         LPFC_MBOXQ_t *mboxq;
11573         int rc = 0;
11574         int retval = MBX_SUCCESS;
11575         uint32_t mbox_tmo;
11576
11577         if (vpi == 0)
11578                 return -EINVAL;
11579         mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11580         if (!mboxq)
11581                 return -ENOMEM;
11582         lpfc_init_vpi(phba, mboxq, vpi);
11583         mbox_tmo = lpfc_mbox_tmo_val(phba, MBX_INIT_VPI);
11584         rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
11585         if (rc != MBX_SUCCESS) {
11586                 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
11587                                 "2022 INIT VPI Mailbox failed "
11588                                 "status %d, mbxStatus x%x\n", rc,
11589                                 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
11590                 retval = -EIO;
11591         }
11592         if (rc != MBX_TIMEOUT)
11593                 mempool_free(mboxq, phba->mbox_mem_pool);
11594
11595         return retval;
11596 }
11597
11598 /**
11599  * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
11600  * @phba: pointer to lpfc hba data structure.
11601  * @mboxq: Pointer to mailbox object.
11602  *
11603  * This routine is invoked to manually add a single FCF record. The caller
11604  * must pass a completely initialized FCF_Record.  This routine takes
11605  * care of the nonembedded mailbox operations.
11606  **/
11607 static void
11608 lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
11609 {
11610         void *virt_addr;
11611         union lpfc_sli4_cfg_shdr *shdr;
11612         uint32_t shdr_status, shdr_add_status;
11613
11614         virt_addr = mboxq->sge_array->addr[0];
11615         /* The IOCTL status is embedded in the mailbox subheader. */
11616         shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
11617         shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
11618         shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
11619
11620         if ((shdr_status || shdr_add_status) &&
11621                 (shdr_status != STATUS_FCF_IN_USE))
11622                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11623                         "2558 ADD_FCF_RECORD mailbox failed with "
11624                         "status x%x add_status x%x\n",
11625                         shdr_status, shdr_add_status);
11626
11627         lpfc_sli4_mbox_cmd_free(phba, mboxq);
11628 }
11629
11630 /**
11631  * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
11632  * @phba: pointer to lpfc hba data structure.
11633  * @fcf_record:  pointer to the initialized fcf record to add.
11634  *
11635  * This routine is invoked to manually add a single FCF record. The caller
11636  * must pass a completely initialized FCF_Record.  This routine takes
11637  * care of the nonembedded mailbox operations.
11638  **/
11639 int
11640 lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
11641 {
11642         int rc = 0;
11643         LPFC_MBOXQ_t *mboxq;
11644         uint8_t *bytep;
11645         void *virt_addr;
11646         dma_addr_t phys_addr;
11647         struct lpfc_mbx_sge sge;
11648         uint32_t alloc_len, req_len;
11649         uint32_t fcfindex;
11650
11651         mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11652         if (!mboxq) {
11653                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11654                         "2009 Failed to allocate mbox for ADD_FCF cmd\n");
11655                 return -ENOMEM;
11656         }
11657
11658         req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
11659                   sizeof(uint32_t);
11660
11661         /* Allocate DMA memory and set up the non-embedded mailbox command */
11662         alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
11663                                      LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
11664                                      req_len, LPFC_SLI4_MBX_NEMBED);
11665         if (alloc_len < req_len) {
11666                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11667                         "2523 Allocated DMA memory size (x%x) is "
11668                         "less than the requested DMA memory "
11669                         "size (x%x)\n", alloc_len, req_len);
11670                 lpfc_sli4_mbox_cmd_free(phba, mboxq);
11671                 return -ENOMEM;
11672         }
11673
11674         /*
11675          * Get the first SGE entry from the non-embedded DMA memory.  This
11676          * routine only uses a single SGE.
11677          */
11678         lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
11679         phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
11680         virt_addr = mboxq->sge_array->addr[0];
11681         /*
11682          * Configure the FCF record for FCFI 0.  This is the driver's
11683          * hardcoded default and gets used in nonFIP mode.
11684          */
11685         fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
11686         bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
11687         lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
11688
11689         /*
11690          * Copy the fcf_index and the FCF Record Data. The data starts after
11691          * the FCoE header plus word10. The data copy needs to be endian
11692          * correct.
11693          */
11694         bytep += sizeof(uint32_t);
11695         lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
11696         mboxq->vport = phba->pport;
11697         mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
11698         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
11699         if (rc == MBX_NOT_FINISHED) {
11700                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11701                         "2515 ADD_FCF_RECORD mailbox failed with "
11702                         "status 0x%x\n", rc);
11703                 lpfc_sli4_mbox_cmd_free(phba, mboxq);
11704                 rc = -EIO;
11705         } else
11706                 rc = 0;
11707
11708         return rc;
11709 }
11710
11711 /**
11712  * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
11713  * @phba: pointer to lpfc hba data structure.
11714  * @fcf_record:  pointer to the fcf record to write the default data.
11715  * @fcf_index: FCF table entry index.
11716  *
11717  * This routine is invoked to build the driver's default FCF record.  The
11718  * values used are hardcoded.  This routine handles memory initialization.
11719  *
11720  **/
11721 void
11722 lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
11723                                 struct fcf_record *fcf_record,
11724                                 uint16_t fcf_index)
11725 {
11726         memset(fcf_record, 0, sizeof(struct fcf_record));
11727         fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
11728         fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
11729         fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
11730         bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
11731         bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
11732         bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
11733         bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
11734         bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
11735         bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
11736         bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
11737         bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
11738         bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
11739         bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
11740         bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
11741         bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
11742         bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
11743                 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
11744         /* Set the VLAN bit map */
11745         if (phba->valid_vlan) {
11746                 fcf_record->vlan_bitmap[phba->vlan_id / 8]
11747                         = 1 << (phba->vlan_id % 8);
11748         }
11749 }
11750
11751 /**
11752  * lpfc_sli4_read_fcf_record - Read the driver's default FCF Record.
11753  * @phba: pointer to lpfc hba data structure.
11754  * @fcf_index: FCF table entry offset.
11755  *
11756  * This routine is invoked to read up to @fcf_num of FCF record from the
11757  * device starting with the given @fcf_index.
11758  **/
11759 int
11760 lpfc_sli4_read_fcf_record(struct lpfc_hba *phba, uint16_t fcf_index)
11761 {
11762         int rc = 0, error;
11763         LPFC_MBOXQ_t *mboxq;
11764         void *virt_addr;
11765         dma_addr_t phys_addr;
11766         uint8_t *bytep;
11767         struct lpfc_mbx_sge sge;
11768         uint32_t alloc_len, req_len;
11769         struct lpfc_mbx_read_fcf_tbl *read_fcf;
11770
11771         phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
11772         mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11773         if (!mboxq) {
11774                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11775                                 "2000 Failed to allocate mbox for "
11776                                 "READ_FCF cmd\n");
11777                 error = -ENOMEM;
11778                 goto fail_fcfscan;
11779         }
11780
11781         req_len = sizeof(struct fcf_record) +
11782                   sizeof(union lpfc_sli4_cfg_shdr) + 2 * sizeof(uint32_t);
11783
11784         /* Set up READ_FCF SLI4_CONFIG mailbox-ioctl command */
11785         alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
11786                          LPFC_MBOX_OPCODE_FCOE_READ_FCF_TABLE, req_len,
11787                          LPFC_SLI4_MBX_NEMBED);
11788
11789         if (alloc_len < req_len) {
11790                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11791                                 "0291 Allocated DMA memory size (x%x) is "
11792                                 "less than the requested DMA memory "
11793                                 "size (x%x)\n", alloc_len, req_len);
11794                 error = -ENOMEM;
11795                 goto fail_fcfscan;
11796         }
11797
11798         /* Get the first SGE entry from the non-embedded DMA memory. This
11799          * routine only uses a single SGE.
11800          */
11801         lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
11802         phys_addr = getPaddr(sge.pa_hi, sge.pa_lo);
11803         virt_addr = mboxq->sge_array->addr[0];
11804         read_fcf = (struct lpfc_mbx_read_fcf_tbl *)virt_addr;
11805
11806         /* Set up command fields */
11807         bf_set(lpfc_mbx_read_fcf_tbl_indx, &read_fcf->u.request, fcf_index);
11808         /* Perform necessary endian conversion */
11809         bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
11810         lpfc_sli_pcimem_bcopy(bytep, bytep, sizeof(uint32_t));
11811         mboxq->vport = phba->pport;
11812         mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_record;
11813         rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
11814         if (rc == MBX_NOT_FINISHED) {
11815                 error = -EIO;
11816         } else {
11817                 spin_lock_irq(&phba->hbalock);
11818                 phba->hba_flag |= FCF_DISC_INPROGRESS;
11819                 spin_unlock_irq(&phba->hbalock);
11820                 error = 0;
11821         }
11822 fail_fcfscan:
11823         if (error) {
11824                 if (mboxq)
11825                         lpfc_sli4_mbox_cmd_free(phba, mboxq);
11826                 /* FCF scan failed, clear FCF_DISC_INPROGRESS flag */
11827                 spin_lock_irq(&phba->hbalock);
11828                 phba->hba_flag &= ~FCF_DISC_INPROGRESS;
11829                 spin_unlock_irq(&phba->hbalock);
11830         }
11831         return error;
11832 }
11833
11834 /**
11835  * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
11836  * @phba: pointer to lpfc hba data structure.
11837  *
11838  * This function read region 23 and parse TLV for port status to
11839  * decide if the user disaled the port. If the TLV indicates the
11840  * port is disabled, the hba_flag is set accordingly.
11841  **/
11842 void
11843 lpfc_sli_read_link_ste(struct lpfc_hba *phba)
11844 {
11845         LPFC_MBOXQ_t *pmb = NULL;
11846         MAILBOX_t *mb;
11847         uint8_t *rgn23_data = NULL;
11848         uint32_t offset = 0, data_size, sub_tlv_len, tlv_offset;
11849         int rc;
11850
11851         pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
11852         if (!pmb) {
11853                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11854                         "2600 lpfc_sli_read_serdes_param failed to"
11855                         " allocate mailbox memory\n");
11856                 goto out;
11857         }
11858         mb = &pmb->u.mb;
11859
11860         /* Get adapter Region 23 data */
11861         rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
11862         if (!rgn23_data)
11863                 goto out;
11864
11865         do {
11866                 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
11867                 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
11868
11869                 if (rc != MBX_SUCCESS) {
11870                         lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
11871                                 "2601 lpfc_sli_read_link_ste failed to"
11872                                 " read config region 23 rc 0x%x Status 0x%x\n",
11873                                 rc, mb->mbxStatus);
11874                         mb->un.varDmp.word_cnt = 0;
11875                 }
11876                 /*
11877                  * dump mem may return a zero when finished or we got a
11878                  * mailbox error, either way we are done.
11879                  */
11880                 if (mb->un.varDmp.word_cnt == 0)
11881                         break;
11882                 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
11883                         mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
11884
11885                 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
11886                         rgn23_data + offset,
11887                         mb->un.varDmp.word_cnt);
11888                 offset += mb->un.varDmp.word_cnt;
11889         } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
11890
11891         data_size = offset;
11892         offset = 0;
11893
11894         if (!data_size)
11895                 goto out;
11896
11897         /* Check the region signature first */
11898         if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
11899                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11900                         "2619 Config region 23 has bad signature\n");
11901                         goto out;
11902         }
11903         offset += 4;
11904
11905         /* Check the data structure version */
11906         if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
11907                 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
11908                         "2620 Config region 23 has bad version\n");
11909                 goto out;
11910         }
11911         offset += 4;
11912
11913         /* Parse TLV entries in the region */
11914         while (offset < data_size) {
11915                 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
11916                         break;
11917                 /*
11918                  * If the TLV is not driver specific TLV or driver id is
11919                  * not linux driver id, skip the record.
11920                  */
11921                 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
11922                     (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
11923                     (rgn23_data[offset + 3] != 0)) {
11924                         offset += rgn23_data[offset + 1] * 4 + 4;
11925                         continue;
11926                 }
11927
11928                 /* Driver found a driver specific TLV in the config region */
11929                 sub_tlv_len = rgn23_data[offset + 1] * 4;
11930                 offset += 4;
11931                 tlv_offset = 0;
11932
11933                 /*
11934                  * Search for configured port state sub-TLV.
11935                  */
11936                 while ((offset < data_size) &&
11937                         (tlv_offset < sub_tlv_len)) {
11938                         if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
11939                                 offset += 4;
11940                                 tlv_offset += 4;
11941                                 break;
11942                         }
11943                         if (rgn23_data[offset] != PORT_STE_TYPE) {
11944                                 offset += rgn23_data[offset + 1] * 4 + 4;
11945                                 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
11946                                 continue;
11947                         }
11948
11949                         /* This HBA contains PORT_STE configured */
11950                         if (!rgn23_data[offset + 2])
11951                                 phba->hba_flag |= LINK_DISABLED;
11952
11953                         goto out;
11954                 }
11955         }
11956 out:
11957         if (pmb)
11958                 mempool_free(pmb, phba->mbox_mem_pool);
11959         kfree(rgn23_data);
11960         return;
11961 }