blob: 0e6674bd15c640d01e522a02c181c30fbb87326e [file] [log] [blame]
dea31012005-04-17 16:05:31 -05001/*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04003 * Fibre Channel Host Bus Adapters. *
James Smart0d041212019-01-28 11:14:41 -08004 * Copyright (C) 2017-2019 Broadcom. All Rights Reserved. The term *
James Smart3e21d1c2018-05-04 20:37:59 -07005 * “Broadcom” refers to Broadcom Inc. and/or its subsidiaries. *
James Smart50611572016-03-31 14:12:34 -07006 * Copyright (C) 2004-2016 Emulex. All rights reserved. *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04007 * EMULEX and SLI are trademarks of Emulex. *
James Smartd080abe2017-02-12 13:52:39 -08008 * www.broadcom.com *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -04009 * Portions Copyright (C) 2004-2005 Christoph Hellwig *
dea31012005-04-17 16:05:31 -050010 * *
11 * This program is free software; you can redistribute it and/or *
James.Smart@Emulex.Comc44ce172005-06-25 10:34:39 -040012 * modify it under the terms of version 2 of the GNU General *
13 * Public License as published by the Free Software Foundation. *
14 * This program is distributed in the hope that it will be useful. *
15 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
16 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
17 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
18 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
19 * TO BE LEGALLY INVALID. See the GNU General Public License for *
20 * more details, a copy of which can be found in the file COPYING *
21 * included with this package. *
dea31012005-04-17 16:05:31 -050022 *******************************************************************/
23
dea31012005-04-17 16:05:31 -050024#include <linux/blkdev.h>
25#include <linux/pci.h>
26#include <linux/interrupt.h>
27#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +010029#include <linux/lockdep.h>
dea31012005-04-17 16:05:31 -050030
James.Smart@Emulex.Com91886522005-08-10 15:03:09 -040031#include <scsi/scsi.h>
dea31012005-04-17 16:05:31 -050032#include <scsi/scsi_cmnd.h>
33#include <scsi/scsi_device.h>
34#include <scsi/scsi_host.h>
James.Smart@Emulex.Comf888ba32005-08-10 15:03:01 -040035#include <scsi/scsi_transport_fc.h>
James Smartda0436e2009-05-22 14:51:39 -040036#include <scsi/fc/fc_fs.h>
James Smart0d878412009-10-02 15:16:56 -040037#include <linux/aer.h>
James Smart1351e692018-02-22 08:18:43 -080038#ifdef CONFIG_X86
39#include <asm/set_memory.h>
40#endif
dea31012005-04-17 16:05:31 -050041
James Smart895427b2017-02-12 13:52:30 -080042#include <linux/nvme-fc-driver.h>
43
James Smartda0436e2009-05-22 14:51:39 -040044#include "lpfc_hw4.h"
dea31012005-04-17 16:05:31 -050045#include "lpfc_hw.h"
46#include "lpfc_sli.h"
James Smartda0436e2009-05-22 14:51:39 -040047#include "lpfc_sli4.h"
James Smartea2151b2008-09-07 11:52:10 -040048#include "lpfc_nl.h"
dea31012005-04-17 16:05:31 -050049#include "lpfc_disc.h"
dea31012005-04-17 16:05:31 -050050#include "lpfc.h"
James Smart895427b2017-02-12 13:52:30 -080051#include "lpfc_scsi.h"
52#include "lpfc_nvme.h"
James Smartf358dd02017-02-12 13:52:34 -080053#include "lpfc_nvmet.h"
dea31012005-04-17 16:05:31 -050054#include "lpfc_crtn.h"
55#include "lpfc_logmsg.h"
56#include "lpfc_compat.h"
James Smart858c9f62007-06-17 19:56:39 -050057#include "lpfc_debugfs.h"
James Smart04c68492009-05-22 14:52:52 -040058#include "lpfc_vport.h"
James Smart61bda8f2016-10-13 15:06:05 -070059#include "lpfc_version.h"
dea31012005-04-17 16:05:31 -050060
61/* There are only four IOCB completion types. */
62typedef enum _lpfc_iocb_type {
63 LPFC_UNKNOWN_IOCB,
64 LPFC_UNSOL_IOCB,
65 LPFC_SOL_IOCB,
66 LPFC_ABORT_IOCB
67} lpfc_iocb_type;
68
James Smart4f774512009-05-22 14:52:35 -040069
70/* Provide function prototypes local to this module. */
71static int lpfc_sli_issue_mbox_s4(struct lpfc_hba *, LPFC_MBOXQ_t *,
72 uint32_t);
73static int lpfc_sli4_read_rev(struct lpfc_hba *, LPFC_MBOXQ_t *,
James Smart45ed1192009-10-02 15:17:02 -040074 uint8_t *, uint32_t *);
75static struct lpfc_iocbq *lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *,
76 struct lpfc_iocbq *);
James Smart6669f9b2009-10-02 15:16:45 -040077static void lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *,
78 struct hbq_dmabuf *);
James Smartae9e28f2017-05-15 15:20:51 -070079static void lpfc_sli4_handle_mds_loopback(struct lpfc_vport *vport,
80 struct hbq_dmabuf *dmabuf);
James Smart32517fc2019-01-28 11:14:33 -080081static bool lpfc_sli4_fp_handle_cqe(struct lpfc_hba *phba,
82 struct lpfc_queue *cq, struct lpfc_cqe *cqe);
James Smart895427b2017-02-12 13:52:30 -080083static int lpfc_sli4_post_sgl_list(struct lpfc_hba *, struct list_head *,
James Smart8a9d2e82012-05-09 21:16:12 -040084 int);
Dick Kennedyf485c182017-09-29 17:34:34 -070085static void lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba,
James Smart32517fc2019-01-28 11:14:33 -080086 struct lpfc_queue *eq,
87 struct lpfc_eqe *eqe);
James Smarte8d3c3b2013-10-10 12:21:30 -040088static bool lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba);
89static bool lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba);
James Smart24c7c0a2019-09-21 20:58:58 -070090static struct lpfc_cqe *lpfc_sli4_cq_get(struct lpfc_queue *q);
91static void __lpfc_sli4_consume_cqe(struct lpfc_hba *phba,
92 struct lpfc_queue *cq,
93 struct lpfc_cqe *cqe);
James Smart05580562011-05-24 11:40:48 -040094
James Smart4f774512009-05-22 14:52:35 -040095static IOCB_t *
96lpfc_get_iocb_from_iocbq(struct lpfc_iocbq *iocbq)
97{
98 return &iocbq->iocb;
99}
100
James Smart48f8fdb2018-05-04 20:37:51 -0700101#if defined(CONFIG_64BIT) && defined(__LITTLE_ENDIAN)
102/**
103 * lpfc_sli4_pcimem_bcopy - SLI4 memory copy function
104 * @srcp: Source memory pointer.
105 * @destp: Destination memory pointer.
106 * @cnt: Number of words required to be copied.
107 * Must be a multiple of sizeof(uint64_t)
108 *
109 * This function is used for copying data between driver memory
110 * and the SLI WQ. This function also changes the endianness
111 * of each word if native endianness is different from SLI
112 * endianness. This function can be called with or without
113 * lock.
114 **/
YueHaibingd7b761b2019-05-31 23:28:41 +0800115static void
James Smart48f8fdb2018-05-04 20:37:51 -0700116lpfc_sli4_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
117{
118 uint64_t *src = srcp;
119 uint64_t *dest = destp;
120 int i;
121
122 for (i = 0; i < (int)cnt; i += sizeof(uint64_t))
123 *dest++ = *src++;
124}
125#else
126#define lpfc_sli4_pcimem_bcopy(a, b, c) lpfc_sli_pcimem_bcopy(a, b, c)
127#endif
128
James Smart4f774512009-05-22 14:52:35 -0400129/**
130 * lpfc_sli4_wq_put - Put a Work Queue Entry on an Work Queue
131 * @q: The Work Queue to operate on.
132 * @wqe: The work Queue Entry to put on the Work queue.
133 *
134 * This routine will copy the contents of @wqe to the next available entry on
135 * the @q. This function will then ring the Work Queue Doorbell to signal the
136 * HBA to start processing the Work Queue Entry. This function returns 0 if
137 * successful. If no entries are available on @q then this function will return
138 * -ENOMEM.
139 * The caller is expected to hold the hbalock when calling this routine.
140 **/
Dick Kennedycd22d602017-08-23 16:55:35 -0700141static int
James Smart205e8242018-03-05 12:04:03 -0800142lpfc_sli4_wq_put(struct lpfc_queue *q, union lpfc_wqe128 *wqe)
James Smart4f774512009-05-22 14:52:35 -0400143{
James Smart2e90f4b2011-12-13 13:22:37 -0500144 union lpfc_wqe *temp_wqe;
James Smart4f774512009-05-22 14:52:35 -0400145 struct lpfc_register doorbell;
146 uint32_t host_index;
James Smart027140e2012-08-03 12:35:44 -0400147 uint32_t idx;
James Smart1351e692018-02-22 08:18:43 -0800148 uint32_t i = 0;
149 uint8_t *tmp;
James Smart5cc167d2018-06-26 08:24:23 -0700150 u32 if_type;
James Smart4f774512009-05-22 14:52:35 -0400151
James Smart2e90f4b2011-12-13 13:22:37 -0500152 /* sanity check on queue memory */
153 if (unlikely(!q))
154 return -ENOMEM;
James Smart9afbee32019-03-12 16:30:28 -0700155 temp_wqe = lpfc_sli4_qe(q, q->host_index);
James Smart2e90f4b2011-12-13 13:22:37 -0500156
James Smart4f774512009-05-22 14:52:35 -0400157 /* If the host has not yet processed the next entry then we are done */
James Smart027140e2012-08-03 12:35:44 -0400158 idx = ((q->host_index + 1) % q->entry_count);
159 if (idx == q->hba_index) {
James Smartb84daac2012-08-03 12:35:13 -0400160 q->WQ_overflow++;
Dick Kennedycd22d602017-08-23 16:55:35 -0700161 return -EBUSY;
James Smartb84daac2012-08-03 12:35:13 -0400162 }
163 q->WQ_posted++;
James Smart4f774512009-05-22 14:52:35 -0400164 /* set consumption flag every once in a while */
James Smart32517fc2019-01-28 11:14:33 -0800165 if (!((q->host_index + 1) % q->notify_interval))
James Smartf0d9bcc2010-10-22 11:07:09 -0400166 bf_set(wqe_wqec, &wqe->generic.wqe_com, 1);
James Smart04673e32018-01-30 15:58:45 -0800167 else
168 bf_set(wqe_wqec, &wqe->generic.wqe_com, 0);
James Smartfedd3b72011-02-16 12:39:24 -0500169 if (q->phba->sli3_options & LPFC_SLI4_PHWQ_ENABLED)
170 bf_set(wqe_wqid, &wqe->generic.wqe_com, q->queue_id);
James Smart48f8fdb2018-05-04 20:37:51 -0700171 lpfc_sli4_pcimem_bcopy(wqe, temp_wqe, q->entry_size);
James Smart1351e692018-02-22 08:18:43 -0800172 if (q->dpp_enable && q->phba->cfg_enable_dpp) {
173 /* write to DPP aperture taking advatage of Combined Writes */
James Smart4c066192018-03-05 10:29:03 -0800174 tmp = (uint8_t *)temp_wqe;
175#ifdef __raw_writeq
James Smart1351e692018-02-22 08:18:43 -0800176 for (i = 0; i < q->entry_size; i += sizeof(uint64_t))
James Smart4c066192018-03-05 10:29:03 -0800177 __raw_writeq(*((uint64_t *)(tmp + i)),
178 q->dpp_regaddr + i);
179#else
180 for (i = 0; i < q->entry_size; i += sizeof(uint32_t))
181 __raw_writel(*((uint32_t *)(tmp + i)),
182 q->dpp_regaddr + i);
183#endif
James Smart1351e692018-02-22 08:18:43 -0800184 }
185 /* ensure WQE bcopy and DPP flushed before doorbell write */
James Smart6b3b3bd2016-12-19 15:07:30 -0800186 wmb();
James Smart4f774512009-05-22 14:52:35 -0400187
188 /* Update the host index before invoking device */
189 host_index = q->host_index;
James Smart027140e2012-08-03 12:35:44 -0400190
191 q->host_index = idx;
James Smart4f774512009-05-22 14:52:35 -0400192
193 /* Ring Doorbell */
194 doorbell.word0 = 0;
James Smart962bc512013-01-03 15:44:00 -0500195 if (q->db_format == LPFC_DB_LIST_FORMAT) {
James Smart1351e692018-02-22 08:18:43 -0800196 if (q->dpp_enable && q->phba->cfg_enable_dpp) {
197 bf_set(lpfc_if6_wq_db_list_fm_num_posted, &doorbell, 1);
198 bf_set(lpfc_if6_wq_db_list_fm_dpp, &doorbell, 1);
199 bf_set(lpfc_if6_wq_db_list_fm_dpp_id, &doorbell,
200 q->dpp_id);
201 bf_set(lpfc_if6_wq_db_list_fm_id, &doorbell,
202 q->queue_id);
203 } else {
204 bf_set(lpfc_wq_db_list_fm_num_posted, &doorbell, 1);
James Smart1351e692018-02-22 08:18:43 -0800205 bf_set(lpfc_wq_db_list_fm_id, &doorbell, q->queue_id);
James Smart5cc167d2018-06-26 08:24:23 -0700206
207 /* Leave bits <23:16> clear for if_type 6 dpp */
208 if_type = bf_get(lpfc_sli_intf_if_type,
209 &q->phba->sli4_hba.sli_intf);
210 if (if_type != LPFC_SLI_INTF_IF_TYPE_6)
211 bf_set(lpfc_wq_db_list_fm_index, &doorbell,
212 host_index);
James Smart1351e692018-02-22 08:18:43 -0800213 }
James Smart962bc512013-01-03 15:44:00 -0500214 } else if (q->db_format == LPFC_DB_RING_FORMAT) {
215 bf_set(lpfc_wq_db_ring_fm_num_posted, &doorbell, 1);
216 bf_set(lpfc_wq_db_ring_fm_id, &doorbell, q->queue_id);
217 } else {
218 return -EINVAL;
219 }
220 writel(doorbell.word0, q->db_regaddr);
James Smart4f774512009-05-22 14:52:35 -0400221
222 return 0;
223}
224
225/**
226 * lpfc_sli4_wq_release - Updates internal hba index for WQ
227 * @q: The Work Queue to operate on.
228 * @index: The index to advance the hba index to.
229 *
230 * This routine will update the HBA index of a queue to reflect consumption of
231 * Work Queue Entries by the HBA. When the HBA indicates that it has consumed
232 * an entry the host calls this function to update the queue's internal
233 * pointers. This routine returns the number of entries that were consumed by
234 * the HBA.
235 **/
236static uint32_t
237lpfc_sli4_wq_release(struct lpfc_queue *q, uint32_t index)
238{
239 uint32_t released = 0;
240
James Smart2e90f4b2011-12-13 13:22:37 -0500241 /* sanity check on queue memory */
242 if (unlikely(!q))
243 return 0;
244
James Smart4f774512009-05-22 14:52:35 -0400245 if (q->hba_index == index)
246 return 0;
247 do {
248 q->hba_index = ((q->hba_index + 1) % q->entry_count);
249 released++;
250 } while (q->hba_index != index);
251 return released;
252}
253
254/**
255 * lpfc_sli4_mq_put - Put a Mailbox Queue Entry on an Mailbox Queue
256 * @q: The Mailbox Queue to operate on.
257 * @wqe: The Mailbox Queue Entry to put on the Work queue.
258 *
259 * This routine will copy the contents of @mqe to the next available entry on
260 * the @q. This function will then ring the Work Queue Doorbell to signal the
261 * HBA to start processing the Work Queue Entry. This function returns 0 if
262 * successful. If no entries are available on @q then this function will return
263 * -ENOMEM.
264 * The caller is expected to hold the hbalock when calling this routine.
265 **/
266static uint32_t
267lpfc_sli4_mq_put(struct lpfc_queue *q, struct lpfc_mqe *mqe)
268{
James Smart2e90f4b2011-12-13 13:22:37 -0500269 struct lpfc_mqe *temp_mqe;
James Smart4f774512009-05-22 14:52:35 -0400270 struct lpfc_register doorbell;
James Smart4f774512009-05-22 14:52:35 -0400271
James Smart2e90f4b2011-12-13 13:22:37 -0500272 /* sanity check on queue memory */
273 if (unlikely(!q))
274 return -ENOMEM;
James Smart9afbee32019-03-12 16:30:28 -0700275 temp_mqe = lpfc_sli4_qe(q, q->host_index);
James Smart2e90f4b2011-12-13 13:22:37 -0500276
James Smart4f774512009-05-22 14:52:35 -0400277 /* If the host has not yet processed the next entry then we are done */
278 if (((q->host_index + 1) % q->entry_count) == q->hba_index)
279 return -ENOMEM;
James Smart48f8fdb2018-05-04 20:37:51 -0700280 lpfc_sli4_pcimem_bcopy(mqe, temp_mqe, q->entry_size);
James Smart4f774512009-05-22 14:52:35 -0400281 /* Save off the mailbox pointer for completion */
282 q->phba->mbox = (MAILBOX_t *)temp_mqe;
283
284 /* Update the host index before invoking device */
James Smart4f774512009-05-22 14:52:35 -0400285 q->host_index = ((q->host_index + 1) % q->entry_count);
286
287 /* Ring Doorbell */
288 doorbell.word0 = 0;
289 bf_set(lpfc_mq_doorbell_num_posted, &doorbell, 1);
290 bf_set(lpfc_mq_doorbell_id, &doorbell, q->queue_id);
291 writel(doorbell.word0, q->phba->sli4_hba.MQDBregaddr);
James Smart4f774512009-05-22 14:52:35 -0400292 return 0;
293}
294
295/**
296 * lpfc_sli4_mq_release - Updates internal hba index for MQ
297 * @q: The Mailbox Queue to operate on.
298 *
299 * This routine will update the HBA index of a queue to reflect consumption of
300 * a Mailbox Queue Entry by the HBA. When the HBA indicates that it has consumed
301 * an entry the host calls this function to update the queue's internal
302 * pointers. This routine returns the number of entries that were consumed by
303 * the HBA.
304 **/
305static uint32_t
306lpfc_sli4_mq_release(struct lpfc_queue *q)
307{
James Smart2e90f4b2011-12-13 13:22:37 -0500308 /* sanity check on queue memory */
309 if (unlikely(!q))
310 return 0;
311
James Smart4f774512009-05-22 14:52:35 -0400312 /* Clear the mailbox pointer for completion */
313 q->phba->mbox = NULL;
314 q->hba_index = ((q->hba_index + 1) % q->entry_count);
315 return 1;
316}
317
318/**
319 * lpfc_sli4_eq_get - Gets the next valid EQE from a EQ
320 * @q: The Event Queue to get the first valid EQE from
321 *
322 * This routine will get the first valid Event Queue Entry from @q, update
323 * the queue's internal hba index, and return the EQE. If no valid EQEs are in
324 * the Queue (no more work to do), or the Queue is full of EQEs that have been
325 * processed, but not popped back to the HBA then this routine will return NULL.
326 **/
327static struct lpfc_eqe *
328lpfc_sli4_eq_get(struct lpfc_queue *q)
329{
James Smart2e90f4b2011-12-13 13:22:37 -0500330 struct lpfc_eqe *eqe;
331
332 /* sanity check on queue memory */
333 if (unlikely(!q))
334 return NULL;
James Smart9afbee32019-03-12 16:30:28 -0700335 eqe = lpfc_sli4_qe(q, q->host_index);
James Smart4f774512009-05-22 14:52:35 -0400336
337 /* If the next EQE is not valid then we are done */
James Smart7365f6f2018-02-22 08:18:46 -0800338 if (bf_get_le32(lpfc_eqe_valid, eqe) != q->qe_valid)
James Smart4f774512009-05-22 14:52:35 -0400339 return NULL;
James Smart27f344e2014-05-07 17:16:46 -0400340
341 /*
342 * insert barrier for instruction interlock : data from the hardware
343 * must have the valid bit checked before it can be copied and acted
James Smart2ea259e2017-02-12 13:52:27 -0800344 * upon. Speculative instructions were allowing a bcopy at the start
345 * of lpfc_sli4_fp_handle_wcqe(), which is called immediately
346 * after our return, to copy data before the valid bit check above
347 * was done. As such, some of the copied data was stale. The barrier
348 * ensures the check is before any data is copied.
James Smart27f344e2014-05-07 17:16:46 -0400349 */
350 mb();
James Smart4f774512009-05-22 14:52:35 -0400351 return eqe;
352}
353
354/**
James Smartba20c852012-08-03 12:36:52 -0400355 * lpfc_sli4_eq_clr_intr - Turn off interrupts from this EQ
356 * @q: The Event Queue to disable interrupts
357 *
358 **/
James Smart92f3b322019-03-20 10:44:22 -0700359void
James Smartba20c852012-08-03 12:36:52 -0400360lpfc_sli4_eq_clr_intr(struct lpfc_queue *q)
361{
362 struct lpfc_register doorbell;
363
364 doorbell.word0 = 0;
365 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
366 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
367 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
368 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
369 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
James Smart9dd35422018-02-22 08:18:41 -0800370 writel(doorbell.word0, q->phba->sli4_hba.EQDBregaddr);
James Smartba20c852012-08-03 12:36:52 -0400371}
372
373/**
James Smart27d6ac02018-02-22 08:18:42 -0800374 * lpfc_sli4_if6_eq_clr_intr - Turn off interrupts from this EQ
375 * @q: The Event Queue to disable interrupts
376 *
377 **/
James Smart92f3b322019-03-20 10:44:22 -0700378void
James Smart27d6ac02018-02-22 08:18:42 -0800379lpfc_sli4_if6_eq_clr_intr(struct lpfc_queue *q)
380{
381 struct lpfc_register doorbell;
382
383 doorbell.word0 = 0;
James Smartaad59d52018-09-10 10:30:47 -0700384 bf_set(lpfc_if6_eq_doorbell_eqid, &doorbell, q->queue_id);
James Smart27d6ac02018-02-22 08:18:42 -0800385 writel(doorbell.word0, q->phba->sli4_hba.EQDBregaddr);
386}
387
388/**
James Smart32517fc2019-01-28 11:14:33 -0800389 * lpfc_sli4_write_eq_db - write EQ DB for eqe's consumed or arm state
390 * @phba: adapter with EQ
James Smart4f774512009-05-22 14:52:35 -0400391 * @q: The Event Queue that the host has completed processing for.
James Smart32517fc2019-01-28 11:14:33 -0800392 * @count: Number of elements that have been consumed
James Smart4f774512009-05-22 14:52:35 -0400393 * @arm: Indicates whether the host wants to arms this CQ.
394 *
James Smart32517fc2019-01-28 11:14:33 -0800395 * This routine will notify the HBA, by ringing the doorbell, that count
396 * number of EQEs have been processed. The @arm parameter indicates whether
397 * the queue should be rearmed when ringing the doorbell.
James Smart4f774512009-05-22 14:52:35 -0400398 **/
James Smart32517fc2019-01-28 11:14:33 -0800399void
400lpfc_sli4_write_eq_db(struct lpfc_hba *phba, struct lpfc_queue *q,
401 uint32_t count, bool arm)
James Smart4f774512009-05-22 14:52:35 -0400402{
James Smart4f774512009-05-22 14:52:35 -0400403 struct lpfc_register doorbell;
404
James Smart2e90f4b2011-12-13 13:22:37 -0500405 /* sanity check on queue memory */
James Smart32517fc2019-01-28 11:14:33 -0800406 if (unlikely(!q || (count == 0 && !arm)))
407 return;
James Smart4f774512009-05-22 14:52:35 -0400408
409 /* ring doorbell for number popped */
410 doorbell.word0 = 0;
411 if (arm) {
412 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
413 bf_set(lpfc_eqcq_doorbell_eqci, &doorbell, 1);
414 }
James Smart32517fc2019-01-28 11:14:33 -0800415 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, count);
James Smart4f774512009-05-22 14:52:35 -0400416 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_EVENT);
James Smart6b5151f2012-01-18 16:24:06 -0500417 bf_set(lpfc_eqcq_doorbell_eqid_hi, &doorbell,
418 (q->queue_id >> LPFC_EQID_HI_FIELD_SHIFT));
419 bf_set(lpfc_eqcq_doorbell_eqid_lo, &doorbell, q->queue_id);
James Smart9dd35422018-02-22 08:18:41 -0800420 writel(doorbell.word0, q->phba->sli4_hba.EQDBregaddr);
James Smarta747c9c2009-11-18 15:41:10 -0500421 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
422 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
James Smart9dd35422018-02-22 08:18:41 -0800423 readl(q->phba->sli4_hba.EQDBregaddr);
James Smart4f774512009-05-22 14:52:35 -0400424}
425
426/**
James Smart32517fc2019-01-28 11:14:33 -0800427 * lpfc_sli4_if6_write_eq_db - write EQ DB for eqe's consumed or arm state
428 * @phba: adapter with EQ
James Smart27d6ac02018-02-22 08:18:42 -0800429 * @q: The Event Queue that the host has completed processing for.
James Smart32517fc2019-01-28 11:14:33 -0800430 * @count: Number of elements that have been consumed
James Smart27d6ac02018-02-22 08:18:42 -0800431 * @arm: Indicates whether the host wants to arms this CQ.
432 *
James Smart32517fc2019-01-28 11:14:33 -0800433 * This routine will notify the HBA, by ringing the doorbell, that count
434 * number of EQEs have been processed. The @arm parameter indicates whether
435 * the queue should be rearmed when ringing the doorbell.
James Smart27d6ac02018-02-22 08:18:42 -0800436 **/
James Smart32517fc2019-01-28 11:14:33 -0800437void
438lpfc_sli4_if6_write_eq_db(struct lpfc_hba *phba, struct lpfc_queue *q,
439 uint32_t count, bool arm)
James Smart27d6ac02018-02-22 08:18:42 -0800440{
James Smart27d6ac02018-02-22 08:18:42 -0800441 struct lpfc_register doorbell;
442
443 /* sanity check on queue memory */
James Smart32517fc2019-01-28 11:14:33 -0800444 if (unlikely(!q || (count == 0 && !arm)))
445 return;
James Smart27d6ac02018-02-22 08:18:42 -0800446
447 /* ring doorbell for number popped */
448 doorbell.word0 = 0;
449 if (arm)
450 bf_set(lpfc_if6_eq_doorbell_arm, &doorbell, 1);
James Smart32517fc2019-01-28 11:14:33 -0800451 bf_set(lpfc_if6_eq_doorbell_num_released, &doorbell, count);
James Smart27d6ac02018-02-22 08:18:42 -0800452 bf_set(lpfc_if6_eq_doorbell_eqid, &doorbell, q->queue_id);
453 writel(doorbell.word0, q->phba->sli4_hba.EQDBregaddr);
454 /* PCI read to flush PCI pipeline on re-arming for INTx mode */
455 if ((q->phba->intr_type == INTx) && (arm == LPFC_QUEUE_REARM))
456 readl(q->phba->sli4_hba.EQDBregaddr);
James Smart32517fc2019-01-28 11:14:33 -0800457}
458
459static void
460__lpfc_sli4_consume_eqe(struct lpfc_hba *phba, struct lpfc_queue *eq,
461 struct lpfc_eqe *eqe)
462{
463 if (!phba->sli4_hba.pc_sli4_params.eqav)
464 bf_set_le32(lpfc_eqe_valid, eqe, 0);
465
466 eq->host_index = ((eq->host_index + 1) % eq->entry_count);
467
468 /* if the index wrapped around, toggle the valid bit */
469 if (phba->sli4_hba.pc_sli4_params.eqav && !eq->host_index)
470 eq->qe_valid = (eq->qe_valid) ? 0 : 1;
471}
472
473static void
James Smart24c7c0a2019-09-21 20:58:58 -0700474lpfc_sli4_eqcq_flush(struct lpfc_hba *phba, struct lpfc_queue *eq)
James Smart32517fc2019-01-28 11:14:33 -0800475{
James Smart24c7c0a2019-09-21 20:58:58 -0700476 struct lpfc_eqe *eqe = NULL;
477 u32 eq_count = 0, cq_count = 0;
478 struct lpfc_cqe *cqe = NULL;
479 struct lpfc_queue *cq = NULL, *childq = NULL;
480 int cqid = 0;
James Smart32517fc2019-01-28 11:14:33 -0800481
482 /* walk all the EQ entries and drop on the floor */
483 eqe = lpfc_sli4_eq_get(eq);
484 while (eqe) {
James Smart24c7c0a2019-09-21 20:58:58 -0700485 /* Get the reference to the corresponding CQ */
486 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
487 cq = NULL;
488
489 list_for_each_entry(childq, &eq->child_list, list) {
490 if (childq->queue_id == cqid) {
491 cq = childq;
492 break;
493 }
494 }
495 /* If CQ is valid, iterate through it and drop all the CQEs */
496 if (cq) {
497 cqe = lpfc_sli4_cq_get(cq);
498 while (cqe) {
499 __lpfc_sli4_consume_cqe(phba, cq, cqe);
500 cq_count++;
501 cqe = lpfc_sli4_cq_get(cq);
502 }
503 /* Clear and re-arm the CQ */
504 phba->sli4_hba.sli4_write_cq_db(phba, cq, cq_count,
505 LPFC_QUEUE_REARM);
506 cq_count = 0;
507 }
James Smart32517fc2019-01-28 11:14:33 -0800508 __lpfc_sli4_consume_eqe(phba, eq, eqe);
James Smart24c7c0a2019-09-21 20:58:58 -0700509 eq_count++;
James Smart32517fc2019-01-28 11:14:33 -0800510 eqe = lpfc_sli4_eq_get(eq);
511 }
512
513 /* Clear and re-arm the EQ */
James Smart24c7c0a2019-09-21 20:58:58 -0700514 phba->sli4_hba.sli4_write_eq_db(phba, eq, eq_count, LPFC_QUEUE_REARM);
James Smart32517fc2019-01-28 11:14:33 -0800515}
516
517static int
518lpfc_sli4_process_eq(struct lpfc_hba *phba, struct lpfc_queue *eq)
519{
520 struct lpfc_eqe *eqe;
521 int count = 0, consumed = 0;
522
523 if (cmpxchg(&eq->queue_claimed, 0, 1) != 0)
524 goto rearm_and_exit;
525
526 eqe = lpfc_sli4_eq_get(eq);
527 while (eqe) {
528 lpfc_sli4_hba_handle_eqe(phba, eq, eqe);
529 __lpfc_sli4_consume_eqe(phba, eq, eqe);
530
531 consumed++;
532 if (!(++count % eq->max_proc_limit))
533 break;
534
535 if (!(count % eq->notify_interval)) {
536 phba->sli4_hba.sli4_write_eq_db(phba, eq, consumed,
537 LPFC_QUEUE_NOARM);
538 consumed = 0;
539 }
540
541 eqe = lpfc_sli4_eq_get(eq);
542 }
543 eq->EQ_processed += count;
544
545 /* Track the max number of EQEs processed in 1 intr */
546 if (count > eq->EQ_max_eqe)
547 eq->EQ_max_eqe = count;
548
549 eq->queue_claimed = 0;
550
551rearm_and_exit:
552 /* Always clear and re-arm the EQ */
553 phba->sli4_hba.sli4_write_eq_db(phba, eq, consumed, LPFC_QUEUE_REARM);
554
555 return count;
James Smart27d6ac02018-02-22 08:18:42 -0800556}
557
558/**
James Smart4f774512009-05-22 14:52:35 -0400559 * lpfc_sli4_cq_get - Gets the next valid CQE from a CQ
560 * @q: The Completion Queue to get the first valid CQE from
561 *
562 * This routine will get the first valid Completion Queue Entry from @q, update
563 * the queue's internal hba index, and return the CQE. If no valid CQEs are in
564 * the Queue (no more work to do), or the Queue is full of CQEs that have been
565 * processed, but not popped back to the HBA then this routine will return NULL.
566 **/
567static struct lpfc_cqe *
568lpfc_sli4_cq_get(struct lpfc_queue *q)
569{
570 struct lpfc_cqe *cqe;
571
James Smart2e90f4b2011-12-13 13:22:37 -0500572 /* sanity check on queue memory */
573 if (unlikely(!q))
574 return NULL;
James Smart9afbee32019-03-12 16:30:28 -0700575 cqe = lpfc_sli4_qe(q, q->host_index);
James Smart2e90f4b2011-12-13 13:22:37 -0500576
James Smart4f774512009-05-22 14:52:35 -0400577 /* If the next CQE is not valid then we are done */
James Smart7365f6f2018-02-22 08:18:46 -0800578 if (bf_get_le32(lpfc_cqe_valid, cqe) != q->qe_valid)
James Smart4f774512009-05-22 14:52:35 -0400579 return NULL;
James Smart27f344e2014-05-07 17:16:46 -0400580
581 /*
582 * insert barrier for instruction interlock : data from the hardware
583 * must have the valid bit checked before it can be copied and acted
James Smart2ea259e2017-02-12 13:52:27 -0800584 * upon. Given what was seen in lpfc_sli4_cq_get() of speculative
585 * instructions allowing action on content before valid bit checked,
586 * add barrier here as well. May not be needed as "content" is a
587 * single 32-bit entity here (vs multi word structure for cq's).
James Smart27f344e2014-05-07 17:16:46 -0400588 */
589 mb();
James Smart4f774512009-05-22 14:52:35 -0400590 return cqe;
591}
592
James Smart32517fc2019-01-28 11:14:33 -0800593static void
594__lpfc_sli4_consume_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
595 struct lpfc_cqe *cqe)
596{
597 if (!phba->sli4_hba.pc_sli4_params.cqav)
598 bf_set_le32(lpfc_cqe_valid, cqe, 0);
599
600 cq->host_index = ((cq->host_index + 1) % cq->entry_count);
601
602 /* if the index wrapped around, toggle the valid bit */
603 if (phba->sli4_hba.pc_sli4_params.cqav && !cq->host_index)
604 cq->qe_valid = (cq->qe_valid) ? 0 : 1;
605}
606
James Smart4f774512009-05-22 14:52:35 -0400607/**
James Smart32517fc2019-01-28 11:14:33 -0800608 * lpfc_sli4_write_cq_db - write cq DB for entries consumed or arm state.
609 * @phba: the adapter with the CQ
James Smart4f774512009-05-22 14:52:35 -0400610 * @q: The Completion Queue that the host has completed processing for.
James Smart32517fc2019-01-28 11:14:33 -0800611 * @count: the number of elements that were consumed
James Smart4f774512009-05-22 14:52:35 -0400612 * @arm: Indicates whether the host wants to arms this CQ.
613 *
James Smart32517fc2019-01-28 11:14:33 -0800614 * This routine will notify the HBA, by ringing the doorbell, that the
615 * CQEs have been processed. The @arm parameter specifies whether the
616 * queue should be rearmed when ringing the doorbell.
James Smart4f774512009-05-22 14:52:35 -0400617 **/
James Smart32517fc2019-01-28 11:14:33 -0800618void
619lpfc_sli4_write_cq_db(struct lpfc_hba *phba, struct lpfc_queue *q,
620 uint32_t count, bool arm)
James Smart4f774512009-05-22 14:52:35 -0400621{
James Smart4f774512009-05-22 14:52:35 -0400622 struct lpfc_register doorbell;
623
James Smart2e90f4b2011-12-13 13:22:37 -0500624 /* sanity check on queue memory */
James Smart32517fc2019-01-28 11:14:33 -0800625 if (unlikely(!q || (count == 0 && !arm)))
626 return;
James Smart4f774512009-05-22 14:52:35 -0400627
628 /* ring doorbell for number popped */
629 doorbell.word0 = 0;
630 if (arm)
631 bf_set(lpfc_eqcq_doorbell_arm, &doorbell, 1);
James Smart32517fc2019-01-28 11:14:33 -0800632 bf_set(lpfc_eqcq_doorbell_num_released, &doorbell, count);
James Smart4f774512009-05-22 14:52:35 -0400633 bf_set(lpfc_eqcq_doorbell_qt, &doorbell, LPFC_QUEUE_TYPE_COMPLETION);
James Smart6b5151f2012-01-18 16:24:06 -0500634 bf_set(lpfc_eqcq_doorbell_cqid_hi, &doorbell,
635 (q->queue_id >> LPFC_CQID_HI_FIELD_SHIFT));
636 bf_set(lpfc_eqcq_doorbell_cqid_lo, &doorbell, q->queue_id);
James Smart9dd35422018-02-22 08:18:41 -0800637 writel(doorbell.word0, q->phba->sli4_hba.CQDBregaddr);
James Smart4f774512009-05-22 14:52:35 -0400638}
639
640/**
James Smart32517fc2019-01-28 11:14:33 -0800641 * lpfc_sli4_if6_write_cq_db - write cq DB for entries consumed or arm state.
642 * @phba: the adapter with the CQ
James Smart27d6ac02018-02-22 08:18:42 -0800643 * @q: The Completion Queue that the host has completed processing for.
James Smart32517fc2019-01-28 11:14:33 -0800644 * @count: the number of elements that were consumed
James Smart27d6ac02018-02-22 08:18:42 -0800645 * @arm: Indicates whether the host wants to arms this CQ.
646 *
James Smart32517fc2019-01-28 11:14:33 -0800647 * This routine will notify the HBA, by ringing the doorbell, that the
648 * CQEs have been processed. The @arm parameter specifies whether the
649 * queue should be rearmed when ringing the doorbell.
James Smart27d6ac02018-02-22 08:18:42 -0800650 **/
James Smart32517fc2019-01-28 11:14:33 -0800651void
652lpfc_sli4_if6_write_cq_db(struct lpfc_hba *phba, struct lpfc_queue *q,
653 uint32_t count, bool arm)
James Smart27d6ac02018-02-22 08:18:42 -0800654{
James Smart27d6ac02018-02-22 08:18:42 -0800655 struct lpfc_register doorbell;
656
657 /* sanity check on queue memory */
James Smart32517fc2019-01-28 11:14:33 -0800658 if (unlikely(!q || (count == 0 && !arm)))
659 return;
James Smart27d6ac02018-02-22 08:18:42 -0800660
661 /* ring doorbell for number popped */
662 doorbell.word0 = 0;
663 if (arm)
664 bf_set(lpfc_if6_cq_doorbell_arm, &doorbell, 1);
James Smart32517fc2019-01-28 11:14:33 -0800665 bf_set(lpfc_if6_cq_doorbell_num_released, &doorbell, count);
James Smart27d6ac02018-02-22 08:18:42 -0800666 bf_set(lpfc_if6_cq_doorbell_cqid, &doorbell, q->queue_id);
667 writel(doorbell.word0, q->phba->sli4_hba.CQDBregaddr);
James Smart27d6ac02018-02-22 08:18:42 -0800668}
669
670/**
James Smart4f774512009-05-22 14:52:35 -0400671 * lpfc_sli4_rq_put - Put a Receive Buffer Queue Entry on a Receive Queue
672 * @q: The Header Receive Queue to operate on.
673 * @wqe: The Receive Queue Entry to put on the Receive queue.
674 *
675 * This routine will copy the contents of @wqe to the next available entry on
676 * the @q. This function will then ring the Receive Queue Doorbell to signal the
677 * HBA to start processing the Receive Queue Entry. This function returns the
678 * index that the rqe was copied to if successful. If no entries are available
679 * on @q then this function will return -ENOMEM.
680 * The caller is expected to hold the hbalock when calling this routine.
681 **/
James Smart895427b2017-02-12 13:52:30 -0800682int
James Smart4f774512009-05-22 14:52:35 -0400683lpfc_sli4_rq_put(struct lpfc_queue *hq, struct lpfc_queue *dq,
684 struct lpfc_rqe *hrqe, struct lpfc_rqe *drqe)
685{
James Smart2e90f4b2011-12-13 13:22:37 -0500686 struct lpfc_rqe *temp_hrqe;
687 struct lpfc_rqe *temp_drqe;
James Smart4f774512009-05-22 14:52:35 -0400688 struct lpfc_register doorbell;
James Smartcbc5de12017-12-08 17:18:04 -0800689 int hq_put_index;
690 int dq_put_index;
James Smart4f774512009-05-22 14:52:35 -0400691
James Smart2e90f4b2011-12-13 13:22:37 -0500692 /* sanity check on queue memory */
693 if (unlikely(!hq) || unlikely(!dq))
694 return -ENOMEM;
James Smartcbc5de12017-12-08 17:18:04 -0800695 hq_put_index = hq->host_index;
696 dq_put_index = dq->host_index;
James Smart9afbee32019-03-12 16:30:28 -0700697 temp_hrqe = lpfc_sli4_qe(hq, hq_put_index);
698 temp_drqe = lpfc_sli4_qe(dq, dq_put_index);
James Smart2e90f4b2011-12-13 13:22:37 -0500699
James Smart4f774512009-05-22 14:52:35 -0400700 if (hq->type != LPFC_HRQ || dq->type != LPFC_DRQ)
701 return -EINVAL;
James Smartcbc5de12017-12-08 17:18:04 -0800702 if (hq_put_index != dq_put_index)
James Smart4f774512009-05-22 14:52:35 -0400703 return -EINVAL;
704 /* If the host has not yet processed the next entry then we are done */
James Smartcbc5de12017-12-08 17:18:04 -0800705 if (((hq_put_index + 1) % hq->entry_count) == hq->hba_index)
James Smart4f774512009-05-22 14:52:35 -0400706 return -EBUSY;
James Smart48f8fdb2018-05-04 20:37:51 -0700707 lpfc_sli4_pcimem_bcopy(hrqe, temp_hrqe, hq->entry_size);
708 lpfc_sli4_pcimem_bcopy(drqe, temp_drqe, dq->entry_size);
James Smart4f774512009-05-22 14:52:35 -0400709
710 /* Update the host index to point to the next slot */
James Smartcbc5de12017-12-08 17:18:04 -0800711 hq->host_index = ((hq_put_index + 1) % hq->entry_count);
712 dq->host_index = ((dq_put_index + 1) % dq->entry_count);
James Smart61f3d4b2017-05-15 15:20:41 -0700713 hq->RQ_buf_posted++;
James Smart4f774512009-05-22 14:52:35 -0400714
715 /* Ring The Header Receive Queue Doorbell */
James Smart32517fc2019-01-28 11:14:33 -0800716 if (!(hq->host_index % hq->notify_interval)) {
James Smart4f774512009-05-22 14:52:35 -0400717 doorbell.word0 = 0;
James Smart962bc512013-01-03 15:44:00 -0500718 if (hq->db_format == LPFC_DB_RING_FORMAT) {
719 bf_set(lpfc_rq_db_ring_fm_num_posted, &doorbell,
James Smart32517fc2019-01-28 11:14:33 -0800720 hq->notify_interval);
James Smart962bc512013-01-03 15:44:00 -0500721 bf_set(lpfc_rq_db_ring_fm_id, &doorbell, hq->queue_id);
722 } else if (hq->db_format == LPFC_DB_LIST_FORMAT) {
723 bf_set(lpfc_rq_db_list_fm_num_posted, &doorbell,
James Smart32517fc2019-01-28 11:14:33 -0800724 hq->notify_interval);
James Smart962bc512013-01-03 15:44:00 -0500725 bf_set(lpfc_rq_db_list_fm_index, &doorbell,
726 hq->host_index);
727 bf_set(lpfc_rq_db_list_fm_id, &doorbell, hq->queue_id);
728 } else {
729 return -EINVAL;
730 }
731 writel(doorbell.word0, hq->db_regaddr);
James Smart4f774512009-05-22 14:52:35 -0400732 }
James Smartcbc5de12017-12-08 17:18:04 -0800733 return hq_put_index;
James Smart4f774512009-05-22 14:52:35 -0400734}
735
736/**
737 * lpfc_sli4_rq_release - Updates internal hba index for RQ
738 * @q: The Header Receive Queue to operate on.
739 *
740 * This routine will update the HBA index of a queue to reflect consumption of
741 * one Receive Queue Entry by the HBA. When the HBA indicates that it has
742 * consumed an entry the host calls this function to update the queue's
743 * internal pointers. This routine returns the number of entries that were
744 * consumed by the HBA.
745 **/
746static uint32_t
747lpfc_sli4_rq_release(struct lpfc_queue *hq, struct lpfc_queue *dq)
748{
James Smart2e90f4b2011-12-13 13:22:37 -0500749 /* sanity check on queue memory */
750 if (unlikely(!hq) || unlikely(!dq))
751 return 0;
752
James Smart4f774512009-05-22 14:52:35 -0400753 if ((hq->type != LPFC_HRQ) || (dq->type != LPFC_DRQ))
754 return 0;
755 hq->hba_index = ((hq->hba_index + 1) % hq->entry_count);
756 dq->hba_index = ((dq->hba_index + 1) % dq->entry_count);
757 return 1;
758}
759
James Smarte59058c2008-08-24 21:49:00 -0400760/**
James Smart3621a712009-04-06 18:47:14 -0400761 * lpfc_cmd_iocb - Get next command iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400762 * @phba: Pointer to HBA context object.
763 * @pring: Pointer to driver SLI ring object.
764 *
765 * This function returns pointer to next command iocb entry
766 * in the command ring. The caller must hold hbalock to prevent
767 * other threads consume the next command iocb.
768 * SLI-2/SLI-3 provide different sized iocbs.
769 **/
James Smarted957682007-06-17 19:56:37 -0500770static inline IOCB_t *
771lpfc_cmd_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
772{
James Smart7e56aa22012-08-03 12:35:34 -0400773 return (IOCB_t *) (((char *) pring->sli.sli3.cmdringaddr) +
774 pring->sli.sli3.cmdidx * phba->iocb_cmd_size);
James Smarted957682007-06-17 19:56:37 -0500775}
776
James Smarte59058c2008-08-24 21:49:00 -0400777/**
James Smart3621a712009-04-06 18:47:14 -0400778 * lpfc_resp_iocb - Get next response iocb entry in the ring
James Smarte59058c2008-08-24 21:49:00 -0400779 * @phba: Pointer to HBA context object.
780 * @pring: Pointer to driver SLI ring object.
781 *
782 * This function returns pointer to next response iocb entry
783 * in the response ring. The caller must hold hbalock to make sure
784 * that no other thread consume the next response iocb.
785 * SLI-2/SLI-3 provide different sized iocbs.
786 **/
James Smarted957682007-06-17 19:56:37 -0500787static inline IOCB_t *
788lpfc_resp_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
789{
James Smart7e56aa22012-08-03 12:35:34 -0400790 return (IOCB_t *) (((char *) pring->sli.sli3.rspringaddr) +
791 pring->sli.sli3.rspidx * phba->iocb_rsp_size);
James Smarted957682007-06-17 19:56:37 -0500792}
793
James Smarte59058c2008-08-24 21:49:00 -0400794/**
James Smart3621a712009-04-06 18:47:14 -0400795 * __lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -0400796 * @phba: Pointer to HBA context object.
797 *
798 * This function is called with hbalock held. This function
799 * allocates a new driver iocb object from the iocb pool. If the
800 * allocation is successful, it returns pointer to the newly
801 * allocated iocb object else it returns NULL.
802 **/
James Smart4f2e66c2012-05-09 21:17:07 -0400803struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -0500804__lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400805{
806 struct list_head *lpfc_iocb_list = &phba->lpfc_iocb_list;
807 struct lpfc_iocbq * iocbq = NULL;
808
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +0100809 lockdep_assert_held(&phba->hbalock);
810
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400811 list_remove_head(lpfc_iocb_list, iocbq, struct lpfc_iocbq, list);
James Smart2a9bf3d2010-06-07 15:24:45 -0400812 if (iocbq)
813 phba->iocb_cnt++;
814 if (phba->iocb_cnt > phba->iocb_max)
815 phba->iocb_max = phba->iocb_cnt;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -0400816 return iocbq;
817}
818
James Smarte59058c2008-08-24 21:49:00 -0400819/**
James Smartda0436e2009-05-22 14:51:39 -0400820 * __lpfc_clear_active_sglq - Remove the active sglq for this XRI.
821 * @phba: Pointer to HBA context object.
822 * @xritag: XRI value.
823 *
824 * This function clears the sglq pointer from the array of acive
825 * sglq's. The xritag that is passed in is used to index into the
826 * array. Before the xritag can be used it needs to be adjusted
827 * by subtracting the xribase.
828 *
829 * Returns sglq ponter = success, NULL = Failure.
830 **/
James Smart895427b2017-02-12 13:52:30 -0800831struct lpfc_sglq *
James Smartda0436e2009-05-22 14:51:39 -0400832__lpfc_clear_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
833{
James Smartda0436e2009-05-22 14:51:39 -0400834 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400835
836 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
837 phba->sli4_hba.lpfc_sglq_active_list[xritag] = NULL;
James Smartda0436e2009-05-22 14:51:39 -0400838 return sglq;
839}
840
841/**
842 * __lpfc_get_active_sglq - Get the active sglq for this XRI.
843 * @phba: Pointer to HBA context object.
844 * @xritag: XRI value.
845 *
846 * This function returns the sglq pointer from the array of acive
847 * sglq's. The xritag that is passed in is used to index into the
848 * array. Before the xritag can be used it needs to be adjusted
849 * by subtracting the xribase.
850 *
851 * Returns sglq ponter = success, NULL = Failure.
852 **/
James Smart0f65ff62010-02-26 14:14:23 -0500853struct lpfc_sglq *
James Smartda0436e2009-05-22 14:51:39 -0400854__lpfc_get_active_sglq(struct lpfc_hba *phba, uint16_t xritag)
855{
James Smartda0436e2009-05-22 14:51:39 -0400856 struct lpfc_sglq *sglq;
James Smart6d368e52011-05-24 11:44:12 -0400857
858 sglq = phba->sli4_hba.lpfc_sglq_active_list[xritag];
James Smartda0436e2009-05-22 14:51:39 -0400859 return sglq;
860}
861
862/**
James Smart1151e3e2011-02-16 12:39:35 -0500863 * lpfc_clr_rrq_active - Clears RRQ active bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -0500864 * @phba: Pointer to HBA context object.
865 * @xritag: xri used in this exchange.
866 * @rrq: The RRQ to be cleared.
867 *
James Smart19ca7602010-11-20 23:11:55 -0500868 **/
James Smart1151e3e2011-02-16 12:39:35 -0500869void
870lpfc_clr_rrq_active(struct lpfc_hba *phba,
871 uint16_t xritag,
872 struct lpfc_node_rrq *rrq)
James Smart19ca7602010-11-20 23:11:55 -0500873{
James Smart1151e3e2011-02-16 12:39:35 -0500874 struct lpfc_nodelist *ndlp = NULL;
James Smart19ca7602010-11-20 23:11:55 -0500875
James Smart1151e3e2011-02-16 12:39:35 -0500876 if ((rrq->vport) && NLP_CHK_NODE_ACT(rrq->ndlp))
877 ndlp = lpfc_findnode_did(rrq->vport, rrq->nlp_DID);
James Smart19ca7602010-11-20 23:11:55 -0500878
879 /* The target DID could have been swapped (cable swap)
880 * we should use the ndlp from the findnode if it is
881 * available.
882 */
James Smart1151e3e2011-02-16 12:39:35 -0500883 if ((!ndlp) && rrq->ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500884 ndlp = rrq->ndlp;
885
James Smart1151e3e2011-02-16 12:39:35 -0500886 if (!ndlp)
887 goto out;
888
James Smartcff261f2013-12-17 20:29:47 -0500889 if (test_and_clear_bit(xritag, ndlp->active_rrqs_xri_bitmap)) {
James Smart19ca7602010-11-20 23:11:55 -0500890 rrq->send_rrq = 0;
891 rrq->xritag = 0;
892 rrq->rrq_stop_time = 0;
893 }
James Smart1151e3e2011-02-16 12:39:35 -0500894out:
James Smart19ca7602010-11-20 23:11:55 -0500895 mempool_free(rrq, phba->rrq_pool);
896}
897
898/**
899 * lpfc_handle_rrq_active - Checks if RRQ has waithed RATOV.
900 * @phba: Pointer to HBA context object.
901 *
902 * This function is called with hbalock held. This function
903 * Checks if stop_time (ratov from setting rrq active) has
904 * been reached, if it has and the send_rrq flag is set then
905 * it will call lpfc_send_rrq. If the send_rrq flag is not set
906 * then it will just call the routine to clear the rrq and
907 * free the rrq resource.
908 * The timer is set to the next rrq that is going to expire before
909 * leaving the routine.
910 *
911 **/
912void
913lpfc_handle_rrq_active(struct lpfc_hba *phba)
914{
915 struct lpfc_node_rrq *rrq;
916 struct lpfc_node_rrq *nextrrq;
917 unsigned long next_time;
918 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500919 LIST_HEAD(send_rrq);
James Smart19ca7602010-11-20 23:11:55 -0500920
921 spin_lock_irqsave(&phba->hbalock, iflags);
922 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
James Smart256ec0d2013-04-17 20:14:58 -0400923 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
James Smart19ca7602010-11-20 23:11:55 -0500924 list_for_each_entry_safe(rrq, nextrrq,
James Smart1151e3e2011-02-16 12:39:35 -0500925 &phba->active_rrq_list, list) {
926 if (time_after(jiffies, rrq->rrq_stop_time))
927 list_move(&rrq->list, &send_rrq);
928 else if (time_before(rrq->rrq_stop_time, next_time))
James Smart19ca7602010-11-20 23:11:55 -0500929 next_time = rrq->rrq_stop_time;
930 }
931 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart06918ac2014-02-20 09:57:57 -0500932 if ((!list_empty(&phba->active_rrq_list)) &&
933 (!(phba->pport->load_flag & FC_UNLOADING)))
James Smart19ca7602010-11-20 23:11:55 -0500934 mod_timer(&phba->rrq_tmr, next_time);
James Smart1151e3e2011-02-16 12:39:35 -0500935 list_for_each_entry_safe(rrq, nextrrq, &send_rrq, list) {
936 list_del(&rrq->list);
Bart Van Asscheffd43812019-03-28 11:06:17 -0700937 if (!rrq->send_rrq) {
James Smart1151e3e2011-02-16 12:39:35 -0500938 /* this call will free the rrq */
Bart Van Asscheffd43812019-03-28 11:06:17 -0700939 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
940 } else if (lpfc_send_rrq(phba, rrq)) {
James Smart1151e3e2011-02-16 12:39:35 -0500941 /* if we send the rrq then the completion handler
942 * will clear the bit in the xribitmap.
943 */
944 lpfc_clr_rrq_active(phba, rrq->xritag,
945 rrq);
946 }
947 }
James Smart19ca7602010-11-20 23:11:55 -0500948}
949
950/**
951 * lpfc_get_active_rrq - Get the active RRQ for this exchange.
952 * @vport: Pointer to vport context object.
953 * @xri: The xri used in the exchange.
954 * @did: The targets DID for this exchange.
955 *
956 * returns NULL = rrq not found in the phba->active_rrq_list.
957 * rrq = rrq for this xri and target.
958 **/
959struct lpfc_node_rrq *
960lpfc_get_active_rrq(struct lpfc_vport *vport, uint16_t xri, uint32_t did)
961{
962 struct lpfc_hba *phba = vport->phba;
963 struct lpfc_node_rrq *rrq;
964 struct lpfc_node_rrq *nextrrq;
965 unsigned long iflags;
966
967 if (phba->sli_rev != LPFC_SLI_REV4)
968 return NULL;
969 spin_lock_irqsave(&phba->hbalock, iflags);
970 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list) {
971 if (rrq->vport == vport && rrq->xritag == xri &&
972 rrq->nlp_DID == did){
973 list_del(&rrq->list);
974 spin_unlock_irqrestore(&phba->hbalock, iflags);
975 return rrq;
976 }
977 }
978 spin_unlock_irqrestore(&phba->hbalock, iflags);
979 return NULL;
980}
981
982/**
983 * lpfc_cleanup_vports_rrqs - Remove and clear the active RRQ for this vport.
984 * @vport: Pointer to vport context object.
James Smart1151e3e2011-02-16 12:39:35 -0500985 * @ndlp: Pointer to the lpfc_node_list structure.
986 * If ndlp is NULL Remove all active RRQs for this vport from the
987 * phba->active_rrq_list and clear the rrq.
988 * If ndlp is not NULL then only remove rrqs for this vport & this ndlp.
James Smart19ca7602010-11-20 23:11:55 -0500989 **/
990void
James Smart1151e3e2011-02-16 12:39:35 -0500991lpfc_cleanup_vports_rrqs(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
James Smart19ca7602010-11-20 23:11:55 -0500992
993{
994 struct lpfc_hba *phba = vport->phba;
995 struct lpfc_node_rrq *rrq;
996 struct lpfc_node_rrq *nextrrq;
997 unsigned long iflags;
James Smart1151e3e2011-02-16 12:39:35 -0500998 LIST_HEAD(rrq_list);
James Smart19ca7602010-11-20 23:11:55 -0500999
1000 if (phba->sli_rev != LPFC_SLI_REV4)
1001 return;
James Smart1151e3e2011-02-16 12:39:35 -05001002 if (!ndlp) {
1003 lpfc_sli4_vport_delete_els_xri_aborted(vport);
1004 lpfc_sli4_vport_delete_fcp_xri_aborted(vport);
James Smart19ca7602010-11-20 23:11:55 -05001005 }
James Smart1151e3e2011-02-16 12:39:35 -05001006 spin_lock_irqsave(&phba->hbalock, iflags);
1007 list_for_each_entry_safe(rrq, nextrrq, &phba->active_rrq_list, list)
1008 if ((rrq->vport == vport) && (!ndlp || rrq->ndlp == ndlp))
1009 list_move(&rrq->list, &rrq_list);
James Smart19ca7602010-11-20 23:11:55 -05001010 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart1151e3e2011-02-16 12:39:35 -05001011
1012 list_for_each_entry_safe(rrq, nextrrq, &rrq_list, list) {
1013 list_del(&rrq->list);
1014 lpfc_clr_rrq_active(phba, rrq->xritag, rrq);
1015 }
James Smart19ca7602010-11-20 23:11:55 -05001016}
1017
1018/**
James Smart1151e3e2011-02-16 12:39:35 -05001019 * lpfc_test_rrq_active - Test RRQ bit in xri_bitmap.
James Smart19ca7602010-11-20 23:11:55 -05001020 * @phba: Pointer to HBA context object.
1021 * @ndlp: Targets nodelist pointer for this exchange.
1022 * @xritag the xri in the bitmap to test.
1023 *
James Smarte2a8be52019-05-06 17:26:47 -07001024 * This function returns:
1025 * 0 = rrq not active for this xri
1026 * 1 = rrq is valid for this xri.
James Smart19ca7602010-11-20 23:11:55 -05001027 **/
James Smart1151e3e2011-02-16 12:39:35 -05001028int
1029lpfc_test_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smart19ca7602010-11-20 23:11:55 -05001030 uint16_t xritag)
1031{
James Smart19ca7602010-11-20 23:11:55 -05001032 if (!ndlp)
1033 return 0;
James Smartcff261f2013-12-17 20:29:47 -05001034 if (!ndlp->active_rrqs_xri_bitmap)
1035 return 0;
1036 if (test_bit(xritag, ndlp->active_rrqs_xri_bitmap))
Colin Ian King258f84f2019-02-12 15:29:45 +00001037 return 1;
James Smart19ca7602010-11-20 23:11:55 -05001038 else
1039 return 0;
1040}
1041
1042/**
1043 * lpfc_set_rrq_active - set RRQ active bit in xri_bitmap.
1044 * @phba: Pointer to HBA context object.
1045 * @ndlp: nodelist pointer for this target.
1046 * @xritag: xri used in this exchange.
1047 * @rxid: Remote Exchange ID.
1048 * @send_rrq: Flag used to determine if we should send rrq els cmd.
1049 *
1050 * This function takes the hbalock.
1051 * The active bit is always set in the active rrq xri_bitmap even
1052 * if there is no slot avaiable for the other rrq information.
1053 *
1054 * returns 0 rrq actived for this xri
1055 * < 0 No memory or invalid ndlp.
1056 **/
1057int
1058lpfc_set_rrq_active(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp,
James Smartb42c07c2012-01-18 16:25:55 -05001059 uint16_t xritag, uint16_t rxid, uint16_t send_rrq)
James Smart19ca7602010-11-20 23:11:55 -05001060{
James Smart19ca7602010-11-20 23:11:55 -05001061 unsigned long iflags;
James Smartb42c07c2012-01-18 16:25:55 -05001062 struct lpfc_node_rrq *rrq;
1063 int empty;
1064
1065 if (!ndlp)
1066 return -EINVAL;
1067
1068 if (!phba->cfg_enable_rrq)
1069 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -05001070
1071 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -05001072 if (phba->pport->load_flag & FC_UNLOADING) {
1073 phba->hba_flag &= ~HBA_RRQ_ACTIVE;
1074 goto out;
1075 }
1076
1077 /*
1078 * set the active bit even if there is no mem available.
1079 */
1080 if (NLP_CHK_FREE_REQ(ndlp))
1081 goto out;
1082
1083 if (ndlp->vport && (ndlp->vport->load_flag & FC_UNLOADING))
1084 goto out;
1085
James Smartcff261f2013-12-17 20:29:47 -05001086 if (!ndlp->active_rrqs_xri_bitmap)
1087 goto out;
1088
1089 if (test_and_set_bit(xritag, ndlp->active_rrqs_xri_bitmap))
James Smartb42c07c2012-01-18 16:25:55 -05001090 goto out;
1091
James Smart19ca7602010-11-20 23:11:55 -05001092 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smartb42c07c2012-01-18 16:25:55 -05001093 rrq = mempool_alloc(phba->rrq_pool, GFP_KERNEL);
1094 if (!rrq) {
1095 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
1096 "3155 Unable to allocate RRQ xri:0x%x rxid:0x%x"
1097 " DID:0x%x Send:%d\n",
1098 xritag, rxid, ndlp->nlp_DID, send_rrq);
1099 return -EINVAL;
1100 }
James Smarte5771b42013-03-01 16:37:14 -05001101 if (phba->cfg_enable_rrq == 1)
1102 rrq->send_rrq = send_rrq;
1103 else
1104 rrq->send_rrq = 0;
James Smartb42c07c2012-01-18 16:25:55 -05001105 rrq->xritag = xritag;
James Smart256ec0d2013-04-17 20:14:58 -04001106 rrq->rrq_stop_time = jiffies +
1107 msecs_to_jiffies(1000 * (phba->fc_ratov + 1));
James Smartb42c07c2012-01-18 16:25:55 -05001108 rrq->ndlp = ndlp;
1109 rrq->nlp_DID = ndlp->nlp_DID;
1110 rrq->vport = ndlp->vport;
1111 rrq->rxid = rxid;
James Smartb42c07c2012-01-18 16:25:55 -05001112 spin_lock_irqsave(&phba->hbalock, iflags);
1113 empty = list_empty(&phba->active_rrq_list);
1114 list_add_tail(&rrq->list, &phba->active_rrq_list);
1115 phba->hba_flag |= HBA_RRQ_ACTIVE;
1116 if (empty)
1117 lpfc_worker_wake_up(phba);
1118 spin_unlock_irqrestore(&phba->hbalock, iflags);
1119 return 0;
1120out:
1121 spin_unlock_irqrestore(&phba->hbalock, iflags);
1122 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
1123 "2921 Can't set rrq active xri:0x%x rxid:0x%x"
1124 " DID:0x%x Send:%d\n",
1125 xritag, rxid, ndlp->nlp_DID, send_rrq);
1126 return -EINVAL;
James Smart19ca7602010-11-20 23:11:55 -05001127}
1128
1129/**
James Smart895427b2017-02-12 13:52:30 -08001130 * __lpfc_sli_get_els_sglq - Allocates an iocb object from sgl pool
James Smartda0436e2009-05-22 14:51:39 -04001131 * @phba: Pointer to HBA context object.
James Smart19ca7602010-11-20 23:11:55 -05001132 * @piocb: Pointer to the iocbq.
James Smartda0436e2009-05-22 14:51:39 -04001133 *
James Smarte2a8be52019-05-06 17:26:47 -07001134 * The driver calls this function with either the nvme ls ring lock
1135 * or the fc els ring lock held depending on the iocb usage. This function
1136 * gets a new driver sglq object from the sglq list. If the list is not empty
1137 * then it is successful, it returns pointer to the newly allocated sglq
1138 * object else it returns NULL.
James Smartda0436e2009-05-22 14:51:39 -04001139 **/
1140static struct lpfc_sglq *
James Smart895427b2017-02-12 13:52:30 -08001141__lpfc_sli_get_els_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
James Smartda0436e2009-05-22 14:51:39 -04001142{
James Smart895427b2017-02-12 13:52:30 -08001143 struct list_head *lpfc_els_sgl_list = &phba->sli4_hba.lpfc_els_sgl_list;
James Smartda0436e2009-05-22 14:51:39 -04001144 struct lpfc_sglq *sglq = NULL;
James Smart19ca7602010-11-20 23:11:55 -05001145 struct lpfc_sglq *start_sglq = NULL;
James Smartc4908502019-01-28 11:14:28 -08001146 struct lpfc_io_buf *lpfc_cmd;
James Smart19ca7602010-11-20 23:11:55 -05001147 struct lpfc_nodelist *ndlp;
James Smarte2a8be52019-05-06 17:26:47 -07001148 struct lpfc_sli_ring *pring = NULL;
James Smart19ca7602010-11-20 23:11:55 -05001149 int found = 0;
1150
James Smarte2a8be52019-05-06 17:26:47 -07001151 if (piocbq->iocb_flag & LPFC_IO_NVME_LS)
1152 pring = phba->sli4_hba.nvmels_wq->pring;
1153 else
1154 pring = lpfc_phba_elsring(phba);
1155
1156 lockdep_assert_held(&pring->ring_lock);
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001157
James Smart19ca7602010-11-20 23:11:55 -05001158 if (piocbq->iocb_flag & LPFC_IO_FCP) {
James Smartc4908502019-01-28 11:14:28 -08001159 lpfc_cmd = (struct lpfc_io_buf *) piocbq->context1;
James Smart19ca7602010-11-20 23:11:55 -05001160 ndlp = lpfc_cmd->rdata->pnode;
James Smartbe858b62010-12-15 17:57:20 -05001161 } else if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
James Smart6c7cf482015-04-07 15:07:25 -04001162 !(piocbq->iocb_flag & LPFC_IO_LIBDFC)) {
James Smart19ca7602010-11-20 23:11:55 -05001163 ndlp = piocbq->context_un.ndlp;
James Smart6c7cf482015-04-07 15:07:25 -04001164 } else if (piocbq->iocb_flag & LPFC_IO_LIBDFC) {
1165 if (piocbq->iocb_flag & LPFC_IO_LOOPBACK)
1166 ndlp = NULL;
1167 else
1168 ndlp = piocbq->context_un.ndlp;
1169 } else {
James Smart19ca7602010-11-20 23:11:55 -05001170 ndlp = piocbq->context1;
James Smart6c7cf482015-04-07 15:07:25 -04001171 }
James Smart19ca7602010-11-20 23:11:55 -05001172
James Smart895427b2017-02-12 13:52:30 -08001173 spin_lock(&phba->sli4_hba.sgl_list_lock);
1174 list_remove_head(lpfc_els_sgl_list, sglq, struct lpfc_sglq, list);
James Smart19ca7602010-11-20 23:11:55 -05001175 start_sglq = sglq;
1176 while (!found) {
1177 if (!sglq)
James Smartd11f54b2017-03-04 09:30:24 -08001178 break;
James Smart895427b2017-02-12 13:52:30 -08001179 if (ndlp && ndlp->active_rrqs_xri_bitmap &&
1180 test_bit(sglq->sli4_lxritag,
1181 ndlp->active_rrqs_xri_bitmap)) {
James Smart19ca7602010-11-20 23:11:55 -05001182 /* This xri has an rrq outstanding for this DID.
1183 * put it back in the list and get another xri.
1184 */
James Smart895427b2017-02-12 13:52:30 -08001185 list_add_tail(&sglq->list, lpfc_els_sgl_list);
James Smart19ca7602010-11-20 23:11:55 -05001186 sglq = NULL;
James Smart895427b2017-02-12 13:52:30 -08001187 list_remove_head(lpfc_els_sgl_list, sglq,
James Smart19ca7602010-11-20 23:11:55 -05001188 struct lpfc_sglq, list);
1189 if (sglq == start_sglq) {
James Smart14041bd2017-06-01 21:07:01 -07001190 list_add_tail(&sglq->list, lpfc_els_sgl_list);
James Smart19ca7602010-11-20 23:11:55 -05001191 sglq = NULL;
1192 break;
1193 } else
1194 continue;
1195 }
1196 sglq->ndlp = ndlp;
1197 found = 1;
James Smart6d368e52011-05-24 11:44:12 -04001198 phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
James Smart19ca7602010-11-20 23:11:55 -05001199 sglq->state = SGL_ALLOCATED;
1200 }
James Smart895427b2017-02-12 13:52:30 -08001201 spin_unlock(&phba->sli4_hba.sgl_list_lock);
James Smartda0436e2009-05-22 14:51:39 -04001202 return sglq;
1203}
1204
1205/**
James Smartf358dd02017-02-12 13:52:34 -08001206 * __lpfc_sli_get_nvmet_sglq - Allocates an iocb object from sgl pool
1207 * @phba: Pointer to HBA context object.
1208 * @piocb: Pointer to the iocbq.
1209 *
1210 * This function is called with the sgl_list lock held. This function
1211 * gets a new driver sglq object from the sglq list. If the
1212 * list is not empty then it is successful, it returns pointer to the newly
1213 * allocated sglq object else it returns NULL.
1214 **/
1215struct lpfc_sglq *
1216__lpfc_sli_get_nvmet_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
1217{
1218 struct list_head *lpfc_nvmet_sgl_list;
1219 struct lpfc_sglq *sglq = NULL;
1220
1221 lpfc_nvmet_sgl_list = &phba->sli4_hba.lpfc_nvmet_sgl_list;
1222
1223 lockdep_assert_held(&phba->sli4_hba.sgl_list_lock);
1224
1225 list_remove_head(lpfc_nvmet_sgl_list, sglq, struct lpfc_sglq, list);
1226 if (!sglq)
1227 return NULL;
1228 phba->sli4_hba.lpfc_sglq_active_list[sglq->sli4_lxritag] = sglq;
1229 sglq->state = SGL_ALLOCATED;
dea31012005-04-17 16:05:31 -05001230 return sglq;
1231}
1232
James Smarte59058c2008-08-24 21:49:00 -04001233/**
James Smart3621a712009-04-06 18:47:14 -04001234 * lpfc_sli_get_iocbq - Allocates an iocb object from iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001235 * @phba: Pointer to HBA context object.
1236 *
1237 * This function is called with no lock held. This function
1238 * allocates a new driver iocb object from the iocb pool. If the
1239 * allocation is successful, it returns pointer to the newly
1240 * allocated iocb object else it returns NULL.
1241 **/
James Smart2e0fef82007-06-17 19:56:36 -05001242struct lpfc_iocbq *
1243lpfc_sli_get_iocbq(struct lpfc_hba *phba)
James Bottomley604a3e32005-10-29 10:28:33 -05001244{
James Smart2e0fef82007-06-17 19:56:36 -05001245 struct lpfc_iocbq * iocbq = NULL;
1246 unsigned long iflags;
1247
1248 spin_lock_irqsave(&phba->hbalock, iflags);
1249 iocbq = __lpfc_sli_get_iocbq(phba);
1250 spin_unlock_irqrestore(&phba->hbalock, iflags);
1251 return iocbq;
1252}
1253
James Smarte59058c2008-08-24 21:49:00 -04001254/**
James Smart4f774512009-05-22 14:52:35 -04001255 * __lpfc_sli_release_iocbq_s4 - Release iocb to the iocb pool
1256 * @phba: Pointer to HBA context object.
1257 * @iocbq: Pointer to driver iocb object.
1258 *
1259 * This function is called with hbalock held to release driver
1260 * iocb object to the iocb pool. The iotag in the iocb object
1261 * does not change for each use of the iocb object. This function
1262 * clears all other fields of the iocb object when it is freed.
1263 * The sqlq structure that holds the xritag and phys and virtual
1264 * mappings for the scatter gather list is retrieved from the
1265 * active array of sglq. The get of the sglq pointer also clears
1266 * the entry in the array. If the status of the IO indiactes that
1267 * this IO was aborted then the sglq entry it put on the
1268 * lpfc_abts_els_sgl_list until the CQ_ABORTED_XRI is received. If the
1269 * IO has good status or fails for any other reason then the sglq
James Smart895427b2017-02-12 13:52:30 -08001270 * entry is added to the free list (lpfc_els_sgl_list).
James Smart4f774512009-05-22 14:52:35 -04001271 **/
1272static void
1273__lpfc_sli_release_iocbq_s4(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1274{
1275 struct lpfc_sglq *sglq;
1276 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
James Smart2a9bf3d2010-06-07 15:24:45 -04001277 unsigned long iflag = 0;
James Smart895427b2017-02-12 13:52:30 -08001278 struct lpfc_sli_ring *pring;
James Smart4f774512009-05-22 14:52:35 -04001279
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001280 lockdep_assert_held(&phba->hbalock);
1281
James Smart4f774512009-05-22 14:52:35 -04001282 if (iocbq->sli4_xritag == NO_XRI)
1283 sglq = NULL;
1284 else
James Smart6d368e52011-05-24 11:44:12 -04001285 sglq = __lpfc_clear_active_sglq(phba, iocbq->sli4_lxritag);
1286
James Smart0e9bb8d2013-03-01 16:35:12 -05001287
James Smart4f774512009-05-22 14:52:35 -04001288 if (sglq) {
James Smartf358dd02017-02-12 13:52:34 -08001289 if (iocbq->iocb_flag & LPFC_IO_NVMET) {
1290 spin_lock_irqsave(&phba->sli4_hba.sgl_list_lock,
1291 iflag);
James Smart0f65ff62010-02-26 14:14:23 -05001292 sglq->state = SGL_FREED;
James Smart19ca7602010-11-20 23:11:55 -05001293 sglq->ndlp = NULL;
James Smartfedd3b72011-02-16 12:39:24 -05001294 list_add_tail(&sglq->list,
James Smartf358dd02017-02-12 13:52:34 -08001295 &phba->sli4_hba.lpfc_nvmet_sgl_list);
1296 spin_unlock_irqrestore(
1297 &phba->sli4_hba.sgl_list_lock, iflag);
1298 goto out;
1299 }
1300
James Smart895427b2017-02-12 13:52:30 -08001301 pring = phba->sli4_hba.els_wq->pring;
James Smart4f774512009-05-22 14:52:35 -04001302 if ((iocbq->iocb_flag & LPFC_EXCHANGE_BUSY) &&
1303 (sglq->state != SGL_XRI_ABORTED)) {
James Smart895427b2017-02-12 13:52:30 -08001304 spin_lock_irqsave(&phba->sli4_hba.sgl_list_lock,
1305 iflag);
James Smart341af102010-01-26 23:07:37 -05001306 list_add(&sglq->list,
James Smart895427b2017-02-12 13:52:30 -08001307 &phba->sli4_hba.lpfc_abts_els_sgl_list);
James Smart4f774512009-05-22 14:52:35 -04001308 spin_unlock_irqrestore(
James Smart895427b2017-02-12 13:52:30 -08001309 &phba->sli4_hba.sgl_list_lock, iflag);
James Smart4f774512009-05-22 14:52:35 -04001310 } else {
James Smart895427b2017-02-12 13:52:30 -08001311 spin_lock_irqsave(&phba->sli4_hba.sgl_list_lock,
1312 iflag);
James Smart4f774512009-05-22 14:52:35 -04001313 sglq->state = SGL_FREED;
1314 sglq->ndlp = NULL;
James Smartfedd3b72011-02-16 12:39:24 -05001315 list_add_tail(&sglq->list,
James Smart895427b2017-02-12 13:52:30 -08001316 &phba->sli4_hba.lpfc_els_sgl_list);
1317 spin_unlock_irqrestore(
1318 &phba->sli4_hba.sgl_list_lock, iflag);
James Smart2a9bf3d2010-06-07 15:24:45 -04001319
1320 /* Check if TXQ queue needs to be serviced */
James Smart0e9bb8d2013-03-01 16:35:12 -05001321 if (!list_empty(&pring->txq))
James Smart2a9bf3d2010-06-07 15:24:45 -04001322 lpfc_worker_wake_up(phba);
James Smart0f65ff62010-02-26 14:14:23 -05001323 }
James Smart4f774512009-05-22 14:52:35 -04001324 }
1325
James Smartf358dd02017-02-12 13:52:34 -08001326out:
James Smart4f774512009-05-22 14:52:35 -04001327 /*
1328 * Clean all volatile data fields, preserve iotag and node struct.
1329 */
1330 memset((char *)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
James Smart6d368e52011-05-24 11:44:12 -04001331 iocbq->sli4_lxritag = NO_XRI;
James Smart4f774512009-05-22 14:52:35 -04001332 iocbq->sli4_xritag = NO_XRI;
James Smartf358dd02017-02-12 13:52:34 -08001333 iocbq->iocb_flag &= ~(LPFC_IO_NVME | LPFC_IO_NVMET |
1334 LPFC_IO_NVME_LS);
James Smart4f774512009-05-22 14:52:35 -04001335 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1336}
1337
James Smart2a9bf3d2010-06-07 15:24:45 -04001338
James Smart4f774512009-05-22 14:52:35 -04001339/**
James Smart3772a992009-05-22 14:50:54 -04001340 * __lpfc_sli_release_iocbq_s3 - Release iocb to the iocb pool
1341 * @phba: Pointer to HBA context object.
1342 * @iocbq: Pointer to driver iocb object.
1343 *
1344 * This function is called with hbalock held to release driver
1345 * iocb object to the iocb pool. The iotag in the iocb object
1346 * does not change for each use of the iocb object. This function
1347 * clears all other fields of the iocb object when it is freed.
1348 **/
1349static void
1350__lpfc_sli_release_iocbq_s3(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1351{
1352 size_t start_clean = offsetof(struct lpfc_iocbq, iocb);
1353
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001354 lockdep_assert_held(&phba->hbalock);
James Smart0e9bb8d2013-03-01 16:35:12 -05001355
1356 /*
James Smart3772a992009-05-22 14:50:54 -04001357 * Clean all volatile data fields, preserve iotag and node struct.
1358 */
1359 memset((char*)iocbq + start_clean, 0, sizeof(*iocbq) - start_clean);
1360 iocbq->sli4_xritag = NO_XRI;
1361 list_add_tail(&iocbq->list, &phba->lpfc_iocb_list);
1362}
1363
1364/**
James Smart3621a712009-04-06 18:47:14 -04001365 * __lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001366 * @phba: Pointer to HBA context object.
1367 * @iocbq: Pointer to driver iocb object.
1368 *
1369 * This function is called with hbalock held to release driver
1370 * iocb object to the iocb pool. The iotag in the iocb object
1371 * does not change for each use of the iocb object. This function
1372 * clears all other fields of the iocb object when it is freed.
1373 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001374static void
James Smart2e0fef82007-06-17 19:56:36 -05001375__lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1376{
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001377 lockdep_assert_held(&phba->hbalock);
1378
James Smart3772a992009-05-22 14:50:54 -04001379 phba->__lpfc_sli_release_iocbq(phba, iocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -04001380 phba->iocb_cnt--;
James Bottomley604a3e32005-10-29 10:28:33 -05001381}
1382
James Smarte59058c2008-08-24 21:49:00 -04001383/**
James Smart3621a712009-04-06 18:47:14 -04001384 * lpfc_sli_release_iocbq - Release iocb to the iocb pool
James Smarte59058c2008-08-24 21:49:00 -04001385 * @phba: Pointer to HBA context object.
1386 * @iocbq: Pointer to driver iocb object.
1387 *
1388 * This function is called with no lock held to release the iocb to
1389 * iocb pool.
1390 **/
James Smart2e0fef82007-06-17 19:56:36 -05001391void
1392lpfc_sli_release_iocbq(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
1393{
1394 unsigned long iflags;
1395
1396 /*
1397 * Clean all volatile data fields, preserve iotag and node struct.
1398 */
1399 spin_lock_irqsave(&phba->hbalock, iflags);
1400 __lpfc_sli_release_iocbq(phba, iocbq);
1401 spin_unlock_irqrestore(&phba->hbalock, iflags);
1402}
1403
James Smarte59058c2008-08-24 21:49:00 -04001404/**
James Smarta257bf92009-04-06 18:48:10 -04001405 * lpfc_sli_cancel_iocbs - Cancel all iocbs from a list.
1406 * @phba: Pointer to HBA context object.
1407 * @iocblist: List of IOCBs.
1408 * @ulpstatus: ULP status in IOCB command field.
1409 * @ulpWord4: ULP word-4 in IOCB command field.
1410 *
1411 * This function is called with a list of IOCBs to cancel. It cancels the IOCB
1412 * on the list by invoking the complete callback function associated with the
1413 * IOCB with the provided @ulpstatus and @ulpword4 set to the IOCB commond
1414 * fields.
1415 **/
1416void
1417lpfc_sli_cancel_iocbs(struct lpfc_hba *phba, struct list_head *iocblist,
1418 uint32_t ulpstatus, uint32_t ulpWord4)
1419{
1420 struct lpfc_iocbq *piocb;
1421
1422 while (!list_empty(iocblist)) {
1423 list_remove_head(iocblist, piocb, struct lpfc_iocbq, list);
James Smart84f2ddf2019-08-14 16:56:55 -07001424 if (!piocb->iocb_cmpl) {
1425 if (piocb->iocb_flag & LPFC_IO_NVME)
1426 lpfc_nvme_cancel_iocb(phba, piocb);
1427 else
1428 lpfc_sli_release_iocbq(phba, piocb);
1429 } else {
James Smarta257bf92009-04-06 18:48:10 -04001430 piocb->iocb.ulpStatus = ulpstatus;
1431 piocb->iocb.un.ulpWord[4] = ulpWord4;
1432 (piocb->iocb_cmpl) (phba, piocb, piocb);
1433 }
1434 }
1435 return;
1436}
1437
1438/**
James Smart3621a712009-04-06 18:47:14 -04001439 * lpfc_sli_iocb_cmd_type - Get the iocb type
1440 * @iocb_cmnd: iocb command code.
James Smarte59058c2008-08-24 21:49:00 -04001441 *
1442 * This function is called by ring event handler function to get the iocb type.
1443 * This function translates the iocb command to an iocb command type used to
1444 * decide the final disposition of each completed IOCB.
1445 * The function returns
1446 * LPFC_UNKNOWN_IOCB if it is an unsupported iocb
1447 * LPFC_SOL_IOCB if it is a solicited iocb completion
1448 * LPFC_ABORT_IOCB if it is an abort iocb
1449 * LPFC_UNSOL_IOCB if it is an unsolicited iocb
1450 *
1451 * The caller is not required to hold any lock.
1452 **/
dea31012005-04-17 16:05:31 -05001453static lpfc_iocb_type
1454lpfc_sli_iocb_cmd_type(uint8_t iocb_cmnd)
1455{
1456 lpfc_iocb_type type = LPFC_UNKNOWN_IOCB;
1457
1458 if (iocb_cmnd > CMD_MAX_IOCB_CMD)
1459 return 0;
1460
1461 switch (iocb_cmnd) {
1462 case CMD_XMIT_SEQUENCE_CR:
1463 case CMD_XMIT_SEQUENCE_CX:
1464 case CMD_XMIT_BCAST_CN:
1465 case CMD_XMIT_BCAST_CX:
1466 case CMD_ELS_REQUEST_CR:
1467 case CMD_ELS_REQUEST_CX:
1468 case CMD_CREATE_XRI_CR:
1469 case CMD_CREATE_XRI_CX:
1470 case CMD_GET_RPI_CN:
1471 case CMD_XMIT_ELS_RSP_CX:
1472 case CMD_GET_RPI_CR:
1473 case CMD_FCP_IWRITE_CR:
1474 case CMD_FCP_IWRITE_CX:
1475 case CMD_FCP_IREAD_CR:
1476 case CMD_FCP_IREAD_CX:
1477 case CMD_FCP_ICMND_CR:
1478 case CMD_FCP_ICMND_CX:
James Smartf5603512006-12-02 13:35:43 -05001479 case CMD_FCP_TSEND_CX:
1480 case CMD_FCP_TRSP_CX:
1481 case CMD_FCP_TRECEIVE_CX:
1482 case CMD_FCP_AUTO_TRSP_CX:
dea31012005-04-17 16:05:31 -05001483 case CMD_ADAPTER_MSG:
1484 case CMD_ADAPTER_DUMP:
1485 case CMD_XMIT_SEQUENCE64_CR:
1486 case CMD_XMIT_SEQUENCE64_CX:
1487 case CMD_XMIT_BCAST64_CN:
1488 case CMD_XMIT_BCAST64_CX:
1489 case CMD_ELS_REQUEST64_CR:
1490 case CMD_ELS_REQUEST64_CX:
1491 case CMD_FCP_IWRITE64_CR:
1492 case CMD_FCP_IWRITE64_CX:
1493 case CMD_FCP_IREAD64_CR:
1494 case CMD_FCP_IREAD64_CX:
1495 case CMD_FCP_ICMND64_CR:
1496 case CMD_FCP_ICMND64_CX:
James Smartf5603512006-12-02 13:35:43 -05001497 case CMD_FCP_TSEND64_CX:
1498 case CMD_FCP_TRSP64_CX:
1499 case CMD_FCP_TRECEIVE64_CX:
dea31012005-04-17 16:05:31 -05001500 case CMD_GEN_REQUEST64_CR:
1501 case CMD_GEN_REQUEST64_CX:
1502 case CMD_XMIT_ELS_RSP64_CX:
James Smartda0436e2009-05-22 14:51:39 -04001503 case DSSCMD_IWRITE64_CR:
1504 case DSSCMD_IWRITE64_CX:
1505 case DSSCMD_IREAD64_CR:
1506 case DSSCMD_IREAD64_CX:
dea31012005-04-17 16:05:31 -05001507 type = LPFC_SOL_IOCB;
1508 break;
1509 case CMD_ABORT_XRI_CN:
1510 case CMD_ABORT_XRI_CX:
1511 case CMD_CLOSE_XRI_CN:
1512 case CMD_CLOSE_XRI_CX:
1513 case CMD_XRI_ABORTED_CX:
1514 case CMD_ABORT_MXRI64_CN:
James Smart6669f9b2009-10-02 15:16:45 -04001515 case CMD_XMIT_BLS_RSP64_CX:
dea31012005-04-17 16:05:31 -05001516 type = LPFC_ABORT_IOCB;
1517 break;
1518 case CMD_RCV_SEQUENCE_CX:
1519 case CMD_RCV_ELS_REQ_CX:
1520 case CMD_RCV_SEQUENCE64_CX:
1521 case CMD_RCV_ELS_REQ64_CX:
James Smart57127f12007-10-27 13:37:05 -04001522 case CMD_ASYNC_STATUS:
James Smarted957682007-06-17 19:56:37 -05001523 case CMD_IOCB_RCV_SEQ64_CX:
1524 case CMD_IOCB_RCV_ELS64_CX:
1525 case CMD_IOCB_RCV_CONT64_CX:
James Smart3163f722008-02-08 18:50:25 -05001526 case CMD_IOCB_RET_XRI64_CX:
dea31012005-04-17 16:05:31 -05001527 type = LPFC_UNSOL_IOCB;
1528 break;
James Smart3163f722008-02-08 18:50:25 -05001529 case CMD_IOCB_XMIT_MSEQ64_CR:
1530 case CMD_IOCB_XMIT_MSEQ64_CX:
1531 case CMD_IOCB_RCV_SEQ_LIST64_CX:
1532 case CMD_IOCB_RCV_ELS_LIST64_CX:
1533 case CMD_IOCB_CLOSE_EXTENDED_CN:
1534 case CMD_IOCB_ABORT_EXTENDED_CN:
1535 case CMD_IOCB_RET_HBQE64_CN:
1536 case CMD_IOCB_FCP_IBIDIR64_CR:
1537 case CMD_IOCB_FCP_IBIDIR64_CX:
1538 case CMD_IOCB_FCP_ITASKMGT64_CX:
1539 case CMD_IOCB_LOGENTRY_CN:
1540 case CMD_IOCB_LOGENTRY_ASYNC_CN:
1541 printk("%s - Unhandled SLI-3 Command x%x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001542 __func__, iocb_cmnd);
James Smart3163f722008-02-08 18:50:25 -05001543 type = LPFC_UNKNOWN_IOCB;
1544 break;
dea31012005-04-17 16:05:31 -05001545 default:
1546 type = LPFC_UNKNOWN_IOCB;
1547 break;
1548 }
1549
1550 return type;
1551}
1552
James Smarte59058c2008-08-24 21:49:00 -04001553/**
James Smart3621a712009-04-06 18:47:14 -04001554 * lpfc_sli_ring_map - Issue config_ring mbox for all rings
James Smarte59058c2008-08-24 21:49:00 -04001555 * @phba: Pointer to HBA context object.
1556 *
1557 * This function is called from SLI initialization code
1558 * to configure every ring of the HBA's SLI interface. The
1559 * caller is not required to hold any lock. This function issues
1560 * a config_ring mailbox command for each ring.
1561 * This function returns zero if successful else returns a negative
1562 * error code.
1563 **/
dea31012005-04-17 16:05:31 -05001564static int
James Smarted957682007-06-17 19:56:37 -05001565lpfc_sli_ring_map(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05001566{
1567 struct lpfc_sli *psli = &phba->sli;
James Smarted957682007-06-17 19:56:37 -05001568 LPFC_MBOXQ_t *pmb;
1569 MAILBOX_t *pmbox;
1570 int i, rc, ret = 0;
dea31012005-04-17 16:05:31 -05001571
James Smarted957682007-06-17 19:56:37 -05001572 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
1573 if (!pmb)
1574 return -ENOMEM;
James Smart04c68492009-05-22 14:52:52 -04001575 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05001576 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05001577 for (i = 0; i < psli->num_rings; i++) {
dea31012005-04-17 16:05:31 -05001578 lpfc_config_ring(phba, i, pmb);
1579 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
1580 if (rc != MBX_SUCCESS) {
James Smart92d7f7b2007-06-17 19:56:38 -05001581 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04001582 "0446 Adapter failed to init (%d), "
dea31012005-04-17 16:05:31 -05001583 "mbxCmd x%x CFG_RING, mbxStatus x%x, "
1584 "ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001585 rc, pmbox->mbxCommand,
1586 pmbox->mbxStatus, i);
James Smart2e0fef82007-06-17 19:56:36 -05001587 phba->link_state = LPFC_HBA_ERROR;
James Smarted957682007-06-17 19:56:37 -05001588 ret = -ENXIO;
1589 break;
dea31012005-04-17 16:05:31 -05001590 }
1591 }
James Smarted957682007-06-17 19:56:37 -05001592 mempool_free(pmb, phba->mbox_mem_pool);
1593 return ret;
dea31012005-04-17 16:05:31 -05001594}
1595
James Smarte59058c2008-08-24 21:49:00 -04001596/**
James Smart3621a712009-04-06 18:47:14 -04001597 * lpfc_sli_ringtxcmpl_put - Adds new iocb to the txcmplq
James Smarte59058c2008-08-24 21:49:00 -04001598 * @phba: Pointer to HBA context object.
1599 * @pring: Pointer to driver SLI ring object.
1600 * @piocb: Pointer to the driver iocb object.
1601 *
James Smarte2a8be52019-05-06 17:26:47 -07001602 * The driver calls this function with the hbalock held for SLI3 ports or
1603 * the ring lock held for SLI4 ports. The function adds the
James Smarte59058c2008-08-24 21:49:00 -04001604 * new iocb to txcmplq of the given ring. This function always returns
1605 * 0. If this function is called for ELS ring, this function checks if
1606 * there is a vport associated with the ELS command. This function also
1607 * starts els_tmofunc timer if this is an ELS command.
1608 **/
dea31012005-04-17 16:05:31 -05001609static int
James Smart2e0fef82007-06-17 19:56:36 -05001610lpfc_sli_ringtxcmpl_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1611 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05001612{
James Smarte2a8be52019-05-06 17:26:47 -07001613 if (phba->sli_rev == LPFC_SLI_REV4)
1614 lockdep_assert_held(&pring->ring_lock);
1615 else
1616 lockdep_assert_held(&phba->hbalock);
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001617
Mauricio Faria de Oliveira2319f842016-11-23 10:33:19 -02001618 BUG_ON(!piocb);
Johannes Thumshirn22466da2016-07-29 15:30:56 +02001619
dea31012005-04-17 16:05:31 -05001620 list_add_tail(&piocb->list, &pring->txcmplq);
James Smart4f2e66c2012-05-09 21:17:07 -04001621 piocb->iocb_flag |= LPFC_IO_ON_TXCMPLQ;
James Smartc4908502019-01-28 11:14:28 -08001622 pring->txcmplq_cnt++;
James Smart2a9bf3d2010-06-07 15:24:45 -04001623
James Smart92d7f7b2007-06-17 19:56:38 -05001624 if ((unlikely(pring->ringno == LPFC_ELS_RING)) &&
1625 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
Mauricio Faria de Oliveira2319f842016-11-23 10:33:19 -02001626 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
1627 BUG_ON(!piocb->vport);
1628 if (!(piocb->vport->load_flag & FC_UNLOADING))
1629 mod_timer(&piocb->vport->els_tmofunc,
1630 jiffies +
1631 msecs_to_jiffies(1000 * (phba->fc_ratov << 1)));
1632 }
dea31012005-04-17 16:05:31 -05001633
James Smart2e0fef82007-06-17 19:56:36 -05001634 return 0;
dea31012005-04-17 16:05:31 -05001635}
1636
James Smarte59058c2008-08-24 21:49:00 -04001637/**
James Smart3621a712009-04-06 18:47:14 -04001638 * lpfc_sli_ringtx_get - Get first element of the txq
James Smarte59058c2008-08-24 21:49:00 -04001639 * @phba: Pointer to HBA context object.
1640 * @pring: Pointer to driver SLI ring object.
1641 *
1642 * This function is called with hbalock held to get next
1643 * iocb in txq of the given ring. If there is any iocb in
1644 * the txq, the function returns first iocb in the list after
1645 * removing the iocb from the list, else it returns NULL.
1646 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04001647struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05001648lpfc_sli_ringtx_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001649{
dea31012005-04-17 16:05:31 -05001650 struct lpfc_iocbq *cmd_iocb;
1651
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001652 lockdep_assert_held(&phba->hbalock);
1653
James Smart858c9f62007-06-17 19:56:39 -05001654 list_remove_head((&pring->txq), cmd_iocb, struct lpfc_iocbq, list);
James Smart2e0fef82007-06-17 19:56:36 -05001655 return cmd_iocb;
dea31012005-04-17 16:05:31 -05001656}
1657
James Smarte59058c2008-08-24 21:49:00 -04001658/**
James Smart3621a712009-04-06 18:47:14 -04001659 * lpfc_sli_next_iocb_slot - Get next iocb slot in the ring
James Smarte59058c2008-08-24 21:49:00 -04001660 * @phba: Pointer to HBA context object.
1661 * @pring: Pointer to driver SLI ring object.
1662 *
1663 * This function is called with hbalock held and the caller must post the
1664 * iocb without releasing the lock. If the caller releases the lock,
1665 * iocb slot returned by the function is not guaranteed to be available.
1666 * The function returns pointer to the next available iocb slot if there
1667 * is available slot in the ring, else it returns NULL.
1668 * If the get index of the ring is ahead of the put index, the function
1669 * will post an error attention event to the worker thread to take the
1670 * HBA to offline state.
1671 **/
dea31012005-04-17 16:05:31 -05001672static IOCB_t *
1673lpfc_sli_next_iocb_slot (struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
1674{
James Smart34b02dc2008-08-24 21:49:55 -04001675 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James Smart7e56aa22012-08-03 12:35:34 -04001676 uint32_t max_cmd_idx = pring->sli.sli3.numCiocb;
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001677
1678 lockdep_assert_held(&phba->hbalock);
1679
James Smart7e56aa22012-08-03 12:35:34 -04001680 if ((pring->sli.sli3.next_cmdidx == pring->sli.sli3.cmdidx) &&
1681 (++pring->sli.sli3.next_cmdidx >= max_cmd_idx))
1682 pring->sli.sli3.next_cmdidx = 0;
dea31012005-04-17 16:05:31 -05001683
James Smart7e56aa22012-08-03 12:35:34 -04001684 if (unlikely(pring->sli.sli3.local_getidx ==
1685 pring->sli.sli3.next_cmdidx)) {
dea31012005-04-17 16:05:31 -05001686
James Smart7e56aa22012-08-03 12:35:34 -04001687 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05001688
James Smart7e56aa22012-08-03 12:35:34 -04001689 if (unlikely(pring->sli.sli3.local_getidx >= max_cmd_idx)) {
dea31012005-04-17 16:05:31 -05001690 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001691 "0315 Ring %d issue: portCmdGet %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001692 "is bigger than cmd ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04001693 pring->ringno,
James Smart7e56aa22012-08-03 12:35:34 -04001694 pring->sli.sli3.local_getidx,
1695 max_cmd_idx);
dea31012005-04-17 16:05:31 -05001696
James Smart2e0fef82007-06-17 19:56:36 -05001697 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05001698 /*
1699 * All error attention handlers are posted to
1700 * worker thread
1701 */
1702 phba->work_ha |= HA_ERATT;
1703 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05001704
James Smart5e9d9b82008-06-14 22:52:53 -04001705 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -05001706
1707 return NULL;
1708 }
1709
James Smart7e56aa22012-08-03 12:35:34 -04001710 if (pring->sli.sli3.local_getidx == pring->sli.sli3.next_cmdidx)
dea31012005-04-17 16:05:31 -05001711 return NULL;
1712 }
1713
James Smarted957682007-06-17 19:56:37 -05001714 return lpfc_cmd_iocb(phba, pring);
dea31012005-04-17 16:05:31 -05001715}
1716
James Smarte59058c2008-08-24 21:49:00 -04001717/**
James Smart3621a712009-04-06 18:47:14 -04001718 * lpfc_sli_next_iotag - Get an iotag for the iocb
James Smarte59058c2008-08-24 21:49:00 -04001719 * @phba: Pointer to HBA context object.
1720 * @iocbq: Pointer to driver iocb object.
1721 *
1722 * This function gets an iotag for the iocb. If there is no unused iotag and
1723 * the iocbq_lookup_len < 0xffff, this function allocates a bigger iotag_lookup
1724 * array and assigns a new iotag.
1725 * The function returns the allocated iotag if successful, else returns zero.
1726 * Zero is not a valid iotag.
1727 * The caller is not required to hold any lock.
1728 **/
James Bottomley604a3e32005-10-29 10:28:33 -05001729uint16_t
James Smart2e0fef82007-06-17 19:56:36 -05001730lpfc_sli_next_iotag(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq)
dea31012005-04-17 16:05:31 -05001731{
James Smart2e0fef82007-06-17 19:56:36 -05001732 struct lpfc_iocbq **new_arr;
1733 struct lpfc_iocbq **old_arr;
James Bottomley604a3e32005-10-29 10:28:33 -05001734 size_t new_len;
1735 struct lpfc_sli *psli = &phba->sli;
1736 uint16_t iotag;
dea31012005-04-17 16:05:31 -05001737
James Smart2e0fef82007-06-17 19:56:36 -05001738 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001739 iotag = psli->last_iotag;
1740 if(++iotag < psli->iocbq_lookup_len) {
1741 psli->last_iotag = iotag;
1742 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001743 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001744 iocbq->iotag = iotag;
1745 return iotag;
James Smart2e0fef82007-06-17 19:56:36 -05001746 } else if (psli->iocbq_lookup_len < (0xffff
James Bottomley604a3e32005-10-29 10:28:33 -05001747 - LPFC_IOCBQ_LOOKUP_INCREMENT)) {
1748 new_len = psli->iocbq_lookup_len + LPFC_IOCBQ_LOOKUP_INCREMENT;
James Smart2e0fef82007-06-17 19:56:36 -05001749 spin_unlock_irq(&phba->hbalock);
Kees Cook6396bb22018-06-12 14:03:40 -07001750 new_arr = kcalloc(new_len, sizeof(struct lpfc_iocbq *),
James Bottomley604a3e32005-10-29 10:28:33 -05001751 GFP_KERNEL);
1752 if (new_arr) {
James Smart2e0fef82007-06-17 19:56:36 -05001753 spin_lock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001754 old_arr = psli->iocbq_lookup;
1755 if (new_len <= psli->iocbq_lookup_len) {
1756 /* highly unprobable case */
1757 kfree(new_arr);
1758 iotag = psli->last_iotag;
1759 if(++iotag < psli->iocbq_lookup_len) {
1760 psli->last_iotag = iotag;
1761 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001762 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001763 iocbq->iotag = iotag;
1764 return iotag;
1765 }
James Smart2e0fef82007-06-17 19:56:36 -05001766 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001767 return 0;
1768 }
1769 if (psli->iocbq_lookup)
1770 memcpy(new_arr, old_arr,
1771 ((psli->last_iotag + 1) *
James Smart311464e2007-08-02 11:10:37 -04001772 sizeof (struct lpfc_iocbq *)));
James Bottomley604a3e32005-10-29 10:28:33 -05001773 psli->iocbq_lookup = new_arr;
1774 psli->iocbq_lookup_len = new_len;
1775 psli->last_iotag = iotag;
1776 psli->iocbq_lookup[iotag] = iocbq;
James Smart2e0fef82007-06-17 19:56:36 -05001777 spin_unlock_irq(&phba->hbalock);
James Bottomley604a3e32005-10-29 10:28:33 -05001778 iocbq->iotag = iotag;
1779 kfree(old_arr);
1780 return iotag;
1781 }
James Smart8f6d98d2006-08-01 07:34:00 -04001782 } else
James Smart2e0fef82007-06-17 19:56:36 -05001783 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001784
James Smartbc739052010-08-04 16:11:18 -04001785 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04001786 "0318 Failed to allocate IOTAG.last IOTAG is %d\n",
1787 psli->last_iotag);
dea31012005-04-17 16:05:31 -05001788
James Bottomley604a3e32005-10-29 10:28:33 -05001789 return 0;
dea31012005-04-17 16:05:31 -05001790}
1791
James Smarte59058c2008-08-24 21:49:00 -04001792/**
James Smart3621a712009-04-06 18:47:14 -04001793 * lpfc_sli_submit_iocb - Submit an iocb to the firmware
James Smarte59058c2008-08-24 21:49:00 -04001794 * @phba: Pointer to HBA context object.
1795 * @pring: Pointer to driver SLI ring object.
1796 * @iocb: Pointer to iocb slot in the ring.
1797 * @nextiocb: Pointer to driver iocb object which need to be
1798 * posted to firmware.
1799 *
1800 * This function is called with hbalock held to post a new iocb to
1801 * the firmware. This function copies the new iocb to ring iocb slot and
1802 * updates the ring pointers. It adds the new iocb to txcmplq if there is
1803 * a completion call back for this iocb else the function will free the
1804 * iocb object.
1805 **/
dea31012005-04-17 16:05:31 -05001806static void
1807lpfc_sli_submit_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
1808 IOCB_t *iocb, struct lpfc_iocbq *nextiocb)
1809{
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001810 lockdep_assert_held(&phba->hbalock);
dea31012005-04-17 16:05:31 -05001811 /*
James Bottomley604a3e32005-10-29 10:28:33 -05001812 * Set up an iotag
dea31012005-04-17 16:05:31 -05001813 */
James Bottomley604a3e32005-10-29 10:28:33 -05001814 nextiocb->iocb.ulpIoTag = (nextiocb->iocb_cmpl) ? nextiocb->iotag : 0;
dea31012005-04-17 16:05:31 -05001815
James Smarte2a0a9d2008-12-04 22:40:02 -05001816
James Smarta58cbd52007-08-02 11:09:43 -04001817 if (pring->ringno == LPFC_ELS_RING) {
1818 lpfc_debugfs_slow_ring_trc(phba,
1819 "IOCB cmd ring: wd4:x%08x wd6:x%08x wd7:x%08x",
1820 *(((uint32_t *) &nextiocb->iocb) + 4),
1821 *(((uint32_t *) &nextiocb->iocb) + 6),
1822 *(((uint32_t *) &nextiocb->iocb) + 7));
1823 }
1824
dea31012005-04-17 16:05:31 -05001825 /*
1826 * Issue iocb command to adapter
1827 */
James Smart92d7f7b2007-06-17 19:56:38 -05001828 lpfc_sli_pcimem_bcopy(&nextiocb->iocb, iocb, phba->iocb_cmd_size);
dea31012005-04-17 16:05:31 -05001829 wmb();
1830 pring->stats.iocb_cmd++;
1831
1832 /*
1833 * If there is no completion routine to call, we can release the
1834 * IOCB buffer back right now. For IOCBs, like QUE_RING_BUF,
1835 * that have no rsp ring completion, iocb_cmpl MUST be NULL.
1836 */
1837 if (nextiocb->iocb_cmpl)
1838 lpfc_sli_ringtxcmpl_put(phba, pring, nextiocb);
James Bottomley604a3e32005-10-29 10:28:33 -05001839 else
James Smart2e0fef82007-06-17 19:56:36 -05001840 __lpfc_sli_release_iocbq(phba, nextiocb);
dea31012005-04-17 16:05:31 -05001841
1842 /*
1843 * Let the HBA know what IOCB slot will be the next one the
1844 * driver will put a command into.
1845 */
James Smart7e56aa22012-08-03 12:35:34 -04001846 pring->sli.sli3.cmdidx = pring->sli.sli3.next_cmdidx;
1847 writel(pring->sli.sli3.cmdidx, &phba->host_gp[pring->ringno].cmdPutInx);
dea31012005-04-17 16:05:31 -05001848}
1849
James Smarte59058c2008-08-24 21:49:00 -04001850/**
James Smart3621a712009-04-06 18:47:14 -04001851 * lpfc_sli_update_full_ring - Update the chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001852 * @phba: Pointer to HBA context object.
1853 * @pring: Pointer to driver SLI ring object.
1854 *
1855 * The caller is not required to hold any lock for calling this function.
1856 * This function updates the chip attention bits for the ring to inform firmware
1857 * that there are pending work to be done for this ring and requests an
1858 * interrupt when there is space available in the ring. This function is
1859 * called when the driver is unable to post more iocbs to the ring due
1860 * to unavailability of space in the ring.
1861 **/
dea31012005-04-17 16:05:31 -05001862static void
James Smart2e0fef82007-06-17 19:56:36 -05001863lpfc_sli_update_full_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001864{
1865 int ringno = pring->ringno;
1866
1867 pring->flag |= LPFC_CALL_RING_AVAILABLE;
1868
1869 wmb();
1870
1871 /*
1872 * Set ring 'ringno' to SET R0CE_REQ in Chip Att register.
1873 * The HBA will tell us when an IOCB entry is available.
1874 */
1875 writel((CA_R0ATT|CA_R0CE_REQ) << (ringno*4), phba->CAregaddr);
1876 readl(phba->CAregaddr); /* flush */
1877
1878 pring->stats.iocb_cmd_full++;
1879}
1880
James Smarte59058c2008-08-24 21:49:00 -04001881/**
James Smart3621a712009-04-06 18:47:14 -04001882 * lpfc_sli_update_ring - Update chip attention register
James Smarte59058c2008-08-24 21:49:00 -04001883 * @phba: Pointer to HBA context object.
1884 * @pring: Pointer to driver SLI ring object.
1885 *
1886 * This function updates the chip attention register bit for the
1887 * given ring to inform HBA that there is more work to be done
1888 * in this ring. The caller is not required to hold any lock.
1889 **/
dea31012005-04-17 16:05:31 -05001890static void
James Smart2e0fef82007-06-17 19:56:36 -05001891lpfc_sli_update_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001892{
1893 int ringno = pring->ringno;
1894
1895 /*
1896 * Tell the HBA that there is work to do in this ring.
1897 */
James Smart34b02dc2008-08-24 21:49:55 -04001898 if (!(phba->sli3_options & LPFC_SLI3_CRP_ENABLED)) {
1899 wmb();
1900 writel(CA_R0ATT << (ringno * 4), phba->CAregaddr);
1901 readl(phba->CAregaddr); /* flush */
1902 }
dea31012005-04-17 16:05:31 -05001903}
1904
James Smarte59058c2008-08-24 21:49:00 -04001905/**
James Smart3621a712009-04-06 18:47:14 -04001906 * lpfc_sli_resume_iocb - Process iocbs in the txq
James Smarte59058c2008-08-24 21:49:00 -04001907 * @phba: Pointer to HBA context object.
1908 * @pring: Pointer to driver SLI ring object.
1909 *
1910 * This function is called with hbalock held to post pending iocbs
1911 * in the txq to the firmware. This function is called when driver
1912 * detects space available in the ring.
1913 **/
dea31012005-04-17 16:05:31 -05001914static void
James Smart2e0fef82007-06-17 19:56:36 -05001915lpfc_sli_resume_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
dea31012005-04-17 16:05:31 -05001916{
1917 IOCB_t *iocb;
1918 struct lpfc_iocbq *nextiocb;
1919
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001920 lockdep_assert_held(&phba->hbalock);
1921
dea31012005-04-17 16:05:31 -05001922 /*
1923 * Check to see if:
1924 * (a) there is anything on the txq to send
1925 * (b) link is up
1926 * (c) link attention events can be processed (fcp ring only)
1927 * (d) IOCB processing is not blocked by the outstanding mbox command.
1928 */
James Smart0e9bb8d2013-03-01 16:35:12 -05001929
1930 if (lpfc_is_link_up(phba) &&
1931 (!list_empty(&pring->txq)) &&
James Smart895427b2017-02-12 13:52:30 -08001932 (pring->ringno != LPFC_FCP_RING ||
James Smart0b727fe2007-10-27 13:37:25 -04001933 phba->sli.sli_flag & LPFC_PROCESS_LA)) {
dea31012005-04-17 16:05:31 -05001934
1935 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
1936 (nextiocb = lpfc_sli_ringtx_get(phba, pring)))
1937 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
1938
1939 if (iocb)
1940 lpfc_sli_update_ring(phba, pring);
1941 else
1942 lpfc_sli_update_full_ring(phba, pring);
1943 }
1944
1945 return;
1946}
1947
James Smarte59058c2008-08-24 21:49:00 -04001948/**
James Smart3621a712009-04-06 18:47:14 -04001949 * lpfc_sli_next_hbq_slot - Get next hbq entry for the HBQ
James Smarte59058c2008-08-24 21:49:00 -04001950 * @phba: Pointer to HBA context object.
1951 * @hbqno: HBQ number.
1952 *
1953 * This function is called with hbalock held to get the next
1954 * available slot for the given HBQ. If there is free slot
1955 * available for the HBQ it will return pointer to the next available
1956 * HBQ entry else it will return NULL.
1957 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01001958static struct lpfc_hbq_entry *
James Smarted957682007-06-17 19:56:37 -05001959lpfc_sli_next_hbq_slot(struct lpfc_hba *phba, uint32_t hbqno)
1960{
1961 struct hbq_s *hbqp = &phba->hbqs[hbqno];
1962
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01001963 lockdep_assert_held(&phba->hbalock);
1964
James Smarted957682007-06-17 19:56:37 -05001965 if (hbqp->next_hbqPutIdx == hbqp->hbqPutIdx &&
1966 ++hbqp->next_hbqPutIdx >= hbqp->entry_count)
1967 hbqp->next_hbqPutIdx = 0;
1968
1969 if (unlikely(hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)) {
James Smart92d7f7b2007-06-17 19:56:38 -05001970 uint32_t raw_index = phba->hbq_get[hbqno];
James Smarted957682007-06-17 19:56:37 -05001971 uint32_t getidx = le32_to_cpu(raw_index);
1972
1973 hbqp->local_hbqGetIdx = getidx;
1974
1975 if (unlikely(hbqp->local_hbqGetIdx >= hbqp->entry_count)) {
1976 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05001977 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04001978 "1802 HBQ %d: local_hbqGetIdx "
James Smarted957682007-06-17 19:56:37 -05001979 "%u is > than hbqp->entry_count %u\n",
James Smarte8b62012007-08-02 11:10:09 -04001980 hbqno, hbqp->local_hbqGetIdx,
James Smarted957682007-06-17 19:56:37 -05001981 hbqp->entry_count);
1982
1983 phba->link_state = LPFC_HBA_ERROR;
1984 return NULL;
1985 }
1986
1987 if (hbqp->local_hbqGetIdx == hbqp->next_hbqPutIdx)
1988 return NULL;
1989 }
1990
James Smart51ef4c22007-08-02 11:10:31 -04001991 return (struct lpfc_hbq_entry *) phba->hbqs[hbqno].hbq_virt +
1992 hbqp->hbqPutIdx;
James Smarted957682007-06-17 19:56:37 -05001993}
1994
James Smarte59058c2008-08-24 21:49:00 -04001995/**
James Smart3621a712009-04-06 18:47:14 -04001996 * lpfc_sli_hbqbuf_free_all - Free all the hbq buffers
James Smarte59058c2008-08-24 21:49:00 -04001997 * @phba: Pointer to HBA context object.
1998 *
1999 * This function is called with no lock held to free all the
2000 * hbq buffers while uninitializing the SLI interface. It also
2001 * frees the HBQ buffers returned by the firmware but not yet
2002 * processed by the upper layers.
2003 **/
James Smarted957682007-06-17 19:56:37 -05002004void
2005lpfc_sli_hbqbuf_free_all(struct lpfc_hba *phba)
2006{
James Smart92d7f7b2007-06-17 19:56:38 -05002007 struct lpfc_dmabuf *dmabuf, *next_dmabuf;
2008 struct hbq_dmabuf *hbq_buf;
James Smart3163f722008-02-08 18:50:25 -05002009 unsigned long flags;
James Smart51ef4c22007-08-02 11:10:31 -04002010 int i, hbq_count;
James Smarted957682007-06-17 19:56:37 -05002011
James Smart51ef4c22007-08-02 11:10:31 -04002012 hbq_count = lpfc_sli_hbq_count();
James Smarted957682007-06-17 19:56:37 -05002013 /* Return all memory used by all HBQs */
James Smart3163f722008-02-08 18:50:25 -05002014 spin_lock_irqsave(&phba->hbalock, flags);
James Smart51ef4c22007-08-02 11:10:31 -04002015 for (i = 0; i < hbq_count; ++i) {
2016 list_for_each_entry_safe(dmabuf, next_dmabuf,
2017 &phba->hbqs[i].hbq_buffer_list, list) {
2018 hbq_buf = container_of(dmabuf, struct hbq_dmabuf, dbuf);
2019 list_del(&hbq_buf->dbuf.list);
2020 (phba->hbqs[i].hbq_free_buffer)(phba, hbq_buf);
2021 }
James Smarta8adb832007-10-27 13:37:53 -04002022 phba->hbqs[i].buffer_count = 0;
James Smarted957682007-06-17 19:56:37 -05002023 }
James Smart3163f722008-02-08 18:50:25 -05002024
2025 /* Mark the HBQs not in use */
2026 phba->hbq_in_use = 0;
2027 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smarted957682007-06-17 19:56:37 -05002028}
2029
James Smarte59058c2008-08-24 21:49:00 -04002030/**
James Smart3621a712009-04-06 18:47:14 -04002031 * lpfc_sli_hbq_to_firmware - Post the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04002032 * @phba: Pointer to HBA context object.
2033 * @hbqno: HBQ number.
2034 * @hbq_buf: Pointer to HBQ buffer.
2035 *
2036 * This function is called with the hbalock held to post a
2037 * hbq buffer to the firmware. If the function finds an empty
2038 * slot in the HBQ, it will post the buffer. The function will return
2039 * pointer to the hbq entry if it successfully post the buffer
2040 * else it will return NULL.
2041 **/
James Smart3772a992009-05-22 14:50:54 -04002042static int
James Smarted957682007-06-17 19:56:37 -05002043lpfc_sli_hbq_to_firmware(struct lpfc_hba *phba, uint32_t hbqno,
James Smart92d7f7b2007-06-17 19:56:38 -05002044 struct hbq_dmabuf *hbq_buf)
James Smarted957682007-06-17 19:56:37 -05002045{
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01002046 lockdep_assert_held(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -04002047 return phba->lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buf);
2048}
2049
2050/**
2051 * lpfc_sli_hbq_to_firmware_s3 - Post the hbq buffer to SLI3 firmware
2052 * @phba: Pointer to HBA context object.
2053 * @hbqno: HBQ number.
2054 * @hbq_buf: Pointer to HBQ buffer.
2055 *
2056 * This function is called with the hbalock held to post a hbq buffer to the
2057 * firmware. If the function finds an empty slot in the HBQ, it will post the
2058 * buffer and place it on the hbq_buffer_list. The function will return zero if
2059 * it successfully post the buffer else it will return an error.
2060 **/
2061static int
2062lpfc_sli_hbq_to_firmware_s3(struct lpfc_hba *phba, uint32_t hbqno,
2063 struct hbq_dmabuf *hbq_buf)
2064{
James Smarted957682007-06-17 19:56:37 -05002065 struct lpfc_hbq_entry *hbqe;
James Smart92d7f7b2007-06-17 19:56:38 -05002066 dma_addr_t physaddr = hbq_buf->dbuf.phys;
James Smarted957682007-06-17 19:56:37 -05002067
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01002068 lockdep_assert_held(&phba->hbalock);
James Smarted957682007-06-17 19:56:37 -05002069 /* Get next HBQ entry slot to use */
2070 hbqe = lpfc_sli_next_hbq_slot(phba, hbqno);
2071 if (hbqe) {
2072 struct hbq_s *hbqp = &phba->hbqs[hbqno];
2073
James Smart92d7f7b2007-06-17 19:56:38 -05002074 hbqe->bde.addrHigh = le32_to_cpu(putPaddrHigh(physaddr));
2075 hbqe->bde.addrLow = le32_to_cpu(putPaddrLow(physaddr));
James Smart895427b2017-02-12 13:52:30 -08002076 hbqe->bde.tus.f.bdeSize = hbq_buf->total_size;
James Smarted957682007-06-17 19:56:37 -05002077 hbqe->bde.tus.f.bdeFlags = 0;
James Smart92d7f7b2007-06-17 19:56:38 -05002078 hbqe->bde.tus.w = le32_to_cpu(hbqe->bde.tus.w);
2079 hbqe->buffer_tag = le32_to_cpu(hbq_buf->tag);
2080 /* Sync SLIM */
James Smarted957682007-06-17 19:56:37 -05002081 hbqp->hbqPutIdx = hbqp->next_hbqPutIdx;
2082 writel(hbqp->hbqPutIdx, phba->hbq_put + hbqno);
James Smart92d7f7b2007-06-17 19:56:38 -05002083 /* flush */
James Smarted957682007-06-17 19:56:37 -05002084 readl(phba->hbq_put + hbqno);
James Smart51ef4c22007-08-02 11:10:31 -04002085 list_add_tail(&hbq_buf->dbuf.list, &hbqp->hbq_buffer_list);
James Smart3772a992009-05-22 14:50:54 -04002086 return 0;
2087 } else
2088 return -ENOMEM;
James Smarted957682007-06-17 19:56:37 -05002089}
2090
James Smart4f774512009-05-22 14:52:35 -04002091/**
2092 * lpfc_sli_hbq_to_firmware_s4 - Post the hbq buffer to SLI4 firmware
2093 * @phba: Pointer to HBA context object.
2094 * @hbqno: HBQ number.
2095 * @hbq_buf: Pointer to HBQ buffer.
2096 *
2097 * This function is called with the hbalock held to post an RQE to the SLI4
2098 * firmware. If able to post the RQE to the RQ it will queue the hbq entry to
2099 * the hbq_buffer_list and return zero, otherwise it will return an error.
2100 **/
2101static int
2102lpfc_sli_hbq_to_firmware_s4(struct lpfc_hba *phba, uint32_t hbqno,
2103 struct hbq_dmabuf *hbq_buf)
2104{
2105 int rc;
2106 struct lpfc_rqe hrqe;
2107 struct lpfc_rqe drqe;
James Smart895427b2017-02-12 13:52:30 -08002108 struct lpfc_queue *hrq;
2109 struct lpfc_queue *drq;
2110
2111 if (hbqno != LPFC_ELS_HBQ)
2112 return 1;
2113 hrq = phba->sli4_hba.hdr_rq;
2114 drq = phba->sli4_hba.dat_rq;
James Smart4f774512009-05-22 14:52:35 -04002115
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01002116 lockdep_assert_held(&phba->hbalock);
James Smart4f774512009-05-22 14:52:35 -04002117 hrqe.address_lo = putPaddrLow(hbq_buf->hbuf.phys);
2118 hrqe.address_hi = putPaddrHigh(hbq_buf->hbuf.phys);
2119 drqe.address_lo = putPaddrLow(hbq_buf->dbuf.phys);
2120 drqe.address_hi = putPaddrHigh(hbq_buf->dbuf.phys);
James Smart895427b2017-02-12 13:52:30 -08002121 rc = lpfc_sli4_rq_put(hrq, drq, &hrqe, &drqe);
James Smart4f774512009-05-22 14:52:35 -04002122 if (rc < 0)
2123 return rc;
James Smart895427b2017-02-12 13:52:30 -08002124 hbq_buf->tag = (rc | (hbqno << 16));
James Smart4f774512009-05-22 14:52:35 -04002125 list_add_tail(&hbq_buf->dbuf.list, &phba->hbqs[hbqno].hbq_buffer_list);
2126 return 0;
2127}
2128
James Smarte59058c2008-08-24 21:49:00 -04002129/* HBQ for ELS and CT traffic. */
James Smart92d7f7b2007-06-17 19:56:38 -05002130static struct lpfc_hbq_init lpfc_els_hbq = {
2131 .rn = 1,
James Smartdef9c7a2009-12-21 17:02:28 -05002132 .entry_count = 256,
James Smart92d7f7b2007-06-17 19:56:38 -05002133 .mask_count = 0,
2134 .profile = 0,
James Smart51ef4c22007-08-02 11:10:31 -04002135 .ring_mask = (1 << LPFC_ELS_RING),
James Smart92d7f7b2007-06-17 19:56:38 -05002136 .buffer_count = 0,
James Smarta257bf92009-04-06 18:48:10 -04002137 .init_count = 40,
2138 .add_count = 40,
James Smart92d7f7b2007-06-17 19:56:38 -05002139};
James Smarted957682007-06-17 19:56:37 -05002140
James Smarte59058c2008-08-24 21:49:00 -04002141/* Array of HBQs */
James Smart78b2d852007-08-02 11:10:21 -04002142struct lpfc_hbq_init *lpfc_hbq_defs[] = {
James Smart92d7f7b2007-06-17 19:56:38 -05002143 &lpfc_els_hbq,
2144};
2145
James Smarte59058c2008-08-24 21:49:00 -04002146/**
James Smart3621a712009-04-06 18:47:14 -04002147 * lpfc_sli_hbqbuf_fill_hbqs - Post more hbq buffers to HBQ
James Smarte59058c2008-08-24 21:49:00 -04002148 * @phba: Pointer to HBA context object.
2149 * @hbqno: HBQ number.
2150 * @count: Number of HBQ buffers to be posted.
2151 *
James Smartd7c255b2008-08-24 21:50:00 -04002152 * This function is called with no lock held to post more hbq buffers to the
2153 * given HBQ. The function returns the number of HBQ buffers successfully
2154 * posted.
James Smarte59058c2008-08-24 21:49:00 -04002155 **/
James Smart311464e2007-08-02 11:10:37 -04002156static int
James Smart92d7f7b2007-06-17 19:56:38 -05002157lpfc_sli_hbqbuf_fill_hbqs(struct lpfc_hba *phba, uint32_t hbqno, uint32_t count)
2158{
James Smartd7c255b2008-08-24 21:50:00 -04002159 uint32_t i, posted = 0;
James Smart3163f722008-02-08 18:50:25 -05002160 unsigned long flags;
James Smart92d7f7b2007-06-17 19:56:38 -05002161 struct hbq_dmabuf *hbq_buffer;
James Smartd7c255b2008-08-24 21:50:00 -04002162 LIST_HEAD(hbq_buf_list);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07002163 if (!phba->hbqs[hbqno].hbq_alloc_buffer)
James Smart51ef4c22007-08-02 11:10:31 -04002164 return 0;
James Smart51ef4c22007-08-02 11:10:31 -04002165
James Smartd7c255b2008-08-24 21:50:00 -04002166 if ((phba->hbqs[hbqno].buffer_count + count) >
2167 lpfc_hbq_defs[hbqno]->entry_count)
2168 count = lpfc_hbq_defs[hbqno]->entry_count -
2169 phba->hbqs[hbqno].buffer_count;
2170 if (!count)
2171 return 0;
2172 /* Allocate HBQ entries */
2173 for (i = 0; i < count; i++) {
2174 hbq_buffer = (phba->hbqs[hbqno].hbq_alloc_buffer)(phba);
2175 if (!hbq_buffer)
2176 break;
2177 list_add_tail(&hbq_buffer->dbuf.list, &hbq_buf_list);
2178 }
James Smart3163f722008-02-08 18:50:25 -05002179 /* Check whether HBQ is still in use */
2180 spin_lock_irqsave(&phba->hbalock, flags);
Matthew Wilcoxeafe1df2008-02-21 05:44:33 -07002181 if (!phba->hbq_in_use)
James Smartd7c255b2008-08-24 21:50:00 -04002182 goto err;
2183 while (!list_empty(&hbq_buf_list)) {
2184 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
2185 dbuf.list);
2186 hbq_buffer->tag = (phba->hbqs[hbqno].buffer_count |
2187 (hbqno << 16));
James Smart3772a992009-05-22 14:50:54 -04002188 if (!lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer)) {
James Smarta8adb832007-10-27 13:37:53 -04002189 phba->hbqs[hbqno].buffer_count++;
James Smartd7c255b2008-08-24 21:50:00 -04002190 posted++;
2191 } else
James Smart51ef4c22007-08-02 11:10:31 -04002192 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smart92d7f7b2007-06-17 19:56:38 -05002193 }
James Smart3163f722008-02-08 18:50:25 -05002194 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smartd7c255b2008-08-24 21:50:00 -04002195 return posted;
2196err:
2197 spin_unlock_irqrestore(&phba->hbalock, flags);
2198 while (!list_empty(&hbq_buf_list)) {
2199 list_remove_head(&hbq_buf_list, hbq_buffer, struct hbq_dmabuf,
2200 dbuf.list);
2201 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
2202 }
James Smart92d7f7b2007-06-17 19:56:38 -05002203 return 0;
James Smarted957682007-06-17 19:56:37 -05002204}
2205
James Smarte59058c2008-08-24 21:49:00 -04002206/**
James Smart3621a712009-04-06 18:47:14 -04002207 * lpfc_sli_hbqbuf_add_hbqs - Post more HBQ buffers to firmware
James Smarte59058c2008-08-24 21:49:00 -04002208 * @phba: Pointer to HBA context object.
2209 * @qno: HBQ number.
2210 *
2211 * This function posts more buffers to the HBQ. This function
James Smartd7c255b2008-08-24 21:50:00 -04002212 * is called with no lock held. The function returns the number of HBQ entries
2213 * successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04002214 **/
James Smarted957682007-06-17 19:56:37 -05002215int
James Smart92d7f7b2007-06-17 19:56:38 -05002216lpfc_sli_hbqbuf_add_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05002217{
James Smartdef9c7a2009-12-21 17:02:28 -05002218 if (phba->sli_rev == LPFC_SLI_REV4)
2219 return 0;
2220 else
2221 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
2222 lpfc_hbq_defs[qno]->add_count);
James Smarted957682007-06-17 19:56:37 -05002223}
2224
James Smarte59058c2008-08-24 21:49:00 -04002225/**
James Smart3621a712009-04-06 18:47:14 -04002226 * lpfc_sli_hbqbuf_init_hbqs - Post initial buffers to the HBQ
James Smarte59058c2008-08-24 21:49:00 -04002227 * @phba: Pointer to HBA context object.
2228 * @qno: HBQ queue number.
2229 *
2230 * This function is called from SLI initialization code path with
2231 * no lock held to post initial HBQ buffers to firmware. The
James Smartd7c255b2008-08-24 21:50:00 -04002232 * function returns the number of HBQ entries successfully allocated.
James Smarte59058c2008-08-24 21:49:00 -04002233 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01002234static int
James Smart92d7f7b2007-06-17 19:56:38 -05002235lpfc_sli_hbqbuf_init_hbqs(struct lpfc_hba *phba, uint32_t qno)
James Smarted957682007-06-17 19:56:37 -05002236{
James Smartdef9c7a2009-12-21 17:02:28 -05002237 if (phba->sli_rev == LPFC_SLI_REV4)
2238 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
James Smart73d91e52011-10-10 21:32:10 -04002239 lpfc_hbq_defs[qno]->entry_count);
James Smartdef9c7a2009-12-21 17:02:28 -05002240 else
2241 return lpfc_sli_hbqbuf_fill_hbqs(phba, qno,
2242 lpfc_hbq_defs[qno]->init_count);
James Smarted957682007-06-17 19:56:37 -05002243}
2244
James Smarte59058c2008-08-24 21:49:00 -04002245/**
James Smart3772a992009-05-22 14:50:54 -04002246 * lpfc_sli_hbqbuf_get - Remove the first hbq off of an hbq list
2247 * @phba: Pointer to HBA context object.
2248 * @hbqno: HBQ number.
2249 *
2250 * This function removes the first hbq buffer on an hbq list and returns a
2251 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
2252 **/
2253static struct hbq_dmabuf *
2254lpfc_sli_hbqbuf_get(struct list_head *rb_list)
2255{
2256 struct lpfc_dmabuf *d_buf;
2257
2258 list_remove_head(rb_list, d_buf, struct lpfc_dmabuf, list);
2259 if (!d_buf)
2260 return NULL;
2261 return container_of(d_buf, struct hbq_dmabuf, dbuf);
2262}
2263
2264/**
James Smart2d7dbc42017-02-12 13:52:35 -08002265 * lpfc_sli_rqbuf_get - Remove the first dma buffer off of an RQ list
2266 * @phba: Pointer to HBA context object.
2267 * @hbqno: HBQ number.
2268 *
2269 * This function removes the first RQ buffer on an RQ buffer list and returns a
2270 * pointer to that buffer. If it finds no buffers on the list it returns NULL.
2271 **/
2272static struct rqb_dmabuf *
2273lpfc_sli_rqbuf_get(struct lpfc_hba *phba, struct lpfc_queue *hrq)
2274{
2275 struct lpfc_dmabuf *h_buf;
2276 struct lpfc_rqb *rqbp;
2277
2278 rqbp = hrq->rqbp;
2279 list_remove_head(&rqbp->rqb_buffer_list, h_buf,
2280 struct lpfc_dmabuf, list);
2281 if (!h_buf)
2282 return NULL;
2283 rqbp->buffer_count--;
2284 return container_of(h_buf, struct rqb_dmabuf, hbuf);
2285}
2286
2287/**
James Smart3621a712009-04-06 18:47:14 -04002288 * lpfc_sli_hbqbuf_find - Find the hbq buffer associated with a tag
James Smarte59058c2008-08-24 21:49:00 -04002289 * @phba: Pointer to HBA context object.
2290 * @tag: Tag of the hbq buffer.
2291 *
Sebastian Herbszt71892412016-04-17 13:27:27 +02002292 * This function searches for the hbq buffer associated with the given tag in
2293 * the hbq buffer list. If it finds the hbq buffer, it returns the hbq_buffer
2294 * otherwise it returns NULL.
James Smarte59058c2008-08-24 21:49:00 -04002295 **/
Adrian Bunka6ababd2007-11-05 18:07:33 +01002296static struct hbq_dmabuf *
James Smarted957682007-06-17 19:56:37 -05002297lpfc_sli_hbqbuf_find(struct lpfc_hba *phba, uint32_t tag)
2298{
James Smart92d7f7b2007-06-17 19:56:38 -05002299 struct lpfc_dmabuf *d_buf;
2300 struct hbq_dmabuf *hbq_buf;
James Smart51ef4c22007-08-02 11:10:31 -04002301 uint32_t hbqno;
James Smarted957682007-06-17 19:56:37 -05002302
James Smart51ef4c22007-08-02 11:10:31 -04002303 hbqno = tag >> 16;
Jesper Juhla0a74e452007-08-09 20:47:15 +02002304 if (hbqno >= LPFC_MAX_HBQS)
James Smart51ef4c22007-08-02 11:10:31 -04002305 return NULL;
2306
James Smart3772a992009-05-22 14:50:54 -04002307 spin_lock_irq(&phba->hbalock);
James Smart51ef4c22007-08-02 11:10:31 -04002308 list_for_each_entry(d_buf, &phba->hbqs[hbqno].hbq_buffer_list, list) {
James Smart92d7f7b2007-06-17 19:56:38 -05002309 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
James Smart51ef4c22007-08-02 11:10:31 -04002310 if (hbq_buf->tag == tag) {
James Smart3772a992009-05-22 14:50:54 -04002311 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05002312 return hbq_buf;
James Smarted957682007-06-17 19:56:37 -05002313 }
2314 }
James Smart3772a992009-05-22 14:50:54 -04002315 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05002316 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04002317 "1803 Bad hbq tag. Data: x%x x%x\n",
James Smarta8adb832007-10-27 13:37:53 -04002318 tag, phba->hbqs[tag >> 16].buffer_count);
James Smart92d7f7b2007-06-17 19:56:38 -05002319 return NULL;
James Smarted957682007-06-17 19:56:37 -05002320}
2321
James Smarte59058c2008-08-24 21:49:00 -04002322/**
James Smart3621a712009-04-06 18:47:14 -04002323 * lpfc_sli_free_hbq - Give back the hbq buffer to firmware
James Smarte59058c2008-08-24 21:49:00 -04002324 * @phba: Pointer to HBA context object.
2325 * @hbq_buffer: Pointer to HBQ buffer.
2326 *
2327 * This function is called with hbalock. This function gives back
2328 * the hbq buffer to firmware. If the HBQ does not have space to
2329 * post the buffer, it will free the buffer.
2330 **/
James Smarted957682007-06-17 19:56:37 -05002331void
James Smart51ef4c22007-08-02 11:10:31 -04002332lpfc_sli_free_hbq(struct lpfc_hba *phba, struct hbq_dmabuf *hbq_buffer)
James Smarted957682007-06-17 19:56:37 -05002333{
2334 uint32_t hbqno;
2335
James Smart51ef4c22007-08-02 11:10:31 -04002336 if (hbq_buffer) {
2337 hbqno = hbq_buffer->tag >> 16;
James Smart3772a992009-05-22 14:50:54 -04002338 if (lpfc_sli_hbq_to_firmware(phba, hbqno, hbq_buffer))
James Smart51ef4c22007-08-02 11:10:31 -04002339 (phba->hbqs[hbqno].hbq_free_buffer)(phba, hbq_buffer);
James Smarted957682007-06-17 19:56:37 -05002340 }
2341}
2342
James Smarte59058c2008-08-24 21:49:00 -04002343/**
James Smart3621a712009-04-06 18:47:14 -04002344 * lpfc_sli_chk_mbx_command - Check if the mailbox is a legitimate mailbox
James Smarte59058c2008-08-24 21:49:00 -04002345 * @mbxCommand: mailbox command code.
2346 *
2347 * This function is called by the mailbox event handler function to verify
2348 * that the completed mailbox command is a legitimate mailbox command. If the
2349 * completed mailbox is not known to the function, it will return MBX_SHUTDOWN
2350 * and the mailbox event handler will take the HBA offline.
2351 **/
dea31012005-04-17 16:05:31 -05002352static int
2353lpfc_sli_chk_mbx_command(uint8_t mbxCommand)
2354{
2355 uint8_t ret;
2356
2357 switch (mbxCommand) {
2358 case MBX_LOAD_SM:
2359 case MBX_READ_NV:
2360 case MBX_WRITE_NV:
James Smarta8adb832007-10-27 13:37:53 -04002361 case MBX_WRITE_VPARMS:
dea31012005-04-17 16:05:31 -05002362 case MBX_RUN_BIU_DIAG:
2363 case MBX_INIT_LINK:
2364 case MBX_DOWN_LINK:
2365 case MBX_CONFIG_LINK:
2366 case MBX_CONFIG_RING:
2367 case MBX_RESET_RING:
2368 case MBX_READ_CONFIG:
2369 case MBX_READ_RCONFIG:
2370 case MBX_READ_SPARM:
2371 case MBX_READ_STATUS:
2372 case MBX_READ_RPI:
2373 case MBX_READ_XRI:
2374 case MBX_READ_REV:
2375 case MBX_READ_LNK_STAT:
2376 case MBX_REG_LOGIN:
2377 case MBX_UNREG_LOGIN:
dea31012005-04-17 16:05:31 -05002378 case MBX_CLEAR_LA:
2379 case MBX_DUMP_MEMORY:
2380 case MBX_DUMP_CONTEXT:
2381 case MBX_RUN_DIAGS:
2382 case MBX_RESTART:
2383 case MBX_UPDATE_CFG:
2384 case MBX_DOWN_LOAD:
2385 case MBX_DEL_LD_ENTRY:
2386 case MBX_RUN_PROGRAM:
2387 case MBX_SET_MASK:
James Smart09372822008-01-11 01:52:54 -05002388 case MBX_SET_VARIABLE:
dea31012005-04-17 16:05:31 -05002389 case MBX_UNREG_D_ID:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002390 case MBX_KILL_BOARD:
dea31012005-04-17 16:05:31 -05002391 case MBX_CONFIG_FARP:
Jamie Wellnitz41415862006-02-28 19:25:27 -05002392 case MBX_BEACON:
dea31012005-04-17 16:05:31 -05002393 case MBX_LOAD_AREA:
2394 case MBX_RUN_BIU_DIAG64:
2395 case MBX_CONFIG_PORT:
2396 case MBX_READ_SPARM64:
2397 case MBX_READ_RPI64:
2398 case MBX_REG_LOGIN64:
James Smart76a95d72010-11-20 23:11:48 -05002399 case MBX_READ_TOPOLOGY:
James Smart09372822008-01-11 01:52:54 -05002400 case MBX_WRITE_WWN:
dea31012005-04-17 16:05:31 -05002401 case MBX_SET_DEBUG:
2402 case MBX_LOAD_EXP_ROM:
James Smart57127f12007-10-27 13:37:05 -04002403 case MBX_ASYNCEVT_ENABLE:
James Smart92d7f7b2007-06-17 19:56:38 -05002404 case MBX_REG_VPI:
2405 case MBX_UNREG_VPI:
James Smart858c9f62007-06-17 19:56:39 -05002406 case MBX_HEARTBEAT:
James Smart84774a42008-08-24 21:50:06 -04002407 case MBX_PORT_CAPABILITIES:
2408 case MBX_PORT_IOV_CONTROL:
James Smart04c68492009-05-22 14:52:52 -04002409 case MBX_SLI4_CONFIG:
2410 case MBX_SLI4_REQ_FTRS:
2411 case MBX_REG_FCFI:
2412 case MBX_UNREG_FCFI:
2413 case MBX_REG_VFI:
2414 case MBX_UNREG_VFI:
2415 case MBX_INIT_VPI:
2416 case MBX_INIT_VFI:
2417 case MBX_RESUME_RPI:
James Smartc7495932010-04-06 15:05:28 -04002418 case MBX_READ_EVENT_LOG_STATUS:
2419 case MBX_READ_EVENT_LOG:
James Smartdcf2a4e2010-09-29 11:18:53 -04002420 case MBX_SECURITY_MGMT:
2421 case MBX_AUTH_PORT:
James Smart940eb682012-08-03 12:37:08 -04002422 case MBX_ACCESS_VDATA:
dea31012005-04-17 16:05:31 -05002423 ret = mbxCommand;
2424 break;
2425 default:
2426 ret = MBX_SHUTDOWN;
2427 break;
2428 }
James Smart2e0fef82007-06-17 19:56:36 -05002429 return ret;
dea31012005-04-17 16:05:31 -05002430}
James Smarte59058c2008-08-24 21:49:00 -04002431
2432/**
James Smart3621a712009-04-06 18:47:14 -04002433 * lpfc_sli_wake_mbox_wait - lpfc_sli_issue_mbox_wait mbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002434 * @phba: Pointer to HBA context object.
2435 * @pmboxq: Pointer to mailbox command.
2436 *
2437 * This is completion handler function for mailbox commands issued from
2438 * lpfc_sli_issue_mbox_wait function. This function is called by the
2439 * mailbox event handler function with no lock held. This function
2440 * will wake up thread waiting on the wait queue pointed by context1
2441 * of the mailbox.
2442 **/
James Smart04c68492009-05-22 14:52:52 -04002443void
James Smart2e0fef82007-06-17 19:56:36 -05002444lpfc_sli_wake_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
dea31012005-04-17 16:05:31 -05002445{
James Smart858c9f62007-06-17 19:56:39 -05002446 unsigned long drvr_flag;
James Smarte29d74f2018-03-05 12:04:07 -08002447 struct completion *pmbox_done;
dea31012005-04-17 16:05:31 -05002448
2449 /*
James Smarte29d74f2018-03-05 12:04:07 -08002450 * If pmbox_done is empty, the driver thread gave up waiting and
dea31012005-04-17 16:05:31 -05002451 * continued running.
2452 */
James Smart7054a602007-04-25 09:52:34 -04002453 pmboxq->mbox_flag |= LPFC_MBX_WAKE;
James Smart858c9f62007-06-17 19:56:39 -05002454 spin_lock_irqsave(&phba->hbalock, drvr_flag);
James Smarte29d74f2018-03-05 12:04:07 -08002455 pmbox_done = (struct completion *)pmboxq->context3;
2456 if (pmbox_done)
2457 complete(pmbox_done);
James Smart858c9f62007-06-17 19:56:39 -05002458 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05002459 return;
2460}
2461
James Smartb95b2112019-08-14 16:56:47 -07002462static void
2463__lpfc_sli_rpi_release(struct lpfc_vport *vport, struct lpfc_nodelist *ndlp)
2464{
2465 unsigned long iflags;
2466
2467 if (ndlp->nlp_flag & NLP_RELEASE_RPI) {
2468 lpfc_sli4_free_rpi(vport->phba, ndlp->nlp_rpi);
2469 spin_lock_irqsave(&vport->phba->ndlp_lock, iflags);
2470 ndlp->nlp_flag &= ~NLP_RELEASE_RPI;
2471 ndlp->nlp_rpi = LPFC_RPI_ALLOC_ERROR;
2472 spin_unlock_irqrestore(&vport->phba->ndlp_lock, iflags);
2473 }
2474 ndlp->nlp_flag &= ~NLP_UNREG_INP;
2475}
James Smarte59058c2008-08-24 21:49:00 -04002476
2477/**
James Smart3621a712009-04-06 18:47:14 -04002478 * lpfc_sli_def_mbox_cmpl - Default mailbox completion handler
James Smarte59058c2008-08-24 21:49:00 -04002479 * @phba: Pointer to HBA context object.
2480 * @pmb: Pointer to mailbox object.
2481 *
2482 * This function is the default mailbox completion handler. It
2483 * frees the memory resources associated with the completed mailbox
2484 * command. If the completed command is a REG_LOGIN mailbox command,
2485 * this function will issue a UREG_LOGIN to re-claim the RPI.
2486 **/
dea31012005-04-17 16:05:31 -05002487void
James Smart2e0fef82007-06-17 19:56:36 -05002488lpfc_sli_def_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
dea31012005-04-17 16:05:31 -05002489{
James Smartd439d282010-09-29 11:18:45 -04002490 struct lpfc_vport *vport = pmb->vport;
dea31012005-04-17 16:05:31 -05002491 struct lpfc_dmabuf *mp;
James Smartd439d282010-09-29 11:18:45 -04002492 struct lpfc_nodelist *ndlp;
James Smart5af5eee2010-10-22 11:06:38 -04002493 struct Scsi_Host *shost;
James Smart04c68492009-05-22 14:52:52 -04002494 uint16_t rpi, vpi;
James Smart7054a602007-04-25 09:52:34 -04002495 int rc;
2496
James Smart3e1f0712018-11-29 16:09:29 -08002497 mp = (struct lpfc_dmabuf *)(pmb->ctx_buf);
James Smart7054a602007-04-25 09:52:34 -04002498
dea31012005-04-17 16:05:31 -05002499 if (mp) {
2500 lpfc_mbuf_free(phba, mp->virt, mp->phys);
2501 kfree(mp);
2502 }
James Smart7054a602007-04-25 09:52:34 -04002503
2504 /*
2505 * If a REG_LOGIN succeeded after node is destroyed or node
2506 * is in re-discovery driver need to cleanup the RPI.
2507 */
James Smart2e0fef82007-06-17 19:56:36 -05002508 if (!(phba->pport->load_flag & FC_UNLOADING) &&
James Smart04c68492009-05-22 14:52:52 -04002509 pmb->u.mb.mbxCommand == MBX_REG_LOGIN64 &&
2510 !pmb->u.mb.mbxStatus) {
2511 rpi = pmb->u.mb.un.varWords[0];
James Smart6d368e52011-05-24 11:44:12 -04002512 vpi = pmb->u.mb.un.varRegLogin.vpi;
James Smart04c68492009-05-22 14:52:52 -04002513 lpfc_unreg_login(phba, vpi, rpi, pmb);
James Smartde96e9c2016-03-31 14:12:27 -07002514 pmb->vport = vport;
James Smart92d7f7b2007-06-17 19:56:38 -05002515 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart7054a602007-04-25 09:52:34 -04002516 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
2517 if (rc != MBX_NOT_FINISHED)
2518 return;
2519 }
2520
James Smart695a8142010-01-26 23:08:03 -05002521 if ((pmb->u.mb.mbxCommand == MBX_REG_VPI) &&
2522 !(phba->pport->load_flag & FC_UNLOADING) &&
2523 !pmb->u.mb.mbxStatus) {
James Smart5af5eee2010-10-22 11:06:38 -04002524 shost = lpfc_shost_from_vport(vport);
2525 spin_lock_irq(shost->host_lock);
2526 vport->vpi_state |= LPFC_VPI_REGISTERED;
2527 vport->fc_flag &= ~FC_VPORT_NEEDS_REG_VPI;
2528 spin_unlock_irq(shost->host_lock);
James Smart695a8142010-01-26 23:08:03 -05002529 }
2530
James Smartd439d282010-09-29 11:18:45 -04002531 if (pmb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
James Smart3e1f0712018-11-29 16:09:29 -08002532 ndlp = (struct lpfc_nodelist *)pmb->ctx_ndlp;
James Smartd439d282010-09-29 11:18:45 -04002533 lpfc_nlp_put(ndlp);
James Smartdea16bd2018-11-29 16:09:30 -08002534 pmb->ctx_buf = NULL;
2535 pmb->ctx_ndlp = NULL;
2536 }
2537
2538 if (pmb->u.mb.mbxCommand == MBX_UNREG_LOGIN) {
2539 ndlp = (struct lpfc_nodelist *)pmb->ctx_ndlp;
2540
2541 /* Check to see if there are any deferred events to process */
2542 if (ndlp) {
2543 lpfc_printf_vlog(
2544 vport,
2545 KERN_INFO, LOG_MBOX | LOG_DISCOVERY,
2546 "1438 UNREG cmpl deferred mbox x%x "
James Smart32350662019-08-14 16:57:06 -07002547 "on NPort x%x Data: x%x x%x %px\n",
James Smartdea16bd2018-11-29 16:09:30 -08002548 ndlp->nlp_rpi, ndlp->nlp_DID,
2549 ndlp->nlp_flag, ndlp->nlp_defer_did, ndlp);
2550
2551 if ((ndlp->nlp_flag & NLP_UNREG_INP) &&
2552 (ndlp->nlp_defer_did != NLP_EVT_NOTHING_PENDING)) {
James Smart00292e02018-12-13 15:17:55 -08002553 ndlp->nlp_flag &= ~NLP_UNREG_INP;
James Smartdea16bd2018-11-29 16:09:30 -08002554 ndlp->nlp_defer_did = NLP_EVT_NOTHING_PENDING;
2555 lpfc_issue_els_plogi(vport, ndlp->nlp_DID, 0);
James Smart00292e02018-12-13 15:17:55 -08002556 } else {
James Smartb95b2112019-08-14 16:56:47 -07002557 __lpfc_sli_rpi_release(vport, ndlp);
James Smartdea16bd2018-11-29 16:09:30 -08002558 }
James Smart97acd002019-09-21 20:58:51 -07002559 if (vport->load_flag & FC_UNLOADING)
2560 lpfc_nlp_put(ndlp);
James Smart9b164062019-03-12 16:30:06 -07002561 pmb->ctx_ndlp = NULL;
James Smartdea16bd2018-11-29 16:09:30 -08002562 }
James Smartd439d282010-09-29 11:18:45 -04002563 }
2564
James Smartdcf2a4e2010-09-29 11:18:53 -04002565 /* Check security permission status on INIT_LINK mailbox command */
2566 if ((pmb->u.mb.mbxCommand == MBX_INIT_LINK) &&
2567 (pmb->u.mb.mbxStatus == MBXERR_SEC_NO_PERMISSION))
2568 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
2569 "2860 SLI authentication is required "
2570 "for INIT_LINK but has not done yet\n");
2571
James Smart04c68492009-05-22 14:52:52 -04002572 if (bf_get(lpfc_mqe_command, &pmb->u.mqe) == MBX_SLI4_CONFIG)
2573 lpfc_sli4_mbox_cmd_free(phba, pmb);
2574 else
2575 mempool_free(pmb, phba->mbox_mem_pool);
dea31012005-04-17 16:05:31 -05002576}
James Smartbe6bb942015-04-07 15:07:22 -04002577 /**
2578 * lpfc_sli4_unreg_rpi_cmpl_clr - mailbox completion handler
2579 * @phba: Pointer to HBA context object.
2580 * @pmb: Pointer to mailbox object.
2581 *
2582 * This function is the unreg rpi mailbox completion handler. It
2583 * frees the memory resources associated with the completed mailbox
2584 * command. An additional refrenece is put on the ndlp to prevent
2585 * lpfc_nlp_release from freeing the rpi bit in the bitmask before
2586 * the unreg mailbox command completes, this routine puts the
2587 * reference back.
2588 *
2589 **/
2590void
2591lpfc_sli4_unreg_rpi_cmpl_clr(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
2592{
2593 struct lpfc_vport *vport = pmb->vport;
2594 struct lpfc_nodelist *ndlp;
2595
James Smart3e1f0712018-11-29 16:09:29 -08002596 ndlp = pmb->ctx_ndlp;
James Smartbe6bb942015-04-07 15:07:22 -04002597 if (pmb->u.mb.mbxCommand == MBX_UNREG_LOGIN) {
2598 if (phba->sli_rev == LPFC_SLI_REV4 &&
2599 (bf_get(lpfc_sli_intf_if_type,
James Smart27d6ac02018-02-22 08:18:42 -08002600 &phba->sli4_hba.sli_intf) >=
James Smartbe6bb942015-04-07 15:07:22 -04002601 LPFC_SLI_INTF_IF_TYPE_2)) {
2602 if (ndlp) {
James Smartdea16bd2018-11-29 16:09:30 -08002603 lpfc_printf_vlog(
2604 vport, KERN_INFO, LOG_MBOX | LOG_SLI,
2605 "0010 UNREG_LOGIN vpi:%x "
2606 "rpi:%x DID:%x defer x%x flg x%x "
James Smart32350662019-08-14 16:57:06 -07002607 "map:%x %px\n",
James Smartdea16bd2018-11-29 16:09:30 -08002608 vport->vpi, ndlp->nlp_rpi,
2609 ndlp->nlp_DID, ndlp->nlp_defer_did,
2610 ndlp->nlp_flag,
2611 ndlp->nlp_usg_map, ndlp);
James Smart7c5e5182015-05-22 10:42:43 -04002612 ndlp->nlp_flag &= ~NLP_LOGO_ACC;
James Smartbe6bb942015-04-07 15:07:22 -04002613 lpfc_nlp_put(ndlp);
James Smartdea16bd2018-11-29 16:09:30 -08002614
2615 /* Check to see if there are any deferred
2616 * events to process
2617 */
2618 if ((ndlp->nlp_flag & NLP_UNREG_INP) &&
2619 (ndlp->nlp_defer_did !=
2620 NLP_EVT_NOTHING_PENDING)) {
2621 lpfc_printf_vlog(
2622 vport, KERN_INFO, LOG_DISCOVERY,
2623 "4111 UNREG cmpl deferred "
2624 "clr x%x on "
James Smart32350662019-08-14 16:57:06 -07002625 "NPort x%x Data: x%x x%px\n",
James Smartdea16bd2018-11-29 16:09:30 -08002626 ndlp->nlp_rpi, ndlp->nlp_DID,
2627 ndlp->nlp_defer_did, ndlp);
James Smart00292e02018-12-13 15:17:55 -08002628 ndlp->nlp_flag &= ~NLP_UNREG_INP;
James Smartdea16bd2018-11-29 16:09:30 -08002629 ndlp->nlp_defer_did =
2630 NLP_EVT_NOTHING_PENDING;
2631 lpfc_issue_els_plogi(
2632 vport, ndlp->nlp_DID, 0);
James Smart00292e02018-12-13 15:17:55 -08002633 } else {
James Smartb95b2112019-08-14 16:56:47 -07002634 __lpfc_sli_rpi_release(vport, ndlp);
James Smartdea16bd2018-11-29 16:09:30 -08002635 }
James Smartbe6bb942015-04-07 15:07:22 -04002636 }
2637 }
2638 }
2639
2640 mempool_free(pmb, phba->mbox_mem_pool);
2641}
dea31012005-04-17 16:05:31 -05002642
James Smarte59058c2008-08-24 21:49:00 -04002643/**
James Smart3621a712009-04-06 18:47:14 -04002644 * lpfc_sli_handle_mb_event - Handle mailbox completions from firmware
James Smarte59058c2008-08-24 21:49:00 -04002645 * @phba: Pointer to HBA context object.
2646 *
2647 * This function is called with no lock held. This function processes all
2648 * the completed mailbox commands and gives it to upper layers. The interrupt
2649 * service routine processes mailbox completion interrupt and adds completed
2650 * mailbox commands to the mboxq_cmpl queue and signals the worker thread.
2651 * Worker thread call lpfc_sli_handle_mb_event, which will return the
2652 * completed mailbox commands in mboxq_cmpl queue to the upper layers. This
2653 * function returns the mailbox commands to the upper layer by calling the
2654 * completion handler function of each mailbox.
2655 **/
dea31012005-04-17 16:05:31 -05002656int
James Smart2e0fef82007-06-17 19:56:36 -05002657lpfc_sli_handle_mb_event(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05002658{
James Smart92d7f7b2007-06-17 19:56:38 -05002659 MAILBOX_t *pmbox;
dea31012005-04-17 16:05:31 -05002660 LPFC_MBOXQ_t *pmb;
James Smart92d7f7b2007-06-17 19:56:38 -05002661 int rc;
2662 LIST_HEAD(cmplq);
dea31012005-04-17 16:05:31 -05002663
2664 phba->sli.slistat.mbox_event++;
2665
James Smart92d7f7b2007-06-17 19:56:38 -05002666 /* Get all completed mailboxe buffers into the cmplq */
2667 spin_lock_irq(&phba->hbalock);
2668 list_splice_init(&phba->sli.mboxq_cmpl, &cmplq);
2669 spin_unlock_irq(&phba->hbalock);
2670
dea31012005-04-17 16:05:31 -05002671 /* Get a Mailbox buffer to setup mailbox commands for callback */
James Smart92d7f7b2007-06-17 19:56:38 -05002672 do {
2673 list_remove_head(&cmplq, pmb, LPFC_MBOXQ_t, list);
2674 if (pmb == NULL)
2675 break;
2676
James Smart04c68492009-05-22 14:52:52 -04002677 pmbox = &pmb->u.mb;
dea31012005-04-17 16:05:31 -05002678
James Smart858c9f62007-06-17 19:56:39 -05002679 if (pmbox->mbxCommand != MBX_HEARTBEAT) {
2680 if (pmb->vport) {
2681 lpfc_debugfs_disc_trc(pmb->vport,
2682 LPFC_DISC_TRC_MBOX_VPORT,
2683 "MBOX cmpl vport: cmd:x%x mb:x%x x%x",
2684 (uint32_t)pmbox->mbxCommand,
2685 pmbox->un.varWords[0],
2686 pmbox->un.varWords[1]);
2687 }
2688 else {
2689 lpfc_debugfs_disc_trc(phba->pport,
2690 LPFC_DISC_TRC_MBOX,
2691 "MBOX cmpl: cmd:x%x mb:x%x x%x",
2692 (uint32_t)pmbox->mbxCommand,
2693 pmbox->un.varWords[0],
2694 pmbox->un.varWords[1]);
2695 }
2696 }
2697
dea31012005-04-17 16:05:31 -05002698 /*
2699 * It is a fatal error if unknown mbox command completion.
2700 */
2701 if (lpfc_sli_chk_mbx_command(pmbox->mbxCommand) ==
2702 MBX_SHUTDOWN) {
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002703 /* Unknown mailbox command compl */
James Smart92d7f7b2007-06-17 19:56:38 -05002704 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04002705 "(%d):0323 Unknown Mailbox command "
James Smarta183a152011-10-10 21:32:43 -04002706 "x%x (x%x/x%x) Cmpl\n",
James Smart43bfea12019-09-21 20:58:57 -07002707 pmb->vport ? pmb->vport->vpi :
2708 LPFC_VPORT_UNKNOWN,
James Smart04c68492009-05-22 14:52:52 -04002709 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002710 lpfc_sli_config_mbox_subsys_get(phba,
2711 pmb),
2712 lpfc_sli_config_mbox_opcode_get(phba,
2713 pmb));
James Smart2e0fef82007-06-17 19:56:36 -05002714 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05002715 phba->work_hs = HS_FFER3;
2716 lpfc_handle_eratt(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05002717 continue;
dea31012005-04-17 16:05:31 -05002718 }
2719
dea31012005-04-17 16:05:31 -05002720 if (pmbox->mbxStatus) {
2721 phba->sli.slistat.mbox_stat_err++;
2722 if (pmbox->mbxStatus == MBXERR_NO_RESOURCES) {
2723 /* Mbox cmd cmpl error - RETRYing */
James Smart92d7f7b2007-06-17 19:56:38 -05002724 lpfc_printf_log(phba, KERN_INFO,
James Smarta183a152011-10-10 21:32:43 -04002725 LOG_MBOX | LOG_SLI,
2726 "(%d):0305 Mbox cmd cmpl "
2727 "error - RETRYing Data: x%x "
2728 "(x%x/x%x) x%x x%x x%x\n",
James Smart43bfea12019-09-21 20:58:57 -07002729 pmb->vport ? pmb->vport->vpi :
2730 LPFC_VPORT_UNKNOWN,
James Smarta183a152011-10-10 21:32:43 -04002731 pmbox->mbxCommand,
2732 lpfc_sli_config_mbox_subsys_get(phba,
2733 pmb),
2734 lpfc_sli_config_mbox_opcode_get(phba,
2735 pmb),
2736 pmbox->mbxStatus,
2737 pmbox->un.varWords[0],
James Smart43bfea12019-09-21 20:58:57 -07002738 pmb->vport ? pmb->vport->port_state :
2739 LPFC_VPORT_UNKNOWN);
dea31012005-04-17 16:05:31 -05002740 pmbox->mbxStatus = 0;
2741 pmbox->mbxOwner = OWN_HOST;
dea31012005-04-17 16:05:31 -05002742 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
James Smart04c68492009-05-22 14:52:52 -04002743 if (rc != MBX_NOT_FINISHED)
James Smart92d7f7b2007-06-17 19:56:38 -05002744 continue;
dea31012005-04-17 16:05:31 -05002745 }
2746 }
2747
2748 /* Mailbox cmd <cmd> Cmpl <cmpl> */
James Smart92d7f7b2007-06-17 19:56:38 -05002749 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
Sakari Ailus2d44d162019-09-04 19:04:23 +03002750 "(%d):0307 Mailbox cmd x%x (x%x/x%x) Cmpl %ps "
James Smarte74c03c2013-04-17 20:15:19 -04002751 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
2752 "x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05002753 pmb->vport ? pmb->vport->vpi : 0,
dea31012005-04-17 16:05:31 -05002754 pmbox->mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04002755 lpfc_sli_config_mbox_subsys_get(phba, pmb),
2756 lpfc_sli_config_mbox_opcode_get(phba, pmb),
dea31012005-04-17 16:05:31 -05002757 pmb->mbox_cmpl,
2758 *((uint32_t *) pmbox),
2759 pmbox->un.varWords[0],
2760 pmbox->un.varWords[1],
2761 pmbox->un.varWords[2],
2762 pmbox->un.varWords[3],
2763 pmbox->un.varWords[4],
2764 pmbox->un.varWords[5],
2765 pmbox->un.varWords[6],
James Smarte74c03c2013-04-17 20:15:19 -04002766 pmbox->un.varWords[7],
2767 pmbox->un.varWords[8],
2768 pmbox->un.varWords[9],
2769 pmbox->un.varWords[10]);
dea31012005-04-17 16:05:31 -05002770
James Smart92d7f7b2007-06-17 19:56:38 -05002771 if (pmb->mbox_cmpl)
dea31012005-04-17 16:05:31 -05002772 pmb->mbox_cmpl(phba,pmb);
James Smart92d7f7b2007-06-17 19:56:38 -05002773 } while (1);
James Smart2e0fef82007-06-17 19:56:36 -05002774 return 0;
dea31012005-04-17 16:05:31 -05002775}
James Smart92d7f7b2007-06-17 19:56:38 -05002776
James Smarte59058c2008-08-24 21:49:00 -04002777/**
James Smart3621a712009-04-06 18:47:14 -04002778 * lpfc_sli_get_buff - Get the buffer associated with the buffer tag
James Smarte59058c2008-08-24 21:49:00 -04002779 * @phba: Pointer to HBA context object.
2780 * @pring: Pointer to driver SLI ring object.
2781 * @tag: buffer tag.
2782 *
2783 * This function is called with no lock held. When QUE_BUFTAG_BIT bit
2784 * is set in the tag the buffer is posted for a particular exchange,
2785 * the function will return the buffer without replacing the buffer.
2786 * If the buffer is for unsolicited ELS or CT traffic, this function
2787 * returns the buffer and also posts another buffer to the firmware.
2788 **/
James Smart76bb24e2007-10-27 13:38:00 -04002789static struct lpfc_dmabuf *
2790lpfc_sli_get_buff(struct lpfc_hba *phba,
James Smart9f1e1b52008-12-04 22:39:40 -05002791 struct lpfc_sli_ring *pring,
2792 uint32_t tag)
James Smart76bb24e2007-10-27 13:38:00 -04002793{
James Smart9f1e1b52008-12-04 22:39:40 -05002794 struct hbq_dmabuf *hbq_entry;
2795
James Smart76bb24e2007-10-27 13:38:00 -04002796 if (tag & QUE_BUFTAG_BIT)
2797 return lpfc_sli_ring_taggedbuf_get(phba, pring, tag);
James Smart9f1e1b52008-12-04 22:39:40 -05002798 hbq_entry = lpfc_sli_hbqbuf_find(phba, tag);
2799 if (!hbq_entry)
2800 return NULL;
2801 return &hbq_entry->dbuf;
James Smart76bb24e2007-10-27 13:38:00 -04002802}
James Smart57127f12007-10-27 13:37:05 -04002803
James Smart3772a992009-05-22 14:50:54 -04002804/**
2805 * lpfc_complete_unsol_iocb - Complete an unsolicited sequence
2806 * @phba: Pointer to HBA context object.
2807 * @pring: Pointer to driver SLI ring object.
2808 * @saveq: Pointer to the iocbq struct representing the sequence starting frame.
2809 * @fch_r_ctl: the r_ctl for the first frame of the sequence.
2810 * @fch_type: the type for the first frame of the sequence.
2811 *
2812 * This function is called with no lock held. This function uses the r_ctl and
2813 * type of the received sequence to find the correct callback function to call
2814 * to process the sequence.
2815 **/
2816static int
2817lpfc_complete_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2818 struct lpfc_iocbq *saveq, uint32_t fch_r_ctl,
2819 uint32_t fch_type)
2820{
2821 int i;
2822
James Smartf358dd02017-02-12 13:52:34 -08002823 switch (fch_type) {
2824 case FC_TYPE_NVME:
James Smartd613b6a2017-02-12 13:52:37 -08002825 lpfc_nvmet_unsol_ls_event(phba, pring, saveq);
James Smartf358dd02017-02-12 13:52:34 -08002826 return 1;
2827 default:
2828 break;
2829 }
2830
James Smart3772a992009-05-22 14:50:54 -04002831 /* unSolicited Responses */
2832 if (pring->prt[0].profile) {
2833 if (pring->prt[0].lpfc_sli_rcv_unsol_event)
2834 (pring->prt[0].lpfc_sli_rcv_unsol_event) (phba, pring,
2835 saveq);
2836 return 1;
2837 }
2838 /* We must search, based on rctl / type
2839 for the right routine */
2840 for (i = 0; i < pring->num_mask; i++) {
2841 if ((pring->prt[i].rctl == fch_r_ctl) &&
2842 (pring->prt[i].type == fch_type)) {
2843 if (pring->prt[i].lpfc_sli_rcv_unsol_event)
2844 (pring->prt[i].lpfc_sli_rcv_unsol_event)
2845 (phba, pring, saveq);
2846 return 1;
2847 }
2848 }
2849 return 0;
2850}
James Smarte59058c2008-08-24 21:49:00 -04002851
2852/**
James Smart3621a712009-04-06 18:47:14 -04002853 * lpfc_sli_process_unsol_iocb - Unsolicited iocb handler
James Smarte59058c2008-08-24 21:49:00 -04002854 * @phba: Pointer to HBA context object.
2855 * @pring: Pointer to driver SLI ring object.
2856 * @saveq: Pointer to the unsolicited iocb.
2857 *
2858 * This function is called with no lock held by the ring event handler
2859 * when there is an unsolicited iocb posted to the response ring by the
2860 * firmware. This function gets the buffer associated with the iocbs
2861 * and calls the event handler for the ring. This function handles both
2862 * qring buffers and hbq buffers.
2863 * When the function returns 1 the caller can free the iocb object otherwise
2864 * upper layer functions will free the iocb objects.
2865 **/
dea31012005-04-17 16:05:31 -05002866static int
2867lpfc_sli_process_unsol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
2868 struct lpfc_iocbq *saveq)
2869{
2870 IOCB_t * irsp;
2871 WORD5 * w5p;
2872 uint32_t Rctl, Type;
James Smart76bb24e2007-10-27 13:38:00 -04002873 struct lpfc_iocbq *iocbq;
James Smart3163f722008-02-08 18:50:25 -05002874 struct lpfc_dmabuf *dmzbuf;
dea31012005-04-17 16:05:31 -05002875
dea31012005-04-17 16:05:31 -05002876 irsp = &(saveq->iocb);
James Smart57127f12007-10-27 13:37:05 -04002877
2878 if (irsp->ulpCommand == CMD_ASYNC_STATUS) {
2879 if (pring->lpfc_sli_rcv_async_status)
2880 pring->lpfc_sli_rcv_async_status(phba, pring, saveq);
2881 else
2882 lpfc_printf_log(phba,
2883 KERN_WARNING,
2884 LOG_SLI,
2885 "0316 Ring %d handler: unexpected "
2886 "ASYNC_STATUS iocb received evt_code "
2887 "0x%x\n",
2888 pring->ringno,
2889 irsp->un.asyncstat.evt_code);
2890 return 1;
2891 }
2892
James Smart3163f722008-02-08 18:50:25 -05002893 if ((irsp->ulpCommand == CMD_IOCB_RET_XRI64_CX) &&
2894 (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED)) {
2895 if (irsp->ulpBdeCount > 0) {
2896 dmzbuf = lpfc_sli_get_buff(phba, pring,
2897 irsp->un.ulpWord[3]);
2898 lpfc_in_buf_free(phba, dmzbuf);
2899 }
2900
2901 if (irsp->ulpBdeCount > 1) {
2902 dmzbuf = lpfc_sli_get_buff(phba, pring,
2903 irsp->unsli3.sli3Words[3]);
2904 lpfc_in_buf_free(phba, dmzbuf);
2905 }
2906
2907 if (irsp->ulpBdeCount > 2) {
2908 dmzbuf = lpfc_sli_get_buff(phba, pring,
2909 irsp->unsli3.sli3Words[7]);
2910 lpfc_in_buf_free(phba, dmzbuf);
2911 }
2912
2913 return 1;
2914 }
2915
James Smart92d7f7b2007-06-17 19:56:38 -05002916 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
James Smart76bb24e2007-10-27 13:38:00 -04002917 if (irsp->ulpBdeCount != 0) {
2918 saveq->context2 = lpfc_sli_get_buff(phba, pring,
James Smart92d7f7b2007-06-17 19:56:38 -05002919 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002920 if (!saveq->context2)
2921 lpfc_printf_log(phba,
2922 KERN_ERR,
2923 LOG_SLI,
2924 "0341 Ring %d Cannot find buffer for "
2925 "an unsolicited iocb. tag 0x%x\n",
2926 pring->ringno,
2927 irsp->un.ulpWord[3]);
James Smart76bb24e2007-10-27 13:38:00 -04002928 }
2929 if (irsp->ulpBdeCount == 2) {
2930 saveq->context3 = lpfc_sli_get_buff(phba, pring,
James Smart51ef4c22007-08-02 11:10:31 -04002931 irsp->unsli3.sli3Words[7]);
James Smart76bb24e2007-10-27 13:38:00 -04002932 if (!saveq->context3)
2933 lpfc_printf_log(phba,
2934 KERN_ERR,
2935 LOG_SLI,
2936 "0342 Ring %d Cannot find buffer for an"
2937 " unsolicited iocb. tag 0x%x\n",
2938 pring->ringno,
2939 irsp->unsli3.sli3Words[7]);
2940 }
2941 list_for_each_entry(iocbq, &saveq->list, list) {
James Smart76bb24e2007-10-27 13:38:00 -04002942 irsp = &(iocbq->iocb);
James Smart76bb24e2007-10-27 13:38:00 -04002943 if (irsp->ulpBdeCount != 0) {
2944 iocbq->context2 = lpfc_sli_get_buff(phba, pring,
2945 irsp->un.ulpWord[3]);
James Smart9c2face2008-01-11 01:53:18 -05002946 if (!iocbq->context2)
James Smart76bb24e2007-10-27 13:38:00 -04002947 lpfc_printf_log(phba,
2948 KERN_ERR,
2949 LOG_SLI,
2950 "0343 Ring %d Cannot find "
2951 "buffer for an unsolicited iocb"
2952 ". tag 0x%x\n", pring->ringno,
2953 irsp->un.ulpWord[3]);
2954 }
2955 if (irsp->ulpBdeCount == 2) {
2956 iocbq->context3 = lpfc_sli_get_buff(phba, pring,
2957 irsp->unsli3.sli3Words[7]);
James Smart9c2face2008-01-11 01:53:18 -05002958 if (!iocbq->context3)
James Smart76bb24e2007-10-27 13:38:00 -04002959 lpfc_printf_log(phba,
2960 KERN_ERR,
2961 LOG_SLI,
2962 "0344 Ring %d Cannot find "
2963 "buffer for an unsolicited "
2964 "iocb. tag 0x%x\n",
2965 pring->ringno,
2966 irsp->unsli3.sli3Words[7]);
2967 }
2968 }
James Smart92d7f7b2007-06-17 19:56:38 -05002969 }
James Smart9c2face2008-01-11 01:53:18 -05002970 if (irsp->ulpBdeCount != 0 &&
2971 (irsp->ulpCommand == CMD_IOCB_RCV_CONT64_CX ||
2972 irsp->ulpStatus == IOSTAT_INTERMED_RSP)) {
2973 int found = 0;
2974
2975 /* search continue save q for same XRI */
2976 list_for_each_entry(iocbq, &pring->iocb_continue_saveq, clist) {
James Smart7851fe22011-07-22 18:36:52 -04002977 if (iocbq->iocb.unsli3.rcvsli3.ox_id ==
2978 saveq->iocb.unsli3.rcvsli3.ox_id) {
James Smart9c2face2008-01-11 01:53:18 -05002979 list_add_tail(&saveq->list, &iocbq->list);
2980 found = 1;
2981 break;
2982 }
2983 }
2984 if (!found)
2985 list_add_tail(&saveq->clist,
2986 &pring->iocb_continue_saveq);
2987 if (saveq->iocb.ulpStatus != IOSTAT_INTERMED_RSP) {
2988 list_del_init(&iocbq->clist);
2989 saveq = iocbq;
2990 irsp = &(saveq->iocb);
2991 } else
2992 return 0;
2993 }
2994 if ((irsp->ulpCommand == CMD_RCV_ELS_REQ64_CX) ||
2995 (irsp->ulpCommand == CMD_RCV_ELS_REQ_CX) ||
2996 (irsp->ulpCommand == CMD_IOCB_RCV_ELS64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04002997 Rctl = FC_RCTL_ELS_REQ;
2998 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05002999 } else {
3000 w5p = (WORD5 *)&(saveq->iocb.un.ulpWord[5]);
3001 Rctl = w5p->hcsw.Rctl;
3002 Type = w5p->hcsw.Type;
3003
3004 /* Firmware Workaround */
3005 if ((Rctl == 0) && (pring->ringno == LPFC_ELS_RING) &&
3006 (irsp->ulpCommand == CMD_RCV_SEQUENCE64_CX ||
3007 irsp->ulpCommand == CMD_IOCB_RCV_SEQ64_CX)) {
James Smart6a9c52c2009-10-02 15:16:51 -04003008 Rctl = FC_RCTL_ELS_REQ;
3009 Type = FC_TYPE_ELS;
James Smart9c2face2008-01-11 01:53:18 -05003010 w5p->hcsw.Rctl = Rctl;
3011 w5p->hcsw.Type = Type;
3012 }
3013 }
James Smart92d7f7b2007-06-17 19:56:38 -05003014
James Smart3772a992009-05-22 14:50:54 -04003015 if (!lpfc_complete_unsol_iocb(phba, pring, saveq, Rctl, Type))
James Smart92d7f7b2007-06-17 19:56:38 -05003016 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003017 "0313 Ring %d handler: unexpected Rctl x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05003018 "Type x%x received\n",
James Smarte8b62012007-08-02 11:10:09 -04003019 pring->ringno, Rctl, Type);
James Smart3772a992009-05-22 14:50:54 -04003020
James Smart92d7f7b2007-06-17 19:56:38 -05003021 return 1;
dea31012005-04-17 16:05:31 -05003022}
3023
James Smarte59058c2008-08-24 21:49:00 -04003024/**
James Smart3621a712009-04-06 18:47:14 -04003025 * lpfc_sli_iocbq_lookup - Find command iocb for the given response iocb
James Smarte59058c2008-08-24 21:49:00 -04003026 * @phba: Pointer to HBA context object.
3027 * @pring: Pointer to driver SLI ring object.
3028 * @prspiocb: Pointer to response iocb object.
3029 *
3030 * This function looks up the iocb_lookup table to get the command iocb
3031 * corresponding to the given response iocb using the iotag of the
James Smarte2a8be52019-05-06 17:26:47 -07003032 * response iocb. The driver calls this function with the hbalock held
3033 * for SLI3 ports or the ring lock held for SLI4 ports.
James Smarte59058c2008-08-24 21:49:00 -04003034 * This function returns the command iocb object if it finds the command
3035 * iocb else returns NULL.
3036 **/
dea31012005-04-17 16:05:31 -05003037static struct lpfc_iocbq *
James Smart2e0fef82007-06-17 19:56:36 -05003038lpfc_sli_iocbq_lookup(struct lpfc_hba *phba,
3039 struct lpfc_sli_ring *pring,
3040 struct lpfc_iocbq *prspiocb)
dea31012005-04-17 16:05:31 -05003041{
dea31012005-04-17 16:05:31 -05003042 struct lpfc_iocbq *cmd_iocb = NULL;
3043 uint16_t iotag;
James Smarte2a8be52019-05-06 17:26:47 -07003044 spinlock_t *temp_lock = NULL;
3045 unsigned long iflag = 0;
dea31012005-04-17 16:05:31 -05003046
James Smarte2a8be52019-05-06 17:26:47 -07003047 if (phba->sli_rev == LPFC_SLI_REV4)
3048 temp_lock = &pring->ring_lock;
3049 else
3050 temp_lock = &phba->hbalock;
3051
3052 spin_lock_irqsave(temp_lock, iflag);
James Bottomley604a3e32005-10-29 10:28:33 -05003053 iotag = prspiocb->iocb.ulpIoTag;
dea31012005-04-17 16:05:31 -05003054
James Bottomley604a3e32005-10-29 10:28:33 -05003055 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
3056 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart4f2e66c2012-05-09 21:17:07 -04003057 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
James Smart89533e92016-10-13 15:06:15 -07003058 /* remove from txcmpl queue list */
3059 list_del_init(&cmd_iocb->list);
James Smart4f2e66c2012-05-09 21:17:07 -04003060 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smartc4908502019-01-28 11:14:28 -08003061 pring->txcmplq_cnt--;
James Smarte2a8be52019-05-06 17:26:47 -07003062 spin_unlock_irqrestore(temp_lock, iflag);
James Smart89533e92016-10-13 15:06:15 -07003063 return cmd_iocb;
James Smart2a9bf3d2010-06-07 15:24:45 -04003064 }
dea31012005-04-17 16:05:31 -05003065 }
3066
James Smarte2a8be52019-05-06 17:26:47 -07003067 spin_unlock_irqrestore(temp_lock, iflag);
dea31012005-04-17 16:05:31 -05003068 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart89533e92016-10-13 15:06:15 -07003069 "0317 iotag x%x is out of "
James Bottomley604a3e32005-10-29 10:28:33 -05003070 "range: max iotag x%x wd0 x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003071 iotag, phba->sli.last_iotag,
James Bottomley604a3e32005-10-29 10:28:33 -05003072 *(((uint32_t *) &prspiocb->iocb) + 7));
dea31012005-04-17 16:05:31 -05003073 return NULL;
3074}
3075
James Smarte59058c2008-08-24 21:49:00 -04003076/**
James Smart3772a992009-05-22 14:50:54 -04003077 * lpfc_sli_iocbq_lookup_by_tag - Find command iocb for the iotag
3078 * @phba: Pointer to HBA context object.
3079 * @pring: Pointer to driver SLI ring object.
3080 * @iotag: IOCB tag.
3081 *
3082 * This function looks up the iocb_lookup table to get the command iocb
James Smarte2a8be52019-05-06 17:26:47 -07003083 * corresponding to the given iotag. The driver calls this function with
3084 * the ring lock held because this function is an SLI4 port only helper.
James Smart3772a992009-05-22 14:50:54 -04003085 * This function returns the command iocb object if it finds the command
3086 * iocb else returns NULL.
3087 **/
3088static struct lpfc_iocbq *
3089lpfc_sli_iocbq_lookup_by_tag(struct lpfc_hba *phba,
3090 struct lpfc_sli_ring *pring, uint16_t iotag)
3091{
James Smart895427b2017-02-12 13:52:30 -08003092 struct lpfc_iocbq *cmd_iocb = NULL;
James Smarte2a8be52019-05-06 17:26:47 -07003093 spinlock_t *temp_lock = NULL;
3094 unsigned long iflag = 0;
James Smart3772a992009-05-22 14:50:54 -04003095
James Smarte2a8be52019-05-06 17:26:47 -07003096 if (phba->sli_rev == LPFC_SLI_REV4)
3097 temp_lock = &pring->ring_lock;
3098 else
3099 temp_lock = &phba->hbalock;
3100
3101 spin_lock_irqsave(temp_lock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003102 if (iotag != 0 && iotag <= phba->sli.last_iotag) {
3103 cmd_iocb = phba->sli.iocbq_lookup[iotag];
James Smart4f2e66c2012-05-09 21:17:07 -04003104 if (cmd_iocb->iocb_flag & LPFC_IO_ON_TXCMPLQ) {
3105 /* remove from txcmpl queue list */
3106 list_del_init(&cmd_iocb->list);
3107 cmd_iocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smartc4908502019-01-28 11:14:28 -08003108 pring->txcmplq_cnt--;
James Smarte2a8be52019-05-06 17:26:47 -07003109 spin_unlock_irqrestore(temp_lock, iflag);
James Smart4f2e66c2012-05-09 21:17:07 -04003110 return cmd_iocb;
James Smart2a9bf3d2010-06-07 15:24:45 -04003111 }
James Smart3772a992009-05-22 14:50:54 -04003112 }
James Smart89533e92016-10-13 15:06:15 -07003113
James Smarte2a8be52019-05-06 17:26:47 -07003114 spin_unlock_irqrestore(temp_lock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003115 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart895427b2017-02-12 13:52:30 -08003116 "0372 iotag x%x lookup error: max iotag (x%x) "
3117 "iocb_flag x%x\n",
3118 iotag, phba->sli.last_iotag,
3119 cmd_iocb ? cmd_iocb->iocb_flag : 0xffff);
James Smart3772a992009-05-22 14:50:54 -04003120 return NULL;
3121}
3122
3123/**
James Smart3621a712009-04-06 18:47:14 -04003124 * lpfc_sli_process_sol_iocb - process solicited iocb completion
James Smarte59058c2008-08-24 21:49:00 -04003125 * @phba: Pointer to HBA context object.
3126 * @pring: Pointer to driver SLI ring object.
3127 * @saveq: Pointer to the response iocb to be processed.
3128 *
3129 * This function is called by the ring event handler for non-fcp
3130 * rings when there is a new response iocb in the response ring.
3131 * The caller is not required to hold any locks. This function
3132 * gets the command iocb associated with the response iocb and
3133 * calls the completion handler for the command iocb. If there
3134 * is no completion handler, the function will free the resources
3135 * associated with command iocb. If the response iocb is for
3136 * an already aborted command iocb, the status of the completion
3137 * is changed to IOSTAT_LOCAL_REJECT/IOERR_SLI_ABORTED.
3138 * This function always returns 1.
3139 **/
dea31012005-04-17 16:05:31 -05003140static int
James Smart2e0fef82007-06-17 19:56:36 -05003141lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
dea31012005-04-17 16:05:31 -05003142 struct lpfc_iocbq *saveq)
3143{
James Smart2e0fef82007-06-17 19:56:36 -05003144 struct lpfc_iocbq *cmdiocbp;
dea31012005-04-17 16:05:31 -05003145 int rc = 1;
3146 unsigned long iflag;
3147
James Bottomley604a3e32005-10-29 10:28:33 -05003148 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring, saveq);
dea31012005-04-17 16:05:31 -05003149 if (cmdiocbp) {
3150 if (cmdiocbp->iocb_cmpl) {
3151 /*
James Smartea2151b2008-09-07 11:52:10 -04003152 * If an ELS command failed send an event to mgmt
3153 * application.
3154 */
3155 if (saveq->iocb.ulpStatus &&
3156 (pring->ringno == LPFC_ELS_RING) &&
3157 (cmdiocbp->iocb.ulpCommand ==
3158 CMD_ELS_REQUEST64_CR))
3159 lpfc_send_els_failure_event(phba,
3160 cmdiocbp, saveq);
3161
3162 /*
dea31012005-04-17 16:05:31 -05003163 * Post all ELS completions to the worker thread.
3164 * All other are passed to the completion callback.
3165 */
3166 if (pring->ringno == LPFC_ELS_RING) {
James Smart341af102010-01-26 23:07:37 -05003167 if ((phba->sli_rev < LPFC_SLI_REV4) &&
3168 (cmdiocbp->iocb_flag &
3169 LPFC_DRIVER_ABORTED)) {
3170 spin_lock_irqsave(&phba->hbalock,
3171 iflag);
James Smart07951072007-04-25 09:51:38 -04003172 cmdiocbp->iocb_flag &=
3173 ~LPFC_DRIVER_ABORTED;
James Smart341af102010-01-26 23:07:37 -05003174 spin_unlock_irqrestore(&phba->hbalock,
3175 iflag);
James Smart07951072007-04-25 09:51:38 -04003176 saveq->iocb.ulpStatus =
3177 IOSTAT_LOCAL_REJECT;
3178 saveq->iocb.un.ulpWord[4] =
3179 IOERR_SLI_ABORTED;
James Smart0ff10d42008-01-11 01:52:36 -05003180
3181 /* Firmware could still be in progress
3182 * of DMAing payload, so don't free data
3183 * buffer till after a hbeat.
3184 */
James Smart341af102010-01-26 23:07:37 -05003185 spin_lock_irqsave(&phba->hbalock,
3186 iflag);
James Smart0ff10d42008-01-11 01:52:36 -05003187 saveq->iocb_flag |= LPFC_DELAY_MEM_FREE;
James Smart341af102010-01-26 23:07:37 -05003188 spin_unlock_irqrestore(&phba->hbalock,
3189 iflag);
3190 }
James Smart0f65ff62010-02-26 14:14:23 -05003191 if (phba->sli_rev == LPFC_SLI_REV4) {
3192 if (saveq->iocb_flag &
3193 LPFC_EXCHANGE_BUSY) {
3194 /* Set cmdiocb flag for the
3195 * exchange busy so sgl (xri)
3196 * will not be released until
3197 * the abort xri is received
3198 * from hba.
3199 */
3200 spin_lock_irqsave(
3201 &phba->hbalock, iflag);
3202 cmdiocbp->iocb_flag |=
3203 LPFC_EXCHANGE_BUSY;
3204 spin_unlock_irqrestore(
3205 &phba->hbalock, iflag);
3206 }
3207 if (cmdiocbp->iocb_flag &
3208 LPFC_DRIVER_ABORTED) {
3209 /*
3210 * Clear LPFC_DRIVER_ABORTED
3211 * bit in case it was driver
3212 * initiated abort.
3213 */
3214 spin_lock_irqsave(
3215 &phba->hbalock, iflag);
3216 cmdiocbp->iocb_flag &=
3217 ~LPFC_DRIVER_ABORTED;
3218 spin_unlock_irqrestore(
3219 &phba->hbalock, iflag);
3220 cmdiocbp->iocb.ulpStatus =
3221 IOSTAT_LOCAL_REJECT;
3222 cmdiocbp->iocb.un.ulpWord[4] =
3223 IOERR_ABORT_REQUESTED;
3224 /*
3225 * For SLI4, irsiocb contains
3226 * NO_XRI in sli_xritag, it
3227 * shall not affect releasing
3228 * sgl (xri) process.
3229 */
3230 saveq->iocb.ulpStatus =
3231 IOSTAT_LOCAL_REJECT;
3232 saveq->iocb.un.ulpWord[4] =
3233 IOERR_SLI_ABORTED;
3234 spin_lock_irqsave(
3235 &phba->hbalock, iflag);
3236 saveq->iocb_flag |=
3237 LPFC_DELAY_MEM_FREE;
3238 spin_unlock_irqrestore(
3239 &phba->hbalock, iflag);
3240 }
James Smart07951072007-04-25 09:51:38 -04003241 }
dea31012005-04-17 16:05:31 -05003242 }
James Smart2e0fef82007-06-17 19:56:36 -05003243 (cmdiocbp->iocb_cmpl) (phba, cmdiocbp, saveq);
James Bottomley604a3e32005-10-29 10:28:33 -05003244 } else
3245 lpfc_sli_release_iocbq(phba, cmdiocbp);
dea31012005-04-17 16:05:31 -05003246 } else {
3247 /*
3248 * Unknown initiating command based on the response iotag.
3249 * This could be the case on the ELS ring because of
3250 * lpfc_els_abort().
3251 */
3252 if (pring->ringno != LPFC_ELS_RING) {
3253 /*
3254 * Ring <ringno> handler: unexpected completion IoTag
3255 * <IoTag>
3256 */
James Smarta257bf92009-04-06 18:48:10 -04003257 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003258 "0322 Ring %d handler: "
3259 "unexpected completion IoTag x%x "
3260 "Data: x%x x%x x%x x%x\n",
3261 pring->ringno,
3262 saveq->iocb.ulpIoTag,
3263 saveq->iocb.ulpStatus,
3264 saveq->iocb.un.ulpWord[4],
3265 saveq->iocb.ulpCommand,
3266 saveq->iocb.ulpContext);
dea31012005-04-17 16:05:31 -05003267 }
3268 }
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -04003269
dea31012005-04-17 16:05:31 -05003270 return rc;
3271}
3272
James Smarte59058c2008-08-24 21:49:00 -04003273/**
James Smart3621a712009-04-06 18:47:14 -04003274 * lpfc_sli_rsp_pointers_error - Response ring pointer error handler
James Smarte59058c2008-08-24 21:49:00 -04003275 * @phba: Pointer to HBA context object.
3276 * @pring: Pointer to driver SLI ring object.
3277 *
3278 * This function is called from the iocb ring event handlers when
3279 * put pointer is ahead of the get pointer for a ring. This function signal
3280 * an error attention condition to the worker thread and the worker
3281 * thread will transition the HBA to offline state.
3282 **/
James Smart2e0fef82007-06-17 19:56:36 -05003283static void
3284lpfc_sli_rsp_pointers_error(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003285{
James Smart34b02dc2008-08-24 21:49:55 -04003286 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003287 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003288 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003289 * rsp ring <portRspMax>
3290 */
3291 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003292 "0312 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003293 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003294 pring->ringno, le32_to_cpu(pgp->rspPutInx),
James Smart7e56aa22012-08-03 12:35:34 -04003295 pring->sli.sli3.numRiocb);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003296
James Smart2e0fef82007-06-17 19:56:36 -05003297 phba->link_state = LPFC_HBA_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003298
3299 /*
3300 * All error attention handlers are posted to
3301 * worker thread
3302 */
3303 phba->work_ha |= HA_ERATT;
3304 phba->work_hs = HS_FFER3;
James Smart92d7f7b2007-06-17 19:56:38 -05003305
James Smart5e9d9b82008-06-14 22:52:53 -04003306 lpfc_worker_wake_up(phba);
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003307
3308 return;
3309}
3310
James Smarte59058c2008-08-24 21:49:00 -04003311/**
James Smart3621a712009-04-06 18:47:14 -04003312 * lpfc_poll_eratt - Error attention polling timer timeout handler
James Smart93996272008-08-24 21:50:30 -04003313 * @ptr: Pointer to address of HBA context object.
3314 *
3315 * This function is invoked by the Error Attention polling timer when the
3316 * timer times out. It will check the SLI Error Attention register for
3317 * possible attention events. If so, it will post an Error Attention event
3318 * and wake up worker thread to process it. Otherwise, it will set up the
3319 * Error Attention polling timer for the next poll.
3320 **/
Kees Cookf22eb4d2017-09-06 20:24:26 -07003321void lpfc_poll_eratt(struct timer_list *t)
James Smart93996272008-08-24 21:50:30 -04003322{
3323 struct lpfc_hba *phba;
James Smarteb016562014-09-03 12:58:06 -04003324 uint32_t eratt = 0;
James Smartaa6fbb72012-08-03 12:36:03 -04003325 uint64_t sli_intr, cnt;
James Smart93996272008-08-24 21:50:30 -04003326
Kees Cookf22eb4d2017-09-06 20:24:26 -07003327 phba = from_timer(phba, t, eratt_poll);
James Smart93996272008-08-24 21:50:30 -04003328
James Smartaa6fbb72012-08-03 12:36:03 -04003329 /* Here we will also keep track of interrupts per sec of the hba */
3330 sli_intr = phba->sli.slistat.sli_intr;
3331
3332 if (phba->sli.slistat.sli_prev_intr > sli_intr)
3333 cnt = (((uint64_t)(-1) - phba->sli.slistat.sli_prev_intr) +
3334 sli_intr);
3335 else
3336 cnt = (sli_intr - phba->sli.slistat.sli_prev_intr);
3337
James Smart65791f12016-07-06 12:35:56 -07003338 /* 64-bit integer division not supported on 32-bit x86 - use do_div */
3339 do_div(cnt, phba->eratt_poll_interval);
James Smartaa6fbb72012-08-03 12:36:03 -04003340 phba->sli.slistat.sli_ips = cnt;
3341
3342 phba->sli.slistat.sli_prev_intr = sli_intr;
3343
James Smart93996272008-08-24 21:50:30 -04003344 /* Check chip HA register for error event */
3345 eratt = lpfc_sli_check_eratt(phba);
3346
3347 if (eratt)
3348 /* Tell the worker thread there is work to do */
3349 lpfc_worker_wake_up(phba);
3350 else
3351 /* Restart the timer for next eratt poll */
James Smart256ec0d2013-04-17 20:14:58 -04003352 mod_timer(&phba->eratt_poll,
3353 jiffies +
James Smart65791f12016-07-06 12:35:56 -07003354 msecs_to_jiffies(1000 * phba->eratt_poll_interval));
James Smart93996272008-08-24 21:50:30 -04003355 return;
3356}
3357
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003358
James Smarte59058c2008-08-24 21:49:00 -04003359/**
James Smart3621a712009-04-06 18:47:14 -04003360 * lpfc_sli_handle_fast_ring_event - Handle ring events on FCP ring
James Smarte59058c2008-08-24 21:49:00 -04003361 * @phba: Pointer to HBA context object.
3362 * @pring: Pointer to driver SLI ring object.
3363 * @mask: Host attention register mask for this ring.
3364 *
3365 * This function is called from the interrupt context when there is a ring
3366 * event for the fcp ring. The caller does not hold any lock.
3367 * The function processes each response iocb in the response ring until it
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003368 * finds an iocb with LE bit set and chains all the iocbs up to the iocb with
James Smarte59058c2008-08-24 21:49:00 -04003369 * LE bit set. The function will call the completion handler of the command iocb
3370 * if the response iocb indicates a completion for a command iocb or it is
3371 * an abort completion. The function will call lpfc_sli_process_unsol_iocb
3372 * function if this is an unsolicited iocb.
dea31012005-04-17 16:05:31 -05003373 * This routine presumes LPFC_FCP_RING handling and doesn't bother
James Smart45ed1192009-10-02 15:17:02 -04003374 * to check it explicitly.
3375 */
3376int
James Smart2e0fef82007-06-17 19:56:36 -05003377lpfc_sli_handle_fast_ring_event(struct lpfc_hba *phba,
3378 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05003379{
James Smart34b02dc2008-08-24 21:49:55 -04003380 struct lpfc_pgp *pgp = &phba->port_gp[pring->ringno];
dea31012005-04-17 16:05:31 -05003381 IOCB_t *irsp = NULL;
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04003382 IOCB_t *entry = NULL;
dea31012005-04-17 16:05:31 -05003383 struct lpfc_iocbq *cmdiocbq = NULL;
3384 struct lpfc_iocbq rspiocbq;
dea31012005-04-17 16:05:31 -05003385 uint32_t status;
3386 uint32_t portRspPut, portRspMax;
3387 int rc = 1;
3388 lpfc_iocb_type type;
3389 unsigned long iflag;
3390 uint32_t rsp_cmpl = 0;
dea31012005-04-17 16:05:31 -05003391
James Smart2e0fef82007-06-17 19:56:36 -05003392 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003393 pring->stats.iocb_event++;
3394
dea31012005-04-17 16:05:31 -05003395 /*
3396 * The next available response entry should never exceed the maximum
3397 * entries. If it does, treat it as an adapter hardware error.
3398 */
James Smart7e56aa22012-08-03 12:35:34 -04003399 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05003400 portRspPut = le32_to_cpu(pgp->rspPutInx);
3401 if (unlikely(portRspPut >= portRspMax)) {
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003402 lpfc_sli_rsp_pointers_error(phba, pring);
James Smart2e0fef82007-06-17 19:56:36 -05003403 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003404 return 1;
3405 }
James Smart45ed1192009-10-02 15:17:02 -04003406 if (phba->fcp_ring_in_use) {
3407 spin_unlock_irqrestore(&phba->hbalock, iflag);
3408 return 1;
3409 } else
3410 phba->fcp_ring_in_use = 1;
dea31012005-04-17 16:05:31 -05003411
3412 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04003413 while (pring->sli.sli3.rspidx != portRspPut) {
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04003414 /*
3415 * Fetch an entry off the ring and copy it into a local data
3416 * structure. The copy involves a byte-swap since the
3417 * network byte order and pci byte orders are different.
3418 */
James Smarted957682007-06-17 19:56:37 -05003419 entry = lpfc_resp_iocb(phba, pring);
James Smart858c9f62007-06-17 19:56:39 -05003420 phba->last_completion_time = jiffies;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003421
James Smart7e56aa22012-08-03 12:35:34 -04003422 if (++pring->sli.sli3.rspidx >= portRspMax)
3423 pring->sli.sli3.rspidx = 0;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -05003424
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04003425 lpfc_sli_pcimem_bcopy((uint32_t *) entry,
3426 (uint32_t *) &rspiocbq.iocb,
James Smarted957682007-06-17 19:56:37 -05003427 phba->iocb_rsp_size);
James Smarta4bc3372006-12-02 13:34:16 -05003428 INIT_LIST_HEAD(&(rspiocbq.list));
James.Smart@Emulex.Com87f6eaf2005-06-25 10:34:13 -04003429 irsp = &rspiocbq.iocb;
3430
dea31012005-04-17 16:05:31 -05003431 type = lpfc_sli_iocb_cmd_type(irsp->ulpCommand & CMD_IOCB_MASK);
3432 pring->stats.iocb_rsp++;
3433 rsp_cmpl++;
3434
3435 if (unlikely(irsp->ulpStatus)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003436 /*
3437 * If resource errors reported from HBA, reduce
3438 * queuedepths of the SCSI device.
3439 */
3440 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04003441 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3442 IOERR_NO_RESOURCES)) {
James Smart92d7f7b2007-06-17 19:56:38 -05003443 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003444 phba->lpfc_rampdown_queue_depth(phba);
James Smart92d7f7b2007-06-17 19:56:38 -05003445 spin_lock_irqsave(&phba->hbalock, iflag);
3446 }
3447
dea31012005-04-17 16:05:31 -05003448 /* Rsp ring <ringno> error: IOCB */
3449 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003450 "0336 Rsp Ring %d error: IOCB Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05003451 "x%x x%x x%x x%x x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003452 pring->ringno,
James Smart92d7f7b2007-06-17 19:56:38 -05003453 irsp->un.ulpWord[0],
3454 irsp->un.ulpWord[1],
3455 irsp->un.ulpWord[2],
3456 irsp->un.ulpWord[3],
3457 irsp->un.ulpWord[4],
3458 irsp->un.ulpWord[5],
James Smartd7c255b2008-08-24 21:50:00 -04003459 *(uint32_t *)&irsp->un1,
3460 *((uint32_t *)&irsp->un1 + 1));
dea31012005-04-17 16:05:31 -05003461 }
3462
3463 switch (type) {
3464 case LPFC_ABORT_IOCB:
3465 case LPFC_SOL_IOCB:
3466 /*
3467 * Idle exchange closed via ABTS from port. No iocb
3468 * resources need to be recovered.
3469 */
3470 if (unlikely(irsp->ulpCommand == CMD_XRI_ABORTED_CX)) {
James Smartdca94792006-08-01 07:34:08 -04003471 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003472 "0333 IOCB cmd 0x%x"
James Smartdca94792006-08-01 07:34:08 -04003473 " processed. Skipping"
James Smart92d7f7b2007-06-17 19:56:38 -05003474 " completion\n",
James Smartdca94792006-08-01 07:34:08 -04003475 irsp->ulpCommand);
dea31012005-04-17 16:05:31 -05003476 break;
3477 }
3478
James Smarte2a8be52019-05-06 17:26:47 -07003479 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Bottomley604a3e32005-10-29 10:28:33 -05003480 cmdiocbq = lpfc_sli_iocbq_lookup(phba, pring,
3481 &rspiocbq);
James Smarte2a8be52019-05-06 17:26:47 -07003482 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart0f65ff62010-02-26 14:14:23 -05003483 if (unlikely(!cmdiocbq))
3484 break;
3485 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED)
3486 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
3487 if (cmdiocbq->iocb_cmpl) {
3488 spin_unlock_irqrestore(&phba->hbalock, iflag);
3489 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq,
3490 &rspiocbq);
3491 spin_lock_irqsave(&phba->hbalock, iflag);
3492 }
dea31012005-04-17 16:05:31 -05003493 break;
James Smarta4bc3372006-12-02 13:34:16 -05003494 case LPFC_UNSOL_IOCB:
James Smart2e0fef82007-06-17 19:56:36 -05003495 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003496 lpfc_sli_process_unsol_iocb(phba, pring, &rspiocbq);
James Smart2e0fef82007-06-17 19:56:36 -05003497 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta4bc3372006-12-02 13:34:16 -05003498 break;
dea31012005-04-17 16:05:31 -05003499 default:
3500 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3501 char adaptermsg[LPFC_MAX_ADPTMSG];
3502 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3503 memcpy(&adaptermsg[0], (uint8_t *) irsp,
3504 MAX_MSG_DATA);
Joe Perches898eb712007-10-18 03:06:30 -07003505 dev_warn(&((phba->pcidev)->dev),
3506 "lpfc%d: %s\n",
dea31012005-04-17 16:05:31 -05003507 phba->brd_no, adaptermsg);
3508 } else {
3509 /* Unknown IOCB command */
3510 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003511 "0334 Unknown IOCB command "
James Smart92d7f7b2007-06-17 19:56:38 -05003512 "Data: x%x, x%x x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04003513 type, irsp->ulpCommand,
James Smart92d7f7b2007-06-17 19:56:38 -05003514 irsp->ulpStatus,
3515 irsp->ulpIoTag,
3516 irsp->ulpContext);
dea31012005-04-17 16:05:31 -05003517 }
3518 break;
3519 }
3520
3521 /*
3522 * The response IOCB has been processed. Update the ring
3523 * pointer in SLIM. If the port response put pointer has not
3524 * been updated, sync the pgp->rspPutInx and fetch the new port
3525 * response put pointer.
3526 */
James Smart7e56aa22012-08-03 12:35:34 -04003527 writel(pring->sli.sli3.rspidx,
3528 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003529
James Smart7e56aa22012-08-03 12:35:34 -04003530 if (pring->sli.sli3.rspidx == portRspPut)
dea31012005-04-17 16:05:31 -05003531 portRspPut = le32_to_cpu(pgp->rspPutInx);
3532 }
3533
3534 if ((rsp_cmpl > 0) && (mask & HA_R0RE_REQ)) {
3535 pring->stats.iocb_rsp_full++;
3536 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3537 writel(status, phba->CAregaddr);
3538 readl(phba->CAregaddr);
3539 }
3540 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3541 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3542 pring->stats.iocb_cmd_empty++;
3543
3544 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003545 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003546 lpfc_sli_resume_iocb(phba, pring);
3547
3548 if ((pring->lpfc_sli_cmd_available))
3549 (pring->lpfc_sli_cmd_available) (phba, pring);
3550
3551 }
3552
James Smart45ed1192009-10-02 15:17:02 -04003553 phba->fcp_ring_in_use = 0;
James Smart2e0fef82007-06-17 19:56:36 -05003554 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003555 return rc;
3556}
3557
James Smarte59058c2008-08-24 21:49:00 -04003558/**
James Smart3772a992009-05-22 14:50:54 -04003559 * lpfc_sli_sp_handle_rspiocb - Handle slow-path response iocb
3560 * @phba: Pointer to HBA context object.
3561 * @pring: Pointer to driver SLI ring object.
3562 * @rspiocbp: Pointer to driver response IOCB object.
3563 *
3564 * This function is called from the worker thread when there is a slow-path
3565 * response IOCB to process. This function chains all the response iocbs until
3566 * seeing the iocb with the LE bit set. The function will call
3567 * lpfc_sli_process_sol_iocb function if the response iocb indicates a
3568 * completion of a command iocb. The function will call the
3569 * lpfc_sli_process_unsol_iocb function if this is an unsolicited iocb.
3570 * The function frees the resources or calls the completion handler if this
3571 * iocb is an abort completion. The function returns NULL when the response
3572 * iocb has the LE bit set and all the chained iocbs are processed, otherwise
3573 * this function shall chain the iocb on to the iocb_continueq and return the
3574 * response iocb passed in.
3575 **/
3576static struct lpfc_iocbq *
3577lpfc_sli_sp_handle_rspiocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
3578 struct lpfc_iocbq *rspiocbp)
3579{
3580 struct lpfc_iocbq *saveq;
3581 struct lpfc_iocbq *cmdiocbp;
3582 struct lpfc_iocbq *next_iocb;
3583 IOCB_t *irsp = NULL;
3584 uint32_t free_saveq;
3585 uint8_t iocb_cmd_type;
3586 lpfc_iocb_type type;
3587 unsigned long iflag;
3588 int rc;
3589
3590 spin_lock_irqsave(&phba->hbalock, iflag);
3591 /* First add the response iocb to the countinueq list */
3592 list_add_tail(&rspiocbp->list, &(pring->iocb_continueq));
3593 pring->iocb_continueq_cnt++;
3594
Justin P. Mattock70f23fd2011-05-10 10:16:21 +02003595 /* Now, determine whether the list is completed for processing */
James Smart3772a992009-05-22 14:50:54 -04003596 irsp = &rspiocbp->iocb;
3597 if (irsp->ulpLe) {
3598 /*
3599 * By default, the driver expects to free all resources
3600 * associated with this iocb completion.
3601 */
3602 free_saveq = 1;
3603 saveq = list_get_first(&pring->iocb_continueq,
3604 struct lpfc_iocbq, list);
3605 irsp = &(saveq->iocb);
3606 list_del_init(&pring->iocb_continueq);
3607 pring->iocb_continueq_cnt = 0;
3608
3609 pring->stats.iocb_rsp++;
3610
3611 /*
3612 * If resource errors reported from HBA, reduce
3613 * queuedepths of the SCSI device.
3614 */
3615 if ((irsp->ulpStatus == IOSTAT_LOCAL_REJECT) &&
James Smarte3d2b802012-08-14 14:25:43 -04003616 ((irsp->un.ulpWord[4] & IOERR_PARAM_MASK) ==
3617 IOERR_NO_RESOURCES)) {
James Smart3772a992009-05-22 14:50:54 -04003618 spin_unlock_irqrestore(&phba->hbalock, iflag);
3619 phba->lpfc_rampdown_queue_depth(phba);
3620 spin_lock_irqsave(&phba->hbalock, iflag);
3621 }
3622
3623 if (irsp->ulpStatus) {
3624 /* Rsp ring <ringno> error: IOCB */
3625 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
3626 "0328 Rsp Ring %d error: "
3627 "IOCB Data: "
3628 "x%x x%x x%x x%x "
3629 "x%x x%x x%x x%x "
3630 "x%x x%x x%x x%x "
3631 "x%x x%x x%x x%x\n",
3632 pring->ringno,
3633 irsp->un.ulpWord[0],
3634 irsp->un.ulpWord[1],
3635 irsp->un.ulpWord[2],
3636 irsp->un.ulpWord[3],
3637 irsp->un.ulpWord[4],
3638 irsp->un.ulpWord[5],
3639 *(((uint32_t *) irsp) + 6),
3640 *(((uint32_t *) irsp) + 7),
3641 *(((uint32_t *) irsp) + 8),
3642 *(((uint32_t *) irsp) + 9),
3643 *(((uint32_t *) irsp) + 10),
3644 *(((uint32_t *) irsp) + 11),
3645 *(((uint32_t *) irsp) + 12),
3646 *(((uint32_t *) irsp) + 13),
3647 *(((uint32_t *) irsp) + 14),
3648 *(((uint32_t *) irsp) + 15));
3649 }
3650
3651 /*
3652 * Fetch the IOCB command type and call the correct completion
3653 * routine. Solicited and Unsolicited IOCBs on the ELS ring
3654 * get freed back to the lpfc_iocb_list by the discovery
3655 * kernel thread.
3656 */
3657 iocb_cmd_type = irsp->ulpCommand & CMD_IOCB_MASK;
3658 type = lpfc_sli_iocb_cmd_type(iocb_cmd_type);
3659 switch (type) {
3660 case LPFC_SOL_IOCB:
3661 spin_unlock_irqrestore(&phba->hbalock, iflag);
3662 rc = lpfc_sli_process_sol_iocb(phba, pring, saveq);
3663 spin_lock_irqsave(&phba->hbalock, iflag);
3664 break;
3665
3666 case LPFC_UNSOL_IOCB:
3667 spin_unlock_irqrestore(&phba->hbalock, iflag);
3668 rc = lpfc_sli_process_unsol_iocb(phba, pring, saveq);
3669 spin_lock_irqsave(&phba->hbalock, iflag);
3670 if (!rc)
3671 free_saveq = 0;
3672 break;
3673
3674 case LPFC_ABORT_IOCB:
3675 cmdiocbp = NULL;
James Smarte2a8be52019-05-06 17:26:47 -07003676 if (irsp->ulpCommand != CMD_XRI_ABORTED_CX) {
3677 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003678 cmdiocbp = lpfc_sli_iocbq_lookup(phba, pring,
3679 saveq);
James Smarte2a8be52019-05-06 17:26:47 -07003680 spin_lock_irqsave(&phba->hbalock, iflag);
3681 }
James Smart3772a992009-05-22 14:50:54 -04003682 if (cmdiocbp) {
3683 /* Call the specified completion routine */
3684 if (cmdiocbp->iocb_cmpl) {
3685 spin_unlock_irqrestore(&phba->hbalock,
3686 iflag);
3687 (cmdiocbp->iocb_cmpl)(phba, cmdiocbp,
3688 saveq);
3689 spin_lock_irqsave(&phba->hbalock,
3690 iflag);
3691 } else
3692 __lpfc_sli_release_iocbq(phba,
3693 cmdiocbp);
3694 }
3695 break;
3696
3697 case LPFC_UNKNOWN_IOCB:
3698 if (irsp->ulpCommand == CMD_ADAPTER_MSG) {
3699 char adaptermsg[LPFC_MAX_ADPTMSG];
3700 memset(adaptermsg, 0, LPFC_MAX_ADPTMSG);
3701 memcpy(&adaptermsg[0], (uint8_t *)irsp,
3702 MAX_MSG_DATA);
3703 dev_warn(&((phba->pcidev)->dev),
3704 "lpfc%d: %s\n",
3705 phba->brd_no, adaptermsg);
3706 } else {
3707 /* Unknown IOCB command */
3708 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
3709 "0335 Unknown IOCB "
3710 "command Data: x%x "
3711 "x%x x%x x%x\n",
3712 irsp->ulpCommand,
3713 irsp->ulpStatus,
3714 irsp->ulpIoTag,
3715 irsp->ulpContext);
3716 }
3717 break;
3718 }
3719
3720 if (free_saveq) {
3721 list_for_each_entry_safe(rspiocbp, next_iocb,
3722 &saveq->list, list) {
James Smart61f35bf2013-05-31 17:03:48 -04003723 list_del_init(&rspiocbp->list);
James Smart3772a992009-05-22 14:50:54 -04003724 __lpfc_sli_release_iocbq(phba, rspiocbp);
3725 }
3726 __lpfc_sli_release_iocbq(phba, saveq);
3727 }
3728 rspiocbp = NULL;
3729 }
3730 spin_unlock_irqrestore(&phba->hbalock, iflag);
3731 return rspiocbp;
3732}
3733
3734/**
3735 * lpfc_sli_handle_slow_ring_event - Wrapper func for handling slow-path iocbs
James Smarte59058c2008-08-24 21:49:00 -04003736 * @phba: Pointer to HBA context object.
3737 * @pring: Pointer to driver SLI ring object.
3738 * @mask: Host attention register mask for this ring.
3739 *
James Smart3772a992009-05-22 14:50:54 -04003740 * This routine wraps the actual slow_ring event process routine from the
3741 * API jump table function pointer from the lpfc_hba struct.
James Smarte59058c2008-08-24 21:49:00 -04003742 **/
James Smart3772a992009-05-22 14:50:54 -04003743void
James Smart2e0fef82007-06-17 19:56:36 -05003744lpfc_sli_handle_slow_ring_event(struct lpfc_hba *phba,
3745 struct lpfc_sli_ring *pring, uint32_t mask)
dea31012005-04-17 16:05:31 -05003746{
James Smart3772a992009-05-22 14:50:54 -04003747 phba->lpfc_sli_handle_slow_ring_event(phba, pring, mask);
3748}
3749
3750/**
3751 * lpfc_sli_handle_slow_ring_event_s3 - Handle SLI3 ring event for non-FCP rings
3752 * @phba: Pointer to HBA context object.
3753 * @pring: Pointer to driver SLI ring object.
3754 * @mask: Host attention register mask for this ring.
3755 *
3756 * This function is called from the worker thread when there is a ring event
3757 * for non-fcp rings. The caller does not hold any lock. The function will
3758 * remove each response iocb in the response ring and calls the handle
3759 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3760 **/
3761static void
3762lpfc_sli_handle_slow_ring_event_s3(struct lpfc_hba *phba,
3763 struct lpfc_sli_ring *pring, uint32_t mask)
3764{
James Smart34b02dc2008-08-24 21:49:55 -04003765 struct lpfc_pgp *pgp;
dea31012005-04-17 16:05:31 -05003766 IOCB_t *entry;
3767 IOCB_t *irsp = NULL;
3768 struct lpfc_iocbq *rspiocbp = NULL;
dea31012005-04-17 16:05:31 -05003769 uint32_t portRspPut, portRspMax;
dea31012005-04-17 16:05:31 -05003770 unsigned long iflag;
James Smart3772a992009-05-22 14:50:54 -04003771 uint32_t status;
dea31012005-04-17 16:05:31 -05003772
James Smart34b02dc2008-08-24 21:49:55 -04003773 pgp = &phba->port_gp[pring->ringno];
James Smart2e0fef82007-06-17 19:56:36 -05003774 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003775 pring->stats.iocb_event++;
3776
dea31012005-04-17 16:05:31 -05003777 /*
3778 * The next available response entry should never exceed the maximum
3779 * entries. If it does, treat it as an adapter hardware error.
3780 */
James Smart7e56aa22012-08-03 12:35:34 -04003781 portRspMax = pring->sli.sli3.numRiocb;
dea31012005-04-17 16:05:31 -05003782 portRspPut = le32_to_cpu(pgp->rspPutInx);
3783 if (portRspPut >= portRspMax) {
3784 /*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003785 * Ring <ringno> handler: portRspPut <portRspPut> is bigger than
dea31012005-04-17 16:05:31 -05003786 * rsp ring <portRspMax>
3787 */
James Smarted957682007-06-17 19:56:37 -05003788 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04003789 "0303 Ring %d handler: portRspPut %d "
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02003790 "is bigger than rsp ring %d\n",
James Smarte8b62012007-08-02 11:10:09 -04003791 pring->ringno, portRspPut, portRspMax);
dea31012005-04-17 16:05:31 -05003792
James Smart2e0fef82007-06-17 19:56:36 -05003793 phba->link_state = LPFC_HBA_ERROR;
3794 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003795
3796 phba->work_hs = HS_FFER3;
3797 lpfc_handle_eratt(phba);
3798
James Smart3772a992009-05-22 14:50:54 -04003799 return;
dea31012005-04-17 16:05:31 -05003800 }
3801
3802 rmb();
James Smart7e56aa22012-08-03 12:35:34 -04003803 while (pring->sli.sli3.rspidx != portRspPut) {
dea31012005-04-17 16:05:31 -05003804 /*
3805 * Build a completion list and call the appropriate handler.
3806 * The process is to get the next available response iocb, get
3807 * a free iocb from the list, copy the response data into the
3808 * free iocb, insert to the continuation list, and update the
3809 * next response index to slim. This process makes response
3810 * iocb's in the ring available to DMA as fast as possible but
3811 * pays a penalty for a copy operation. Since the iocb is
3812 * only 32 bytes, this penalty is considered small relative to
3813 * the PCI reads for register values and a slim write. When
3814 * the ulpLe field is set, the entire Command has been
3815 * received.
3816 */
James Smarted957682007-06-17 19:56:37 -05003817 entry = lpfc_resp_iocb(phba, pring);
3818
James Smart858c9f62007-06-17 19:56:39 -05003819 phba->last_completion_time = jiffies;
James Smart2e0fef82007-06-17 19:56:36 -05003820 rspiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -05003821 if (rspiocbp == NULL) {
3822 printk(KERN_ERR "%s: out of buffers! Failing "
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003823 "completion.\n", __func__);
dea31012005-04-17 16:05:31 -05003824 break;
3825 }
3826
James Smarted957682007-06-17 19:56:37 -05003827 lpfc_sli_pcimem_bcopy(entry, &rspiocbp->iocb,
3828 phba->iocb_rsp_size);
dea31012005-04-17 16:05:31 -05003829 irsp = &rspiocbp->iocb;
3830
James Smart7e56aa22012-08-03 12:35:34 -04003831 if (++pring->sli.sli3.rspidx >= portRspMax)
3832 pring->sli.sli3.rspidx = 0;
dea31012005-04-17 16:05:31 -05003833
James Smarta58cbd52007-08-02 11:09:43 -04003834 if (pring->ringno == LPFC_ELS_RING) {
3835 lpfc_debugfs_slow_ring_trc(phba,
3836 "IOCB rsp ring: wd4:x%08x wd6:x%08x wd7:x%08x",
3837 *(((uint32_t *) irsp) + 4),
3838 *(((uint32_t *) irsp) + 6),
3839 *(((uint32_t *) irsp) + 7));
3840 }
3841
James Smart7e56aa22012-08-03 12:35:34 -04003842 writel(pring->sli.sli3.rspidx,
3843 &phba->host_gp[pring->ringno].rspGetInx);
dea31012005-04-17 16:05:31 -05003844
James Smart3772a992009-05-22 14:50:54 -04003845 spin_unlock_irqrestore(&phba->hbalock, iflag);
3846 /* Handle the response IOCB */
3847 rspiocbp = lpfc_sli_sp_handle_rspiocb(phba, pring, rspiocbp);
3848 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -05003849
3850 /*
3851 * If the port response put pointer has not been updated, sync
3852 * the pgp->rspPutInx in the MAILBOX_tand fetch the new port
3853 * response put pointer.
3854 */
James Smart7e56aa22012-08-03 12:35:34 -04003855 if (pring->sli.sli3.rspidx == portRspPut) {
dea31012005-04-17 16:05:31 -05003856 portRspPut = le32_to_cpu(pgp->rspPutInx);
3857 }
James Smart7e56aa22012-08-03 12:35:34 -04003858 } /* while (pring->sli.sli3.rspidx != portRspPut) */
dea31012005-04-17 16:05:31 -05003859
James Smart92d7f7b2007-06-17 19:56:38 -05003860 if ((rspiocbp != NULL) && (mask & HA_R0RE_REQ)) {
dea31012005-04-17 16:05:31 -05003861 /* At least one response entry has been freed */
3862 pring->stats.iocb_rsp_full++;
3863 /* SET RxRE_RSP in Chip Att register */
3864 status = ((CA_R0ATT | CA_R0RE_RSP) << (pring->ringno * 4));
3865 writel(status, phba->CAregaddr);
3866 readl(phba->CAregaddr); /* flush */
3867 }
3868 if ((mask & HA_R0CE_RSP) && (pring->flag & LPFC_CALL_RING_AVAILABLE)) {
3869 pring->flag &= ~LPFC_CALL_RING_AVAILABLE;
3870 pring->stats.iocb_cmd_empty++;
3871
3872 /* Force update of the local copy of cmdGetInx */
James Smart7e56aa22012-08-03 12:35:34 -04003873 pring->sli.sli3.local_getidx = le32_to_cpu(pgp->cmdGetInx);
dea31012005-04-17 16:05:31 -05003874 lpfc_sli_resume_iocb(phba, pring);
3875
3876 if ((pring->lpfc_sli_cmd_available))
3877 (pring->lpfc_sli_cmd_available) (phba, pring);
3878
3879 }
3880
James Smart2e0fef82007-06-17 19:56:36 -05003881 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart3772a992009-05-22 14:50:54 -04003882 return;
dea31012005-04-17 16:05:31 -05003883}
3884
James Smarte59058c2008-08-24 21:49:00 -04003885/**
James Smart4f774512009-05-22 14:52:35 -04003886 * lpfc_sli_handle_slow_ring_event_s4 - Handle SLI4 slow-path els events
3887 * @phba: Pointer to HBA context object.
3888 * @pring: Pointer to driver SLI ring object.
3889 * @mask: Host attention register mask for this ring.
3890 *
3891 * This function is called from the worker thread when there is a pending
3892 * ELS response iocb on the driver internal slow-path response iocb worker
3893 * queue. The caller does not hold any lock. The function will remove each
3894 * response iocb from the response worker queue and calls the handle
3895 * response iocb routine (lpfc_sli_sp_handle_rspiocb) to process it.
3896 **/
3897static void
3898lpfc_sli_handle_slow_ring_event_s4(struct lpfc_hba *phba,
3899 struct lpfc_sli_ring *pring, uint32_t mask)
3900{
3901 struct lpfc_iocbq *irspiocbq;
James Smart4d9ab992009-10-02 15:16:39 -04003902 struct hbq_dmabuf *dmabuf;
3903 struct lpfc_cq_event *cq_event;
James Smart4f774512009-05-22 14:52:35 -04003904 unsigned long iflag;
James Smart0ef01a22018-09-10 10:30:45 -07003905 int count = 0;
James Smart4f774512009-05-22 14:52:35 -04003906
James Smart45ed1192009-10-02 15:17:02 -04003907 spin_lock_irqsave(&phba->hbalock, iflag);
3908 phba->hba_flag &= ~HBA_SP_QUEUE_EVT;
3909 spin_unlock_irqrestore(&phba->hbalock, iflag);
3910 while (!list_empty(&phba->sli4_hba.sp_queue_event)) {
James Smart4f774512009-05-22 14:52:35 -04003911 /* Get the response iocb from the head of work queue */
3912 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart45ed1192009-10-02 15:17:02 -04003913 list_remove_head(&phba->sli4_hba.sp_queue_event,
James Smart4d9ab992009-10-02 15:16:39 -04003914 cq_event, struct lpfc_cq_event, list);
James Smart4f774512009-05-22 14:52:35 -04003915 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart4d9ab992009-10-02 15:16:39 -04003916
3917 switch (bf_get(lpfc_wcqe_c_code, &cq_event->cqe.wcqe_cmpl)) {
3918 case CQE_CODE_COMPL_WQE:
3919 irspiocbq = container_of(cq_event, struct lpfc_iocbq,
3920 cq_event);
James Smart45ed1192009-10-02 15:17:02 -04003921 /* Translate ELS WCQE to response IOCBQ */
3922 irspiocbq = lpfc_sli4_els_wcqe_to_rspiocbq(phba,
3923 irspiocbq);
3924 if (irspiocbq)
3925 lpfc_sli_sp_handle_rspiocb(phba, pring,
3926 irspiocbq);
James Smart0ef01a22018-09-10 10:30:45 -07003927 count++;
James Smart4d9ab992009-10-02 15:16:39 -04003928 break;
3929 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -04003930 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -04003931 dmabuf = container_of(cq_event, struct hbq_dmabuf,
3932 cq_event);
3933 lpfc_sli4_handle_received_buffer(phba, dmabuf);
James Smart0ef01a22018-09-10 10:30:45 -07003934 count++;
James Smart4d9ab992009-10-02 15:16:39 -04003935 break;
3936 default:
3937 break;
3938 }
James Smart0ef01a22018-09-10 10:30:45 -07003939
3940 /* Limit the number of events to 64 to avoid soft lockups */
3941 if (count == 64)
3942 break;
James Smart4f774512009-05-22 14:52:35 -04003943 }
3944}
3945
3946/**
James Smart3621a712009-04-06 18:47:14 -04003947 * lpfc_sli_abort_iocb_ring - Abort all iocbs in the ring
James Smarte59058c2008-08-24 21:49:00 -04003948 * @phba: Pointer to HBA context object.
3949 * @pring: Pointer to driver SLI ring object.
3950 *
3951 * This function aborts all iocbs in the given ring and frees all the iocb
3952 * objects in txq. This function issues an abort iocb for all the iocb commands
3953 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
3954 * the return of this function. The caller is not required to hold any locks.
3955 **/
James Smart2e0fef82007-06-17 19:56:36 -05003956void
dea31012005-04-17 16:05:31 -05003957lpfc_sli_abort_iocb_ring(struct lpfc_hba *phba, struct lpfc_sli_ring *pring)
3958{
James Smart2534ba72007-04-25 09:52:20 -04003959 LIST_HEAD(completions);
dea31012005-04-17 16:05:31 -05003960 struct lpfc_iocbq *iocb, *next_iocb;
dea31012005-04-17 16:05:31 -05003961
James Smart92d7f7b2007-06-17 19:56:38 -05003962 if (pring->ringno == LPFC_ELS_RING) {
3963 lpfc_fabric_abort_hba(phba);
3964 }
3965
dea31012005-04-17 16:05:31 -05003966 /* Error everything on txq and txcmplq
3967 * First do the txq.
3968 */
James Smartdb55fba2014-04-04 13:52:02 -04003969 if (phba->sli_rev >= LPFC_SLI_REV4) {
3970 spin_lock_irq(&pring->ring_lock);
3971 list_splice_init(&pring->txq, &completions);
3972 pring->txq_cnt = 0;
3973 spin_unlock_irq(&pring->ring_lock);
dea31012005-04-17 16:05:31 -05003974
James Smartdb55fba2014-04-04 13:52:02 -04003975 spin_lock_irq(&phba->hbalock);
3976 /* Next issue ABTS for everything on the txcmplq */
3977 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3978 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3979 spin_unlock_irq(&phba->hbalock);
3980 } else {
3981 spin_lock_irq(&phba->hbalock);
3982 list_splice_init(&pring->txq, &completions);
3983 pring->txq_cnt = 0;
James Smart2534ba72007-04-25 09:52:20 -04003984
James Smartdb55fba2014-04-04 13:52:02 -04003985 /* Next issue ABTS for everything on the txcmplq */
3986 list_for_each_entry_safe(iocb, next_iocb, &pring->txcmplq, list)
3987 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
3988 spin_unlock_irq(&phba->hbalock);
3989 }
James Smart2534ba72007-04-25 09:52:20 -04003990
James Smarta257bf92009-04-06 18:48:10 -04003991 /* Cancel all the IOCBs from the completions list */
3992 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
3993 IOERR_SLI_ABORTED);
dea31012005-04-17 16:05:31 -05003994}
3995
James Smarte59058c2008-08-24 21:49:00 -04003996/**
James Smartdb55fba2014-04-04 13:52:02 -04003997 * lpfc_sli_abort_fcp_rings - Abort all iocbs in all FCP rings
3998 * @phba: Pointer to HBA context object.
3999 * @pring: Pointer to driver SLI ring object.
4000 *
4001 * This function aborts all iocbs in FCP rings and frees all the iocb
4002 * objects in txq. This function issues an abort iocb for all the iocb commands
4003 * in txcmplq. The iocbs in the txcmplq is not guaranteed to complete before
4004 * the return of this function. The caller is not required to hold any locks.
4005 **/
4006void
4007lpfc_sli_abort_fcp_rings(struct lpfc_hba *phba)
4008{
4009 struct lpfc_sli *psli = &phba->sli;
4010 struct lpfc_sli_ring *pring;
4011 uint32_t i;
4012
4013 /* Look on all the FCP Rings for the iotag */
4014 if (phba->sli_rev >= LPFC_SLI_REV4) {
James Smartcdb42be2019-01-28 11:14:21 -08004015 for (i = 0; i < phba->cfg_hdw_queue; i++) {
James Smartc00f62e2019-08-14 16:57:11 -07004016 pring = phba->sli4_hba.hdwq[i].io_wq->pring;
James Smartdb55fba2014-04-04 13:52:02 -04004017 lpfc_sli_abort_iocb_ring(phba, pring);
4018 }
4019 } else {
James Smart895427b2017-02-12 13:52:30 -08004020 pring = &psli->sli3_ring[LPFC_FCP_RING];
James Smartdb55fba2014-04-04 13:52:02 -04004021 lpfc_sli_abort_iocb_ring(phba, pring);
4022 }
4023}
4024
James Smart895427b2017-02-12 13:52:30 -08004025/**
James Smartc00f62e2019-08-14 16:57:11 -07004026 * lpfc_sli_flush_io_rings - flush all iocbs in the IO ring
James Smarta8e497d2008-08-24 21:50:11 -04004027 * @phba: Pointer to HBA context object.
4028 *
James Smartc00f62e2019-08-14 16:57:11 -07004029 * This function flushes all iocbs in the IO ring and frees all the iocb
James Smarta8e497d2008-08-24 21:50:11 -04004030 * objects in txq and txcmplq. This function will not issue abort iocbs
4031 * for all the iocb commands in txcmplq, they will just be returned with
4032 * IOERR_SLI_DOWN. This function is invoked with EEH when device's PCI
4033 * slot has been permanently disabled.
4034 **/
4035void
James Smartc00f62e2019-08-14 16:57:11 -07004036lpfc_sli_flush_io_rings(struct lpfc_hba *phba)
James Smarta8e497d2008-08-24 21:50:11 -04004037{
4038 LIST_HEAD(txq);
4039 LIST_HEAD(txcmplq);
James Smarta8e497d2008-08-24 21:50:11 -04004040 struct lpfc_sli *psli = &phba->sli;
4041 struct lpfc_sli_ring *pring;
James Smartdb55fba2014-04-04 13:52:02 -04004042 uint32_t i;
James Smartc1dd9112018-01-30 15:58:57 -08004043 struct lpfc_iocbq *piocb, *next_iocb;
James Smarta8e497d2008-08-24 21:50:11 -04004044
4045 spin_lock_irq(&phba->hbalock);
James Smart4f2e66c2012-05-09 21:17:07 -04004046 /* Indicate the I/O queues are flushed */
James Smartc00f62e2019-08-14 16:57:11 -07004047 phba->hba_flag |= HBA_IOQ_FLUSH;
James Smarta8e497d2008-08-24 21:50:11 -04004048 spin_unlock_irq(&phba->hbalock);
4049
James Smartdb55fba2014-04-04 13:52:02 -04004050 /* Look on all the FCP Rings for the iotag */
4051 if (phba->sli_rev >= LPFC_SLI_REV4) {
James Smartcdb42be2019-01-28 11:14:21 -08004052 for (i = 0; i < phba->cfg_hdw_queue; i++) {
James Smartc00f62e2019-08-14 16:57:11 -07004053 pring = phba->sli4_hba.hdwq[i].io_wq->pring;
James Smarta8e497d2008-08-24 21:50:11 -04004054
James Smartdb55fba2014-04-04 13:52:02 -04004055 spin_lock_irq(&pring->ring_lock);
4056 /* Retrieve everything on txq */
4057 list_splice_init(&pring->txq, &txq);
James Smartc1dd9112018-01-30 15:58:57 -08004058 list_for_each_entry_safe(piocb, next_iocb,
4059 &pring->txcmplq, list)
4060 piocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smartdb55fba2014-04-04 13:52:02 -04004061 /* Retrieve everything on the txcmplq */
4062 list_splice_init(&pring->txcmplq, &txcmplq);
4063 pring->txq_cnt = 0;
4064 pring->txcmplq_cnt = 0;
4065 spin_unlock_irq(&pring->ring_lock);
4066
4067 /* Flush the txq */
4068 lpfc_sli_cancel_iocbs(phba, &txq,
4069 IOSTAT_LOCAL_REJECT,
4070 IOERR_SLI_DOWN);
4071 /* Flush the txcmpq */
4072 lpfc_sli_cancel_iocbs(phba, &txcmplq,
4073 IOSTAT_LOCAL_REJECT,
4074 IOERR_SLI_DOWN);
4075 }
4076 } else {
James Smart895427b2017-02-12 13:52:30 -08004077 pring = &psli->sli3_ring[LPFC_FCP_RING];
James Smartdb55fba2014-04-04 13:52:02 -04004078
4079 spin_lock_irq(&phba->hbalock);
4080 /* Retrieve everything on txq */
4081 list_splice_init(&pring->txq, &txq);
James Smartc1dd9112018-01-30 15:58:57 -08004082 list_for_each_entry_safe(piocb, next_iocb,
4083 &pring->txcmplq, list)
4084 piocb->iocb_flag &= ~LPFC_IO_ON_TXCMPLQ;
James Smartdb55fba2014-04-04 13:52:02 -04004085 /* Retrieve everything on the txcmplq */
4086 list_splice_init(&pring->txcmplq, &txcmplq);
4087 pring->txq_cnt = 0;
4088 pring->txcmplq_cnt = 0;
4089 spin_unlock_irq(&phba->hbalock);
4090
4091 /* Flush the txq */
4092 lpfc_sli_cancel_iocbs(phba, &txq, IOSTAT_LOCAL_REJECT,
4093 IOERR_SLI_DOWN);
4094 /* Flush the txcmpq */
4095 lpfc_sli_cancel_iocbs(phba, &txcmplq, IOSTAT_LOCAL_REJECT,
4096 IOERR_SLI_DOWN);
4097 }
James Smarta8e497d2008-08-24 21:50:11 -04004098}
4099
4100/**
James Smart3772a992009-05-22 14:50:54 -04004101 * lpfc_sli_brdready_s3 - Check for sli3 host ready status
James Smarte59058c2008-08-24 21:49:00 -04004102 * @phba: Pointer to HBA context object.
4103 * @mask: Bit mask to be checked.
4104 *
4105 * This function reads the host status register and compares
4106 * with the provided bit mask to check if HBA completed
4107 * the restart. This function will wait in a loop for the
4108 * HBA to complete restart. If the HBA does not restart within
4109 * 15 iterations, the function will reset the HBA again. The
4110 * function returns 1 when HBA fail to restart otherwise returns
4111 * zero.
4112 **/
James Smart3772a992009-05-22 14:50:54 -04004113static int
4114lpfc_sli_brdready_s3(struct lpfc_hba *phba, uint32_t mask)
dea31012005-04-17 16:05:31 -05004115{
Jamie Wellnitz41415862006-02-28 19:25:27 -05004116 uint32_t status;
4117 int i = 0;
4118 int retval = 0;
dea31012005-04-17 16:05:31 -05004119
Jamie Wellnitz41415862006-02-28 19:25:27 -05004120 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004121 if (lpfc_readl(phba->HSregaddr, &status))
4122 return 1;
dea31012005-04-17 16:05:31 -05004123
Jamie Wellnitz41415862006-02-28 19:25:27 -05004124 /*
4125 * Check status register every 100ms for 5 retries, then every
4126 * 500ms for 5, then every 2.5 sec for 5, then reset board and
4127 * every 2.5 sec for 4.
4128 * Break our of the loop if errors occurred during init.
4129 */
4130 while (((status & mask) != mask) &&
4131 !(status & HS_FFERM) &&
4132 i++ < 20) {
dea31012005-04-17 16:05:31 -05004133
Jamie Wellnitz41415862006-02-28 19:25:27 -05004134 if (i <= 5)
4135 msleep(10);
4136 else if (i <= 10)
4137 msleep(500);
4138 else
4139 msleep(2500);
dea31012005-04-17 16:05:31 -05004140
Jamie Wellnitz41415862006-02-28 19:25:27 -05004141 if (i == 15) {
James Smart2e0fef82007-06-17 19:56:36 -05004142 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05004143 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004144 lpfc_sli_brdrestart(phba);
4145 }
4146 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004147 if (lpfc_readl(phba->HSregaddr, &status)) {
4148 retval = 1;
4149 break;
4150 }
dea31012005-04-17 16:05:31 -05004151 }
dea31012005-04-17 16:05:31 -05004152
Jamie Wellnitz41415862006-02-28 19:25:27 -05004153 /* Check to see if any errors occurred during init */
4154 if ((status & HS_FFERM) || (i >= 20)) {
James Smarte40a02c2010-02-26 14:13:54 -05004155 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
4156 "2751 Adapter failed to restart, "
4157 "status reg x%x, FW Data: A8 x%x AC x%x\n",
4158 status,
4159 readl(phba->MBslimaddr + 0xa8),
4160 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004161 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004162 retval = 1;
4163 }
dea31012005-04-17 16:05:31 -05004164
Jamie Wellnitz41415862006-02-28 19:25:27 -05004165 return retval;
dea31012005-04-17 16:05:31 -05004166}
4167
James Smartda0436e2009-05-22 14:51:39 -04004168/**
4169 * lpfc_sli_brdready_s4 - Check for sli4 host ready status
4170 * @phba: Pointer to HBA context object.
4171 * @mask: Bit mask to be checked.
4172 *
4173 * This function checks the host status register to check if HBA is
4174 * ready. This function will wait in a loop for the HBA to be ready
4175 * If the HBA is not ready , the function will will reset the HBA PCI
4176 * function again. The function returns 1 when HBA fail to be ready
4177 * otherwise returns zero.
4178 **/
4179static int
4180lpfc_sli_brdready_s4(struct lpfc_hba *phba, uint32_t mask)
4181{
4182 uint32_t status;
4183 int retval = 0;
4184
4185 /* Read the HBA Host Status Register */
4186 status = lpfc_sli4_post_status_check(phba);
4187
4188 if (status) {
4189 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
4190 lpfc_sli_brdrestart(phba);
4191 status = lpfc_sli4_post_status_check(phba);
4192 }
4193
4194 /* Check to see if any errors occurred during init */
4195 if (status) {
4196 phba->link_state = LPFC_HBA_ERROR;
4197 retval = 1;
4198 } else
4199 phba->sli4_hba.intr_enable = 0;
4200
4201 return retval;
4202}
4203
4204/**
4205 * lpfc_sli_brdready - Wrapper func for checking the hba readyness
4206 * @phba: Pointer to HBA context object.
4207 * @mask: Bit mask to be checked.
4208 *
4209 * This routine wraps the actual SLI3 or SLI4 hba readyness check routine
4210 * from the API jump table function pointer from the lpfc_hba struct.
4211 **/
4212int
4213lpfc_sli_brdready(struct lpfc_hba *phba, uint32_t mask)
4214{
4215 return phba->lpfc_sli_brdready(phba, mask);
4216}
4217
James Smart92908312006-03-07 15:04:13 -05004218#define BARRIER_TEST_PATTERN (0xdeadbeef)
4219
James Smarte59058c2008-08-24 21:49:00 -04004220/**
James Smart3621a712009-04-06 18:47:14 -04004221 * lpfc_reset_barrier - Make HBA ready for HBA reset
James Smarte59058c2008-08-24 21:49:00 -04004222 * @phba: Pointer to HBA context object.
4223 *
James Smart1b511972011-12-13 13:23:09 -05004224 * This function is called before resetting an HBA. This function is called
4225 * with hbalock held and requests HBA to quiesce DMAs before a reset.
James Smarte59058c2008-08-24 21:49:00 -04004226 **/
James Smart2e0fef82007-06-17 19:56:36 -05004227void lpfc_reset_barrier(struct lpfc_hba *phba)
James Smart92908312006-03-07 15:04:13 -05004228{
James Smart65a29c12006-07-06 15:50:50 -04004229 uint32_t __iomem *resp_buf;
4230 uint32_t __iomem *mbox_buf;
James Smart92908312006-03-07 15:04:13 -05004231 volatile uint32_t mbox;
James Smart9940b972011-03-11 16:06:12 -05004232 uint32_t hc_copy, ha_copy, resp_data;
James Smart92908312006-03-07 15:04:13 -05004233 int i;
4234 uint8_t hdrtype;
4235
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01004236 lockdep_assert_held(&phba->hbalock);
4237
James Smart92908312006-03-07 15:04:13 -05004238 pci_read_config_byte(phba->pcidev, PCI_HEADER_TYPE, &hdrtype);
4239 if (hdrtype != 0x80 ||
4240 (FC_JEDEC_ID(phba->vpd.rev.biuRev) != HELIOS_JEDEC_ID &&
4241 FC_JEDEC_ID(phba->vpd.rev.biuRev) != THOR_JEDEC_ID))
4242 return;
4243
4244 /*
4245 * Tell the other part of the chip to suspend temporarily all
4246 * its DMA activity.
4247 */
James Smart65a29c12006-07-06 15:50:50 -04004248 resp_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05004249
4250 /* Disable the error attention */
James Smart9940b972011-03-11 16:06:12 -05004251 if (lpfc_readl(phba->HCregaddr, &hc_copy))
4252 return;
James Smart92908312006-03-07 15:04:13 -05004253 writel((hc_copy & ~HC_ERINT_ENA), phba->HCregaddr);
4254 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05004255 phba->link_flag |= LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05004256
James Smart9940b972011-03-11 16:06:12 -05004257 if (lpfc_readl(phba->HAregaddr, &ha_copy))
4258 return;
4259 if (ha_copy & HA_ERATT) {
James Smart92908312006-03-07 15:04:13 -05004260 /* Clear Chip error bit */
4261 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05004262 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05004263 }
4264
4265 mbox = 0;
4266 ((MAILBOX_t *)&mbox)->mbxCommand = MBX_KILL_BOARD;
4267 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_CHIP;
4268
4269 writel(BARRIER_TEST_PATTERN, (resp_buf + 1));
James Smart65a29c12006-07-06 15:50:50 -04004270 mbox_buf = phba->MBslimaddr;
James Smart92908312006-03-07 15:04:13 -05004271 writel(mbox, mbox_buf);
4272
James Smart9940b972011-03-11 16:06:12 -05004273 for (i = 0; i < 50; i++) {
4274 if (lpfc_readl((resp_buf + 1), &resp_data))
4275 return;
4276 if (resp_data != ~(BARRIER_TEST_PATTERN))
4277 mdelay(1);
4278 else
4279 break;
4280 }
4281 resp_data = 0;
4282 if (lpfc_readl((resp_buf + 1), &resp_data))
4283 return;
4284 if (resp_data != ~(BARRIER_TEST_PATTERN)) {
James Smartf4b4c682009-05-22 14:53:12 -04004285 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE ||
James Smart2e0fef82007-06-17 19:56:36 -05004286 phba->pport->stopped)
James Smart92908312006-03-07 15:04:13 -05004287 goto restore_hc;
4288 else
4289 goto clear_errat;
4290 }
4291
4292 ((MAILBOX_t *)&mbox)->mbxOwner = OWN_HOST;
James Smart9940b972011-03-11 16:06:12 -05004293 resp_data = 0;
4294 for (i = 0; i < 500; i++) {
4295 if (lpfc_readl(resp_buf, &resp_data))
4296 return;
4297 if (resp_data != mbox)
4298 mdelay(1);
4299 else
4300 break;
4301 }
James Smart92908312006-03-07 15:04:13 -05004302
4303clear_errat:
4304
James Smart9940b972011-03-11 16:06:12 -05004305 while (++i < 500) {
4306 if (lpfc_readl(phba->HAregaddr, &ha_copy))
4307 return;
4308 if (!(ha_copy & HA_ERATT))
4309 mdelay(1);
4310 else
4311 break;
4312 }
James Smart92908312006-03-07 15:04:13 -05004313
4314 if (readl(phba->HAregaddr) & HA_ERATT) {
4315 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05004316 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05004317 }
4318
4319restore_hc:
James Smart2e0fef82007-06-17 19:56:36 -05004320 phba->link_flag &= ~LS_IGNORE_ERATT;
James Smart92908312006-03-07 15:04:13 -05004321 writel(hc_copy, phba->HCregaddr);
4322 readl(phba->HCregaddr); /* flush */
4323}
4324
James Smarte59058c2008-08-24 21:49:00 -04004325/**
James Smart3621a712009-04-06 18:47:14 -04004326 * lpfc_sli_brdkill - Issue a kill_board mailbox command
James Smarte59058c2008-08-24 21:49:00 -04004327 * @phba: Pointer to HBA context object.
4328 *
4329 * This function issues a kill_board mailbox command and waits for
4330 * the error attention interrupt. This function is called for stopping
4331 * the firmware processing. The caller is not required to hold any
4332 * locks. This function calls lpfc_hba_down_post function to free
4333 * any pending commands after the kill. The function will return 1 when it
4334 * fails to kill the board else will return 0.
4335 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05004336int
James Smart2e0fef82007-06-17 19:56:36 -05004337lpfc_sli_brdkill(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -05004338{
Jamie Wellnitz41415862006-02-28 19:25:27 -05004339 struct lpfc_sli *psli;
4340 LPFC_MBOXQ_t *pmb;
4341 uint32_t status;
4342 uint32_t ha_copy;
4343 int retval;
4344 int i = 0;
4345
4346 psli = &phba->sli;
4347
4348 /* Kill HBA */
James Smarted957682007-06-17 19:56:37 -05004349 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04004350 "0329 Kill HBA Data: x%x x%x\n",
4351 phba->pport->port_state, psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004352
James Smart98c9ea52007-10-27 13:37:33 -04004353 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4354 if (!pmb)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004355 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004356
4357 /* Disable the error attention */
James Smart2e0fef82007-06-17 19:56:36 -05004358 spin_lock_irq(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -05004359 if (lpfc_readl(phba->HCregaddr, &status)) {
4360 spin_unlock_irq(&phba->hbalock);
4361 mempool_free(pmb, phba->mbox_mem_pool);
4362 return 1;
4363 }
Jamie Wellnitz41415862006-02-28 19:25:27 -05004364 status &= ~HC_ERINT_ENA;
4365 writel(status, phba->HCregaddr);
4366 readl(phba->HCregaddr); /* flush */
James Smart2e0fef82007-06-17 19:56:36 -05004367 phba->link_flag |= LS_IGNORE_ERATT;
4368 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004369
4370 lpfc_kill_board(phba, pmb);
4371 pmb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
4372 retval = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
4373
4374 if (retval != MBX_SUCCESS) {
4375 if (retval != MBX_BUSY)
4376 mempool_free(pmb, phba->mbox_mem_pool);
James Smarte40a02c2010-02-26 14:13:54 -05004377 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
4378 "2752 KILL_BOARD command failed retval %d\n",
4379 retval);
James Smart2e0fef82007-06-17 19:56:36 -05004380 spin_lock_irq(&phba->hbalock);
4381 phba->link_flag &= ~LS_IGNORE_ERATT;
4382 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004383 return 1;
4384 }
4385
James Smartf4b4c682009-05-22 14:53:12 -04004386 spin_lock_irq(&phba->hbalock);
4387 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
4388 spin_unlock_irq(&phba->hbalock);
James Smart92908312006-03-07 15:04:13 -05004389
Jamie Wellnitz41415862006-02-28 19:25:27 -05004390 mempool_free(pmb, phba->mbox_mem_pool);
4391
4392 /* There is no completion for a KILL_BOARD mbox cmd. Check for an error
4393 * attention every 100ms for 3 seconds. If we don't get ERATT after
4394 * 3 seconds we still set HBA_ERROR state because the status of the
4395 * board is now undefined.
4396 */
James Smart9940b972011-03-11 16:06:12 -05004397 if (lpfc_readl(phba->HAregaddr, &ha_copy))
4398 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004399 while ((i++ < 30) && !(ha_copy & HA_ERATT)) {
4400 mdelay(100);
James Smart9940b972011-03-11 16:06:12 -05004401 if (lpfc_readl(phba->HAregaddr, &ha_copy))
4402 return 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004403 }
4404
4405 del_timer_sync(&psli->mbox_tmo);
James Smart92908312006-03-07 15:04:13 -05004406 if (ha_copy & HA_ERATT) {
4407 writel(HA_ERATT, phba->HAregaddr);
James Smart2e0fef82007-06-17 19:56:36 -05004408 phba->pport->stopped = 1;
James Smart92908312006-03-07 15:04:13 -05004409 }
James Smart2e0fef82007-06-17 19:56:36 -05004410 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004411 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart04c68492009-05-22 14:52:52 -04004412 psli->mbox_active = NULL;
James Smart2e0fef82007-06-17 19:56:36 -05004413 phba->link_flag &= ~LS_IGNORE_ERATT;
4414 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004415
Jamie Wellnitz41415862006-02-28 19:25:27 -05004416 lpfc_hba_down_post(phba);
James Smart2e0fef82007-06-17 19:56:36 -05004417 phba->link_state = LPFC_HBA_ERROR;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004418
James Smart2e0fef82007-06-17 19:56:36 -05004419 return ha_copy & HA_ERATT ? 0 : 1;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004420}
4421
James Smarte59058c2008-08-24 21:49:00 -04004422/**
James Smart3772a992009-05-22 14:50:54 -04004423 * lpfc_sli_brdreset - Reset a sli-2 or sli-3 HBA
James Smarte59058c2008-08-24 21:49:00 -04004424 * @phba: Pointer to HBA context object.
4425 *
4426 * This function resets the HBA by writing HC_INITFF to the control
4427 * register. After the HBA resets, this function resets all the iocb ring
4428 * indices. This function disables PCI layer parity checking during
4429 * the reset.
4430 * This function returns 0 always.
4431 * The caller is not required to hold any locks.
4432 **/
Jamie Wellnitz41415862006-02-28 19:25:27 -05004433int
James Smart2e0fef82007-06-17 19:56:36 -05004434lpfc_sli_brdreset(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004435{
4436 struct lpfc_sli *psli;
dea31012005-04-17 16:05:31 -05004437 struct lpfc_sli_ring *pring;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004438 uint16_t cfg_value;
dea31012005-04-17 16:05:31 -05004439 int i;
dea31012005-04-17 16:05:31 -05004440
Jamie Wellnitz41415862006-02-28 19:25:27 -05004441 psli = &phba->sli;
dea31012005-04-17 16:05:31 -05004442
Jamie Wellnitz41415862006-02-28 19:25:27 -05004443 /* Reset HBA */
4444 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04004445 "0325 Reset HBA Data: x%x x%x\n",
James Smart4492b732017-04-27 15:08:26 -07004446 (phba->pport) ? phba->pport->port_state : 0,
4447 psli->sli_flag);
dea31012005-04-17 16:05:31 -05004448
4449 /* perform board reset */
4450 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04004451 phba->link_events = 0;
James Smart4492b732017-04-27 15:08:26 -07004452 if (phba->pport) {
4453 phba->pport->fc_myDID = 0;
4454 phba->pport->fc_prevDID = 0;
4455 }
dea31012005-04-17 16:05:31 -05004456
Jamie Wellnitz41415862006-02-28 19:25:27 -05004457 /* Turn off parity checking and serr during the physical reset */
James Smart32a93102019-03-12 16:30:13 -07004458 if (pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value))
4459 return -EIO;
4460
Jamie Wellnitz41415862006-02-28 19:25:27 -05004461 pci_write_config_word(phba->pcidev, PCI_COMMAND,
4462 (cfg_value &
4463 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4464
James Smart3772a992009-05-22 14:50:54 -04004465 psli->sli_flag &= ~(LPFC_SLI_ACTIVE | LPFC_PROCESS_LA);
4466
Jamie Wellnitz41415862006-02-28 19:25:27 -05004467 /* Now toggle INITFF bit in the Host Control Register */
4468 writel(HC_INITFF, phba->HCregaddr);
4469 mdelay(1);
4470 readl(phba->HCregaddr); /* flush */
4471 writel(0, phba->HCregaddr);
4472 readl(phba->HCregaddr); /* flush */
4473
4474 /* Restore PCI cmd register */
4475 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
dea31012005-04-17 16:05:31 -05004476
4477 /* Initialize relevant SLI info */
Jamie Wellnitz41415862006-02-28 19:25:27 -05004478 for (i = 0; i < psli->num_rings; i++) {
James Smart895427b2017-02-12 13:52:30 -08004479 pring = &psli->sli3_ring[i];
dea31012005-04-17 16:05:31 -05004480 pring->flag = 0;
James Smart7e56aa22012-08-03 12:35:34 -04004481 pring->sli.sli3.rspidx = 0;
4482 pring->sli.sli3.next_cmdidx = 0;
4483 pring->sli.sli3.local_getidx = 0;
4484 pring->sli.sli3.cmdidx = 0;
dea31012005-04-17 16:05:31 -05004485 pring->missbufcnt = 0;
4486 }
dea31012005-04-17 16:05:31 -05004487
James Smart2e0fef82007-06-17 19:56:36 -05004488 phba->link_state = LPFC_WARM_START;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004489 return 0;
4490}
4491
James Smarte59058c2008-08-24 21:49:00 -04004492/**
James Smartda0436e2009-05-22 14:51:39 -04004493 * lpfc_sli4_brdreset - Reset a sli-4 HBA
4494 * @phba: Pointer to HBA context object.
4495 *
4496 * This function resets a SLI4 HBA. This function disables PCI layer parity
4497 * checking during resets the device. The caller is not required to hold
4498 * any locks.
4499 *
James Smart8c24a4f2019-08-14 16:56:53 -07004500 * This function returns 0 on success else returns negative error code.
James Smartda0436e2009-05-22 14:51:39 -04004501 **/
4502int
4503lpfc_sli4_brdreset(struct lpfc_hba *phba)
4504{
4505 struct lpfc_sli *psli = &phba->sli;
4506 uint16_t cfg_value;
James Smart02936352014-04-04 13:52:12 -04004507 int rc = 0;
James Smartda0436e2009-05-22 14:51:39 -04004508
4509 /* Reset HBA */
4510 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smart02936352014-04-04 13:52:12 -04004511 "0295 Reset HBA Data: x%x x%x x%x\n",
4512 phba->pport->port_state, psli->sli_flag,
4513 phba->hba_flag);
James Smartda0436e2009-05-22 14:51:39 -04004514
4515 /* perform board reset */
4516 phba->fc_eventTag = 0;
James Smart4d9ab992009-10-02 15:16:39 -04004517 phba->link_events = 0;
James Smartda0436e2009-05-22 14:51:39 -04004518 phba->pport->fc_myDID = 0;
4519 phba->pport->fc_prevDID = 0;
4520
James Smartda0436e2009-05-22 14:51:39 -04004521 spin_lock_irq(&phba->hbalock);
4522 psli->sli_flag &= ~(LPFC_PROCESS_LA);
4523 phba->fcf.fcf_flag = 0;
James Smartda0436e2009-05-22 14:51:39 -04004524 spin_unlock_irq(&phba->hbalock);
4525
James Smart02936352014-04-04 13:52:12 -04004526 /* SLI4 INTF 2: if FW dump is being taken skip INIT_PORT */
4527 if (phba->hba_flag & HBA_FW_DUMP_OP) {
4528 phba->hba_flag &= ~HBA_FW_DUMP_OP;
4529 return rc;
4530 }
4531
James Smartda0436e2009-05-22 14:51:39 -04004532 /* Now physically reset the device */
4533 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4534 "0389 Performing PCI function reset!\n");
James Smartbe858b62010-12-15 17:57:20 -05004535
4536 /* Turn off parity checking and serr during the physical reset */
James Smart32a93102019-03-12 16:30:13 -07004537 if (pci_read_config_word(phba->pcidev, PCI_COMMAND, &cfg_value)) {
4538 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
4539 "3205 PCI read Config failed\n");
4540 return -EIO;
4541 }
4542
James Smartbe858b62010-12-15 17:57:20 -05004543 pci_write_config_word(phba->pcidev, PCI_COMMAND, (cfg_value &
4544 ~(PCI_COMMAND_PARITY | PCI_COMMAND_SERR)));
4545
James Smart88318812012-09-29 11:29:29 -04004546 /* Perform FCoE PCI function reset before freeing queue memory */
James Smart27b01b82012-05-09 21:19:44 -04004547 rc = lpfc_pci_function_reset(phba);
James Smartda0436e2009-05-22 14:51:39 -04004548
James Smartbe858b62010-12-15 17:57:20 -05004549 /* Restore PCI cmd register */
4550 pci_write_config_word(phba->pcidev, PCI_COMMAND, cfg_value);
4551
James Smart27b01b82012-05-09 21:19:44 -04004552 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004553}
4554
4555/**
4556 * lpfc_sli_brdrestart_s3 - Restart a sli-3 hba
James Smarte59058c2008-08-24 21:49:00 -04004557 * @phba: Pointer to HBA context object.
4558 *
4559 * This function is called in the SLI initialization code path to
4560 * restart the HBA. The caller is not required to hold any lock.
4561 * This function writes MBX_RESTART mailbox command to the SLIM and
4562 * resets the HBA. At the end of the function, it calls lpfc_hba_down_post
4563 * function to free any pending commands. The function enables
4564 * POST only during the first initialization. The function returns zero.
4565 * The function does not guarantee completion of MBX_RESTART mailbox
4566 * command before the return of this function.
4567 **/
James Smartda0436e2009-05-22 14:51:39 -04004568static int
4569lpfc_sli_brdrestart_s3(struct lpfc_hba *phba)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004570{
4571 MAILBOX_t *mb;
4572 struct lpfc_sli *psli;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004573 volatile uint32_t word0;
4574 void __iomem *to_slim;
James Smart0d878412009-10-02 15:16:56 -04004575 uint32_t hba_aer_enabled;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004576
James Smart2e0fef82007-06-17 19:56:36 -05004577 spin_lock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004578
James Smart0d878412009-10-02 15:16:56 -04004579 /* Take PCIe device Advanced Error Reporting (AER) state */
4580 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4581
Jamie Wellnitz41415862006-02-28 19:25:27 -05004582 psli = &phba->sli;
4583
4584 /* Restart HBA */
4585 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04004586 "0337 Restart HBA Data: x%x x%x\n",
James Smart4492b732017-04-27 15:08:26 -07004587 (phba->pport) ? phba->pport->port_state : 0,
4588 psli->sli_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004589
4590 word0 = 0;
4591 mb = (MAILBOX_t *) &word0;
4592 mb->mbxCommand = MBX_RESTART;
4593 mb->mbxHc = 1;
4594
James Smart92908312006-03-07 15:04:13 -05004595 lpfc_reset_barrier(phba);
4596
Jamie Wellnitz41415862006-02-28 19:25:27 -05004597 to_slim = phba->MBslimaddr;
4598 writel(*(uint32_t *) mb, to_slim);
4599 readl(to_slim); /* flush */
4600
4601 /* Only skip post after fc_ffinit is completed */
James Smart4492b732017-04-27 15:08:26 -07004602 if (phba->pport && phba->pport->port_state)
Jamie Wellnitz41415862006-02-28 19:25:27 -05004603 word0 = 1; /* This is really setting up word1 */
James Smarteaf15d52008-12-04 22:39:29 -05004604 else
Jamie Wellnitz41415862006-02-28 19:25:27 -05004605 word0 = 0; /* This is really setting up word1 */
James Smart65a29c12006-07-06 15:50:50 -04004606 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004607 writel(*(uint32_t *) mb, to_slim);
4608 readl(to_slim); /* flush */
4609
4610 lpfc_sli_brdreset(phba);
James Smart4492b732017-04-27 15:08:26 -07004611 if (phba->pport)
4612 phba->pport->stopped = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004613 phba->link_state = LPFC_INIT_START;
James Smartda0436e2009-05-22 14:51:39 -04004614 phba->hba_flag = 0;
James Smart2e0fef82007-06-17 19:56:36 -05004615 spin_unlock_irq(&phba->hbalock);
Jamie Wellnitz41415862006-02-28 19:25:27 -05004616
James Smart64ba8812006-08-02 15:24:34 -04004617 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
Arnd Bergmannc4d6204d2018-06-18 17:28:23 +02004618 psli->stats_start = ktime_get_seconds();
James Smart64ba8812006-08-02 15:24:34 -04004619
James Smarteaf15d52008-12-04 22:39:29 -05004620 /* Give the INITFF and Post time to settle. */
4621 mdelay(100);
dea31012005-04-17 16:05:31 -05004622
James Smart0d878412009-10-02 15:16:56 -04004623 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4624 if (hba_aer_enabled)
4625 pci_disable_pcie_error_reporting(phba->pcidev);
4626
Jamie Wellnitz41415862006-02-28 19:25:27 -05004627 lpfc_hba_down_post(phba);
dea31012005-04-17 16:05:31 -05004628
4629 return 0;
4630}
4631
James Smarte59058c2008-08-24 21:49:00 -04004632/**
James Smartda0436e2009-05-22 14:51:39 -04004633 * lpfc_sli_brdrestart_s4 - Restart the sli-4 hba
4634 * @phba: Pointer to HBA context object.
4635 *
4636 * This function is called in the SLI initialization code path to restart
4637 * a SLI4 HBA. The caller is not required to hold any lock.
4638 * At the end of the function, it calls lpfc_hba_down_post function to
4639 * free any pending commands.
4640 **/
4641static int
4642lpfc_sli_brdrestart_s4(struct lpfc_hba *phba)
4643{
4644 struct lpfc_sli *psli = &phba->sli;
James Smart75baf692010-06-08 18:31:21 -04004645 uint32_t hba_aer_enabled;
James Smart27b01b82012-05-09 21:19:44 -04004646 int rc;
James Smartda0436e2009-05-22 14:51:39 -04004647
4648 /* Restart HBA */
4649 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
4650 "0296 Restart HBA Data: x%x x%x\n",
4651 phba->pport->port_state, psli->sli_flag);
4652
James Smart75baf692010-06-08 18:31:21 -04004653 /* Take PCIe device Advanced Error Reporting (AER) state */
4654 hba_aer_enabled = phba->hba_flag & HBA_AER_ENABLED;
4655
James Smart27b01b82012-05-09 21:19:44 -04004656 rc = lpfc_sli4_brdreset(phba);
James Smart4fb86a62019-09-03 14:54:41 -07004657 if (rc) {
4658 phba->link_state = LPFC_HBA_ERROR;
4659 goto hba_down_queue;
4660 }
James Smartda0436e2009-05-22 14:51:39 -04004661
4662 spin_lock_irq(&phba->hbalock);
4663 phba->pport->stopped = 0;
4664 phba->link_state = LPFC_INIT_START;
4665 phba->hba_flag = 0;
4666 spin_unlock_irq(&phba->hbalock);
4667
4668 memset(&psli->lnk_stat_offsets, 0, sizeof(psli->lnk_stat_offsets));
Arnd Bergmannc4d6204d2018-06-18 17:28:23 +02004669 psli->stats_start = ktime_get_seconds();
James Smartda0436e2009-05-22 14:51:39 -04004670
James Smart75baf692010-06-08 18:31:21 -04004671 /* Reset HBA AER if it was enabled, note hba_flag was reset above */
4672 if (hba_aer_enabled)
4673 pci_disable_pcie_error_reporting(phba->pcidev);
4674
James Smart4fb86a62019-09-03 14:54:41 -07004675hba_down_queue:
James Smartda0436e2009-05-22 14:51:39 -04004676 lpfc_hba_down_post(phba);
James Smart569dbe82017-06-15 22:56:47 -07004677 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04004678
James Smart27b01b82012-05-09 21:19:44 -04004679 return rc;
James Smartda0436e2009-05-22 14:51:39 -04004680}
4681
4682/**
4683 * lpfc_sli_brdrestart - Wrapper func for restarting hba
4684 * @phba: Pointer to HBA context object.
4685 *
4686 * This routine wraps the actual SLI3 or SLI4 hba restart routine from the
4687 * API jump table function pointer from the lpfc_hba struct.
4688**/
4689int
4690lpfc_sli_brdrestart(struct lpfc_hba *phba)
4691{
4692 return phba->lpfc_sli_brdrestart(phba);
4693}
4694
4695/**
James Smart3621a712009-04-06 18:47:14 -04004696 * lpfc_sli_chipset_init - Wait for the restart of the HBA after a restart
James Smarte59058c2008-08-24 21:49:00 -04004697 * @phba: Pointer to HBA context object.
4698 *
4699 * This function is called after a HBA restart to wait for successful
4700 * restart of the HBA. Successful restart of the HBA is indicated by
4701 * HS_FFRDY and HS_MBRDY bits. If the HBA fails to restart even after 15
4702 * iteration, the function will restart the HBA again. The function returns
4703 * zero if HBA successfully restarted else returns negative error code.
4704 **/
James Smart4492b732017-04-27 15:08:26 -07004705int
dea31012005-04-17 16:05:31 -05004706lpfc_sli_chipset_init(struct lpfc_hba *phba)
4707{
4708 uint32_t status, i = 0;
4709
4710 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004711 if (lpfc_readl(phba->HSregaddr, &status))
4712 return -EIO;
dea31012005-04-17 16:05:31 -05004713
4714 /* Check status register to see what current state is */
4715 i = 0;
4716 while ((status & (HS_FFRDY | HS_MBRDY)) != (HS_FFRDY | HS_MBRDY)) {
4717
James Smartdcf2a4e2010-09-29 11:18:53 -04004718 /* Check every 10ms for 10 retries, then every 100ms for 90
4719 * retries, then every 1 sec for 50 retires for a total of
4720 * ~60 seconds before reset the board again and check every
4721 * 1 sec for 50 retries. The up to 60 seconds before the
4722 * board ready is required by the Falcon FIPS zeroization
4723 * complete, and any reset the board in between shall cause
4724 * restart of zeroization, further delay the board ready.
dea31012005-04-17 16:05:31 -05004725 */
James Smartdcf2a4e2010-09-29 11:18:53 -04004726 if (i++ >= 200) {
dea31012005-04-17 16:05:31 -05004727 /* Adapter failed to init, timeout, status reg
4728 <status> */
James Smarted957682007-06-17 19:56:37 -05004729 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004730 "0436 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004731 "timeout, status reg x%x, "
4732 "FW Data: A8 x%x AC x%x\n", status,
4733 readl(phba->MBslimaddr + 0xa8),
4734 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004735 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004736 return -ETIMEDOUT;
4737 }
4738
4739 /* Check to see if any errors occurred during init */
4740 if (status & HS_FFERM) {
4741 /* ERROR: During chipset initialization */
4742 /* Adapter failed to init, chipset, status reg
4743 <status> */
James Smarted957682007-06-17 19:56:37 -05004744 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004745 "0437 Adapter failed to init, "
James Smart09372822008-01-11 01:52:54 -05004746 "chipset, status reg x%x, "
4747 "FW Data: A8 x%x AC x%x\n", status,
4748 readl(phba->MBslimaddr + 0xa8),
4749 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004750 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004751 return -EIO;
4752 }
4753
James Smartdcf2a4e2010-09-29 11:18:53 -04004754 if (i <= 10)
dea31012005-04-17 16:05:31 -05004755 msleep(10);
James Smartdcf2a4e2010-09-29 11:18:53 -04004756 else if (i <= 100)
4757 msleep(100);
4758 else
4759 msleep(1000);
dea31012005-04-17 16:05:31 -05004760
James Smartdcf2a4e2010-09-29 11:18:53 -04004761 if (i == 150) {
4762 /* Do post */
James Smart92d7f7b2007-06-17 19:56:38 -05004763 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004764 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004765 }
4766 /* Read the HBA Host Status Register */
James Smart9940b972011-03-11 16:06:12 -05004767 if (lpfc_readl(phba->HSregaddr, &status))
4768 return -EIO;
dea31012005-04-17 16:05:31 -05004769 }
4770
4771 /* Check to see if any errors occurred during init */
4772 if (status & HS_FFERM) {
4773 /* ERROR: During chipset initialization */
4774 /* Adapter failed to init, chipset, status reg <status> */
James Smarted957682007-06-17 19:56:37 -05004775 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004776 "0438 Adapter failed to init, chipset, "
James Smart09372822008-01-11 01:52:54 -05004777 "status reg x%x, "
4778 "FW Data: A8 x%x AC x%x\n", status,
4779 readl(phba->MBslimaddr + 0xa8),
4780 readl(phba->MBslimaddr + 0xac));
James Smart2e0fef82007-06-17 19:56:36 -05004781 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004782 return -EIO;
4783 }
4784
4785 /* Clear all interrupt enable conditions */
4786 writel(0, phba->HCregaddr);
4787 readl(phba->HCregaddr); /* flush */
4788
4789 /* setup host attn register */
4790 writel(0xffffffff, phba->HAregaddr);
4791 readl(phba->HAregaddr); /* flush */
4792 return 0;
4793}
4794
James Smarte59058c2008-08-24 21:49:00 -04004795/**
James Smart3621a712009-04-06 18:47:14 -04004796 * lpfc_sli_hbq_count - Get the number of HBQs to be configured
James Smarte59058c2008-08-24 21:49:00 -04004797 *
4798 * This function calculates and returns the number of HBQs required to be
4799 * configured.
4800 **/
James Smart78b2d852007-08-02 11:10:21 -04004801int
James Smarted957682007-06-17 19:56:37 -05004802lpfc_sli_hbq_count(void)
4803{
James Smart92d7f7b2007-06-17 19:56:38 -05004804 return ARRAY_SIZE(lpfc_hbq_defs);
James Smarted957682007-06-17 19:56:37 -05004805}
4806
James Smarte59058c2008-08-24 21:49:00 -04004807/**
James Smart3621a712009-04-06 18:47:14 -04004808 * lpfc_sli_hbq_entry_count - Calculate total number of hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004809 *
4810 * This function adds the number of hbq entries in every HBQ to get
4811 * the total number of hbq entries required for the HBA and returns
4812 * the total count.
4813 **/
James Smarted957682007-06-17 19:56:37 -05004814static int
4815lpfc_sli_hbq_entry_count(void)
4816{
4817 int hbq_count = lpfc_sli_hbq_count();
4818 int count = 0;
4819 int i;
4820
4821 for (i = 0; i < hbq_count; ++i)
James Smart92d7f7b2007-06-17 19:56:38 -05004822 count += lpfc_hbq_defs[i]->entry_count;
James Smarted957682007-06-17 19:56:37 -05004823 return count;
4824}
4825
James Smarte59058c2008-08-24 21:49:00 -04004826/**
James Smart3621a712009-04-06 18:47:14 -04004827 * lpfc_sli_hbq_size - Calculate memory required for all hbq entries
James Smarte59058c2008-08-24 21:49:00 -04004828 *
4829 * This function calculates amount of memory required for all hbq entries
4830 * to be configured and returns the total memory required.
4831 **/
dea31012005-04-17 16:05:31 -05004832int
James Smarted957682007-06-17 19:56:37 -05004833lpfc_sli_hbq_size(void)
4834{
4835 return lpfc_sli_hbq_entry_count() * sizeof(struct lpfc_hbq_entry);
4836}
4837
James Smarte59058c2008-08-24 21:49:00 -04004838/**
James Smart3621a712009-04-06 18:47:14 -04004839 * lpfc_sli_hbq_setup - configure and initialize HBQs
James Smarte59058c2008-08-24 21:49:00 -04004840 * @phba: Pointer to HBA context object.
4841 *
4842 * This function is called during the SLI initialization to configure
4843 * all the HBQs and post buffers to the HBQ. The caller is not
4844 * required to hold any locks. This function will return zero if successful
4845 * else it will return negative error code.
4846 **/
James Smarted957682007-06-17 19:56:37 -05004847static int
4848lpfc_sli_hbq_setup(struct lpfc_hba *phba)
4849{
4850 int hbq_count = lpfc_sli_hbq_count();
4851 LPFC_MBOXQ_t *pmb;
4852 MAILBOX_t *pmbox;
4853 uint32_t hbqno;
4854 uint32_t hbq_entry_index;
James Smarted957682007-06-17 19:56:37 -05004855
James Smart92d7f7b2007-06-17 19:56:38 -05004856 /* Get a Mailbox buffer to setup mailbox
4857 * commands for HBA initialization
4858 */
James Smarted957682007-06-17 19:56:37 -05004859 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4860
4861 if (!pmb)
4862 return -ENOMEM;
4863
James Smart04c68492009-05-22 14:52:52 -04004864 pmbox = &pmb->u.mb;
James Smarted957682007-06-17 19:56:37 -05004865
4866 /* Initialize the struct lpfc_sli_hbq structure for each hbq */
4867 phba->link_state = LPFC_INIT_MBX_CMDS;
James Smart3163f722008-02-08 18:50:25 -05004868 phba->hbq_in_use = 1;
James Smarted957682007-06-17 19:56:37 -05004869
4870 hbq_entry_index = 0;
4871 for (hbqno = 0; hbqno < hbq_count; ++hbqno) {
4872 phba->hbqs[hbqno].next_hbqPutIdx = 0;
4873 phba->hbqs[hbqno].hbqPutIdx = 0;
4874 phba->hbqs[hbqno].local_hbqGetIdx = 0;
4875 phba->hbqs[hbqno].entry_count =
James Smart92d7f7b2007-06-17 19:56:38 -05004876 lpfc_hbq_defs[hbqno]->entry_count;
James Smart51ef4c22007-08-02 11:10:31 -04004877 lpfc_config_hbq(phba, hbqno, lpfc_hbq_defs[hbqno],
4878 hbq_entry_index, pmb);
James Smarted957682007-06-17 19:56:37 -05004879 hbq_entry_index += phba->hbqs[hbqno].entry_count;
4880
4881 if (lpfc_sli_issue_mbox(phba, pmb, MBX_POLL) != MBX_SUCCESS) {
4882 /* Adapter failed to init, mbxCmd <cmd> CFG_RING,
4883 mbxStatus <status>, ring <num> */
4884
4885 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05004886 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04004887 "1805 Adapter failed to init. "
James Smarted957682007-06-17 19:56:37 -05004888 "Data: x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04004889 pmbox->mbxCommand,
James Smarted957682007-06-17 19:56:37 -05004890 pmbox->mbxStatus, hbqno);
4891
4892 phba->link_state = LPFC_HBA_ERROR;
4893 mempool_free(pmb, phba->mbox_mem_pool);
James Smart6e7288d2010-06-07 15:23:35 -04004894 return -ENXIO;
James Smarted957682007-06-17 19:56:37 -05004895 }
4896 }
4897 phba->hbq_count = hbq_count;
4898
James Smarted957682007-06-17 19:56:37 -05004899 mempool_free(pmb, phba->mbox_mem_pool);
4900
James Smart92d7f7b2007-06-17 19:56:38 -05004901 /* Initially populate or replenish the HBQs */
James Smartd7c255b2008-08-24 21:50:00 -04004902 for (hbqno = 0; hbqno < hbq_count; ++hbqno)
4903 lpfc_sli_hbqbuf_init_hbqs(phba, hbqno);
James Smarted957682007-06-17 19:56:37 -05004904 return 0;
4905}
4906
James Smarte59058c2008-08-24 21:49:00 -04004907/**
James Smart4f774512009-05-22 14:52:35 -04004908 * lpfc_sli4_rb_setup - Initialize and post RBs to HBA
4909 * @phba: Pointer to HBA context object.
4910 *
4911 * This function is called during the SLI initialization to configure
4912 * all the HBQs and post buffers to the HBQ. The caller is not
4913 * required to hold any locks. This function will return zero if successful
4914 * else it will return negative error code.
4915 **/
4916static int
4917lpfc_sli4_rb_setup(struct lpfc_hba *phba)
4918{
4919 phba->hbq_in_use = 1;
James Smart895427b2017-02-12 13:52:30 -08004920 phba->hbqs[LPFC_ELS_HBQ].entry_count =
4921 lpfc_hbq_defs[LPFC_ELS_HBQ]->entry_count;
James Smart4f774512009-05-22 14:52:35 -04004922 phba->hbq_count = 1;
James Smart895427b2017-02-12 13:52:30 -08004923 lpfc_sli_hbqbuf_init_hbqs(phba, LPFC_ELS_HBQ);
James Smart4f774512009-05-22 14:52:35 -04004924 /* Initially populate or replenish the HBQs */
James Smart4f774512009-05-22 14:52:35 -04004925 return 0;
4926}
4927
4928/**
James Smart3621a712009-04-06 18:47:14 -04004929 * lpfc_sli_config_port - Issue config port mailbox command
James Smarte59058c2008-08-24 21:49:00 -04004930 * @phba: Pointer to HBA context object.
4931 * @sli_mode: sli mode - 2/3
4932 *
Masahiro Yamada183b8022017-02-27 14:29:20 -08004933 * This function is called by the sli initialization code path
James Smarte59058c2008-08-24 21:49:00 -04004934 * to issue config_port mailbox command. This function restarts the
4935 * HBA firmware and issues a config_port mailbox command to configure
4936 * the SLI interface in the sli mode specified by sli_mode
4937 * variable. The caller is not required to hold any locks.
4938 * The function returns 0 if successful, else returns negative error
4939 * code.
4940 **/
James Smart93996272008-08-24 21:50:30 -04004941int
4942lpfc_sli_config_port(struct lpfc_hba *phba, int sli_mode)
dea31012005-04-17 16:05:31 -05004943{
4944 LPFC_MBOXQ_t *pmb;
4945 uint32_t resetcount = 0, rc = 0, done = 0;
4946
4947 pmb = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
4948 if (!pmb) {
James Smart2e0fef82007-06-17 19:56:36 -05004949 phba->link_state = LPFC_HBA_ERROR;
dea31012005-04-17 16:05:31 -05004950 return -ENOMEM;
4951 }
4952
James Smarted957682007-06-17 19:56:37 -05004953 phba->sli_rev = sli_mode;
dea31012005-04-17 16:05:31 -05004954 while (resetcount < 2 && !done) {
James Smart2e0fef82007-06-17 19:56:36 -05004955 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004956 phba->sli.sli_flag |= LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004957 spin_unlock_irq(&phba->hbalock);
James Smart92d7f7b2007-06-17 19:56:38 -05004958 phba->pport->port_state = LPFC_VPORT_UNKNOWN;
Jamie Wellnitz41415862006-02-28 19:25:27 -05004959 lpfc_sli_brdrestart(phba);
dea31012005-04-17 16:05:31 -05004960 rc = lpfc_sli_chipset_init(phba);
4961 if (rc)
4962 break;
4963
James Smart2e0fef82007-06-17 19:56:36 -05004964 spin_lock_irq(&phba->hbalock);
James Smart1c067a42006-08-01 07:33:52 -04004965 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004966 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05004967 resetcount++;
4968
James Smarted957682007-06-17 19:56:37 -05004969 /* Call pre CONFIG_PORT mailbox command initialization. A
4970 * value of 0 means the call was successful. Any other
4971 * nonzero value is a failure, but if ERESTART is returned,
4972 * the driver may reset the HBA and try again.
4973 */
dea31012005-04-17 16:05:31 -05004974 rc = lpfc_config_port_prep(phba);
4975 if (rc == -ERESTART) {
James Smarted957682007-06-17 19:56:37 -05004976 phba->link_state = LPFC_LINK_UNKNOWN;
dea31012005-04-17 16:05:31 -05004977 continue;
James Smart34b02dc2008-08-24 21:49:55 -04004978 } else if (rc)
dea31012005-04-17 16:05:31 -05004979 break;
James Smart6d368e52011-05-24 11:44:12 -04004980
James Smart2e0fef82007-06-17 19:56:36 -05004981 phba->link_state = LPFC_INIT_MBX_CMDS;
dea31012005-04-17 16:05:31 -05004982 lpfc_config_port(phba, pmb);
4983 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
James Smart34b02dc2008-08-24 21:49:55 -04004984 phba->sli3_options &= ~(LPFC_SLI3_NPIV_ENABLED |
4985 LPFC_SLI3_HBQ_ENABLED |
4986 LPFC_SLI3_CRP_ENABLED |
James Smartbc739052010-08-04 16:11:18 -04004987 LPFC_SLI3_DSS_ENABLED);
James Smarted957682007-06-17 19:56:37 -05004988 if (rc != MBX_SUCCESS) {
dea31012005-04-17 16:05:31 -05004989 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04004990 "0442 Adapter failed to init, mbxCmd x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05004991 "CONFIG_PORT, mbxStatus x%x Data: x%x\n",
James Smart04c68492009-05-22 14:52:52 -04004992 pmb->u.mb.mbxCommand, pmb->u.mb.mbxStatus, 0);
James Smart2e0fef82007-06-17 19:56:36 -05004993 spin_lock_irq(&phba->hbalock);
James Smart04c68492009-05-22 14:52:52 -04004994 phba->sli.sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05004995 spin_unlock_irq(&phba->hbalock);
4996 rc = -ENXIO;
James Smart04c68492009-05-22 14:52:52 -04004997 } else {
4998 /* Allow asynchronous mailbox command to go through */
4999 spin_lock_irq(&phba->hbalock);
5000 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
5001 spin_unlock_irq(&phba->hbalock);
James Smarted957682007-06-17 19:56:37 -05005002 done = 1;
James Smartcb69f7d2011-12-13 13:21:57 -05005003
5004 if ((pmb->u.mb.un.varCfgPort.casabt == 1) &&
5005 (pmb->u.mb.un.varCfgPort.gasabt == 0))
5006 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
5007 "3110 Port did not grant ASABT\n");
James Smart04c68492009-05-22 14:52:52 -04005008 }
dea31012005-04-17 16:05:31 -05005009 }
James Smarted957682007-06-17 19:56:37 -05005010 if (!done) {
5011 rc = -EINVAL;
5012 goto do_prep_failed;
5013 }
James Smart04c68492009-05-22 14:52:52 -04005014 if (pmb->u.mb.un.varCfgPort.sli_mode == 3) {
5015 if (!pmb->u.mb.un.varCfgPort.cMA) {
James Smart34b02dc2008-08-24 21:49:55 -04005016 rc = -ENXIO;
5017 goto do_prep_failed;
5018 }
James Smart04c68492009-05-22 14:52:52 -04005019 if (phba->max_vpi && pmb->u.mb.un.varCfgPort.gmv) {
James Smart34b02dc2008-08-24 21:49:55 -04005020 phba->sli3_options |= LPFC_SLI3_NPIV_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04005021 phba->max_vpi = pmb->u.mb.un.varCfgPort.max_vpi;
5022 phba->max_vports = (phba->max_vpi > phba->max_vports) ?
5023 phba->max_vpi : phba->max_vports;
5024
James Smart34b02dc2008-08-24 21:49:55 -04005025 } else
5026 phba->max_vpi = 0;
James Smartbc739052010-08-04 16:11:18 -04005027 phba->fips_level = 0;
5028 phba->fips_spec_rev = 0;
5029 if (pmb->u.mb.un.varCfgPort.gdss) {
James Smart04c68492009-05-22 14:52:52 -04005030 phba->sli3_options |= LPFC_SLI3_DSS_ENABLED;
James Smartbc739052010-08-04 16:11:18 -04005031 phba->fips_level = pmb->u.mb.un.varCfgPort.fips_level;
5032 phba->fips_spec_rev = pmb->u.mb.un.varCfgPort.fips_rev;
5033 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5034 "2850 Security Crypto Active. FIPS x%d "
5035 "(Spec Rev: x%d)",
5036 phba->fips_level, phba->fips_spec_rev);
5037 }
5038 if (pmb->u.mb.un.varCfgPort.sec_err) {
5039 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5040 "2856 Config Port Security Crypto "
5041 "Error: x%x ",
5042 pmb->u.mb.un.varCfgPort.sec_err);
5043 }
James Smart04c68492009-05-22 14:52:52 -04005044 if (pmb->u.mb.un.varCfgPort.gerbm)
James Smart34b02dc2008-08-24 21:49:55 -04005045 phba->sli3_options |= LPFC_SLI3_HBQ_ENABLED;
James Smart04c68492009-05-22 14:52:52 -04005046 if (pmb->u.mb.un.varCfgPort.gcrp)
James Smart34b02dc2008-08-24 21:49:55 -04005047 phba->sli3_options |= LPFC_SLI3_CRP_ENABLED;
James Smart6e7288d2010-06-07 15:23:35 -04005048
5049 phba->hbq_get = phba->mbox->us.s3_pgp.hbq_get;
5050 phba->port_gp = phba->mbox->us.s3_pgp.port;
James Smarte2a0a9d2008-12-04 22:40:02 -05005051
James Smartf44ac122018-03-05 12:04:08 -08005052 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED) {
5053 if (pmb->u.mb.un.varCfgPort.gbg == 0) {
5054 phba->cfg_enable_bg = 0;
5055 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
James Smarte2a0a9d2008-12-04 22:40:02 -05005056 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
5057 "0443 Adapter did not grant "
5058 "BlockGuard\n");
James Smartf44ac122018-03-05 12:04:08 -08005059 }
James Smarte2a0a9d2008-12-04 22:40:02 -05005060 }
James Smart34b02dc2008-08-24 21:49:55 -04005061 } else {
James Smart8f34f4c2008-12-04 22:39:23 -05005062 phba->hbq_get = NULL;
James Smart34b02dc2008-08-24 21:49:55 -04005063 phba->port_gp = phba->mbox->us.s2.port;
James Smartd7c255b2008-08-24 21:50:00 -04005064 phba->max_vpi = 0;
James Smarted957682007-06-17 19:56:37 -05005065 }
James Smart92d7f7b2007-06-17 19:56:38 -05005066do_prep_failed:
James Smarted957682007-06-17 19:56:37 -05005067 mempool_free(pmb, phba->mbox_mem_pool);
5068 return rc;
5069}
5070
James Smarte59058c2008-08-24 21:49:00 -04005071
5072/**
Masahiro Yamada183b8022017-02-27 14:29:20 -08005073 * lpfc_sli_hba_setup - SLI initialization function
James Smarte59058c2008-08-24 21:49:00 -04005074 * @phba: Pointer to HBA context object.
5075 *
Masahiro Yamada183b8022017-02-27 14:29:20 -08005076 * This function is the main SLI initialization function. This function
5077 * is called by the HBA initialization code, HBA reset code and HBA
James Smarte59058c2008-08-24 21:49:00 -04005078 * error attention handler code. Caller is not required to hold any
5079 * locks. This function issues config_port mailbox command to configure
5080 * the SLI, setup iocb rings and HBQ rings. In the end the function
5081 * calls the config_port_post function to issue init_link mailbox
5082 * command and to start the discovery. The function will return zero
5083 * if successful, else it will return negative error code.
5084 **/
James Smarted957682007-06-17 19:56:37 -05005085int
5086lpfc_sli_hba_setup(struct lpfc_hba *phba)
5087{
5088 uint32_t rc;
James Smart6d368e52011-05-24 11:44:12 -04005089 int mode = 3, i;
5090 int longs;
James Smarted957682007-06-17 19:56:37 -05005091
James Smart12247e82016-07-06 12:36:09 -07005092 switch (phba->cfg_sli_mode) {
James Smarted957682007-06-17 19:56:37 -05005093 case 2:
James Smart78b2d852007-08-02 11:10:21 -04005094 if (phba->cfg_enable_npiv) {
James Smart92d7f7b2007-06-17 19:56:38 -05005095 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smart12247e82016-07-06 12:36:09 -07005096 "1824 NPIV enabled: Override sli_mode "
James Smart92d7f7b2007-06-17 19:56:38 -05005097 "parameter (%d) to auto (0).\n",
James Smart12247e82016-07-06 12:36:09 -07005098 phba->cfg_sli_mode);
James Smart92d7f7b2007-06-17 19:56:38 -05005099 break;
5100 }
James Smarted957682007-06-17 19:56:37 -05005101 mode = 2;
5102 break;
5103 case 0:
5104 case 3:
5105 break;
5106 default:
James Smart92d7f7b2007-06-17 19:56:38 -05005107 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smart12247e82016-07-06 12:36:09 -07005108 "1819 Unrecognized sli_mode parameter: %d.\n",
5109 phba->cfg_sli_mode);
James Smarted957682007-06-17 19:56:37 -05005110
5111 break;
5112 }
James Smartb5c53952016-03-31 14:12:30 -07005113 phba->fcp_embed_io = 0; /* SLI4 FC support only */
James Smarted957682007-06-17 19:56:37 -05005114
James Smart93996272008-08-24 21:50:30 -04005115 rc = lpfc_sli_config_port(phba, mode);
5116
James Smart12247e82016-07-06 12:36:09 -07005117 if (rc && phba->cfg_sli_mode == 3)
James Smart92d7f7b2007-06-17 19:56:38 -05005118 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04005119 "1820 Unable to select SLI-3. "
5120 "Not supported by adapter.\n");
James Smarted957682007-06-17 19:56:37 -05005121 if (rc && mode != 2)
James Smart93996272008-08-24 21:50:30 -04005122 rc = lpfc_sli_config_port(phba, 2);
James Smart4597663f2016-07-06 12:36:01 -07005123 else if (rc && mode == 2)
5124 rc = lpfc_sli_config_port(phba, 3);
James Smarted957682007-06-17 19:56:37 -05005125 if (rc)
dea31012005-04-17 16:05:31 -05005126 goto lpfc_sli_hba_setup_error;
5127
James Smart0d878412009-10-02 15:16:56 -04005128 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
5129 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
5130 rc = pci_enable_pcie_error_reporting(phba->pcidev);
5131 if (!rc) {
5132 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5133 "2709 This device supports "
5134 "Advanced Error Reporting (AER)\n");
5135 spin_lock_irq(&phba->hbalock);
5136 phba->hba_flag |= HBA_AER_ENABLED;
5137 spin_unlock_irq(&phba->hbalock);
5138 } else {
5139 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
5140 "2708 This device does not support "
James Smartb069d7e2013-05-31 17:04:36 -04005141 "Advanced Error Reporting (AER): %d\n",
5142 rc);
James Smart0d878412009-10-02 15:16:56 -04005143 phba->cfg_aer_support = 0;
5144 }
5145 }
5146
James Smarted957682007-06-17 19:56:37 -05005147 if (phba->sli_rev == 3) {
5148 phba->iocb_cmd_size = SLI3_IOCB_CMD_SIZE;
5149 phba->iocb_rsp_size = SLI3_IOCB_RSP_SIZE;
James Smarted957682007-06-17 19:56:37 -05005150 } else {
5151 phba->iocb_cmd_size = SLI2_IOCB_CMD_SIZE;
5152 phba->iocb_rsp_size = SLI2_IOCB_RSP_SIZE;
James Smart92d7f7b2007-06-17 19:56:38 -05005153 phba->sli3_options = 0;
James Smarted957682007-06-17 19:56:37 -05005154 }
5155
5156 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04005157 "0444 Firmware in SLI %x mode. Max_vpi %d\n",
5158 phba->sli_rev, phba->max_vpi);
James Smarted957682007-06-17 19:56:37 -05005159 rc = lpfc_sli_ring_map(phba);
dea31012005-04-17 16:05:31 -05005160
5161 if (rc)
5162 goto lpfc_sli_hba_setup_error;
5163
James Smart6d368e52011-05-24 11:44:12 -04005164 /* Initialize VPIs. */
5165 if (phba->sli_rev == LPFC_SLI_REV3) {
5166 /*
5167 * The VPI bitmask and physical ID array are allocated
5168 * and initialized once only - at driver load. A port
5169 * reset doesn't need to reinitialize this memory.
5170 */
5171 if ((phba->vpi_bmask == NULL) && (phba->vpi_ids == NULL)) {
5172 longs = (phba->max_vpi + BITS_PER_LONG) / BITS_PER_LONG;
Kees Cook6396bb22018-06-12 14:03:40 -07005173 phba->vpi_bmask = kcalloc(longs,
5174 sizeof(unsigned long),
James Smart6d368e52011-05-24 11:44:12 -04005175 GFP_KERNEL);
5176 if (!phba->vpi_bmask) {
5177 rc = -ENOMEM;
5178 goto lpfc_sli_hba_setup_error;
5179 }
5180
Kees Cook6396bb22018-06-12 14:03:40 -07005181 phba->vpi_ids = kcalloc(phba->max_vpi + 1,
5182 sizeof(uint16_t),
5183 GFP_KERNEL);
James Smart6d368e52011-05-24 11:44:12 -04005184 if (!phba->vpi_ids) {
5185 kfree(phba->vpi_bmask);
5186 rc = -ENOMEM;
5187 goto lpfc_sli_hba_setup_error;
5188 }
5189 for (i = 0; i < phba->max_vpi; i++)
5190 phba->vpi_ids[i] = i;
5191 }
5192 }
5193
James Smart93996272008-08-24 21:50:30 -04005194 /* Init HBQs */
James Smarted957682007-06-17 19:56:37 -05005195 if (phba->sli3_options & LPFC_SLI3_HBQ_ENABLED) {
5196 rc = lpfc_sli_hbq_setup(phba);
5197 if (rc)
5198 goto lpfc_sli_hba_setup_error;
5199 }
James Smart04c68492009-05-22 14:52:52 -04005200 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05005201 phba->sli.sli_flag |= LPFC_PROCESS_LA;
James Smart04c68492009-05-22 14:52:52 -04005202 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05005203
5204 rc = lpfc_config_port_post(phba);
5205 if (rc)
5206 goto lpfc_sli_hba_setup_error;
5207
James Smarted957682007-06-17 19:56:37 -05005208 return rc;
5209
James Smart92d7f7b2007-06-17 19:56:38 -05005210lpfc_sli_hba_setup_error:
James Smart2e0fef82007-06-17 19:56:36 -05005211 phba->link_state = LPFC_HBA_ERROR;
James Smarte40a02c2010-02-26 14:13:54 -05005212 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -04005213 "0445 Firmware initialization failed\n");
dea31012005-04-17 16:05:31 -05005214 return rc;
5215}
5216
James Smartda0436e2009-05-22 14:51:39 -04005217/**
5218 * lpfc_sli4_read_fcoe_params - Read fcoe params from conf region
5219 * @phba: Pointer to HBA context object.
5220 * @mboxq: mailbox pointer.
5221 * This function issue a dump mailbox command to read config region
5222 * 23 and parse the records in the region and populate driver
5223 * data structure.
5224 **/
5225static int
James Smartff78d8f2011-12-13 13:21:35 -05005226lpfc_sli4_read_fcoe_params(struct lpfc_hba *phba)
James Smartda0436e2009-05-22 14:51:39 -04005227{
James Smartff78d8f2011-12-13 13:21:35 -05005228 LPFC_MBOXQ_t *mboxq;
James Smartda0436e2009-05-22 14:51:39 -04005229 struct lpfc_dmabuf *mp;
5230 struct lpfc_mqe *mqe;
5231 uint32_t data_length;
5232 int rc;
5233
5234 /* Program the default value of vlan_id and fc_map */
5235 phba->valid_vlan = 0;
5236 phba->fc_map[0] = LPFC_FCOE_FCF_MAP0;
5237 phba->fc_map[1] = LPFC_FCOE_FCF_MAP1;
5238 phba->fc_map[2] = LPFC_FCOE_FCF_MAP2;
5239
James Smartff78d8f2011-12-13 13:21:35 -05005240 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5241 if (!mboxq)
James Smartda0436e2009-05-22 14:51:39 -04005242 return -ENOMEM;
5243
James Smartff78d8f2011-12-13 13:21:35 -05005244 mqe = &mboxq->u.mqe;
5245 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq)) {
5246 rc = -ENOMEM;
5247 goto out_free_mboxq;
5248 }
5249
James Smart3e1f0712018-11-29 16:09:29 -08005250 mp = (struct lpfc_dmabuf *)mboxq->ctx_buf;
James Smartda0436e2009-05-22 14:51:39 -04005251 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5252
5253 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
5254 "(%d):2571 Mailbox cmd x%x Status x%x "
5255 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x "
5256 "x%x x%x x%x x%x x%x x%x x%x x%x x%x "
5257 "CQ: x%x x%x x%x x%x\n",
5258 mboxq->vport ? mboxq->vport->vpi : 0,
5259 bf_get(lpfc_mqe_command, mqe),
5260 bf_get(lpfc_mqe_status, mqe),
5261 mqe->un.mb_words[0], mqe->un.mb_words[1],
5262 mqe->un.mb_words[2], mqe->un.mb_words[3],
5263 mqe->un.mb_words[4], mqe->un.mb_words[5],
5264 mqe->un.mb_words[6], mqe->un.mb_words[7],
5265 mqe->un.mb_words[8], mqe->un.mb_words[9],
5266 mqe->un.mb_words[10], mqe->un.mb_words[11],
5267 mqe->un.mb_words[12], mqe->un.mb_words[13],
5268 mqe->un.mb_words[14], mqe->un.mb_words[15],
5269 mqe->un.mb_words[16], mqe->un.mb_words[50],
5270 mboxq->mcqe.word0,
5271 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
5272 mboxq->mcqe.trailer);
5273
5274 if (rc) {
5275 lpfc_mbuf_free(phba, mp->virt, mp->phys);
5276 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05005277 rc = -EIO;
5278 goto out_free_mboxq;
James Smartda0436e2009-05-22 14:51:39 -04005279 }
5280 data_length = mqe->un.mb_words[5];
James Smarta0c87cb2009-07-19 10:01:10 -04005281 if (data_length > DMP_RGN23_SIZE) {
James Smartd11e31d2009-06-10 17:23:06 -04005282 lpfc_mbuf_free(phba, mp->virt, mp->phys);
5283 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05005284 rc = -EIO;
5285 goto out_free_mboxq;
James Smartd11e31d2009-06-10 17:23:06 -04005286 }
James Smartda0436e2009-05-22 14:51:39 -04005287
5288 lpfc_parse_fcoe_conf(phba, mp->virt, data_length);
5289 lpfc_mbuf_free(phba, mp->virt, mp->phys);
5290 kfree(mp);
James Smartff78d8f2011-12-13 13:21:35 -05005291 rc = 0;
5292
5293out_free_mboxq:
5294 mempool_free(mboxq, phba->mbox_mem_pool);
5295 return rc;
James Smartda0436e2009-05-22 14:51:39 -04005296}
5297
5298/**
5299 * lpfc_sli4_read_rev - Issue READ_REV and collect vpd data
5300 * @phba: pointer to lpfc hba data structure.
5301 * @mboxq: pointer to the LPFC_MBOXQ_t structure.
5302 * @vpd: pointer to the memory to hold resulting port vpd data.
5303 * @vpd_size: On input, the number of bytes allocated to @vpd.
5304 * On output, the number of data bytes in @vpd.
5305 *
5306 * This routine executes a READ_REV SLI4 mailbox command. In
5307 * addition, this routine gets the port vpd data.
5308 *
5309 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02005310 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -04005311 * -ENOMEM - could not allocated memory.
James Smartda0436e2009-05-22 14:51:39 -04005312 **/
5313static int
5314lpfc_sli4_read_rev(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
5315 uint8_t *vpd, uint32_t *vpd_size)
5316{
5317 int rc = 0;
5318 uint32_t dma_size;
5319 struct lpfc_dmabuf *dmabuf;
5320 struct lpfc_mqe *mqe;
5321
5322 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
5323 if (!dmabuf)
5324 return -ENOMEM;
5325
5326 /*
5327 * Get a DMA buffer for the vpd data resulting from the READ_REV
5328 * mailbox command.
5329 */
5330 dma_size = *vpd_size;
Luis Chamberlain750afb02019-01-04 09:23:09 +01005331 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev, dma_size,
5332 &dmabuf->phys, GFP_KERNEL);
James Smartda0436e2009-05-22 14:51:39 -04005333 if (!dmabuf->virt) {
5334 kfree(dmabuf);
5335 return -ENOMEM;
5336 }
James Smartda0436e2009-05-22 14:51:39 -04005337
5338 /*
5339 * The SLI4 implementation of READ_REV conflicts at word1,
5340 * bits 31:16 and SLI4 adds vpd functionality not present
5341 * in SLI3. This code corrects the conflicts.
5342 */
5343 lpfc_read_rev(phba, mboxq);
5344 mqe = &mboxq->u.mqe;
5345 mqe->un.read_rev.vpd_paddr_high = putPaddrHigh(dmabuf->phys);
5346 mqe->un.read_rev.vpd_paddr_low = putPaddrLow(dmabuf->phys);
5347 mqe->un.read_rev.word1 &= 0x0000FFFF;
5348 bf_set(lpfc_mbx_rd_rev_vpd, &mqe->un.read_rev, 1);
5349 bf_set(lpfc_mbx_rd_rev_avail_len, &mqe->un.read_rev, dma_size);
5350
5351 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5352 if (rc) {
5353 dma_free_coherent(&phba->pcidev->dev, dma_size,
5354 dmabuf->virt, dmabuf->phys);
James Smartdef9c7a2009-12-21 17:02:28 -05005355 kfree(dmabuf);
James Smartda0436e2009-05-22 14:51:39 -04005356 return -EIO;
5357 }
5358
James Smartda0436e2009-05-22 14:51:39 -04005359 /*
5360 * The available vpd length cannot be bigger than the
5361 * DMA buffer passed to the port. Catch the less than
5362 * case and update the caller's size.
5363 */
5364 if (mqe->un.read_rev.avail_vpd_len < *vpd_size)
5365 *vpd_size = mqe->un.read_rev.avail_vpd_len;
5366
James Smartd7c47992010-06-08 18:31:54 -04005367 memcpy(vpd, dmabuf->virt, *vpd_size);
5368
James Smartda0436e2009-05-22 14:51:39 -04005369 dma_free_coherent(&phba->pcidev->dev, dma_size,
5370 dmabuf->virt, dmabuf->phys);
5371 kfree(dmabuf);
5372 return 0;
5373}
5374
5375/**
James Smartb3b4f3e2019-03-12 16:30:23 -07005376 * lpfc_sli4_get_ctl_attr - Retrieve SLI4 device controller attributes
James Smartcd1c8302011-10-10 21:33:25 -04005377 * @phba: pointer to lpfc hba data structure.
5378 *
5379 * This routine retrieves SLI4 device physical port name this PCI function
5380 * is attached to.
5381 *
5382 * Return codes
Anatol Pomozov4907cb72012-09-01 10:31:09 -07005383 * 0 - successful
James Smartb3b4f3e2019-03-12 16:30:23 -07005384 * otherwise - failed to retrieve controller attributes
James Smartcd1c8302011-10-10 21:33:25 -04005385 **/
5386static int
James Smartb3b4f3e2019-03-12 16:30:23 -07005387lpfc_sli4_get_ctl_attr(struct lpfc_hba *phba)
James Smartcd1c8302011-10-10 21:33:25 -04005388{
5389 LPFC_MBOXQ_t *mboxq;
James Smartcd1c8302011-10-10 21:33:25 -04005390 struct lpfc_mbx_get_cntl_attributes *mbx_cntl_attr;
5391 struct lpfc_controller_attribute *cntl_attr;
James Smartcd1c8302011-10-10 21:33:25 -04005392 void *virtaddr = NULL;
5393 uint32_t alloclen, reqlen;
5394 uint32_t shdr_status, shdr_add_status;
5395 union lpfc_sli4_cfg_shdr *shdr;
James Smartcd1c8302011-10-10 21:33:25 -04005396 int rc;
5397
James Smartcd1c8302011-10-10 21:33:25 -04005398 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5399 if (!mboxq)
5400 return -ENOMEM;
James Smartcd1c8302011-10-10 21:33:25 -04005401
James Smartb3b4f3e2019-03-12 16:30:23 -07005402 /* Send COMMON_GET_CNTL_ATTRIBUTES mbox cmd */
James Smartcd1c8302011-10-10 21:33:25 -04005403 reqlen = sizeof(struct lpfc_mbx_get_cntl_attributes);
5404 alloclen = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
5405 LPFC_MBOX_OPCODE_GET_CNTL_ATTRIBUTES, reqlen,
5406 LPFC_SLI4_MBX_NEMBED);
James Smartb3b4f3e2019-03-12 16:30:23 -07005407
James Smartcd1c8302011-10-10 21:33:25 -04005408 if (alloclen < reqlen) {
5409 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
5410 "3084 Allocated DMA memory size (%d) is "
5411 "less than the requested DMA memory size "
5412 "(%d)\n", alloclen, reqlen);
5413 rc = -ENOMEM;
5414 goto out_free_mboxq;
5415 }
5416 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5417 virtaddr = mboxq->sge_array->addr[0];
5418 mbx_cntl_attr = (struct lpfc_mbx_get_cntl_attributes *)virtaddr;
5419 shdr = &mbx_cntl_attr->cfg_shdr;
5420 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5421 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5422 if (shdr_status || shdr_add_status || rc) {
5423 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
5424 "3085 Mailbox x%x (x%x/x%x) failed, "
5425 "rc:x%x, status:x%x, add_status:x%x\n",
5426 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
5427 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
5428 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
5429 rc, shdr_status, shdr_add_status);
5430 rc = -ENXIO;
5431 goto out_free_mboxq;
5432 }
James Smartb3b4f3e2019-03-12 16:30:23 -07005433
James Smartcd1c8302011-10-10 21:33:25 -04005434 cntl_attr = &mbx_cntl_attr->cntl_attr;
5435 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_VAL;
5436 phba->sli4_hba.lnk_info.lnk_tp =
5437 bf_get(lpfc_cntl_attr_lnk_type, cntl_attr);
5438 phba->sli4_hba.lnk_info.lnk_no =
5439 bf_get(lpfc_cntl_attr_lnk_numb, cntl_attr);
James Smartb3b4f3e2019-03-12 16:30:23 -07005440
5441 memset(phba->BIOSVersion, 0, sizeof(phba->BIOSVersion));
5442 strlcat(phba->BIOSVersion, (char *)cntl_attr->bios_ver_str,
5443 sizeof(phba->BIOSVersion));
5444
James Smartcd1c8302011-10-10 21:33:25 -04005445 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smartb3b4f3e2019-03-12 16:30:23 -07005446 "3086 lnk_type:%d, lnk_numb:%d, bios_ver:%s\n",
James Smartcd1c8302011-10-10 21:33:25 -04005447 phba->sli4_hba.lnk_info.lnk_tp,
James Smartb3b4f3e2019-03-12 16:30:23 -07005448 phba->sli4_hba.lnk_info.lnk_no,
5449 phba->BIOSVersion);
5450out_free_mboxq:
5451 if (rc != MBX_TIMEOUT) {
5452 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
5453 lpfc_sli4_mbox_cmd_free(phba, mboxq);
5454 else
5455 mempool_free(mboxq, phba->mbox_mem_pool);
5456 }
5457 return rc;
5458}
5459
5460/**
5461 * lpfc_sli4_retrieve_pport_name - Retrieve SLI4 device physical port name
5462 * @phba: pointer to lpfc hba data structure.
5463 *
5464 * This routine retrieves SLI4 device physical port name this PCI function
5465 * is attached to.
5466 *
5467 * Return codes
5468 * 0 - successful
5469 * otherwise - failed to retrieve physical port name
5470 **/
5471static int
5472lpfc_sli4_retrieve_pport_name(struct lpfc_hba *phba)
5473{
5474 LPFC_MBOXQ_t *mboxq;
5475 struct lpfc_mbx_get_port_name *get_port_name;
5476 uint32_t shdr_status, shdr_add_status;
5477 union lpfc_sli4_cfg_shdr *shdr;
5478 char cport_name = 0;
5479 int rc;
5480
5481 /* We assume nothing at this point */
5482 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
5483 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_NON;
5484
5485 mboxq = (LPFC_MBOXQ_t *)mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5486 if (!mboxq)
5487 return -ENOMEM;
5488 /* obtain link type and link number via READ_CONFIG */
5489 phba->sli4_hba.lnk_info.lnk_dv = LPFC_LNK_DAT_INVAL;
5490 lpfc_sli4_read_config(phba);
5491 if (phba->sli4_hba.lnk_info.lnk_dv == LPFC_LNK_DAT_VAL)
5492 goto retrieve_ppname;
5493
5494 /* obtain link type and link number via COMMON_GET_CNTL_ATTRIBUTES */
5495 rc = lpfc_sli4_get_ctl_attr(phba);
5496 if (rc)
5497 goto out_free_mboxq;
James Smartcd1c8302011-10-10 21:33:25 -04005498
5499retrieve_ppname:
5500 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_COMMON,
5501 LPFC_MBOX_OPCODE_GET_PORT_NAME,
5502 sizeof(struct lpfc_mbx_get_port_name) -
5503 sizeof(struct lpfc_sli4_cfg_mhdr),
5504 LPFC_SLI4_MBX_EMBED);
5505 get_port_name = &mboxq->u.mqe.un.get_port_name;
5506 shdr = (union lpfc_sli4_cfg_shdr *)&get_port_name->header.cfg_shdr;
5507 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_OPCODE_VERSION_1);
5508 bf_set(lpfc_mbx_get_port_name_lnk_type, &get_port_name->u.request,
5509 phba->sli4_hba.lnk_info.lnk_tp);
5510 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
5511 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
5512 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
5513 if (shdr_status || shdr_add_status || rc) {
5514 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
5515 "3087 Mailbox x%x (x%x/x%x) failed: "
5516 "rc:x%x, status:x%x, add_status:x%x\n",
5517 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
5518 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
5519 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
5520 rc, shdr_status, shdr_add_status);
5521 rc = -ENXIO;
5522 goto out_free_mboxq;
5523 }
5524 switch (phba->sli4_hba.lnk_info.lnk_no) {
5525 case LPFC_LINK_NUMBER_0:
5526 cport_name = bf_get(lpfc_mbx_get_port_name_name0,
5527 &get_port_name->u.response);
5528 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5529 break;
5530 case LPFC_LINK_NUMBER_1:
5531 cport_name = bf_get(lpfc_mbx_get_port_name_name1,
5532 &get_port_name->u.response);
5533 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5534 break;
5535 case LPFC_LINK_NUMBER_2:
5536 cport_name = bf_get(lpfc_mbx_get_port_name_name2,
5537 &get_port_name->u.response);
5538 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5539 break;
5540 case LPFC_LINK_NUMBER_3:
5541 cport_name = bf_get(lpfc_mbx_get_port_name_name3,
5542 &get_port_name->u.response);
5543 phba->sli4_hba.pport_name_sta = LPFC_SLI4_PPNAME_GET;
5544 break;
5545 default:
5546 break;
5547 }
5548
5549 if (phba->sli4_hba.pport_name_sta == LPFC_SLI4_PPNAME_GET) {
5550 phba->Port[0] = cport_name;
5551 phba->Port[1] = '\0';
5552 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5553 "3091 SLI get port name: %s\n", phba->Port);
5554 }
5555
5556out_free_mboxq:
5557 if (rc != MBX_TIMEOUT) {
5558 if (bf_get(lpfc_mqe_command, &mboxq->u.mqe) == MBX_SLI4_CONFIG)
5559 lpfc_sli4_mbox_cmd_free(phba, mboxq);
5560 else
5561 mempool_free(mboxq, phba->mbox_mem_pool);
5562 }
5563 return rc;
5564}
5565
5566/**
James Smartda0436e2009-05-22 14:51:39 -04005567 * lpfc_sli4_arm_cqeq_intr - Arm sli-4 device completion and event queues
5568 * @phba: pointer to lpfc hba data structure.
5569 *
5570 * This routine is called to explicitly arm the SLI4 device's completion and
5571 * event queues
5572 **/
5573static void
5574lpfc_sli4_arm_cqeq_intr(struct lpfc_hba *phba)
5575{
James Smart895427b2017-02-12 13:52:30 -08005576 int qidx;
James Smartb71413d2018-02-22 08:18:40 -08005577 struct lpfc_sli4_hba *sli4_hba = &phba->sli4_hba;
James Smartcdb42be2019-01-28 11:14:21 -08005578 struct lpfc_sli4_hdw_queue *qp;
James Smart657add42019-05-21 17:49:06 -07005579 struct lpfc_queue *eq;
James Smartda0436e2009-05-22 14:51:39 -04005580
James Smart32517fc2019-01-28 11:14:33 -08005581 sli4_hba->sli4_write_cq_db(phba, sli4_hba->mbx_cq, 0, LPFC_QUEUE_REARM);
5582 sli4_hba->sli4_write_cq_db(phba, sli4_hba->els_cq, 0, LPFC_QUEUE_REARM);
James Smartb71413d2018-02-22 08:18:40 -08005583 if (sli4_hba->nvmels_cq)
James Smart32517fc2019-01-28 11:14:33 -08005584 sli4_hba->sli4_write_cq_db(phba, sli4_hba->nvmels_cq, 0,
5585 LPFC_QUEUE_REARM);
James Smart895427b2017-02-12 13:52:30 -08005586
James Smartcdb42be2019-01-28 11:14:21 -08005587 if (sli4_hba->hdwq) {
James Smart657add42019-05-21 17:49:06 -07005588 /* Loop thru all Hardware Queues */
James Smartcdb42be2019-01-28 11:14:21 -08005589 for (qidx = 0; qidx < phba->cfg_hdw_queue; qidx++) {
James Smart657add42019-05-21 17:49:06 -07005590 qp = &sli4_hba->hdwq[qidx];
5591 /* ARM the corresponding CQ */
James Smart01f2ef62019-08-28 16:19:11 -07005592 sli4_hba->sli4_write_cq_db(phba, qp->io_cq, 0,
James Smartc00f62e2019-08-14 16:57:11 -07005593 LPFC_QUEUE_REARM);
James Smartcdb42be2019-01-28 11:14:21 -08005594 }
James Smart895427b2017-02-12 13:52:30 -08005595
James Smart657add42019-05-21 17:49:06 -07005596 /* Loop thru all IRQ vectors */
5597 for (qidx = 0; qidx < phba->cfg_irq_chann; qidx++) {
5598 eq = sli4_hba->hba_eq_hdl[qidx].eq;
5599 /* ARM the corresponding EQ */
5600 sli4_hba->sli4_write_eq_db(phba, eq,
5601 0, LPFC_QUEUE_REARM);
5602 }
James Smartcdb42be2019-01-28 11:14:21 -08005603 }
James Smart1ba981f2014-02-20 09:56:45 -05005604
James Smart2d7dbc42017-02-12 13:52:35 -08005605 if (phba->nvmet_support) {
5606 for (qidx = 0; qidx < phba->cfg_nvmet_mrq; qidx++) {
James Smart32517fc2019-01-28 11:14:33 -08005607 sli4_hba->sli4_write_cq_db(phba,
5608 sli4_hba->nvmet_cqset[qidx], 0,
James Smart2d7dbc42017-02-12 13:52:35 -08005609 LPFC_QUEUE_REARM);
5610 }
James Smart2e90f4b2011-12-13 13:22:37 -05005611 }
James Smartda0436e2009-05-22 14:51:39 -04005612}
5613
5614/**
James Smart6d368e52011-05-24 11:44:12 -04005615 * lpfc_sli4_get_avail_extnt_rsrc - Get available resource extent count.
5616 * @phba: Pointer to HBA context object.
5617 * @type: The resource extent type.
James Smartb76f2dc2011-07-22 18:37:42 -04005618 * @extnt_count: buffer to hold port available extent count.
5619 * @extnt_size: buffer to hold element count per extent.
James Smart6d368e52011-05-24 11:44:12 -04005620 *
James Smartb76f2dc2011-07-22 18:37:42 -04005621 * This function calls the port and retrievs the number of available
5622 * extents and their size for a particular extent type.
5623 *
5624 * Returns: 0 if successful. Nonzero otherwise.
James Smart6d368e52011-05-24 11:44:12 -04005625 **/
James Smartb76f2dc2011-07-22 18:37:42 -04005626int
James Smart6d368e52011-05-24 11:44:12 -04005627lpfc_sli4_get_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type,
5628 uint16_t *extnt_count, uint16_t *extnt_size)
5629{
5630 int rc = 0;
5631 uint32_t length;
5632 uint32_t mbox_tmo;
5633 struct lpfc_mbx_get_rsrc_extent_info *rsrc_info;
5634 LPFC_MBOXQ_t *mbox;
5635
5636 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5637 if (!mbox)
5638 return -ENOMEM;
5639
5640 /* Find out how many extents are available for this resource type */
5641 length = (sizeof(struct lpfc_mbx_get_rsrc_extent_info) -
5642 sizeof(struct lpfc_sli4_cfg_mhdr));
5643 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5644 LPFC_MBOX_OPCODE_GET_RSRC_EXTENT_INFO,
5645 length, LPFC_SLI4_MBX_EMBED);
5646
5647 /* Send an extents count of 0 - the GET doesn't use it. */
5648 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
5649 LPFC_SLI4_MBX_EMBED);
5650 if (unlikely(rc)) {
5651 rc = -EIO;
5652 goto err_exit;
5653 }
5654
5655 if (!phba->sli4_hba.intr_enable)
5656 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5657 else {
James Smarta183a152011-10-10 21:32:43 -04005658 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005659 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5660 }
5661 if (unlikely(rc)) {
5662 rc = -EIO;
5663 goto err_exit;
5664 }
5665
5666 rsrc_info = &mbox->u.mqe.un.rsrc_extent_info;
5667 if (bf_get(lpfc_mbox_hdr_status,
5668 &rsrc_info->header.cfg_shdr.response)) {
5669 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5670 "2930 Failed to get resource extents "
5671 "Status 0x%x Add'l Status 0x%x\n",
5672 bf_get(lpfc_mbox_hdr_status,
5673 &rsrc_info->header.cfg_shdr.response),
5674 bf_get(lpfc_mbox_hdr_add_status,
5675 &rsrc_info->header.cfg_shdr.response));
5676 rc = -EIO;
5677 goto err_exit;
5678 }
5679
5680 *extnt_count = bf_get(lpfc_mbx_get_rsrc_extent_info_cnt,
5681 &rsrc_info->u.rsp);
5682 *extnt_size = bf_get(lpfc_mbx_get_rsrc_extent_info_size,
5683 &rsrc_info->u.rsp);
James Smart8a9d2e82012-05-09 21:16:12 -04005684
5685 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
5686 "3162 Retrieved extents type-%d from port: count:%d, "
5687 "size:%d\n", type, *extnt_count, *extnt_size);
5688
5689err_exit:
James Smart6d368e52011-05-24 11:44:12 -04005690 mempool_free(mbox, phba->mbox_mem_pool);
5691 return rc;
5692}
5693
5694/**
5695 * lpfc_sli4_chk_avail_extnt_rsrc - Check for available SLI4 resource extents.
5696 * @phba: Pointer to HBA context object.
5697 * @type: The extent type to check.
5698 *
5699 * This function reads the current available extents from the port and checks
5700 * if the extent count or extent size has changed since the last access.
5701 * Callers use this routine post port reset to understand if there is a
5702 * extent reprovisioning requirement.
5703 *
5704 * Returns:
5705 * -Error: error indicates problem.
5706 * 1: Extent count or size has changed.
5707 * 0: No changes.
5708 **/
5709static int
5710lpfc_sli4_chk_avail_extnt_rsrc(struct lpfc_hba *phba, uint16_t type)
5711{
5712 uint16_t curr_ext_cnt, rsrc_ext_cnt;
5713 uint16_t size_diff, rsrc_ext_size;
5714 int rc = 0;
5715 struct lpfc_rsrc_blks *rsrc_entry;
5716 struct list_head *rsrc_blk_list = NULL;
5717
5718 size_diff = 0;
5719 curr_ext_cnt = 0;
5720 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5721 &rsrc_ext_cnt,
5722 &rsrc_ext_size);
5723 if (unlikely(rc))
5724 return -EIO;
5725
5726 switch (type) {
5727 case LPFC_RSC_TYPE_FCOE_RPI:
5728 rsrc_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5729 break;
5730 case LPFC_RSC_TYPE_FCOE_VPI:
5731 rsrc_blk_list = &phba->lpfc_vpi_blk_list;
5732 break;
5733 case LPFC_RSC_TYPE_FCOE_XRI:
5734 rsrc_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5735 break;
5736 case LPFC_RSC_TYPE_FCOE_VFI:
5737 rsrc_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
5738 break;
5739 default:
5740 break;
5741 }
5742
5743 list_for_each_entry(rsrc_entry, rsrc_blk_list, list) {
5744 curr_ext_cnt++;
5745 if (rsrc_entry->rsrc_size != rsrc_ext_size)
5746 size_diff++;
5747 }
5748
5749 if (curr_ext_cnt != rsrc_ext_cnt || size_diff != 0)
5750 rc = 1;
5751
5752 return rc;
5753}
5754
5755/**
5756 * lpfc_sli4_cfg_post_extnts -
5757 * @phba: Pointer to HBA context object.
5758 * @extnt_cnt - number of available extents.
5759 * @type - the extent type (rpi, xri, vfi, vpi).
5760 * @emb - buffer to hold either MBX_EMBED or MBX_NEMBED operation.
5761 * @mbox - pointer to the caller's allocated mailbox structure.
5762 *
5763 * This function executes the extents allocation request. It also
5764 * takes care of the amount of memory needed to allocate or get the
5765 * allocated extents. It is the caller's responsibility to evaluate
5766 * the response.
5767 *
5768 * Returns:
5769 * -Error: Error value describes the condition found.
5770 * 0: if successful
5771 **/
5772static int
James Smart8a9d2e82012-05-09 21:16:12 -04005773lpfc_sli4_cfg_post_extnts(struct lpfc_hba *phba, uint16_t extnt_cnt,
James Smart6d368e52011-05-24 11:44:12 -04005774 uint16_t type, bool *emb, LPFC_MBOXQ_t *mbox)
5775{
5776 int rc = 0;
5777 uint32_t req_len;
5778 uint32_t emb_len;
5779 uint32_t alloc_len, mbox_tmo;
5780
5781 /* Calculate the total requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -04005782 req_len = extnt_cnt * sizeof(uint16_t);
James Smart6d368e52011-05-24 11:44:12 -04005783
5784 /*
5785 * Calculate the size of an embedded mailbox. The uint32_t
5786 * accounts for extents-specific word.
5787 */
5788 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
5789 sizeof(uint32_t);
5790
5791 /*
5792 * Presume the allocation and response will fit into an embedded
5793 * mailbox. If not true, reconfigure to a non-embedded mailbox.
5794 */
5795 *emb = LPFC_SLI4_MBX_EMBED;
5796 if (req_len > emb_len) {
James Smart8a9d2e82012-05-09 21:16:12 -04005797 req_len = extnt_cnt * sizeof(uint16_t) +
James Smart6d368e52011-05-24 11:44:12 -04005798 sizeof(union lpfc_sli4_cfg_shdr) +
5799 sizeof(uint32_t);
5800 *emb = LPFC_SLI4_MBX_NEMBED;
5801 }
5802
5803 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
5804 LPFC_MBOX_OPCODE_ALLOC_RSRC_EXTENT,
5805 req_len, *emb);
5806 if (alloc_len < req_len) {
5807 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartb76f2dc2011-07-22 18:37:42 -04005808 "2982 Allocated DMA memory size (x%x) is "
James Smart6d368e52011-05-24 11:44:12 -04005809 "less than the requested DMA memory "
5810 "size (x%x)\n", alloc_len, req_len);
5811 return -ENOMEM;
5812 }
James Smart8a9d2e82012-05-09 21:16:12 -04005813 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, extnt_cnt, type, *emb);
James Smart6d368e52011-05-24 11:44:12 -04005814 if (unlikely(rc))
5815 return -EIO;
5816
5817 if (!phba->sli4_hba.intr_enable)
5818 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
5819 else {
James Smarta183a152011-10-10 21:32:43 -04005820 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005821 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
5822 }
5823
5824 if (unlikely(rc))
5825 rc = -EIO;
5826 return rc;
5827}
5828
5829/**
5830 * lpfc_sli4_alloc_extent - Allocate an SLI4 resource extent.
5831 * @phba: Pointer to HBA context object.
5832 * @type: The resource extent type to allocate.
5833 *
5834 * This function allocates the number of elements for the specified
5835 * resource type.
5836 **/
5837static int
5838lpfc_sli4_alloc_extent(struct lpfc_hba *phba, uint16_t type)
5839{
5840 bool emb = false;
5841 uint16_t rsrc_id_cnt, rsrc_cnt, rsrc_size;
5842 uint16_t rsrc_id, rsrc_start, j, k;
5843 uint16_t *ids;
5844 int i, rc;
5845 unsigned long longs;
5846 unsigned long *bmask;
5847 struct lpfc_rsrc_blks *rsrc_blks;
5848 LPFC_MBOXQ_t *mbox;
5849 uint32_t length;
5850 struct lpfc_id_range *id_array = NULL;
5851 void *virtaddr = NULL;
5852 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
5853 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
5854 struct list_head *ext_blk_list;
5855
5856 rc = lpfc_sli4_get_avail_extnt_rsrc(phba, type,
5857 &rsrc_cnt,
5858 &rsrc_size);
5859 if (unlikely(rc))
5860 return -EIO;
5861
5862 if ((rsrc_cnt == 0) || (rsrc_size == 0)) {
5863 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
5864 "3009 No available Resource Extents "
5865 "for resource type 0x%x: Count: 0x%x, "
5866 "Size 0x%x\n", type, rsrc_cnt,
5867 rsrc_size);
5868 return -ENOMEM;
5869 }
5870
James Smart8a9d2e82012-05-09 21:16:12 -04005871 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_INIT | LOG_SLI,
5872 "2903 Post resource extents type-0x%x: "
5873 "count:%d, size %d\n", type, rsrc_cnt, rsrc_size);
James Smart6d368e52011-05-24 11:44:12 -04005874
5875 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
5876 if (!mbox)
5877 return -ENOMEM;
5878
James Smart8a9d2e82012-05-09 21:16:12 -04005879 rc = lpfc_sli4_cfg_post_extnts(phba, rsrc_cnt, type, &emb, mbox);
James Smart6d368e52011-05-24 11:44:12 -04005880 if (unlikely(rc)) {
5881 rc = -EIO;
5882 goto err_exit;
5883 }
5884
5885 /*
5886 * Figure out where the response is located. Then get local pointers
5887 * to the response data. The port does not guarantee to respond to
5888 * all extents counts request so update the local variable with the
5889 * allocated count from the port.
5890 */
5891 if (emb == LPFC_SLI4_MBX_EMBED) {
5892 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
5893 id_array = &rsrc_ext->u.rsp.id[0];
5894 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
5895 } else {
5896 virtaddr = mbox->sge_array->addr[0];
5897 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
5898 rsrc_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
5899 id_array = &n_rsrc->id;
5900 }
5901
5902 longs = ((rsrc_cnt * rsrc_size) + BITS_PER_LONG - 1) / BITS_PER_LONG;
5903 rsrc_id_cnt = rsrc_cnt * rsrc_size;
5904
5905 /*
5906 * Based on the resource size and count, correct the base and max
5907 * resource values.
5908 */
5909 length = sizeof(struct lpfc_rsrc_blks);
5910 switch (type) {
5911 case LPFC_RSC_TYPE_FCOE_RPI:
Kees Cook6396bb22018-06-12 14:03:40 -07005912 phba->sli4_hba.rpi_bmask = kcalloc(longs,
James Smart6d368e52011-05-24 11:44:12 -04005913 sizeof(unsigned long),
5914 GFP_KERNEL);
5915 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
5916 rc = -ENOMEM;
5917 goto err_exit;
5918 }
Kees Cook6396bb22018-06-12 14:03:40 -07005919 phba->sli4_hba.rpi_ids = kcalloc(rsrc_id_cnt,
James Smart6d368e52011-05-24 11:44:12 -04005920 sizeof(uint16_t),
5921 GFP_KERNEL);
5922 if (unlikely(!phba->sli4_hba.rpi_ids)) {
5923 kfree(phba->sli4_hba.rpi_bmask);
5924 rc = -ENOMEM;
5925 goto err_exit;
5926 }
5927
5928 /*
5929 * The next_rpi was initialized with the maximum available
5930 * count but the port may allocate a smaller number. Catch
5931 * that case and update the next_rpi.
5932 */
5933 phba->sli4_hba.next_rpi = rsrc_id_cnt;
5934
5935 /* Initialize local ptrs for common extent processing later. */
5936 bmask = phba->sli4_hba.rpi_bmask;
5937 ids = phba->sli4_hba.rpi_ids;
5938 ext_blk_list = &phba->sli4_hba.lpfc_rpi_blk_list;
5939 break;
5940 case LPFC_RSC_TYPE_FCOE_VPI:
Kees Cook6396bb22018-06-12 14:03:40 -07005941 phba->vpi_bmask = kcalloc(longs, sizeof(unsigned long),
James Smart6d368e52011-05-24 11:44:12 -04005942 GFP_KERNEL);
5943 if (unlikely(!phba->vpi_bmask)) {
5944 rc = -ENOMEM;
5945 goto err_exit;
5946 }
Kees Cook6396bb22018-06-12 14:03:40 -07005947 phba->vpi_ids = kcalloc(rsrc_id_cnt, sizeof(uint16_t),
James Smart6d368e52011-05-24 11:44:12 -04005948 GFP_KERNEL);
5949 if (unlikely(!phba->vpi_ids)) {
5950 kfree(phba->vpi_bmask);
5951 rc = -ENOMEM;
5952 goto err_exit;
5953 }
5954
5955 /* Initialize local ptrs for common extent processing later. */
5956 bmask = phba->vpi_bmask;
5957 ids = phba->vpi_ids;
5958 ext_blk_list = &phba->lpfc_vpi_blk_list;
5959 break;
5960 case LPFC_RSC_TYPE_FCOE_XRI:
Kees Cook6396bb22018-06-12 14:03:40 -07005961 phba->sli4_hba.xri_bmask = kcalloc(longs,
James Smart6d368e52011-05-24 11:44:12 -04005962 sizeof(unsigned long),
5963 GFP_KERNEL);
5964 if (unlikely(!phba->sli4_hba.xri_bmask)) {
5965 rc = -ENOMEM;
5966 goto err_exit;
5967 }
James Smart8a9d2e82012-05-09 21:16:12 -04005968 phba->sli4_hba.max_cfg_param.xri_used = 0;
Kees Cook6396bb22018-06-12 14:03:40 -07005969 phba->sli4_hba.xri_ids = kcalloc(rsrc_id_cnt,
James Smart6d368e52011-05-24 11:44:12 -04005970 sizeof(uint16_t),
5971 GFP_KERNEL);
5972 if (unlikely(!phba->sli4_hba.xri_ids)) {
5973 kfree(phba->sli4_hba.xri_bmask);
5974 rc = -ENOMEM;
5975 goto err_exit;
5976 }
5977
5978 /* Initialize local ptrs for common extent processing later. */
5979 bmask = phba->sli4_hba.xri_bmask;
5980 ids = phba->sli4_hba.xri_ids;
5981 ext_blk_list = &phba->sli4_hba.lpfc_xri_blk_list;
5982 break;
5983 case LPFC_RSC_TYPE_FCOE_VFI:
Kees Cook6396bb22018-06-12 14:03:40 -07005984 phba->sli4_hba.vfi_bmask = kcalloc(longs,
James Smart6d368e52011-05-24 11:44:12 -04005985 sizeof(unsigned long),
5986 GFP_KERNEL);
5987 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
5988 rc = -ENOMEM;
5989 goto err_exit;
5990 }
Kees Cook6396bb22018-06-12 14:03:40 -07005991 phba->sli4_hba.vfi_ids = kcalloc(rsrc_id_cnt,
James Smart6d368e52011-05-24 11:44:12 -04005992 sizeof(uint16_t),
5993 GFP_KERNEL);
5994 if (unlikely(!phba->sli4_hba.vfi_ids)) {
5995 kfree(phba->sli4_hba.vfi_bmask);
5996 rc = -ENOMEM;
5997 goto err_exit;
5998 }
5999
6000 /* Initialize local ptrs for common extent processing later. */
6001 bmask = phba->sli4_hba.vfi_bmask;
6002 ids = phba->sli4_hba.vfi_ids;
6003 ext_blk_list = &phba->sli4_hba.lpfc_vfi_blk_list;
6004 break;
6005 default:
6006 /* Unsupported Opcode. Fail call. */
6007 id_array = NULL;
6008 bmask = NULL;
6009 ids = NULL;
6010 ext_blk_list = NULL;
6011 goto err_exit;
6012 }
6013
6014 /*
6015 * Complete initializing the extent configuration with the
6016 * allocated ids assigned to this function. The bitmask serves
6017 * as an index into the array and manages the available ids. The
6018 * array just stores the ids communicated to the port via the wqes.
6019 */
6020 for (i = 0, j = 0, k = 0; i < rsrc_cnt; i++) {
6021 if ((i % 2) == 0)
6022 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_0,
6023 &id_array[k]);
6024 else
6025 rsrc_id = bf_get(lpfc_mbx_rsrc_id_word4_1,
6026 &id_array[k]);
6027
6028 rsrc_blks = kzalloc(length, GFP_KERNEL);
6029 if (unlikely(!rsrc_blks)) {
6030 rc = -ENOMEM;
6031 kfree(bmask);
6032 kfree(ids);
6033 goto err_exit;
6034 }
6035 rsrc_blks->rsrc_start = rsrc_id;
6036 rsrc_blks->rsrc_size = rsrc_size;
6037 list_add_tail(&rsrc_blks->list, ext_blk_list);
6038 rsrc_start = rsrc_id;
James Smart895427b2017-02-12 13:52:30 -08006039 if ((type == LPFC_RSC_TYPE_FCOE_XRI) && (j == 0)) {
James Smart5e5b5112019-01-28 11:14:22 -08006040 phba->sli4_hba.io_xri_start = rsrc_start +
James Smart895427b2017-02-12 13:52:30 -08006041 lpfc_sli4_get_iocb_cnt(phba);
James Smart895427b2017-02-12 13:52:30 -08006042 }
James Smart6d368e52011-05-24 11:44:12 -04006043
6044 while (rsrc_id < (rsrc_start + rsrc_size)) {
6045 ids[j] = rsrc_id;
6046 rsrc_id++;
6047 j++;
6048 }
6049 /* Entire word processed. Get next word.*/
6050 if ((i % 2) == 1)
6051 k++;
6052 }
6053 err_exit:
6054 lpfc_sli4_mbox_cmd_free(phba, mbox);
6055 return rc;
6056}
6057
James Smart895427b2017-02-12 13:52:30 -08006058
6059
James Smart6d368e52011-05-24 11:44:12 -04006060/**
6061 * lpfc_sli4_dealloc_extent - Deallocate an SLI4 resource extent.
6062 * @phba: Pointer to HBA context object.
6063 * @type: the extent's type.
6064 *
6065 * This function deallocates all extents of a particular resource type.
6066 * SLI4 does not allow for deallocating a particular extent range. It
6067 * is the caller's responsibility to release all kernel memory resources.
6068 **/
6069static int
6070lpfc_sli4_dealloc_extent(struct lpfc_hba *phba, uint16_t type)
6071{
6072 int rc;
6073 uint32_t length, mbox_tmo = 0;
6074 LPFC_MBOXQ_t *mbox;
6075 struct lpfc_mbx_dealloc_rsrc_extents *dealloc_rsrc;
6076 struct lpfc_rsrc_blks *rsrc_blk, *rsrc_blk_next;
6077
6078 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6079 if (!mbox)
6080 return -ENOMEM;
6081
6082 /*
6083 * This function sends an embedded mailbox because it only sends the
6084 * the resource type. All extents of this type are released by the
6085 * port.
6086 */
6087 length = (sizeof(struct lpfc_mbx_dealloc_rsrc_extents) -
6088 sizeof(struct lpfc_sli4_cfg_mhdr));
6089 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
6090 LPFC_MBOX_OPCODE_DEALLOC_RSRC_EXTENT,
6091 length, LPFC_SLI4_MBX_EMBED);
6092
6093 /* Send an extents count of 0 - the dealloc doesn't use it. */
6094 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, 0, type,
6095 LPFC_SLI4_MBX_EMBED);
6096 if (unlikely(rc)) {
6097 rc = -EIO;
6098 goto out_free_mbox;
6099 }
6100 if (!phba->sli4_hba.intr_enable)
6101 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6102 else {
James Smarta183a152011-10-10 21:32:43 -04006103 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -04006104 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
6105 }
6106 if (unlikely(rc)) {
6107 rc = -EIO;
6108 goto out_free_mbox;
6109 }
6110
6111 dealloc_rsrc = &mbox->u.mqe.un.dealloc_rsrc_extents;
6112 if (bf_get(lpfc_mbox_hdr_status,
6113 &dealloc_rsrc->header.cfg_shdr.response)) {
6114 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
6115 "2919 Failed to release resource extents "
6116 "for type %d - Status 0x%x Add'l Status 0x%x. "
6117 "Resource memory not released.\n",
6118 type,
6119 bf_get(lpfc_mbox_hdr_status,
6120 &dealloc_rsrc->header.cfg_shdr.response),
6121 bf_get(lpfc_mbox_hdr_add_status,
6122 &dealloc_rsrc->header.cfg_shdr.response));
6123 rc = -EIO;
6124 goto out_free_mbox;
6125 }
6126
6127 /* Release kernel memory resources for the specific type. */
6128 switch (type) {
6129 case LPFC_RSC_TYPE_FCOE_VPI:
6130 kfree(phba->vpi_bmask);
6131 kfree(phba->vpi_ids);
6132 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6133 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
6134 &phba->lpfc_vpi_blk_list, list) {
6135 list_del_init(&rsrc_blk->list);
6136 kfree(rsrc_blk);
6137 }
James Smart16a3a202013-04-17 20:14:38 -04006138 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04006139 break;
6140 case LPFC_RSC_TYPE_FCOE_XRI:
6141 kfree(phba->sli4_hba.xri_bmask);
6142 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04006143 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
6144 &phba->sli4_hba.lpfc_xri_blk_list, list) {
6145 list_del_init(&rsrc_blk->list);
6146 kfree(rsrc_blk);
6147 }
6148 break;
6149 case LPFC_RSC_TYPE_FCOE_VFI:
6150 kfree(phba->sli4_hba.vfi_bmask);
6151 kfree(phba->sli4_hba.vfi_ids);
6152 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6153 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
6154 &phba->sli4_hba.lpfc_vfi_blk_list, list) {
6155 list_del_init(&rsrc_blk->list);
6156 kfree(rsrc_blk);
6157 }
6158 break;
6159 case LPFC_RSC_TYPE_FCOE_RPI:
6160 /* RPI bitmask and physical id array are cleaned up earlier. */
6161 list_for_each_entry_safe(rsrc_blk, rsrc_blk_next,
6162 &phba->sli4_hba.lpfc_rpi_blk_list, list) {
6163 list_del_init(&rsrc_blk->list);
6164 kfree(rsrc_blk);
6165 }
6166 break;
6167 default:
6168 break;
6169 }
6170
6171 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6172
6173 out_free_mbox:
6174 mempool_free(mbox, phba->mbox_mem_pool);
6175 return rc;
6176}
6177
Baoyou Xiebd4b3e52016-09-25 13:44:55 +08006178static void
James Smart7bdedb32016-07-06 12:36:00 -07006179lpfc_set_features(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox,
6180 uint32_t feature)
James Smart65791f12016-07-06 12:35:56 -07006181{
James Smart65791f12016-07-06 12:35:56 -07006182 uint32_t len;
James Smart65791f12016-07-06 12:35:56 -07006183
James Smart65791f12016-07-06 12:35:56 -07006184 len = sizeof(struct lpfc_mbx_set_feature) -
6185 sizeof(struct lpfc_sli4_cfg_mhdr);
6186 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
6187 LPFC_MBOX_OPCODE_SET_FEATURES, len,
6188 LPFC_SLI4_MBX_EMBED);
James Smart65791f12016-07-06 12:35:56 -07006189
James Smart7bdedb32016-07-06 12:36:00 -07006190 switch (feature) {
6191 case LPFC_SET_UE_RECOVERY:
6192 bf_set(lpfc_mbx_set_feature_UER,
6193 &mbox->u.mqe.un.set_feature, 1);
6194 mbox->u.mqe.un.set_feature.feature = LPFC_SET_UE_RECOVERY;
6195 mbox->u.mqe.un.set_feature.param_len = 8;
6196 break;
6197 case LPFC_SET_MDS_DIAGS:
6198 bf_set(lpfc_mbx_set_feature_mds,
6199 &mbox->u.mqe.un.set_feature, 1);
6200 bf_set(lpfc_mbx_set_feature_mds_deep_loopbk,
James Smartae9e28f2017-05-15 15:20:51 -07006201 &mbox->u.mqe.un.set_feature, 1);
James Smart7bdedb32016-07-06 12:36:00 -07006202 mbox->u.mqe.un.set_feature.feature = LPFC_SET_MDS_DIAGS;
6203 mbox->u.mqe.un.set_feature.param_len = 8;
6204 break;
James Smart65791f12016-07-06 12:35:56 -07006205 }
James Smart7bdedb32016-07-06 12:36:00 -07006206
6207 return;
James Smart65791f12016-07-06 12:35:56 -07006208}
6209
James Smart6d368e52011-05-24 11:44:12 -04006210/**
James Smart1165a5c2018-11-29 16:09:39 -08006211 * lpfc_ras_stop_fwlog: Disable FW logging by the adapter
6212 * @phba: Pointer to HBA context object.
6213 *
6214 * Disable FW logging into host memory on the adapter. To
6215 * be done before reading logs from the host memory.
6216 **/
6217void
6218lpfc_ras_stop_fwlog(struct lpfc_hba *phba)
6219{
6220 struct lpfc_ras_fwlog *ras_fwlog = &phba->ras_fwlog;
6221
6222 ras_fwlog->ras_active = false;
6223
6224 /* Disable FW logging to host memory */
6225 writel(LPFC_CTL_PDEV_CTL_DDL_RAS,
6226 phba->sli4_hba.conf_regs_memmap_p + LPFC_CTL_PDEV_CTL_OFFSET);
6227}
6228
6229/**
James Smartd2cc9bc2018-09-10 10:30:50 -07006230 * lpfc_sli4_ras_dma_free - Free memory allocated for FW logging.
6231 * @phba: Pointer to HBA context object.
6232 *
6233 * This function is called to free memory allocated for RAS FW logging
6234 * support in the driver.
6235 **/
6236void
6237lpfc_sli4_ras_dma_free(struct lpfc_hba *phba)
6238{
6239 struct lpfc_ras_fwlog *ras_fwlog = &phba->ras_fwlog;
6240 struct lpfc_dmabuf *dmabuf, *next;
6241
6242 if (!list_empty(&ras_fwlog->fwlog_buff_list)) {
6243 list_for_each_entry_safe(dmabuf, next,
6244 &ras_fwlog->fwlog_buff_list,
6245 list) {
6246 list_del(&dmabuf->list);
6247 dma_free_coherent(&phba->pcidev->dev,
6248 LPFC_RAS_MAX_ENTRY_SIZE,
6249 dmabuf->virt, dmabuf->phys);
6250 kfree(dmabuf);
6251 }
6252 }
6253
6254 if (ras_fwlog->lwpd.virt) {
6255 dma_free_coherent(&phba->pcidev->dev,
6256 sizeof(uint32_t) * 2,
6257 ras_fwlog->lwpd.virt,
6258 ras_fwlog->lwpd.phys);
6259 ras_fwlog->lwpd.virt = NULL;
6260 }
6261
6262 ras_fwlog->ras_active = false;
6263}
6264
6265/**
6266 * lpfc_sli4_ras_dma_alloc: Allocate memory for FW support
6267 * @phba: Pointer to HBA context object.
6268 * @fwlog_buff_count: Count of buffers to be created.
6269 *
6270 * This routine DMA memory for Log Write Position Data[LPWD] and buffer
6271 * to update FW log is posted to the adapter.
6272 * Buffer count is calculated based on module param ras_fwlog_buffsize
6273 * Size of each buffer posted to FW is 64K.
6274 **/
6275
6276static int
6277lpfc_sli4_ras_dma_alloc(struct lpfc_hba *phba,
6278 uint32_t fwlog_buff_count)
6279{
6280 struct lpfc_ras_fwlog *ras_fwlog = &phba->ras_fwlog;
6281 struct lpfc_dmabuf *dmabuf;
6282 int rc = 0, i = 0;
6283
6284 /* Initialize List */
6285 INIT_LIST_HEAD(&ras_fwlog->fwlog_buff_list);
6286
6287 /* Allocate memory for the LWPD */
6288 ras_fwlog->lwpd.virt = dma_alloc_coherent(&phba->pcidev->dev,
6289 sizeof(uint32_t) * 2,
6290 &ras_fwlog->lwpd.phys,
6291 GFP_KERNEL);
6292 if (!ras_fwlog->lwpd.virt) {
James Smartcb349902018-11-29 16:09:27 -08006293 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd2cc9bc2018-09-10 10:30:50 -07006294 "6185 LWPD Memory Alloc Failed\n");
6295
6296 return -ENOMEM;
6297 }
6298
6299 ras_fwlog->fw_buffcount = fwlog_buff_count;
6300 for (i = 0; i < ras_fwlog->fw_buffcount; i++) {
6301 dmabuf = kzalloc(sizeof(struct lpfc_dmabuf),
6302 GFP_KERNEL);
6303 if (!dmabuf) {
6304 rc = -ENOMEM;
6305 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6306 "6186 Memory Alloc failed FW logging");
6307 goto free_mem;
6308 }
6309
Luis Chamberlain750afb02019-01-04 09:23:09 +01006310 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
James Smartd2cc9bc2018-09-10 10:30:50 -07006311 LPFC_RAS_MAX_ENTRY_SIZE,
Luis Chamberlain750afb02019-01-04 09:23:09 +01006312 &dmabuf->phys, GFP_KERNEL);
James Smartd2cc9bc2018-09-10 10:30:50 -07006313 if (!dmabuf->virt) {
6314 kfree(dmabuf);
6315 rc = -ENOMEM;
6316 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
6317 "6187 DMA Alloc Failed FW logging");
6318 goto free_mem;
6319 }
James Smartd2cc9bc2018-09-10 10:30:50 -07006320 dmabuf->buffer_tag = i;
6321 list_add_tail(&dmabuf->list, &ras_fwlog->fwlog_buff_list);
6322 }
6323
6324free_mem:
6325 if (rc)
6326 lpfc_sli4_ras_dma_free(phba);
6327
6328 return rc;
6329}
6330
6331/**
6332 * lpfc_sli4_ras_mbox_cmpl: Completion handler for RAS MBX command
6333 * @phba: pointer to lpfc hba data structure.
6334 * @pmboxq: pointer to the driver internal queue element for mailbox command.
6335 *
6336 * Completion handler for driver's RAS MBX command to the device.
6337 **/
6338static void
6339lpfc_sli4_ras_mbox_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmb)
6340{
6341 MAILBOX_t *mb;
6342 union lpfc_sli4_cfg_shdr *shdr;
6343 uint32_t shdr_status, shdr_add_status;
6344 struct lpfc_ras_fwlog *ras_fwlog = &phba->ras_fwlog;
6345
6346 mb = &pmb->u.mb;
6347
6348 shdr = (union lpfc_sli4_cfg_shdr *)
6349 &pmb->u.mqe.un.ras_fwlog.header.cfg_shdr;
6350 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
6351 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
6352
6353 if (mb->mbxStatus != MBX_SUCCESS || shdr_status) {
James Smartcb349902018-11-29 16:09:27 -08006354 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
James Smartd2cc9bc2018-09-10 10:30:50 -07006355 "6188 FW LOG mailbox "
6356 "completed with status x%x add_status x%x,"
6357 " mbx status x%x\n",
6358 shdr_status, shdr_add_status, mb->mbxStatus);
James Smartcb349902018-11-29 16:09:27 -08006359
6360 ras_fwlog->ras_hwsupport = false;
James Smartd2cc9bc2018-09-10 10:30:50 -07006361 goto disable_ras;
6362 }
6363
6364 ras_fwlog->ras_active = true;
6365 mempool_free(pmb, phba->mbox_mem_pool);
6366
6367 return;
6368
6369disable_ras:
6370 /* Free RAS DMA memory */
6371 lpfc_sli4_ras_dma_free(phba);
6372 mempool_free(pmb, phba->mbox_mem_pool);
6373}
6374
6375/**
6376 * lpfc_sli4_ras_fwlog_init: Initialize memory and post RAS MBX command
6377 * @phba: pointer to lpfc hba data structure.
6378 * @fwlog_level: Logging verbosity level.
6379 * @fwlog_enable: Enable/Disable logging.
6380 *
6381 * Initialize memory and post mailbox command to enable FW logging in host
6382 * memory.
6383 **/
6384int
6385lpfc_sli4_ras_fwlog_init(struct lpfc_hba *phba,
6386 uint32_t fwlog_level,
6387 uint32_t fwlog_enable)
6388{
6389 struct lpfc_ras_fwlog *ras_fwlog = &phba->ras_fwlog;
6390 struct lpfc_mbx_set_ras_fwlog *mbx_fwlog = NULL;
6391 struct lpfc_dmabuf *dmabuf;
6392 LPFC_MBOXQ_t *mbox;
6393 uint32_t len = 0, fwlog_buffsize, fwlog_entry_count;
6394 int rc = 0;
6395
6396 fwlog_buffsize = (LPFC_RAS_MIN_BUFF_POST_SIZE *
6397 phba->cfg_ras_fwlog_buffsize);
6398 fwlog_entry_count = (fwlog_buffsize/LPFC_RAS_MAX_ENTRY_SIZE);
6399
6400 /*
6401 * If re-enabling FW logging support use earlier allocated
6402 * DMA buffers while posting MBX command.
6403 **/
6404 if (!ras_fwlog->lwpd.virt) {
6405 rc = lpfc_sli4_ras_dma_alloc(phba, fwlog_entry_count);
6406 if (rc) {
6407 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
James Smartcb349902018-11-29 16:09:27 -08006408 "6189 FW Log Memory Allocation Failed");
James Smartd2cc9bc2018-09-10 10:30:50 -07006409 return rc;
6410 }
6411 }
6412
6413 /* Setup Mailbox command */
6414 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6415 if (!mbox) {
James Smartcb349902018-11-29 16:09:27 -08006416 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd2cc9bc2018-09-10 10:30:50 -07006417 "6190 RAS MBX Alloc Failed");
6418 rc = -ENOMEM;
6419 goto mem_free;
6420 }
6421
6422 ras_fwlog->fw_loglevel = fwlog_level;
6423 len = (sizeof(struct lpfc_mbx_set_ras_fwlog) -
6424 sizeof(struct lpfc_sli4_cfg_mhdr));
6425
6426 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_LOWLEVEL,
6427 LPFC_MBOX_OPCODE_SET_DIAG_LOG_OPTION,
6428 len, LPFC_SLI4_MBX_EMBED);
6429
6430 mbx_fwlog = (struct lpfc_mbx_set_ras_fwlog *)&mbox->u.mqe.un.ras_fwlog;
6431 bf_set(lpfc_fwlog_enable, &mbx_fwlog->u.request,
6432 fwlog_enable);
6433 bf_set(lpfc_fwlog_loglvl, &mbx_fwlog->u.request,
6434 ras_fwlog->fw_loglevel);
6435 bf_set(lpfc_fwlog_buffcnt, &mbx_fwlog->u.request,
6436 ras_fwlog->fw_buffcount);
6437 bf_set(lpfc_fwlog_buffsz, &mbx_fwlog->u.request,
6438 LPFC_RAS_MAX_ENTRY_SIZE/SLI4_PAGE_SIZE);
6439
6440 /* Update DMA buffer address */
6441 list_for_each_entry(dmabuf, &ras_fwlog->fwlog_buff_list, list) {
6442 memset(dmabuf->virt, 0, LPFC_RAS_MAX_ENTRY_SIZE);
6443
6444 mbx_fwlog->u.request.buff_fwlog[dmabuf->buffer_tag].addr_lo =
6445 putPaddrLow(dmabuf->phys);
6446
6447 mbx_fwlog->u.request.buff_fwlog[dmabuf->buffer_tag].addr_hi =
6448 putPaddrHigh(dmabuf->phys);
6449 }
6450
6451 /* Update LPWD address */
6452 mbx_fwlog->u.request.lwpd.addr_lo = putPaddrLow(ras_fwlog->lwpd.phys);
6453 mbx_fwlog->u.request.lwpd.addr_hi = putPaddrHigh(ras_fwlog->lwpd.phys);
6454
6455 mbox->vport = phba->pport;
6456 mbox->mbox_cmpl = lpfc_sli4_ras_mbox_cmpl;
6457
6458 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
6459
6460 if (rc == MBX_NOT_FINISHED) {
James Smartcb349902018-11-29 16:09:27 -08006461 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6462 "6191 FW-Log Mailbox failed. "
James Smartd2cc9bc2018-09-10 10:30:50 -07006463 "status %d mbxStatus : x%x", rc,
6464 bf_get(lpfc_mqe_status, &mbox->u.mqe));
6465 mempool_free(mbox, phba->mbox_mem_pool);
6466 rc = -EIO;
6467 goto mem_free;
6468 } else
6469 rc = 0;
6470mem_free:
6471 if (rc)
6472 lpfc_sli4_ras_dma_free(phba);
6473
6474 return rc;
6475}
6476
6477/**
6478 * lpfc_sli4_ras_setup - Check if RAS supported on the adapter
6479 * @phba: Pointer to HBA context object.
6480 *
6481 * Check if RAS is supported on the adapter and initialize it.
6482 **/
6483void
6484lpfc_sli4_ras_setup(struct lpfc_hba *phba)
6485{
6486 /* Check RAS FW Log needs to be enabled or not */
6487 if (lpfc_check_fwlog_support(phba))
6488 return;
6489
6490 lpfc_sli4_ras_fwlog_init(phba, phba->cfg_ras_fwlog_level,
6491 LPFC_RAS_ENABLE_LOGGING);
6492}
6493
6494/**
James Smart6d368e52011-05-24 11:44:12 -04006495 * lpfc_sli4_alloc_resource_identifiers - Allocate all SLI4 resource extents.
6496 * @phba: Pointer to HBA context object.
6497 *
6498 * This function allocates all SLI4 resource identifiers.
6499 **/
6500int
6501lpfc_sli4_alloc_resource_identifiers(struct lpfc_hba *phba)
6502{
6503 int i, rc, error = 0;
6504 uint16_t count, base;
6505 unsigned long longs;
6506
James Smartff78d8f2011-12-13 13:21:35 -05006507 if (!phba->sli4_hba.rpi_hdrs_in_use)
6508 phba->sli4_hba.next_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart6d368e52011-05-24 11:44:12 -04006509 if (phba->sli4_hba.extents_in_use) {
6510 /*
6511 * The port supports resource extents. The XRI, VPI, VFI, RPI
6512 * resource extent count must be read and allocated before
6513 * provisioning the resource id arrays.
6514 */
6515 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
6516 LPFC_IDX_RSRC_RDY) {
6517 /*
6518 * Extent-based resources are set - the driver could
6519 * be in a port reset. Figure out if any corrective
6520 * actions need to be taken.
6521 */
6522 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
6523 LPFC_RSC_TYPE_FCOE_VFI);
6524 if (rc != 0)
6525 error++;
6526 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
6527 LPFC_RSC_TYPE_FCOE_VPI);
6528 if (rc != 0)
6529 error++;
6530 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
6531 LPFC_RSC_TYPE_FCOE_XRI);
6532 if (rc != 0)
6533 error++;
6534 rc = lpfc_sli4_chk_avail_extnt_rsrc(phba,
6535 LPFC_RSC_TYPE_FCOE_RPI);
6536 if (rc != 0)
6537 error++;
6538
6539 /*
6540 * It's possible that the number of resources
6541 * provided to this port instance changed between
6542 * resets. Detect this condition and reallocate
6543 * resources. Otherwise, there is no action.
6544 */
6545 if (error) {
6546 lpfc_printf_log(phba, KERN_INFO,
6547 LOG_MBOX | LOG_INIT,
6548 "2931 Detected extent resource "
6549 "change. Reallocating all "
6550 "extents.\n");
6551 rc = lpfc_sli4_dealloc_extent(phba,
6552 LPFC_RSC_TYPE_FCOE_VFI);
6553 rc = lpfc_sli4_dealloc_extent(phba,
6554 LPFC_RSC_TYPE_FCOE_VPI);
6555 rc = lpfc_sli4_dealloc_extent(phba,
6556 LPFC_RSC_TYPE_FCOE_XRI);
6557 rc = lpfc_sli4_dealloc_extent(phba,
6558 LPFC_RSC_TYPE_FCOE_RPI);
6559 } else
6560 return 0;
6561 }
6562
6563 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
6564 if (unlikely(rc))
6565 goto err_exit;
6566
6567 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
6568 if (unlikely(rc))
6569 goto err_exit;
6570
6571 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
6572 if (unlikely(rc))
6573 goto err_exit;
6574
6575 rc = lpfc_sli4_alloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
6576 if (unlikely(rc))
6577 goto err_exit;
6578 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
6579 LPFC_IDX_RSRC_RDY);
6580 return rc;
6581 } else {
6582 /*
6583 * The port does not support resource extents. The XRI, VPI,
6584 * VFI, RPI resource ids were determined from READ_CONFIG.
6585 * Just allocate the bitmasks and provision the resource id
6586 * arrays. If a port reset is active, the resources don't
6587 * need any action - just exit.
6588 */
6589 if (bf_get(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags) ==
James Smartff78d8f2011-12-13 13:21:35 -05006590 LPFC_IDX_RSRC_RDY) {
6591 lpfc_sli4_dealloc_resource_identifiers(phba);
6592 lpfc_sli4_remove_rpis(phba);
6593 }
James Smart6d368e52011-05-24 11:44:12 -04006594 /* RPIs. */
6595 count = phba->sli4_hba.max_cfg_param.max_rpi;
James Smart0a630c22013-01-03 15:44:09 -05006596 if (count <= 0) {
6597 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6598 "3279 Invalid provisioning of "
6599 "rpi:%d\n", count);
6600 rc = -EINVAL;
6601 goto err_exit;
6602 }
James Smart6d368e52011-05-24 11:44:12 -04006603 base = phba->sli4_hba.max_cfg_param.rpi_base;
6604 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
Kees Cook6396bb22018-06-12 14:03:40 -07006605 phba->sli4_hba.rpi_bmask = kcalloc(longs,
James Smart6d368e52011-05-24 11:44:12 -04006606 sizeof(unsigned long),
6607 GFP_KERNEL);
6608 if (unlikely(!phba->sli4_hba.rpi_bmask)) {
6609 rc = -ENOMEM;
6610 goto err_exit;
6611 }
Kees Cook6396bb22018-06-12 14:03:40 -07006612 phba->sli4_hba.rpi_ids = kcalloc(count, sizeof(uint16_t),
James Smart6d368e52011-05-24 11:44:12 -04006613 GFP_KERNEL);
6614 if (unlikely(!phba->sli4_hba.rpi_ids)) {
6615 rc = -ENOMEM;
6616 goto free_rpi_bmask;
6617 }
6618
6619 for (i = 0; i < count; i++)
6620 phba->sli4_hba.rpi_ids[i] = base + i;
6621
6622 /* VPIs. */
6623 count = phba->sli4_hba.max_cfg_param.max_vpi;
James Smart0a630c22013-01-03 15:44:09 -05006624 if (count <= 0) {
6625 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6626 "3280 Invalid provisioning of "
6627 "vpi:%d\n", count);
6628 rc = -EINVAL;
6629 goto free_rpi_ids;
6630 }
James Smart6d368e52011-05-24 11:44:12 -04006631 base = phba->sli4_hba.max_cfg_param.vpi_base;
6632 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
Kees Cook6396bb22018-06-12 14:03:40 -07006633 phba->vpi_bmask = kcalloc(longs, sizeof(unsigned long),
James Smart6d368e52011-05-24 11:44:12 -04006634 GFP_KERNEL);
6635 if (unlikely(!phba->vpi_bmask)) {
6636 rc = -ENOMEM;
6637 goto free_rpi_ids;
6638 }
Kees Cook6396bb22018-06-12 14:03:40 -07006639 phba->vpi_ids = kcalloc(count, sizeof(uint16_t),
James Smart6d368e52011-05-24 11:44:12 -04006640 GFP_KERNEL);
6641 if (unlikely(!phba->vpi_ids)) {
6642 rc = -ENOMEM;
6643 goto free_vpi_bmask;
6644 }
6645
6646 for (i = 0; i < count; i++)
6647 phba->vpi_ids[i] = base + i;
6648
6649 /* XRIs. */
6650 count = phba->sli4_hba.max_cfg_param.max_xri;
James Smart0a630c22013-01-03 15:44:09 -05006651 if (count <= 0) {
6652 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6653 "3281 Invalid provisioning of "
6654 "xri:%d\n", count);
6655 rc = -EINVAL;
6656 goto free_vpi_ids;
6657 }
James Smart6d368e52011-05-24 11:44:12 -04006658 base = phba->sli4_hba.max_cfg_param.xri_base;
6659 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
Kees Cook6396bb22018-06-12 14:03:40 -07006660 phba->sli4_hba.xri_bmask = kcalloc(longs,
James Smart6d368e52011-05-24 11:44:12 -04006661 sizeof(unsigned long),
6662 GFP_KERNEL);
6663 if (unlikely(!phba->sli4_hba.xri_bmask)) {
6664 rc = -ENOMEM;
6665 goto free_vpi_ids;
6666 }
James Smart41899be2012-03-01 22:34:19 -05006667 phba->sli4_hba.max_cfg_param.xri_used = 0;
Kees Cook6396bb22018-06-12 14:03:40 -07006668 phba->sli4_hba.xri_ids = kcalloc(count, sizeof(uint16_t),
James Smart6d368e52011-05-24 11:44:12 -04006669 GFP_KERNEL);
6670 if (unlikely(!phba->sli4_hba.xri_ids)) {
6671 rc = -ENOMEM;
6672 goto free_xri_bmask;
6673 }
6674
6675 for (i = 0; i < count; i++)
6676 phba->sli4_hba.xri_ids[i] = base + i;
6677
6678 /* VFIs. */
6679 count = phba->sli4_hba.max_cfg_param.max_vfi;
James Smart0a630c22013-01-03 15:44:09 -05006680 if (count <= 0) {
6681 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
6682 "3282 Invalid provisioning of "
6683 "vfi:%d\n", count);
6684 rc = -EINVAL;
6685 goto free_xri_ids;
6686 }
James Smart6d368e52011-05-24 11:44:12 -04006687 base = phba->sli4_hba.max_cfg_param.vfi_base;
6688 longs = (count + BITS_PER_LONG - 1) / BITS_PER_LONG;
Kees Cook6396bb22018-06-12 14:03:40 -07006689 phba->sli4_hba.vfi_bmask = kcalloc(longs,
James Smart6d368e52011-05-24 11:44:12 -04006690 sizeof(unsigned long),
6691 GFP_KERNEL);
6692 if (unlikely(!phba->sli4_hba.vfi_bmask)) {
6693 rc = -ENOMEM;
6694 goto free_xri_ids;
6695 }
Kees Cook6396bb22018-06-12 14:03:40 -07006696 phba->sli4_hba.vfi_ids = kcalloc(count, sizeof(uint16_t),
James Smart6d368e52011-05-24 11:44:12 -04006697 GFP_KERNEL);
6698 if (unlikely(!phba->sli4_hba.vfi_ids)) {
6699 rc = -ENOMEM;
6700 goto free_vfi_bmask;
6701 }
6702
6703 for (i = 0; i < count; i++)
6704 phba->sli4_hba.vfi_ids[i] = base + i;
6705
6706 /*
6707 * Mark all resources ready. An HBA reset doesn't need
6708 * to reset the initialization.
6709 */
6710 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags,
6711 LPFC_IDX_RSRC_RDY);
6712 return 0;
6713 }
6714
6715 free_vfi_bmask:
6716 kfree(phba->sli4_hba.vfi_bmask);
Roberto Sassucd60be42017-01-11 11:06:42 +01006717 phba->sli4_hba.vfi_bmask = NULL;
James Smart6d368e52011-05-24 11:44:12 -04006718 free_xri_ids:
6719 kfree(phba->sli4_hba.xri_ids);
Roberto Sassucd60be42017-01-11 11:06:42 +01006720 phba->sli4_hba.xri_ids = NULL;
James Smart6d368e52011-05-24 11:44:12 -04006721 free_xri_bmask:
6722 kfree(phba->sli4_hba.xri_bmask);
Roberto Sassucd60be42017-01-11 11:06:42 +01006723 phba->sli4_hba.xri_bmask = NULL;
James Smart6d368e52011-05-24 11:44:12 -04006724 free_vpi_ids:
6725 kfree(phba->vpi_ids);
Roberto Sassucd60be42017-01-11 11:06:42 +01006726 phba->vpi_ids = NULL;
James Smart6d368e52011-05-24 11:44:12 -04006727 free_vpi_bmask:
6728 kfree(phba->vpi_bmask);
Roberto Sassucd60be42017-01-11 11:06:42 +01006729 phba->vpi_bmask = NULL;
James Smart6d368e52011-05-24 11:44:12 -04006730 free_rpi_ids:
6731 kfree(phba->sli4_hba.rpi_ids);
Roberto Sassucd60be42017-01-11 11:06:42 +01006732 phba->sli4_hba.rpi_ids = NULL;
James Smart6d368e52011-05-24 11:44:12 -04006733 free_rpi_bmask:
6734 kfree(phba->sli4_hba.rpi_bmask);
Roberto Sassucd60be42017-01-11 11:06:42 +01006735 phba->sli4_hba.rpi_bmask = NULL;
James Smart6d368e52011-05-24 11:44:12 -04006736 err_exit:
6737 return rc;
6738}
6739
6740/**
6741 * lpfc_sli4_dealloc_resource_identifiers - Deallocate all SLI4 resource extents.
6742 * @phba: Pointer to HBA context object.
6743 *
6744 * This function allocates the number of elements for the specified
6745 * resource type.
6746 **/
6747int
6748lpfc_sli4_dealloc_resource_identifiers(struct lpfc_hba *phba)
6749{
6750 if (phba->sli4_hba.extents_in_use) {
6751 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VPI);
6752 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_RPI);
6753 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_XRI);
6754 lpfc_sli4_dealloc_extent(phba, LPFC_RSC_TYPE_FCOE_VFI);
6755 } else {
6756 kfree(phba->vpi_bmask);
James Smart16a3a202013-04-17 20:14:38 -04006757 phba->sli4_hba.max_cfg_param.vpi_used = 0;
James Smart6d368e52011-05-24 11:44:12 -04006758 kfree(phba->vpi_ids);
6759 bf_set(lpfc_vpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6760 kfree(phba->sli4_hba.xri_bmask);
6761 kfree(phba->sli4_hba.xri_ids);
James Smart6d368e52011-05-24 11:44:12 -04006762 kfree(phba->sli4_hba.vfi_bmask);
6763 kfree(phba->sli4_hba.vfi_ids);
6764 bf_set(lpfc_vfi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6765 bf_set(lpfc_idx_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
6766 }
6767
6768 return 0;
6769}
6770
6771/**
James Smartb76f2dc2011-07-22 18:37:42 -04006772 * lpfc_sli4_get_allocated_extnts - Get the port's allocated extents.
6773 * @phba: Pointer to HBA context object.
6774 * @type: The resource extent type.
6775 * @extnt_count: buffer to hold port extent count response
6776 * @extnt_size: buffer to hold port extent size response.
6777 *
6778 * This function calls the port to read the host allocated extents
6779 * for a particular type.
6780 **/
6781int
6782lpfc_sli4_get_allocated_extnts(struct lpfc_hba *phba, uint16_t type,
6783 uint16_t *extnt_cnt, uint16_t *extnt_size)
6784{
6785 bool emb;
6786 int rc = 0;
6787 uint16_t curr_blks = 0;
6788 uint32_t req_len, emb_len;
6789 uint32_t alloc_len, mbox_tmo;
6790 struct list_head *blk_list_head;
6791 struct lpfc_rsrc_blks *rsrc_blk;
6792 LPFC_MBOXQ_t *mbox;
6793 void *virtaddr = NULL;
6794 struct lpfc_mbx_nembed_rsrc_extent *n_rsrc;
6795 struct lpfc_mbx_alloc_rsrc_extents *rsrc_ext;
6796 union lpfc_sli4_cfg_shdr *shdr;
6797
6798 switch (type) {
6799 case LPFC_RSC_TYPE_FCOE_VPI:
6800 blk_list_head = &phba->lpfc_vpi_blk_list;
6801 break;
6802 case LPFC_RSC_TYPE_FCOE_XRI:
6803 blk_list_head = &phba->sli4_hba.lpfc_xri_blk_list;
6804 break;
6805 case LPFC_RSC_TYPE_FCOE_VFI:
6806 blk_list_head = &phba->sli4_hba.lpfc_vfi_blk_list;
6807 break;
6808 case LPFC_RSC_TYPE_FCOE_RPI:
6809 blk_list_head = &phba->sli4_hba.lpfc_rpi_blk_list;
6810 break;
6811 default:
6812 return -EIO;
6813 }
6814
6815 /* Count the number of extents currently allocatd for this type. */
6816 list_for_each_entry(rsrc_blk, blk_list_head, list) {
6817 if (curr_blks == 0) {
6818 /*
6819 * The GET_ALLOCATED mailbox does not return the size,
6820 * just the count. The size should be just the size
6821 * stored in the current allocated block and all sizes
6822 * for an extent type are the same so set the return
6823 * value now.
6824 */
6825 *extnt_size = rsrc_blk->rsrc_size;
6826 }
6827 curr_blks++;
6828 }
6829
James Smartb76f2dc2011-07-22 18:37:42 -04006830 /*
6831 * Calculate the size of an embedded mailbox. The uint32_t
6832 * accounts for extents-specific word.
6833 */
6834 emb_len = sizeof(MAILBOX_t) - sizeof(struct mbox_header) -
6835 sizeof(uint32_t);
6836
6837 /*
6838 * Presume the allocation and response will fit into an embedded
6839 * mailbox. If not true, reconfigure to a non-embedded mailbox.
6840 */
6841 emb = LPFC_SLI4_MBX_EMBED;
6842 req_len = emb_len;
6843 if (req_len > emb_len) {
6844 req_len = curr_blks * sizeof(uint16_t) +
6845 sizeof(union lpfc_sli4_cfg_shdr) +
6846 sizeof(uint32_t);
6847 emb = LPFC_SLI4_MBX_NEMBED;
6848 }
6849
6850 mbox = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
6851 if (!mbox)
6852 return -ENOMEM;
6853 memset(mbox, 0, sizeof(LPFC_MBOXQ_t));
6854
6855 alloc_len = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
6856 LPFC_MBOX_OPCODE_GET_ALLOC_RSRC_EXTENT,
6857 req_len, emb);
6858 if (alloc_len < req_len) {
6859 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
6860 "2983 Allocated DMA memory size (x%x) is "
6861 "less than the requested DMA memory "
6862 "size (x%x)\n", alloc_len, req_len);
6863 rc = -ENOMEM;
6864 goto err_exit;
6865 }
6866 rc = lpfc_sli4_mbox_rsrc_extent(phba, mbox, curr_blks, type, emb);
6867 if (unlikely(rc)) {
6868 rc = -EIO;
6869 goto err_exit;
6870 }
6871
6872 if (!phba->sli4_hba.intr_enable)
6873 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
6874 else {
James Smarta183a152011-10-10 21:32:43 -04006875 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smartb76f2dc2011-07-22 18:37:42 -04006876 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
6877 }
6878
6879 if (unlikely(rc)) {
6880 rc = -EIO;
6881 goto err_exit;
6882 }
6883
6884 /*
6885 * Figure out where the response is located. Then get local pointers
6886 * to the response data. The port does not guarantee to respond to
6887 * all extents counts request so update the local variable with the
6888 * allocated count from the port.
6889 */
6890 if (emb == LPFC_SLI4_MBX_EMBED) {
6891 rsrc_ext = &mbox->u.mqe.un.alloc_rsrc_extents;
6892 shdr = &rsrc_ext->header.cfg_shdr;
6893 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, &rsrc_ext->u.rsp);
6894 } else {
6895 virtaddr = mbox->sge_array->addr[0];
6896 n_rsrc = (struct lpfc_mbx_nembed_rsrc_extent *) virtaddr;
6897 shdr = &n_rsrc->cfg_shdr;
6898 *extnt_cnt = bf_get(lpfc_mbx_rsrc_cnt, n_rsrc);
6899 }
6900
6901 if (bf_get(lpfc_mbox_hdr_status, &shdr->response)) {
6902 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_INIT,
6903 "2984 Failed to read allocated resources "
6904 "for type %d - Status 0x%x Add'l Status 0x%x.\n",
6905 type,
6906 bf_get(lpfc_mbox_hdr_status, &shdr->response),
6907 bf_get(lpfc_mbox_hdr_add_status, &shdr->response));
6908 rc = -EIO;
6909 goto err_exit;
6910 }
6911 err_exit:
6912 lpfc_sli4_mbox_cmd_free(phba, mbox);
6913 return rc;
6914}
6915
6916/**
James Smart0ef69962017-04-21 16:04:50 -07006917 * lpfc_sli4_repost_sgl_list - Repost the buffers sgl pages as block
James Smart8a9d2e82012-05-09 21:16:12 -04006918 * @phba: pointer to lpfc hba data structure.
James Smart895427b2017-02-12 13:52:30 -08006919 * @pring: Pointer to driver SLI ring object.
6920 * @sgl_list: linked link of sgl buffers to post
6921 * @cnt: number of linked list buffers
James Smart8a9d2e82012-05-09 21:16:12 -04006922 *
James Smart895427b2017-02-12 13:52:30 -08006923 * This routine walks the list of buffers that have been allocated and
James Smart8a9d2e82012-05-09 21:16:12 -04006924 * repost them to the port by using SGL block post. This is needed after a
6925 * pci_function_reset/warm_start or start. It attempts to construct blocks
James Smart895427b2017-02-12 13:52:30 -08006926 * of buffer sgls which contains contiguous xris and uses the non-embedded
6927 * SGL block post mailbox commands to post them to the port. For single
James Smart8a9d2e82012-05-09 21:16:12 -04006928 * buffer sgl with non-contiguous xri, if any, it shall use embedded SGL post
6929 * mailbox command for posting.
6930 *
6931 * Returns: 0 = success, non-zero failure.
6932 **/
6933static int
James Smart895427b2017-02-12 13:52:30 -08006934lpfc_sli4_repost_sgl_list(struct lpfc_hba *phba,
6935 struct list_head *sgl_list, int cnt)
James Smart8a9d2e82012-05-09 21:16:12 -04006936{
6937 struct lpfc_sglq *sglq_entry = NULL;
6938 struct lpfc_sglq *sglq_entry_next = NULL;
6939 struct lpfc_sglq *sglq_entry_first = NULL;
James Smart895427b2017-02-12 13:52:30 -08006940 int status, total_cnt;
6941 int post_cnt = 0, num_posted = 0, block_cnt = 0;
James Smart8a9d2e82012-05-09 21:16:12 -04006942 int last_xritag = NO_XRI;
6943 LIST_HEAD(prep_sgl_list);
6944 LIST_HEAD(blck_sgl_list);
6945 LIST_HEAD(allc_sgl_list);
6946 LIST_HEAD(post_sgl_list);
6947 LIST_HEAD(free_sgl_list);
6948
James Smart38c20672013-03-01 16:37:44 -05006949 spin_lock_irq(&phba->hbalock);
James Smart895427b2017-02-12 13:52:30 -08006950 spin_lock(&phba->sli4_hba.sgl_list_lock);
6951 list_splice_init(sgl_list, &allc_sgl_list);
6952 spin_unlock(&phba->sli4_hba.sgl_list_lock);
James Smart38c20672013-03-01 16:37:44 -05006953 spin_unlock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04006954
James Smart895427b2017-02-12 13:52:30 -08006955 total_cnt = cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04006956 list_for_each_entry_safe(sglq_entry, sglq_entry_next,
6957 &allc_sgl_list, list) {
6958 list_del_init(&sglq_entry->list);
6959 block_cnt++;
6960 if ((last_xritag != NO_XRI) &&
6961 (sglq_entry->sli4_xritag != last_xritag + 1)) {
6962 /* a hole in xri block, form a sgl posting block */
6963 list_splice_init(&prep_sgl_list, &blck_sgl_list);
6964 post_cnt = block_cnt - 1;
6965 /* prepare list for next posting block */
6966 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6967 block_cnt = 1;
6968 } else {
6969 /* prepare list for next posting block */
6970 list_add_tail(&sglq_entry->list, &prep_sgl_list);
6971 /* enough sgls for non-embed sgl mbox command */
6972 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
6973 list_splice_init(&prep_sgl_list,
6974 &blck_sgl_list);
6975 post_cnt = block_cnt;
6976 block_cnt = 0;
6977 }
6978 }
6979 num_posted++;
6980
6981 /* keep track of last sgl's xritag */
6982 last_xritag = sglq_entry->sli4_xritag;
6983
James Smart895427b2017-02-12 13:52:30 -08006984 /* end of repost sgl list condition for buffers */
6985 if (num_posted == total_cnt) {
James Smart8a9d2e82012-05-09 21:16:12 -04006986 if (post_cnt == 0) {
6987 list_splice_init(&prep_sgl_list,
6988 &blck_sgl_list);
6989 post_cnt = block_cnt;
6990 } else if (block_cnt == 1) {
6991 status = lpfc_sli4_post_sgl(phba,
6992 sglq_entry->phys, 0,
6993 sglq_entry->sli4_xritag);
6994 if (!status) {
6995 /* successful, put sgl to posted list */
6996 list_add_tail(&sglq_entry->list,
6997 &post_sgl_list);
6998 } else {
6999 /* Failure, put sgl to free list */
7000 lpfc_printf_log(phba, KERN_WARNING,
7001 LOG_SLI,
James Smart895427b2017-02-12 13:52:30 -08007002 "3159 Failed to post "
James Smart8a9d2e82012-05-09 21:16:12 -04007003 "sgl, xritag:x%x\n",
7004 sglq_entry->sli4_xritag);
7005 list_add_tail(&sglq_entry->list,
7006 &free_sgl_list);
James Smart711ea882013-04-17 20:18:29 -04007007 total_cnt--;
James Smart8a9d2e82012-05-09 21:16:12 -04007008 }
7009 }
7010 }
7011
7012 /* continue until a nembed page worth of sgls */
7013 if (post_cnt == 0)
7014 continue;
7015
James Smart895427b2017-02-12 13:52:30 -08007016 /* post the buffer list sgls as a block */
7017 status = lpfc_sli4_post_sgl_list(phba, &blck_sgl_list,
7018 post_cnt);
James Smart8a9d2e82012-05-09 21:16:12 -04007019
7020 if (!status) {
7021 /* success, put sgl list to posted sgl list */
7022 list_splice_init(&blck_sgl_list, &post_sgl_list);
7023 } else {
7024 /* Failure, put sgl list to free sgl list */
7025 sglq_entry_first = list_first_entry(&blck_sgl_list,
7026 struct lpfc_sglq,
7027 list);
7028 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
James Smart895427b2017-02-12 13:52:30 -08007029 "3160 Failed to post sgl-list, "
James Smart8a9d2e82012-05-09 21:16:12 -04007030 "xritag:x%x-x%x\n",
7031 sglq_entry_first->sli4_xritag,
7032 (sglq_entry_first->sli4_xritag +
7033 post_cnt - 1));
7034 list_splice_init(&blck_sgl_list, &free_sgl_list);
James Smart711ea882013-04-17 20:18:29 -04007035 total_cnt -= post_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04007036 }
7037
7038 /* don't reset xirtag due to hole in xri block */
7039 if (block_cnt == 0)
7040 last_xritag = NO_XRI;
7041
James Smart895427b2017-02-12 13:52:30 -08007042 /* reset sgl post count for next round of posting */
James Smart8a9d2e82012-05-09 21:16:12 -04007043 post_cnt = 0;
7044 }
7045
James Smart895427b2017-02-12 13:52:30 -08007046 /* free the sgls failed to post */
James Smart8a9d2e82012-05-09 21:16:12 -04007047 lpfc_free_sgl_list(phba, &free_sgl_list);
7048
James Smart895427b2017-02-12 13:52:30 -08007049 /* push sgls posted to the available list */
James Smart8a9d2e82012-05-09 21:16:12 -04007050 if (!list_empty(&post_sgl_list)) {
James Smart38c20672013-03-01 16:37:44 -05007051 spin_lock_irq(&phba->hbalock);
James Smart895427b2017-02-12 13:52:30 -08007052 spin_lock(&phba->sli4_hba.sgl_list_lock);
7053 list_splice_init(&post_sgl_list, sgl_list);
7054 spin_unlock(&phba->sli4_hba.sgl_list_lock);
James Smart38c20672013-03-01 16:37:44 -05007055 spin_unlock_irq(&phba->hbalock);
James Smart8a9d2e82012-05-09 21:16:12 -04007056 } else {
7057 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart895427b2017-02-12 13:52:30 -08007058 "3161 Failure to post sgl to port.\n");
James Smart8a9d2e82012-05-09 21:16:12 -04007059 return -EIO;
7060 }
James Smart895427b2017-02-12 13:52:30 -08007061
7062 /* return the number of XRIs actually posted */
7063 return total_cnt;
James Smart8a9d2e82012-05-09 21:16:12 -04007064}
7065
James Smart0794d602019-01-28 11:14:19 -08007066/**
James Smart5e5b5112019-01-28 11:14:22 -08007067 * lpfc_sli4_repost_io_sgl_list - Repost all the allocated nvme buffer sgls
James Smart0794d602019-01-28 11:14:19 -08007068 * @phba: pointer to lpfc hba data structure.
7069 *
7070 * This routine walks the list of nvme buffers that have been allocated and
7071 * repost them to the port by using SGL block post. This is needed after a
7072 * pci_function_reset/warm_start or start. The lpfc_hba_down_post_s4 routine
7073 * is responsible for moving all nvme buffers on the lpfc_abts_nvme_sgl_list
James Smart5e5b5112019-01-28 11:14:22 -08007074 * to the lpfc_io_buf_list. If the repost fails, reject all nvme buffers.
James Smart0794d602019-01-28 11:14:19 -08007075 *
7076 * Returns: 0 = success, non-zero failure.
7077 **/
Bart Van Assche3999df72019-03-28 11:06:16 -07007078static int
James Smart5e5b5112019-01-28 11:14:22 -08007079lpfc_sli4_repost_io_sgl_list(struct lpfc_hba *phba)
James Smart0794d602019-01-28 11:14:19 -08007080{
7081 LIST_HEAD(post_nblist);
7082 int num_posted, rc = 0;
7083
7084 /* get all NVME buffers need to repost to a local list */
James Smart5e5b5112019-01-28 11:14:22 -08007085 lpfc_io_buf_flush(phba, &post_nblist);
James Smart0794d602019-01-28 11:14:19 -08007086
7087 /* post the list of nvme buffer sgls to port if available */
7088 if (!list_empty(&post_nblist)) {
James Smart5e5b5112019-01-28 11:14:22 -08007089 num_posted = lpfc_sli4_post_io_sgl_list(
7090 phba, &post_nblist, phba->sli4_hba.io_xri_cnt);
James Smart0794d602019-01-28 11:14:19 -08007091 /* failed to post any nvme buffer, return error */
7092 if (num_posted == 0)
7093 rc = -EIO;
7094 }
7095 return rc;
7096}
7097
Bart Van Assche3999df72019-03-28 11:06:16 -07007098static void
James Smart61bda8f2016-10-13 15:06:05 -07007099lpfc_set_host_data(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
7100{
7101 uint32_t len;
7102
7103 len = sizeof(struct lpfc_mbx_set_host_data) -
7104 sizeof(struct lpfc_sli4_cfg_mhdr);
7105 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
7106 LPFC_MBOX_OPCODE_SET_HOST_DATA, len,
7107 LPFC_SLI4_MBX_EMBED);
7108
7109 mbox->u.mqe.un.set_host_data.param_id = LPFC_SET_HOST_OS_DRIVER_VERSION;
James Smartb2fd1032016-12-19 15:07:21 -08007110 mbox->u.mqe.un.set_host_data.param_len =
7111 LPFC_HOST_OS_DRIVER_VERSION_SIZE;
James Smart61bda8f2016-10-13 15:06:05 -07007112 snprintf(mbox->u.mqe.un.set_host_data.data,
7113 LPFC_HOST_OS_DRIVER_VERSION_SIZE,
7114 "Linux %s v"LPFC_DRIVER_VERSION,
7115 (phba->hba_flag & HBA_FCOE_MODE) ? "FCoE" : "FC");
7116}
7117
James Smarta8cf5df2017-05-15 15:20:46 -07007118int
James Smart6c621a22017-05-15 15:20:45 -07007119lpfc_post_rq_buffer(struct lpfc_hba *phba, struct lpfc_queue *hrq,
James Smarta8cf5df2017-05-15 15:20:46 -07007120 struct lpfc_queue *drq, int count, int idx)
James Smart6c621a22017-05-15 15:20:45 -07007121{
7122 int rc, i;
7123 struct lpfc_rqe hrqe;
7124 struct lpfc_rqe drqe;
7125 struct lpfc_rqb *rqbp;
James Smart411de512018-01-30 15:58:52 -08007126 unsigned long flags;
James Smart6c621a22017-05-15 15:20:45 -07007127 struct rqb_dmabuf *rqb_buffer;
7128 LIST_HEAD(rqb_buf_list);
7129
James Smart411de512018-01-30 15:58:52 -08007130 spin_lock_irqsave(&phba->hbalock, flags);
James Smart6c621a22017-05-15 15:20:45 -07007131 rqbp = hrq->rqbp;
7132 for (i = 0; i < count; i++) {
7133 /* IF RQ is already full, don't bother */
7134 if (rqbp->buffer_count + i >= rqbp->entry_count - 1)
7135 break;
7136 rqb_buffer = rqbp->rqb_alloc_buffer(phba);
7137 if (!rqb_buffer)
7138 break;
7139 rqb_buffer->hrq = hrq;
7140 rqb_buffer->drq = drq;
James Smarta8cf5df2017-05-15 15:20:46 -07007141 rqb_buffer->idx = idx;
James Smart6c621a22017-05-15 15:20:45 -07007142 list_add_tail(&rqb_buffer->hbuf.list, &rqb_buf_list);
7143 }
7144 while (!list_empty(&rqb_buf_list)) {
7145 list_remove_head(&rqb_buf_list, rqb_buffer, struct rqb_dmabuf,
7146 hbuf.list);
7147
7148 hrqe.address_lo = putPaddrLow(rqb_buffer->hbuf.phys);
7149 hrqe.address_hi = putPaddrHigh(rqb_buffer->hbuf.phys);
7150 drqe.address_lo = putPaddrLow(rqb_buffer->dbuf.phys);
7151 drqe.address_hi = putPaddrHigh(rqb_buffer->dbuf.phys);
7152 rc = lpfc_sli4_rq_put(hrq, drq, &hrqe, &drqe);
7153 if (rc < 0) {
James Smart411de512018-01-30 15:58:52 -08007154 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7155 "6421 Cannot post to HRQ %d: %x %x %x "
7156 "DRQ %x %x\n",
7157 hrq->queue_id,
7158 hrq->host_index,
7159 hrq->hba_index,
7160 hrq->entry_count,
7161 drq->host_index,
7162 drq->hba_index);
James Smart6c621a22017-05-15 15:20:45 -07007163 rqbp->rqb_free_buffer(phba, rqb_buffer);
7164 } else {
7165 list_add_tail(&rqb_buffer->hbuf.list,
7166 &rqbp->rqb_buffer_list);
7167 rqbp->buffer_count++;
7168 }
7169 }
James Smart411de512018-01-30 15:58:52 -08007170 spin_unlock_irqrestore(&phba->hbalock, flags);
James Smart6c621a22017-05-15 15:20:45 -07007171 return 1;
7172}
7173
James Smart8a9d2e82012-05-09 21:16:12 -04007174/**
Masahiro Yamada183b8022017-02-27 14:29:20 -08007175 * lpfc_sli4_hba_setup - SLI4 device initialization PCI function
James Smartda0436e2009-05-22 14:51:39 -04007176 * @phba: Pointer to HBA context object.
7177 *
Masahiro Yamada183b8022017-02-27 14:29:20 -08007178 * This function is the main SLI4 device initialization PCI function. This
7179 * function is called by the HBA initialization code, HBA reset code and
James Smartda0436e2009-05-22 14:51:39 -04007180 * HBA error attention handler code. Caller is not required to hold any
7181 * locks.
7182 **/
7183int
7184lpfc_sli4_hba_setup(struct lpfc_hba *phba)
7185{
James Smartc4908502019-01-28 11:14:28 -08007186 int rc, i, cnt, len;
James Smartda0436e2009-05-22 14:51:39 -04007187 LPFC_MBOXQ_t *mboxq;
7188 struct lpfc_mqe *mqe;
7189 uint8_t *vpd;
7190 uint32_t vpd_size;
7191 uint32_t ftr_rsp = 0;
7192 struct Scsi_Host *shost = lpfc_shost_from_vport(phba->pport);
7193 struct lpfc_vport *vport = phba->pport;
7194 struct lpfc_dmabuf *mp;
James Smart2d7dbc42017-02-12 13:52:35 -08007195 struct lpfc_rqb *rqbp;
James Smartda0436e2009-05-22 14:51:39 -04007196
7197 /* Perform a PCI function reset to start from clean */
7198 rc = lpfc_pci_function_reset(phba);
7199 if (unlikely(rc))
7200 return -ENODEV;
7201
7202 /* Check the HBA Host Status Register for readyness */
7203 rc = lpfc_sli4_post_status_check(phba);
7204 if (unlikely(rc))
7205 return -ENODEV;
7206 else {
7207 spin_lock_irq(&phba->hbalock);
7208 phba->sli.sli_flag |= LPFC_SLI_ACTIVE;
7209 spin_unlock_irq(&phba->hbalock);
7210 }
7211
7212 /*
7213 * Allocate a single mailbox container for initializing the
7214 * port.
7215 */
7216 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
7217 if (!mboxq)
7218 return -ENOMEM;
7219
James Smartda0436e2009-05-22 14:51:39 -04007220 /* Issue READ_REV to collect vpd and FW information. */
James Smart49198b32010-04-06 15:04:33 -04007221 vpd_size = SLI4_PAGE_SIZE;
James Smartda0436e2009-05-22 14:51:39 -04007222 vpd = kzalloc(vpd_size, GFP_KERNEL);
7223 if (!vpd) {
7224 rc = -ENOMEM;
7225 goto out_free_mbox;
7226 }
7227
7228 rc = lpfc_sli4_read_rev(phba, mboxq, vpd, &vpd_size);
James Smart76a95d72010-11-20 23:11:48 -05007229 if (unlikely(rc)) {
7230 kfree(vpd);
7231 goto out_free_mbox;
7232 }
James Smart572709e2013-07-15 18:32:43 -04007233
James Smartda0436e2009-05-22 14:51:39 -04007234 mqe = &mboxq->u.mqe;
James Smartf1126682009-06-10 17:22:44 -04007235 phba->sli_rev = bf_get(lpfc_mbx_rd_rev_sli_lvl, &mqe->un.read_rev);
James Smartb5c53952016-03-31 14:12:30 -07007236 if (bf_get(lpfc_mbx_rd_rev_fcoe, &mqe->un.read_rev)) {
James Smart76a95d72010-11-20 23:11:48 -05007237 phba->hba_flag |= HBA_FCOE_MODE;
James Smartb5c53952016-03-31 14:12:30 -07007238 phba->fcp_embed_io = 0; /* SLI4 FC support only */
7239 } else {
James Smart76a95d72010-11-20 23:11:48 -05007240 phba->hba_flag &= ~HBA_FCOE_MODE;
James Smartb5c53952016-03-31 14:12:30 -07007241 }
James Smart45ed1192009-10-02 15:17:02 -04007242
7243 if (bf_get(lpfc_mbx_rd_rev_cee_ver, &mqe->un.read_rev) ==
7244 LPFC_DCBX_CEE_MODE)
7245 phba->hba_flag |= HBA_FIP_SUPPORT;
7246 else
7247 phba->hba_flag &= ~HBA_FIP_SUPPORT;
7248
James Smartc00f62e2019-08-14 16:57:11 -07007249 phba->hba_flag &= ~HBA_IOQ_FLUSH;
James Smart4f2e66c2012-05-09 21:17:07 -04007250
James Smartc31098c2011-04-16 11:03:33 -04007251 if (phba->sli_rev != LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -04007252 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7253 "0376 READ_REV Error. SLI Level %d "
7254 "FCoE enabled %d\n",
James Smart76a95d72010-11-20 23:11:48 -05007255 phba->sli_rev, phba->hba_flag & HBA_FCOE_MODE);
James Smartda0436e2009-05-22 14:51:39 -04007256 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05007257 kfree(vpd);
7258 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04007259 }
James Smartcd1c8302011-10-10 21:33:25 -04007260
7261 /*
James Smartff78d8f2011-12-13 13:21:35 -05007262 * Continue initialization with default values even if driver failed
7263 * to read FCoE param config regions, only read parameters if the
7264 * board is FCoE
7265 */
7266 if (phba->hba_flag & HBA_FCOE_MODE &&
7267 lpfc_sli4_read_fcoe_params(phba))
7268 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_INIT,
7269 "2570 Failed to read FCoE parameters\n");
7270
7271 /*
James Smartcd1c8302011-10-10 21:33:25 -04007272 * Retrieve sli4 device physical port name, failure of doing it
7273 * is considered as non-fatal.
7274 */
7275 rc = lpfc_sli4_retrieve_pport_name(phba);
7276 if (!rc)
7277 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7278 "3080 Successful retrieving SLI4 device "
7279 "physical port name: %s.\n", phba->Port);
7280
James Smartb3b4f3e2019-03-12 16:30:23 -07007281 rc = lpfc_sli4_get_ctl_attr(phba);
7282 if (!rc)
7283 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7284 "8351 Successful retrieving SLI4 device "
7285 "CTL ATTR\n");
7286
James Smartda0436e2009-05-22 14:51:39 -04007287 /*
7288 * Evaluate the read rev and vpd data. Populate the driver
7289 * state with the results. If this routine fails, the failure
7290 * is not fatal as the driver will use generic values.
7291 */
7292 rc = lpfc_parse_vpd(phba, vpd, vpd_size);
7293 if (unlikely(!rc)) {
7294 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7295 "0377 Error %d parsing vpd. "
7296 "Using defaults.\n", rc);
7297 rc = 0;
7298 }
James Smart76a95d72010-11-20 23:11:48 -05007299 kfree(vpd);
James Smartda0436e2009-05-22 14:51:39 -04007300
James Smartf1126682009-06-10 17:22:44 -04007301 /* Save information as VPD data */
7302 phba->vpd.rev.biuRev = mqe->un.read_rev.first_hw_rev;
7303 phba->vpd.rev.smRev = mqe->un.read_rev.second_hw_rev;
James Smart4e565cf2018-02-22 08:18:50 -08007304
7305 /*
7306 * This is because first G7 ASIC doesn't support the standard
7307 * 0x5a NVME cmd descriptor type/subtype
7308 */
7309 if ((bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
7310 LPFC_SLI_INTF_IF_TYPE_6) &&
7311 (phba->vpd.rev.biuRev == LPFC_G7_ASIC_1) &&
7312 (phba->vpd.rev.smRev == 0) &&
7313 (phba->cfg_nvme_embed_cmd == 1))
7314 phba->cfg_nvme_embed_cmd = 0;
7315
James Smartf1126682009-06-10 17:22:44 -04007316 phba->vpd.rev.endecRev = mqe->un.read_rev.third_hw_rev;
7317 phba->vpd.rev.fcphHigh = bf_get(lpfc_mbx_rd_rev_fcph_high,
7318 &mqe->un.read_rev);
7319 phba->vpd.rev.fcphLow = bf_get(lpfc_mbx_rd_rev_fcph_low,
7320 &mqe->un.read_rev);
7321 phba->vpd.rev.feaLevelHigh = bf_get(lpfc_mbx_rd_rev_ftr_lvl_high,
7322 &mqe->un.read_rev);
7323 phba->vpd.rev.feaLevelLow = bf_get(lpfc_mbx_rd_rev_ftr_lvl_low,
7324 &mqe->un.read_rev);
7325 phba->vpd.rev.sli1FwRev = mqe->un.read_rev.fw_id_rev;
7326 memcpy(phba->vpd.rev.sli1FwName, mqe->un.read_rev.fw_name, 16);
7327 phba->vpd.rev.sli2FwRev = mqe->un.read_rev.ulp_fw_id_rev;
7328 memcpy(phba->vpd.rev.sli2FwName, mqe->un.read_rev.ulp_fw_name, 16);
7329 phba->vpd.rev.opFwRev = mqe->un.read_rev.fw_id_rev;
7330 memcpy(phba->vpd.rev.opFwName, mqe->un.read_rev.fw_name, 16);
7331 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
7332 "(%d):0380 READ_REV Status x%x "
7333 "fw_rev:%s fcphHi:%x fcphLo:%x flHi:%x flLo:%x\n",
7334 mboxq->vport ? mboxq->vport->vpi : 0,
7335 bf_get(lpfc_mqe_status, mqe),
7336 phba->vpd.rev.opFwName,
7337 phba->vpd.rev.fcphHigh, phba->vpd.rev.fcphLow,
7338 phba->vpd.rev.feaLevelHigh, phba->vpd.rev.feaLevelLow);
James Smartda0436e2009-05-22 14:51:39 -04007339
James Smart572709e2013-07-15 18:32:43 -04007340 /* Reset the DFT_LUN_Q_DEPTH to (max xri >> 3) */
7341 rc = (phba->sli4_hba.max_cfg_param.max_xri >> 3);
7342 if (phba->pport->cfg_lun_queue_depth > rc) {
7343 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
7344 "3362 LUN queue depth changed from %d to %d\n",
7345 phba->pport->cfg_lun_queue_depth, rc);
7346 phba->pport->cfg_lun_queue_depth = rc;
7347 }
7348
James Smart65791f12016-07-06 12:35:56 -07007349 if (bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf) ==
James Smart7bdedb32016-07-06 12:36:00 -07007350 LPFC_SLI_INTF_IF_TYPE_0) {
7351 lpfc_set_features(phba, mboxq, LPFC_SET_UE_RECOVERY);
7352 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7353 if (rc == MBX_SUCCESS) {
7354 phba->hba_flag |= HBA_RECOVERABLE_UE;
7355 /* Set 1Sec interval to detect UE */
7356 phba->eratt_poll_interval = 1;
7357 phba->sli4_hba.ue_to_sr = bf_get(
7358 lpfc_mbx_set_feature_UESR,
7359 &mboxq->u.mqe.un.set_feature);
7360 phba->sli4_hba.ue_to_rp = bf_get(
7361 lpfc_mbx_set_feature_UERP,
7362 &mboxq->u.mqe.un.set_feature);
7363 }
7364 }
7365
7366 if (phba->cfg_enable_mds_diags && phba->mds_diags_support) {
7367 /* Enable MDS Diagnostics only if the SLI Port supports it */
7368 lpfc_set_features(phba, mboxq, LPFC_SET_MDS_DIAGS);
7369 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7370 if (rc != MBX_SUCCESS)
7371 phba->mds_diags_support = 0;
7372 }
James Smart572709e2013-07-15 18:32:43 -04007373
James Smartda0436e2009-05-22 14:51:39 -04007374 /*
7375 * Discover the port's supported feature set and match it against the
7376 * hosts requests.
7377 */
7378 lpfc_request_features(phba, mboxq);
7379 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7380 if (unlikely(rc)) {
7381 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05007382 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04007383 }
7384
7385 /*
7386 * The port must support FCP initiator mode as this is the
7387 * only mode running in the host.
7388 */
7389 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_fcpi, &mqe->un.req_ftrs))) {
7390 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7391 "0378 No support for fcpi mode.\n");
7392 ftr_rsp++;
7393 }
James Smart0bc2b7c2018-02-22 08:18:48 -08007394
7395 /* Performance Hints are ONLY for FCoE */
7396 if (phba->hba_flag & HBA_FCOE_MODE) {
7397 if (bf_get(lpfc_mbx_rq_ftr_rsp_perfh, &mqe->un.req_ftrs))
7398 phba->sli3_options |= LPFC_SLI4_PERFH_ENABLED;
7399 else
7400 phba->sli3_options &= ~LPFC_SLI4_PERFH_ENABLED;
7401 }
7402
James Smartda0436e2009-05-22 14:51:39 -04007403 /*
7404 * If the port cannot support the host's requested features
7405 * then turn off the global config parameters to disable the
7406 * feature in the driver. This is not a fatal error.
7407 */
James Smartf44ac122018-03-05 12:04:08 -08007408 if (phba->sli3_options & LPFC_SLI3_BG_ENABLED) {
7409 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs))) {
7410 phba->cfg_enable_bg = 0;
7411 phba->sli3_options &= ~LPFC_SLI3_BG_ENABLED;
James Smartbf086112011-08-21 21:48:13 -04007412 ftr_rsp++;
James Smartf44ac122018-03-05 12:04:08 -08007413 }
James Smartbf086112011-08-21 21:48:13 -04007414 }
James Smartda0436e2009-05-22 14:51:39 -04007415
7416 if (phba->max_vpi && phba->cfg_enable_npiv &&
7417 !(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
7418 ftr_rsp++;
7419
7420 if (ftr_rsp) {
7421 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7422 "0379 Feature Mismatch Data: x%08x %08x "
7423 "x%x x%x x%x\n", mqe->un.req_ftrs.word2,
7424 mqe->un.req_ftrs.word3, phba->cfg_enable_bg,
7425 phba->cfg_enable_npiv, phba->max_vpi);
7426 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_dif, &mqe->un.req_ftrs)))
7427 phba->cfg_enable_bg = 0;
7428 if (!(bf_get(lpfc_mbx_rq_ftr_rsp_npiv, &mqe->un.req_ftrs)))
7429 phba->cfg_enable_npiv = 0;
7430 }
7431
7432 /* These SLI3 features are assumed in SLI4 */
7433 spin_lock_irq(&phba->hbalock);
7434 phba->sli3_options |= (LPFC_SLI3_NPIV_ENABLED | LPFC_SLI3_HBQ_ENABLED);
7435 spin_unlock_irq(&phba->hbalock);
7436
James Smart6d368e52011-05-24 11:44:12 -04007437 /*
7438 * Allocate all resources (xri,rpi,vpi,vfi) now. Subsequent
7439 * calls depends on these resources to complete port setup.
7440 */
7441 rc = lpfc_sli4_alloc_resource_identifiers(phba);
7442 if (rc) {
7443 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7444 "2920 Failed to alloc Resource IDs "
7445 "rc = x%x\n", rc);
7446 goto out_free_mbox;
7447 }
7448
James Smart61bda8f2016-10-13 15:06:05 -07007449 lpfc_set_host_data(phba, mboxq);
7450
7451 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7452 if (rc) {
7453 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
7454 "2134 Failed to set host os driver version %x",
7455 rc);
7456 }
7457
James Smartda0436e2009-05-22 14:51:39 -04007458 /* Read the port's service parameters. */
James Smart9f1177a2010-02-26 14:12:57 -05007459 rc = lpfc_read_sparam(phba, mboxq, vport->vpi);
7460 if (rc) {
7461 phba->link_state = LPFC_HBA_ERROR;
7462 rc = -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -05007463 goto out_free_mbox;
James Smart9f1177a2010-02-26 14:12:57 -05007464 }
7465
James Smartda0436e2009-05-22 14:51:39 -04007466 mboxq->vport = vport;
7467 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart3e1f0712018-11-29 16:09:29 -08007468 mp = (struct lpfc_dmabuf *)mboxq->ctx_buf;
James Smartda0436e2009-05-22 14:51:39 -04007469 if (rc == MBX_SUCCESS) {
7470 memcpy(&vport->fc_sparam, mp->virt, sizeof(struct serv_parm));
7471 rc = 0;
7472 }
7473
7474 /*
7475 * This memory was allocated by the lpfc_read_sparam routine. Release
7476 * it to the mbuf pool.
7477 */
7478 lpfc_mbuf_free(phba, mp->virt, mp->phys);
7479 kfree(mp);
James Smart3e1f0712018-11-29 16:09:29 -08007480 mboxq->ctx_buf = NULL;
James Smartda0436e2009-05-22 14:51:39 -04007481 if (unlikely(rc)) {
7482 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7483 "0382 READ_SPARAM command failed "
7484 "status %d, mbxStatus x%x\n",
7485 rc, bf_get(lpfc_mqe_status, mqe));
7486 phba->link_state = LPFC_HBA_ERROR;
7487 rc = -EIO;
James Smart76a95d72010-11-20 23:11:48 -05007488 goto out_free_mbox;
James Smartda0436e2009-05-22 14:51:39 -04007489 }
7490
James Smart05580562011-05-24 11:40:48 -04007491 lpfc_update_vport_wwn(vport);
James Smartda0436e2009-05-22 14:51:39 -04007492
7493 /* Update the fc_host data structures with new wwn. */
7494 fc_host_node_name(shost) = wwn_to_u64(vport->fc_nodename.u.wwn);
7495 fc_host_port_name(shost) = wwn_to_u64(vport->fc_portname.u.wwn);
7496
James Smart895427b2017-02-12 13:52:30 -08007497 /* Create all the SLI4 queues */
7498 rc = lpfc_sli4_queue_create(phba);
7499 if (rc) {
7500 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
7501 "3089 Failed to allocate queues\n");
7502 rc = -ENODEV;
7503 goto out_free_mbox;
7504 }
7505 /* Set up all the queues to the device */
7506 rc = lpfc_sli4_queue_setup(phba);
7507 if (unlikely(rc)) {
7508 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7509 "0381 Error %d during queue setup.\n ", rc);
7510 goto out_stop_timers;
7511 }
7512 /* Initialize the driver internal SLI layer lists. */
7513 lpfc_sli4_setup(phba);
7514 lpfc_sli4_queue_init(phba);
7515
7516 /* update host els xri-sgl sizes and mappings */
7517 rc = lpfc_sli4_els_sgl_update(phba);
James Smart8a9d2e82012-05-09 21:16:12 -04007518 if (unlikely(rc)) {
7519 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7520 "1400 Failed to update xri-sgl size and "
7521 "mapping: %d\n", rc);
James Smart895427b2017-02-12 13:52:30 -08007522 goto out_destroy_queue;
James Smartda0436e2009-05-22 14:51:39 -04007523 }
7524
James Smart8a9d2e82012-05-09 21:16:12 -04007525 /* register the els sgl pool to the port */
James Smart895427b2017-02-12 13:52:30 -08007526 rc = lpfc_sli4_repost_sgl_list(phba, &phba->sli4_hba.lpfc_els_sgl_list,
7527 phba->sli4_hba.els_xri_cnt);
7528 if (unlikely(rc < 0)) {
James Smart8a9d2e82012-05-09 21:16:12 -04007529 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7530 "0582 Error %d during els sgl post "
7531 "operation\n", rc);
7532 rc = -ENODEV;
James Smart895427b2017-02-12 13:52:30 -08007533 goto out_destroy_queue;
7534 }
7535 phba->sli4_hba.els_xri_cnt = rc;
7536
James Smartf358dd02017-02-12 13:52:34 -08007537 if (phba->nvmet_support) {
7538 /* update host nvmet xri-sgl sizes and mappings */
7539 rc = lpfc_sli4_nvmet_sgl_update(phba);
7540 if (unlikely(rc)) {
7541 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7542 "6308 Failed to update nvmet-sgl size "
7543 "and mapping: %d\n", rc);
7544 goto out_destroy_queue;
7545 }
7546
7547 /* register the nvmet sgl pool to the port */
7548 rc = lpfc_sli4_repost_sgl_list(
7549 phba,
7550 &phba->sli4_hba.lpfc_nvmet_sgl_list,
7551 phba->sli4_hba.nvmet_xri_cnt);
7552 if (unlikely(rc < 0)) {
7553 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7554 "3117 Error %d during nvmet "
7555 "sgl post\n", rc);
7556 rc = -ENODEV;
7557 goto out_destroy_queue;
7558 }
7559 phba->sli4_hba.nvmet_xri_cnt = rc;
James Smart6c621a22017-05-15 15:20:45 -07007560
James Smarta5f73372019-09-21 20:58:50 -07007561 /* We allocate an iocbq for every receive context SGL.
7562 * The additional allocation is for abort and ls handling.
7563 */
7564 cnt = phba->sli4_hba.nvmet_xri_cnt +
7565 phba->sli4_hba.max_cfg_param.max_xri;
James Smartf358dd02017-02-12 13:52:34 -08007566 } else {
James Smart0794d602019-01-28 11:14:19 -08007567 /* update host common xri-sgl sizes and mappings */
James Smart5e5b5112019-01-28 11:14:22 -08007568 rc = lpfc_sli4_io_sgl_update(phba);
James Smart895427b2017-02-12 13:52:30 -08007569 if (unlikely(rc)) {
7570 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7571 "6082 Failed to update nvme-sgl size "
7572 "and mapping: %d\n", rc);
7573 goto out_destroy_queue;
7574 }
James Smart6c621a22017-05-15 15:20:45 -07007575
James Smart0794d602019-01-28 11:14:19 -08007576 /* register the allocated common sgl pool to the port */
James Smart5e5b5112019-01-28 11:14:22 -08007577 rc = lpfc_sli4_repost_io_sgl_list(phba);
James Smart0794d602019-01-28 11:14:19 -08007578 if (unlikely(rc)) {
7579 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7580 "6116 Error %d during nvme sgl post "
7581 "operation\n", rc);
7582 /* Some NVME buffers were moved to abort nvme list */
7583 /* A pci function reset will repost them */
7584 rc = -ENODEV;
7585 goto out_destroy_queue;
7586 }
James Smarta5f73372019-09-21 20:58:50 -07007587 /* Each lpfc_io_buf job structure has an iocbq element.
7588 * This cnt provides for abort, els, ct and ls requests.
7589 */
7590 cnt = phba->sli4_hba.max_cfg_param.max_xri;
James Smart11e644e2017-06-15 22:56:48 -07007591 }
7592
7593 if (!phba->sli.iocbq_lookup) {
James Smart6c621a22017-05-15 15:20:45 -07007594 /* Initialize and populate the iocb list per host */
7595 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta5f73372019-09-21 20:58:50 -07007596 "2821 initialize iocb list with %d entries\n",
7597 cnt);
James Smart6c621a22017-05-15 15:20:45 -07007598 rc = lpfc_init_iocb_list(phba, cnt);
7599 if (rc) {
7600 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart11e644e2017-06-15 22:56:48 -07007601 "1413 Failed to init iocb list.\n");
James Smart6c621a22017-05-15 15:20:45 -07007602 goto out_destroy_queue;
7603 }
James Smart8a9d2e82012-05-09 21:16:12 -04007604 }
7605
James Smart11e644e2017-06-15 22:56:48 -07007606 if (phba->nvmet_support)
7607 lpfc_nvmet_create_targetport(phba);
7608
James Smart2d7dbc42017-02-12 13:52:35 -08007609 if (phba->nvmet_support && phba->cfg_nvmet_mrq) {
James Smart2d7dbc42017-02-12 13:52:35 -08007610 /* Post initial buffers to all RQs created */
7611 for (i = 0; i < phba->cfg_nvmet_mrq; i++) {
7612 rqbp = phba->sli4_hba.nvmet_mrq_hdr[i]->rqbp;
7613 INIT_LIST_HEAD(&rqbp->rqb_buffer_list);
7614 rqbp->rqb_alloc_buffer = lpfc_sli4_nvmet_alloc;
7615 rqbp->rqb_free_buffer = lpfc_sli4_nvmet_free;
James Smart61f3d4b2017-05-15 15:20:41 -07007616 rqbp->entry_count = LPFC_NVMET_RQE_DEF_COUNT;
James Smart2d7dbc42017-02-12 13:52:35 -08007617 rqbp->buffer_count = 0;
7618
James Smart2d7dbc42017-02-12 13:52:35 -08007619 lpfc_post_rq_buffer(
7620 phba, phba->sli4_hba.nvmet_mrq_hdr[i],
7621 phba->sli4_hba.nvmet_mrq_data[i],
James Smart2448e482018-04-09 14:24:24 -07007622 phba->cfg_nvmet_mrq_post, i);
James Smart2d7dbc42017-02-12 13:52:35 -08007623 }
7624 }
7625
James Smartda0436e2009-05-22 14:51:39 -04007626 /* Post the rpi header region to the device. */
7627 rc = lpfc_sli4_post_all_rpi_hdrs(phba);
7628 if (unlikely(rc)) {
7629 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
7630 "0393 Error %d during rpi post operation\n",
7631 rc);
7632 rc = -ENODEV;
James Smart895427b2017-02-12 13:52:30 -08007633 goto out_destroy_queue;
James Smartda0436e2009-05-22 14:51:39 -04007634 }
James Smart97f2ecf2012-03-01 22:35:23 -05007635 lpfc_sli4_node_prep(phba);
James Smartda0436e2009-05-22 14:51:39 -04007636
James Smart895427b2017-02-12 13:52:30 -08007637 if (!(phba->hba_flag & HBA_FCOE_MODE)) {
James Smart2d7dbc42017-02-12 13:52:35 -08007638 if ((phba->nvmet_support == 0) || (phba->cfg_nvmet_mrq == 1)) {
James Smart895427b2017-02-12 13:52:30 -08007639 /*
7640 * The FC Port needs to register FCFI (index 0)
7641 */
7642 lpfc_reg_fcfi(phba, mboxq);
7643 mboxq->vport = phba->pport;
7644 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7645 if (rc != MBX_SUCCESS)
7646 goto out_unset_queue;
7647 rc = 0;
7648 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_fcfi,
7649 &mboxq->u.mqe.un.reg_fcfi);
James Smart2d7dbc42017-02-12 13:52:35 -08007650 } else {
7651 /* We are a NVME Target mode with MRQ > 1 */
7652
7653 /* First register the FCFI */
7654 lpfc_reg_fcfi_mrq(phba, mboxq, 0);
7655 mboxq->vport = phba->pport;
7656 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7657 if (rc != MBX_SUCCESS)
7658 goto out_unset_queue;
7659 rc = 0;
7660 phba->fcf.fcfi = bf_get(lpfc_reg_fcfi_mrq_fcfi,
7661 &mboxq->u.mqe.un.reg_fcfi_mrq);
7662
7663 /* Next register the MRQs */
7664 lpfc_reg_fcfi_mrq(phba, mboxq, 1);
7665 mboxq->vport = phba->pport;
7666 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7667 if (rc != MBX_SUCCESS)
7668 goto out_unset_queue;
7669 rc = 0;
James Smart895427b2017-02-12 13:52:30 -08007670 }
7671 /* Check if the port is configured to be disabled */
7672 lpfc_sli_read_link_ste(phba);
James Smartda0436e2009-05-22 14:51:39 -04007673 }
7674
James Smartc4908502019-01-28 11:14:28 -08007675 /* Don't post more new bufs if repost already recovered
7676 * the nvme sgls.
7677 */
7678 if (phba->nvmet_support == 0) {
7679 if (phba->sli4_hba.io_xri_cnt == 0) {
7680 len = lpfc_new_io_buf(
7681 phba, phba->sli4_hba.io_xri_max);
7682 if (len == 0) {
7683 rc = -ENOMEM;
7684 goto out_unset_queue;
7685 }
7686
7687 if (phba->cfg_xri_rebalancing)
7688 lpfc_create_multixri_pools(phba);
7689 }
7690 } else {
7691 phba->cfg_xri_rebalancing = 0;
7692 }
7693
James Smartda0436e2009-05-22 14:51:39 -04007694 /* Allow asynchronous mailbox command to go through */
7695 spin_lock_irq(&phba->hbalock);
7696 phba->sli.sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
7697 spin_unlock_irq(&phba->hbalock);
7698
7699 /* Post receive buffers to the device */
7700 lpfc_sli4_rb_setup(phba);
7701
James Smartfc2b9892010-02-26 14:15:29 -05007702 /* Reset HBA FCF states after HBA reset */
7703 phba->fcf.fcf_flag = 0;
7704 phba->fcf.current_rec.flag = 0;
7705
James Smartda0436e2009-05-22 14:51:39 -04007706 /* Start the ELS watchdog timer */
James Smart8fa38512009-07-19 10:01:03 -04007707 mod_timer(&vport->els_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04007708 jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov * 2)));
James Smartda0436e2009-05-22 14:51:39 -04007709
7710 /* Start heart beat timer */
7711 mod_timer(&phba->hb_tmofunc,
James Smart256ec0d2013-04-17 20:14:58 -04007712 jiffies + msecs_to_jiffies(1000 * LPFC_HB_MBOX_INTERVAL));
James Smartda0436e2009-05-22 14:51:39 -04007713 phba->hb_outstanding = 0;
7714 phba->last_completion_time = jiffies;
7715
James Smart32517fc2019-01-28 11:14:33 -08007716 /* start eq_delay heartbeat */
7717 if (phba->cfg_auto_imax)
7718 queue_delayed_work(phba->wq, &phba->eq_delay_work,
7719 msecs_to_jiffies(LPFC_EQ_DELAY_MSECS));
7720
James Smartda0436e2009-05-22 14:51:39 -04007721 /* Start error attention (ERATT) polling timer */
James Smart256ec0d2013-04-17 20:14:58 -04007722 mod_timer(&phba->eratt_poll,
James Smart65791f12016-07-06 12:35:56 -07007723 jiffies + msecs_to_jiffies(1000 * phba->eratt_poll_interval));
James Smartda0436e2009-05-22 14:51:39 -04007724
James Smart75baf692010-06-08 18:31:21 -04007725 /* Enable PCIe device Advanced Error Reporting (AER) if configured */
7726 if (phba->cfg_aer_support == 1 && !(phba->hba_flag & HBA_AER_ENABLED)) {
7727 rc = pci_enable_pcie_error_reporting(phba->pcidev);
7728 if (!rc) {
7729 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7730 "2829 This device supports "
7731 "Advanced Error Reporting (AER)\n");
7732 spin_lock_irq(&phba->hbalock);
7733 phba->hba_flag |= HBA_AER_ENABLED;
7734 spin_unlock_irq(&phba->hbalock);
7735 } else {
7736 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
7737 "2830 This device does not support "
7738 "Advanced Error Reporting (AER)\n");
7739 phba->cfg_aer_support = 0;
7740 }
James Smart0a96e972011-07-22 18:37:28 -04007741 rc = 0;
James Smart75baf692010-06-08 18:31:21 -04007742 }
7743
James Smartda0436e2009-05-22 14:51:39 -04007744 /*
7745 * The port is ready, set the host's link state to LINK_DOWN
7746 * in preparation for link interrupts.
7747 */
James Smartda0436e2009-05-22 14:51:39 -04007748 spin_lock_irq(&phba->hbalock);
7749 phba->link_state = LPFC_LINK_DOWN;
James Smart1dc5ec22018-10-23 13:41:11 -07007750
7751 /* Check if physical ports are trunked */
7752 if (bf_get(lpfc_conf_trunk_port0, &phba->sli4_hba))
7753 phba->trunk_link.link0.state = LPFC_LINK_DOWN;
7754 if (bf_get(lpfc_conf_trunk_port1, &phba->sli4_hba))
7755 phba->trunk_link.link1.state = LPFC_LINK_DOWN;
7756 if (bf_get(lpfc_conf_trunk_port2, &phba->sli4_hba))
7757 phba->trunk_link.link2.state = LPFC_LINK_DOWN;
7758 if (bf_get(lpfc_conf_trunk_port3, &phba->sli4_hba))
7759 phba->trunk_link.link3.state = LPFC_LINK_DOWN;
James Smartda0436e2009-05-22 14:51:39 -04007760 spin_unlock_irq(&phba->hbalock);
James Smart1dc5ec22018-10-23 13:41:11 -07007761
James Smarte8869f52019-03-12 16:30:18 -07007762 /* Arm the CQs and then EQs on device */
7763 lpfc_sli4_arm_cqeq_intr(phba);
7764
7765 /* Indicate device interrupt mode */
7766 phba->sli4_hba.intr_enable = 1;
7767
James Smart026abb82011-12-13 13:20:45 -05007768 if (!(phba->hba_flag & HBA_FCOE_MODE) &&
7769 (phba->hba_flag & LINK_DISABLED)) {
7770 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
7771 "3103 Adapter Link is disabled.\n");
7772 lpfc_down_link(phba, mboxq);
7773 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
7774 if (rc != MBX_SUCCESS) {
7775 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_SLI,
7776 "3104 Adapter failed to issue "
7777 "DOWN_LINK mbox cmd, rc:x%x\n", rc);
James Smartc4908502019-01-28 11:14:28 -08007778 goto out_io_buff_free;
James Smart026abb82011-12-13 13:20:45 -05007779 }
7780 } else if (phba->cfg_suppress_link_up == LPFC_INITIALIZE_LINK) {
James Smart1b511972011-12-13 13:23:09 -05007781 /* don't perform init_link on SLI4 FC port loopback test */
7782 if (!(phba->link_flag & LS_LOOPBACK_MODE)) {
7783 rc = phba->lpfc_hba_init_link(phba, MBX_NOWAIT);
7784 if (rc)
James Smartc4908502019-01-28 11:14:28 -08007785 goto out_io_buff_free;
James Smart1b511972011-12-13 13:23:09 -05007786 }
James Smart5350d872011-10-10 21:33:49 -04007787 }
7788 mempool_free(mboxq, phba->mbox_mem_pool);
7789 return rc;
James Smartc4908502019-01-28 11:14:28 -08007790out_io_buff_free:
7791 /* Free allocated IO Buffers */
7792 lpfc_io_free(phba);
James Smart76a95d72010-11-20 23:11:48 -05007793out_unset_queue:
James Smartda0436e2009-05-22 14:51:39 -04007794 /* Unset all the queues set up in this routine when error out */
James Smart5350d872011-10-10 21:33:49 -04007795 lpfc_sli4_queue_unset(phba);
7796out_destroy_queue:
James Smart6c621a22017-05-15 15:20:45 -07007797 lpfc_free_iocb_list(phba);
James Smart5350d872011-10-10 21:33:49 -04007798 lpfc_sli4_queue_destroy(phba);
James Smartda0436e2009-05-22 14:51:39 -04007799out_stop_timers:
James Smart5350d872011-10-10 21:33:49 -04007800 lpfc_stop_hba_timers(phba);
James Smartda0436e2009-05-22 14:51:39 -04007801out_free_mbox:
7802 mempool_free(mboxq, phba->mbox_mem_pool);
7803 return rc;
7804}
James Smarte59058c2008-08-24 21:49:00 -04007805
7806/**
James Smart3621a712009-04-06 18:47:14 -04007807 * lpfc_mbox_timeout - Timeout call back function for mbox timer
James Smarte59058c2008-08-24 21:49:00 -04007808 * @ptr: context object - pointer to hba structure.
dea31012005-04-17 16:05:31 -05007809 *
James Smarte59058c2008-08-24 21:49:00 -04007810 * This is the callback function for mailbox timer. The mailbox
7811 * timer is armed when a new mailbox command is issued and the timer
7812 * is deleted when the mailbox complete. The function is called by
7813 * the kernel timer code when a mailbox does not complete within
7814 * expected time. This function wakes up the worker thread to
7815 * process the mailbox timeout and returns. All the processing is
7816 * done by the worker thread function lpfc_mbox_timeout_handler.
7817 **/
dea31012005-04-17 16:05:31 -05007818void
Kees Cookf22eb4d2017-09-06 20:24:26 -07007819lpfc_mbox_timeout(struct timer_list *t)
dea31012005-04-17 16:05:31 -05007820{
Kees Cookf22eb4d2017-09-06 20:24:26 -07007821 struct lpfc_hba *phba = from_timer(phba, t, sli.mbox_tmo);
dea31012005-04-17 16:05:31 -05007822 unsigned long iflag;
James Smart2e0fef82007-06-17 19:56:36 -05007823 uint32_t tmo_posted;
dea31012005-04-17 16:05:31 -05007824
James Smart2e0fef82007-06-17 19:56:36 -05007825 spin_lock_irqsave(&phba->pport->work_port_lock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -05007826 tmo_posted = phba->pport->work_port_events & WORKER_MBOX_TMO;
James Smart2e0fef82007-06-17 19:56:36 -05007827 if (!tmo_posted)
7828 phba->pport->work_port_events |= WORKER_MBOX_TMO;
7829 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflag);
7830
James Smart5e9d9b82008-06-14 22:52:53 -04007831 if (!tmo_posted)
7832 lpfc_worker_wake_up(phba);
7833 return;
dea31012005-04-17 16:05:31 -05007834}
7835
James Smarte8d3c3b2013-10-10 12:21:30 -04007836/**
7837 * lpfc_sli4_mbox_completions_pending - check to see if any mailbox completions
7838 * are pending
7839 * @phba: Pointer to HBA context object.
7840 *
7841 * This function checks if any mailbox completions are present on the mailbox
7842 * completion queue.
7843 **/
Nicholas Krause3bb11fc2015-08-31 16:48:13 -04007844static bool
James Smarte8d3c3b2013-10-10 12:21:30 -04007845lpfc_sli4_mbox_completions_pending(struct lpfc_hba *phba)
7846{
7847
7848 uint32_t idx;
7849 struct lpfc_queue *mcq;
7850 struct lpfc_mcqe *mcqe;
7851 bool pending_completions = false;
James Smart7365f6f2018-02-22 08:18:46 -08007852 uint8_t qe_valid;
James Smarte8d3c3b2013-10-10 12:21:30 -04007853
7854 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
7855 return false;
7856
7857 /* Check for completions on mailbox completion queue */
7858
7859 mcq = phba->sli4_hba.mbx_cq;
7860 idx = mcq->hba_index;
James Smart7365f6f2018-02-22 08:18:46 -08007861 qe_valid = mcq->qe_valid;
James Smart9afbee32019-03-12 16:30:28 -07007862 while (bf_get_le32(lpfc_cqe_valid,
7863 (struct lpfc_cqe *)lpfc_sli4_qe(mcq, idx)) == qe_valid) {
7864 mcqe = (struct lpfc_mcqe *)(lpfc_sli4_qe(mcq, idx));
James Smarte8d3c3b2013-10-10 12:21:30 -04007865 if (bf_get_le32(lpfc_trailer_completed, mcqe) &&
7866 (!bf_get_le32(lpfc_trailer_async, mcqe))) {
7867 pending_completions = true;
7868 break;
7869 }
7870 idx = (idx + 1) % mcq->entry_count;
7871 if (mcq->hba_index == idx)
7872 break;
James Smart7365f6f2018-02-22 08:18:46 -08007873
7874 /* if the index wrapped around, toggle the valid bit */
7875 if (phba->sli4_hba.pc_sli4_params.cqav && !idx)
7876 qe_valid = (qe_valid) ? 0 : 1;
James Smarte8d3c3b2013-10-10 12:21:30 -04007877 }
7878 return pending_completions;
7879
7880}
7881
7882/**
7883 * lpfc_sli4_process_missed_mbox_completions - process mbox completions
7884 * that were missed.
7885 * @phba: Pointer to HBA context object.
7886 *
7887 * For sli4, it is possible to miss an interrupt. As such mbox completions
7888 * maybe missed causing erroneous mailbox timeouts to occur. This function
7889 * checks to see if mbox completions are on the mailbox completion queue
7890 * and will process all the completions associated with the eq for the
7891 * mailbox completion queue.
7892 **/
YueHaibingd7b761b2019-05-31 23:28:41 +08007893static bool
James Smarte8d3c3b2013-10-10 12:21:30 -04007894lpfc_sli4_process_missed_mbox_completions(struct lpfc_hba *phba)
7895{
James Smartb71413d2018-02-22 08:18:40 -08007896 struct lpfc_sli4_hba *sli4_hba = &phba->sli4_hba;
James Smarte8d3c3b2013-10-10 12:21:30 -04007897 uint32_t eqidx;
7898 struct lpfc_queue *fpeq = NULL;
James Smart657add42019-05-21 17:49:06 -07007899 struct lpfc_queue *eq;
James Smarte8d3c3b2013-10-10 12:21:30 -04007900 bool mbox_pending;
7901
7902 if (unlikely(!phba) || (phba->sli_rev != LPFC_SLI_REV4))
7903 return false;
7904
James Smart657add42019-05-21 17:49:06 -07007905 /* Find the EQ associated with the mbox CQ */
7906 if (sli4_hba->hdwq) {
7907 for (eqidx = 0; eqidx < phba->cfg_irq_chann; eqidx++) {
7908 eq = phba->sli4_hba.hba_eq_hdl[eqidx].eq;
7909 if (eq->queue_id == sli4_hba->mbx_cq->assoc_qid) {
7910 fpeq = eq;
James Smarte8d3c3b2013-10-10 12:21:30 -04007911 break;
7912 }
James Smart657add42019-05-21 17:49:06 -07007913 }
7914 }
James Smarte8d3c3b2013-10-10 12:21:30 -04007915 if (!fpeq)
7916 return false;
7917
7918 /* Turn off interrupts from this EQ */
7919
James Smartb71413d2018-02-22 08:18:40 -08007920 sli4_hba->sli4_eq_clr_intr(fpeq);
James Smarte8d3c3b2013-10-10 12:21:30 -04007921
7922 /* Check to see if a mbox completion is pending */
7923
7924 mbox_pending = lpfc_sli4_mbox_completions_pending(phba);
7925
7926 /*
7927 * If a mbox completion is pending, process all the events on EQ
7928 * associated with the mbox completion queue (this could include
7929 * mailbox commands, async events, els commands, receive queue data
7930 * and fcp commands)
7931 */
7932
7933 if (mbox_pending)
James Smart32517fc2019-01-28 11:14:33 -08007934 /* process and rearm the EQ */
7935 lpfc_sli4_process_eq(phba, fpeq);
7936 else
7937 /* Always clear and re-arm the EQ */
7938 sli4_hba->sli4_write_eq_db(phba, fpeq, 0, LPFC_QUEUE_REARM);
James Smarte8d3c3b2013-10-10 12:21:30 -04007939
7940 return mbox_pending;
7941
7942}
James Smarte59058c2008-08-24 21:49:00 -04007943
7944/**
James Smart3621a712009-04-06 18:47:14 -04007945 * lpfc_mbox_timeout_handler - Worker thread function to handle mailbox timeout
James Smarte59058c2008-08-24 21:49:00 -04007946 * @phba: Pointer to HBA context object.
7947 *
7948 * This function is called from worker thread when a mailbox command times out.
7949 * The caller is not required to hold any locks. This function will reset the
7950 * HBA and recover all the pending commands.
7951 **/
dea31012005-04-17 16:05:31 -05007952void
7953lpfc_mbox_timeout_handler(struct lpfc_hba *phba)
7954{
James Smart2e0fef82007-06-17 19:56:36 -05007955 LPFC_MBOXQ_t *pmbox = phba->sli.mbox_active;
James Smarteb016562014-09-03 12:58:06 -04007956 MAILBOX_t *mb = NULL;
7957
James Smart1dcb58e2007-04-25 09:51:30 -04007958 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05007959
James Smarte8d3c3b2013-10-10 12:21:30 -04007960 /* If the mailbox completed, process the completion and return */
7961 if (lpfc_sli4_process_missed_mbox_completions(phba))
7962 return;
7963
James Smarteb016562014-09-03 12:58:06 -04007964 if (pmbox != NULL)
7965 mb = &pmbox->u.mb;
James Smarta257bf92009-04-06 18:48:10 -04007966 /* Check the pmbox pointer first. There is a race condition
7967 * between the mbox timeout handler getting executed in the
7968 * worklist and the mailbox actually completing. When this
7969 * race condition occurs, the mbox_active will be NULL.
7970 */
7971 spin_lock_irq(&phba->hbalock);
7972 if (pmbox == NULL) {
7973 lpfc_printf_log(phba, KERN_WARNING,
7974 LOG_MBOX | LOG_SLI,
7975 "0353 Active Mailbox cleared - mailbox timeout "
7976 "exiting\n");
7977 spin_unlock_irq(&phba->hbalock);
7978 return;
7979 }
7980
dea31012005-04-17 16:05:31 -05007981 /* Mbox cmd <mbxCommand> timeout */
James Smarted957682007-06-17 19:56:37 -05007982 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart32350662019-08-14 16:57:06 -07007983 "0310 Mailbox command x%x timeout Data: x%x x%x x%px\n",
James Smart92d7f7b2007-06-17 19:56:38 -05007984 mb->mbxCommand,
7985 phba->pport->port_state,
7986 phba->sli.sli_flag,
7987 phba->sli.mbox_active);
James Smarta257bf92009-04-06 18:48:10 -04007988 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -05007989
James Smart1dcb58e2007-04-25 09:51:30 -04007990 /* Setting state unknown so lpfc_sli_abort_iocb_ring
7991 * would get IOCB_ERROR from lpfc_sli_issue_iocb, allowing
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007992 * it to fail all outstanding SCSI IO.
James Smart1dcb58e2007-04-25 09:51:30 -04007993 */
James Smart2e0fef82007-06-17 19:56:36 -05007994 spin_lock_irq(&phba->pport->work_port_lock);
7995 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
7996 spin_unlock_irq(&phba->pport->work_port_lock);
7997 spin_lock_irq(&phba->hbalock);
7998 phba->link_state = LPFC_LINK_UNKNOWN;
James Smartf4b4c682009-05-22 14:53:12 -04007999 psli->sli_flag &= ~LPFC_SLI_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05008000 spin_unlock_irq(&phba->hbalock);
James Smart1dcb58e2007-04-25 09:51:30 -04008001
James Smartdb55fba2014-04-04 13:52:02 -04008002 lpfc_sli_abort_fcp_rings(phba);
James Smart1dcb58e2007-04-25 09:51:30 -04008003
8004 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -04008005 "0345 Resetting board due to mailbox timeout\n");
James Smart3772a992009-05-22 14:50:54 -04008006
8007 /* Reset the HBA device */
8008 lpfc_reset_hba(phba);
dea31012005-04-17 16:05:31 -05008009}
8010
James Smarte59058c2008-08-24 21:49:00 -04008011/**
James Smart3772a992009-05-22 14:50:54 -04008012 * lpfc_sli_issue_mbox_s3 - Issue an SLI3 mailbox command to firmware
James Smarte59058c2008-08-24 21:49:00 -04008013 * @phba: Pointer to HBA context object.
8014 * @pmbox: Pointer to mailbox object.
8015 * @flag: Flag indicating how the mailbox need to be processed.
8016 *
8017 * This function is called by discovery code and HBA management code
James Smart3772a992009-05-22 14:50:54 -04008018 * to submit a mailbox command to firmware with SLI-3 interface spec. This
8019 * function gets the hbalock to protect the data structures.
James Smarte59058c2008-08-24 21:49:00 -04008020 * The mailbox command can be submitted in polling mode, in which case
8021 * this function will wait in a polling loop for the completion of the
8022 * mailbox.
8023 * If the mailbox is submitted in no_wait mode (not polling) the
8024 * function will submit the command and returns immediately without waiting
8025 * for the mailbox completion. The no_wait is supported only when HBA
8026 * is in SLI2/SLI3 mode - interrupts are enabled.
8027 * The SLI interface allows only one mailbox pending at a time. If the
8028 * mailbox is issued in polling mode and there is already a mailbox
8029 * pending, then the function will return an error. If the mailbox is issued
8030 * in NO_WAIT mode and there is a mailbox pending already, the function
8031 * will return MBX_BUSY after queuing the mailbox into mailbox queue.
8032 * The sli layer owns the mailbox object until the completion of mailbox
8033 * command if this function return MBX_BUSY or MBX_SUCCESS. For all other
8034 * return codes the caller owns the mailbox command after the return of
8035 * the function.
8036 **/
James Smart3772a992009-05-22 14:50:54 -04008037static int
8038lpfc_sli_issue_mbox_s3(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox,
8039 uint32_t flag)
dea31012005-04-17 16:05:31 -05008040{
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008041 MAILBOX_t *mbx;
James Smart2e0fef82007-06-17 19:56:36 -05008042 struct lpfc_sli *psli = &phba->sli;
dea31012005-04-17 16:05:31 -05008043 uint32_t status, evtctr;
James Smart9940b972011-03-11 16:06:12 -05008044 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -05008045 int i;
James Smart09372822008-01-11 01:52:54 -05008046 unsigned long timeout;
dea31012005-04-17 16:05:31 -05008047 unsigned long drvr_flag = 0;
James Smart34b02dc2008-08-24 21:49:55 -04008048 uint32_t word0, ldata;
dea31012005-04-17 16:05:31 -05008049 void __iomem *to_slim;
James Smart58da1ff2008-04-07 10:15:56 -04008050 int processing_queue = 0;
8051
8052 spin_lock_irqsave(&phba->hbalock, drvr_flag);
8053 if (!pmbox) {
James Smart8568a4d2009-07-19 10:01:16 -04008054 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart58da1ff2008-04-07 10:15:56 -04008055 /* processing mbox queue from intr_handler */
James Smart3772a992009-05-22 14:50:54 -04008056 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
8057 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
8058 return MBX_SUCCESS;
8059 }
James Smart58da1ff2008-04-07 10:15:56 -04008060 processing_queue = 1;
James Smart58da1ff2008-04-07 10:15:56 -04008061 pmbox = lpfc_mbox_get(phba);
8062 if (!pmbox) {
8063 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
8064 return MBX_SUCCESS;
8065 }
8066 }
dea31012005-04-17 16:05:31 -05008067
James Smarted957682007-06-17 19:56:37 -05008068 if (pmbox->mbox_cmpl && pmbox->mbox_cmpl != lpfc_sli_def_mbox_cmpl &&
James Smart92d7f7b2007-06-17 19:56:38 -05008069 pmbox->mbox_cmpl != lpfc_sli_wake_mbox_wait) {
James Smarted957682007-06-17 19:56:37 -05008070 if(!pmbox->vport) {
James Smart58da1ff2008-04-07 10:15:56 -04008071 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
James Smarted957682007-06-17 19:56:37 -05008072 lpfc_printf_log(phba, KERN_ERR,
James Smart92d7f7b2007-06-17 19:56:38 -05008073 LOG_MBOX | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04008074 "1806 Mbox x%x failed. No vport\n",
James Smart3772a992009-05-22 14:50:54 -04008075 pmbox->u.mb.mbxCommand);
James Smarted957682007-06-17 19:56:37 -05008076 dump_stack();
James Smart58da1ff2008-04-07 10:15:56 -04008077 goto out_not_finished;
James Smarted957682007-06-17 19:56:37 -05008078 }
8079 }
8080
Linas Vepstas8d63f372007-02-14 14:28:36 -06008081 /* If the PCI channel is in offline state, do not post mbox. */
James Smart58da1ff2008-04-07 10:15:56 -04008082 if (unlikely(pci_channel_offline(phba->pcidev))) {
8083 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
8084 goto out_not_finished;
8085 }
Linas Vepstas8d63f372007-02-14 14:28:36 -06008086
James Smarta257bf92009-04-06 18:48:10 -04008087 /* If HBA has a deferred error attention, fail the iocb. */
8088 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
8089 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
8090 goto out_not_finished;
8091 }
8092
dea31012005-04-17 16:05:31 -05008093 psli = &phba->sli;
James Smart92d7f7b2007-06-17 19:56:38 -05008094
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008095 mbx = &pmbox->u.mb;
dea31012005-04-17 16:05:31 -05008096 status = MBX_SUCCESS;
8097
James Smart2e0fef82007-06-17 19:56:36 -05008098 if (phba->link_state == LPFC_HBA_ERROR) {
8099 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
Jamie Wellnitz41415862006-02-28 19:25:27 -05008100
8101 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04008102 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
8103 "(%d):0311 Mailbox command x%x cannot "
8104 "issue Data: x%x x%x\n",
8105 pmbox->vport ? pmbox->vport->vpi : 0,
8106 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04008107 goto out_not_finished;
Jamie Wellnitz41415862006-02-28 19:25:27 -05008108 }
8109
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008110 if (mbx->mbxCommand != MBX_KILL_BOARD && flag & MBX_NOWAIT) {
James Smart9940b972011-03-11 16:06:12 -05008111 if (lpfc_readl(phba->HCregaddr, &hc_copy) ||
8112 !(hc_copy & HC_MBINT_ENA)) {
8113 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
8114 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smart3772a992009-05-22 14:50:54 -04008115 "(%d):2528 Mailbox command x%x cannot "
8116 "issue Data: x%x x%x\n",
8117 pmbox->vport ? pmbox->vport->vpi : 0,
8118 pmbox->u.mb.mbxCommand, psli->sli_flag, flag);
James Smart9940b972011-03-11 16:06:12 -05008119 goto out_not_finished;
8120 }
James Smart92908312006-03-07 15:04:13 -05008121 }
8122
dea31012005-04-17 16:05:31 -05008123 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
8124 /* Polling for a mbox command when another one is already active
8125 * is not allowed in SLI. Also, the driver must have established
8126 * SLI2 mode to queue and process multiple mbox commands.
8127 */
8128
8129 if (flag & MBX_POLL) {
James Smart2e0fef82007-06-17 19:56:36 -05008130 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05008131
8132 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04008133 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
8134 "(%d):2529 Mailbox command x%x "
8135 "cannot issue Data: x%x x%x\n",
8136 pmbox->vport ? pmbox->vport->vpi : 0,
8137 pmbox->u.mb.mbxCommand,
8138 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04008139 goto out_not_finished;
dea31012005-04-17 16:05:31 -05008140 }
8141
James Smart3772a992009-05-22 14:50:54 -04008142 if (!(psli->sli_flag & LPFC_SLI_ACTIVE)) {
James Smart2e0fef82007-06-17 19:56:36 -05008143 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05008144 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04008145 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
8146 "(%d):2530 Mailbox command x%x "
8147 "cannot issue Data: x%x x%x\n",
8148 pmbox->vport ? pmbox->vport->vpi : 0,
8149 pmbox->u.mb.mbxCommand,
8150 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04008151 goto out_not_finished;
dea31012005-04-17 16:05:31 -05008152 }
8153
dea31012005-04-17 16:05:31 -05008154 /* Another mailbox command is still being processed, queue this
8155 * command to be processed later.
8156 */
8157 lpfc_mbox_put(phba, pmbox);
8158
8159 /* Mbox cmd issue - BUSY */
James Smarted957682007-06-17 19:56:37 -05008160 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04008161 "(%d):0308 Mbox cmd issue - BUSY Data: "
James Smart92d7f7b2007-06-17 19:56:38 -05008162 "x%x x%x x%x x%x\n",
James Smart92d7f7b2007-06-17 19:56:38 -05008163 pmbox->vport ? pmbox->vport->vpi : 0xffffff,
James Smarte92974f2017-06-01 21:07:06 -07008164 mbx->mbxCommand,
8165 phba->pport ? phba->pport->port_state : 0xff,
James Smart92d7f7b2007-06-17 19:56:38 -05008166 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05008167
8168 psli->slistat.mbox_busy++;
James Smart2e0fef82007-06-17 19:56:36 -05008169 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05008170
James Smart858c9f62007-06-17 19:56:39 -05008171 if (pmbox->vport) {
8172 lpfc_debugfs_disc_trc(pmbox->vport,
8173 LPFC_DISC_TRC_MBOX_VPORT,
8174 "MBOX Bsy vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008175 (uint32_t)mbx->mbxCommand,
8176 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05008177 }
8178 else {
8179 lpfc_debugfs_disc_trc(phba->pport,
8180 LPFC_DISC_TRC_MBOX,
8181 "MBOX Bsy: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008182 (uint32_t)mbx->mbxCommand,
8183 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05008184 }
8185
James Smart2e0fef82007-06-17 19:56:36 -05008186 return MBX_BUSY;
dea31012005-04-17 16:05:31 -05008187 }
8188
dea31012005-04-17 16:05:31 -05008189 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
8190
8191 /* If we are not polling, we MUST be in SLI2 mode */
8192 if (flag != MBX_POLL) {
James Smart3772a992009-05-22 14:50:54 -04008193 if (!(psli->sli_flag & LPFC_SLI_ACTIVE) &&
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008194 (mbx->mbxCommand != MBX_KILL_BOARD)) {
dea31012005-04-17 16:05:31 -05008195 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05008196 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
dea31012005-04-17 16:05:31 -05008197 /* Mbox command <mbxCommand> cannot issue */
James Smart3772a992009-05-22 14:50:54 -04008198 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
8199 "(%d):2531 Mailbox command x%x "
8200 "cannot issue Data: x%x x%x\n",
8201 pmbox->vport ? pmbox->vport->vpi : 0,
8202 pmbox->u.mb.mbxCommand,
8203 psli->sli_flag, flag);
James Smart58da1ff2008-04-07 10:15:56 -04008204 goto out_not_finished;
dea31012005-04-17 16:05:31 -05008205 }
8206 /* timeout active mbox command */
James Smart256ec0d2013-04-17 20:14:58 -04008207 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
8208 1000);
8209 mod_timer(&psli->mbox_tmo, jiffies + timeout);
dea31012005-04-17 16:05:31 -05008210 }
8211
8212 /* Mailbox cmd <cmd> issue */
James Smarted957682007-06-17 19:56:37 -05008213 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -04008214 "(%d):0309 Mailbox cmd x%x issue Data: x%x x%x "
James Smart92d7f7b2007-06-17 19:56:38 -05008215 "x%x\n",
James Smarte8b62012007-08-02 11:10:09 -04008216 pmbox->vport ? pmbox->vport->vpi : 0,
James Smarte92974f2017-06-01 21:07:06 -07008217 mbx->mbxCommand,
8218 phba->pport ? phba->pport->port_state : 0xff,
James Smart92d7f7b2007-06-17 19:56:38 -05008219 psli->sli_flag, flag);
dea31012005-04-17 16:05:31 -05008220
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008221 if (mbx->mbxCommand != MBX_HEARTBEAT) {
James Smart858c9f62007-06-17 19:56:39 -05008222 if (pmbox->vport) {
8223 lpfc_debugfs_disc_trc(pmbox->vport,
8224 LPFC_DISC_TRC_MBOX_VPORT,
8225 "MBOX Send vport: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008226 (uint32_t)mbx->mbxCommand,
8227 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05008228 }
8229 else {
8230 lpfc_debugfs_disc_trc(phba->pport,
8231 LPFC_DISC_TRC_MBOX,
8232 "MBOX Send: cmd:x%x mb:x%x x%x",
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008233 (uint32_t)mbx->mbxCommand,
8234 mbx->un.varWords[0], mbx->un.varWords[1]);
James Smart858c9f62007-06-17 19:56:39 -05008235 }
8236 }
8237
dea31012005-04-17 16:05:31 -05008238 psli->slistat.mbox_cmd++;
8239 evtctr = psli->slistat.mbox_event;
8240
8241 /* next set own bit for the adapter and copy over command word */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008242 mbx->mbxOwner = OWN_CHIP;
dea31012005-04-17 16:05:31 -05008243
James Smart3772a992009-05-22 14:50:54 -04008244 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart7a470272010-03-15 11:25:20 -04008245 /* Populate mbox extension offset word. */
8246 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len) {
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008247 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04008248 = (uint8_t *)phba->mbox_ext
8249 - (uint8_t *)phba->mbox;
8250 }
8251
8252 /* Copy the mailbox extension data */
James Smart3e1f0712018-11-29 16:09:29 -08008253 if (pmbox->in_ext_byte_len && pmbox->ctx_buf) {
8254 lpfc_sli_pcimem_bcopy(pmbox->ctx_buf,
8255 (uint8_t *)phba->mbox_ext,
8256 pmbox->in_ext_byte_len);
James Smart7a470272010-03-15 11:25:20 -04008257 }
8258 /* Copy command data to host SLIM area */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008259 lpfc_sli_pcimem_bcopy(mbx, phba->mbox, MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05008260 } else {
James Smart7a470272010-03-15 11:25:20 -04008261 /* Populate mbox extension offset word. */
8262 if (pmbox->in_ext_byte_len || pmbox->out_ext_byte_len)
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008263 *(((uint32_t *)mbx) + pmbox->mbox_offset_word)
James Smart7a470272010-03-15 11:25:20 -04008264 = MAILBOX_HBA_EXT_OFFSET;
8265
8266 /* Copy the mailbox extension data */
James Smart3e1f0712018-11-29 16:09:29 -08008267 if (pmbox->in_ext_byte_len && pmbox->ctx_buf)
James Smart7a470272010-03-15 11:25:20 -04008268 lpfc_memcpy_to_slim(phba->MBslimaddr +
8269 MAILBOX_HBA_EXT_OFFSET,
James Smart3e1f0712018-11-29 16:09:29 -08008270 pmbox->ctx_buf, pmbox->in_ext_byte_len);
James Smart7a470272010-03-15 11:25:20 -04008271
James Smart895427b2017-02-12 13:52:30 -08008272 if (mbx->mbxCommand == MBX_CONFIG_PORT)
dea31012005-04-17 16:05:31 -05008273 /* copy command data into host mbox for cmpl */
James Smart895427b2017-02-12 13:52:30 -08008274 lpfc_sli_pcimem_bcopy(mbx, phba->mbox,
8275 MAILBOX_CMD_SIZE);
dea31012005-04-17 16:05:31 -05008276
8277 /* First copy mbox command data to HBA SLIM, skip past first
8278 word */
8279 to_slim = phba->MBslimaddr + sizeof (uint32_t);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008280 lpfc_memcpy_to_slim(to_slim, &mbx->un.varWords[0],
dea31012005-04-17 16:05:31 -05008281 MAILBOX_CMD_SIZE - sizeof (uint32_t));
8282
8283 /* Next copy over first word, with mbxOwner set */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008284 ldata = *((uint32_t *)mbx);
dea31012005-04-17 16:05:31 -05008285 to_slim = phba->MBslimaddr;
8286 writel(ldata, to_slim);
8287 readl(to_slim); /* flush */
8288
James Smart895427b2017-02-12 13:52:30 -08008289 if (mbx->mbxCommand == MBX_CONFIG_PORT)
dea31012005-04-17 16:05:31 -05008290 /* switch over to host mailbox */
James Smart3772a992009-05-22 14:50:54 -04008291 psli->sli_flag |= LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05008292 }
8293
8294 wmb();
dea31012005-04-17 16:05:31 -05008295
8296 switch (flag) {
8297 case MBX_NOWAIT:
James Smart09372822008-01-11 01:52:54 -05008298 /* Set up reference to mailbox command */
dea31012005-04-17 16:05:31 -05008299 psli->mbox_active = pmbox;
James Smart09372822008-01-11 01:52:54 -05008300 /* Interrupt board to do it */
8301 writel(CA_MBATT, phba->CAregaddr);
8302 readl(phba->CAregaddr); /* flush */
8303 /* Don't wait for it to finish, just return */
dea31012005-04-17 16:05:31 -05008304 break;
8305
8306 case MBX_POLL:
James Smart09372822008-01-11 01:52:54 -05008307 /* Set up null reference to mailbox command */
dea31012005-04-17 16:05:31 -05008308 psli->mbox_active = NULL;
James Smart09372822008-01-11 01:52:54 -05008309 /* Interrupt board to do it */
8310 writel(CA_MBATT, phba->CAregaddr);
8311 readl(phba->CAregaddr); /* flush */
8312
James Smart3772a992009-05-22 14:50:54 -04008313 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05008314 /* First read mbox status word */
James Smart34b02dc2008-08-24 21:49:55 -04008315 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05008316 word0 = le32_to_cpu(word0);
8317 } else {
8318 /* First read mbox status word */
James Smart9940b972011-03-11 16:06:12 -05008319 if (lpfc_readl(phba->MBslimaddr, &word0)) {
8320 spin_unlock_irqrestore(&phba->hbalock,
8321 drvr_flag);
8322 goto out_not_finished;
8323 }
dea31012005-04-17 16:05:31 -05008324 }
8325
8326 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05008327 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
8328 spin_unlock_irqrestore(&phba->hbalock,
8329 drvr_flag);
8330 goto out_not_finished;
8331 }
James Smarta183a152011-10-10 21:32:43 -04008332 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, pmbox) *
8333 1000) + jiffies;
James Smart09372822008-01-11 01:52:54 -05008334 i = 0;
dea31012005-04-17 16:05:31 -05008335 /* Wait for command to complete */
Jamie Wellnitz41415862006-02-28 19:25:27 -05008336 while (((word0 & OWN_CHIP) == OWN_CHIP) ||
8337 (!(ha_copy & HA_MBATT) &&
James Smart2e0fef82007-06-17 19:56:36 -05008338 (phba->link_state > LPFC_WARM_START))) {
James Smart09372822008-01-11 01:52:54 -05008339 if (time_after(jiffies, timeout)) {
dea31012005-04-17 16:05:31 -05008340 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
James Smart2e0fef82007-06-17 19:56:36 -05008341 spin_unlock_irqrestore(&phba->hbalock,
dea31012005-04-17 16:05:31 -05008342 drvr_flag);
James Smart58da1ff2008-04-07 10:15:56 -04008343 goto out_not_finished;
dea31012005-04-17 16:05:31 -05008344 }
8345
8346 /* Check if we took a mbox interrupt while we were
8347 polling */
8348 if (((word0 & OWN_CHIP) != OWN_CHIP)
8349 && (evtctr != psli->slistat.mbox_event))
8350 break;
8351
James Smart09372822008-01-11 01:52:54 -05008352 if (i++ > 10) {
8353 spin_unlock_irqrestore(&phba->hbalock,
8354 drvr_flag);
8355 msleep(1);
8356 spin_lock_irqsave(&phba->hbalock, drvr_flag);
8357 }
dea31012005-04-17 16:05:31 -05008358
James Smart3772a992009-05-22 14:50:54 -04008359 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05008360 /* First copy command data */
James Smart34b02dc2008-08-24 21:49:55 -04008361 word0 = *((uint32_t *)phba->mbox);
dea31012005-04-17 16:05:31 -05008362 word0 = le32_to_cpu(word0);
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008363 if (mbx->mbxCommand == MBX_CONFIG_PORT) {
dea31012005-04-17 16:05:31 -05008364 MAILBOX_t *slimmb;
James Smart34b02dc2008-08-24 21:49:55 -04008365 uint32_t slimword0;
dea31012005-04-17 16:05:31 -05008366 /* Check real SLIM for any errors */
8367 slimword0 = readl(phba->MBslimaddr);
8368 slimmb = (MAILBOX_t *) & slimword0;
8369 if (((slimword0 & OWN_CHIP) != OWN_CHIP)
8370 && slimmb->mbxStatus) {
8371 psli->sli_flag &=
James Smart3772a992009-05-22 14:50:54 -04008372 ~LPFC_SLI_ACTIVE;
dea31012005-04-17 16:05:31 -05008373 word0 = slimword0;
8374 }
8375 }
8376 } else {
8377 /* First copy command data */
8378 word0 = readl(phba->MBslimaddr);
8379 }
8380 /* Read the HBA Host Attention Register */
James Smart9940b972011-03-11 16:06:12 -05008381 if (lpfc_readl(phba->HAregaddr, &ha_copy)) {
8382 spin_unlock_irqrestore(&phba->hbalock,
8383 drvr_flag);
8384 goto out_not_finished;
8385 }
dea31012005-04-17 16:05:31 -05008386 }
8387
James Smart3772a992009-05-22 14:50:54 -04008388 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
dea31012005-04-17 16:05:31 -05008389 /* copy results back to user */
James Smart2ea259e2017-02-12 13:52:27 -08008390 lpfc_sli_pcimem_bcopy(phba->mbox, mbx,
8391 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04008392 /* Copy the mailbox extension data */
James Smart3e1f0712018-11-29 16:09:29 -08008393 if (pmbox->out_ext_byte_len && pmbox->ctx_buf) {
James Smart7a470272010-03-15 11:25:20 -04008394 lpfc_sli_pcimem_bcopy(phba->mbox_ext,
James Smart3e1f0712018-11-29 16:09:29 -08008395 pmbox->ctx_buf,
James Smart7a470272010-03-15 11:25:20 -04008396 pmbox->out_ext_byte_len);
8397 }
dea31012005-04-17 16:05:31 -05008398 } else {
8399 /* First copy command data */
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008400 lpfc_memcpy_from_slim(mbx, phba->MBslimaddr,
James Smart2ea259e2017-02-12 13:52:27 -08008401 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -04008402 /* Copy the mailbox extension data */
James Smart3e1f0712018-11-29 16:09:29 -08008403 if (pmbox->out_ext_byte_len && pmbox->ctx_buf) {
8404 lpfc_memcpy_from_slim(
8405 pmbox->ctx_buf,
James Smart7a470272010-03-15 11:25:20 -04008406 phba->MBslimaddr +
8407 MAILBOX_HBA_EXT_OFFSET,
8408 pmbox->out_ext_byte_len);
dea31012005-04-17 16:05:31 -05008409 }
8410 }
8411
8412 writel(HA_MBATT, phba->HAregaddr);
8413 readl(phba->HAregaddr); /* flush */
8414
8415 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
Randy Dunlapbf07bde2013-02-22 10:23:54 -08008416 status = mbx->mbxStatus;
dea31012005-04-17 16:05:31 -05008417 }
8418
James Smart2e0fef82007-06-17 19:56:36 -05008419 spin_unlock_irqrestore(&phba->hbalock, drvr_flag);
8420 return status;
James Smart58da1ff2008-04-07 10:15:56 -04008421
8422out_not_finished:
8423 if (processing_queue) {
James Smartda0436e2009-05-22 14:51:39 -04008424 pmbox->u.mb.mbxStatus = MBX_NOT_FINISHED;
James Smart58da1ff2008-04-07 10:15:56 -04008425 lpfc_mbox_cmpl_put(phba, pmbox);
8426 }
8427 return MBX_NOT_FINISHED;
dea31012005-04-17 16:05:31 -05008428}
8429
James Smarte59058c2008-08-24 21:49:00 -04008430/**
James Smartf1126682009-06-10 17:22:44 -04008431 * lpfc_sli4_async_mbox_block - Block posting SLI4 asynchronous mailbox command
8432 * @phba: Pointer to HBA context object.
8433 *
8434 * The function blocks the posting of SLI4 asynchronous mailbox commands from
8435 * the driver internal pending mailbox queue. It will then try to wait out the
8436 * possible outstanding mailbox command before return.
8437 *
8438 * Returns:
8439 * 0 - the outstanding mailbox command completed; otherwise, the wait for
8440 * the outstanding mailbox command timed out.
8441 **/
8442static int
8443lpfc_sli4_async_mbox_block(struct lpfc_hba *phba)
8444{
8445 struct lpfc_sli *psli = &phba->sli;
James Smartf1126682009-06-10 17:22:44 -04008446 int rc = 0;
James Smarta183a152011-10-10 21:32:43 -04008447 unsigned long timeout = 0;
James Smartf1126682009-06-10 17:22:44 -04008448
8449 /* Mark the asynchronous mailbox command posting as blocked */
8450 spin_lock_irq(&phba->hbalock);
8451 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smartf1126682009-06-10 17:22:44 -04008452 /* Determine how long we might wait for the active mailbox
8453 * command to be gracefully completed by firmware.
8454 */
James Smarta183a152011-10-10 21:32:43 -04008455 if (phba->sli.mbox_active)
8456 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
8457 phba->sli.mbox_active) *
8458 1000) + jiffies;
8459 spin_unlock_irq(&phba->hbalock);
8460
James Smarte8d3c3b2013-10-10 12:21:30 -04008461 /* Make sure the mailbox is really active */
8462 if (timeout)
8463 lpfc_sli4_process_missed_mbox_completions(phba);
8464
James Smartf1126682009-06-10 17:22:44 -04008465 /* Wait for the outstnading mailbox command to complete */
8466 while (phba->sli.mbox_active) {
8467 /* Check active mailbox complete status every 2ms */
8468 msleep(2);
8469 if (time_after(jiffies, timeout)) {
8470 /* Timeout, marked the outstanding cmd not complete */
8471 rc = 1;
8472 break;
8473 }
8474 }
8475
8476 /* Can not cleanly block async mailbox command, fails it */
8477 if (rc) {
8478 spin_lock_irq(&phba->hbalock);
8479 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
8480 spin_unlock_irq(&phba->hbalock);
8481 }
8482 return rc;
8483}
8484
8485/**
8486 * lpfc_sli4_async_mbox_unblock - Block posting SLI4 async mailbox command
8487 * @phba: Pointer to HBA context object.
8488 *
8489 * The function unblocks and resume posting of SLI4 asynchronous mailbox
8490 * commands from the driver internal pending mailbox queue. It makes sure
8491 * that there is no outstanding mailbox command before resuming posting
8492 * asynchronous mailbox commands. If, for any reason, there is outstanding
8493 * mailbox command, it will try to wait it out before resuming asynchronous
8494 * mailbox command posting.
8495 **/
8496static void
8497lpfc_sli4_async_mbox_unblock(struct lpfc_hba *phba)
8498{
8499 struct lpfc_sli *psli = &phba->sli;
8500
8501 spin_lock_irq(&phba->hbalock);
8502 if (!(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
8503 /* Asynchronous mailbox posting is not blocked, do nothing */
8504 spin_unlock_irq(&phba->hbalock);
8505 return;
8506 }
8507
8508 /* Outstanding synchronous mailbox command is guaranteed to be done,
8509 * successful or timeout, after timing-out the outstanding mailbox
8510 * command shall always be removed, so just unblock posting async
8511 * mailbox command and resume
8512 */
8513 psli->sli_flag &= ~LPFC_SLI_ASYNC_MBX_BLK;
8514 spin_unlock_irq(&phba->hbalock);
8515
8516 /* wake up worker thread to post asynchronlous mailbox command */
8517 lpfc_worker_wake_up(phba);
8518}
8519
8520/**
James Smart2d843ed2012-09-29 11:29:06 -04008521 * lpfc_sli4_wait_bmbx_ready - Wait for bootstrap mailbox register ready
8522 * @phba: Pointer to HBA context object.
8523 * @mboxq: Pointer to mailbox object.
8524 *
8525 * The function waits for the bootstrap mailbox register ready bit from
8526 * port for twice the regular mailbox command timeout value.
8527 *
8528 * 0 - no timeout on waiting for bootstrap mailbox register ready.
8529 * MBXERR_ERROR - wait for bootstrap mailbox register timed out.
8530 **/
8531static int
8532lpfc_sli4_wait_bmbx_ready(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
8533{
8534 uint32_t db_ready;
8535 unsigned long timeout;
8536 struct lpfc_register bmbx_reg;
8537
8538 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba, mboxq)
8539 * 1000) + jiffies;
8540
8541 do {
8542 bmbx_reg.word0 = readl(phba->sli4_hba.BMBXregaddr);
8543 db_ready = bf_get(lpfc_bmbx_rdy, &bmbx_reg);
8544 if (!db_ready)
James Smarte2ffe4d2019-03-12 16:30:15 -07008545 mdelay(2);
James Smart2d843ed2012-09-29 11:29:06 -04008546
8547 if (time_after(jiffies, timeout))
8548 return MBXERR_ERROR;
8549 } while (!db_ready);
8550
8551 return 0;
8552}
8553
8554/**
James Smartda0436e2009-05-22 14:51:39 -04008555 * lpfc_sli4_post_sync_mbox - Post an SLI4 mailbox to the bootstrap mailbox
8556 * @phba: Pointer to HBA context object.
8557 * @mboxq: Pointer to mailbox object.
8558 *
8559 * The function posts a mailbox to the port. The mailbox is expected
8560 * to be comletely filled in and ready for the port to operate on it.
8561 * This routine executes a synchronous completion operation on the
8562 * mailbox by polling for its completion.
8563 *
8564 * The caller must not be holding any locks when calling this routine.
8565 *
8566 * Returns:
8567 * MBX_SUCCESS - mailbox posted successfully
8568 * Any of the MBX error values.
8569 **/
8570static int
8571lpfc_sli4_post_sync_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
8572{
8573 int rc = MBX_SUCCESS;
8574 unsigned long iflag;
James Smartda0436e2009-05-22 14:51:39 -04008575 uint32_t mcqe_status;
8576 uint32_t mbx_cmnd;
James Smartda0436e2009-05-22 14:51:39 -04008577 struct lpfc_sli *psli = &phba->sli;
8578 struct lpfc_mqe *mb = &mboxq->u.mqe;
8579 struct lpfc_bmbx_create *mbox_rgn;
8580 struct dma_address *dma_address;
James Smartda0436e2009-05-22 14:51:39 -04008581
8582 /*
8583 * Only one mailbox can be active to the bootstrap mailbox region
8584 * at a time and there is no queueing provided.
8585 */
8586 spin_lock_irqsave(&phba->hbalock, iflag);
8587 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
8588 spin_unlock_irqrestore(&phba->hbalock, iflag);
8589 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04008590 "(%d):2532 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04008591 "cannot issue Data: x%x x%x\n",
8592 mboxq->vport ? mboxq->vport->vpi : 0,
8593 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04008594 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
8595 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04008596 psli->sli_flag, MBX_POLL);
8597 return MBXERR_ERROR;
8598 }
8599 /* The server grabs the token and owns it until release */
8600 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
8601 phba->sli.mbox_active = mboxq;
8602 spin_unlock_irqrestore(&phba->hbalock, iflag);
8603
James Smart2d843ed2012-09-29 11:29:06 -04008604 /* wait for bootstrap mbox register for readyness */
8605 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
8606 if (rc)
8607 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04008608 /*
8609 * Initialize the bootstrap memory region to avoid stale data areas
8610 * in the mailbox post. Then copy the caller's mailbox contents to
8611 * the bmbx mailbox region.
8612 */
8613 mbx_cmnd = bf_get(lpfc_mqe_command, mb);
8614 memset(phba->sli4_hba.bmbx.avirt, 0, sizeof(struct lpfc_bmbx_create));
James Smart48f8fdb2018-05-04 20:37:51 -07008615 lpfc_sli4_pcimem_bcopy(mb, phba->sli4_hba.bmbx.avirt,
8616 sizeof(struct lpfc_mqe));
James Smartda0436e2009-05-22 14:51:39 -04008617
8618 /* Post the high mailbox dma address to the port and wait for ready. */
8619 dma_address = &phba->sli4_hba.bmbx.dma_address;
8620 writel(dma_address->addr_hi, phba->sli4_hba.BMBXregaddr);
8621
James Smart2d843ed2012-09-29 11:29:06 -04008622 /* wait for bootstrap mbox register for hi-address write done */
8623 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
8624 if (rc)
8625 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04008626
8627 /* Post the low mailbox dma address to the port. */
8628 writel(dma_address->addr_lo, phba->sli4_hba.BMBXregaddr);
James Smartda0436e2009-05-22 14:51:39 -04008629
James Smart2d843ed2012-09-29 11:29:06 -04008630 /* wait for bootstrap mbox register for low address write done */
8631 rc = lpfc_sli4_wait_bmbx_ready(phba, mboxq);
8632 if (rc)
8633 goto exit;
James Smartda0436e2009-05-22 14:51:39 -04008634
8635 /*
8636 * Read the CQ to ensure the mailbox has completed.
8637 * If so, update the mailbox status so that the upper layers
8638 * can complete the request normally.
8639 */
James Smart48f8fdb2018-05-04 20:37:51 -07008640 lpfc_sli4_pcimem_bcopy(phba->sli4_hba.bmbx.avirt, mb,
8641 sizeof(struct lpfc_mqe));
James Smartda0436e2009-05-22 14:51:39 -04008642 mbox_rgn = (struct lpfc_bmbx_create *) phba->sli4_hba.bmbx.avirt;
James Smart48f8fdb2018-05-04 20:37:51 -07008643 lpfc_sli4_pcimem_bcopy(&mbox_rgn->mcqe, &mboxq->mcqe,
8644 sizeof(struct lpfc_mcqe));
James Smartda0436e2009-05-22 14:51:39 -04008645 mcqe_status = bf_get(lpfc_mcqe_status, &mbox_rgn->mcqe);
James Smart05580562011-05-24 11:40:48 -04008646 /*
8647 * When the CQE status indicates a failure and the mailbox status
8648 * indicates success then copy the CQE status into the mailbox status
8649 * (and prefix it with x4000).
8650 */
James Smartda0436e2009-05-22 14:51:39 -04008651 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
James Smart05580562011-05-24 11:40:48 -04008652 if (bf_get(lpfc_mqe_status, mb) == MBX_SUCCESS)
8653 bf_set(lpfc_mqe_status, mb,
8654 (LPFC_MBX_ERROR_RANGE | mcqe_status));
James Smartda0436e2009-05-22 14:51:39 -04008655 rc = MBXERR_ERROR;
James Smartd7c47992010-06-08 18:31:54 -04008656 } else
8657 lpfc_sli4_swap_str(phba, mboxq);
James Smartda0436e2009-05-22 14:51:39 -04008658
8659 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04008660 "(%d):0356 Mailbox cmd x%x (x%x/x%x) Status x%x "
James Smartda0436e2009-05-22 14:51:39 -04008661 "Data: x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x x%x"
8662 " x%x x%x CQ: x%x x%x x%x x%x\n",
James Smarta183a152011-10-10 21:32:43 -04008663 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
8664 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
8665 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04008666 bf_get(lpfc_mqe_status, mb),
8667 mb->un.mb_words[0], mb->un.mb_words[1],
8668 mb->un.mb_words[2], mb->un.mb_words[3],
8669 mb->un.mb_words[4], mb->un.mb_words[5],
8670 mb->un.mb_words[6], mb->un.mb_words[7],
8671 mb->un.mb_words[8], mb->un.mb_words[9],
8672 mb->un.mb_words[10], mb->un.mb_words[11],
8673 mb->un.mb_words[12], mboxq->mcqe.word0,
8674 mboxq->mcqe.mcqe_tag0, mboxq->mcqe.mcqe_tag1,
8675 mboxq->mcqe.trailer);
8676exit:
8677 /* We are holding the token, no needed for lock when release */
8678 spin_lock_irqsave(&phba->hbalock, iflag);
8679 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
8680 phba->sli.mbox_active = NULL;
8681 spin_unlock_irqrestore(&phba->hbalock, iflag);
8682 return rc;
8683}
8684
8685/**
8686 * lpfc_sli_issue_mbox_s4 - Issue an SLI4 mailbox command to firmware
8687 * @phba: Pointer to HBA context object.
8688 * @pmbox: Pointer to mailbox object.
8689 * @flag: Flag indicating how the mailbox need to be processed.
8690 *
8691 * This function is called by discovery code and HBA management code to submit
8692 * a mailbox command to firmware with SLI-4 interface spec.
8693 *
8694 * Return codes the caller owns the mailbox command after the return of the
8695 * function.
8696 **/
8697static int
8698lpfc_sli_issue_mbox_s4(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq,
8699 uint32_t flag)
8700{
8701 struct lpfc_sli *psli = &phba->sli;
8702 unsigned long iflags;
8703 int rc;
8704
James Smartb76f2dc2011-07-22 18:37:42 -04008705 /* dump from issue mailbox command if setup */
8706 lpfc_idiag_mbxacc_dump_issue_mbox(phba, &mboxq->u.mb);
8707
James Smart8fa38512009-07-19 10:01:03 -04008708 rc = lpfc_mbox_dev_check(phba);
8709 if (unlikely(rc)) {
8710 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04008711 "(%d):2544 Mailbox command x%x (x%x/x%x) "
James Smart8fa38512009-07-19 10:01:03 -04008712 "cannot issue Data: x%x x%x\n",
8713 mboxq->vport ? mboxq->vport->vpi : 0,
8714 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04008715 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
8716 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smart8fa38512009-07-19 10:01:03 -04008717 psli->sli_flag, flag);
8718 goto out_not_finished;
8719 }
8720
James Smartda0436e2009-05-22 14:51:39 -04008721 /* Detect polling mode and jump to a handler */
8722 if (!phba->sli4_hba.intr_enable) {
8723 if (flag == MBX_POLL)
8724 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
8725 else
8726 rc = -EIO;
8727 if (rc != MBX_SUCCESS)
James Smart05580562011-05-24 11:40:48 -04008728 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
James Smartda0436e2009-05-22 14:51:39 -04008729 "(%d):2541 Mailbox command x%x "
James Smartcc459f12012-05-09 21:18:30 -04008730 "(x%x/x%x) failure: "
8731 "mqe_sta: x%x mcqe_sta: x%x/x%x "
8732 "Data: x%x x%x\n,",
James Smartda0436e2009-05-22 14:51:39 -04008733 mboxq->vport ? mboxq->vport->vpi : 0,
8734 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04008735 lpfc_sli_config_mbox_subsys_get(phba,
8736 mboxq),
8737 lpfc_sli_config_mbox_opcode_get(phba,
8738 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04008739 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
8740 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
8741 bf_get(lpfc_mcqe_ext_status,
8742 &mboxq->mcqe),
James Smartda0436e2009-05-22 14:51:39 -04008743 psli->sli_flag, flag);
8744 return rc;
8745 } else if (flag == MBX_POLL) {
James Smartf1126682009-06-10 17:22:44 -04008746 lpfc_printf_log(phba, KERN_WARNING, LOG_MBOX | LOG_SLI,
8747 "(%d):2542 Try to issue mailbox command "
James Smart7365f6f2018-02-22 08:18:46 -08008748 "x%x (x%x/x%x) synchronously ahead of async "
James Smartf1126682009-06-10 17:22:44 -04008749 "mailbox command queue: x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04008750 mboxq->vport ? mboxq->vport->vpi : 0,
8751 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04008752 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
8753 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04008754 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04008755 /* Try to block the asynchronous mailbox posting */
8756 rc = lpfc_sli4_async_mbox_block(phba);
8757 if (!rc) {
8758 /* Successfully blocked, now issue sync mbox cmd */
8759 rc = lpfc_sli4_post_sync_mbox(phba, mboxq);
8760 if (rc != MBX_SUCCESS)
James Smartcc459f12012-05-09 21:18:30 -04008761 lpfc_printf_log(phba, KERN_WARNING,
James Smarta183a152011-10-10 21:32:43 -04008762 LOG_MBOX | LOG_SLI,
James Smartcc459f12012-05-09 21:18:30 -04008763 "(%d):2597 Sync Mailbox command "
8764 "x%x (x%x/x%x) failure: "
8765 "mqe_sta: x%x mcqe_sta: x%x/x%x "
8766 "Data: x%x x%x\n,",
8767 mboxq->vport ? mboxq->vport->vpi : 0,
James Smarta183a152011-10-10 21:32:43 -04008768 mboxq->u.mb.mbxCommand,
8769 lpfc_sli_config_mbox_subsys_get(phba,
8770 mboxq),
8771 lpfc_sli_config_mbox_opcode_get(phba,
8772 mboxq),
James Smartcc459f12012-05-09 21:18:30 -04008773 bf_get(lpfc_mqe_status, &mboxq->u.mqe),
8774 bf_get(lpfc_mcqe_status, &mboxq->mcqe),
8775 bf_get(lpfc_mcqe_ext_status,
8776 &mboxq->mcqe),
James Smarta183a152011-10-10 21:32:43 -04008777 psli->sli_flag, flag);
James Smartf1126682009-06-10 17:22:44 -04008778 /* Unblock the async mailbox posting afterward */
8779 lpfc_sli4_async_mbox_unblock(phba);
8780 }
8781 return rc;
James Smartda0436e2009-05-22 14:51:39 -04008782 }
8783
8784 /* Now, interrupt mode asynchrous mailbox command */
8785 rc = lpfc_mbox_cmd_check(phba, mboxq);
8786 if (rc) {
8787 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04008788 "(%d):2543 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04008789 "cannot issue Data: x%x x%x\n",
8790 mboxq->vport ? mboxq->vport->vpi : 0,
8791 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04008792 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
8793 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04008794 psli->sli_flag, flag);
8795 goto out_not_finished;
8796 }
James Smartda0436e2009-05-22 14:51:39 -04008797
8798 /* Put the mailbox command to the driver internal FIFO */
8799 psli->slistat.mbox_busy++;
8800 spin_lock_irqsave(&phba->hbalock, iflags);
8801 lpfc_mbox_put(phba, mboxq);
8802 spin_unlock_irqrestore(&phba->hbalock, iflags);
8803 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
8804 "(%d):0354 Mbox cmd issue - Enqueue Data: "
James Smarta183a152011-10-10 21:32:43 -04008805 "x%x (x%x/x%x) x%x x%x x%x\n",
James Smartda0436e2009-05-22 14:51:39 -04008806 mboxq->vport ? mboxq->vport->vpi : 0xffffff,
8807 bf_get(lpfc_mqe_command, &mboxq->u.mqe),
James Smarta183a152011-10-10 21:32:43 -04008808 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
8809 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04008810 phba->pport->port_state,
8811 psli->sli_flag, MBX_NOWAIT);
8812 /* Wake up worker thread to transport mailbox command from head */
8813 lpfc_worker_wake_up(phba);
8814
8815 return MBX_BUSY;
8816
8817out_not_finished:
8818 return MBX_NOT_FINISHED;
8819}
8820
8821/**
8822 * lpfc_sli4_post_async_mbox - Post an SLI4 mailbox command to device
8823 * @phba: Pointer to HBA context object.
8824 *
8825 * This function is called by worker thread to send a mailbox command to
8826 * SLI4 HBA firmware.
8827 *
8828 **/
8829int
8830lpfc_sli4_post_async_mbox(struct lpfc_hba *phba)
8831{
8832 struct lpfc_sli *psli = &phba->sli;
8833 LPFC_MBOXQ_t *mboxq;
8834 int rc = MBX_SUCCESS;
8835 unsigned long iflags;
8836 struct lpfc_mqe *mqe;
8837 uint32_t mbx_cmnd;
8838
8839 /* Check interrupt mode before post async mailbox command */
8840 if (unlikely(!phba->sli4_hba.intr_enable))
8841 return MBX_NOT_FINISHED;
8842
8843 /* Check for mailbox command service token */
8844 spin_lock_irqsave(&phba->hbalock, iflags);
8845 if (unlikely(psli->sli_flag & LPFC_SLI_ASYNC_MBX_BLK)) {
8846 spin_unlock_irqrestore(&phba->hbalock, iflags);
8847 return MBX_NOT_FINISHED;
8848 }
8849 if (psli->sli_flag & LPFC_SLI_MBOX_ACTIVE) {
8850 spin_unlock_irqrestore(&phba->hbalock, iflags);
8851 return MBX_NOT_FINISHED;
8852 }
8853 if (unlikely(phba->sli.mbox_active)) {
8854 spin_unlock_irqrestore(&phba->hbalock, iflags);
8855 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
8856 "0384 There is pending active mailbox cmd\n");
8857 return MBX_NOT_FINISHED;
8858 }
8859 /* Take the mailbox command service token */
8860 psli->sli_flag |= LPFC_SLI_MBOX_ACTIVE;
8861
8862 /* Get the next mailbox command from head of queue */
8863 mboxq = lpfc_mbox_get(phba);
8864
8865 /* If no more mailbox command waiting for post, we're done */
8866 if (!mboxq) {
8867 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
8868 spin_unlock_irqrestore(&phba->hbalock, iflags);
8869 return MBX_SUCCESS;
8870 }
8871 phba->sli.mbox_active = mboxq;
8872 spin_unlock_irqrestore(&phba->hbalock, iflags);
8873
8874 /* Check device readiness for posting mailbox command */
8875 rc = lpfc_mbox_dev_check(phba);
8876 if (unlikely(rc))
8877 /* Driver clean routine will clean up pending mailbox */
8878 goto out_not_finished;
8879
8880 /* Prepare the mbox command to be posted */
8881 mqe = &mboxq->u.mqe;
8882 mbx_cmnd = bf_get(lpfc_mqe_command, mqe);
8883
8884 /* Start timer for the mbox_tmo and log some mailbox post messages */
8885 mod_timer(&psli->mbox_tmo, (jiffies +
James Smart256ec0d2013-04-17 20:14:58 -04008886 msecs_to_jiffies(1000 * lpfc_mbox_tmo_val(phba, mboxq))));
James Smartda0436e2009-05-22 14:51:39 -04008887
8888 lpfc_printf_log(phba, KERN_INFO, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04008889 "(%d):0355 Mailbox cmd x%x (x%x/x%x) issue Data: "
James Smartda0436e2009-05-22 14:51:39 -04008890 "x%x x%x\n",
8891 mboxq->vport ? mboxq->vport->vpi : 0, mbx_cmnd,
James Smarta183a152011-10-10 21:32:43 -04008892 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
8893 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04008894 phba->pport->port_state, psli->sli_flag);
8895
8896 if (mbx_cmnd != MBX_HEARTBEAT) {
8897 if (mboxq->vport) {
8898 lpfc_debugfs_disc_trc(mboxq->vport,
8899 LPFC_DISC_TRC_MBOX_VPORT,
8900 "MBOX Send vport: cmd:x%x mb:x%x x%x",
8901 mbx_cmnd, mqe->un.mb_words[0],
8902 mqe->un.mb_words[1]);
8903 } else {
8904 lpfc_debugfs_disc_trc(phba->pport,
8905 LPFC_DISC_TRC_MBOX,
8906 "MBOX Send: cmd:x%x mb:x%x x%x",
8907 mbx_cmnd, mqe->un.mb_words[0],
8908 mqe->un.mb_words[1]);
8909 }
8910 }
8911 psli->slistat.mbox_cmd++;
8912
8913 /* Post the mailbox command to the port */
8914 rc = lpfc_sli4_mq_put(phba->sli4_hba.mbx_wq, mqe);
8915 if (rc != MBX_SUCCESS) {
8916 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX | LOG_SLI,
James Smarta183a152011-10-10 21:32:43 -04008917 "(%d):2533 Mailbox command x%x (x%x/x%x) "
James Smartda0436e2009-05-22 14:51:39 -04008918 "cannot issue Data: x%x x%x\n",
8919 mboxq->vport ? mboxq->vport->vpi : 0,
8920 mboxq->u.mb.mbxCommand,
James Smarta183a152011-10-10 21:32:43 -04008921 lpfc_sli_config_mbox_subsys_get(phba, mboxq),
8922 lpfc_sli_config_mbox_opcode_get(phba, mboxq),
James Smartda0436e2009-05-22 14:51:39 -04008923 psli->sli_flag, MBX_NOWAIT);
8924 goto out_not_finished;
8925 }
8926
8927 return rc;
8928
8929out_not_finished:
8930 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartd7069f02012-03-01 22:36:29 -05008931 if (phba->sli.mbox_active) {
8932 mboxq->u.mb.mbxStatus = MBX_NOT_FINISHED;
8933 __lpfc_mbox_cmpl_put(phba, mboxq);
8934 /* Release the token */
8935 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
8936 phba->sli.mbox_active = NULL;
8937 }
James Smartda0436e2009-05-22 14:51:39 -04008938 spin_unlock_irqrestore(&phba->hbalock, iflags);
8939
8940 return MBX_NOT_FINISHED;
8941}
8942
8943/**
8944 * lpfc_sli_issue_mbox - Wrapper func for issuing mailbox command
8945 * @phba: Pointer to HBA context object.
8946 * @pmbox: Pointer to mailbox object.
8947 * @flag: Flag indicating how the mailbox need to be processed.
8948 *
8949 * This routine wraps the actual SLI3 or SLI4 mailbox issuing routine from
8950 * the API jump table function pointer from the lpfc_hba struct.
8951 *
8952 * Return codes the caller owns the mailbox command after the return of the
8953 * function.
8954 **/
8955int
8956lpfc_sli_issue_mbox(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmbox, uint32_t flag)
8957{
8958 return phba->lpfc_sli_issue_mbox(phba, pmbox, flag);
8959}
8960
8961/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008962 * lpfc_mbox_api_table_setup - Set up mbox api function jump table
James Smartda0436e2009-05-22 14:51:39 -04008963 * @phba: The hba struct for which this call is being executed.
8964 * @dev_grp: The HBA PCI-Device group number.
8965 *
8966 * This routine sets up the mbox interface API function jump table in @phba
8967 * struct.
8968 * Returns: 0 - success, -ENODEV - failure.
8969 **/
8970int
8971lpfc_mbox_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
8972{
8973
8974 switch (dev_grp) {
8975 case LPFC_PCI_DEV_LP:
8976 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s3;
8977 phba->lpfc_sli_handle_slow_ring_event =
8978 lpfc_sli_handle_slow_ring_event_s3;
8979 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s3;
8980 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s3;
8981 phba->lpfc_sli_brdready = lpfc_sli_brdready_s3;
8982 break;
8983 case LPFC_PCI_DEV_OC:
8984 phba->lpfc_sli_issue_mbox = lpfc_sli_issue_mbox_s4;
8985 phba->lpfc_sli_handle_slow_ring_event =
8986 lpfc_sli_handle_slow_ring_event_s4;
8987 phba->lpfc_sli_hbq_to_firmware = lpfc_sli_hbq_to_firmware_s4;
8988 phba->lpfc_sli_brdrestart = lpfc_sli_brdrestart_s4;
8989 phba->lpfc_sli_brdready = lpfc_sli_brdready_s4;
8990 break;
8991 default:
8992 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
8993 "1420 Invalid HBA PCI-device group: 0x%x\n",
8994 dev_grp);
8995 return -ENODEV;
8996 break;
8997 }
8998 return 0;
8999}
9000
9001/**
James Smart3621a712009-04-06 18:47:14 -04009002 * __lpfc_sli_ringtx_put - Add an iocb to the txq
James Smarte59058c2008-08-24 21:49:00 -04009003 * @phba: Pointer to HBA context object.
9004 * @pring: Pointer to driver SLI ring object.
9005 * @piocb: Pointer to address of newly added command iocb.
9006 *
James Smart27f3efd2019-10-18 14:18:19 -07009007 * This function is called with hbalock held for SLI3 ports or
9008 * the ring lock held for SLI4 ports to add a command
James Smarte59058c2008-08-24 21:49:00 -04009009 * iocb to the txq when SLI layer cannot submit the command iocb
9010 * to the ring.
9011 **/
James Smart2a9bf3d2010-06-07 15:24:45 -04009012void
James Smart92d7f7b2007-06-17 19:56:38 -05009013__lpfc_sli_ringtx_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05009014 struct lpfc_iocbq *piocb)
dea31012005-04-17 16:05:31 -05009015{
James Smart27f3efd2019-10-18 14:18:19 -07009016 if (phba->sli_rev == LPFC_SLI_REV4)
9017 lockdep_assert_held(&pring->ring_lock);
9018 else
9019 lockdep_assert_held(&phba->hbalock);
dea31012005-04-17 16:05:31 -05009020 /* Insert the caller's iocb in the txq tail for later processing. */
9021 list_add_tail(&piocb->list, &pring->txq);
dea31012005-04-17 16:05:31 -05009022}
9023
James Smarte59058c2008-08-24 21:49:00 -04009024/**
James Smart3621a712009-04-06 18:47:14 -04009025 * lpfc_sli_next_iocb - Get the next iocb in the txq
James Smarte59058c2008-08-24 21:49:00 -04009026 * @phba: Pointer to HBA context object.
9027 * @pring: Pointer to driver SLI ring object.
9028 * @piocb: Pointer to address of newly added command iocb.
9029 *
9030 * This function is called with hbalock held before a new
9031 * iocb is submitted to the firmware. This function checks
9032 * txq to flush the iocbs in txq to Firmware before
9033 * submitting new iocbs to the Firmware.
9034 * If there are iocbs in the txq which need to be submitted
9035 * to firmware, lpfc_sli_next_iocb returns the first element
9036 * of the txq after dequeuing it from txq.
9037 * If there is no iocb in the txq then the function will return
9038 * *piocb and *piocb is set to NULL. Caller needs to check
9039 * *piocb to find if there are more commands in the txq.
9040 **/
dea31012005-04-17 16:05:31 -05009041static struct lpfc_iocbq *
9042lpfc_sli_next_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -05009043 struct lpfc_iocbq **piocb)
dea31012005-04-17 16:05:31 -05009044{
9045 struct lpfc_iocbq * nextiocb;
9046
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01009047 lockdep_assert_held(&phba->hbalock);
9048
dea31012005-04-17 16:05:31 -05009049 nextiocb = lpfc_sli_ringtx_get(phba, pring);
9050 if (!nextiocb) {
9051 nextiocb = *piocb;
9052 *piocb = NULL;
9053 }
9054
9055 return nextiocb;
9056}
9057
James Smarte59058c2008-08-24 21:49:00 -04009058/**
James Smart3772a992009-05-22 14:50:54 -04009059 * __lpfc_sli_issue_iocb_s3 - SLI3 device lockless ver of lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -04009060 * @phba: Pointer to HBA context object.
James Smart3772a992009-05-22 14:50:54 -04009061 * @ring_number: SLI ring number to issue iocb on.
James Smarte59058c2008-08-24 21:49:00 -04009062 * @piocb: Pointer to command iocb.
9063 * @flag: Flag indicating if this command can be put into txq.
9064 *
James Smart3772a992009-05-22 14:50:54 -04009065 * __lpfc_sli_issue_iocb_s3 is used by other functions in the driver to issue
9066 * an iocb command to an HBA with SLI-3 interface spec. If the PCI slot is
9067 * recovering from error state, if HBA is resetting or if LPFC_STOP_IOCB_EVENT
9068 * flag is turned on, the function returns IOCB_ERROR. When the link is down,
9069 * this function allows only iocbs for posting buffers. This function finds
9070 * next available slot in the command ring and posts the command to the
9071 * available slot and writes the port attention register to request HBA start
9072 * processing new iocb. If there is no slot available in the ring and
9073 * flag & SLI_IOCB_RET_IOCB is set, the new iocb is added to the txq, otherwise
9074 * the function returns IOCB_BUSY.
James Smarte59058c2008-08-24 21:49:00 -04009075 *
James Smart3772a992009-05-22 14:50:54 -04009076 * This function is called with hbalock held. The function will return success
9077 * after it successfully submit the iocb to firmware or after adding to the
9078 * txq.
James Smarte59058c2008-08-24 21:49:00 -04009079 **/
James Smart98c9ea52007-10-27 13:37:33 -04009080static int
James Smart3772a992009-05-22 14:50:54 -04009081__lpfc_sli_issue_iocb_s3(struct lpfc_hba *phba, uint32_t ring_number,
dea31012005-04-17 16:05:31 -05009082 struct lpfc_iocbq *piocb, uint32_t flag)
9083{
9084 struct lpfc_iocbq *nextiocb;
9085 IOCB_t *iocb;
James Smart895427b2017-02-12 13:52:30 -08009086 struct lpfc_sli_ring *pring = &phba->sli.sli3_ring[ring_number];
dea31012005-04-17 16:05:31 -05009087
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01009088 lockdep_assert_held(&phba->hbalock);
9089
James Smart92d7f7b2007-06-17 19:56:38 -05009090 if (piocb->iocb_cmpl && (!piocb->vport) &&
9091 (piocb->iocb.ulpCommand != CMD_ABORT_XRI_CN) &&
9092 (piocb->iocb.ulpCommand != CMD_CLOSE_XRI_CN)) {
9093 lpfc_printf_log(phba, KERN_ERR,
9094 LOG_SLI | LOG_VPORT,
James Smarte8b62012007-08-02 11:10:09 -04009095 "1807 IOCB x%x failed. No vport\n",
James Smart92d7f7b2007-06-17 19:56:38 -05009096 piocb->iocb.ulpCommand);
9097 dump_stack();
9098 return IOCB_ERROR;
9099 }
9100
9101
Linas Vepstas8d63f372007-02-14 14:28:36 -06009102 /* If the PCI channel is in offline state, do not post iocbs. */
9103 if (unlikely(pci_channel_offline(phba->pcidev)))
9104 return IOCB_ERROR;
9105
James Smarta257bf92009-04-06 18:48:10 -04009106 /* If HBA has a deferred error attention, fail the iocb. */
9107 if (unlikely(phba->hba_flag & DEFER_ERATT))
9108 return IOCB_ERROR;
9109
dea31012005-04-17 16:05:31 -05009110 /*
9111 * We should never get an IOCB if we are in a < LINK_DOWN state
9112 */
James Smart2e0fef82007-06-17 19:56:36 -05009113 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
dea31012005-04-17 16:05:31 -05009114 return IOCB_ERROR;
9115
9116 /*
9117 * Check to see if we are blocking IOCB processing because of a
James Smart0b727fe2007-10-27 13:37:25 -04009118 * outstanding event.
dea31012005-04-17 16:05:31 -05009119 */
James Smart0b727fe2007-10-27 13:37:25 -04009120 if (unlikely(pring->flag & LPFC_STOP_IOCB_EVENT))
dea31012005-04-17 16:05:31 -05009121 goto iocb_busy;
9122
James Smart2e0fef82007-06-17 19:56:36 -05009123 if (unlikely(phba->link_state == LPFC_LINK_DOWN)) {
dea31012005-04-17 16:05:31 -05009124 /*
James Smart2680eea2007-04-25 09:52:55 -04009125 * Only CREATE_XRI, CLOSE_XRI, and QUE_RING_BUF
dea31012005-04-17 16:05:31 -05009126 * can be issued if the link is not up.
9127 */
9128 switch (piocb->iocb.ulpCommand) {
James Smart84774a42008-08-24 21:50:06 -04009129 case CMD_GEN_REQUEST64_CR:
9130 case CMD_GEN_REQUEST64_CX:
9131 if (!(phba->sli.sli_flag & LPFC_MENLO_MAINT) ||
9132 (piocb->iocb.un.genreq64.w5.hcsw.Rctl !=
James Smart6a9c52c2009-10-02 15:16:51 -04009133 FC_RCTL_DD_UNSOL_CMD) ||
James Smart84774a42008-08-24 21:50:06 -04009134 (piocb->iocb.un.genreq64.w5.hcsw.Type !=
9135 MENLO_TRANSPORT_TYPE))
9136
9137 goto iocb_busy;
9138 break;
dea31012005-04-17 16:05:31 -05009139 case CMD_QUE_RING_BUF_CN:
9140 case CMD_QUE_RING_BUF64_CN:
dea31012005-04-17 16:05:31 -05009141 /*
9142 * For IOCBs, like QUE_RING_BUF, that have no rsp ring
9143 * completion, iocb_cmpl MUST be 0.
9144 */
9145 if (piocb->iocb_cmpl)
9146 piocb->iocb_cmpl = NULL;
9147 /*FALLTHROUGH*/
9148 case CMD_CREATE_XRI_CR:
James Smart2680eea2007-04-25 09:52:55 -04009149 case CMD_CLOSE_XRI_CN:
9150 case CMD_CLOSE_XRI_CX:
dea31012005-04-17 16:05:31 -05009151 break;
9152 default:
9153 goto iocb_busy;
9154 }
9155
9156 /*
9157 * For FCP commands, we must be in a state where we can process link
9158 * attention events.
9159 */
James Smart895427b2017-02-12 13:52:30 -08009160 } else if (unlikely(pring->ringno == LPFC_FCP_RING &&
James Smart92d7f7b2007-06-17 19:56:38 -05009161 !(phba->sli.sli_flag & LPFC_PROCESS_LA))) {
dea31012005-04-17 16:05:31 -05009162 goto iocb_busy;
James Smart92d7f7b2007-06-17 19:56:38 -05009163 }
dea31012005-04-17 16:05:31 -05009164
dea31012005-04-17 16:05:31 -05009165 while ((iocb = lpfc_sli_next_iocb_slot(phba, pring)) &&
9166 (nextiocb = lpfc_sli_next_iocb(phba, pring, &piocb)))
9167 lpfc_sli_submit_iocb(phba, pring, iocb, nextiocb);
9168
9169 if (iocb)
9170 lpfc_sli_update_ring(phba, pring);
9171 else
9172 lpfc_sli_update_full_ring(phba, pring);
9173
9174 if (!piocb)
9175 return IOCB_SUCCESS;
9176
9177 goto out_busy;
9178
9179 iocb_busy:
9180 pring->stats.iocb_cmd_delay++;
9181
9182 out_busy:
9183
9184 if (!(flag & SLI_IOCB_RET_IOCB)) {
James Smart92d7f7b2007-06-17 19:56:38 -05009185 __lpfc_sli_ringtx_put(phba, pring, piocb);
dea31012005-04-17 16:05:31 -05009186 return IOCB_SUCCESS;
9187 }
9188
9189 return IOCB_BUSY;
9190}
9191
James Smart3772a992009-05-22 14:50:54 -04009192/**
James Smart4f774512009-05-22 14:52:35 -04009193 * lpfc_sli4_bpl2sgl - Convert the bpl/bde to a sgl.
9194 * @phba: Pointer to HBA context object.
9195 * @piocb: Pointer to command iocb.
9196 * @sglq: Pointer to the scatter gather queue object.
9197 *
9198 * This routine converts the bpl or bde that is in the IOCB
9199 * to a sgl list for the sli4 hardware. The physical address
9200 * of the bpl/bde is converted back to a virtual address.
9201 * If the IOCB contains a BPL then the list of BDE's is
9202 * converted to sli4_sge's. If the IOCB contains a single
9203 * BDE then it is converted to a single sli_sge.
9204 * The IOCB is still in cpu endianess so the contents of
9205 * the bpl can be used without byte swapping.
9206 *
9207 * Returns valid XRI = Success, NO_XRI = Failure.
9208**/
9209static uint16_t
9210lpfc_sli4_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq,
9211 struct lpfc_sglq *sglq)
9212{
9213 uint16_t xritag = NO_XRI;
9214 struct ulp_bde64 *bpl = NULL;
9215 struct ulp_bde64 bde;
9216 struct sli4_sge *sgl = NULL;
James Smart1b511972011-12-13 13:23:09 -05009217 struct lpfc_dmabuf *dmabuf;
James Smart4f774512009-05-22 14:52:35 -04009218 IOCB_t *icmd;
9219 int numBdes = 0;
9220 int i = 0;
James Smart63e801c2010-11-20 23:14:19 -05009221 uint32_t offset = 0; /* accumulated offset in the sg request list */
9222 int inbound = 0; /* number of sg reply entries inbound from firmware */
James Smart4f774512009-05-22 14:52:35 -04009223
9224 if (!piocbq || !sglq)
9225 return xritag;
9226
9227 sgl = (struct sli4_sge *)sglq->sgl;
9228 icmd = &piocbq->iocb;
James Smart6b5151f2012-01-18 16:24:06 -05009229 if (icmd->ulpCommand == CMD_XMIT_BLS_RSP64_CX)
9230 return sglq->sli4_xritag;
James Smart4f774512009-05-22 14:52:35 -04009231 if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
9232 numBdes = icmd->un.genreq64.bdl.bdeSize /
9233 sizeof(struct ulp_bde64);
9234 /* The addrHigh and addrLow fields within the IOCB
9235 * have not been byteswapped yet so there is no
9236 * need to swap them back.
9237 */
James Smart1b511972011-12-13 13:23:09 -05009238 if (piocbq->context3)
9239 dmabuf = (struct lpfc_dmabuf *)piocbq->context3;
9240 else
9241 return xritag;
James Smart4f774512009-05-22 14:52:35 -04009242
James Smart1b511972011-12-13 13:23:09 -05009243 bpl = (struct ulp_bde64 *)dmabuf->virt;
James Smart4f774512009-05-22 14:52:35 -04009244 if (!bpl)
9245 return xritag;
9246
9247 for (i = 0; i < numBdes; i++) {
9248 /* Should already be byte swapped. */
James Smart28baac72010-02-12 14:42:03 -05009249 sgl->addr_hi = bpl->addrHigh;
9250 sgl->addr_lo = bpl->addrLow;
9251
James Smart05580562011-05-24 11:40:48 -04009252 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04009253 if ((i+1) == numBdes)
9254 bf_set(lpfc_sli4_sge_last, sgl, 1);
9255 else
9256 bf_set(lpfc_sli4_sge_last, sgl, 0);
James Smart28baac72010-02-12 14:42:03 -05009257 /* swap the size field back to the cpu so we
9258 * can assign it to the sgl.
9259 */
9260 bde.tus.w = le32_to_cpu(bpl->tus.w);
9261 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
James Smart63e801c2010-11-20 23:14:19 -05009262 /* The offsets in the sgl need to be accumulated
9263 * separately for the request and reply lists.
9264 * The request is always first, the reply follows.
9265 */
9266 if (piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) {
9267 /* add up the reply sg entries */
9268 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
9269 inbound++;
9270 /* first inbound? reset the offset */
9271 if (inbound == 1)
9272 offset = 0;
9273 bf_set(lpfc_sli4_sge_offset, sgl, offset);
James Smartf9bb2da2011-10-10 21:34:11 -04009274 bf_set(lpfc_sli4_sge_type, sgl,
9275 LPFC_SGE_TYPE_DATA);
James Smart63e801c2010-11-20 23:14:19 -05009276 offset += bde.tus.f.bdeSize;
9277 }
James Smart546fc852011-03-11 16:06:29 -05009278 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04009279 bpl++;
9280 sgl++;
9281 }
9282 } else if (icmd->un.genreq64.bdl.bdeFlags == BUFF_TYPE_BDE_64) {
9283 /* The addrHigh and addrLow fields of the BDE have not
9284 * been byteswapped yet so they need to be swapped
9285 * before putting them in the sgl.
9286 */
9287 sgl->addr_hi =
9288 cpu_to_le32(icmd->un.genreq64.bdl.addrHigh);
9289 sgl->addr_lo =
9290 cpu_to_le32(icmd->un.genreq64.bdl.addrLow);
James Smart05580562011-05-24 11:40:48 -04009291 sgl->word2 = le32_to_cpu(sgl->word2);
James Smart4f774512009-05-22 14:52:35 -04009292 bf_set(lpfc_sli4_sge_last, sgl, 1);
9293 sgl->word2 = cpu_to_le32(sgl->word2);
James Smart28baac72010-02-12 14:42:03 -05009294 sgl->sge_len =
9295 cpu_to_le32(icmd->un.genreq64.bdl.bdeSize);
James Smart4f774512009-05-22 14:52:35 -04009296 }
9297 return sglq->sli4_xritag;
9298}
9299
9300/**
James Smart4f774512009-05-22 14:52:35 -04009301 * lpfc_sli_iocb2wqe - Convert the IOCB to a work queue entry.
9302 * @phba: Pointer to HBA context object.
9303 * @piocb: Pointer to command iocb.
9304 * @wqe: Pointer to the work queue entry.
9305 *
9306 * This routine converts the iocb command to its Work Queue Entry
9307 * equivalent. The wqe pointer should not have any fields set when
9308 * this routine is called because it will memcpy over them.
9309 * This routine does not set the CQ_ID or the WQEC bits in the
9310 * wqe.
9311 *
9312 * Returns: 0 = Success, IOCB_ERROR = Failure.
9313 **/
9314static int
9315lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
James Smart205e8242018-03-05 12:04:03 -08009316 union lpfc_wqe128 *wqe)
James Smart4f774512009-05-22 14:52:35 -04009317{
James Smart5ffc2662009-11-18 15:39:44 -05009318 uint32_t xmit_len = 0, total_len = 0;
James Smart4f774512009-05-22 14:52:35 -04009319 uint8_t ct = 0;
9320 uint32_t fip;
9321 uint32_t abort_tag;
9322 uint8_t command_type = ELS_COMMAND_NON_FIP;
9323 uint8_t cmnd;
9324 uint16_t xritag;
James Smartdcf2a4e2010-09-29 11:18:53 -04009325 uint16_t abrt_iotag;
9326 struct lpfc_iocbq *abrtiocbq;
James Smart4f774512009-05-22 14:52:35 -04009327 struct ulp_bde64 *bpl = NULL;
James Smartf0d9bcc2010-10-22 11:07:09 -04009328 uint32_t els_id = LPFC_ELS_ID_DEFAULT;
James Smart5ffc2662009-11-18 15:39:44 -05009329 int numBdes, i;
9330 struct ulp_bde64 bde;
James Smartc31098c2011-04-16 11:03:33 -04009331 struct lpfc_nodelist *ndlp;
James Smartff78d8f2011-12-13 13:21:35 -05009332 uint32_t *pcmd;
James Smart1b511972011-12-13 13:23:09 -05009333 uint32_t if_type;
James Smart4f774512009-05-22 14:52:35 -04009334
James Smart45ed1192009-10-02 15:17:02 -04009335 fip = phba->hba_flag & HBA_FIP_SUPPORT;
James Smart4f774512009-05-22 14:52:35 -04009336 /* The fcp commands will set command type */
James Smart0c287582009-06-10 17:22:56 -04009337 if (iocbq->iocb_flag & LPFC_IO_FCP)
James Smart4f774512009-05-22 14:52:35 -04009338 command_type = FCP_COMMAND;
James Smartc8685952009-11-18 15:39:16 -05009339 else if (fip && (iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK))
James Smart0c287582009-06-10 17:22:56 -04009340 command_type = ELS_COMMAND_FIP;
9341 else
9342 command_type = ELS_COMMAND_NON_FIP;
9343
James Smartb5c53952016-03-31 14:12:30 -07009344 if (phba->fcp_embed_io)
9345 memset(wqe, 0, sizeof(union lpfc_wqe128));
James Smart4f774512009-05-22 14:52:35 -04009346 /* Some of the fields are in the right position already */
9347 memcpy(wqe, &iocbq->iocb, sizeof(union lpfc_wqe));
James Smarte62245d2019-08-14 16:57:08 -07009348 /* The ct field has moved so reset */
9349 wqe->generic.wqe_com.word7 = 0;
9350 wqe->generic.wqe_com.word10 = 0;
James Smartb5c53952016-03-31 14:12:30 -07009351
9352 abort_tag = (uint32_t) iocbq->iotag;
9353 xritag = iocbq->sli4_xritag;
James Smart4f774512009-05-22 14:52:35 -04009354 /* words0-2 bpl convert bde */
9355 if (iocbq->iocb.un.genreq64.bdl.bdeFlags == BUFF_TYPE_BLP_64) {
James Smart5ffc2662009-11-18 15:39:44 -05009356 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
9357 sizeof(struct ulp_bde64);
James Smart4f774512009-05-22 14:52:35 -04009358 bpl = (struct ulp_bde64 *)
9359 ((struct lpfc_dmabuf *)iocbq->context3)->virt;
9360 if (!bpl)
9361 return IOCB_ERROR;
9362
9363 /* Should already be byte swapped. */
9364 wqe->generic.bde.addrHigh = le32_to_cpu(bpl->addrHigh);
9365 wqe->generic.bde.addrLow = le32_to_cpu(bpl->addrLow);
9366 /* swap the size field back to the cpu so we
9367 * can assign it to the sgl.
9368 */
9369 wqe->generic.bde.tus.w = le32_to_cpu(bpl->tus.w);
James Smart5ffc2662009-11-18 15:39:44 -05009370 xmit_len = wqe->generic.bde.tus.f.bdeSize;
9371 total_len = 0;
9372 for (i = 0; i < numBdes; i++) {
9373 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
9374 total_len += bde.tus.f.bdeSize;
9375 }
James Smart4f774512009-05-22 14:52:35 -04009376 } else
James Smart5ffc2662009-11-18 15:39:44 -05009377 xmit_len = iocbq->iocb.un.fcpi64.bdl.bdeSize;
James Smart4f774512009-05-22 14:52:35 -04009378
9379 iocbq->iocb.ulpIoTag = iocbq->iotag;
9380 cmnd = iocbq->iocb.ulpCommand;
9381
9382 switch (iocbq->iocb.ulpCommand) {
9383 case CMD_ELS_REQUEST64_CR:
James Smart93d1379e2012-05-09 21:19:34 -04009384 if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
9385 ndlp = iocbq->context_un.ndlp;
9386 else
9387 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04009388 if (!iocbq->iocb.ulpLe) {
9389 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9390 "2007 Only Limited Edition cmd Format"
9391 " supported 0x%x\n",
9392 iocbq->iocb.ulpCommand);
9393 return IOCB_ERROR;
9394 }
James Smartff78d8f2011-12-13 13:21:35 -05009395
James Smart5ffc2662009-11-18 15:39:44 -05009396 wqe->els_req.payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04009397 /* Els_reguest64 has a TMO */
9398 bf_set(wqe_tmo, &wqe->els_req.wqe_com,
9399 iocbq->iocb.ulpTimeout);
9400 /* Need a VF for word 4 set the vf bit*/
9401 bf_set(els_req64_vf, &wqe->els_req, 0);
9402 /* And a VFID for word 12 */
9403 bf_set(els_req64_vfid, &wqe->els_req, 0);
James Smart4f774512009-05-22 14:52:35 -04009404 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
James Smartf0d9bcc2010-10-22 11:07:09 -04009405 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
9406 iocbq->iocb.ulpContext);
9407 bf_set(wqe_ct, &wqe->els_req.wqe_com, ct);
9408 bf_set(wqe_pu, &wqe->els_req.wqe_com, 0);
James Smart4f774512009-05-22 14:52:35 -04009409 /* CCP CCPE PV PRI in word10 were set in the memcpy */
James Smartff78d8f2011-12-13 13:21:35 -05009410 if (command_type == ELS_COMMAND_FIP)
James Smartc8685952009-11-18 15:39:16 -05009411 els_id = ((iocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK)
9412 >> LPFC_FIP_ELS_ID_SHIFT);
James Smartff78d8f2011-12-13 13:21:35 -05009413 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
9414 iocbq->context2)->virt);
James Smart1b511972011-12-13 13:23:09 -05009415 if_type = bf_get(lpfc_sli_intf_if_type,
9416 &phba->sli4_hba.sli_intf);
James Smart27d6ac02018-02-22 08:18:42 -08009417 if (if_type >= LPFC_SLI_INTF_IF_TYPE_2) {
James Smartff78d8f2011-12-13 13:21:35 -05009418 if (pcmd && (*pcmd == ELS_CMD_FLOGI ||
James Smartcb69f7d2011-12-13 13:21:57 -05009419 *pcmd == ELS_CMD_SCR ||
James Smartf60cb932019-05-14 14:58:05 -07009420 *pcmd == ELS_CMD_RSCN_XMT ||
James Smart6b5151f2012-01-18 16:24:06 -05009421 *pcmd == ELS_CMD_FDISC ||
James Smartbdcd2b92012-03-01 22:33:52 -05009422 *pcmd == ELS_CMD_LOGO ||
James Smartff78d8f2011-12-13 13:21:35 -05009423 *pcmd == ELS_CMD_PLOGI)) {
9424 bf_set(els_req64_sp, &wqe->els_req, 1);
9425 bf_set(els_req64_sid, &wqe->els_req,
9426 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04009427 if ((*pcmd == ELS_CMD_FLOGI) &&
9428 !(phba->fc_topology ==
9429 LPFC_TOPOLOGY_LOOP))
9430 bf_set(els_req64_sid, &wqe->els_req, 0);
James Smartff78d8f2011-12-13 13:21:35 -05009431 bf_set(wqe_ct, &wqe->els_req.wqe_com, 1);
9432 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
James Smarta7dd9c02012-05-09 21:16:50 -04009433 phba->vpi_ids[iocbq->vport->vpi]);
James Smart3ef6d242012-01-18 16:23:48 -05009434 } else if (pcmd && iocbq->context1) {
James Smartff78d8f2011-12-13 13:21:35 -05009435 bf_set(wqe_ct, &wqe->els_req.wqe_com, 0);
9436 bf_set(wqe_ctxt_tag, &wqe->els_req.wqe_com,
9437 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
9438 }
James Smartc8685952009-11-18 15:39:16 -05009439 }
James Smart6d368e52011-05-24 11:44:12 -04009440 bf_set(wqe_temp_rpi, &wqe->els_req.wqe_com,
9441 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04009442 bf_set(wqe_els_id, &wqe->els_req.wqe_com, els_id);
9443 bf_set(wqe_dbde, &wqe->els_req.wqe_com, 1);
9444 bf_set(wqe_iod, &wqe->els_req.wqe_com, LPFC_WQE_IOD_READ);
9445 bf_set(wqe_qosd, &wqe->els_req.wqe_com, 1);
9446 bf_set(wqe_lenloc, &wqe->els_req.wqe_com, LPFC_WQE_LENLOC_NONE);
9447 bf_set(wqe_ebde_cnt, &wqe->els_req.wqe_com, 0);
James Smartaf227412013-10-10 12:23:10 -04009448 wqe->els_req.max_response_payload_len = total_len - xmit_len;
James Smart7851fe22011-07-22 18:36:52 -04009449 break;
James Smart5ffc2662009-11-18 15:39:44 -05009450 case CMD_XMIT_SEQUENCE64_CX:
James Smartf0d9bcc2010-10-22 11:07:09 -04009451 bf_set(wqe_ctxt_tag, &wqe->xmit_sequence.wqe_com,
9452 iocbq->iocb.un.ulpWord[3]);
9453 bf_set(wqe_rcvoxid, &wqe->xmit_sequence.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04009454 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart5ffc2662009-11-18 15:39:44 -05009455 /* The entire sequence is transmitted for this IOCB */
9456 xmit_len = total_len;
9457 cmnd = CMD_XMIT_SEQUENCE64_CR;
James Smart1b511972011-12-13 13:23:09 -05009458 if (phba->link_flag & LS_LOOPBACK_MODE)
9459 bf_set(wqe_xo, &wqe->xmit_sequence.wge_ctl, 1);
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -06009460 /* fall through */
James Smart4f774512009-05-22 14:52:35 -04009461 case CMD_XMIT_SEQUENCE64_CR:
James Smartf0d9bcc2010-10-22 11:07:09 -04009462 /* word3 iocb=io_tag32 wqe=reserved */
9463 wqe->xmit_sequence.rsvd3 = 0;
James Smart4f774512009-05-22 14:52:35 -04009464 /* word4 relative_offset memcpy */
9465 /* word5 r_ctl/df_ctl memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04009466 bf_set(wqe_pu, &wqe->xmit_sequence.wqe_com, 0);
9467 bf_set(wqe_dbde, &wqe->xmit_sequence.wqe_com, 1);
9468 bf_set(wqe_iod, &wqe->xmit_sequence.wqe_com,
9469 LPFC_WQE_IOD_WRITE);
9470 bf_set(wqe_lenloc, &wqe->xmit_sequence.wqe_com,
9471 LPFC_WQE_LENLOC_WORD12);
9472 bf_set(wqe_ebde_cnt, &wqe->xmit_sequence.wqe_com, 0);
James Smart5ffc2662009-11-18 15:39:44 -05009473 wqe->xmit_sequence.xmit_len = xmit_len;
9474 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04009475 break;
James Smart4f774512009-05-22 14:52:35 -04009476 case CMD_XMIT_BCAST64_CN:
James Smartf0d9bcc2010-10-22 11:07:09 -04009477 /* word3 iocb=iotag32 wqe=seq_payload_len */
9478 wqe->xmit_bcast64.seq_payload_len = xmit_len;
James Smart4f774512009-05-22 14:52:35 -04009479 /* word4 iocb=rsvd wqe=rsvd */
9480 /* word5 iocb=rctl/type/df_ctl wqe=rctl/type/df_ctl memcpy */
9481 /* word6 iocb=ctxt_tag/io_tag wqe=ctxt_tag/xri */
James Smartf0d9bcc2010-10-22 11:07:09 -04009482 bf_set(wqe_ct, &wqe->xmit_bcast64.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04009483 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
James Smartf0d9bcc2010-10-22 11:07:09 -04009484 bf_set(wqe_dbde, &wqe->xmit_bcast64.wqe_com, 1);
9485 bf_set(wqe_iod, &wqe->xmit_bcast64.wqe_com, LPFC_WQE_IOD_WRITE);
9486 bf_set(wqe_lenloc, &wqe->xmit_bcast64.wqe_com,
9487 LPFC_WQE_LENLOC_WORD3);
9488 bf_set(wqe_ebde_cnt, &wqe->xmit_bcast64.wqe_com, 0);
James Smart7851fe22011-07-22 18:36:52 -04009489 break;
James Smart4f774512009-05-22 14:52:35 -04009490 case CMD_FCP_IWRITE64_CR:
9491 command_type = FCP_COMMAND_DATA_OUT;
James Smartf0d9bcc2010-10-22 11:07:09 -04009492 /* word3 iocb=iotag wqe=payload_offset_len */
9493 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
James Smart0ba4b212013-10-10 12:22:38 -04009494 bf_set(payload_offset_len, &wqe->fcp_iwrite,
9495 xmit_len + sizeof(struct fcp_rsp));
9496 bf_set(cmd_buff_len, &wqe->fcp_iwrite,
9497 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04009498 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
9499 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
9500 bf_set(wqe_erp, &wqe->fcp_iwrite.wqe_com,
9501 iocbq->iocb.ulpFCP2Rcvy);
9502 bf_set(wqe_lnk, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpXS);
9503 /* Always open the exchange */
James Smartf0d9bcc2010-10-22 11:07:09 -04009504 bf_set(wqe_iod, &wqe->fcp_iwrite.wqe_com, LPFC_WQE_IOD_WRITE);
9505 bf_set(wqe_lenloc, &wqe->fcp_iwrite.wqe_com,
9506 LPFC_WQE_LENLOC_WORD4);
James Smartf0d9bcc2010-10-22 11:07:09 -04009507 bf_set(wqe_pu, &wqe->fcp_iwrite.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05009508 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 1);
James Smart1ba981f2014-02-20 09:56:45 -05009509 if (iocbq->iocb_flag & LPFC_IO_OAS) {
9510 bf_set(wqe_oas, &wqe->fcp_iwrite.wqe_com, 1);
James Smartc92c8412016-07-06 12:36:05 -07009511 bf_set(wqe_ccpe, &wqe->fcp_iwrite.wqe_com, 1);
9512 if (iocbq->priority) {
9513 bf_set(wqe_ccp, &wqe->fcp_iwrite.wqe_com,
9514 (iocbq->priority << 1));
9515 } else {
James Smart1ba981f2014-02-20 09:56:45 -05009516 bf_set(wqe_ccp, &wqe->fcp_iwrite.wqe_com,
9517 (phba->cfg_XLanePriority << 1));
9518 }
9519 }
James Smartb5c53952016-03-31 14:12:30 -07009520 /* Note, word 10 is already initialized to 0 */
9521
James Smart414abe02018-06-26 08:24:26 -07009522 /* Don't set PBDE for Perf hints, just lpfc_enable_pbde */
9523 if (phba->cfg_enable_pbde)
James Smart0bc2b7c2018-02-22 08:18:48 -08009524 bf_set(wqe_pbde, &wqe->fcp_iwrite.wqe_com, 1);
9525 else
9526 bf_set(wqe_pbde, &wqe->fcp_iwrite.wqe_com, 0);
9527
James Smartb5c53952016-03-31 14:12:30 -07009528 if (phba->fcp_embed_io) {
James Smartc4908502019-01-28 11:14:28 -08009529 struct lpfc_io_buf *lpfc_cmd;
James Smartb5c53952016-03-31 14:12:30 -07009530 struct sli4_sge *sgl;
James Smartb5c53952016-03-31 14:12:30 -07009531 struct fcp_cmnd *fcp_cmnd;
9532 uint32_t *ptr;
9533
9534 /* 128 byte wqe support here */
James Smartb5c53952016-03-31 14:12:30 -07009535
9536 lpfc_cmd = iocbq->context1;
James Smart0794d602019-01-28 11:14:19 -08009537 sgl = (struct sli4_sge *)lpfc_cmd->dma_sgl;
James Smartb5c53952016-03-31 14:12:30 -07009538 fcp_cmnd = lpfc_cmd->fcp_cmnd;
9539
9540 /* Word 0-2 - FCP_CMND */
James Smart205e8242018-03-05 12:04:03 -08009541 wqe->generic.bde.tus.f.bdeFlags =
James Smartb5c53952016-03-31 14:12:30 -07009542 BUFF_TYPE_BDE_IMMED;
James Smart205e8242018-03-05 12:04:03 -08009543 wqe->generic.bde.tus.f.bdeSize = sgl->sge_len;
9544 wqe->generic.bde.addrHigh = 0;
9545 wqe->generic.bde.addrLow = 88; /* Word 22 */
James Smartb5c53952016-03-31 14:12:30 -07009546
James Smart205e8242018-03-05 12:04:03 -08009547 bf_set(wqe_wqes, &wqe->fcp_iwrite.wqe_com, 1);
9548 bf_set(wqe_dbde, &wqe->fcp_iwrite.wqe_com, 0);
James Smartb5c53952016-03-31 14:12:30 -07009549
9550 /* Word 22-29 FCP CMND Payload */
James Smart205e8242018-03-05 12:04:03 -08009551 ptr = &wqe->words[22];
James Smartb5c53952016-03-31 14:12:30 -07009552 memcpy(ptr, fcp_cmnd, sizeof(struct fcp_cmnd));
9553 }
James Smart7851fe22011-07-22 18:36:52 -04009554 break;
James Smartf0d9bcc2010-10-22 11:07:09 -04009555 case CMD_FCP_IREAD64_CR:
9556 /* word3 iocb=iotag wqe=payload_offset_len */
9557 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
James Smart0ba4b212013-10-10 12:22:38 -04009558 bf_set(payload_offset_len, &wqe->fcp_iread,
9559 xmit_len + sizeof(struct fcp_rsp));
9560 bf_set(cmd_buff_len, &wqe->fcp_iread,
9561 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04009562 /* word4 iocb=parameter wqe=total_xfer_length memcpy */
9563 /* word5 iocb=initial_xfer_len wqe=initial_xfer_len memcpy */
9564 bf_set(wqe_erp, &wqe->fcp_iread.wqe_com,
9565 iocbq->iocb.ulpFCP2Rcvy);
9566 bf_set(wqe_lnk, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpXS);
James Smart4f774512009-05-22 14:52:35 -04009567 /* Always open the exchange */
James Smartf0d9bcc2010-10-22 11:07:09 -04009568 bf_set(wqe_iod, &wqe->fcp_iread.wqe_com, LPFC_WQE_IOD_READ);
9569 bf_set(wqe_lenloc, &wqe->fcp_iread.wqe_com,
9570 LPFC_WQE_LENLOC_WORD4);
James Smartf0d9bcc2010-10-22 11:07:09 -04009571 bf_set(wqe_pu, &wqe->fcp_iread.wqe_com, iocbq->iocb.ulpPU);
James Smartacd68592012-01-18 16:25:09 -05009572 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 1);
James Smart1ba981f2014-02-20 09:56:45 -05009573 if (iocbq->iocb_flag & LPFC_IO_OAS) {
9574 bf_set(wqe_oas, &wqe->fcp_iread.wqe_com, 1);
James Smartc92c8412016-07-06 12:36:05 -07009575 bf_set(wqe_ccpe, &wqe->fcp_iread.wqe_com, 1);
9576 if (iocbq->priority) {
9577 bf_set(wqe_ccp, &wqe->fcp_iread.wqe_com,
9578 (iocbq->priority << 1));
9579 } else {
James Smart1ba981f2014-02-20 09:56:45 -05009580 bf_set(wqe_ccp, &wqe->fcp_iread.wqe_com,
9581 (phba->cfg_XLanePriority << 1));
9582 }
9583 }
James Smartb5c53952016-03-31 14:12:30 -07009584 /* Note, word 10 is already initialized to 0 */
9585
James Smart414abe02018-06-26 08:24:26 -07009586 /* Don't set PBDE for Perf hints, just lpfc_enable_pbde */
9587 if (phba->cfg_enable_pbde)
James Smart0bc2b7c2018-02-22 08:18:48 -08009588 bf_set(wqe_pbde, &wqe->fcp_iread.wqe_com, 1);
9589 else
9590 bf_set(wqe_pbde, &wqe->fcp_iread.wqe_com, 0);
9591
James Smartb5c53952016-03-31 14:12:30 -07009592 if (phba->fcp_embed_io) {
James Smartc4908502019-01-28 11:14:28 -08009593 struct lpfc_io_buf *lpfc_cmd;
James Smartb5c53952016-03-31 14:12:30 -07009594 struct sli4_sge *sgl;
James Smartb5c53952016-03-31 14:12:30 -07009595 struct fcp_cmnd *fcp_cmnd;
9596 uint32_t *ptr;
9597
9598 /* 128 byte wqe support here */
James Smartb5c53952016-03-31 14:12:30 -07009599
9600 lpfc_cmd = iocbq->context1;
James Smart0794d602019-01-28 11:14:19 -08009601 sgl = (struct sli4_sge *)lpfc_cmd->dma_sgl;
James Smartb5c53952016-03-31 14:12:30 -07009602 fcp_cmnd = lpfc_cmd->fcp_cmnd;
9603
9604 /* Word 0-2 - FCP_CMND */
James Smart205e8242018-03-05 12:04:03 -08009605 wqe->generic.bde.tus.f.bdeFlags =
James Smartb5c53952016-03-31 14:12:30 -07009606 BUFF_TYPE_BDE_IMMED;
James Smart205e8242018-03-05 12:04:03 -08009607 wqe->generic.bde.tus.f.bdeSize = sgl->sge_len;
9608 wqe->generic.bde.addrHigh = 0;
9609 wqe->generic.bde.addrLow = 88; /* Word 22 */
James Smartb5c53952016-03-31 14:12:30 -07009610
James Smart205e8242018-03-05 12:04:03 -08009611 bf_set(wqe_wqes, &wqe->fcp_iread.wqe_com, 1);
9612 bf_set(wqe_dbde, &wqe->fcp_iread.wqe_com, 0);
James Smartb5c53952016-03-31 14:12:30 -07009613
9614 /* Word 22-29 FCP CMND Payload */
James Smart205e8242018-03-05 12:04:03 -08009615 ptr = &wqe->words[22];
James Smartb5c53952016-03-31 14:12:30 -07009616 memcpy(ptr, fcp_cmnd, sizeof(struct fcp_cmnd));
9617 }
James Smart7851fe22011-07-22 18:36:52 -04009618 break;
James Smartf1126682009-06-10 17:22:44 -04009619 case CMD_FCP_ICMND64_CR:
James Smart0ba4b212013-10-10 12:22:38 -04009620 /* word3 iocb=iotag wqe=payload_offset_len */
9621 /* Add the FCP_CMD and FCP_RSP sizes to get the offset */
9622 bf_set(payload_offset_len, &wqe->fcp_icmd,
9623 xmit_len + sizeof(struct fcp_rsp));
9624 bf_set(cmd_buff_len, &wqe->fcp_icmd,
9625 0);
James Smartf0d9bcc2010-10-22 11:07:09 -04009626 /* word3 iocb=IO_TAG wqe=reserved */
James Smartf0d9bcc2010-10-22 11:07:09 -04009627 bf_set(wqe_pu, &wqe->fcp_icmd.wqe_com, 0);
James Smartf1126682009-06-10 17:22:44 -04009628 /* Always open the exchange */
James Smartf0d9bcc2010-10-22 11:07:09 -04009629 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 1);
9630 bf_set(wqe_iod, &wqe->fcp_icmd.wqe_com, LPFC_WQE_IOD_WRITE);
9631 bf_set(wqe_qosd, &wqe->fcp_icmd.wqe_com, 1);
9632 bf_set(wqe_lenloc, &wqe->fcp_icmd.wqe_com,
9633 LPFC_WQE_LENLOC_NONE);
James Smart2a94aea2012-09-29 11:30:31 -04009634 bf_set(wqe_erp, &wqe->fcp_icmd.wqe_com,
9635 iocbq->iocb.ulpFCP2Rcvy);
James Smart1ba981f2014-02-20 09:56:45 -05009636 if (iocbq->iocb_flag & LPFC_IO_OAS) {
9637 bf_set(wqe_oas, &wqe->fcp_icmd.wqe_com, 1);
James Smartc92c8412016-07-06 12:36:05 -07009638 bf_set(wqe_ccpe, &wqe->fcp_icmd.wqe_com, 1);
9639 if (iocbq->priority) {
9640 bf_set(wqe_ccp, &wqe->fcp_icmd.wqe_com,
9641 (iocbq->priority << 1));
9642 } else {
James Smart1ba981f2014-02-20 09:56:45 -05009643 bf_set(wqe_ccp, &wqe->fcp_icmd.wqe_com,
9644 (phba->cfg_XLanePriority << 1));
9645 }
9646 }
James Smartb5c53952016-03-31 14:12:30 -07009647 /* Note, word 10 is already initialized to 0 */
9648
9649 if (phba->fcp_embed_io) {
James Smartc4908502019-01-28 11:14:28 -08009650 struct lpfc_io_buf *lpfc_cmd;
James Smartb5c53952016-03-31 14:12:30 -07009651 struct sli4_sge *sgl;
James Smartb5c53952016-03-31 14:12:30 -07009652 struct fcp_cmnd *fcp_cmnd;
9653 uint32_t *ptr;
9654
9655 /* 128 byte wqe support here */
James Smartb5c53952016-03-31 14:12:30 -07009656
9657 lpfc_cmd = iocbq->context1;
James Smart0794d602019-01-28 11:14:19 -08009658 sgl = (struct sli4_sge *)lpfc_cmd->dma_sgl;
James Smartb5c53952016-03-31 14:12:30 -07009659 fcp_cmnd = lpfc_cmd->fcp_cmnd;
9660
9661 /* Word 0-2 - FCP_CMND */
James Smart205e8242018-03-05 12:04:03 -08009662 wqe->generic.bde.tus.f.bdeFlags =
James Smartb5c53952016-03-31 14:12:30 -07009663 BUFF_TYPE_BDE_IMMED;
James Smart205e8242018-03-05 12:04:03 -08009664 wqe->generic.bde.tus.f.bdeSize = sgl->sge_len;
9665 wqe->generic.bde.addrHigh = 0;
9666 wqe->generic.bde.addrLow = 88; /* Word 22 */
James Smartb5c53952016-03-31 14:12:30 -07009667
James Smart205e8242018-03-05 12:04:03 -08009668 bf_set(wqe_wqes, &wqe->fcp_icmd.wqe_com, 1);
9669 bf_set(wqe_dbde, &wqe->fcp_icmd.wqe_com, 0);
James Smartb5c53952016-03-31 14:12:30 -07009670
9671 /* Word 22-29 FCP CMND Payload */
James Smart205e8242018-03-05 12:04:03 -08009672 ptr = &wqe->words[22];
James Smartb5c53952016-03-31 14:12:30 -07009673 memcpy(ptr, fcp_cmnd, sizeof(struct fcp_cmnd));
9674 }
James Smart7851fe22011-07-22 18:36:52 -04009675 break;
James Smart4f774512009-05-22 14:52:35 -04009676 case CMD_GEN_REQUEST64_CR:
James Smart63e801c2010-11-20 23:14:19 -05009677 /* For this command calculate the xmit length of the
9678 * request bde.
9679 */
9680 xmit_len = 0;
9681 numBdes = iocbq->iocb.un.genreq64.bdl.bdeSize /
9682 sizeof(struct ulp_bde64);
9683 for (i = 0; i < numBdes; i++) {
James Smart63e801c2010-11-20 23:14:19 -05009684 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
James Smart546fc852011-03-11 16:06:29 -05009685 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
9686 break;
James Smart63e801c2010-11-20 23:14:19 -05009687 xmit_len += bde.tus.f.bdeSize;
9688 }
James Smartf0d9bcc2010-10-22 11:07:09 -04009689 /* word3 iocb=IO_TAG wqe=request_payload_len */
9690 wqe->gen_req.request_payload_len = xmit_len;
9691 /* word4 iocb=parameter wqe=relative_offset memcpy */
9692 /* word5 [rctl, type, df_ctl, la] copied in memcpy */
James Smart4f774512009-05-22 14:52:35 -04009693 /* word6 context tag copied in memcpy */
9694 if (iocbq->iocb.ulpCt_h || iocbq->iocb.ulpCt_l) {
9695 ct = ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l);
9696 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9697 "2015 Invalid CT %x command 0x%x\n",
9698 ct, iocbq->iocb.ulpCommand);
9699 return IOCB_ERROR;
9700 }
James Smartf0d9bcc2010-10-22 11:07:09 -04009701 bf_set(wqe_ct, &wqe->gen_req.wqe_com, 0);
9702 bf_set(wqe_tmo, &wqe->gen_req.wqe_com, iocbq->iocb.ulpTimeout);
9703 bf_set(wqe_pu, &wqe->gen_req.wqe_com, iocbq->iocb.ulpPU);
9704 bf_set(wqe_dbde, &wqe->gen_req.wqe_com, 1);
9705 bf_set(wqe_iod, &wqe->gen_req.wqe_com, LPFC_WQE_IOD_READ);
9706 bf_set(wqe_qosd, &wqe->gen_req.wqe_com, 1);
9707 bf_set(wqe_lenloc, &wqe->gen_req.wqe_com, LPFC_WQE_LENLOC_NONE);
9708 bf_set(wqe_ebde_cnt, &wqe->gen_req.wqe_com, 0);
James Smartaf227412013-10-10 12:23:10 -04009709 wqe->gen_req.max_response_payload_len = total_len - xmit_len;
James Smart4f774512009-05-22 14:52:35 -04009710 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04009711 break;
James Smart4f774512009-05-22 14:52:35 -04009712 case CMD_XMIT_ELS_RSP64_CX:
James Smartc31098c2011-04-16 11:03:33 -04009713 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart4f774512009-05-22 14:52:35 -04009714 /* words0-2 BDE memcpy */
James Smartf0d9bcc2010-10-22 11:07:09 -04009715 /* word3 iocb=iotag32 wqe=response_payload_len */
9716 wqe->xmit_els_rsp.response_payload_len = xmit_len;
James Smart939723a2012-05-09 21:19:03 -04009717 /* word4 */
9718 wqe->xmit_els_rsp.word4 = 0;
James Smart4f774512009-05-22 14:52:35 -04009719 /* word5 iocb=rsvd wge=did */
9720 bf_set(wqe_els_did, &wqe->xmit_els_rsp.wqe_dest,
James Smart939723a2012-05-09 21:19:03 -04009721 iocbq->iocb.un.xseq64.xmit_els_remoteID);
9722
9723 if_type = bf_get(lpfc_sli_intf_if_type,
9724 &phba->sli4_hba.sli_intf);
James Smart27d6ac02018-02-22 08:18:42 -08009725 if (if_type >= LPFC_SLI_INTF_IF_TYPE_2) {
James Smart939723a2012-05-09 21:19:03 -04009726 if (iocbq->vport->fc_flag & FC_PT2PT) {
9727 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
9728 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
9729 iocbq->vport->fc_myDID);
9730 if (iocbq->vport->fc_myDID == Fabric_DID) {
9731 bf_set(wqe_els_did,
9732 &wqe->xmit_els_rsp.wqe_dest, 0);
9733 }
9734 }
9735 }
James Smartf0d9bcc2010-10-22 11:07:09 -04009736 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com,
9737 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
9738 bf_set(wqe_pu, &wqe->xmit_els_rsp.wqe_com, iocbq->iocb.ulpPU);
9739 bf_set(wqe_rcvoxid, &wqe->xmit_els_rsp.wqe_com,
James Smart7851fe22011-07-22 18:36:52 -04009740 iocbq->iocb.unsli3.rcvsli3.ox_id);
James Smart4f774512009-05-22 14:52:35 -04009741 if (!iocbq->iocb.ulpCt_h && iocbq->iocb.ulpCt_l)
James Smartf0d9bcc2010-10-22 11:07:09 -04009742 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smart6d368e52011-05-24 11:44:12 -04009743 phba->vpi_ids[iocbq->vport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04009744 bf_set(wqe_dbde, &wqe->xmit_els_rsp.wqe_com, 1);
9745 bf_set(wqe_iod, &wqe->xmit_els_rsp.wqe_com, LPFC_WQE_IOD_WRITE);
9746 bf_set(wqe_qosd, &wqe->xmit_els_rsp.wqe_com, 1);
9747 bf_set(wqe_lenloc, &wqe->xmit_els_rsp.wqe_com,
9748 LPFC_WQE_LENLOC_WORD3);
9749 bf_set(wqe_ebde_cnt, &wqe->xmit_els_rsp.wqe_com, 0);
James Smart6d368e52011-05-24 11:44:12 -04009750 bf_set(wqe_rsp_temp_rpi, &wqe->xmit_els_rsp,
9751 phba->sli4_hba.rpi_ids[ndlp->nlp_rpi]);
James Smartff78d8f2011-12-13 13:21:35 -05009752 pcmd = (uint32_t *) (((struct lpfc_dmabuf *)
9753 iocbq->context2)->virt);
9754 if (phba->fc_topology == LPFC_TOPOLOGY_LOOP) {
James Smart939723a2012-05-09 21:19:03 -04009755 bf_set(els_rsp64_sp, &wqe->xmit_els_rsp, 1);
9756 bf_set(els_rsp64_sid, &wqe->xmit_els_rsp,
James Smartff78d8f2011-12-13 13:21:35 -05009757 iocbq->vport->fc_myDID);
James Smart939723a2012-05-09 21:19:03 -04009758 bf_set(wqe_ct, &wqe->xmit_els_rsp.wqe_com, 1);
9759 bf_set(wqe_ctxt_tag, &wqe->xmit_els_rsp.wqe_com,
James Smartff78d8f2011-12-13 13:21:35 -05009760 phba->vpi_ids[phba->pport->vpi]);
9761 }
James Smart4f774512009-05-22 14:52:35 -04009762 command_type = OTHER_COMMAND;
James Smart7851fe22011-07-22 18:36:52 -04009763 break;
James Smart4f774512009-05-22 14:52:35 -04009764 case CMD_CLOSE_XRI_CN:
9765 case CMD_ABORT_XRI_CN:
9766 case CMD_ABORT_XRI_CX:
9767 /* words 0-2 memcpy should be 0 rserved */
9768 /* port will send abts */
James Smartdcf2a4e2010-09-29 11:18:53 -04009769 abrt_iotag = iocbq->iocb.un.acxri.abortContextTag;
9770 if (abrt_iotag != 0 && abrt_iotag <= phba->sli.last_iotag) {
9771 abrtiocbq = phba->sli.iocbq_lookup[abrt_iotag];
9772 fip = abrtiocbq->iocb_flag & LPFC_FIP_ELS_ID_MASK;
9773 } else
9774 fip = 0;
9775
9776 if ((iocbq->iocb.ulpCommand == CMD_CLOSE_XRI_CN) || fip)
James Smart4f774512009-05-22 14:52:35 -04009777 /*
James Smartdcf2a4e2010-09-29 11:18:53 -04009778 * The link is down, or the command was ELS_FIP
9779 * so the fw does not need to send abts
James Smart4f774512009-05-22 14:52:35 -04009780 * on the wire.
9781 */
9782 bf_set(abort_cmd_ia, &wqe->abort_cmd, 1);
9783 else
9784 bf_set(abort_cmd_ia, &wqe->abort_cmd, 0);
9785 bf_set(abort_cmd_criteria, &wqe->abort_cmd, T_XRI_TAG);
James Smartf0d9bcc2010-10-22 11:07:09 -04009786 /* word5 iocb=CONTEXT_TAG|IO_TAG wqe=reserved */
9787 wqe->abort_cmd.rsrvd5 = 0;
9788 bf_set(wqe_ct, &wqe->abort_cmd.wqe_com,
James Smart4f774512009-05-22 14:52:35 -04009789 ((iocbq->iocb.ulpCt_h << 1) | iocbq->iocb.ulpCt_l));
9790 abort_tag = iocbq->iocb.un.acxri.abortIoTag;
James Smart4f774512009-05-22 14:52:35 -04009791 /*
9792 * The abort handler will send us CMD_ABORT_XRI_CN or
9793 * CMD_CLOSE_XRI_CN and the fw only accepts CMD_ABORT_XRI_CX
9794 */
James Smartf0d9bcc2010-10-22 11:07:09 -04009795 bf_set(wqe_cmnd, &wqe->abort_cmd.wqe_com, CMD_ABORT_XRI_CX);
9796 bf_set(wqe_qosd, &wqe->abort_cmd.wqe_com, 1);
9797 bf_set(wqe_lenloc, &wqe->abort_cmd.wqe_com,
9798 LPFC_WQE_LENLOC_NONE);
James Smart4f774512009-05-22 14:52:35 -04009799 cmnd = CMD_ABORT_XRI_CX;
9800 command_type = OTHER_COMMAND;
9801 xritag = 0;
James Smart7851fe22011-07-22 18:36:52 -04009802 break;
James Smart6669f9b2009-10-02 15:16:45 -04009803 case CMD_XMIT_BLS_RSP64_CX:
James Smart6b5151f2012-01-18 16:24:06 -05009804 ndlp = (struct lpfc_nodelist *)iocbq->context1;
James Smart546fc852011-03-11 16:06:29 -05009805 /* As BLS ABTS RSP WQE is very different from other WQEs,
James Smart6669f9b2009-10-02 15:16:45 -04009806 * we re-construct this WQE here based on information in
9807 * iocbq from scratch.
9808 */
James Smartd9f492a2019-08-14 16:57:04 -07009809 memset(wqe, 0, sizeof(*wqe));
James Smart5ffc2662009-11-18 15:39:44 -05009810 /* OX_ID is invariable to who sent ABTS to CT exchange */
James Smart6669f9b2009-10-02 15:16:45 -04009811 bf_set(xmit_bls_rsp64_oxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05009812 bf_get(lpfc_abts_oxid, &iocbq->iocb.un.bls_rsp));
9813 if (bf_get(lpfc_abts_orig, &iocbq->iocb.un.bls_rsp) ==
James Smart5ffc2662009-11-18 15:39:44 -05009814 LPFC_ABTS_UNSOL_INT) {
9815 /* ABTS sent by initiator to CT exchange, the
9816 * RX_ID field will be filled with the newly
9817 * allocated responder XRI.
9818 */
9819 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
9820 iocbq->sli4_xritag);
9821 } else {
9822 /* ABTS sent by responder to CT exchange, the
9823 * RX_ID field will be filled with the responder
9824 * RX_ID from ABTS.
9825 */
9826 bf_set(xmit_bls_rsp64_rxid, &wqe->xmit_bls_rsp,
James Smart546fc852011-03-11 16:06:29 -05009827 bf_get(lpfc_abts_rxid, &iocbq->iocb.un.bls_rsp));
James Smart5ffc2662009-11-18 15:39:44 -05009828 }
James Smart6669f9b2009-10-02 15:16:45 -04009829 bf_set(xmit_bls_rsp64_seqcnthi, &wqe->xmit_bls_rsp, 0xffff);
9830 bf_set(wqe_xmit_bls_pt, &wqe->xmit_bls_rsp.wqe_dest, 0x1);
James Smart6b5151f2012-01-18 16:24:06 -05009831
9832 /* Use CT=VPI */
9833 bf_set(wqe_els_did, &wqe->xmit_bls_rsp.wqe_dest,
9834 ndlp->nlp_DID);
9835 bf_set(xmit_bls_rsp64_temprpi, &wqe->xmit_bls_rsp,
9836 iocbq->iocb.ulpContext);
9837 bf_set(wqe_ct, &wqe->xmit_bls_rsp.wqe_com, 1);
James Smart6669f9b2009-10-02 15:16:45 -04009838 bf_set(wqe_ctxt_tag, &wqe->xmit_bls_rsp.wqe_com,
James Smart6b5151f2012-01-18 16:24:06 -05009839 phba->vpi_ids[phba->pport->vpi]);
James Smartf0d9bcc2010-10-22 11:07:09 -04009840 bf_set(wqe_qosd, &wqe->xmit_bls_rsp.wqe_com, 1);
9841 bf_set(wqe_lenloc, &wqe->xmit_bls_rsp.wqe_com,
9842 LPFC_WQE_LENLOC_NONE);
James Smart6669f9b2009-10-02 15:16:45 -04009843 /* Overwrite the pre-set comnd type with OTHER_COMMAND */
9844 command_type = OTHER_COMMAND;
James Smart546fc852011-03-11 16:06:29 -05009845 if (iocbq->iocb.un.xseq64.w5.hcsw.Rctl == FC_RCTL_BA_RJT) {
9846 bf_set(xmit_bls_rsp64_rjt_vspec, &wqe->xmit_bls_rsp,
9847 bf_get(lpfc_vndr_code, &iocbq->iocb.un.bls_rsp));
9848 bf_set(xmit_bls_rsp64_rjt_expc, &wqe->xmit_bls_rsp,
9849 bf_get(lpfc_rsn_expln, &iocbq->iocb.un.bls_rsp));
9850 bf_set(xmit_bls_rsp64_rjt_rsnc, &wqe->xmit_bls_rsp,
9851 bf_get(lpfc_rsn_code, &iocbq->iocb.un.bls_rsp));
9852 }
9853
James Smart7851fe22011-07-22 18:36:52 -04009854 break;
James Smartae9e28f2017-05-15 15:20:51 -07009855 case CMD_SEND_FRAME:
James Smarte62245d2019-08-14 16:57:08 -07009856 bf_set(wqe_cmnd, &wqe->generic.wqe_com, CMD_SEND_FRAME);
9857 bf_set(wqe_sof, &wqe->generic.wqe_com, 0x2E); /* SOF byte */
9858 bf_set(wqe_eof, &wqe->generic.wqe_com, 0x41); /* EOF byte */
9859 bf_set(wqe_lenloc, &wqe->generic.wqe_com, 1);
9860 bf_set(wqe_xbl, &wqe->generic.wqe_com, 1);
9861 bf_set(wqe_dbde, &wqe->generic.wqe_com, 1);
9862 bf_set(wqe_xc, &wqe->generic.wqe_com, 1);
9863 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, 0xA);
9864 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
James Smartae9e28f2017-05-15 15:20:51 -07009865 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
9866 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
9867 return 0;
James Smart4f774512009-05-22 14:52:35 -04009868 case CMD_XRI_ABORTED_CX:
9869 case CMD_CREATE_XRI_CR: /* Do we expect to use this? */
James Smart4f774512009-05-22 14:52:35 -04009870 case CMD_IOCB_FCP_IBIDIR64_CR: /* bidirectional xfer */
9871 case CMD_FCP_TSEND64_CX: /* Target mode send xfer-ready */
9872 case CMD_FCP_TRSP64_CX: /* Target mode rcv */
9873 case CMD_FCP_AUTO_TRSP_CX: /* Auto target rsp */
9874 default:
9875 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
9876 "2014 Invalid command 0x%x\n",
9877 iocbq->iocb.ulpCommand);
9878 return IOCB_ERROR;
James Smart7851fe22011-07-22 18:36:52 -04009879 break;
James Smart4f774512009-05-22 14:52:35 -04009880 }
James Smart6d368e52011-05-24 11:44:12 -04009881
James Smart8012cc32012-10-31 14:44:49 -04009882 if (iocbq->iocb_flag & LPFC_IO_DIF_PASS)
9883 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_PASSTHRU);
9884 else if (iocbq->iocb_flag & LPFC_IO_DIF_STRIP)
9885 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_STRIP);
9886 else if (iocbq->iocb_flag & LPFC_IO_DIF_INSERT)
9887 bf_set(wqe_dif, &wqe->generic.wqe_com, LPFC_WQE_DIF_INSERT);
9888 iocbq->iocb_flag &= ~(LPFC_IO_DIF_PASS | LPFC_IO_DIF_STRIP |
9889 LPFC_IO_DIF_INSERT);
James Smartf0d9bcc2010-10-22 11:07:09 -04009890 bf_set(wqe_xri_tag, &wqe->generic.wqe_com, xritag);
9891 bf_set(wqe_reqtag, &wqe->generic.wqe_com, iocbq->iotag);
9892 wqe->generic.wqe_com.abort_tag = abort_tag;
9893 bf_set(wqe_cmd_type, &wqe->generic.wqe_com, command_type);
9894 bf_set(wqe_cmnd, &wqe->generic.wqe_com, cmnd);
9895 bf_set(wqe_class, &wqe->generic.wqe_com, iocbq->iocb.ulpClass);
9896 bf_set(wqe_cqid, &wqe->generic.wqe_com, LPFC_WQE_CQ_ID_DEFAULT);
James Smart4f774512009-05-22 14:52:35 -04009897 return 0;
9898}
9899
9900/**
9901 * __lpfc_sli_issue_iocb_s4 - SLI4 device lockless ver of lpfc_sli_issue_iocb
9902 * @phba: Pointer to HBA context object.
9903 * @ring_number: SLI ring number to issue iocb on.
9904 * @piocb: Pointer to command iocb.
9905 * @flag: Flag indicating if this command can be put into txq.
9906 *
9907 * __lpfc_sli_issue_iocb_s4 is used by other functions in the driver to issue
9908 * an iocb command to an HBA with SLI-4 interface spec.
9909 *
James Smart27f3efd2019-10-18 14:18:19 -07009910 * This function is called with ringlock held. The function will return success
James Smart4f774512009-05-22 14:52:35 -04009911 * after it successfully submit the iocb to firmware or after adding to the
9912 * txq.
9913 **/
9914static int
9915__lpfc_sli_issue_iocb_s4(struct lpfc_hba *phba, uint32_t ring_number,
9916 struct lpfc_iocbq *piocb, uint32_t flag)
9917{
9918 struct lpfc_sglq *sglq;
James Smart205e8242018-03-05 12:04:03 -08009919 union lpfc_wqe128 wqe;
James Smart1ba981f2014-02-20 09:56:45 -05009920 struct lpfc_queue *wq;
James Smart895427b2017-02-12 13:52:30 -08009921 struct lpfc_sli_ring *pring;
James Smart4f774512009-05-22 14:52:35 -04009922
James Smart895427b2017-02-12 13:52:30 -08009923 /* Get the WQ */
9924 if ((piocb->iocb_flag & LPFC_IO_FCP) ||
9925 (piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
James Smartc00f62e2019-08-14 16:57:11 -07009926 wq = phba->sli4_hba.hdwq[piocb->hba_wqidx].io_wq;
James Smart895427b2017-02-12 13:52:30 -08009927 } else {
9928 wq = phba->sli4_hba.els_wq;
9929 }
9930
9931 /* Get corresponding ring */
9932 pring = wq->pring;
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +01009933
James Smartb5c53952016-03-31 14:12:30 -07009934 /*
9935 * The WQE can be either 64 or 128 bytes,
James Smartb5c53952016-03-31 14:12:30 -07009936 */
James Smartb5c53952016-03-31 14:12:30 -07009937
James Smartcda7fa182019-03-04 15:15:43 -08009938 lockdep_assert_held(&pring->ring_lock);
James Smart895427b2017-02-12 13:52:30 -08009939
James Smart4f774512009-05-22 14:52:35 -04009940 if (piocb->sli4_xritag == NO_XRI) {
9941 if (piocb->iocb.ulpCommand == CMD_ABORT_XRI_CN ||
James Smart6b5151f2012-01-18 16:24:06 -05009942 piocb->iocb.ulpCommand == CMD_CLOSE_XRI_CN)
James Smart4f774512009-05-22 14:52:35 -04009943 sglq = NULL;
9944 else {
James Smart0e9bb8d2013-03-01 16:35:12 -05009945 if (!list_empty(&pring->txq)) {
James Smart2a9bf3d2010-06-07 15:24:45 -04009946 if (!(flag & SLI_IOCB_RET_IOCB)) {
9947 __lpfc_sli_ringtx_put(phba,
9948 pring, piocb);
9949 return IOCB_SUCCESS;
9950 } else {
9951 return IOCB_BUSY;
9952 }
9953 } else {
James Smart895427b2017-02-12 13:52:30 -08009954 sglq = __lpfc_sli_get_els_sglq(phba, piocb);
James Smart2a9bf3d2010-06-07 15:24:45 -04009955 if (!sglq) {
9956 if (!(flag & SLI_IOCB_RET_IOCB)) {
9957 __lpfc_sli_ringtx_put(phba,
9958 pring,
9959 piocb);
9960 return IOCB_SUCCESS;
9961 } else
9962 return IOCB_BUSY;
9963 }
9964 }
James Smart4f774512009-05-22 14:52:35 -04009965 }
James Smart2ea259e2017-02-12 13:52:27 -08009966 } else if (piocb->iocb_flag & LPFC_IO_FCP)
James Smart6d368e52011-05-24 11:44:12 -04009967 /* These IO's already have an XRI and a mapped sgl. */
9968 sglq = NULL;
James Smart2ea259e2017-02-12 13:52:27 -08009969 else {
James Smart6d368e52011-05-24 11:44:12 -04009970 /*
9971 * This is a continuation of a commandi,(CX) so this
James Smart4f774512009-05-22 14:52:35 -04009972 * sglq is on the active list
9973 */
James Smartedccdc12013-01-03 15:43:45 -05009974 sglq = __lpfc_get_active_sglq(phba, piocb->sli4_lxritag);
James Smart4f774512009-05-22 14:52:35 -04009975 if (!sglq)
9976 return IOCB_ERROR;
9977 }
9978
9979 if (sglq) {
James Smart6d368e52011-05-24 11:44:12 -04009980 piocb->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04009981 piocb->sli4_xritag = sglq->sli4_xritag;
James Smart2a9bf3d2010-06-07 15:24:45 -04009982 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocb, sglq))
James Smart4f774512009-05-22 14:52:35 -04009983 return IOCB_ERROR;
9984 }
9985
James Smart205e8242018-03-05 12:04:03 -08009986 if (lpfc_sli4_iocb2wqe(phba, piocb, &wqe))
James Smart4f774512009-05-22 14:52:35 -04009987 return IOCB_ERROR;
9988
James Smart205e8242018-03-05 12:04:03 -08009989 if (lpfc_sli4_wq_put(wq, &wqe))
James Smart895427b2017-02-12 13:52:30 -08009990 return IOCB_ERROR;
James Smart4f774512009-05-22 14:52:35 -04009991 lpfc_sli_ringtxcmpl_put(phba, pring, piocb);
9992
9993 return 0;
9994}
9995
9996/**
James Smart3772a992009-05-22 14:50:54 -04009997 * __lpfc_sli_issue_iocb - Wrapper func of lockless version for issuing iocb
9998 *
9999 * This routine wraps the actual lockless version for issusing IOCB function
10000 * pointer from the lpfc_hba struct.
10001 *
10002 * Return codes:
James Smartb5c53952016-03-31 14:12:30 -070010003 * IOCB_ERROR - Error
10004 * IOCB_SUCCESS - Success
10005 * IOCB_BUSY - Busy
James Smart3772a992009-05-22 14:50:54 -040010006 **/
James Smart2a9bf3d2010-06-07 15:24:45 -040010007int
James Smart3772a992009-05-22 14:50:54 -040010008__lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
10009 struct lpfc_iocbq *piocb, uint32_t flag)
10010{
10011 return phba->__lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
10012}
10013
10014/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010015 * lpfc_sli_api_table_setup - Set up sli api function jump table
James Smart3772a992009-05-22 14:50:54 -040010016 * @phba: The hba struct for which this call is being executed.
10017 * @dev_grp: The HBA PCI-Device group number.
10018 *
10019 * This routine sets up the SLI interface API function jump table in @phba
10020 * struct.
10021 * Returns: 0 - success, -ENODEV - failure.
10022 **/
10023int
10024lpfc_sli_api_table_setup(struct lpfc_hba *phba, uint8_t dev_grp)
10025{
10026
10027 switch (dev_grp) {
10028 case LPFC_PCI_DEV_LP:
10029 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s3;
10030 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s3;
10031 break;
James Smart4f774512009-05-22 14:52:35 -040010032 case LPFC_PCI_DEV_OC:
10033 phba->__lpfc_sli_issue_iocb = __lpfc_sli_issue_iocb_s4;
10034 phba->__lpfc_sli_release_iocbq = __lpfc_sli_release_iocbq_s4;
10035 break;
James Smart3772a992009-05-22 14:50:54 -040010036 default:
10037 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
10038 "1419 Invalid HBA PCI-device group: 0x%x\n",
10039 dev_grp);
10040 return -ENODEV;
10041 break;
10042 }
10043 phba->lpfc_get_iocb_from_iocbq = lpfc_get_iocb_from_iocbq;
10044 return 0;
10045}
James Smart92d7f7b2007-06-17 19:56:38 -050010046
James Smarta1efe162015-05-21 13:55:20 -040010047/**
James Smart895427b2017-02-12 13:52:30 -080010048 * lpfc_sli4_calc_ring - Calculates which ring to use
James Smarta1efe162015-05-21 13:55:20 -040010049 * @phba: Pointer to HBA context object.
James Smarta1efe162015-05-21 13:55:20 -040010050 * @piocb: Pointer to command iocb.
10051 *
James Smart895427b2017-02-12 13:52:30 -080010052 * For SLI4 only, FCP IO can deferred to one fo many WQs, based on
10053 * hba_wqidx, thus we need to calculate the corresponding ring.
James Smarta1efe162015-05-21 13:55:20 -040010054 * Since ABORTS must go on the same WQ of the command they are
James Smart895427b2017-02-12 13:52:30 -080010055 * aborting, we use command's hba_wqidx.
James Smarta1efe162015-05-21 13:55:20 -040010056 */
James Smart895427b2017-02-12 13:52:30 -080010057struct lpfc_sli_ring *
10058lpfc_sli4_calc_ring(struct lpfc_hba *phba, struct lpfc_iocbq *piocb)
James Smart9bd2bff52014-09-03 12:57:30 -040010059{
James Smartc4908502019-01-28 11:14:28 -080010060 struct lpfc_io_buf *lpfc_cmd;
James Smart5e5b5112019-01-28 11:14:22 -080010061
James Smart895427b2017-02-12 13:52:30 -080010062 if (piocb->iocb_flag & (LPFC_IO_FCP | LPFC_USE_FCPWQIDX)) {
James Smartcdb42be2019-01-28 11:14:21 -080010063 if (unlikely(!phba->sli4_hba.hdwq))
James Smart7370d102019-01-28 11:14:20 -080010064 return NULL;
10065 /*
10066 * for abort iocb hba_wqidx should already
10067 * be setup based on what work queue we used.
10068 */
10069 if (!(piocb->iocb_flag & LPFC_USE_FCPWQIDX)) {
James Smartc4908502019-01-28 11:14:28 -080010070 lpfc_cmd = (struct lpfc_io_buf *)piocb->context1;
James Smart1fbf9742019-01-28 11:14:26 -080010071 piocb->hba_wqidx = lpfc_cmd->hdwq_no;
James Smart9bd2bff52014-09-03 12:57:30 -040010072 }
James Smartc00f62e2019-08-14 16:57:11 -070010073 return phba->sli4_hba.hdwq[piocb->hba_wqidx].io_wq->pring;
James Smart895427b2017-02-12 13:52:30 -080010074 } else {
10075 if (unlikely(!phba->sli4_hba.els_wq))
10076 return NULL;
10077 piocb->hba_wqidx = 0;
10078 return phba->sli4_hba.els_wq->pring;
James Smart9bd2bff52014-09-03 12:57:30 -040010079 }
James Smart9bd2bff52014-09-03 12:57:30 -040010080}
10081
James Smarte59058c2008-08-24 21:49:00 -040010082/**
James Smart3621a712009-04-06 18:47:14 -040010083 * lpfc_sli_issue_iocb - Wrapper function for __lpfc_sli_issue_iocb
James Smarte59058c2008-08-24 21:49:00 -040010084 * @phba: Pointer to HBA context object.
10085 * @pring: Pointer to driver SLI ring object.
10086 * @piocb: Pointer to command iocb.
10087 * @flag: Flag indicating if this command can be put into txq.
10088 *
10089 * lpfc_sli_issue_iocb is a wrapper around __lpfc_sli_issue_iocb
10090 * function. This function gets the hbalock and calls
10091 * __lpfc_sli_issue_iocb function and will return the error returned
10092 * by __lpfc_sli_issue_iocb function. This wrapper is used by
10093 * functions which do not hold hbalock.
10094 **/
James Smart92d7f7b2007-06-17 19:56:38 -050010095int
James Smart3772a992009-05-22 14:50:54 -040010096lpfc_sli_issue_iocb(struct lpfc_hba *phba, uint32_t ring_number,
James Smart92d7f7b2007-06-17 19:56:38 -050010097 struct lpfc_iocbq *piocb, uint32_t flag)
10098{
James Smart2a76a282012-08-03 12:35:54 -040010099 struct lpfc_sli_ring *pring;
James Smart92d7f7b2007-06-17 19:56:38 -050010100 unsigned long iflags;
James Smart6a828b02019-01-28 11:14:31 -080010101 int rc;
James Smart92d7f7b2007-06-17 19:56:38 -050010102
James Smart7e56aa22012-08-03 12:35:34 -040010103 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart895427b2017-02-12 13:52:30 -080010104 pring = lpfc_sli4_calc_ring(phba, piocb);
10105 if (unlikely(pring == NULL))
James Smart9bd2bff52014-09-03 12:57:30 -040010106 return IOCB_ERROR;
James Smartba20c852012-08-03 12:36:52 -040010107
James Smart9bd2bff52014-09-03 12:57:30 -040010108 spin_lock_irqsave(&pring->ring_lock, iflags);
10109 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
10110 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart7e56aa22012-08-03 12:35:34 -040010111 } else {
10112 /* For now, SLI2/3 will still use hbalock */
10113 spin_lock_irqsave(&phba->hbalock, iflags);
10114 rc = __lpfc_sli_issue_iocb(phba, ring_number, piocb, flag);
10115 spin_unlock_irqrestore(&phba->hbalock, iflags);
10116 }
James Smart92d7f7b2007-06-17 19:56:38 -050010117 return rc;
10118}
10119
James Smarte59058c2008-08-24 21:49:00 -040010120/**
James Smart3621a712009-04-06 18:47:14 -040010121 * lpfc_extra_ring_setup - Extra ring setup function
James Smarte59058c2008-08-24 21:49:00 -040010122 * @phba: Pointer to HBA context object.
10123 *
10124 * This function is called while driver attaches with the
10125 * HBA to setup the extra ring. The extra ring is used
10126 * only when driver needs to support target mode functionality
10127 * or IP over FC functionalities.
10128 *
James Smart895427b2017-02-12 13:52:30 -080010129 * This function is called with no lock held. SLI3 only.
James Smarte59058c2008-08-24 21:49:00 -040010130 **/
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -050010131static int
10132lpfc_extra_ring_setup( struct lpfc_hba *phba)
10133{
10134 struct lpfc_sli *psli;
10135 struct lpfc_sli_ring *pring;
10136
10137 psli = &phba->sli;
10138
10139 /* Adjust cmd/rsp ring iocb entries more evenly */
James Smarta4bc3372006-12-02 13:34:16 -050010140
10141 /* Take some away from the FCP ring */
James Smart895427b2017-02-12 13:52:30 -080010142 pring = &psli->sli3_ring[LPFC_FCP_RING];
James Smart7e56aa22012-08-03 12:35:34 -040010143 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R1XTRA_ENTRIES;
10144 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R1XTRA_ENTRIES;
10145 pring->sli.sli3.numCiocb -= SLI2_IOCB_CMD_R3XTRA_ENTRIES;
10146 pring->sli.sli3.numRiocb -= SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -050010147
James Smarta4bc3372006-12-02 13:34:16 -050010148 /* and give them to the extra ring */
James Smart895427b2017-02-12 13:52:30 -080010149 pring = &psli->sli3_ring[LPFC_EXTRA_RING];
James Smarta4bc3372006-12-02 13:34:16 -050010150
James Smart7e56aa22012-08-03 12:35:34 -040010151 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R1XTRA_ENTRIES;
10152 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R1XTRA_ENTRIES;
10153 pring->sli.sli3.numCiocb += SLI2_IOCB_CMD_R3XTRA_ENTRIES;
10154 pring->sli.sli3.numRiocb += SLI2_IOCB_RSP_R3XTRA_ENTRIES;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -050010155
10156 /* Setup default profile for this ring */
10157 pring->iotag_max = 4096;
10158 pring->num_mask = 1;
10159 pring->prt[0].profile = 0; /* Mask 0 */
James Smarta4bc3372006-12-02 13:34:16 -050010160 pring->prt[0].rctl = phba->cfg_multi_ring_rctl;
10161 pring->prt[0].type = phba->cfg_multi_ring_type;
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -050010162 pring->prt[0].lpfc_sli_rcv_unsol_event = NULL;
10163 return 0;
10164}
10165
James Smartcb69f7d2011-12-13 13:21:57 -050010166/* lpfc_sli_abts_err_handler - handle a failed ABTS request from an SLI3 port.
10167 * @phba: Pointer to HBA context object.
10168 * @iocbq: Pointer to iocb object.
10169 *
10170 * The async_event handler calls this routine when it receives
10171 * an ASYNC_STATUS_CN event from the port. The port generates
10172 * this event when an Abort Sequence request to an rport fails
10173 * twice in succession. The abort could be originated by the
10174 * driver or by the port. The ABTS could have been for an ELS
10175 * or FCP IO. The port only generates this event when an ABTS
10176 * fails to complete after one retry.
10177 */
10178static void
10179lpfc_sli_abts_err_handler(struct lpfc_hba *phba,
10180 struct lpfc_iocbq *iocbq)
10181{
10182 struct lpfc_nodelist *ndlp = NULL;
10183 uint16_t rpi = 0, vpi = 0;
10184 struct lpfc_vport *vport = NULL;
10185
10186 /* The rpi in the ulpContext is vport-sensitive. */
10187 vpi = iocbq->iocb.un.asyncstat.sub_ctxt_tag;
10188 rpi = iocbq->iocb.ulpContext;
10189
10190 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
10191 "3092 Port generated ABTS async event "
10192 "on vpi %d rpi %d status 0x%x\n",
10193 vpi, rpi, iocbq->iocb.ulpStatus);
10194
10195 vport = lpfc_find_vport_by_vpid(phba, vpi);
10196 if (!vport)
10197 goto err_exit;
10198 ndlp = lpfc_findnode_rpi(vport, rpi);
10199 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp))
10200 goto err_exit;
10201
10202 if (iocbq->iocb.ulpStatus == IOSTAT_LOCAL_REJECT)
10203 lpfc_sli_abts_recover_port(vport, ndlp);
10204 return;
10205
10206 err_exit:
10207 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10208 "3095 Event Context not found, no "
10209 "action on vpi %d rpi %d status 0x%x, reason 0x%x\n",
10210 iocbq->iocb.ulpContext, iocbq->iocb.ulpStatus,
10211 vpi, rpi);
10212}
10213
10214/* lpfc_sli4_abts_err_handler - handle a failed ABTS request from an SLI4 port.
10215 * @phba: pointer to HBA context object.
10216 * @ndlp: nodelist pointer for the impacted rport.
10217 * @axri: pointer to the wcqe containing the failed exchange.
10218 *
10219 * The driver calls this routine when it receives an ABORT_XRI_FCP CQE from the
10220 * port. The port generates this event when an abort exchange request to an
10221 * rport fails twice in succession with no reply. The abort could be originated
10222 * by the driver or by the port. The ABTS could have been for an ELS or FCP IO.
10223 */
10224void
10225lpfc_sli4_abts_err_handler(struct lpfc_hba *phba,
10226 struct lpfc_nodelist *ndlp,
10227 struct sli4_wcqe_xri_aborted *axri)
10228{
10229 struct lpfc_vport *vport;
James Smart5c1db2a2012-03-01 22:34:36 -050010230 uint32_t ext_status = 0;
James Smartcb69f7d2011-12-13 13:21:57 -050010231
James Smart6b5151f2012-01-18 16:24:06 -050010232 if (!ndlp || !NLP_CHK_NODE_ACT(ndlp)) {
James Smartcb69f7d2011-12-13 13:21:57 -050010233 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
10234 "3115 Node Context not found, driver "
10235 "ignoring abts err event\n");
James Smart6b5151f2012-01-18 16:24:06 -050010236 return;
10237 }
10238
James Smartcb69f7d2011-12-13 13:21:57 -050010239 vport = ndlp->vport;
10240 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
10241 "3116 Port generated FCP XRI ABORT event on "
James Smart5c1db2a2012-03-01 22:34:36 -050010242 "vpi %d rpi %d xri x%x status 0x%x parameter x%x\n",
James Smart8e668af2013-05-31 17:04:28 -040010243 ndlp->vport->vpi, phba->sli4_hba.rpi_ids[ndlp->nlp_rpi],
James Smartcb69f7d2011-12-13 13:21:57 -050010244 bf_get(lpfc_wcqe_xa_xri, axri),
James Smart5c1db2a2012-03-01 22:34:36 -050010245 bf_get(lpfc_wcqe_xa_status, axri),
10246 axri->parameter);
James Smartcb69f7d2011-12-13 13:21:57 -050010247
James Smart5c1db2a2012-03-01 22:34:36 -050010248 /*
10249 * Catch the ABTS protocol failure case. Older OCe FW releases returned
10250 * LOCAL_REJECT and 0 for a failed ABTS exchange and later OCe and
10251 * LPe FW releases returned LOCAL_REJECT and SEQUENCE_TIMEOUT.
10252 */
James Smarte3d2b802012-08-14 14:25:43 -040010253 ext_status = axri->parameter & IOERR_PARAM_MASK;
James Smart5c1db2a2012-03-01 22:34:36 -050010254 if ((bf_get(lpfc_wcqe_xa_status, axri) == IOSTAT_LOCAL_REJECT) &&
10255 ((ext_status == IOERR_SEQUENCE_TIMEOUT) || (ext_status == 0)))
James Smartcb69f7d2011-12-13 13:21:57 -050010256 lpfc_sli_abts_recover_port(vport, ndlp);
10257}
10258
James Smarte59058c2008-08-24 21:49:00 -040010259/**
James Smart3621a712009-04-06 18:47:14 -040010260 * lpfc_sli_async_event_handler - ASYNC iocb handler function
James Smarte59058c2008-08-24 21:49:00 -040010261 * @phba: Pointer to HBA context object.
10262 * @pring: Pointer to driver SLI ring object.
10263 * @iocbq: Pointer to iocb object.
10264 *
10265 * This function is called by the slow ring event handler
10266 * function when there is an ASYNC event iocb in the ring.
10267 * This function is called with no lock held.
10268 * Currently this function handles only temperature related
10269 * ASYNC events. The function decodes the temperature sensor
10270 * event message and posts events for the management applications.
10271 **/
James Smart98c9ea52007-10-27 13:37:33 -040010272static void
James Smart57127f12007-10-27 13:37:05 -040010273lpfc_sli_async_event_handler(struct lpfc_hba * phba,
10274 struct lpfc_sli_ring * pring, struct lpfc_iocbq * iocbq)
10275{
10276 IOCB_t *icmd;
10277 uint16_t evt_code;
James Smart57127f12007-10-27 13:37:05 -040010278 struct temp_event temp_event_data;
10279 struct Scsi_Host *shost;
James Smarta257bf92009-04-06 18:48:10 -040010280 uint32_t *iocb_w;
James Smart57127f12007-10-27 13:37:05 -040010281
10282 icmd = &iocbq->iocb;
10283 evt_code = icmd->un.asyncstat.evt_code;
James Smart57127f12007-10-27 13:37:05 -040010284
James Smartcb69f7d2011-12-13 13:21:57 -050010285 switch (evt_code) {
10286 case ASYNC_TEMP_WARN:
10287 case ASYNC_TEMP_SAFE:
10288 temp_event_data.data = (uint32_t) icmd->ulpContext;
10289 temp_event_data.event_type = FC_REG_TEMPERATURE_EVENT;
10290 if (evt_code == ASYNC_TEMP_WARN) {
10291 temp_event_data.event_code = LPFC_THRESHOLD_TEMP;
10292 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
10293 "0347 Adapter is very hot, please take "
10294 "corrective action. temperature : %d Celsius\n",
10295 (uint32_t) icmd->ulpContext);
10296 } else {
10297 temp_event_data.event_code = LPFC_NORMAL_TEMP;
10298 lpfc_printf_log(phba, KERN_ERR, LOG_TEMP,
10299 "0340 Adapter temperature is OK now. "
10300 "temperature : %d Celsius\n",
10301 (uint32_t) icmd->ulpContext);
10302 }
10303
10304 /* Send temperature change event to applications */
10305 shost = lpfc_shost_from_vport(phba->pport);
10306 fc_host_post_vendor_event(shost, fc_get_event_number(),
10307 sizeof(temp_event_data), (char *) &temp_event_data,
10308 LPFC_NL_VENDOR_ID);
10309 break;
10310 case ASYNC_STATUS_CN:
10311 lpfc_sli_abts_err_handler(phba, iocbq);
10312 break;
10313 default:
James Smarta257bf92009-04-06 18:48:10 -040010314 iocb_w = (uint32_t *) icmd;
James Smartcb69f7d2011-12-13 13:21:57 -050010315 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart76bb24e2007-10-27 13:38:00 -040010316 "0346 Ring %d handler: unexpected ASYNC_STATUS"
James Smarte4e74272009-07-19 10:01:38 -040010317 " evt_code 0x%x\n"
James Smarta257bf92009-04-06 18:48:10 -040010318 "W0 0x%08x W1 0x%08x W2 0x%08x W3 0x%08x\n"
10319 "W4 0x%08x W5 0x%08x W6 0x%08x W7 0x%08x\n"
10320 "W8 0x%08x W9 0x%08x W10 0x%08x W11 0x%08x\n"
10321 "W12 0x%08x W13 0x%08x W14 0x%08x W15 0x%08x\n",
James Smartcb69f7d2011-12-13 13:21:57 -050010322 pring->ringno, icmd->un.asyncstat.evt_code,
James Smarta257bf92009-04-06 18:48:10 -040010323 iocb_w[0], iocb_w[1], iocb_w[2], iocb_w[3],
10324 iocb_w[4], iocb_w[5], iocb_w[6], iocb_w[7],
10325 iocb_w[8], iocb_w[9], iocb_w[10], iocb_w[11],
10326 iocb_w[12], iocb_w[13], iocb_w[14], iocb_w[15]);
10327
James Smartcb69f7d2011-12-13 13:21:57 -050010328 break;
James Smart57127f12007-10-27 13:37:05 -040010329 }
James Smart57127f12007-10-27 13:37:05 -040010330}
10331
10332
James Smarte59058c2008-08-24 21:49:00 -040010333/**
James Smart895427b2017-02-12 13:52:30 -080010334 * lpfc_sli4_setup - SLI ring setup function
James Smarte59058c2008-08-24 21:49:00 -040010335 * @phba: Pointer to HBA context object.
10336 *
10337 * lpfc_sli_setup sets up rings of the SLI interface with
10338 * number of iocbs per ring and iotags. This function is
10339 * called while driver attach to the HBA and before the
10340 * interrupts are enabled. So there is no need for locking.
10341 *
10342 * This function always returns 0.
10343 **/
dea31012005-04-17 16:05:31 -050010344int
James Smart895427b2017-02-12 13:52:30 -080010345lpfc_sli4_setup(struct lpfc_hba *phba)
10346{
10347 struct lpfc_sli_ring *pring;
10348
10349 pring = phba->sli4_hba.els_wq->pring;
10350 pring->num_mask = LPFC_MAX_RING_MASK;
10351 pring->prt[0].profile = 0; /* Mask 0 */
10352 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
10353 pring->prt[0].type = FC_TYPE_ELS;
10354 pring->prt[0].lpfc_sli_rcv_unsol_event =
10355 lpfc_els_unsol_event;
10356 pring->prt[1].profile = 0; /* Mask 1 */
10357 pring->prt[1].rctl = FC_RCTL_ELS_REP;
10358 pring->prt[1].type = FC_TYPE_ELS;
10359 pring->prt[1].lpfc_sli_rcv_unsol_event =
10360 lpfc_els_unsol_event;
10361 pring->prt[2].profile = 0; /* Mask 2 */
10362 /* NameServer Inquiry */
10363 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
10364 /* NameServer */
10365 pring->prt[2].type = FC_TYPE_CT;
10366 pring->prt[2].lpfc_sli_rcv_unsol_event =
10367 lpfc_ct_unsol_event;
10368 pring->prt[3].profile = 0; /* Mask 3 */
10369 /* NameServer response */
10370 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
10371 /* NameServer */
10372 pring->prt[3].type = FC_TYPE_CT;
10373 pring->prt[3].lpfc_sli_rcv_unsol_event =
10374 lpfc_ct_unsol_event;
10375 return 0;
10376}
10377
10378/**
10379 * lpfc_sli_setup - SLI ring setup function
10380 * @phba: Pointer to HBA context object.
10381 *
10382 * lpfc_sli_setup sets up rings of the SLI interface with
10383 * number of iocbs per ring and iotags. This function is
10384 * called while driver attach to the HBA and before the
10385 * interrupts are enabled. So there is no need for locking.
10386 *
10387 * This function always returns 0. SLI3 only.
10388 **/
10389int
dea31012005-04-17 16:05:31 -050010390lpfc_sli_setup(struct lpfc_hba *phba)
10391{
James Smarted957682007-06-17 19:56:37 -050010392 int i, totiocbsize = 0;
dea31012005-04-17 16:05:31 -050010393 struct lpfc_sli *psli = &phba->sli;
10394 struct lpfc_sli_ring *pring;
10395
James Smart2a76a282012-08-03 12:35:54 -040010396 psli->num_rings = MAX_SLI3_CONFIGURED_RINGS;
dea31012005-04-17 16:05:31 -050010397 psli->sli_flag = 0;
dea31012005-04-17 16:05:31 -050010398
James Bottomley604a3e32005-10-29 10:28:33 -050010399 psli->iocbq_lookup = NULL;
10400 psli->iocbq_lookup_len = 0;
10401 psli->last_iotag = 0;
10402
dea31012005-04-17 16:05:31 -050010403 for (i = 0; i < psli->num_rings; i++) {
James Smart895427b2017-02-12 13:52:30 -080010404 pring = &psli->sli3_ring[i];
dea31012005-04-17 16:05:31 -050010405 switch (i) {
10406 case LPFC_FCP_RING: /* ring 0 - FCP */
10407 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -040010408 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R0_ENTRIES;
10409 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R0_ENTRIES;
10410 pring->sli.sli3.numCiocb +=
10411 SLI2_IOCB_CMD_R1XTRA_ENTRIES;
10412 pring->sli.sli3.numRiocb +=
10413 SLI2_IOCB_RSP_R1XTRA_ENTRIES;
10414 pring->sli.sli3.numCiocb +=
10415 SLI2_IOCB_CMD_R3XTRA_ENTRIES;
10416 pring->sli.sli3.numRiocb +=
10417 SLI2_IOCB_RSP_R3XTRA_ENTRIES;
10418 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -050010419 SLI3_IOCB_CMD_SIZE :
10420 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -040010421 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -050010422 SLI3_IOCB_RSP_SIZE :
10423 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -050010424 pring->iotag_ctr = 0;
10425 pring->iotag_max =
James Smart92d7f7b2007-06-17 19:56:38 -050010426 (phba->cfg_hba_queue_depth * 2);
dea31012005-04-17 16:05:31 -050010427 pring->fast_iotag = pring->iotag_max;
10428 pring->num_mask = 0;
10429 break;
James Smarta4bc3372006-12-02 13:34:16 -050010430 case LPFC_EXTRA_RING: /* ring 1 - EXTRA */
dea31012005-04-17 16:05:31 -050010431 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -040010432 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R1_ENTRIES;
10433 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R1_ENTRIES;
10434 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -050010435 SLI3_IOCB_CMD_SIZE :
10436 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -040010437 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -050010438 SLI3_IOCB_RSP_SIZE :
10439 SLI2_IOCB_RSP_SIZE;
James Smart2e0fef82007-06-17 19:56:36 -050010440 pring->iotag_max = phba->cfg_hba_queue_depth;
dea31012005-04-17 16:05:31 -050010441 pring->num_mask = 0;
10442 break;
10443 case LPFC_ELS_RING: /* ring 2 - ELS / CT */
10444 /* numCiocb and numRiocb are used in config_port */
James Smart7e56aa22012-08-03 12:35:34 -040010445 pring->sli.sli3.numCiocb = SLI2_IOCB_CMD_R2_ENTRIES;
10446 pring->sli.sli3.numRiocb = SLI2_IOCB_RSP_R2_ENTRIES;
10447 pring->sli.sli3.sizeCiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -050010448 SLI3_IOCB_CMD_SIZE :
10449 SLI2_IOCB_CMD_SIZE;
James Smart7e56aa22012-08-03 12:35:34 -040010450 pring->sli.sli3.sizeRiocb = (phba->sli_rev == 3) ?
James Smart92d7f7b2007-06-17 19:56:38 -050010451 SLI3_IOCB_RSP_SIZE :
10452 SLI2_IOCB_RSP_SIZE;
dea31012005-04-17 16:05:31 -050010453 pring->fast_iotag = 0;
10454 pring->iotag_ctr = 0;
10455 pring->iotag_max = 4096;
James Smart57127f12007-10-27 13:37:05 -040010456 pring->lpfc_sli_rcv_async_status =
10457 lpfc_sli_async_event_handler;
James Smart6669f9b2009-10-02 15:16:45 -040010458 pring->num_mask = LPFC_MAX_RING_MASK;
dea31012005-04-17 16:05:31 -050010459 pring->prt[0].profile = 0; /* Mask 0 */
James Smart6a9c52c2009-10-02 15:16:51 -040010460 pring->prt[0].rctl = FC_RCTL_ELS_REQ;
10461 pring->prt[0].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -050010462 pring->prt[0].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -050010463 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -050010464 pring->prt[1].profile = 0; /* Mask 1 */
James Smart6a9c52c2009-10-02 15:16:51 -040010465 pring->prt[1].rctl = FC_RCTL_ELS_REP;
10466 pring->prt[1].type = FC_TYPE_ELS;
dea31012005-04-17 16:05:31 -050010467 pring->prt[1].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -050010468 lpfc_els_unsol_event;
dea31012005-04-17 16:05:31 -050010469 pring->prt[2].profile = 0; /* Mask 2 */
10470 /* NameServer Inquiry */
James Smart6a9c52c2009-10-02 15:16:51 -040010471 pring->prt[2].rctl = FC_RCTL_DD_UNSOL_CTL;
dea31012005-04-17 16:05:31 -050010472 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -040010473 pring->prt[2].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -050010474 pring->prt[2].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -050010475 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -050010476 pring->prt[3].profile = 0; /* Mask 3 */
10477 /* NameServer response */
James Smart6a9c52c2009-10-02 15:16:51 -040010478 pring->prt[3].rctl = FC_RCTL_DD_SOL_CTL;
dea31012005-04-17 16:05:31 -050010479 /* NameServer */
James Smart6a9c52c2009-10-02 15:16:51 -040010480 pring->prt[3].type = FC_TYPE_CT;
dea31012005-04-17 16:05:31 -050010481 pring->prt[3].lpfc_sli_rcv_unsol_event =
James Smart92d7f7b2007-06-17 19:56:38 -050010482 lpfc_ct_unsol_event;
dea31012005-04-17 16:05:31 -050010483 break;
10484 }
James Smart7e56aa22012-08-03 12:35:34 -040010485 totiocbsize += (pring->sli.sli3.numCiocb *
10486 pring->sli.sli3.sizeCiocb) +
10487 (pring->sli.sli3.numRiocb * pring->sli.sli3.sizeRiocb);
dea31012005-04-17 16:05:31 -050010488 }
James Smarted957682007-06-17 19:56:37 -050010489 if (totiocbsize > MAX_SLIM_IOCB_SIZE) {
dea31012005-04-17 16:05:31 -050010490 /* Too many cmd / rsp ring entries in SLI2 SLIM */
James Smarte8b62012007-08-02 11:10:09 -040010491 printk(KERN_ERR "%d:0462 Too many cmd / rsp ring entries in "
10492 "SLI2 SLIM Data: x%x x%lx\n",
10493 phba->brd_no, totiocbsize,
10494 (unsigned long) MAX_SLIM_IOCB_SIZE);
dea31012005-04-17 16:05:31 -050010495 }
Jamie Wellnitzcf5bf972006-02-28 22:33:08 -050010496 if (phba->cfg_multi_ring_support == 2)
10497 lpfc_extra_ring_setup(phba);
dea31012005-04-17 16:05:31 -050010498
10499 return 0;
10500}
10501
James Smarte59058c2008-08-24 21:49:00 -040010502/**
James Smart895427b2017-02-12 13:52:30 -080010503 * lpfc_sli4_queue_init - Queue initialization function
James Smarte59058c2008-08-24 21:49:00 -040010504 * @phba: Pointer to HBA context object.
10505 *
James Smart895427b2017-02-12 13:52:30 -080010506 * lpfc_sli4_queue_init sets up mailbox queues and iocb queues for each
James Smarte59058c2008-08-24 21:49:00 -040010507 * ring. This function also initializes ring indices of each ring.
10508 * This function is called during the initialization of the SLI
10509 * interface of an HBA.
10510 * This function is called with no lock held and always returns
10511 * 1.
10512 **/
James Smart895427b2017-02-12 13:52:30 -080010513void
10514lpfc_sli4_queue_init(struct lpfc_hba *phba)
10515{
10516 struct lpfc_sli *psli;
10517 struct lpfc_sli_ring *pring;
10518 int i;
10519
10520 psli = &phba->sli;
10521 spin_lock_irq(&phba->hbalock);
10522 INIT_LIST_HEAD(&psli->mboxq);
10523 INIT_LIST_HEAD(&psli->mboxq_cmpl);
10524 /* Initialize list headers for txq and txcmplq as double linked lists */
James Smartcdb42be2019-01-28 11:14:21 -080010525 for (i = 0; i < phba->cfg_hdw_queue; i++) {
James Smartc00f62e2019-08-14 16:57:11 -070010526 pring = phba->sli4_hba.hdwq[i].io_wq->pring;
James Smart895427b2017-02-12 13:52:30 -080010527 pring->flag = 0;
10528 pring->ringno = LPFC_FCP_RING;
James Smartc4908502019-01-28 11:14:28 -080010529 pring->txcmplq_cnt = 0;
James Smart895427b2017-02-12 13:52:30 -080010530 INIT_LIST_HEAD(&pring->txq);
10531 INIT_LIST_HEAD(&pring->txcmplq);
10532 INIT_LIST_HEAD(&pring->iocb_continueq);
10533 spin_lock_init(&pring->ring_lock);
10534 }
10535 pring = phba->sli4_hba.els_wq->pring;
10536 pring->flag = 0;
10537 pring->ringno = LPFC_ELS_RING;
James Smartc4908502019-01-28 11:14:28 -080010538 pring->txcmplq_cnt = 0;
James Smart895427b2017-02-12 13:52:30 -080010539 INIT_LIST_HEAD(&pring->txq);
10540 INIT_LIST_HEAD(&pring->txcmplq);
10541 INIT_LIST_HEAD(&pring->iocb_continueq);
10542 spin_lock_init(&pring->ring_lock);
10543
James Smartcdb42be2019-01-28 11:14:21 -080010544 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
James Smart895427b2017-02-12 13:52:30 -080010545 pring = phba->sli4_hba.nvmels_wq->pring;
10546 pring->flag = 0;
10547 pring->ringno = LPFC_ELS_RING;
James Smartc4908502019-01-28 11:14:28 -080010548 pring->txcmplq_cnt = 0;
James Smart895427b2017-02-12 13:52:30 -080010549 INIT_LIST_HEAD(&pring->txq);
10550 INIT_LIST_HEAD(&pring->txcmplq);
10551 INIT_LIST_HEAD(&pring->iocb_continueq);
10552 spin_lock_init(&pring->ring_lock);
10553 }
10554
10555 spin_unlock_irq(&phba->hbalock);
10556}
10557
10558/**
10559 * lpfc_sli_queue_init - Queue initialization function
10560 * @phba: Pointer to HBA context object.
10561 *
10562 * lpfc_sli_queue_init sets up mailbox queues and iocb queues for each
10563 * ring. This function also initializes ring indices of each ring.
10564 * This function is called during the initialization of the SLI
10565 * interface of an HBA.
10566 * This function is called with no lock held and always returns
10567 * 1.
10568 **/
10569void
10570lpfc_sli_queue_init(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -050010571{
10572 struct lpfc_sli *psli;
10573 struct lpfc_sli_ring *pring;
James Bottomley604a3e32005-10-29 10:28:33 -050010574 int i;
dea31012005-04-17 16:05:31 -050010575
10576 psli = &phba->sli;
James Smart2e0fef82007-06-17 19:56:36 -050010577 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -050010578 INIT_LIST_HEAD(&psli->mboxq);
James Smart92d7f7b2007-06-17 19:56:38 -050010579 INIT_LIST_HEAD(&psli->mboxq_cmpl);
dea31012005-04-17 16:05:31 -050010580 /* Initialize list headers for txq and txcmplq as double linked lists */
10581 for (i = 0; i < psli->num_rings; i++) {
James Smart895427b2017-02-12 13:52:30 -080010582 pring = &psli->sli3_ring[i];
dea31012005-04-17 16:05:31 -050010583 pring->ringno = i;
James Smart7e56aa22012-08-03 12:35:34 -040010584 pring->sli.sli3.next_cmdidx = 0;
10585 pring->sli.sli3.local_getidx = 0;
10586 pring->sli.sli3.cmdidx = 0;
dea31012005-04-17 16:05:31 -050010587 INIT_LIST_HEAD(&pring->iocb_continueq);
James Smart9c2face2008-01-11 01:53:18 -050010588 INIT_LIST_HEAD(&pring->iocb_continue_saveq);
dea31012005-04-17 16:05:31 -050010589 INIT_LIST_HEAD(&pring->postbufq);
James Smart895427b2017-02-12 13:52:30 -080010590 pring->flag = 0;
10591 INIT_LIST_HEAD(&pring->txq);
10592 INIT_LIST_HEAD(&pring->txcmplq);
James Smart7e56aa22012-08-03 12:35:34 -040010593 spin_lock_init(&pring->ring_lock);
dea31012005-04-17 16:05:31 -050010594 }
James Smart2e0fef82007-06-17 19:56:36 -050010595 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -050010596}
10597
James Smarte59058c2008-08-24 21:49:00 -040010598/**
James Smart04c68492009-05-22 14:52:52 -040010599 * lpfc_sli_mbox_sys_flush - Flush mailbox command sub-system
10600 * @phba: Pointer to HBA context object.
10601 *
10602 * This routine flushes the mailbox command subsystem. It will unconditionally
10603 * flush all the mailbox commands in the three possible stages in the mailbox
10604 * command sub-system: pending mailbox command queue; the outstanding mailbox
10605 * command; and completed mailbox command queue. It is caller's responsibility
10606 * to make sure that the driver is in the proper state to flush the mailbox
10607 * command sub-system. Namely, the posting of mailbox commands into the
10608 * pending mailbox command queue from the various clients must be stopped;
10609 * either the HBA is in a state that it will never works on the outstanding
10610 * mailbox command (such as in EEH or ERATT conditions) or the outstanding
10611 * mailbox command has been completed.
10612 **/
10613static void
10614lpfc_sli_mbox_sys_flush(struct lpfc_hba *phba)
10615{
10616 LIST_HEAD(completions);
10617 struct lpfc_sli *psli = &phba->sli;
10618 LPFC_MBOXQ_t *pmb;
10619 unsigned long iflag;
10620
James Smart523128e2018-09-10 10:30:46 -070010621 /* Disable softirqs, including timers from obtaining phba->hbalock */
10622 local_bh_disable();
10623
James Smart04c68492009-05-22 14:52:52 -040010624 /* Flush all the mailbox commands in the mbox system */
10625 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart523128e2018-09-10 10:30:46 -070010626
James Smart04c68492009-05-22 14:52:52 -040010627 /* The pending mailbox command queue */
10628 list_splice_init(&phba->sli.mboxq, &completions);
10629 /* The outstanding active mailbox command */
10630 if (psli->mbox_active) {
10631 list_add_tail(&psli->mbox_active->list, &completions);
10632 psli->mbox_active = NULL;
10633 psli->sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
10634 }
10635 /* The completed mailbox command queue */
10636 list_splice_init(&phba->sli.mboxq_cmpl, &completions);
10637 spin_unlock_irqrestore(&phba->hbalock, iflag);
10638
James Smart523128e2018-09-10 10:30:46 -070010639 /* Enable softirqs again, done with phba->hbalock */
10640 local_bh_enable();
10641
James Smart04c68492009-05-22 14:52:52 -040010642 /* Return all flushed mailbox commands with MBX_NOT_FINISHED status */
10643 while (!list_empty(&completions)) {
10644 list_remove_head(&completions, pmb, LPFC_MBOXQ_t, list);
10645 pmb->u.mb.mbxStatus = MBX_NOT_FINISHED;
10646 if (pmb->mbox_cmpl)
10647 pmb->mbox_cmpl(phba, pmb);
10648 }
10649}
10650
10651/**
James Smart3621a712009-04-06 18:47:14 -040010652 * lpfc_sli_host_down - Vport cleanup function
James Smarte59058c2008-08-24 21:49:00 -040010653 * @vport: Pointer to virtual port object.
10654 *
10655 * lpfc_sli_host_down is called to clean up the resources
10656 * associated with a vport before destroying virtual
10657 * port data structures.
10658 * This function does following operations:
10659 * - Free discovery resources associated with this virtual
10660 * port.
10661 * - Free iocbs associated with this virtual port in
10662 * the txq.
10663 * - Send abort for all iocb commands associated with this
10664 * vport in txcmplq.
10665 *
10666 * This function is called with no lock held and always returns 1.
10667 **/
dea31012005-04-17 16:05:31 -050010668int
James Smart92d7f7b2007-06-17 19:56:38 -050010669lpfc_sli_host_down(struct lpfc_vport *vport)
10670{
James Smart858c9f62007-06-17 19:56:39 -050010671 LIST_HEAD(completions);
James Smart92d7f7b2007-06-17 19:56:38 -050010672 struct lpfc_hba *phba = vport->phba;
10673 struct lpfc_sli *psli = &phba->sli;
James Smart895427b2017-02-12 13:52:30 -080010674 struct lpfc_queue *qp = NULL;
James Smart92d7f7b2007-06-17 19:56:38 -050010675 struct lpfc_sli_ring *pring;
10676 struct lpfc_iocbq *iocb, *next_iocb;
James Smart92d7f7b2007-06-17 19:56:38 -050010677 int i;
10678 unsigned long flags = 0;
10679 uint16_t prev_pring_flag;
10680
10681 lpfc_cleanup_discovery_resources(vport);
10682
10683 spin_lock_irqsave(&phba->hbalock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -050010684
James Smart895427b2017-02-12 13:52:30 -080010685 /*
10686 * Error everything on the txq since these iocbs
10687 * have not been given to the FW yet.
10688 * Also issue ABTS for everything on the txcmplq
10689 */
10690 if (phba->sli_rev != LPFC_SLI_REV4) {
10691 for (i = 0; i < psli->num_rings; i++) {
10692 pring = &psli->sli3_ring[i];
10693 prev_pring_flag = pring->flag;
10694 /* Only slow rings */
10695 if (pring->ringno == LPFC_ELS_RING) {
10696 pring->flag |= LPFC_DEFERRED_RING_EVENT;
10697 /* Set the lpfc data pending flag */
10698 set_bit(LPFC_DATA_READY, &phba->data_flags);
10699 }
10700 list_for_each_entry_safe(iocb, next_iocb,
10701 &pring->txq, list) {
10702 if (iocb->vport != vport)
10703 continue;
10704 list_move_tail(&iocb->list, &completions);
10705 }
10706 list_for_each_entry_safe(iocb, next_iocb,
10707 &pring->txcmplq, list) {
10708 if (iocb->vport != vport)
10709 continue;
10710 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
10711 }
10712 pring->flag = prev_pring_flag;
James Smart92d7f7b2007-06-17 19:56:38 -050010713 }
James Smart895427b2017-02-12 13:52:30 -080010714 } else {
10715 list_for_each_entry(qp, &phba->sli4_hba.lpfc_wq_list, wq_list) {
10716 pring = qp->pring;
10717 if (!pring)
10718 continue;
10719 if (pring == phba->sli4_hba.els_wq->pring) {
10720 pring->flag |= LPFC_DEFERRED_RING_EVENT;
10721 /* Set the lpfc data pending flag */
10722 set_bit(LPFC_DATA_READY, &phba->data_flags);
10723 }
10724 prev_pring_flag = pring->flag;
James Smart65a3df62019-09-21 20:58:48 -070010725 spin_lock(&pring->ring_lock);
James Smart895427b2017-02-12 13:52:30 -080010726 list_for_each_entry_safe(iocb, next_iocb,
10727 &pring->txq, list) {
10728 if (iocb->vport != vport)
10729 continue;
10730 list_move_tail(&iocb->list, &completions);
10731 }
James Smart65a3df62019-09-21 20:58:48 -070010732 spin_unlock(&pring->ring_lock);
James Smart895427b2017-02-12 13:52:30 -080010733 list_for_each_entry_safe(iocb, next_iocb,
10734 &pring->txcmplq, list) {
10735 if (iocb->vport != vport)
10736 continue;
10737 lpfc_sli_issue_abort_iotag(phba, pring, iocb);
10738 }
10739 pring->flag = prev_pring_flag;
10740 }
James Smart92d7f7b2007-06-17 19:56:38 -050010741 }
James Smart92d7f7b2007-06-17 19:56:38 -050010742 spin_unlock_irqrestore(&phba->hbalock, flags);
10743
James Smarta257bf92009-04-06 18:48:10 -040010744 /* Cancel all the IOCBs from the completions list */
10745 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
10746 IOERR_SLI_DOWN);
James Smart92d7f7b2007-06-17 19:56:38 -050010747 return 1;
10748}
10749
James Smarte59058c2008-08-24 21:49:00 -040010750/**
James Smart3621a712009-04-06 18:47:14 -040010751 * lpfc_sli_hba_down - Resource cleanup function for the HBA
James Smarte59058c2008-08-24 21:49:00 -040010752 * @phba: Pointer to HBA context object.
10753 *
10754 * This function cleans up all iocb, buffers, mailbox commands
10755 * while shutting down the HBA. This function is called with no
10756 * lock held and always returns 1.
10757 * This function does the following to cleanup driver resources:
10758 * - Free discovery resources for each virtual port
10759 * - Cleanup any pending fabric iocbs
10760 * - Iterate through the iocb txq and free each entry
10761 * in the list.
10762 * - Free up any buffer posted to the HBA
10763 * - Free mailbox commands in the mailbox queue.
10764 **/
James Smart92d7f7b2007-06-17 19:56:38 -050010765int
James Smart2e0fef82007-06-17 19:56:36 -050010766lpfc_sli_hba_down(struct lpfc_hba *phba)
dea31012005-04-17 16:05:31 -050010767{
James Smart2534ba72007-04-25 09:52:20 -040010768 LIST_HEAD(completions);
James Smart2e0fef82007-06-17 19:56:36 -050010769 struct lpfc_sli *psli = &phba->sli;
James Smart895427b2017-02-12 13:52:30 -080010770 struct lpfc_queue *qp = NULL;
dea31012005-04-17 16:05:31 -050010771 struct lpfc_sli_ring *pring;
James Smart0ff10d42008-01-11 01:52:36 -050010772 struct lpfc_dmabuf *buf_ptr;
dea31012005-04-17 16:05:31 -050010773 unsigned long flags = 0;
James Smart04c68492009-05-22 14:52:52 -040010774 int i;
10775
10776 /* Shutdown the mailbox command sub-system */
James Smart618a5232012-06-12 13:54:36 -040010777 lpfc_sli_mbox_sys_shutdown(phba, LPFC_MBX_WAIT);
dea31012005-04-17 16:05:31 -050010778
dea31012005-04-17 16:05:31 -050010779 lpfc_hba_down_prep(phba);
10780
James Smart523128e2018-09-10 10:30:46 -070010781 /* Disable softirqs, including timers from obtaining phba->hbalock */
10782 local_bh_disable();
10783
James Smart92d7f7b2007-06-17 19:56:38 -050010784 lpfc_fabric_abort_hba(phba);
10785
James Smart2e0fef82007-06-17 19:56:36 -050010786 spin_lock_irqsave(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -050010787
James Smart895427b2017-02-12 13:52:30 -080010788 /*
10789 * Error everything on the txq since these iocbs
10790 * have not been given to the FW yet.
10791 */
10792 if (phba->sli_rev != LPFC_SLI_REV4) {
10793 for (i = 0; i < psli->num_rings; i++) {
10794 pring = &psli->sli3_ring[i];
10795 /* Only slow rings */
10796 if (pring->ringno == LPFC_ELS_RING) {
10797 pring->flag |= LPFC_DEFERRED_RING_EVENT;
10798 /* Set the lpfc data pending flag */
10799 set_bit(LPFC_DATA_READY, &phba->data_flags);
10800 }
10801 list_splice_init(&pring->txq, &completions);
10802 }
10803 } else {
10804 list_for_each_entry(qp, &phba->sli4_hba.lpfc_wq_list, wq_list) {
10805 pring = qp->pring;
10806 if (!pring)
10807 continue;
James Smart4b0a42b2019-08-14 16:56:42 -070010808 spin_lock(&pring->ring_lock);
James Smart895427b2017-02-12 13:52:30 -080010809 list_splice_init(&pring->txq, &completions);
James Smart4b0a42b2019-08-14 16:56:42 -070010810 spin_unlock(&pring->ring_lock);
James Smart895427b2017-02-12 13:52:30 -080010811 if (pring == phba->sli4_hba.els_wq->pring) {
10812 pring->flag |= LPFC_DEFERRED_RING_EVENT;
10813 /* Set the lpfc data pending flag */
10814 set_bit(LPFC_DATA_READY, &phba->data_flags);
10815 }
10816 }
dea31012005-04-17 16:05:31 -050010817 }
James Smart2e0fef82007-06-17 19:56:36 -050010818 spin_unlock_irqrestore(&phba->hbalock, flags);
dea31012005-04-17 16:05:31 -050010819
James Smarta257bf92009-04-06 18:48:10 -040010820 /* Cancel all the IOCBs from the completions list */
10821 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
10822 IOERR_SLI_DOWN);
James Smart2534ba72007-04-25 09:52:20 -040010823
James Smart0ff10d42008-01-11 01:52:36 -050010824 spin_lock_irqsave(&phba->hbalock, flags);
10825 list_splice_init(&phba->elsbuf, &completions);
10826 phba->elsbuf_cnt = 0;
10827 phba->elsbuf_prev_cnt = 0;
10828 spin_unlock_irqrestore(&phba->hbalock, flags);
10829
10830 while (!list_empty(&completions)) {
10831 list_remove_head(&completions, buf_ptr,
10832 struct lpfc_dmabuf, list);
10833 lpfc_mbuf_free(phba, buf_ptr->virt, buf_ptr->phys);
10834 kfree(buf_ptr);
10835 }
10836
James Smart523128e2018-09-10 10:30:46 -070010837 /* Enable softirqs again, done with phba->hbalock */
10838 local_bh_enable();
10839
dea31012005-04-17 16:05:31 -050010840 /* Return any active mbox cmds */
10841 del_timer_sync(&psli->mbox_tmo);
James Smart92d7f7b2007-06-17 19:56:38 -050010842
James Smartda0436e2009-05-22 14:51:39 -040010843 spin_lock_irqsave(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -050010844 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
James Smartda0436e2009-05-22 14:51:39 -040010845 spin_unlock_irqrestore(&phba->pport->work_port_lock, flags);
James Smart92d7f7b2007-06-17 19:56:38 -050010846
James Smartda0436e2009-05-22 14:51:39 -040010847 return 1;
10848}
James Smart92d7f7b2007-06-17 19:56:38 -050010849
James Smartda0436e2009-05-22 14:51:39 -040010850/**
James Smart3621a712009-04-06 18:47:14 -040010851 * lpfc_sli_pcimem_bcopy - SLI memory copy function
James Smarte59058c2008-08-24 21:49:00 -040010852 * @srcp: Source memory pointer.
10853 * @destp: Destination memory pointer.
10854 * @cnt: Number of words required to be copied.
10855 *
10856 * This function is used for copying data between driver memory
10857 * and the SLI memory. This function also changes the endianness
10858 * of each word if native endianness is different from SLI
10859 * endianness. This function can be called with or without
10860 * lock.
10861 **/
dea31012005-04-17 16:05:31 -050010862void
10863lpfc_sli_pcimem_bcopy(void *srcp, void *destp, uint32_t cnt)
10864{
10865 uint32_t *src = srcp;
10866 uint32_t *dest = destp;
10867 uint32_t ldata;
10868 int i;
10869
10870 for (i = 0; i < (int)cnt; i += sizeof (uint32_t)) {
10871 ldata = *src;
10872 ldata = le32_to_cpu(ldata);
10873 *dest = ldata;
10874 src++;
10875 dest++;
10876 }
10877}
10878
James Smarte59058c2008-08-24 21:49:00 -040010879
10880/**
James Smarta0c87cb2009-07-19 10:01:10 -040010881 * lpfc_sli_bemem_bcopy - SLI memory copy function
10882 * @srcp: Source memory pointer.
10883 * @destp: Destination memory pointer.
10884 * @cnt: Number of words required to be copied.
10885 *
10886 * This function is used for copying data between a data structure
10887 * with big endian representation to local endianness.
10888 * This function can be called with or without lock.
10889 **/
10890void
10891lpfc_sli_bemem_bcopy(void *srcp, void *destp, uint32_t cnt)
10892{
10893 uint32_t *src = srcp;
10894 uint32_t *dest = destp;
10895 uint32_t ldata;
10896 int i;
10897
10898 for (i = 0; i < (int)cnt; i += sizeof(uint32_t)) {
10899 ldata = *src;
10900 ldata = be32_to_cpu(ldata);
10901 *dest = ldata;
10902 src++;
10903 dest++;
10904 }
10905}
10906
10907/**
James Smart3621a712009-04-06 18:47:14 -040010908 * lpfc_sli_ringpostbuf_put - Function to add a buffer to postbufq
James Smarte59058c2008-08-24 21:49:00 -040010909 * @phba: Pointer to HBA context object.
10910 * @pring: Pointer to driver SLI ring object.
10911 * @mp: Pointer to driver buffer object.
10912 *
10913 * This function is called with no lock held.
10914 * It always return zero after adding the buffer to the postbufq
10915 * buffer list.
10916 **/
dea31012005-04-17 16:05:31 -050010917int
James Smart2e0fef82007-06-17 19:56:36 -050010918lpfc_sli_ringpostbuf_put(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
10919 struct lpfc_dmabuf *mp)
dea31012005-04-17 16:05:31 -050010920{
10921 /* Stick struct lpfc_dmabuf at end of postbufq so driver can look it up
10922 later */
James Smart2e0fef82007-06-17 19:56:36 -050010923 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -050010924 list_add_tail(&mp->list, &pring->postbufq);
dea31012005-04-17 16:05:31 -050010925 pring->postbufq_cnt++;
James Smart2e0fef82007-06-17 19:56:36 -050010926 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -050010927 return 0;
10928}
10929
James Smarte59058c2008-08-24 21:49:00 -040010930/**
James Smart3621a712009-04-06 18:47:14 -040010931 * lpfc_sli_get_buffer_tag - allocates a tag for a CMD_QUE_XRI64_CX buffer
James Smarte59058c2008-08-24 21:49:00 -040010932 * @phba: Pointer to HBA context object.
10933 *
10934 * When HBQ is enabled, buffers are searched based on tags. This function
10935 * allocates a tag for buffer posted using CMD_QUE_XRI64_CX iocb. The
10936 * tag is bit wise or-ed with QUE_BUFTAG_BIT to make sure that the tag
10937 * does not conflict with tags of buffer posted for unsolicited events.
10938 * The function returns the allocated tag. The function is called with
10939 * no locks held.
10940 **/
James Smart76bb24e2007-10-27 13:38:00 -040010941uint32_t
10942lpfc_sli_get_buffer_tag(struct lpfc_hba *phba)
10943{
10944 spin_lock_irq(&phba->hbalock);
10945 phba->buffer_tag_count++;
10946 /*
10947 * Always set the QUE_BUFTAG_BIT to distiguish between
10948 * a tag assigned by HBQ.
10949 */
10950 phba->buffer_tag_count |= QUE_BUFTAG_BIT;
10951 spin_unlock_irq(&phba->hbalock);
10952 return phba->buffer_tag_count;
10953}
10954
James Smarte59058c2008-08-24 21:49:00 -040010955/**
James Smart3621a712009-04-06 18:47:14 -040010956 * lpfc_sli_ring_taggedbuf_get - find HBQ buffer associated with given tag
James Smarte59058c2008-08-24 21:49:00 -040010957 * @phba: Pointer to HBA context object.
10958 * @pring: Pointer to driver SLI ring object.
10959 * @tag: Buffer tag.
10960 *
10961 * Buffers posted using CMD_QUE_XRI64_CX iocb are in pring->postbufq
10962 * list. After HBA DMA data to these buffers, CMD_IOCB_RET_XRI64_CX
10963 * iocb is posted to the response ring with the tag of the buffer.
10964 * This function searches the pring->postbufq list using the tag
10965 * to find buffer associated with CMD_IOCB_RET_XRI64_CX
10966 * iocb. If the buffer is found then lpfc_dmabuf object of the
10967 * buffer is returned to the caller else NULL is returned.
10968 * This function is called with no lock held.
10969 **/
James Smart76bb24e2007-10-27 13:38:00 -040010970struct lpfc_dmabuf *
10971lpfc_sli_ring_taggedbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
10972 uint32_t tag)
10973{
10974 struct lpfc_dmabuf *mp, *next_mp;
10975 struct list_head *slp = &pring->postbufq;
10976
Lucas De Marchi25985ed2011-03-30 22:57:33 -030010977 /* Search postbufq, from the beginning, looking for a match on tag */
James Smart76bb24e2007-10-27 13:38:00 -040010978 spin_lock_irq(&phba->hbalock);
10979 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
10980 if (mp->buffer_tag == tag) {
10981 list_del_init(&mp->list);
10982 pring->postbufq_cnt--;
10983 spin_unlock_irq(&phba->hbalock);
10984 return mp;
10985 }
10986 }
10987
10988 spin_unlock_irq(&phba->hbalock);
10989 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smartd7c255b2008-08-24 21:50:00 -040010990 "0402 Cannot find virtual addr for buffer tag on "
James Smart32350662019-08-14 16:57:06 -070010991 "ring %d Data x%lx x%px x%px x%x\n",
James Smart76bb24e2007-10-27 13:38:00 -040010992 pring->ringno, (unsigned long) tag,
10993 slp->next, slp->prev, pring->postbufq_cnt);
10994
10995 return NULL;
10996}
dea31012005-04-17 16:05:31 -050010997
James Smarte59058c2008-08-24 21:49:00 -040010998/**
James Smart3621a712009-04-06 18:47:14 -040010999 * lpfc_sli_ringpostbuf_get - search buffers for unsolicited CT and ELS events
James Smarte59058c2008-08-24 21:49:00 -040011000 * @phba: Pointer to HBA context object.
11001 * @pring: Pointer to driver SLI ring object.
11002 * @phys: DMA address of the buffer.
11003 *
11004 * This function searches the buffer list using the dma_address
11005 * of unsolicited event to find the driver's lpfc_dmabuf object
11006 * corresponding to the dma_address. The function returns the
11007 * lpfc_dmabuf object if a buffer is found else it returns NULL.
11008 * This function is called by the ct and els unsolicited event
11009 * handlers to get the buffer associated with the unsolicited
11010 * event.
11011 *
11012 * This function is called with no lock held.
11013 **/
dea31012005-04-17 16:05:31 -050011014struct lpfc_dmabuf *
11015lpfc_sli_ringpostbuf_get(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
11016 dma_addr_t phys)
11017{
11018 struct lpfc_dmabuf *mp, *next_mp;
11019 struct list_head *slp = &pring->postbufq;
11020
Lucas De Marchi25985ed2011-03-30 22:57:33 -030011021 /* Search postbufq, from the beginning, looking for a match on phys */
James Smart2e0fef82007-06-17 19:56:36 -050011022 spin_lock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -050011023 list_for_each_entry_safe(mp, next_mp, &pring->postbufq, list) {
11024 if (mp->phys == phys) {
11025 list_del_init(&mp->list);
11026 pring->postbufq_cnt--;
James Smart2e0fef82007-06-17 19:56:36 -050011027 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -050011028 return mp;
11029 }
11030 }
11031
James Smart2e0fef82007-06-17 19:56:36 -050011032 spin_unlock_irq(&phba->hbalock);
dea31012005-04-17 16:05:31 -050011033 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smarte8b62012007-08-02 11:10:09 -040011034 "0410 Cannot find virtual addr for mapped buf on "
James Smart32350662019-08-14 16:57:06 -070011035 "ring %d Data x%llx x%px x%px x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040011036 pring->ringno, (unsigned long long)phys,
dea31012005-04-17 16:05:31 -050011037 slp->next, slp->prev, pring->postbufq_cnt);
11038 return NULL;
11039}
11040
James Smarte59058c2008-08-24 21:49:00 -040011041/**
James Smart3621a712009-04-06 18:47:14 -040011042 * lpfc_sli_abort_els_cmpl - Completion handler for the els abort iocbs
James Smarte59058c2008-08-24 21:49:00 -040011043 * @phba: Pointer to HBA context object.
11044 * @cmdiocb: Pointer to driver command iocb object.
11045 * @rspiocb: Pointer to driver response iocb object.
11046 *
11047 * This function is the completion handler for the abort iocbs for
11048 * ELS commands. This function is called from the ELS ring event
11049 * handler with no lock held. This function frees memory resources
11050 * associated with the abort iocb.
11051 **/
dea31012005-04-17 16:05:31 -050011052static void
James Smart2e0fef82007-06-17 19:56:36 -050011053lpfc_sli_abort_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
11054 struct lpfc_iocbq *rspiocb)
dea31012005-04-17 16:05:31 -050011055{
James Smart2e0fef82007-06-17 19:56:36 -050011056 IOCB_t *irsp = &rspiocb->iocb;
James Smart2680eea2007-04-25 09:52:55 -040011057 uint16_t abort_iotag, abort_context;
James Smartff78d8f2011-12-13 13:21:35 -050011058 struct lpfc_iocbq *abort_iocb = NULL;
James Smart2680eea2007-04-25 09:52:55 -040011059
11060 if (irsp->ulpStatus) {
James Smartff78d8f2011-12-13 13:21:35 -050011061
11062 /*
11063 * Assume that the port already completed and returned, or
11064 * will return the iocb. Just Log the message.
11065 */
James Smart2680eea2007-04-25 09:52:55 -040011066 abort_context = cmdiocb->iocb.un.acxri.abortContextTag;
11067 abort_iotag = cmdiocb->iocb.un.acxri.abortIoTag;
11068
James Smart2e0fef82007-06-17 19:56:36 -050011069 spin_lock_irq(&phba->hbalock);
James Smart45ed1192009-10-02 15:17:02 -040011070 if (phba->sli_rev < LPFC_SLI_REV4) {
James Smartfaa832e2018-07-31 17:23:18 -070011071 if (irsp->ulpCommand == CMD_ABORT_XRI_CX &&
11072 irsp->ulpStatus == IOSTAT_LOCAL_REJECT &&
11073 irsp->un.ulpWord[4] == IOERR_ABORT_REQUESTED) {
11074 spin_unlock_irq(&phba->hbalock);
11075 goto release_iocb;
11076 }
James Smart45ed1192009-10-02 15:17:02 -040011077 if (abort_iotag != 0 &&
11078 abort_iotag <= phba->sli.last_iotag)
11079 abort_iocb =
11080 phba->sli.iocbq_lookup[abort_iotag];
11081 } else
11082 /* For sli4 the abort_tag is the XRI,
11083 * so the abort routine puts the iotag of the iocb
11084 * being aborted in the context field of the abort
11085 * IOCB.
11086 */
11087 abort_iocb = phba->sli.iocbq_lookup[abort_context];
James Smart2680eea2007-04-25 09:52:55 -040011088
James Smart2a9bf3d2010-06-07 15:24:45 -040011089 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS | LOG_SLI,
James Smart32350662019-08-14 16:57:06 -070011090 "0327 Cannot abort els iocb x%px "
James Smart2a9bf3d2010-06-07 15:24:45 -040011091 "with tag %x context %x, abort status %x, "
11092 "abort code %x\n",
11093 abort_iocb, abort_iotag, abort_context,
11094 irsp->ulpStatus, irsp->un.ulpWord[4]);
James Smart2680eea2007-04-25 09:52:55 -040011095
James Smartff78d8f2011-12-13 13:21:35 -050011096 spin_unlock_irq(&phba->hbalock);
James Smart2680eea2007-04-25 09:52:55 -040011097 }
James Smartfaa832e2018-07-31 17:23:18 -070011098release_iocb:
James Bottomley604a3e32005-10-29 10:28:33 -050011099 lpfc_sli_release_iocbq(phba, cmdiocb);
dea31012005-04-17 16:05:31 -050011100 return;
11101}
11102
James Smarte59058c2008-08-24 21:49:00 -040011103/**
James Smart3621a712009-04-06 18:47:14 -040011104 * lpfc_ignore_els_cmpl - Completion handler for aborted ELS command
James Smarte59058c2008-08-24 21:49:00 -040011105 * @phba: Pointer to HBA context object.
11106 * @cmdiocb: Pointer to driver command iocb object.
11107 * @rspiocb: Pointer to driver response iocb object.
11108 *
11109 * The function is called from SLI ring event handler with no
11110 * lock held. This function is the completion handler for ELS commands
11111 * which are aborted. The function frees memory resources used for
11112 * the aborted ELS commands.
11113 **/
James Smart92d7f7b2007-06-17 19:56:38 -050011114static void
11115lpfc_ignore_els_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
11116 struct lpfc_iocbq *rspiocb)
11117{
11118 IOCB_t *irsp = &rspiocb->iocb;
11119
11120 /* ELS cmd tag <ulpIoTag> completes */
11121 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smartd7c255b2008-08-24 21:50:00 -040011122 "0139 Ignoring ELS cmd tag x%x completion Data: "
James Smart92d7f7b2007-06-17 19:56:38 -050011123 "x%x x%x x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040011124 irsp->ulpIoTag, irsp->ulpStatus,
James Smart92d7f7b2007-06-17 19:56:38 -050011125 irsp->un.ulpWord[4], irsp->ulpTimeout);
James Smart858c9f62007-06-17 19:56:39 -050011126 if (cmdiocb->iocb.ulpCommand == CMD_GEN_REQUEST64_CR)
11127 lpfc_ct_free_iocb(phba, cmdiocb);
11128 else
11129 lpfc_els_free_iocb(phba, cmdiocb);
James Smart92d7f7b2007-06-17 19:56:38 -050011130 return;
11131}
11132
James Smarte59058c2008-08-24 21:49:00 -040011133/**
James Smart5af5eee2010-10-22 11:06:38 -040011134 * lpfc_sli_abort_iotag_issue - Issue abort for a command iocb
James Smarte59058c2008-08-24 21:49:00 -040011135 * @phba: Pointer to HBA context object.
11136 * @pring: Pointer to driver SLI ring object.
11137 * @cmdiocb: Pointer to driver command iocb object.
11138 *
James Smart5af5eee2010-10-22 11:06:38 -040011139 * This function issues an abort iocb for the provided command iocb down to
11140 * the port. Other than the case the outstanding command iocb is an abort
11141 * request, this function issues abort out unconditionally. This function is
11142 * called with hbalock held. The function returns 0 when it fails due to
11143 * memory allocation failure or when the command iocb is an abort request.
James Smarte59058c2008-08-24 21:49:00 -040011144 **/
James Smart5af5eee2010-10-22 11:06:38 -040011145static int
11146lpfc_sli_abort_iotag_issue(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
James Smart2e0fef82007-06-17 19:56:36 -050011147 struct lpfc_iocbq *cmdiocb)
dea31012005-04-17 16:05:31 -050011148{
James Smart2e0fef82007-06-17 19:56:36 -050011149 struct lpfc_vport *vport = cmdiocb->vport;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011150 struct lpfc_iocbq *abtsiocbp;
dea31012005-04-17 16:05:31 -050011151 IOCB_t *icmd = NULL;
11152 IOCB_t *iabt = NULL;
James Smart5af5eee2010-10-22 11:06:38 -040011153 int retval;
James Smart7e56aa22012-08-03 12:35:34 -040011154 unsigned long iflags;
James Smartfaa832e2018-07-31 17:23:18 -070011155 struct lpfc_nodelist *ndlp;
James Smart07951072007-04-25 09:51:38 -040011156
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +010011157 lockdep_assert_held(&phba->hbalock);
11158
James Smart92d7f7b2007-06-17 19:56:38 -050011159 /*
11160 * There are certain command types we don't want to abort. And we
11161 * don't want to abort commands that are already in the process of
11162 * being aborted.
James Smart07951072007-04-25 09:51:38 -040011163 */
11164 icmd = &cmdiocb->iocb;
James Smart2e0fef82007-06-17 19:56:36 -050011165 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
James Smart92d7f7b2007-06-17 19:56:38 -050011166 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
11167 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
James Smart07951072007-04-25 09:51:38 -040011168 return 0;
11169
dea31012005-04-17 16:05:31 -050011170 /* issue ABTS for this IOCB based on iotag */
James Smart92d7f7b2007-06-17 19:56:38 -050011171 abtsiocbp = __lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -050011172 if (abtsiocbp == NULL)
11173 return 0;
dea31012005-04-17 16:05:31 -050011174
James Smart07951072007-04-25 09:51:38 -040011175 /* This signals the response to set the correct status
James Smart341af102010-01-26 23:07:37 -050011176 * before calling the completion handler
James Smart07951072007-04-25 09:51:38 -040011177 */
11178 cmdiocb->iocb_flag |= LPFC_DRIVER_ABORTED;
11179
dea31012005-04-17 16:05:31 -050011180 iabt = &abtsiocbp->iocb;
James Smart07951072007-04-25 09:51:38 -040011181 iabt->un.acxri.abortType = ABORT_TYPE_ABTS;
11182 iabt->un.acxri.abortContextTag = icmd->ulpContext;
James Smart45ed1192009-10-02 15:17:02 -040011183 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smartda0436e2009-05-22 14:51:39 -040011184 iabt->un.acxri.abortIoTag = cmdiocb->sli4_xritag;
James Smart45ed1192009-10-02 15:17:02 -040011185 iabt->un.acxri.abortContextTag = cmdiocb->iotag;
James Smartfaa832e2018-07-31 17:23:18 -070011186 } else {
James Smartda0436e2009-05-22 14:51:39 -040011187 iabt->un.acxri.abortIoTag = icmd->ulpIoTag;
James Smartfaa832e2018-07-31 17:23:18 -070011188 if (pring->ringno == LPFC_ELS_RING) {
11189 ndlp = (struct lpfc_nodelist *)(cmdiocb->context1);
11190 iabt->un.acxri.abortContextTag = ndlp->nlp_rpi;
11191 }
11192 }
dea31012005-04-17 16:05:31 -050011193 iabt->ulpLe = 1;
James Smart07951072007-04-25 09:51:38 -040011194 iabt->ulpClass = icmd->ulpClass;
dea31012005-04-17 16:05:31 -050011195
James Smart5ffc2662009-11-18 15:39:44 -050011196 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
James Smart895427b2017-02-12 13:52:30 -080011197 abtsiocbp->hba_wqidx = cmdiocb->hba_wqidx;
James Smart341af102010-01-26 23:07:37 -050011198 if (cmdiocb->iocb_flag & LPFC_IO_FCP)
11199 abtsiocbp->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart9bd2bff52014-09-03 12:57:30 -040011200 if (cmdiocb->iocb_flag & LPFC_IO_FOF)
11201 abtsiocbp->iocb_flag |= LPFC_IO_FOF;
James Smart5ffc2662009-11-18 15:39:44 -050011202
James Smart2e0fef82007-06-17 19:56:36 -050011203 if (phba->link_state >= LPFC_LINK_UP)
James Smart07951072007-04-25 09:51:38 -040011204 iabt->ulpCommand = CMD_ABORT_XRI_CN;
11205 else
11206 iabt->ulpCommand = CMD_CLOSE_XRI_CN;
11207
11208 abtsiocbp->iocb_cmpl = lpfc_sli_abort_els_cmpl;
James Smarte6c6acc2016-12-19 15:07:23 -080011209 abtsiocbp->vport = vport;
James Smart5b8bd0c2007-04-25 09:52:49 -040011210
James Smarte8b62012007-08-02 11:10:09 -040011211 lpfc_printf_vlog(vport, KERN_INFO, LOG_SLI,
11212 "0339 Abort xri x%x, original iotag x%x, "
11213 "abort cmd iotag x%x\n",
James Smart2a9bf3d2010-06-07 15:24:45 -040011214 iabt->un.acxri.abortIoTag,
James Smarte8b62012007-08-02 11:10:09 -040011215 iabt->un.acxri.abortContextTag,
James Smart2a9bf3d2010-06-07 15:24:45 -040011216 abtsiocbp->iotag);
James Smart7e56aa22012-08-03 12:35:34 -040011217
11218 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart895427b2017-02-12 13:52:30 -080011219 pring = lpfc_sli4_calc_ring(phba, abtsiocbp);
11220 if (unlikely(pring == NULL))
James Smart9bd2bff52014-09-03 12:57:30 -040011221 return 0;
James Smart7e56aa22012-08-03 12:35:34 -040011222 /* Note: both hbalock and ring_lock need to be set here */
11223 spin_lock_irqsave(&pring->ring_lock, iflags);
11224 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
11225 abtsiocbp, 0);
11226 spin_unlock_irqrestore(&pring->ring_lock, iflags);
11227 } else {
11228 retval = __lpfc_sli_issue_iocb(phba, pring->ringno,
11229 abtsiocbp, 0);
11230 }
James Smart07951072007-04-25 09:51:38 -040011231
James Smartd7c255b2008-08-24 21:50:00 -040011232 if (retval)
11233 __lpfc_sli_release_iocbq(phba, abtsiocbp);
James Smart5af5eee2010-10-22 11:06:38 -040011234
11235 /*
11236 * Caller to this routine should check for IOCB_ERROR
11237 * and handle it properly. This routine no longer removes
11238 * iocb off txcmplq and call compl in case of IOCB_ERROR.
11239 */
11240 return retval;
11241}
11242
11243/**
11244 * lpfc_sli_issue_abort_iotag - Abort function for a command iocb
11245 * @phba: Pointer to HBA context object.
11246 * @pring: Pointer to driver SLI ring object.
11247 * @cmdiocb: Pointer to driver command iocb object.
11248 *
11249 * This function issues an abort iocb for the provided command iocb. In case
11250 * of unloading, the abort iocb will not be issued to commands on the ELS
11251 * ring. Instead, the callback function shall be changed to those commands
11252 * so that nothing happens when them finishes. This function is called with
11253 * hbalock held. The function returns 0 when the command iocb is an abort
11254 * request.
11255 **/
11256int
11257lpfc_sli_issue_abort_iotag(struct lpfc_hba *phba, struct lpfc_sli_ring *pring,
11258 struct lpfc_iocbq *cmdiocb)
11259{
11260 struct lpfc_vport *vport = cmdiocb->vport;
11261 int retval = IOCB_ERROR;
11262 IOCB_t *icmd = NULL;
11263
Johannes Thumshirn1c2ba472016-01-20 16:22:22 +010011264 lockdep_assert_held(&phba->hbalock);
11265
James Smart5af5eee2010-10-22 11:06:38 -040011266 /*
11267 * There are certain command types we don't want to abort. And we
11268 * don't want to abort commands that are already in the process of
11269 * being aborted.
11270 */
11271 icmd = &cmdiocb->iocb;
11272 if (icmd->ulpCommand == CMD_ABORT_XRI_CN ||
11273 icmd->ulpCommand == CMD_CLOSE_XRI_CN ||
11274 (cmdiocb->iocb_flag & LPFC_DRIVER_ABORTED) != 0)
11275 return 0;
11276
Dick Kennedy1234a6d2017-09-29 17:34:29 -070011277 if (!pring) {
11278 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
11279 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
11280 else
11281 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
11282 goto abort_iotag_exit;
11283 }
11284
James Smart5af5eee2010-10-22 11:06:38 -040011285 /*
11286 * If we're unloading, don't abort iocb on the ELS ring, but change
11287 * the callback so that nothing happens when it finishes.
11288 */
11289 if ((vport->load_flag & FC_UNLOADING) &&
11290 (pring->ringno == LPFC_ELS_RING)) {
11291 if (cmdiocb->iocb_flag & LPFC_IO_FABRIC)
11292 cmdiocb->fabric_iocb_cmpl = lpfc_ignore_els_cmpl;
11293 else
11294 cmdiocb->iocb_cmpl = lpfc_ignore_els_cmpl;
11295 goto abort_iotag_exit;
11296 }
11297
11298 /* Now, we try to issue the abort to the cmdiocb out */
11299 retval = lpfc_sli_abort_iotag_issue(phba, pring, cmdiocb);
11300
James Smart07951072007-04-25 09:51:38 -040011301abort_iotag_exit:
James Smart2e0fef82007-06-17 19:56:36 -050011302 /*
11303 * Caller to this routine should check for IOCB_ERROR
11304 * and handle it properly. This routine no longer removes
11305 * iocb off txcmplq and call compl in case of IOCB_ERROR.
James Smart07951072007-04-25 09:51:38 -040011306 */
James Smart2e0fef82007-06-17 19:56:36 -050011307 return retval;
dea31012005-04-17 16:05:31 -050011308}
11309
James Smarte59058c2008-08-24 21:49:00 -040011310/**
James Smart5af5eee2010-10-22 11:06:38 -040011311 * lpfc_sli_hba_iocb_abort - Abort all iocbs to an hba.
11312 * @phba: pointer to lpfc HBA data structure.
11313 *
11314 * This routine will abort all pending and outstanding iocbs to an HBA.
11315 **/
11316void
11317lpfc_sli_hba_iocb_abort(struct lpfc_hba *phba)
11318{
11319 struct lpfc_sli *psli = &phba->sli;
11320 struct lpfc_sli_ring *pring;
James Smart895427b2017-02-12 13:52:30 -080011321 struct lpfc_queue *qp = NULL;
James Smart5af5eee2010-10-22 11:06:38 -040011322 int i;
11323
James Smart895427b2017-02-12 13:52:30 -080011324 if (phba->sli_rev != LPFC_SLI_REV4) {
11325 for (i = 0; i < psli->num_rings; i++) {
11326 pring = &psli->sli3_ring[i];
11327 lpfc_sli_abort_iocb_ring(phba, pring);
11328 }
11329 return;
11330 }
11331 list_for_each_entry(qp, &phba->sli4_hba.lpfc_wq_list, wq_list) {
11332 pring = qp->pring;
11333 if (!pring)
11334 continue;
James Smartdb55fba2014-04-04 13:52:02 -040011335 lpfc_sli_abort_iocb_ring(phba, pring);
James Smart5af5eee2010-10-22 11:06:38 -040011336 }
11337}
11338
11339/**
James Smart3621a712009-04-06 18:47:14 -040011340 * lpfc_sli_validate_fcp_iocb - find commands associated with a vport or LUN
James Smarte59058c2008-08-24 21:49:00 -040011341 * @iocbq: Pointer to driver iocb object.
11342 * @vport: Pointer to driver virtual port object.
11343 * @tgt_id: SCSI ID of the target.
11344 * @lun_id: LUN ID of the scsi device.
11345 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST
11346 *
James Smart3621a712009-04-06 18:47:14 -040011347 * This function acts as an iocb filter for functions which abort or count
James Smarte59058c2008-08-24 21:49:00 -040011348 * all FCP iocbs pending on a lun/SCSI target/SCSI host. It will return
11349 * 0 if the filtering criteria is met for the given iocb and will return
11350 * 1 if the filtering criteria is not met.
11351 * If ctx_cmd == LPFC_CTX_LUN, the function returns 0 only if the
11352 * given iocb is for the SCSI device specified by vport, tgt_id and
11353 * lun_id parameter.
11354 * If ctx_cmd == LPFC_CTX_TGT, the function returns 0 only if the
11355 * given iocb is for the SCSI target specified by vport and tgt_id
11356 * parameters.
11357 * If ctx_cmd == LPFC_CTX_HOST, the function returns 0 only if the
11358 * given iocb is for the SCSI host associated with the given vport.
11359 * This function is called with no locks held.
11360 **/
dea31012005-04-17 16:05:31 -050011361static int
James Smart51ef4c22007-08-02 11:10:31 -040011362lpfc_sli_validate_fcp_iocb(struct lpfc_iocbq *iocbq, struct lpfc_vport *vport,
11363 uint16_t tgt_id, uint64_t lun_id,
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011364 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -050011365{
James Smartc4908502019-01-28 11:14:28 -080011366 struct lpfc_io_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -050011367 int rc = 1;
11368
James Smartb0e83012018-06-26 08:24:29 -070011369 if (iocbq->vport != vport)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011370 return rc;
11371
James Smartb0e83012018-06-26 08:24:29 -070011372 if (!(iocbq->iocb_flag & LPFC_IO_FCP) ||
11373 !(iocbq->iocb_flag & LPFC_IO_ON_TXCMPLQ))
James Smart51ef4c22007-08-02 11:10:31 -040011374 return rc;
11375
James Smartc4908502019-01-28 11:14:28 -080011376 lpfc_cmd = container_of(iocbq, struct lpfc_io_buf, cur_iocbq);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011377
James Smart495a7142008-06-14 22:52:59 -040011378 if (lpfc_cmd->pCmd == NULL)
dea31012005-04-17 16:05:31 -050011379 return rc;
11380
11381 switch (ctx_cmd) {
11382 case LPFC_CTX_LUN:
James Smartb0e83012018-06-26 08:24:29 -070011383 if ((lpfc_cmd->rdata) && (lpfc_cmd->rdata->pnode) &&
James Smart495a7142008-06-14 22:52:59 -040011384 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id) &&
11385 (scsilun_to_int(&lpfc_cmd->fcp_cmnd->fcp_lun) == lun_id))
dea31012005-04-17 16:05:31 -050011386 rc = 0;
11387 break;
11388 case LPFC_CTX_TGT:
James Smartb0e83012018-06-26 08:24:29 -070011389 if ((lpfc_cmd->rdata) && (lpfc_cmd->rdata->pnode) &&
James Smart495a7142008-06-14 22:52:59 -040011390 (lpfc_cmd->rdata->pnode->nlp_sid == tgt_id))
dea31012005-04-17 16:05:31 -050011391 rc = 0;
11392 break;
dea31012005-04-17 16:05:31 -050011393 case LPFC_CTX_HOST:
11394 rc = 0;
11395 break;
11396 default:
11397 printk(KERN_ERR "%s: Unknown context cmd type, value %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -070011398 __func__, ctx_cmd);
dea31012005-04-17 16:05:31 -050011399 break;
11400 }
11401
11402 return rc;
11403}
11404
James Smarte59058c2008-08-24 21:49:00 -040011405/**
James Smart3621a712009-04-06 18:47:14 -040011406 * lpfc_sli_sum_iocb - Function to count the number of FCP iocbs pending
James Smarte59058c2008-08-24 21:49:00 -040011407 * @vport: Pointer to virtual port.
11408 * @tgt_id: SCSI ID of the target.
11409 * @lun_id: LUN ID of the scsi device.
11410 * @ctx_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
11411 *
11412 * This function returns number of FCP commands pending for the vport.
11413 * When ctx_cmd == LPFC_CTX_LUN, the function returns number of FCP
11414 * commands pending on the vport associated with SCSI device specified
11415 * by tgt_id and lun_id parameters.
11416 * When ctx_cmd == LPFC_CTX_TGT, the function returns number of FCP
11417 * commands pending on the vport associated with SCSI target specified
11418 * by tgt_id parameter.
11419 * When ctx_cmd == LPFC_CTX_HOST, the function returns number of FCP
11420 * commands pending on the vport.
11421 * This function returns the number of iocbs which satisfy the filter.
11422 * This function is called without any lock held.
11423 **/
dea31012005-04-17 16:05:31 -050011424int
James Smart51ef4c22007-08-02 11:10:31 -040011425lpfc_sli_sum_iocb(struct lpfc_vport *vport, uint16_t tgt_id, uint64_t lun_id,
11426 lpfc_ctx_cmd ctx_cmd)
dea31012005-04-17 16:05:31 -050011427{
James Smart51ef4c22007-08-02 11:10:31 -040011428 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011429 struct lpfc_iocbq *iocbq;
11430 int sum, i;
dea31012005-04-17 16:05:31 -050011431
Johannes Thumshirn31979002016-07-18 16:06:03 +020011432 spin_lock_irq(&phba->hbalock);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011433 for (i = 1, sum = 0; i <= phba->sli.last_iotag; i++) {
11434 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -050011435
James Smart51ef4c22007-08-02 11:10:31 -040011436 if (lpfc_sli_validate_fcp_iocb (iocbq, vport, tgt_id, lun_id,
11437 ctx_cmd) == 0)
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011438 sum++;
dea31012005-04-17 16:05:31 -050011439 }
Johannes Thumshirn31979002016-07-18 16:06:03 +020011440 spin_unlock_irq(&phba->hbalock);
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011441
dea31012005-04-17 16:05:31 -050011442 return sum;
11443}
11444
James Smarte59058c2008-08-24 21:49:00 -040011445/**
James Smart3621a712009-04-06 18:47:14 -040011446 * lpfc_sli_abort_fcp_cmpl - Completion handler function for aborted FCP IOCBs
James Smarte59058c2008-08-24 21:49:00 -040011447 * @phba: Pointer to HBA context object
11448 * @cmdiocb: Pointer to command iocb object.
11449 * @rspiocb: Pointer to response iocb object.
11450 *
11451 * This function is called when an aborted FCP iocb completes. This
11452 * function is called by the ring event handler with no lock held.
11453 * This function frees the iocb.
11454 **/
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040011455void
James Smart2e0fef82007-06-17 19:56:36 -050011456lpfc_sli_abort_fcp_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
11457 struct lpfc_iocbq *rspiocb)
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040011458{
James Smartcb69f7d2011-12-13 13:21:57 -050011459 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smart8e668af2013-05-31 17:04:28 -040011460 "3096 ABORT_XRI_CN completing on rpi x%x "
James Smartcb69f7d2011-12-13 13:21:57 -050011461 "original iotag x%x, abort cmd iotag x%x "
11462 "status 0x%x, reason 0x%x\n",
11463 cmdiocb->iocb.un.acxri.abortContextTag,
11464 cmdiocb->iocb.un.acxri.abortIoTag,
11465 cmdiocb->iotag, rspiocb->iocb.ulpStatus,
11466 rspiocb->iocb.un.ulpWord[4]);
James Bottomley604a3e32005-10-29 10:28:33 -050011467 lpfc_sli_release_iocbq(phba, cmdiocb);
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040011468 return;
11469}
11470
James Smarte59058c2008-08-24 21:49:00 -040011471/**
James Smart3621a712009-04-06 18:47:14 -040011472 * lpfc_sli_abort_iocb - issue abort for all commands on a host/target/LUN
James Smarte59058c2008-08-24 21:49:00 -040011473 * @vport: Pointer to virtual port.
11474 * @pring: Pointer to driver SLI ring object.
11475 * @tgt_id: SCSI ID of the target.
11476 * @lun_id: LUN ID of the scsi device.
11477 * @abort_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
11478 *
11479 * This function sends an abort command for every SCSI command
11480 * associated with the given virtual port pending on the ring
11481 * filtered by lpfc_sli_validate_fcp_iocb function.
11482 * When abort_cmd == LPFC_CTX_LUN, the function sends abort only to the
11483 * FCP iocbs associated with lun specified by tgt_id and lun_id
11484 * parameters
11485 * When abort_cmd == LPFC_CTX_TGT, the function sends abort only to the
11486 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
11487 * When abort_cmd == LPFC_CTX_HOST, the function sends abort to all
11488 * FCP iocbs associated with virtual port.
11489 * This function returns number of iocbs it failed to abort.
11490 * This function is called with no locks held.
11491 **/
dea31012005-04-17 16:05:31 -050011492int
James Smart51ef4c22007-08-02 11:10:31 -040011493lpfc_sli_abort_iocb(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
11494 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd abort_cmd)
dea31012005-04-17 16:05:31 -050011495{
James Smart51ef4c22007-08-02 11:10:31 -040011496 struct lpfc_hba *phba = vport->phba;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011497 struct lpfc_iocbq *iocbq;
11498 struct lpfc_iocbq *abtsiocb;
James Smartecbb2272017-06-01 21:07:04 -070011499 struct lpfc_sli_ring *pring_s4;
dea31012005-04-17 16:05:31 -050011500 IOCB_t *cmd = NULL;
dea31012005-04-17 16:05:31 -050011501 int errcnt = 0, ret_val = 0;
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011502 int i;
dea31012005-04-17 16:05:31 -050011503
James Smartb0e83012018-06-26 08:24:29 -070011504 /* all I/Os are in process of being flushed */
James Smartc00f62e2019-08-14 16:57:11 -070011505 if (phba->hba_flag & HBA_IOQ_FLUSH)
James Smartb0e83012018-06-26 08:24:29 -070011506 return errcnt;
11507
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011508 for (i = 1; i <= phba->sli.last_iotag; i++) {
11509 iocbq = phba->sli.iocbq_lookup[i];
dea31012005-04-17 16:05:31 -050011510
James Smart51ef4c22007-08-02 11:10:31 -040011511 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
James Smart2e0fef82007-06-17 19:56:36 -050011512 abort_cmd) != 0)
dea31012005-04-17 16:05:31 -050011513 continue;
11514
James Smartafbd8d82013-09-06 12:22:13 -040011515 /*
11516 * If the iocbq is already being aborted, don't take a second
11517 * action, but do count it.
11518 */
11519 if (iocbq->iocb_flag & LPFC_DRIVER_ABORTED)
11520 continue;
11521
dea31012005-04-17 16:05:31 -050011522 /* issue ABTS for this IOCB based on iotag */
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011523 abtsiocb = lpfc_sli_get_iocbq(phba);
dea31012005-04-17 16:05:31 -050011524 if (abtsiocb == NULL) {
11525 errcnt++;
11526 continue;
11527 }
dea31012005-04-17 16:05:31 -050011528
James Smartafbd8d82013-09-06 12:22:13 -040011529 /* indicate the IO is being aborted by the driver. */
11530 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
11531
James.Smart@Emulex.Com0bd4ca22005-10-28 20:30:02 -040011532 cmd = &iocbq->iocb;
dea31012005-04-17 16:05:31 -050011533 abtsiocb->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
11534 abtsiocb->iocb.un.acxri.abortContextTag = cmd->ulpContext;
James Smartda0436e2009-05-22 14:51:39 -040011535 if (phba->sli_rev == LPFC_SLI_REV4)
11536 abtsiocb->iocb.un.acxri.abortIoTag = iocbq->sli4_xritag;
11537 else
11538 abtsiocb->iocb.un.acxri.abortIoTag = cmd->ulpIoTag;
dea31012005-04-17 16:05:31 -050011539 abtsiocb->iocb.ulpLe = 1;
11540 abtsiocb->iocb.ulpClass = cmd->ulpClass;
James Smartafbd8d82013-09-06 12:22:13 -040011541 abtsiocb->vport = vport;
dea31012005-04-17 16:05:31 -050011542
James Smart5ffc2662009-11-18 15:39:44 -050011543 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
James Smart895427b2017-02-12 13:52:30 -080011544 abtsiocb->hba_wqidx = iocbq->hba_wqidx;
James Smart341af102010-01-26 23:07:37 -050011545 if (iocbq->iocb_flag & LPFC_IO_FCP)
11546 abtsiocb->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart9bd2bff52014-09-03 12:57:30 -040011547 if (iocbq->iocb_flag & LPFC_IO_FOF)
11548 abtsiocb->iocb_flag |= LPFC_IO_FOF;
James Smart5ffc2662009-11-18 15:39:44 -050011549
James Smart2e0fef82007-06-17 19:56:36 -050011550 if (lpfc_is_link_up(phba))
dea31012005-04-17 16:05:31 -050011551 abtsiocb->iocb.ulpCommand = CMD_ABORT_XRI_CN;
11552 else
11553 abtsiocb->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
11554
James.Smart@Emulex.Com5eb95af2005-06-25 10:34:30 -040011555 /* Setup callback routine and issue the command. */
11556 abtsiocb->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
James Smartecbb2272017-06-01 21:07:04 -070011557 if (phba->sli_rev == LPFC_SLI_REV4) {
11558 pring_s4 = lpfc_sli4_calc_ring(phba, iocbq);
11559 if (!pring_s4)
11560 continue;
11561 ret_val = lpfc_sli_issue_iocb(phba, pring_s4->ringno,
11562 abtsiocb, 0);
11563 } else
11564 ret_val = lpfc_sli_issue_iocb(phba, pring->ringno,
11565 abtsiocb, 0);
dea31012005-04-17 16:05:31 -050011566 if (ret_val == IOCB_ERROR) {
James Bottomley604a3e32005-10-29 10:28:33 -050011567 lpfc_sli_release_iocbq(phba, abtsiocb);
dea31012005-04-17 16:05:31 -050011568 errcnt++;
11569 continue;
11570 }
11571 }
11572
11573 return errcnt;
11574}
11575
James Smarte59058c2008-08-24 21:49:00 -040011576/**
James Smart98912dda2014-04-04 13:52:31 -040011577 * lpfc_sli_abort_taskmgmt - issue abort for all commands on a host/target/LUN
11578 * @vport: Pointer to virtual port.
11579 * @pring: Pointer to driver SLI ring object.
11580 * @tgt_id: SCSI ID of the target.
11581 * @lun_id: LUN ID of the scsi device.
11582 * @taskmgmt_cmd: LPFC_CTX_LUN/LPFC_CTX_TGT/LPFC_CTX_HOST.
11583 *
11584 * This function sends an abort command for every SCSI command
11585 * associated with the given virtual port pending on the ring
11586 * filtered by lpfc_sli_validate_fcp_iocb function.
11587 * When taskmgmt_cmd == LPFC_CTX_LUN, the function sends abort only to the
11588 * FCP iocbs associated with lun specified by tgt_id and lun_id
11589 * parameters
11590 * When taskmgmt_cmd == LPFC_CTX_TGT, the function sends abort only to the
11591 * FCP iocbs associated with SCSI target specified by tgt_id parameter.
11592 * When taskmgmt_cmd == LPFC_CTX_HOST, the function sends abort to all
11593 * FCP iocbs associated with virtual port.
11594 * This function returns number of iocbs it aborted .
11595 * This function is called with no locks held right after a taskmgmt
11596 * command is sent.
11597 **/
11598int
11599lpfc_sli_abort_taskmgmt(struct lpfc_vport *vport, struct lpfc_sli_ring *pring,
11600 uint16_t tgt_id, uint64_t lun_id, lpfc_ctx_cmd cmd)
11601{
11602 struct lpfc_hba *phba = vport->phba;
James Smartc4908502019-01-28 11:14:28 -080011603 struct lpfc_io_buf *lpfc_cmd;
James Smart98912dda2014-04-04 13:52:31 -040011604 struct lpfc_iocbq *abtsiocbq;
James Smart8c50d252014-09-03 12:58:16 -040011605 struct lpfc_nodelist *ndlp;
James Smart98912dda2014-04-04 13:52:31 -040011606 struct lpfc_iocbq *iocbq;
11607 IOCB_t *icmd;
11608 int sum, i, ret_val;
11609 unsigned long iflags;
James Smartc2017262019-01-28 11:14:37 -080011610 struct lpfc_sli_ring *pring_s4 = NULL;
James Smart98912dda2014-04-04 13:52:31 -040011611
James Smart59c68ea2018-04-09 14:24:25 -070011612 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart98912dda2014-04-04 13:52:31 -040011613
11614 /* all I/Os are in process of being flushed */
James Smartc00f62e2019-08-14 16:57:11 -070011615 if (phba->hba_flag & HBA_IOQ_FLUSH) {
James Smart59c68ea2018-04-09 14:24:25 -070011616 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart98912dda2014-04-04 13:52:31 -040011617 return 0;
11618 }
11619 sum = 0;
11620
11621 for (i = 1; i <= phba->sli.last_iotag; i++) {
11622 iocbq = phba->sli.iocbq_lookup[i];
11623
11624 if (lpfc_sli_validate_fcp_iocb(iocbq, vport, tgt_id, lun_id,
11625 cmd) != 0)
11626 continue;
11627
James Smartc2017262019-01-28 11:14:37 -080011628 /* Guard against IO completion being called at same time */
11629 lpfc_cmd = container_of(iocbq, struct lpfc_io_buf, cur_iocbq);
11630 spin_lock(&lpfc_cmd->buf_lock);
11631
11632 if (!lpfc_cmd->pCmd) {
11633 spin_unlock(&lpfc_cmd->buf_lock);
11634 continue;
11635 }
11636
11637 if (phba->sli_rev == LPFC_SLI_REV4) {
11638 pring_s4 =
James Smartc00f62e2019-08-14 16:57:11 -070011639 phba->sli4_hba.hdwq[iocbq->hba_wqidx].io_wq->pring;
James Smartc2017262019-01-28 11:14:37 -080011640 if (!pring_s4) {
11641 spin_unlock(&lpfc_cmd->buf_lock);
11642 continue;
11643 }
11644 /* Note: both hbalock and ring_lock must be set here */
11645 spin_lock(&pring_s4->ring_lock);
11646 }
11647
James Smart98912dda2014-04-04 13:52:31 -040011648 /*
11649 * If the iocbq is already being aborted, don't take a second
11650 * action, but do count it.
11651 */
James Smartc2017262019-01-28 11:14:37 -080011652 if ((iocbq->iocb_flag & LPFC_DRIVER_ABORTED) ||
11653 !(iocbq->iocb_flag & LPFC_IO_ON_TXCMPLQ)) {
11654 if (phba->sli_rev == LPFC_SLI_REV4)
11655 spin_unlock(&pring_s4->ring_lock);
11656 spin_unlock(&lpfc_cmd->buf_lock);
James Smart98912dda2014-04-04 13:52:31 -040011657 continue;
James Smartc2017262019-01-28 11:14:37 -080011658 }
James Smart98912dda2014-04-04 13:52:31 -040011659
11660 /* issue ABTS for this IOCB based on iotag */
11661 abtsiocbq = __lpfc_sli_get_iocbq(phba);
James Smartc2017262019-01-28 11:14:37 -080011662 if (!abtsiocbq) {
11663 if (phba->sli_rev == LPFC_SLI_REV4)
11664 spin_unlock(&pring_s4->ring_lock);
11665 spin_unlock(&lpfc_cmd->buf_lock);
James Smart98912dda2014-04-04 13:52:31 -040011666 continue;
James Smartc2017262019-01-28 11:14:37 -080011667 }
James Smart98912dda2014-04-04 13:52:31 -040011668
11669 icmd = &iocbq->iocb;
11670 abtsiocbq->iocb.un.acxri.abortType = ABORT_TYPE_ABTS;
11671 abtsiocbq->iocb.un.acxri.abortContextTag = icmd->ulpContext;
11672 if (phba->sli_rev == LPFC_SLI_REV4)
11673 abtsiocbq->iocb.un.acxri.abortIoTag =
11674 iocbq->sli4_xritag;
11675 else
11676 abtsiocbq->iocb.un.acxri.abortIoTag = icmd->ulpIoTag;
11677 abtsiocbq->iocb.ulpLe = 1;
11678 abtsiocbq->iocb.ulpClass = icmd->ulpClass;
11679 abtsiocbq->vport = vport;
11680
11681 /* ABTS WQE must go to the same WQ as the WQE to be aborted */
James Smart895427b2017-02-12 13:52:30 -080011682 abtsiocbq->hba_wqidx = iocbq->hba_wqidx;
James Smart98912dda2014-04-04 13:52:31 -040011683 if (iocbq->iocb_flag & LPFC_IO_FCP)
11684 abtsiocbq->iocb_flag |= LPFC_USE_FCPWQIDX;
James Smart9bd2bff52014-09-03 12:57:30 -040011685 if (iocbq->iocb_flag & LPFC_IO_FOF)
11686 abtsiocbq->iocb_flag |= LPFC_IO_FOF;
James Smart98912dda2014-04-04 13:52:31 -040011687
James Smart8c50d252014-09-03 12:58:16 -040011688 ndlp = lpfc_cmd->rdata->pnode;
11689
11690 if (lpfc_is_link_up(phba) &&
11691 (ndlp && ndlp->nlp_state == NLP_STE_MAPPED_NODE))
James Smart98912dda2014-04-04 13:52:31 -040011692 abtsiocbq->iocb.ulpCommand = CMD_ABORT_XRI_CN;
11693 else
11694 abtsiocbq->iocb.ulpCommand = CMD_CLOSE_XRI_CN;
11695
11696 /* Setup callback routine and issue the command. */
11697 abtsiocbq->iocb_cmpl = lpfc_sli_abort_fcp_cmpl;
11698
11699 /*
11700 * Indicate the IO is being aborted by the driver and set
11701 * the caller's flag into the aborted IO.
11702 */
11703 iocbq->iocb_flag |= LPFC_DRIVER_ABORTED;
11704
11705 if (phba->sli_rev == LPFC_SLI_REV4) {
James Smart98912dda2014-04-04 13:52:31 -040011706 ret_val = __lpfc_sli_issue_iocb(phba, pring_s4->ringno,
11707 abtsiocbq, 0);
James Smart59c68ea2018-04-09 14:24:25 -070011708 spin_unlock(&pring_s4->ring_lock);
James Smart98912dda2014-04-04 13:52:31 -040011709 } else {
11710 ret_val = __lpfc_sli_issue_iocb(phba, pring->ringno,
11711 abtsiocbq, 0);
11712 }
11713
James Smartc2017262019-01-28 11:14:37 -080011714 spin_unlock(&lpfc_cmd->buf_lock);
James Smart98912dda2014-04-04 13:52:31 -040011715
11716 if (ret_val == IOCB_ERROR)
11717 __lpfc_sli_release_iocbq(phba, abtsiocbq);
11718 else
11719 sum++;
11720 }
James Smart59c68ea2018-04-09 14:24:25 -070011721 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart98912dda2014-04-04 13:52:31 -040011722 return sum;
11723}
11724
11725/**
James Smart3621a712009-04-06 18:47:14 -040011726 * lpfc_sli_wake_iocb_wait - lpfc_sli_issue_iocb_wait's completion handler
James Smarte59058c2008-08-24 21:49:00 -040011727 * @phba: Pointer to HBA context object.
11728 * @cmdiocbq: Pointer to command iocb.
11729 * @rspiocbq: Pointer to response iocb.
11730 *
11731 * This function is the completion handler for iocbs issued using
11732 * lpfc_sli_issue_iocb_wait function. This function is called by the
11733 * ring event handler function without any lock held. This function
11734 * can be called from both worker thread context and interrupt
11735 * context. This function also can be called from other thread which
11736 * cleans up the SLI layer objects.
11737 * This function copy the contents of the response iocb to the
11738 * response iocb memory object provided by the caller of
11739 * lpfc_sli_issue_iocb_wait and then wakes up the thread which
11740 * sleeps for the iocb completion.
11741 **/
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011742static void
11743lpfc_sli_wake_iocb_wait(struct lpfc_hba *phba,
11744 struct lpfc_iocbq *cmdiocbq,
11745 struct lpfc_iocbq *rspiocbq)
dea31012005-04-17 16:05:31 -050011746{
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011747 wait_queue_head_t *pdone_q;
11748 unsigned long iflags;
James Smartc4908502019-01-28 11:14:28 -080011749 struct lpfc_io_buf *lpfc_cmd;
dea31012005-04-17 16:05:31 -050011750
James Smart2e0fef82007-06-17 19:56:36 -050011751 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart5a0916b2013-07-15 18:31:42 -040011752 if (cmdiocbq->iocb_flag & LPFC_IO_WAKE_TMO) {
11753
11754 /*
11755 * A time out has occurred for the iocb. If a time out
11756 * completion handler has been supplied, call it. Otherwise,
11757 * just free the iocbq.
11758 */
11759
11760 spin_unlock_irqrestore(&phba->hbalock, iflags);
11761 cmdiocbq->iocb_cmpl = cmdiocbq->wait_iocb_cmpl;
11762 cmdiocbq->wait_iocb_cmpl = NULL;
11763 if (cmdiocbq->iocb_cmpl)
11764 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, NULL);
11765 else
11766 lpfc_sli_release_iocbq(phba, cmdiocbq);
11767 return;
11768 }
11769
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011770 cmdiocbq->iocb_flag |= LPFC_IO_WAKE;
11771 if (cmdiocbq->context2 && rspiocbq)
11772 memcpy(&((struct lpfc_iocbq *)cmdiocbq->context2)->iocb,
11773 &rspiocbq->iocb, sizeof(IOCB_t));
11774
James Smart0f65ff62010-02-26 14:14:23 -050011775 /* Set the exchange busy flag for task management commands */
11776 if ((cmdiocbq->iocb_flag & LPFC_IO_FCP) &&
11777 !(cmdiocbq->iocb_flag & LPFC_IO_LIBDFC)) {
James Smartc4908502019-01-28 11:14:28 -080011778 lpfc_cmd = container_of(cmdiocbq, struct lpfc_io_buf,
James Smart0f65ff62010-02-26 14:14:23 -050011779 cur_iocbq);
James Smart324e1c42019-10-18 14:18:21 -070011780 if (rspiocbq && (rspiocbq->iocb_flag & LPFC_EXCHANGE_BUSY))
11781 lpfc_cmd->flags |= LPFC_SBUF_XBUSY;
11782 else
11783 lpfc_cmd->flags &= ~LPFC_SBUF_XBUSY;
James Smart0f65ff62010-02-26 14:14:23 -050011784 }
11785
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011786 pdone_q = cmdiocbq->context_un.wait_queue;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011787 if (pdone_q)
11788 wake_up(pdone_q);
James Smart858c9f62007-06-17 19:56:39 -050011789 spin_unlock_irqrestore(&phba->hbalock, iflags);
dea31012005-04-17 16:05:31 -050011790 return;
11791}
11792
James Smarte59058c2008-08-24 21:49:00 -040011793/**
James Smartd11e31d2009-06-10 17:23:06 -040011794 * lpfc_chk_iocb_flg - Test IOCB flag with lock held.
11795 * @phba: Pointer to HBA context object..
11796 * @piocbq: Pointer to command iocb.
11797 * @flag: Flag to test.
11798 *
11799 * This routine grabs the hbalock and then test the iocb_flag to
11800 * see if the passed in flag is set.
11801 * Returns:
11802 * 1 if flag is set.
11803 * 0 if flag is not set.
11804 **/
11805static int
11806lpfc_chk_iocb_flg(struct lpfc_hba *phba,
11807 struct lpfc_iocbq *piocbq, uint32_t flag)
11808{
11809 unsigned long iflags;
11810 int ret;
11811
11812 spin_lock_irqsave(&phba->hbalock, iflags);
11813 ret = piocbq->iocb_flag & flag;
11814 spin_unlock_irqrestore(&phba->hbalock, iflags);
11815 return ret;
11816
11817}
11818
11819/**
James Smart3621a712009-04-06 18:47:14 -040011820 * lpfc_sli_issue_iocb_wait - Synchronous function to issue iocb commands
James Smarte59058c2008-08-24 21:49:00 -040011821 * @phba: Pointer to HBA context object..
11822 * @pring: Pointer to sli ring.
11823 * @piocb: Pointer to command iocb.
11824 * @prspiocbq: Pointer to response iocb.
11825 * @timeout: Timeout in number of seconds.
11826 *
11827 * This function issues the iocb to firmware and waits for the
James Smart5a0916b2013-07-15 18:31:42 -040011828 * iocb to complete. The iocb_cmpl field of the shall be used
11829 * to handle iocbs which time out. If the field is NULL, the
11830 * function shall free the iocbq structure. If more clean up is
11831 * needed, the caller is expected to provide a completion function
11832 * that will provide the needed clean up. If the iocb command is
11833 * not completed within timeout seconds, the function will either
11834 * free the iocbq structure (if iocb_cmpl == NULL) or execute the
11835 * completion function set in the iocb_cmpl field and then return
11836 * a status of IOCB_TIMEDOUT. The caller should not free the iocb
11837 * resources if this function returns IOCB_TIMEDOUT.
James Smarte59058c2008-08-24 21:49:00 -040011838 * The function waits for the iocb completion using an
11839 * non-interruptible wait.
11840 * This function will sleep while waiting for iocb completion.
11841 * So, this function should not be called from any context which
11842 * does not allow sleeping. Due to the same reason, this function
11843 * cannot be called with interrupt disabled.
11844 * This function assumes that the iocb completions occur while
11845 * this function sleep. So, this function cannot be called from
11846 * the thread which process iocb completion for this ring.
11847 * This function clears the iocb_flag of the iocb object before
11848 * issuing the iocb and the iocb completion handler sets this
11849 * flag and wakes this thread when the iocb completes.
11850 * The contents of the response iocb will be copied to prspiocbq
11851 * by the completion handler when the command completes.
11852 * This function returns IOCB_SUCCESS when success.
11853 * This function is called with no lock held.
11854 **/
dea31012005-04-17 16:05:31 -050011855int
James Smart2e0fef82007-06-17 19:56:36 -050011856lpfc_sli_issue_iocb_wait(struct lpfc_hba *phba,
James Smartda0436e2009-05-22 14:51:39 -040011857 uint32_t ring_number,
James Smart2e0fef82007-06-17 19:56:36 -050011858 struct lpfc_iocbq *piocb,
11859 struct lpfc_iocbq *prspiocbq,
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011860 uint32_t timeout)
dea31012005-04-17 16:05:31 -050011861{
Peter Zijlstra7259f0d2006-10-29 22:46:36 -080011862 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_q);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011863 long timeleft, timeout_req = 0;
11864 int retval = IOCB_SUCCESS;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050011865 uint32_t creg_val;
James Smart0e9bb8d2013-03-01 16:35:12 -050011866 struct lpfc_iocbq *iocb;
11867 int txq_cnt = 0;
11868 int txcmplq_cnt = 0;
James Smart895427b2017-02-12 13:52:30 -080011869 struct lpfc_sli_ring *pring;
James Smart5a0916b2013-07-15 18:31:42 -040011870 unsigned long iflags;
11871 bool iocb_completed = true;
11872
James Smart895427b2017-02-12 13:52:30 -080011873 if (phba->sli_rev >= LPFC_SLI_REV4)
11874 pring = lpfc_sli4_calc_ring(phba, piocb);
11875 else
11876 pring = &phba->sli.sli3_ring[ring_number];
dea31012005-04-17 16:05:31 -050011877 /*
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011878 * If the caller has provided a response iocbq buffer, then context2
11879 * is NULL or its an error.
dea31012005-04-17 16:05:31 -050011880 */
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011881 if (prspiocbq) {
11882 if (piocb->context2)
11883 return IOCB_ERROR;
11884 piocb->context2 = prspiocbq;
dea31012005-04-17 16:05:31 -050011885 }
11886
James Smart5a0916b2013-07-15 18:31:42 -040011887 piocb->wait_iocb_cmpl = piocb->iocb_cmpl;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011888 piocb->iocb_cmpl = lpfc_sli_wake_iocb_wait;
11889 piocb->context_un.wait_queue = &done_q;
James Smart5a0916b2013-07-15 18:31:42 -040011890 piocb->iocb_flag &= ~(LPFC_IO_WAKE | LPFC_IO_WAKE_TMO);
dea31012005-04-17 16:05:31 -050011891
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050011892 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050011893 if (lpfc_readl(phba->HCregaddr, &creg_val))
11894 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050011895 creg_val |= (HC_R0INT_ENA << LPFC_FCP_RING);
11896 writel(creg_val, phba->HCregaddr);
11897 readl(phba->HCregaddr); /* flush */
11898 }
11899
James Smart2a9bf3d2010-06-07 15:24:45 -040011900 retval = lpfc_sli_issue_iocb(phba, ring_number, piocb,
11901 SLI_IOCB_RET_IOCB);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011902 if (retval == IOCB_SUCCESS) {
James Smart256ec0d2013-04-17 20:14:58 -040011903 timeout_req = msecs_to_jiffies(timeout * 1000);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011904 timeleft = wait_event_timeout(done_q,
James Smartd11e31d2009-06-10 17:23:06 -040011905 lpfc_chk_iocb_flg(phba, piocb, LPFC_IO_WAKE),
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011906 timeout_req);
James Smart5a0916b2013-07-15 18:31:42 -040011907 spin_lock_irqsave(&phba->hbalock, iflags);
11908 if (!(piocb->iocb_flag & LPFC_IO_WAKE)) {
dea31012005-04-17 16:05:31 -050011909
James Smart5a0916b2013-07-15 18:31:42 -040011910 /*
11911 * IOCB timed out. Inform the wake iocb wait
11912 * completion function and set local status
11913 */
11914
11915 iocb_completed = false;
11916 piocb->iocb_flag |= LPFC_IO_WAKE_TMO;
11917 }
11918 spin_unlock_irqrestore(&phba->hbalock, iflags);
11919 if (iocb_completed) {
James Smart7054a602007-04-25 09:52:34 -040011920 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040011921 "0331 IOCB wake signaled\n");
James Smart53151bb2013-10-10 12:24:07 -040011922 /* Note: we are not indicating if the IOCB has a success
11923 * status or not - that's for the caller to check.
11924 * IOCB_SUCCESS means just that the command was sent and
11925 * completed. Not that it completed successfully.
11926 * */
James Smart7054a602007-04-25 09:52:34 -040011927 } else if (timeleft == 0) {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011928 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040011929 "0338 IOCB wait timeout error - no "
11930 "wake response Data x%x\n", timeout);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011931 retval = IOCB_TIMEDOUT;
James Smart7054a602007-04-25 09:52:34 -040011932 } else {
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011933 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040011934 "0330 IOCB wake NOT set, "
11935 "Data x%x x%lx\n",
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011936 timeout, (timeleft / jiffies));
11937 retval = IOCB_TIMEDOUT;
dea31012005-04-17 16:05:31 -050011938 }
James Smart2a9bf3d2010-06-07 15:24:45 -040011939 } else if (retval == IOCB_BUSY) {
James Smart0e9bb8d2013-03-01 16:35:12 -050011940 if (phba->cfg_log_verbose & LOG_SLI) {
11941 list_for_each_entry(iocb, &pring->txq, list) {
11942 txq_cnt++;
11943 }
11944 list_for_each_entry(iocb, &pring->txcmplq, list) {
11945 txcmplq_cnt++;
11946 }
11947 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
11948 "2818 Max IOCBs %d txq cnt %d txcmplq cnt %d\n",
11949 phba->iocb_cnt, txq_cnt, txcmplq_cnt);
11950 }
James Smart2a9bf3d2010-06-07 15:24:45 -040011951 return retval;
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011952 } else {
11953 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040011954 "0332 IOCB wait issue failed, Data x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040011955 retval);
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011956 retval = IOCB_ERROR;
dea31012005-04-17 16:05:31 -050011957 }
11958
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050011959 if (phba->cfg_poll & DISABLE_FCP_RING_INT) {
James Smart9940b972011-03-11 16:06:12 -050011960 if (lpfc_readl(phba->HCregaddr, &creg_val))
11961 return IOCB_ERROR;
James.Smart@Emulex.Com875fbdf2005-11-29 16:32:13 -050011962 creg_val &= ~(HC_R0INT_ENA << LPFC_FCP_RING);
11963 writel(creg_val, phba->HCregaddr);
11964 readl(phba->HCregaddr); /* flush */
11965 }
11966
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011967 if (prspiocbq)
11968 piocb->context2 = NULL;
11969
11970 piocb->context_un.wait_queue = NULL;
11971 piocb->iocb_cmpl = NULL;
dea31012005-04-17 16:05:31 -050011972 return retval;
11973}
James.Smart@Emulex.Com68876922005-10-28 20:29:47 -040011974
James Smarte59058c2008-08-24 21:49:00 -040011975/**
James Smart3621a712009-04-06 18:47:14 -040011976 * lpfc_sli_issue_mbox_wait - Synchronous function to issue mailbox
James Smarte59058c2008-08-24 21:49:00 -040011977 * @phba: Pointer to HBA context object.
11978 * @pmboxq: Pointer to driver mailbox object.
11979 * @timeout: Timeout in number of seconds.
11980 *
11981 * This function issues the mailbox to firmware and waits for the
11982 * mailbox command to complete. If the mailbox command is not
11983 * completed within timeout seconds, it returns MBX_TIMEOUT.
11984 * The function waits for the mailbox completion using an
11985 * interruptible wait. If the thread is woken up due to a
11986 * signal, MBX_TIMEOUT error is returned to the caller. Caller
11987 * should not free the mailbox resources, if this function returns
11988 * MBX_TIMEOUT.
11989 * This function will sleep while waiting for mailbox completion.
11990 * So, this function should not be called from any context which
11991 * does not allow sleeping. Due to the same reason, this function
11992 * cannot be called with interrupt disabled.
11993 * This function assumes that the mailbox completion occurs while
11994 * this function sleep. So, this function cannot be called from
11995 * the worker thread which processes mailbox completion.
11996 * This function is called in the context of HBA management
11997 * applications.
11998 * This function returns MBX_SUCCESS when successful.
11999 * This function is called with no lock held.
12000 **/
dea31012005-04-17 16:05:31 -050012001int
James Smart2e0fef82007-06-17 19:56:36 -050012002lpfc_sli_issue_mbox_wait(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq,
dea31012005-04-17 16:05:31 -050012003 uint32_t timeout)
12004{
James Smarte29d74f2018-03-05 12:04:07 -080012005 struct completion mbox_done;
dea31012005-04-17 16:05:31 -050012006 int retval;
James Smart858c9f62007-06-17 19:56:39 -050012007 unsigned long flag;
dea31012005-04-17 16:05:31 -050012008
James Smart495a7142008-06-14 22:52:59 -040012009 pmboxq->mbox_flag &= ~LPFC_MBX_WAKE;
dea31012005-04-17 16:05:31 -050012010 /* setup wake call as IOCB callback */
12011 pmboxq->mbox_cmpl = lpfc_sli_wake_mbox_wait;
dea31012005-04-17 16:05:31 -050012012
James Smarte29d74f2018-03-05 12:04:07 -080012013 /* setup context3 field to pass wait_queue pointer to wake function */
12014 init_completion(&mbox_done);
12015 pmboxq->context3 = &mbox_done;
dea31012005-04-17 16:05:31 -050012016 /* now issue the command */
12017 retval = lpfc_sli_issue_mbox(phba, pmboxq, MBX_NOWAIT);
dea31012005-04-17 16:05:31 -050012018 if (retval == MBX_BUSY || retval == MBX_SUCCESS) {
James Smarte29d74f2018-03-05 12:04:07 -080012019 wait_for_completion_timeout(&mbox_done,
12020 msecs_to_jiffies(timeout * 1000));
James Smart7054a602007-04-25 09:52:34 -040012021
James Smart858c9f62007-06-17 19:56:39 -050012022 spin_lock_irqsave(&phba->hbalock, flag);
James Smarte29d74f2018-03-05 12:04:07 -080012023 pmboxq->context3 = NULL;
James Smart7054a602007-04-25 09:52:34 -040012024 /*
12025 * if LPFC_MBX_WAKE flag is set the mailbox is completed
12026 * else do not free the resources.
12027 */
James Smartd7c47992010-06-08 18:31:54 -040012028 if (pmboxq->mbox_flag & LPFC_MBX_WAKE) {
dea31012005-04-17 16:05:31 -050012029 retval = MBX_SUCCESS;
James Smartd7c47992010-06-08 18:31:54 -040012030 } else {
James Smart7054a602007-04-25 09:52:34 -040012031 retval = MBX_TIMEOUT;
James Smart858c9f62007-06-17 19:56:39 -050012032 pmboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
12033 }
12034 spin_unlock_irqrestore(&phba->hbalock, flag);
dea31012005-04-17 16:05:31 -050012035 }
dea31012005-04-17 16:05:31 -050012036 return retval;
12037}
12038
James Smarte59058c2008-08-24 21:49:00 -040012039/**
James Smart3772a992009-05-22 14:50:54 -040012040 * lpfc_sli_mbox_sys_shutdown - shutdown mailbox command sub-system
James Smarte59058c2008-08-24 21:49:00 -040012041 * @phba: Pointer to HBA context.
12042 *
James Smart3772a992009-05-22 14:50:54 -040012043 * This function is called to shutdown the driver's mailbox sub-system.
12044 * It first marks the mailbox sub-system is in a block state to prevent
12045 * the asynchronous mailbox command from issued off the pending mailbox
12046 * command queue. If the mailbox command sub-system shutdown is due to
12047 * HBA error conditions such as EEH or ERATT, this routine shall invoke
12048 * the mailbox sub-system flush routine to forcefully bring down the
12049 * mailbox sub-system. Otherwise, if it is due to normal condition (such
12050 * as with offline or HBA function reset), this routine will wait for the
12051 * outstanding mailbox command to complete before invoking the mailbox
12052 * sub-system flush routine to gracefully bring down mailbox sub-system.
James Smarte59058c2008-08-24 21:49:00 -040012053 **/
James Smart3772a992009-05-22 14:50:54 -040012054void
James Smart618a5232012-06-12 13:54:36 -040012055lpfc_sli_mbox_sys_shutdown(struct lpfc_hba *phba, int mbx_action)
James Smartb4c02652006-07-06 15:50:43 -040012056{
James Smart3772a992009-05-22 14:50:54 -040012057 struct lpfc_sli *psli = &phba->sli;
James Smart3772a992009-05-22 14:50:54 -040012058 unsigned long timeout;
12059
James Smart618a5232012-06-12 13:54:36 -040012060 if (mbx_action == LPFC_MBX_NO_WAIT) {
12061 /* delay 100ms for port state */
12062 msleep(100);
12063 lpfc_sli_mbox_sys_flush(phba);
12064 return;
12065 }
James Smarta183a152011-10-10 21:32:43 -040012066 timeout = msecs_to_jiffies(LPFC_MBOX_TMO * 1000) + jiffies;
James Smartd7069f02012-03-01 22:36:29 -050012067
James Smart523128e2018-09-10 10:30:46 -070012068 /* Disable softirqs, including timers from obtaining phba->hbalock */
12069 local_bh_disable();
12070
James Smart3772a992009-05-22 14:50:54 -040012071 spin_lock_irq(&phba->hbalock);
12072 psli->sli_flag |= LPFC_SLI_ASYNC_MBX_BLK;
James Smart3772a992009-05-22 14:50:54 -040012073
12074 if (psli->sli_flag & LPFC_SLI_ACTIVE) {
James Smart3772a992009-05-22 14:50:54 -040012075 /* Determine how long we might wait for the active mailbox
12076 * command to be gracefully completed by firmware.
12077 */
James Smarta183a152011-10-10 21:32:43 -040012078 if (phba->sli.mbox_active)
12079 timeout = msecs_to_jiffies(lpfc_mbox_tmo_val(phba,
12080 phba->sli.mbox_active) *
12081 1000) + jiffies;
12082 spin_unlock_irq(&phba->hbalock);
12083
James Smart523128e2018-09-10 10:30:46 -070012084 /* Enable softirqs again, done with phba->hbalock */
12085 local_bh_enable();
12086
James Smart3772a992009-05-22 14:50:54 -040012087 while (phba->sli.mbox_active) {
12088 /* Check active mailbox complete status every 2ms */
12089 msleep(2);
12090 if (time_after(jiffies, timeout))
12091 /* Timeout, let the mailbox flush routine to
12092 * forcefully release active mailbox command
12093 */
12094 break;
12095 }
James Smart523128e2018-09-10 10:30:46 -070012096 } else {
James Smartd7069f02012-03-01 22:36:29 -050012097 spin_unlock_irq(&phba->hbalock);
12098
James Smart523128e2018-09-10 10:30:46 -070012099 /* Enable softirqs again, done with phba->hbalock */
12100 local_bh_enable();
12101 }
12102
James Smart3772a992009-05-22 14:50:54 -040012103 lpfc_sli_mbox_sys_flush(phba);
12104}
12105
12106/**
12107 * lpfc_sli_eratt_read - read sli-3 error attention events
12108 * @phba: Pointer to HBA context.
12109 *
12110 * This function is called to read the SLI3 device error attention registers
12111 * for possible error attention events. The caller must hold the hostlock
12112 * with spin_lock_irq().
12113 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030012114 * This function returns 1 when there is Error Attention in the Host Attention
James Smart3772a992009-05-22 14:50:54 -040012115 * Register and returns 0 otherwise.
12116 **/
12117static int
12118lpfc_sli_eratt_read(struct lpfc_hba *phba)
12119{
James Smarted957682007-06-17 19:56:37 -050012120 uint32_t ha_copy;
James Smartb4c02652006-07-06 15:50:43 -040012121
James Smart3772a992009-05-22 14:50:54 -040012122 /* Read chip Host Attention (HA) register */
James Smart9940b972011-03-11 16:06:12 -050012123 if (lpfc_readl(phba->HAregaddr, &ha_copy))
12124 goto unplug_err;
12125
James Smart3772a992009-05-22 14:50:54 -040012126 if (ha_copy & HA_ERATT) {
12127 /* Read host status register to retrieve error event */
James Smart9940b972011-03-11 16:06:12 -050012128 if (lpfc_sli_read_hs(phba))
12129 goto unplug_err;
James Smartb4c02652006-07-06 15:50:43 -040012130
James Smart3772a992009-05-22 14:50:54 -040012131 /* Check if there is a deferred error condition is active */
12132 if ((HS_FFER1 & phba->work_hs) &&
12133 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040012134 HS_FFER6 | HS_FFER7 | HS_FFER8) & phba->work_hs)) {
James Smart3772a992009-05-22 14:50:54 -040012135 phba->hba_flag |= DEFER_ERATT;
James Smart3772a992009-05-22 14:50:54 -040012136 /* Clear all interrupt enable conditions */
12137 writel(0, phba->HCregaddr);
12138 readl(phba->HCregaddr);
12139 }
12140
12141 /* Set the driver HA work bitmap */
James Smart3772a992009-05-22 14:50:54 -040012142 phba->work_ha |= HA_ERATT;
12143 /* Indicate polling handles this ERATT */
12144 phba->hba_flag |= HBA_ERATT_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040012145 return 1;
James Smartb4c02652006-07-06 15:50:43 -040012146 }
James Smart3772a992009-05-22 14:50:54 -040012147 return 0;
James Smart9940b972011-03-11 16:06:12 -050012148
12149unplug_err:
12150 /* Set the driver HS work bitmap */
12151 phba->work_hs |= UNPLUG_ERR;
12152 /* Set the driver HA work bitmap */
12153 phba->work_ha |= HA_ERATT;
12154 /* Indicate polling handles this ERATT */
12155 phba->hba_flag |= HBA_ERATT_HANDLED;
12156 return 1;
James Smartb4c02652006-07-06 15:50:43 -040012157}
12158
James Smarte59058c2008-08-24 21:49:00 -040012159/**
James Smartda0436e2009-05-22 14:51:39 -040012160 * lpfc_sli4_eratt_read - read sli-4 error attention events
12161 * @phba: Pointer to HBA context.
12162 *
12163 * This function is called to read the SLI4 device error attention registers
12164 * for possible error attention events. The caller must hold the hostlock
12165 * with spin_lock_irq().
12166 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030012167 * This function returns 1 when there is Error Attention in the Host Attention
James Smartda0436e2009-05-22 14:51:39 -040012168 * Register and returns 0 otherwise.
12169 **/
12170static int
12171lpfc_sli4_eratt_read(struct lpfc_hba *phba)
12172{
12173 uint32_t uerr_sta_hi, uerr_sta_lo;
James Smart2fcee4b2010-12-15 17:57:46 -050012174 uint32_t if_type, portsmphr;
12175 struct lpfc_register portstat_reg;
James Smartda0436e2009-05-22 14:51:39 -040012176
James Smart2fcee4b2010-12-15 17:57:46 -050012177 /*
12178 * For now, use the SLI4 device internal unrecoverable error
James Smartda0436e2009-05-22 14:51:39 -040012179 * registers for error attention. This can be changed later.
12180 */
James Smart2fcee4b2010-12-15 17:57:46 -050012181 if_type = bf_get(lpfc_sli_intf_if_type, &phba->sli4_hba.sli_intf);
12182 switch (if_type) {
12183 case LPFC_SLI_INTF_IF_TYPE_0:
James Smart9940b972011-03-11 16:06:12 -050012184 if (lpfc_readl(phba->sli4_hba.u.if_type0.UERRLOregaddr,
12185 &uerr_sta_lo) ||
12186 lpfc_readl(phba->sli4_hba.u.if_type0.UERRHIregaddr,
12187 &uerr_sta_hi)) {
12188 phba->work_hs |= UNPLUG_ERR;
12189 phba->work_ha |= HA_ERATT;
12190 phba->hba_flag |= HBA_ERATT_HANDLED;
12191 return 1;
12192 }
James Smart2fcee4b2010-12-15 17:57:46 -050012193 if ((~phba->sli4_hba.ue_mask_lo & uerr_sta_lo) ||
12194 (~phba->sli4_hba.ue_mask_hi & uerr_sta_hi)) {
12195 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12196 "1423 HBA Unrecoverable error: "
12197 "uerr_lo_reg=0x%x, uerr_hi_reg=0x%x, "
12198 "ue_mask_lo_reg=0x%x, "
12199 "ue_mask_hi_reg=0x%x\n",
12200 uerr_sta_lo, uerr_sta_hi,
12201 phba->sli4_hba.ue_mask_lo,
12202 phba->sli4_hba.ue_mask_hi);
12203 phba->work_status[0] = uerr_sta_lo;
12204 phba->work_status[1] = uerr_sta_hi;
12205 phba->work_ha |= HA_ERATT;
12206 phba->hba_flag |= HBA_ERATT_HANDLED;
12207 return 1;
12208 }
12209 break;
12210 case LPFC_SLI_INTF_IF_TYPE_2:
James Smart27d6ac02018-02-22 08:18:42 -080012211 case LPFC_SLI_INTF_IF_TYPE_6:
James Smart9940b972011-03-11 16:06:12 -050012212 if (lpfc_readl(phba->sli4_hba.u.if_type2.STATUSregaddr,
12213 &portstat_reg.word0) ||
12214 lpfc_readl(phba->sli4_hba.PSMPHRregaddr,
12215 &portsmphr)){
12216 phba->work_hs |= UNPLUG_ERR;
12217 phba->work_ha |= HA_ERATT;
12218 phba->hba_flag |= HBA_ERATT_HANDLED;
12219 return 1;
12220 }
James Smart2fcee4b2010-12-15 17:57:46 -050012221 if (bf_get(lpfc_sliport_status_err, &portstat_reg)) {
12222 phba->work_status[0] =
12223 readl(phba->sli4_hba.u.if_type2.ERR1regaddr);
12224 phba->work_status[1] =
12225 readl(phba->sli4_hba.u.if_type2.ERR2regaddr);
12226 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2e90f4b2011-12-13 13:22:37 -050012227 "2885 Port Status Event: "
James Smart2fcee4b2010-12-15 17:57:46 -050012228 "port status reg 0x%x, "
12229 "port smphr reg 0x%x, "
12230 "error 1=0x%x, error 2=0x%x\n",
12231 portstat_reg.word0,
12232 portsmphr,
12233 phba->work_status[0],
12234 phba->work_status[1]);
12235 phba->work_ha |= HA_ERATT;
12236 phba->hba_flag |= HBA_ERATT_HANDLED;
12237 return 1;
12238 }
12239 break;
12240 case LPFC_SLI_INTF_IF_TYPE_1:
12241 default:
James Smarta747c9c2009-11-18 15:41:10 -050012242 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart2fcee4b2010-12-15 17:57:46 -050012243 "2886 HBA Error Attention on unsupported "
12244 "if type %d.", if_type);
James Smarta747c9c2009-11-18 15:41:10 -050012245 return 1;
James Smartda0436e2009-05-22 14:51:39 -040012246 }
James Smart2fcee4b2010-12-15 17:57:46 -050012247
James Smartda0436e2009-05-22 14:51:39 -040012248 return 0;
12249}
12250
12251/**
James Smart3621a712009-04-06 18:47:14 -040012252 * lpfc_sli_check_eratt - check error attention events
James Smart93996272008-08-24 21:50:30 -040012253 * @phba: Pointer to HBA context.
12254 *
James Smart3772a992009-05-22 14:50:54 -040012255 * This function is called from timer soft interrupt context to check HBA's
James Smart93996272008-08-24 21:50:30 -040012256 * error attention register bit for error attention events.
12257 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030012258 * This function returns 1 when there is Error Attention in the Host Attention
James Smart93996272008-08-24 21:50:30 -040012259 * Register and returns 0 otherwise.
12260 **/
12261int
12262lpfc_sli_check_eratt(struct lpfc_hba *phba)
12263{
12264 uint32_t ha_copy;
12265
12266 /* If somebody is waiting to handle an eratt, don't process it
12267 * here. The brdkill function will do this.
12268 */
12269 if (phba->link_flag & LS_IGNORE_ERATT)
12270 return 0;
12271
12272 /* Check if interrupt handler handles this ERATT */
12273 spin_lock_irq(&phba->hbalock);
12274 if (phba->hba_flag & HBA_ERATT_HANDLED) {
12275 /* Interrupt handler has handled ERATT */
12276 spin_unlock_irq(&phba->hbalock);
12277 return 0;
12278 }
12279
James Smarta257bf92009-04-06 18:48:10 -040012280 /*
12281 * If there is deferred error attention, do not check for error
12282 * attention
12283 */
12284 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
12285 spin_unlock_irq(&phba->hbalock);
12286 return 0;
12287 }
12288
James Smart3772a992009-05-22 14:50:54 -040012289 /* If PCI channel is offline, don't process it */
12290 if (unlikely(pci_channel_offline(phba->pcidev))) {
James Smart93996272008-08-24 21:50:30 -040012291 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040012292 return 0;
12293 }
12294
12295 switch (phba->sli_rev) {
12296 case LPFC_SLI_REV2:
12297 case LPFC_SLI_REV3:
12298 /* Read chip Host Attention (HA) register */
12299 ha_copy = lpfc_sli_eratt_read(phba);
12300 break;
James Smartda0436e2009-05-22 14:51:39 -040012301 case LPFC_SLI_REV4:
James Smart2fcee4b2010-12-15 17:57:46 -050012302 /* Read device Uncoverable Error (UERR) registers */
James Smartda0436e2009-05-22 14:51:39 -040012303 ha_copy = lpfc_sli4_eratt_read(phba);
12304 break;
James Smart3772a992009-05-22 14:50:54 -040012305 default:
12306 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
12307 "0299 Invalid SLI revision (%d)\n",
12308 phba->sli_rev);
12309 ha_copy = 0;
12310 break;
James Smart93996272008-08-24 21:50:30 -040012311 }
12312 spin_unlock_irq(&phba->hbalock);
James Smart3772a992009-05-22 14:50:54 -040012313
12314 return ha_copy;
12315}
12316
12317/**
12318 * lpfc_intr_state_check - Check device state for interrupt handling
12319 * @phba: Pointer to HBA context.
12320 *
12321 * This inline routine checks whether a device or its PCI slot is in a state
12322 * that the interrupt should be handled.
12323 *
12324 * This function returns 0 if the device or the PCI slot is in a state that
12325 * interrupt should be handled, otherwise -EIO.
12326 */
12327static inline int
12328lpfc_intr_state_check(struct lpfc_hba *phba)
12329{
12330 /* If the pci channel is offline, ignore all the interrupts */
12331 if (unlikely(pci_channel_offline(phba->pcidev)))
12332 return -EIO;
12333
12334 /* Update device level interrupt statistics */
12335 phba->sli.slistat.sli_intr++;
12336
12337 /* Ignore all interrupts during initialization. */
12338 if (unlikely(phba->link_state < LPFC_LINK_DOWN))
12339 return -EIO;
12340
James Smart93996272008-08-24 21:50:30 -040012341 return 0;
12342}
12343
12344/**
James Smart3772a992009-05-22 14:50:54 -040012345 * lpfc_sli_sp_intr_handler - Slow-path interrupt handler to SLI-3 device
James Smarte59058c2008-08-24 21:49:00 -040012346 * @irq: Interrupt number.
12347 * @dev_id: The device context pointer.
12348 *
James Smart93996272008-08-24 21:50:30 -040012349 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040012350 * service routine when device with SLI-3 interface spec is enabled with
12351 * MSI-X multi-message interrupt mode and there are slow-path events in
12352 * the HBA. However, when the device is enabled with either MSI or Pin-IRQ
12353 * interrupt mode, this function is called as part of the device-level
12354 * interrupt handler. When the PCI slot is in error recovery or the HBA
12355 * is undergoing initialization, the interrupt handler will not process
12356 * the interrupt. The link attention and ELS ring attention events are
12357 * handled by the worker thread. The interrupt handler signals the worker
12358 * thread and returns for these events. This function is called without
12359 * any lock held. It gets the hbalock to access and update SLI data
James Smart93996272008-08-24 21:50:30 -040012360 * structures.
12361 *
12362 * This function returns IRQ_HANDLED when interrupt is handled else it
12363 * returns IRQ_NONE.
James Smarte59058c2008-08-24 21:49:00 -040012364 **/
dea31012005-04-17 16:05:31 -050012365irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040012366lpfc_sli_sp_intr_handler(int irq, void *dev_id)
dea31012005-04-17 16:05:31 -050012367{
James Smart2e0fef82007-06-17 19:56:36 -050012368 struct lpfc_hba *phba;
James Smarta747c9c2009-11-18 15:41:10 -050012369 uint32_t ha_copy, hc_copy;
dea31012005-04-17 16:05:31 -050012370 uint32_t work_ha_copy;
12371 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050012372 unsigned long iflag;
dea31012005-04-17 16:05:31 -050012373 uint32_t control;
12374
James Smart92d7f7b2007-06-17 19:56:38 -050012375 MAILBOX_t *mbox, *pmbox;
James Smart858c9f62007-06-17 19:56:39 -050012376 struct lpfc_vport *vport;
12377 struct lpfc_nodelist *ndlp;
12378 struct lpfc_dmabuf *mp;
James Smart92d7f7b2007-06-17 19:56:38 -050012379 LPFC_MBOXQ_t *pmb;
12380 int rc;
12381
dea31012005-04-17 16:05:31 -050012382 /*
12383 * Get the driver's phba structure from the dev_id and
12384 * assume the HBA is not interrupting.
12385 */
James Smart93996272008-08-24 21:50:30 -040012386 phba = (struct lpfc_hba *)dev_id;
dea31012005-04-17 16:05:31 -050012387
12388 if (unlikely(!phba))
12389 return IRQ_NONE;
12390
dea31012005-04-17 16:05:31 -050012391 /*
James Smart93996272008-08-24 21:50:30 -040012392 * Stuff needs to be attented to when this function is invoked as an
12393 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050012394 */
James Smart93996272008-08-24 21:50:30 -040012395 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040012396 /* Check device state for handling interrupt */
12397 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040012398 return IRQ_NONE;
12399 /* Need to read HA REG for slow-path events */
James Smart5b75da22008-12-04 22:39:35 -050012400 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050012401 if (lpfc_readl(phba->HAregaddr, &ha_copy))
12402 goto unplug_error;
James Smart93996272008-08-24 21:50:30 -040012403 /* If somebody is waiting to handle an eratt don't process it
12404 * here. The brdkill function will do this.
12405 */
12406 if (phba->link_flag & LS_IGNORE_ERATT)
12407 ha_copy &= ~HA_ERATT;
12408 /* Check the need for handling ERATT in interrupt handler */
12409 if (ha_copy & HA_ERATT) {
12410 if (phba->hba_flag & HBA_ERATT_HANDLED)
12411 /* ERATT polling has handled ERATT */
12412 ha_copy &= ~HA_ERATT;
12413 else
12414 /* Indicate interrupt handler handles ERATT */
12415 phba->hba_flag |= HBA_ERATT_HANDLED;
12416 }
James Smarta257bf92009-04-06 18:48:10 -040012417
12418 /*
12419 * If there is deferred error attention, do not check for any
12420 * interrupt.
12421 */
12422 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040012423 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040012424 return IRQ_NONE;
12425 }
12426
James Smart93996272008-08-24 21:50:30 -040012427 /* Clear up only attention source related to slow-path */
James Smart9940b972011-03-11 16:06:12 -050012428 if (lpfc_readl(phba->HCregaddr, &hc_copy))
12429 goto unplug_error;
12430
James Smarta747c9c2009-11-18 15:41:10 -050012431 writel(hc_copy & ~(HC_MBINT_ENA | HC_R2INT_ENA |
12432 HC_LAINT_ENA | HC_ERINT_ENA),
12433 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040012434 writel((ha_copy & (HA_MBATT | HA_R2_CLR_MSK)),
12435 phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050012436 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040012437 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050012438 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040012439 } else
12440 ha_copy = phba->ha_copy;
dea31012005-04-17 16:05:31 -050012441
dea31012005-04-17 16:05:31 -050012442 work_ha_copy = ha_copy & phba->work_ha_mask;
12443
James Smart93996272008-08-24 21:50:30 -040012444 if (work_ha_copy) {
dea31012005-04-17 16:05:31 -050012445 if (work_ha_copy & HA_LATT) {
12446 if (phba->sli.sli_flag & LPFC_PROCESS_LA) {
12447 /*
12448 * Turn off Link Attention interrupts
12449 * until CLEAR_LA done
12450 */
James Smart5b75da22008-12-04 22:39:35 -050012451 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050012452 phba->sli.sli_flag &= ~LPFC_PROCESS_LA;
James Smart9940b972011-03-11 16:06:12 -050012453 if (lpfc_readl(phba->HCregaddr, &control))
12454 goto unplug_error;
dea31012005-04-17 16:05:31 -050012455 control &= ~HC_LAINT_ENA;
12456 writel(control, phba->HCregaddr);
12457 readl(phba->HCregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050012458 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050012459 }
12460 else
12461 work_ha_copy &= ~HA_LATT;
12462 }
12463
James Smart93996272008-08-24 21:50:30 -040012464 if (work_ha_copy & ~(HA_ERATT | HA_MBATT | HA_LATT)) {
James Smart858c9f62007-06-17 19:56:39 -050012465 /*
12466 * Turn off Slow Rings interrupts, LPFC_ELS_RING is
12467 * the only slow ring.
12468 */
12469 status = (work_ha_copy &
12470 (HA_RXMASK << (4*LPFC_ELS_RING)));
12471 status >>= (4*LPFC_ELS_RING);
12472 if (status & HA_RXMASK) {
James Smart5b75da22008-12-04 22:39:35 -050012473 spin_lock_irqsave(&phba->hbalock, iflag);
James Smart9940b972011-03-11 16:06:12 -050012474 if (lpfc_readl(phba->HCregaddr, &control))
12475 goto unplug_error;
James Smarta58cbd52007-08-02 11:09:43 -040012476
12477 lpfc_debugfs_slow_ring_trc(phba,
12478 "ISR slow ring: ctl:x%x stat:x%x isrcnt:x%x",
12479 control, status,
12480 (uint32_t)phba->sli.slistat.sli_intr);
12481
James Smart858c9f62007-06-17 19:56:39 -050012482 if (control & (HC_R0INT_ENA << LPFC_ELS_RING)) {
James Smarta58cbd52007-08-02 11:09:43 -040012483 lpfc_debugfs_slow_ring_trc(phba,
12484 "ISR Disable ring:"
12485 "pwork:x%x hawork:x%x wait:x%x",
12486 phba->work_ha, work_ha_copy,
12487 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040012488 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040012489
James Smart858c9f62007-06-17 19:56:39 -050012490 control &=
12491 ~(HC_R0INT_ENA << LPFC_ELS_RING);
dea31012005-04-17 16:05:31 -050012492 writel(control, phba->HCregaddr);
12493 readl(phba->HCregaddr); /* flush */
dea31012005-04-17 16:05:31 -050012494 }
James Smarta58cbd52007-08-02 11:09:43 -040012495 else {
12496 lpfc_debugfs_slow_ring_trc(phba,
12497 "ISR slow ring: pwork:"
12498 "x%x hawork:x%x wait:x%x",
12499 phba->work_ha, work_ha_copy,
12500 (uint32_t)((unsigned long)
James Smart5e9d9b82008-06-14 22:52:53 -040012501 &phba->work_waitq));
James Smarta58cbd52007-08-02 11:09:43 -040012502 }
James Smart5b75da22008-12-04 22:39:35 -050012503 spin_unlock_irqrestore(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050012504 }
12505 }
James Smart5b75da22008-12-04 22:39:35 -050012506 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040012507 if (work_ha_copy & HA_ERATT) {
James Smart9940b972011-03-11 16:06:12 -050012508 if (lpfc_sli_read_hs(phba))
12509 goto unplug_error;
James Smarta257bf92009-04-06 18:48:10 -040012510 /*
12511 * Check if there is a deferred error condition
12512 * is active
12513 */
12514 if ((HS_FFER1 & phba->work_hs) &&
12515 ((HS_FFER2 | HS_FFER3 | HS_FFER4 | HS_FFER5 |
James Smartdcf2a4e2010-09-29 11:18:53 -040012516 HS_FFER6 | HS_FFER7 | HS_FFER8) &
12517 phba->work_hs)) {
James Smarta257bf92009-04-06 18:48:10 -040012518 phba->hba_flag |= DEFER_ERATT;
12519 /* Clear all interrupt enable conditions */
12520 writel(0, phba->HCregaddr);
12521 readl(phba->HCregaddr);
12522 }
12523 }
12524
James Smart93996272008-08-24 21:50:30 -040012525 if ((work_ha_copy & HA_MBATT) && (phba->sli.mbox_active)) {
James Smart92d7f7b2007-06-17 19:56:38 -050012526 pmb = phba->sli.mbox_active;
James Smart04c68492009-05-22 14:52:52 -040012527 pmbox = &pmb->u.mb;
James Smart34b02dc2008-08-24 21:49:55 -040012528 mbox = phba->mbox;
James Smart858c9f62007-06-17 19:56:39 -050012529 vport = pmb->vport;
James Smart92d7f7b2007-06-17 19:56:38 -050012530
12531 /* First check out the status word */
12532 lpfc_sli_pcimem_bcopy(mbox, pmbox, sizeof(uint32_t));
12533 if (pmbox->mbxOwner != OWN_HOST) {
James Smart5b75da22008-12-04 22:39:35 -050012534 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart92d7f7b2007-06-17 19:56:38 -050012535 /*
12536 * Stray Mailbox Interrupt, mbxCommand <cmd>
12537 * mbxStatus <status>
12538 */
James Smart09372822008-01-11 01:52:54 -050012539 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
James Smart92d7f7b2007-06-17 19:56:38 -050012540 LOG_SLI,
James Smarte8b62012007-08-02 11:10:09 -040012541 "(%d):0304 Stray Mailbox "
James Smart92d7f7b2007-06-17 19:56:38 -050012542 "Interrupt mbxCommand x%x "
12543 "mbxStatus x%x\n",
James Smarte8b62012007-08-02 11:10:09 -040012544 (vport ? vport->vpi : 0),
James Smart92d7f7b2007-06-17 19:56:38 -050012545 pmbox->mbxCommand,
12546 pmbox->mbxStatus);
James Smart09372822008-01-11 01:52:54 -050012547 /* clear mailbox attention bit */
12548 work_ha_copy &= ~HA_MBATT;
12549 } else {
James Smart97eab632008-04-07 10:16:05 -040012550 phba->sli.mbox_active = NULL;
James Smart5b75da22008-12-04 22:39:35 -050012551 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart09372822008-01-11 01:52:54 -050012552 phba->last_completion_time = jiffies;
12553 del_timer(&phba->sli.mbox_tmo);
James Smart09372822008-01-11 01:52:54 -050012554 if (pmb->mbox_cmpl) {
12555 lpfc_sli_pcimem_bcopy(mbox, pmbox,
12556 MAILBOX_CMD_SIZE);
James Smart7a470272010-03-15 11:25:20 -040012557 if (pmb->out_ext_byte_len &&
James Smart3e1f0712018-11-29 16:09:29 -080012558 pmb->ctx_buf)
James Smart7a470272010-03-15 11:25:20 -040012559 lpfc_sli_pcimem_bcopy(
12560 phba->mbox_ext,
James Smart3e1f0712018-11-29 16:09:29 -080012561 pmb->ctx_buf,
James Smart7a470272010-03-15 11:25:20 -040012562 pmb->out_ext_byte_len);
James Smart858c9f62007-06-17 19:56:39 -050012563 }
James Smart09372822008-01-11 01:52:54 -050012564 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
12565 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
12566
12567 lpfc_debugfs_disc_trc(vport,
12568 LPFC_DISC_TRC_MBOX_VPORT,
12569 "MBOX dflt rpi: : "
12570 "status:x%x rpi:x%x",
12571 (uint32_t)pmbox->mbxStatus,
12572 pmbox->un.varWords[0], 0);
12573
12574 if (!pmbox->mbxStatus) {
12575 mp = (struct lpfc_dmabuf *)
James Smart3e1f0712018-11-29 16:09:29 -080012576 (pmb->ctx_buf);
James Smart09372822008-01-11 01:52:54 -050012577 ndlp = (struct lpfc_nodelist *)
James Smart3e1f0712018-11-29 16:09:29 -080012578 pmb->ctx_ndlp;
James Smart09372822008-01-11 01:52:54 -050012579
12580 /* Reg_LOGIN of dflt RPI was
12581 * successful. new lets get
12582 * rid of the RPI using the
12583 * same mbox buffer.
12584 */
12585 lpfc_unreg_login(phba,
12586 vport->vpi,
12587 pmbox->un.varWords[0],
12588 pmb);
12589 pmb->mbox_cmpl =
12590 lpfc_mbx_cmpl_dflt_rpi;
James Smart3e1f0712018-11-29 16:09:29 -080012591 pmb->ctx_buf = mp;
12592 pmb->ctx_ndlp = ndlp;
James Smart09372822008-01-11 01:52:54 -050012593 pmb->vport = vport;
James Smart58da1ff2008-04-07 10:15:56 -040012594 rc = lpfc_sli_issue_mbox(phba,
12595 pmb,
12596 MBX_NOWAIT);
12597 if (rc != MBX_BUSY)
12598 lpfc_printf_log(phba,
12599 KERN_ERR,
12600 LOG_MBOX | LOG_SLI,
James Smartd7c255b2008-08-24 21:50:00 -040012601 "0350 rc should have"
James Smart6a9c52c2009-10-02 15:16:51 -040012602 "been MBX_BUSY\n");
James Smart3772a992009-05-22 14:50:54 -040012603 if (rc != MBX_NOT_FINISHED)
12604 goto send_current_mbox;
James Smart09372822008-01-11 01:52:54 -050012605 }
12606 }
James Smart5b75da22008-12-04 22:39:35 -050012607 spin_lock_irqsave(
12608 &phba->pport->work_port_lock,
12609 iflag);
James Smart09372822008-01-11 01:52:54 -050012610 phba->pport->work_port_events &=
12611 ~WORKER_MBOX_TMO;
James Smart5b75da22008-12-04 22:39:35 -050012612 spin_unlock_irqrestore(
12613 &phba->pport->work_port_lock,
12614 iflag);
James Smart09372822008-01-11 01:52:54 -050012615 lpfc_mbox_cmpl_put(phba, pmb);
James Smart858c9f62007-06-17 19:56:39 -050012616 }
James Smart97eab632008-04-07 10:16:05 -040012617 } else
James Smart5b75da22008-12-04 22:39:35 -050012618 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040012619
James Smart92d7f7b2007-06-17 19:56:38 -050012620 if ((work_ha_copy & HA_MBATT) &&
12621 (phba->sli.mbox_active == NULL)) {
James Smart858c9f62007-06-17 19:56:39 -050012622send_current_mbox:
James Smart92d7f7b2007-06-17 19:56:38 -050012623 /* Process next mailbox command if there is one */
James Smart58da1ff2008-04-07 10:15:56 -040012624 do {
12625 rc = lpfc_sli_issue_mbox(phba, NULL,
12626 MBX_NOWAIT);
12627 } while (rc == MBX_NOT_FINISHED);
12628 if (rc != MBX_SUCCESS)
12629 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
12630 LOG_SLI, "0349 rc should be "
James Smart6a9c52c2009-10-02 15:16:51 -040012631 "MBX_SUCCESS\n");
James Smart92d7f7b2007-06-17 19:56:38 -050012632 }
12633
James Smart5b75da22008-12-04 22:39:35 -050012634 spin_lock_irqsave(&phba->hbalock, iflag);
dea31012005-04-17 16:05:31 -050012635 phba->work_ha |= work_ha_copy;
James Smart5b75da22008-12-04 22:39:35 -050012636 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart5e9d9b82008-06-14 22:52:53 -040012637 lpfc_worker_wake_up(phba);
dea31012005-04-17 16:05:31 -050012638 }
James Smart93996272008-08-24 21:50:30 -040012639 return IRQ_HANDLED;
James Smart9940b972011-03-11 16:06:12 -050012640unplug_error:
12641 spin_unlock_irqrestore(&phba->hbalock, iflag);
12642 return IRQ_HANDLED;
dea31012005-04-17 16:05:31 -050012643
James Smart3772a992009-05-22 14:50:54 -040012644} /* lpfc_sli_sp_intr_handler */
James Smart93996272008-08-24 21:50:30 -040012645
12646/**
James Smart3772a992009-05-22 14:50:54 -040012647 * lpfc_sli_fp_intr_handler - Fast-path interrupt handler to SLI-3 device.
James Smart93996272008-08-24 21:50:30 -040012648 * @irq: Interrupt number.
12649 * @dev_id: The device context pointer.
12650 *
12651 * This function is directly called from the PCI layer as an interrupt
James Smart3772a992009-05-22 14:50:54 -040012652 * service routine when device with SLI-3 interface spec is enabled with
12653 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
12654 * ring event in the HBA. However, when the device is enabled with either
12655 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
12656 * device-level interrupt handler. When the PCI slot is in error recovery
12657 * or the HBA is undergoing initialization, the interrupt handler will not
12658 * process the interrupt. The SCSI FCP fast-path ring event are handled in
12659 * the intrrupt context. This function is called without any lock held.
12660 * It gets the hbalock to access and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040012661 *
12662 * This function returns IRQ_HANDLED when interrupt is handled else it
12663 * returns IRQ_NONE.
12664 **/
12665irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040012666lpfc_sli_fp_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040012667{
12668 struct lpfc_hba *phba;
12669 uint32_t ha_copy;
12670 unsigned long status;
James Smart5b75da22008-12-04 22:39:35 -050012671 unsigned long iflag;
James Smart895427b2017-02-12 13:52:30 -080012672 struct lpfc_sli_ring *pring;
James Smart93996272008-08-24 21:50:30 -040012673
12674 /* Get the driver's phba structure from the dev_id and
12675 * assume the HBA is not interrupting.
12676 */
12677 phba = (struct lpfc_hba *) dev_id;
12678
12679 if (unlikely(!phba))
12680 return IRQ_NONE;
dea31012005-04-17 16:05:31 -050012681
12682 /*
James Smart93996272008-08-24 21:50:30 -040012683 * Stuff needs to be attented to when this function is invoked as an
12684 * individual interrupt handler in MSI-X multi-message interrupt mode
dea31012005-04-17 16:05:31 -050012685 */
James Smart93996272008-08-24 21:50:30 -040012686 if (phba->intr_type == MSIX) {
James Smart3772a992009-05-22 14:50:54 -040012687 /* Check device state for handling interrupt */
12688 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040012689 return IRQ_NONE;
12690 /* Need to read HA REG for FCP ring and other ring events */
James Smart9940b972011-03-11 16:06:12 -050012691 if (lpfc_readl(phba->HAregaddr, &ha_copy))
12692 return IRQ_HANDLED;
James Smart93996272008-08-24 21:50:30 -040012693 /* Clear up only attention source related to fast-path */
James Smart5b75da22008-12-04 22:39:35 -050012694 spin_lock_irqsave(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040012695 /*
12696 * If there is deferred error attention, do not check for
12697 * any interrupt.
12698 */
12699 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
James Smart3772a992009-05-22 14:50:54 -040012700 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smarta257bf92009-04-06 18:48:10 -040012701 return IRQ_NONE;
12702 }
James Smart93996272008-08-24 21:50:30 -040012703 writel((ha_copy & (HA_R0_CLR_MSK | HA_R1_CLR_MSK)),
12704 phba->HAregaddr);
12705 readl(phba->HAregaddr); /* flush */
James Smart5b75da22008-12-04 22:39:35 -050012706 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart93996272008-08-24 21:50:30 -040012707 } else
12708 ha_copy = phba->ha_copy;
12709
12710 /*
12711 * Process all events on FCP ring. Take the optimized path for FCP IO.
12712 */
12713 ha_copy &= ~(phba->work_ha_mask);
12714
12715 status = (ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
dea31012005-04-17 16:05:31 -050012716 status >>= (4*LPFC_FCP_RING);
James Smart895427b2017-02-12 13:52:30 -080012717 pring = &phba->sli.sli3_ring[LPFC_FCP_RING];
James Smart858c9f62007-06-17 19:56:39 -050012718 if (status & HA_RXMASK)
James Smart895427b2017-02-12 13:52:30 -080012719 lpfc_sli_handle_fast_ring_event(phba, pring, status);
James Smarta4bc3372006-12-02 13:34:16 -050012720
12721 if (phba->cfg_multi_ring_support == 2) {
12722 /*
James Smart93996272008-08-24 21:50:30 -040012723 * Process all events on extra ring. Take the optimized path
12724 * for extra ring IO.
James Smarta4bc3372006-12-02 13:34:16 -050012725 */
James Smart93996272008-08-24 21:50:30 -040012726 status = (ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
James Smarta4bc3372006-12-02 13:34:16 -050012727 status >>= (4*LPFC_EXTRA_RING);
James Smart858c9f62007-06-17 19:56:39 -050012728 if (status & HA_RXMASK) {
James Smarta4bc3372006-12-02 13:34:16 -050012729 lpfc_sli_handle_fast_ring_event(phba,
James Smart895427b2017-02-12 13:52:30 -080012730 &phba->sli.sli3_ring[LPFC_EXTRA_RING],
James Smarta4bc3372006-12-02 13:34:16 -050012731 status);
12732 }
12733 }
dea31012005-04-17 16:05:31 -050012734 return IRQ_HANDLED;
James Smart3772a992009-05-22 14:50:54 -040012735} /* lpfc_sli_fp_intr_handler */
dea31012005-04-17 16:05:31 -050012736
James Smart93996272008-08-24 21:50:30 -040012737/**
James Smart3772a992009-05-22 14:50:54 -040012738 * lpfc_sli_intr_handler - Device-level interrupt handler to SLI-3 device
James Smart93996272008-08-24 21:50:30 -040012739 * @irq: Interrupt number.
12740 * @dev_id: The device context pointer.
12741 *
James Smart3772a992009-05-22 14:50:54 -040012742 * This function is the HBA device-level interrupt handler to device with
12743 * SLI-3 interface spec, called from the PCI layer when either MSI or
12744 * Pin-IRQ interrupt mode is enabled and there is an event in the HBA which
12745 * requires driver attention. This function invokes the slow-path interrupt
12746 * attention handling function and fast-path interrupt attention handling
12747 * function in turn to process the relevant HBA attention events. This
12748 * function is called without any lock held. It gets the hbalock to access
12749 * and update SLI data structures.
James Smart93996272008-08-24 21:50:30 -040012750 *
12751 * This function returns IRQ_HANDLED when interrupt is handled, else it
12752 * returns IRQ_NONE.
12753 **/
12754irqreturn_t
James Smart3772a992009-05-22 14:50:54 -040012755lpfc_sli_intr_handler(int irq, void *dev_id)
James Smart93996272008-08-24 21:50:30 -040012756{
12757 struct lpfc_hba *phba;
12758 irqreturn_t sp_irq_rc, fp_irq_rc;
12759 unsigned long status1, status2;
James Smarta747c9c2009-11-18 15:41:10 -050012760 uint32_t hc_copy;
James Smart93996272008-08-24 21:50:30 -040012761
12762 /*
12763 * Get the driver's phba structure from the dev_id and
12764 * assume the HBA is not interrupting.
12765 */
12766 phba = (struct lpfc_hba *) dev_id;
12767
12768 if (unlikely(!phba))
12769 return IRQ_NONE;
12770
James Smart3772a992009-05-22 14:50:54 -040012771 /* Check device state for handling interrupt */
12772 if (lpfc_intr_state_check(phba))
James Smart93996272008-08-24 21:50:30 -040012773 return IRQ_NONE;
12774
12775 spin_lock(&phba->hbalock);
James Smart9940b972011-03-11 16:06:12 -050012776 if (lpfc_readl(phba->HAregaddr, &phba->ha_copy)) {
12777 spin_unlock(&phba->hbalock);
12778 return IRQ_HANDLED;
12779 }
12780
James Smart93996272008-08-24 21:50:30 -040012781 if (unlikely(!phba->ha_copy)) {
12782 spin_unlock(&phba->hbalock);
12783 return IRQ_NONE;
12784 } else if (phba->ha_copy & HA_ERATT) {
12785 if (phba->hba_flag & HBA_ERATT_HANDLED)
12786 /* ERATT polling has handled ERATT */
12787 phba->ha_copy &= ~HA_ERATT;
12788 else
12789 /* Indicate interrupt handler handles ERATT */
12790 phba->hba_flag |= HBA_ERATT_HANDLED;
12791 }
12792
James Smarta257bf92009-04-06 18:48:10 -040012793 /*
12794 * If there is deferred error attention, do not check for any interrupt.
12795 */
12796 if (unlikely(phba->hba_flag & DEFER_ERATT)) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020012797 spin_unlock(&phba->hbalock);
James Smarta257bf92009-04-06 18:48:10 -040012798 return IRQ_NONE;
12799 }
12800
James Smart93996272008-08-24 21:50:30 -040012801 /* Clear attention sources except link and error attentions */
James Smart9940b972011-03-11 16:06:12 -050012802 if (lpfc_readl(phba->HCregaddr, &hc_copy)) {
12803 spin_unlock(&phba->hbalock);
12804 return IRQ_HANDLED;
12805 }
James Smarta747c9c2009-11-18 15:41:10 -050012806 writel(hc_copy & ~(HC_MBINT_ENA | HC_R0INT_ENA | HC_R1INT_ENA
12807 | HC_R2INT_ENA | HC_LAINT_ENA | HC_ERINT_ENA),
12808 phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040012809 writel((phba->ha_copy & ~(HA_LATT | HA_ERATT)), phba->HAregaddr);
James Smarta747c9c2009-11-18 15:41:10 -050012810 writel(hc_copy, phba->HCregaddr);
James Smart93996272008-08-24 21:50:30 -040012811 readl(phba->HAregaddr); /* flush */
12812 spin_unlock(&phba->hbalock);
12813
12814 /*
12815 * Invokes slow-path host attention interrupt handling as appropriate.
12816 */
12817
12818 /* status of events with mailbox and link attention */
12819 status1 = phba->ha_copy & (HA_MBATT | HA_LATT | HA_ERATT);
12820
12821 /* status of events with ELS ring */
12822 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_ELS_RING)));
12823 status2 >>= (4*LPFC_ELS_RING);
12824
12825 if (status1 || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040012826 sp_irq_rc = lpfc_sli_sp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040012827 else
12828 sp_irq_rc = IRQ_NONE;
12829
12830 /*
12831 * Invoke fast-path host attention interrupt handling as appropriate.
12832 */
12833
12834 /* status of events with FCP ring */
12835 status1 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_FCP_RING)));
12836 status1 >>= (4*LPFC_FCP_RING);
12837
12838 /* status of events with extra ring */
12839 if (phba->cfg_multi_ring_support == 2) {
12840 status2 = (phba->ha_copy & (HA_RXMASK << (4*LPFC_EXTRA_RING)));
12841 status2 >>= (4*LPFC_EXTRA_RING);
12842 } else
12843 status2 = 0;
12844
12845 if ((status1 & HA_RXMASK) || (status2 & HA_RXMASK))
James Smart3772a992009-05-22 14:50:54 -040012846 fp_irq_rc = lpfc_sli_fp_intr_handler(irq, dev_id);
James Smart93996272008-08-24 21:50:30 -040012847 else
12848 fp_irq_rc = IRQ_NONE;
12849
12850 /* Return device-level interrupt handling status */
12851 return (sp_irq_rc == IRQ_HANDLED) ? sp_irq_rc : fp_irq_rc;
James Smart3772a992009-05-22 14:50:54 -040012852} /* lpfc_sli_intr_handler */
James Smart4f774512009-05-22 14:52:35 -040012853
12854/**
James Smart4f774512009-05-22 14:52:35 -040012855 * lpfc_sli4_els_xri_abort_event_proc - Process els xri abort event
12856 * @phba: pointer to lpfc hba data structure.
12857 *
12858 * This routine is invoked by the worker thread to process all the pending
12859 * SLI4 els abort xri events.
12860 **/
12861void lpfc_sli4_els_xri_abort_event_proc(struct lpfc_hba *phba)
12862{
12863 struct lpfc_cq_event *cq_event;
12864
12865 /* First, declare the els xri abort event has been handled */
12866 spin_lock_irq(&phba->hbalock);
12867 phba->hba_flag &= ~ELS_XRI_ABORT_EVENT;
12868 spin_unlock_irq(&phba->hbalock);
12869 /* Now, handle all the els xri abort events */
12870 while (!list_empty(&phba->sli4_hba.sp_els_xri_aborted_work_queue)) {
12871 /* Get the first event from the head of the event queue */
12872 spin_lock_irq(&phba->hbalock);
12873 list_remove_head(&phba->sli4_hba.sp_els_xri_aborted_work_queue,
12874 cq_event, struct lpfc_cq_event, list);
12875 spin_unlock_irq(&phba->hbalock);
12876 /* Notify aborted XRI for ELS work queue */
12877 lpfc_sli4_els_xri_aborted(phba, &cq_event->cqe.wcqe_axri);
12878 /* Free the event processed back to the free pool */
12879 lpfc_sli4_cq_event_release(phba, cq_event);
12880 }
12881}
12882
James Smart341af102010-01-26 23:07:37 -050012883/**
12884 * lpfc_sli4_iocb_param_transfer - Transfer pIocbOut and cmpl status to pIocbIn
12885 * @phba: pointer to lpfc hba data structure
12886 * @pIocbIn: pointer to the rspiocbq
12887 * @pIocbOut: pointer to the cmdiocbq
12888 * @wcqe: pointer to the complete wcqe
12889 *
12890 * This routine transfers the fields of a command iocbq to a response iocbq
12891 * by copying all the IOCB fields from command iocbq and transferring the
12892 * completion status information from the complete wcqe.
12893 **/
James Smart4f774512009-05-22 14:52:35 -040012894static void
James Smart341af102010-01-26 23:07:37 -050012895lpfc_sli4_iocb_param_transfer(struct lpfc_hba *phba,
12896 struct lpfc_iocbq *pIocbIn,
James Smart4f774512009-05-22 14:52:35 -040012897 struct lpfc_iocbq *pIocbOut,
12898 struct lpfc_wcqe_complete *wcqe)
12899{
James Smartaf227412013-10-10 12:23:10 -040012900 int numBdes, i;
James Smart341af102010-01-26 23:07:37 -050012901 unsigned long iflags;
James Smartaf227412013-10-10 12:23:10 -040012902 uint32_t status, max_response;
12903 struct lpfc_dmabuf *dmabuf;
12904 struct ulp_bde64 *bpl, bde;
James Smart4f774512009-05-22 14:52:35 -040012905 size_t offset = offsetof(struct lpfc_iocbq, iocb);
12906
12907 memcpy((char *)pIocbIn + offset, (char *)pIocbOut + offset,
12908 sizeof(struct lpfc_iocbq) - offset);
James Smart4f774512009-05-22 14:52:35 -040012909 /* Map WCQE parameters into irspiocb parameters */
James Smartacd68592012-01-18 16:25:09 -050012910 status = bf_get(lpfc_wcqe_c_status, wcqe);
12911 pIocbIn->iocb.ulpStatus = (status & LPFC_IOCB_STATUS_MASK);
James Smart4f774512009-05-22 14:52:35 -040012912 if (pIocbOut->iocb_flag & LPFC_IO_FCP)
12913 if (pIocbIn->iocb.ulpStatus == IOSTAT_FCP_RSP_ERROR)
12914 pIocbIn->iocb.un.fcpi.fcpi_parm =
12915 pIocbOut->iocb.un.fcpi.fcpi_parm -
12916 wcqe->total_data_placed;
12917 else
12918 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smart695a8142010-01-26 23:08:03 -050012919 else {
James Smart4f774512009-05-22 14:52:35 -040012920 pIocbIn->iocb.un.ulpWord[4] = wcqe->parameter;
James Smartaf227412013-10-10 12:23:10 -040012921 switch (pIocbOut->iocb.ulpCommand) {
12922 case CMD_ELS_REQUEST64_CR:
12923 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
12924 bpl = (struct ulp_bde64 *)dmabuf->virt;
12925 bde.tus.w = le32_to_cpu(bpl[1].tus.w);
12926 max_response = bde.tus.f.bdeSize;
12927 break;
12928 case CMD_GEN_REQUEST64_CR:
12929 max_response = 0;
12930 if (!pIocbOut->context3)
12931 break;
12932 numBdes = pIocbOut->iocb.un.genreq64.bdl.bdeSize/
12933 sizeof(struct ulp_bde64);
12934 dmabuf = (struct lpfc_dmabuf *)pIocbOut->context3;
12935 bpl = (struct ulp_bde64 *)dmabuf->virt;
12936 for (i = 0; i < numBdes; i++) {
12937 bde.tus.w = le32_to_cpu(bpl[i].tus.w);
12938 if (bde.tus.f.bdeFlags != BUFF_TYPE_BDE_64)
12939 max_response += bde.tus.f.bdeSize;
12940 }
12941 break;
12942 default:
12943 max_response = wcqe->total_data_placed;
12944 break;
12945 }
12946 if (max_response < wcqe->total_data_placed)
12947 pIocbIn->iocb.un.genreq64.bdl.bdeSize = max_response;
12948 else
12949 pIocbIn->iocb.un.genreq64.bdl.bdeSize =
12950 wcqe->total_data_placed;
James Smart695a8142010-01-26 23:08:03 -050012951 }
James Smart341af102010-01-26 23:07:37 -050012952
James Smartacd68592012-01-18 16:25:09 -050012953 /* Convert BG errors for completion status */
12954 if (status == CQE_STATUS_DI_ERROR) {
12955 pIocbIn->iocb.ulpStatus = IOSTAT_LOCAL_REJECT;
12956
12957 if (bf_get(lpfc_wcqe_c_bg_edir, wcqe))
12958 pIocbIn->iocb.un.ulpWord[4] = IOERR_RX_DMA_FAILED;
12959 else
12960 pIocbIn->iocb.un.ulpWord[4] = IOERR_TX_DMA_FAILED;
12961
12962 pIocbIn->iocb.unsli3.sli3_bg.bgstat = 0;
12963 if (bf_get(lpfc_wcqe_c_bg_ge, wcqe)) /* Guard Check failed */
12964 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
12965 BGS_GUARD_ERR_MASK;
12966 if (bf_get(lpfc_wcqe_c_bg_ae, wcqe)) /* App Tag Check failed */
12967 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
12968 BGS_APPTAG_ERR_MASK;
12969 if (bf_get(lpfc_wcqe_c_bg_re, wcqe)) /* Ref Tag Check failed */
12970 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
12971 BGS_REFTAG_ERR_MASK;
12972
12973 /* Check to see if there was any good data before the error */
12974 if (bf_get(lpfc_wcqe_c_bg_tdpv, wcqe)) {
12975 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
12976 BGS_HI_WATER_MARK_PRESENT_MASK;
12977 pIocbIn->iocb.unsli3.sli3_bg.bghm =
12978 wcqe->total_data_placed;
12979 }
12980
12981 /*
12982 * Set ALL the error bits to indicate we don't know what
12983 * type of error it is.
12984 */
12985 if (!pIocbIn->iocb.unsli3.sli3_bg.bgstat)
12986 pIocbIn->iocb.unsli3.sli3_bg.bgstat |=
12987 (BGS_REFTAG_ERR_MASK | BGS_APPTAG_ERR_MASK |
12988 BGS_GUARD_ERR_MASK);
12989 }
12990
James Smart341af102010-01-26 23:07:37 -050012991 /* Pick up HBA exchange busy condition */
12992 if (bf_get(lpfc_wcqe_c_xb, wcqe)) {
12993 spin_lock_irqsave(&phba->hbalock, iflags);
12994 pIocbIn->iocb_flag |= LPFC_EXCHANGE_BUSY;
12995 spin_unlock_irqrestore(&phba->hbalock, iflags);
12996 }
James Smart4f774512009-05-22 14:52:35 -040012997}
12998
12999/**
James Smart45ed1192009-10-02 15:17:02 -040013000 * lpfc_sli4_els_wcqe_to_rspiocbq - Get response iocbq from els wcqe
13001 * @phba: Pointer to HBA context object.
13002 * @wcqe: Pointer to work-queue completion queue entry.
13003 *
13004 * This routine handles an ELS work-queue completion event and construct
13005 * a pseudo response ELS IODBQ from the SLI4 ELS WCQE for the common
13006 * discovery engine to handle.
13007 *
13008 * Return: Pointer to the receive IOCBQ, NULL otherwise.
13009 **/
13010static struct lpfc_iocbq *
13011lpfc_sli4_els_wcqe_to_rspiocbq(struct lpfc_hba *phba,
13012 struct lpfc_iocbq *irspiocbq)
13013{
James Smart895427b2017-02-12 13:52:30 -080013014 struct lpfc_sli_ring *pring;
James Smart45ed1192009-10-02 15:17:02 -040013015 struct lpfc_iocbq *cmdiocbq;
13016 struct lpfc_wcqe_complete *wcqe;
13017 unsigned long iflags;
13018
James Smart895427b2017-02-12 13:52:30 -080013019 pring = lpfc_phba_elsring(phba);
Dick Kennedy1234a6d2017-09-29 17:34:29 -070013020 if (unlikely(!pring))
13021 return NULL;
James Smart895427b2017-02-12 13:52:30 -080013022
James Smart45ed1192009-10-02 15:17:02 -040013023 wcqe = &irspiocbq->cq_event.cqe.wcqe_cmpl;
James Smart45ed1192009-10-02 15:17:02 -040013024 pring->stats.iocb_event++;
13025 /* Look up the ELS command IOCB and create pseudo response IOCB */
13026 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
13027 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart45ed1192009-10-02 15:17:02 -040013028 if (unlikely(!cmdiocbq)) {
13029 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
13030 "0386 ELS complete with no corresponding "
Dick Kennedy401bb412017-09-29 17:34:28 -070013031 "cmdiocb: 0x%x 0x%x 0x%x 0x%x\n",
13032 wcqe->word0, wcqe->total_data_placed,
13033 wcqe->parameter, wcqe->word3);
James Smart45ed1192009-10-02 15:17:02 -040013034 lpfc_sli_release_iocbq(phba, irspiocbq);
13035 return NULL;
13036 }
13037
James Smarte2a8be52019-05-06 17:26:47 -070013038 spin_lock_irqsave(&pring->ring_lock, iflags);
Dick Kennedy401bb412017-09-29 17:34:28 -070013039 /* Put the iocb back on the txcmplq */
13040 lpfc_sli_ringtxcmpl_put(phba, pring, cmdiocbq);
13041 spin_unlock_irqrestore(&pring->ring_lock, iflags);
13042
James Smart45ed1192009-10-02 15:17:02 -040013043 /* Fake the irspiocbq and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050013044 lpfc_sli4_iocb_param_transfer(phba, irspiocbq, cmdiocbq, wcqe);
James Smart45ed1192009-10-02 15:17:02 -040013045
13046 return irspiocbq;
13047}
13048
James Smart8a5ca102017-11-20 16:00:30 -080013049inline struct lpfc_cq_event *
13050lpfc_cq_event_setup(struct lpfc_hba *phba, void *entry, int size)
13051{
13052 struct lpfc_cq_event *cq_event;
13053
13054 /* Allocate a new internal CQ_EVENT entry */
13055 cq_event = lpfc_sli4_cq_event_alloc(phba);
13056 if (!cq_event) {
13057 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13058 "0602 Failed to alloc CQ_EVENT entry\n");
13059 return NULL;
13060 }
13061
13062 /* Move the CQE into the event */
13063 memcpy(&cq_event->cqe, entry, size);
13064 return cq_event;
13065}
13066
James Smart45ed1192009-10-02 15:17:02 -040013067/**
James Smart04c68492009-05-22 14:52:52 -040013068 * lpfc_sli4_sp_handle_async_event - Handle an asynchroous event
13069 * @phba: Pointer to HBA context object.
13070 * @cqe: Pointer to mailbox completion queue entry.
13071 *
13072 * This routine process a mailbox completion queue entry with asynchrous
13073 * event.
13074 *
13075 * Return: true if work posted to worker thread, otherwise false.
13076 **/
13077static bool
13078lpfc_sli4_sp_handle_async_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
13079{
13080 struct lpfc_cq_event *cq_event;
13081 unsigned long iflags;
13082
13083 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
13084 "0392 Async Event: word0:x%x, word1:x%x, "
13085 "word2:x%x, word3:x%x\n", mcqe->word0,
13086 mcqe->mcqe_tag0, mcqe->mcqe_tag1, mcqe->trailer);
13087
James Smart8a5ca102017-11-20 16:00:30 -080013088 cq_event = lpfc_cq_event_setup(phba, mcqe, sizeof(struct lpfc_mcqe));
13089 if (!cq_event)
James Smart04c68492009-05-22 14:52:52 -040013090 return false;
James Smart04c68492009-05-22 14:52:52 -040013091 spin_lock_irqsave(&phba->hbalock, iflags);
13092 list_add_tail(&cq_event->list, &phba->sli4_hba.sp_asynce_work_queue);
13093 /* Set the async event flag */
13094 phba->hba_flag |= ASYNC_EVENT;
13095 spin_unlock_irqrestore(&phba->hbalock, iflags);
13096
13097 return true;
13098}
13099
13100/**
13101 * lpfc_sli4_sp_handle_mbox_event - Handle a mailbox completion event
13102 * @phba: Pointer to HBA context object.
13103 * @cqe: Pointer to mailbox completion queue entry.
13104 *
13105 * This routine process a mailbox completion queue entry with mailbox
13106 * completion event.
13107 *
13108 * Return: true if work posted to worker thread, otherwise false.
13109 **/
13110static bool
13111lpfc_sli4_sp_handle_mbox_event(struct lpfc_hba *phba, struct lpfc_mcqe *mcqe)
13112{
13113 uint32_t mcqe_status;
13114 MAILBOX_t *mbox, *pmbox;
13115 struct lpfc_mqe *mqe;
13116 struct lpfc_vport *vport;
13117 struct lpfc_nodelist *ndlp;
13118 struct lpfc_dmabuf *mp;
13119 unsigned long iflags;
13120 LPFC_MBOXQ_t *pmb;
13121 bool workposted = false;
13122 int rc;
13123
13124 /* If not a mailbox complete MCQE, out by checking mailbox consume */
13125 if (!bf_get(lpfc_trailer_completed, mcqe))
13126 goto out_no_mqe_complete;
13127
13128 /* Get the reference to the active mbox command */
13129 spin_lock_irqsave(&phba->hbalock, iflags);
13130 pmb = phba->sli.mbox_active;
13131 if (unlikely(!pmb)) {
13132 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX,
13133 "1832 No pending MBOX command to handle\n");
13134 spin_unlock_irqrestore(&phba->hbalock, iflags);
13135 goto out_no_mqe_complete;
13136 }
13137 spin_unlock_irqrestore(&phba->hbalock, iflags);
13138 mqe = &pmb->u.mqe;
13139 pmbox = (MAILBOX_t *)&pmb->u.mqe;
13140 mbox = phba->mbox;
13141 vport = pmb->vport;
13142
13143 /* Reset heartbeat timer */
13144 phba->last_completion_time = jiffies;
13145 del_timer(&phba->sli.mbox_tmo);
13146
13147 /* Move mbox data to caller's mailbox region, do endian swapping */
13148 if (pmb->mbox_cmpl && mbox)
James Smart48f8fdb2018-05-04 20:37:51 -070013149 lpfc_sli4_pcimem_bcopy(mbox, mqe, sizeof(struct lpfc_mqe));
James Smart04c68492009-05-22 14:52:52 -040013150
James Smart73d91e52011-10-10 21:32:10 -040013151 /*
13152 * For mcqe errors, conditionally move a modified error code to
13153 * the mbox so that the error will not be missed.
13154 */
13155 mcqe_status = bf_get(lpfc_mcqe_status, mcqe);
13156 if (mcqe_status != MB_CQE_STATUS_SUCCESS) {
13157 if (bf_get(lpfc_mqe_status, mqe) == MBX_SUCCESS)
13158 bf_set(lpfc_mqe_status, mqe,
13159 (LPFC_MBX_ERROR_RANGE | mcqe_status));
13160 }
James Smart04c68492009-05-22 14:52:52 -040013161 if (pmb->mbox_flag & LPFC_MBX_IMED_UNREG) {
13162 pmb->mbox_flag &= ~LPFC_MBX_IMED_UNREG;
13163 lpfc_debugfs_disc_trc(vport, LPFC_DISC_TRC_MBOX_VPORT,
13164 "MBOX dflt rpi: status:x%x rpi:x%x",
13165 mcqe_status,
13166 pmbox->un.varWords[0], 0);
13167 if (mcqe_status == MB_CQE_STATUS_SUCCESS) {
James Smart3e1f0712018-11-29 16:09:29 -080013168 mp = (struct lpfc_dmabuf *)(pmb->ctx_buf);
13169 ndlp = (struct lpfc_nodelist *)pmb->ctx_ndlp;
James Smart04c68492009-05-22 14:52:52 -040013170 /* Reg_LOGIN of dflt RPI was successful. Now lets get
13171 * RID of the PPI using the same mbox buffer.
13172 */
13173 lpfc_unreg_login(phba, vport->vpi,
13174 pmbox->un.varWords[0], pmb);
13175 pmb->mbox_cmpl = lpfc_mbx_cmpl_dflt_rpi;
James Smart3e1f0712018-11-29 16:09:29 -080013176 pmb->ctx_buf = mp;
13177 pmb->ctx_ndlp = ndlp;
James Smart04c68492009-05-22 14:52:52 -040013178 pmb->vport = vport;
13179 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_NOWAIT);
13180 if (rc != MBX_BUSY)
13181 lpfc_printf_log(phba, KERN_ERR, LOG_MBOX |
13182 LOG_SLI, "0385 rc should "
13183 "have been MBX_BUSY\n");
13184 if (rc != MBX_NOT_FINISHED)
13185 goto send_current_mbox;
13186 }
13187 }
13188 spin_lock_irqsave(&phba->pport->work_port_lock, iflags);
13189 phba->pport->work_port_events &= ~WORKER_MBOX_TMO;
13190 spin_unlock_irqrestore(&phba->pport->work_port_lock, iflags);
13191
13192 /* There is mailbox completion work to do */
13193 spin_lock_irqsave(&phba->hbalock, iflags);
13194 __lpfc_mbox_cmpl_put(phba, pmb);
13195 phba->work_ha |= HA_MBATT;
13196 spin_unlock_irqrestore(&phba->hbalock, iflags);
13197 workposted = true;
13198
13199send_current_mbox:
13200 spin_lock_irqsave(&phba->hbalock, iflags);
13201 /* Release the mailbox command posting token */
13202 phba->sli.sli_flag &= ~LPFC_SLI_MBOX_ACTIVE;
13203 /* Setting active mailbox pointer need to be in sync to flag clear */
13204 phba->sli.mbox_active = NULL;
James Smart07b85822019-09-21 20:58:53 -070013205 if (bf_get(lpfc_trailer_consumed, mcqe))
13206 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
James Smart04c68492009-05-22 14:52:52 -040013207 spin_unlock_irqrestore(&phba->hbalock, iflags);
13208 /* Wake up worker thread to post the next pending mailbox command */
13209 lpfc_worker_wake_up(phba);
James Smart07b85822019-09-21 20:58:53 -070013210 return workposted;
13211
James Smart04c68492009-05-22 14:52:52 -040013212out_no_mqe_complete:
James Smart07b85822019-09-21 20:58:53 -070013213 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart04c68492009-05-22 14:52:52 -040013214 if (bf_get(lpfc_trailer_consumed, mcqe))
13215 lpfc_sli4_mq_release(phba->sli4_hba.mbx_wq);
James Smart07b85822019-09-21 20:58:53 -070013216 spin_unlock_irqrestore(&phba->hbalock, iflags);
13217 return false;
James Smart04c68492009-05-22 14:52:52 -040013218}
13219
13220/**
13221 * lpfc_sli4_sp_handle_mcqe - Process a mailbox completion queue entry
13222 * @phba: Pointer to HBA context object.
13223 * @cqe: Pointer to mailbox completion queue entry.
13224 *
13225 * This routine process a mailbox completion queue entry, it invokes the
13226 * proper mailbox complete handling or asynchrous event handling routine
13227 * according to the MCQE's async bit.
13228 *
13229 * Return: true if work posted to worker thread, otherwise false.
13230 **/
13231static bool
James Smart32517fc2019-01-28 11:14:33 -080013232lpfc_sli4_sp_handle_mcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
13233 struct lpfc_cqe *cqe)
James Smart04c68492009-05-22 14:52:52 -040013234{
13235 struct lpfc_mcqe mcqe;
13236 bool workposted;
13237
James Smart32517fc2019-01-28 11:14:33 -080013238 cq->CQ_mbox++;
13239
James Smart04c68492009-05-22 14:52:52 -040013240 /* Copy the mailbox MCQE and convert endian order as needed */
James Smart48f8fdb2018-05-04 20:37:51 -070013241 lpfc_sli4_pcimem_bcopy(cqe, &mcqe, sizeof(struct lpfc_mcqe));
James Smart04c68492009-05-22 14:52:52 -040013242
13243 /* Invoke the proper event handling routine */
13244 if (!bf_get(lpfc_trailer_async, &mcqe))
13245 workposted = lpfc_sli4_sp_handle_mbox_event(phba, &mcqe);
13246 else
13247 workposted = lpfc_sli4_sp_handle_async_event(phba, &mcqe);
13248 return workposted;
13249}
13250
13251/**
James Smart4f774512009-05-22 14:52:35 -040013252 * lpfc_sli4_sp_handle_els_wcqe - Handle els work-queue completion event
13253 * @phba: Pointer to HBA context object.
James Smart2a76a282012-08-03 12:35:54 -040013254 * @cq: Pointer to associated CQ
James Smart4f774512009-05-22 14:52:35 -040013255 * @wcqe: Pointer to work-queue completion queue entry.
13256 *
13257 * This routine handles an ELS work-queue completion event.
13258 *
13259 * Return: true if work posted to worker thread, otherwise false.
13260 **/
13261static bool
James Smart2a76a282012-08-03 12:35:54 -040013262lpfc_sli4_sp_handle_els_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040013263 struct lpfc_wcqe_complete *wcqe)
13264{
James Smart4f774512009-05-22 14:52:35 -040013265 struct lpfc_iocbq *irspiocbq;
13266 unsigned long iflags;
James Smart2a76a282012-08-03 12:35:54 -040013267 struct lpfc_sli_ring *pring = cq->pring;
James Smart0e9bb8d2013-03-01 16:35:12 -050013268 int txq_cnt = 0;
13269 int txcmplq_cnt = 0;
James Smart4f774512009-05-22 14:52:35 -040013270
James Smart11f0e342018-05-04 20:37:57 -070013271 /* Check for response status */
13272 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
13273 /* Log the error status */
13274 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
13275 "0357 ELS CQE error: status=x%x: "
13276 "CQE: %08x %08x %08x %08x\n",
13277 bf_get(lpfc_wcqe_c_status, wcqe),
13278 wcqe->word0, wcqe->total_data_placed,
13279 wcqe->parameter, wcqe->word3);
13280 }
13281
James Smart45ed1192009-10-02 15:17:02 -040013282 /* Get an irspiocbq for later ELS response processing use */
James Smart4f774512009-05-22 14:52:35 -040013283 irspiocbq = lpfc_sli_get_iocbq(phba);
13284 if (!irspiocbq) {
James Smart0e9bb8d2013-03-01 16:35:12 -050013285 if (!list_empty(&pring->txq))
13286 txq_cnt++;
13287 if (!list_empty(&pring->txcmplq))
13288 txcmplq_cnt++;
James Smart4f774512009-05-22 14:52:35 -040013289 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart2a9bf3d2010-06-07 15:24:45 -040013290 "0387 NO IOCBQ data: txq_cnt=%d iocb_cnt=%d "
James Smartff349bc2019-09-21 20:59:05 -070013291 "els_txcmplq_cnt=%d\n",
James Smart0e9bb8d2013-03-01 16:35:12 -050013292 txq_cnt, phba->iocb_cnt,
James Smart0e9bb8d2013-03-01 16:35:12 -050013293 txcmplq_cnt);
James Smart45ed1192009-10-02 15:17:02 -040013294 return false;
James Smart4f774512009-05-22 14:52:35 -040013295 }
James Smart4f774512009-05-22 14:52:35 -040013296
James Smart45ed1192009-10-02 15:17:02 -040013297 /* Save off the slow-path queue event for work thread to process */
13298 memcpy(&irspiocbq->cq_event.cqe.wcqe_cmpl, wcqe, sizeof(*wcqe));
James Smart4f774512009-05-22 14:52:35 -040013299 spin_lock_irqsave(&phba->hbalock, iflags);
James Smart4d9ab992009-10-02 15:16:39 -040013300 list_add_tail(&irspiocbq->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040013301 &phba->sli4_hba.sp_queue_event);
13302 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4f774512009-05-22 14:52:35 -040013303 spin_unlock_irqrestore(&phba->hbalock, iflags);
James Smart4f774512009-05-22 14:52:35 -040013304
James Smart45ed1192009-10-02 15:17:02 -040013305 return true;
James Smart4f774512009-05-22 14:52:35 -040013306}
13307
13308/**
13309 * lpfc_sli4_sp_handle_rel_wcqe - Handle slow-path WQ entry consumed event
13310 * @phba: Pointer to HBA context object.
13311 * @wcqe: Pointer to work-queue completion queue entry.
13312 *
Masahiro Yamada3f8b6fb2017-02-27 14:29:25 -080013313 * This routine handles slow-path WQ entry consumed event by invoking the
James Smart4f774512009-05-22 14:52:35 -040013314 * proper WQ release routine to the slow-path WQ.
13315 **/
13316static void
13317lpfc_sli4_sp_handle_rel_wcqe(struct lpfc_hba *phba,
13318 struct lpfc_wcqe_release *wcqe)
13319{
James Smart2e90f4b2011-12-13 13:22:37 -050013320 /* sanity check on queue memory */
13321 if (unlikely(!phba->sli4_hba.els_wq))
13322 return;
James Smart4f774512009-05-22 14:52:35 -040013323 /* Check for the slow-path ELS work queue */
13324 if (bf_get(lpfc_wcqe_r_wq_id, wcqe) == phba->sli4_hba.els_wq->queue_id)
13325 lpfc_sli4_wq_release(phba->sli4_hba.els_wq,
13326 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
13327 else
13328 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
13329 "2579 Slow-path wqe consume event carries "
13330 "miss-matched qid: wcqe-qid=x%x, sp-qid=x%x\n",
13331 bf_get(lpfc_wcqe_r_wqe_index, wcqe),
13332 phba->sli4_hba.els_wq->queue_id);
13333}
13334
13335/**
13336 * lpfc_sli4_sp_handle_abort_xri_wcqe - Handle a xri abort event
13337 * @phba: Pointer to HBA context object.
13338 * @cq: Pointer to a WQ completion queue.
13339 * @wcqe: Pointer to work-queue completion queue entry.
13340 *
13341 * This routine handles an XRI abort event.
13342 *
13343 * Return: true if work posted to worker thread, otherwise false.
13344 **/
13345static bool
13346lpfc_sli4_sp_handle_abort_xri_wcqe(struct lpfc_hba *phba,
13347 struct lpfc_queue *cq,
13348 struct sli4_wcqe_xri_aborted *wcqe)
13349{
13350 bool workposted = false;
13351 struct lpfc_cq_event *cq_event;
13352 unsigned long iflags;
13353
James Smart4f774512009-05-22 14:52:35 -040013354 switch (cq->subtype) {
James Smartc00f62e2019-08-14 16:57:11 -070013355 case LPFC_IO:
13356 lpfc_sli4_io_xri_aborted(phba, wcqe, cq->hdwq);
13357 if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
13358 /* Notify aborted XRI for NVME work queue */
13359 if (phba->nvmet_support)
13360 lpfc_sli4_nvmet_xri_aborted(phba, wcqe);
13361 }
James Smart5e5b5112019-01-28 11:14:22 -080013362 workposted = false;
James Smart4f774512009-05-22 14:52:35 -040013363 break;
James Smart422c4cb2017-11-20 16:00:32 -080013364 case LPFC_NVME_LS: /* NVME LS uses ELS resources */
James Smart4f774512009-05-22 14:52:35 -040013365 case LPFC_ELS:
James Smart8a5ca102017-11-20 16:00:30 -080013366 cq_event = lpfc_cq_event_setup(
13367 phba, wcqe, sizeof(struct sli4_wcqe_xri_aborted));
13368 if (!cq_event)
13369 return false;
James Smart5e5b5112019-01-28 11:14:22 -080013370 cq_event->hdwq = cq->hdwq;
James Smart4f774512009-05-22 14:52:35 -040013371 spin_lock_irqsave(&phba->hbalock, iflags);
13372 list_add_tail(&cq_event->list,
13373 &phba->sli4_hba.sp_els_xri_aborted_work_queue);
13374 /* Set the els xri abort event flag */
13375 phba->hba_flag |= ELS_XRI_ABORT_EVENT;
13376 spin_unlock_irqrestore(&phba->hbalock, iflags);
13377 workposted = true;
13378 break;
13379 default:
13380 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart318083a2017-03-04 09:30:30 -080013381 "0603 Invalid CQ subtype %d: "
13382 "%08x %08x %08x %08x\n",
13383 cq->subtype, wcqe->word0, wcqe->parameter,
13384 wcqe->word2, wcqe->word3);
James Smart4f774512009-05-22 14:52:35 -040013385 workposted = false;
13386 break;
13387 }
13388 return workposted;
13389}
13390
James Smarte817e5d2018-12-13 15:17:53 -080013391#define FC_RCTL_MDS_DIAGS 0xF4
13392
James Smart4f774512009-05-22 14:52:35 -040013393/**
James Smart4d9ab992009-10-02 15:16:39 -040013394 * lpfc_sli4_sp_handle_rcqe - Process a receive-queue completion queue entry
James Smart4f774512009-05-22 14:52:35 -040013395 * @phba: Pointer to HBA context object.
James Smart4d9ab992009-10-02 15:16:39 -040013396 * @rcqe: Pointer to receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040013397 *
James Smart4d9ab992009-10-02 15:16:39 -040013398 * This routine process a receive-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040013399 *
13400 * Return: true if work posted to worker thread, otherwise false.
13401 **/
13402static bool
James Smart4d9ab992009-10-02 15:16:39 -040013403lpfc_sli4_sp_handle_rcqe(struct lpfc_hba *phba, struct lpfc_rcqe *rcqe)
13404{
13405 bool workposted = false;
James Smarte817e5d2018-12-13 15:17:53 -080013406 struct fc_frame_header *fc_hdr;
James Smart4d9ab992009-10-02 15:16:39 -040013407 struct lpfc_queue *hrq = phba->sli4_hba.hdr_rq;
13408 struct lpfc_queue *drq = phba->sli4_hba.dat_rq;
James Smart547077a2017-05-15 15:20:40 -070013409 struct lpfc_nvmet_tgtport *tgtp;
James Smart4d9ab992009-10-02 15:16:39 -040013410 struct hbq_dmabuf *dma_buf;
James Smart7851fe22011-07-22 18:36:52 -040013411 uint32_t status, rq_id;
James Smart4d9ab992009-10-02 15:16:39 -040013412 unsigned long iflags;
13413
James Smart2e90f4b2011-12-13 13:22:37 -050013414 /* sanity check on queue memory */
13415 if (unlikely(!hrq) || unlikely(!drq))
13416 return workposted;
13417
James Smart7851fe22011-07-22 18:36:52 -040013418 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
13419 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
13420 else
13421 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
13422 if (rq_id != hrq->queue_id)
James Smart4d9ab992009-10-02 15:16:39 -040013423 goto out;
13424
13425 status = bf_get(lpfc_rcqe_status, rcqe);
13426 switch (status) {
13427 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
13428 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13429 "2537 Receive Frame Truncated!!\n");
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060013430 /* fall through */
James Smart4d9ab992009-10-02 15:16:39 -040013431 case FC_STATUS_RQ_SUCCESS:
13432 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartcbc5de12017-12-08 17:18:04 -080013433 lpfc_sli4_rq_release(hrq, drq);
James Smart4d9ab992009-10-02 15:16:39 -040013434 dma_buf = lpfc_sli_hbqbuf_get(&phba->hbqs[0].hbq_buffer_list);
13435 if (!dma_buf) {
James Smartb84daac2012-08-03 12:35:13 -040013436 hrq->RQ_no_buf_found++;
James Smart4d9ab992009-10-02 15:16:39 -040013437 spin_unlock_irqrestore(&phba->hbalock, iflags);
13438 goto out;
13439 }
James Smartb84daac2012-08-03 12:35:13 -040013440 hrq->RQ_rcv_buf++;
James Smart547077a2017-05-15 15:20:40 -070013441 hrq->RQ_buf_posted--;
James Smart4d9ab992009-10-02 15:16:39 -040013442 memcpy(&dma_buf->cq_event.cqe.rcqe_cmpl, rcqe, sizeof(*rcqe));
James Smart895427b2017-02-12 13:52:30 -080013443
James Smarte817e5d2018-12-13 15:17:53 -080013444 fc_hdr = (struct fc_frame_header *)dma_buf->hbuf.virt;
13445
13446 if (fc_hdr->fh_r_ctl == FC_RCTL_MDS_DIAGS ||
13447 fc_hdr->fh_r_ctl == FC_RCTL_DD_UNSOL_DATA) {
13448 spin_unlock_irqrestore(&phba->hbalock, iflags);
13449 /* Handle MDS Loopback frames */
13450 lpfc_sli4_handle_mds_loopback(phba->pport, dma_buf);
13451 break;
13452 }
13453
13454 /* save off the frame for the work thread to process */
James Smart4d9ab992009-10-02 15:16:39 -040013455 list_add_tail(&dma_buf->cq_event.list,
James Smart45ed1192009-10-02 15:17:02 -040013456 &phba->sli4_hba.sp_queue_event);
James Smart4d9ab992009-10-02 15:16:39 -040013457 /* Frame received */
James Smart45ed1192009-10-02 15:17:02 -040013458 phba->hba_flag |= HBA_SP_QUEUE_EVT;
James Smart4d9ab992009-10-02 15:16:39 -040013459 spin_unlock_irqrestore(&phba->hbalock, iflags);
13460 workposted = true;
13461 break;
James Smart4d9ab992009-10-02 15:16:39 -040013462 case FC_STATUS_INSUFF_BUF_FRM_DISC:
James Smart547077a2017-05-15 15:20:40 -070013463 if (phba->nvmet_support) {
13464 tgtp = phba->targetport->private;
13465 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_NVME,
13466 "6402 RQE Error x%x, posted %d err_cnt "
13467 "%d: %x %x %x\n",
13468 status, hrq->RQ_buf_posted,
13469 hrq->RQ_no_posted_buf,
13470 atomic_read(&tgtp->rcv_fcp_cmd_in),
13471 atomic_read(&tgtp->rcv_fcp_cmd_out),
13472 atomic_read(&tgtp->xmt_fcp_release));
13473 }
13474 /* fallthrough */
13475
13476 case FC_STATUS_INSUFF_BUF_NEED_BUF:
James Smartb84daac2012-08-03 12:35:13 -040013477 hrq->RQ_no_posted_buf++;
James Smart4d9ab992009-10-02 15:16:39 -040013478 /* Post more buffers if possible */
13479 spin_lock_irqsave(&phba->hbalock, iflags);
13480 phba->hba_flag |= HBA_POST_RECEIVE_BUFFER;
13481 spin_unlock_irqrestore(&phba->hbalock, iflags);
13482 workposted = true;
13483 break;
13484 }
13485out:
13486 return workposted;
James Smart4d9ab992009-10-02 15:16:39 -040013487}
13488
13489/**
13490 * lpfc_sli4_sp_handle_cqe - Process a slow path completion queue entry
13491 * @phba: Pointer to HBA context object.
13492 * @cq: Pointer to the completion queue.
James Smart32517fc2019-01-28 11:14:33 -080013493 * @cqe: Pointer to a completion queue entry.
James Smart4d9ab992009-10-02 15:16:39 -040013494 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030013495 * This routine process a slow-path work-queue or receive queue completion queue
James Smart4d9ab992009-10-02 15:16:39 -040013496 * entry.
13497 *
13498 * Return: true if work posted to worker thread, otherwise false.
13499 **/
13500static bool
13501lpfc_sli4_sp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040013502 struct lpfc_cqe *cqe)
13503{
James Smart45ed1192009-10-02 15:17:02 -040013504 struct lpfc_cqe cqevt;
James Smart4f774512009-05-22 14:52:35 -040013505 bool workposted = false;
13506
13507 /* Copy the work queue CQE and convert endian order if needed */
James Smart48f8fdb2018-05-04 20:37:51 -070013508 lpfc_sli4_pcimem_bcopy(cqe, &cqevt, sizeof(struct lpfc_cqe));
James Smart4f774512009-05-22 14:52:35 -040013509
13510 /* Check and process for different type of WCQE and dispatch */
James Smart45ed1192009-10-02 15:17:02 -040013511 switch (bf_get(lpfc_cqe_code, &cqevt)) {
James Smart4f774512009-05-22 14:52:35 -040013512 case CQE_CODE_COMPL_WQE:
James Smart45ed1192009-10-02 15:17:02 -040013513 /* Process the WQ/RQ complete event */
James Smartbc739052010-08-04 16:11:18 -040013514 phba->last_completion_time = jiffies;
James Smart2a76a282012-08-03 12:35:54 -040013515 workposted = lpfc_sli4_sp_handle_els_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040013516 (struct lpfc_wcqe_complete *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040013517 break;
13518 case CQE_CODE_RELEASE_WQE:
13519 /* Process the WQ release event */
13520 lpfc_sli4_sp_handle_rel_wcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040013521 (struct lpfc_wcqe_release *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040013522 break;
13523 case CQE_CODE_XRI_ABORTED:
13524 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040013525 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040013526 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
James Smart45ed1192009-10-02 15:17:02 -040013527 (struct sli4_wcqe_xri_aborted *)&cqevt);
James Smart4f774512009-05-22 14:52:35 -040013528 break;
James Smart4d9ab992009-10-02 15:16:39 -040013529 case CQE_CODE_RECEIVE:
James Smart7851fe22011-07-22 18:36:52 -040013530 case CQE_CODE_RECEIVE_V1:
James Smart4d9ab992009-10-02 15:16:39 -040013531 /* Process the RQ event */
James Smartbc739052010-08-04 16:11:18 -040013532 phba->last_completion_time = jiffies;
James Smart4d9ab992009-10-02 15:16:39 -040013533 workposted = lpfc_sli4_sp_handle_rcqe(phba,
James Smart45ed1192009-10-02 15:17:02 -040013534 (struct lpfc_rcqe *)&cqevt);
James Smart4d9ab992009-10-02 15:16:39 -040013535 break;
James Smart4f774512009-05-22 14:52:35 -040013536 default:
13537 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13538 "0388 Not a valid WCQE code: x%x\n",
James Smart45ed1192009-10-02 15:17:02 -040013539 bf_get(lpfc_cqe_code, &cqevt));
James Smart4f774512009-05-22 14:52:35 -040013540 break;
13541 }
13542 return workposted;
13543}
13544
13545/**
James Smart4f774512009-05-22 14:52:35 -040013546 * lpfc_sli4_sp_handle_eqe - Process a slow-path event queue entry
13547 * @phba: Pointer to HBA context object.
13548 * @eqe: Pointer to fast-path event queue entry.
13549 *
13550 * This routine process a event queue entry from the slow-path event queue.
13551 * It will check the MajorCode and MinorCode to determine this is for a
13552 * completion event on a completion queue, if not, an error shall be logged
13553 * and just return. Otherwise, it will get to the corresponding completion
13554 * queue and process all the entries on that completion queue, rearm the
13555 * completion queue, and then return.
13556 *
13557 **/
Dick Kennedyf485c182017-09-29 17:34:34 -070013558static void
James Smart67d12732012-08-03 12:36:13 -040013559lpfc_sli4_sp_handle_eqe(struct lpfc_hba *phba, struct lpfc_eqe *eqe,
13560 struct lpfc_queue *speq)
James Smart4f774512009-05-22 14:52:35 -040013561{
James Smart67d12732012-08-03 12:36:13 -040013562 struct lpfc_queue *cq = NULL, *childq;
James Smart4f774512009-05-22 14:52:35 -040013563 uint16_t cqid;
13564
James Smart4f774512009-05-22 14:52:35 -040013565 /* Get the reference to the corresponding CQ */
James Smartcb5172e2010-03-15 11:25:07 -040013566 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
James Smart4f774512009-05-22 14:52:35 -040013567
James Smart4f774512009-05-22 14:52:35 -040013568 list_for_each_entry(childq, &speq->child_list, list) {
13569 if (childq->queue_id == cqid) {
13570 cq = childq;
13571 break;
13572 }
13573 }
13574 if (unlikely(!cq)) {
James Smart75baf692010-06-08 18:31:21 -040013575 if (phba->sli.sli_flag & LPFC_SLI_ACTIVE)
13576 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13577 "0365 Slow-path CQ identifier "
13578 "(%d) does not exist\n", cqid);
Dick Kennedyf485c182017-09-29 17:34:34 -070013579 return;
James Smart4f774512009-05-22 14:52:35 -040013580 }
13581
James Smart895427b2017-02-12 13:52:30 -080013582 /* Save EQ associated with this CQ */
13583 cq->assoc_qp = speq;
13584
James Smart6a828b02019-01-28 11:14:31 -080013585 if (!queue_work_on(cq->chann, phba->wq, &cq->spwork))
Dick Kennedyf485c182017-09-29 17:34:34 -070013586 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13587 "0390 Cannot schedule soft IRQ "
13588 "for CQ eqcqid=%d, cqid=%d on CPU %d\n",
Bart Van Assched6d189c2019-03-28 11:06:22 -070013589 cqid, cq->queue_id, raw_smp_processor_id());
Dick Kennedyf485c182017-09-29 17:34:34 -070013590}
13591
13592/**
James Smart32517fc2019-01-28 11:14:33 -080013593 * __lpfc_sli4_process_cq - Process elements of a CQ
Dick Kennedyf485c182017-09-29 17:34:34 -070013594 * @phba: Pointer to HBA context object.
James Smart32517fc2019-01-28 11:14:33 -080013595 * @cq: Pointer to CQ to be processed
13596 * @handler: Routine to process each cqe
13597 * @delay: Pointer to usdelay to set in case of rescheduling of the handler
Dick Kennedyf485c182017-09-29 17:34:34 -070013598 *
James Smart32517fc2019-01-28 11:14:33 -080013599 * This routine processes completion queue entries in a CQ. While a valid
13600 * queue element is found, the handler is called. During processing checks
13601 * are made for periodic doorbell writes to let the hardware know of
13602 * element consumption.
Dick Kennedyf485c182017-09-29 17:34:34 -070013603 *
James Smart32517fc2019-01-28 11:14:33 -080013604 * If the max limit on cqes to process is hit, or there are no more valid
13605 * entries, the loop stops. If we processed a sufficient number of elements,
13606 * meaning there is sufficient load, rather than rearming and generating
13607 * another interrupt, a cq rescheduling delay will be set. A delay of 0
13608 * indicates no rescheduling.
13609 *
13610 * Returns True if work scheduled, False otherwise.
Dick Kennedyf485c182017-09-29 17:34:34 -070013611 **/
James Smart32517fc2019-01-28 11:14:33 -080013612static bool
13613__lpfc_sli4_process_cq(struct lpfc_hba *phba, struct lpfc_queue *cq,
13614 bool (*handler)(struct lpfc_hba *, struct lpfc_queue *,
13615 struct lpfc_cqe *), unsigned long *delay)
Dick Kennedyf485c182017-09-29 17:34:34 -070013616{
Dick Kennedyf485c182017-09-29 17:34:34 -070013617 struct lpfc_cqe *cqe;
13618 bool workposted = false;
James Smart32517fc2019-01-28 11:14:33 -080013619 int count = 0, consumed = 0;
13620 bool arm = true;
13621
13622 /* default - no reschedule */
13623 *delay = 0;
13624
13625 if (cmpxchg(&cq->queue_claimed, 0, 1) != 0)
13626 goto rearm_and_exit;
Dick Kennedyf485c182017-09-29 17:34:34 -070013627
James Smart4f774512009-05-22 14:52:35 -040013628 /* Process all the entries to the CQ */
James Smartd74a89a2019-05-21 17:48:55 -070013629 cq->q_flag = 0;
James Smart32517fc2019-01-28 11:14:33 -080013630 cqe = lpfc_sli4_cq_get(cq);
13631 while (cqe) {
James Smart32517fc2019-01-28 11:14:33 -080013632 workposted |= handler(phba, cq, cqe);
13633 __lpfc_sli4_consume_cqe(phba, cq, cqe);
13634
13635 consumed++;
13636 if (!(++count % cq->max_proc_limit))
13637 break;
13638
13639 if (!(count % cq->notify_interval)) {
13640 phba->sli4_hba.sli4_write_cq_db(phba, cq, consumed,
13641 LPFC_QUEUE_NOARM);
13642 consumed = 0;
James Smart8156d372019-10-18 14:18:26 -070013643 cq->assoc_qp->q_flag |= HBA_EQ_DELAY_CHK;
James Smart4f774512009-05-22 14:52:35 -040013644 }
James Smartb84daac2012-08-03 12:35:13 -040013645
James Smartd74a89a2019-05-21 17:48:55 -070013646 if (count == LPFC_NVMET_CQ_NOTIFY)
13647 cq->q_flag |= HBA_NVMET_CQ_NOTIFY;
13648
James Smart32517fc2019-01-28 11:14:33 -080013649 cqe = lpfc_sli4_cq_get(cq);
13650 }
13651 if (count >= phba->cfg_cq_poll_threshold) {
13652 *delay = 1;
13653 arm = false;
13654 }
13655
13656 /* Track the max number of CQEs processed in 1 EQ */
13657 if (count > cq->CQ_max_cqe)
13658 cq->CQ_max_cqe = count;
13659
13660 cq->assoc_qp->EQ_cqe_cnt += count;
13661
13662 /* Catch the no cq entry condition */
13663 if (unlikely(count == 0))
13664 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
13665 "0369 No entry from completion queue "
13666 "qid=%d\n", cq->queue_id);
13667
13668 cq->queue_claimed = 0;
13669
13670rearm_and_exit:
13671 phba->sli4_hba.sli4_write_cq_db(phba, cq, consumed,
13672 arm ? LPFC_QUEUE_REARM : LPFC_QUEUE_NOARM);
13673
13674 return workposted;
13675}
13676
13677/**
13678 * lpfc_sli4_sp_process_cq - Process a slow-path event queue entry
13679 * @cq: pointer to CQ to process
13680 *
13681 * This routine calls the cq processing routine with a handler specific
13682 * to the type of queue bound to it.
13683 *
13684 * The CQ routine returns two values: the first is the calling status,
13685 * which indicates whether work was queued to the background discovery
13686 * thread. If true, the routine should wakeup the discovery thread;
13687 * the second is the delay parameter. If non-zero, rather than rearming
13688 * the CQ and yet another interrupt, the CQ handler should be queued so
13689 * that it is processed in a subsequent polling action. The value of
13690 * the delay indicates when to reschedule it.
13691 **/
13692static void
13693__lpfc_sli4_sp_process_cq(struct lpfc_queue *cq)
13694{
13695 struct lpfc_hba *phba = cq->phba;
13696 unsigned long delay;
13697 bool workposted = false;
13698
13699 /* Process and rearm the CQ */
13700 switch (cq->type) {
13701 case LPFC_MCQ:
13702 workposted |= __lpfc_sli4_process_cq(phba, cq,
13703 lpfc_sli4_sp_handle_mcqe,
13704 &delay);
13705 break;
13706 case LPFC_WCQ:
James Smartc00f62e2019-08-14 16:57:11 -070013707 if (cq->subtype == LPFC_IO)
James Smart32517fc2019-01-28 11:14:33 -080013708 workposted |= __lpfc_sli4_process_cq(phba, cq,
13709 lpfc_sli4_fp_handle_cqe,
13710 &delay);
13711 else
13712 workposted |= __lpfc_sli4_process_cq(phba, cq,
13713 lpfc_sli4_sp_handle_cqe,
13714 &delay);
James Smart4f774512009-05-22 14:52:35 -040013715 break;
13716 default:
13717 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13718 "0370 Invalid completion queue type (%d)\n",
13719 cq->type);
Dick Kennedyf485c182017-09-29 17:34:34 -070013720 return;
James Smart4f774512009-05-22 14:52:35 -040013721 }
13722
James Smart32517fc2019-01-28 11:14:33 -080013723 if (delay) {
13724 if (!queue_delayed_work_on(cq->chann, phba->wq,
13725 &cq->sched_spwork, delay))
13726 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13727 "0394 Cannot schedule soft IRQ "
13728 "for cqid=%d on CPU %d\n",
13729 cq->queue_id, cq->chann);
13730 }
James Smart4f774512009-05-22 14:52:35 -040013731
13732 /* wake up worker thread if there are works to be done */
13733 if (workposted)
13734 lpfc_worker_wake_up(phba);
13735}
13736
13737/**
James Smart32517fc2019-01-28 11:14:33 -080013738 * lpfc_sli4_sp_process_cq - slow-path work handler when started by
13739 * interrupt
13740 * @work: pointer to work element
13741 *
13742 * translates from the work handler and calls the slow-path handler.
13743 **/
13744static void
13745lpfc_sli4_sp_process_cq(struct work_struct *work)
13746{
13747 struct lpfc_queue *cq = container_of(work, struct lpfc_queue, spwork);
13748
13749 __lpfc_sli4_sp_process_cq(cq);
13750}
13751
13752/**
13753 * lpfc_sli4_dly_sp_process_cq - slow-path work handler when started by timer
13754 * @work: pointer to work element
13755 *
13756 * translates from the work handler and calls the slow-path handler.
13757 **/
13758static void
13759lpfc_sli4_dly_sp_process_cq(struct work_struct *work)
13760{
13761 struct lpfc_queue *cq = container_of(to_delayed_work(work),
13762 struct lpfc_queue, sched_spwork);
13763
13764 __lpfc_sli4_sp_process_cq(cq);
13765}
13766
13767/**
James Smart4f774512009-05-22 14:52:35 -040013768 * lpfc_sli4_fp_handle_fcp_wcqe - Process fast-path work queue completion entry
James Smart2a76a282012-08-03 12:35:54 -040013769 * @phba: Pointer to HBA context object.
13770 * @cq: Pointer to associated CQ
13771 * @wcqe: Pointer to work-queue completion queue entry.
James Smart4f774512009-05-22 14:52:35 -040013772 *
13773 * This routine process a fast-path work queue completion entry from fast-path
13774 * event queue for FCP command response completion.
13775 **/
13776static void
James Smart2a76a282012-08-03 12:35:54 -040013777lpfc_sli4_fp_handle_fcp_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040013778 struct lpfc_wcqe_complete *wcqe)
13779{
James Smart2a76a282012-08-03 12:35:54 -040013780 struct lpfc_sli_ring *pring = cq->pring;
James Smart4f774512009-05-22 14:52:35 -040013781 struct lpfc_iocbq *cmdiocbq;
13782 struct lpfc_iocbq irspiocbq;
13783 unsigned long iflags;
13784
James Smart4f774512009-05-22 14:52:35 -040013785 /* Check for response status */
13786 if (unlikely(bf_get(lpfc_wcqe_c_status, wcqe))) {
13787 /* If resource errors reported from HBA, reduce queue
13788 * depth of the SCSI device.
13789 */
James Smarte3d2b802012-08-14 14:25:43 -040013790 if (((bf_get(lpfc_wcqe_c_status, wcqe) ==
13791 IOSTAT_LOCAL_REJECT)) &&
13792 ((wcqe->parameter & IOERR_PARAM_MASK) ==
13793 IOERR_NO_RESOURCES))
James Smart4f774512009-05-22 14:52:35 -040013794 phba->lpfc_rampdown_queue_depth(phba);
James Smarte3d2b802012-08-14 14:25:43 -040013795
James Smart4f774512009-05-22 14:52:35 -040013796 /* Log the error status */
James Smart11f0e342018-05-04 20:37:57 -070013797 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
13798 "0373 FCP CQE error: status=x%x: "
13799 "CQE: %08x %08x %08x %08x\n",
James Smart4f774512009-05-22 14:52:35 -040013800 bf_get(lpfc_wcqe_c_status, wcqe),
James Smart11f0e342018-05-04 20:37:57 -070013801 wcqe->word0, wcqe->total_data_placed,
13802 wcqe->parameter, wcqe->word3);
James Smart4f774512009-05-22 14:52:35 -040013803 }
13804
13805 /* Look up the FCP command IOCB and create pseudo response IOCB */
James Smart7e56aa22012-08-03 12:35:34 -040013806 spin_lock_irqsave(&pring->ring_lock, iflags);
13807 pring->stats.iocb_event++;
James Smarte2a8be52019-05-06 17:26:47 -070013808 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart4f774512009-05-22 14:52:35 -040013809 cmdiocbq = lpfc_sli_iocbq_lookup_by_tag(phba, pring,
13810 bf_get(lpfc_wcqe_c_request_tag, wcqe));
James Smart4f774512009-05-22 14:52:35 -040013811 if (unlikely(!cmdiocbq)) {
13812 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
13813 "0374 FCP complete with no corresponding "
13814 "cmdiocb: iotag (%d)\n",
13815 bf_get(lpfc_wcqe_c_request_tag, wcqe));
13816 return;
13817 }
Dick Kennedyc8a4ce02017-09-29 17:34:33 -070013818#ifdef CONFIG_SCSI_LPFC_DEBUG_FS
13819 cmdiocbq->isr_timestamp = cq->isr_timestamp;
13820#endif
James Smart895427b2017-02-12 13:52:30 -080013821 if (cmdiocbq->iocb_cmpl == NULL) {
13822 if (cmdiocbq->wqe_cmpl) {
13823 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
13824 spin_lock_irqsave(&phba->hbalock, iflags);
13825 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
13826 spin_unlock_irqrestore(&phba->hbalock, iflags);
13827 }
13828
13829 /* Pass the cmd_iocb and the wcqe to the upper layer */
13830 (cmdiocbq->wqe_cmpl)(phba, cmdiocbq, wcqe);
13831 return;
13832 }
James Smart4f774512009-05-22 14:52:35 -040013833 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
13834 "0375 FCP cmdiocb not callback function "
13835 "iotag: (%d)\n",
13836 bf_get(lpfc_wcqe_c_request_tag, wcqe));
13837 return;
13838 }
13839
13840 /* Fake the irspiocb and copy necessary response information */
James Smart341af102010-01-26 23:07:37 -050013841 lpfc_sli4_iocb_param_transfer(phba, &irspiocbq, cmdiocbq, wcqe);
James Smart4f774512009-05-22 14:52:35 -040013842
James Smart0f65ff62010-02-26 14:14:23 -050013843 if (cmdiocbq->iocb_flag & LPFC_DRIVER_ABORTED) {
13844 spin_lock_irqsave(&phba->hbalock, iflags);
13845 cmdiocbq->iocb_flag &= ~LPFC_DRIVER_ABORTED;
13846 spin_unlock_irqrestore(&phba->hbalock, iflags);
13847 }
13848
James Smart4f774512009-05-22 14:52:35 -040013849 /* Pass the cmd_iocb and the rsp state to the upper layer */
13850 (cmdiocbq->iocb_cmpl)(phba, cmdiocbq, &irspiocbq);
13851}
13852
13853/**
13854 * lpfc_sli4_fp_handle_rel_wcqe - Handle fast-path WQ entry consumed event
13855 * @phba: Pointer to HBA context object.
13856 * @cq: Pointer to completion queue.
13857 * @wcqe: Pointer to work-queue completion queue entry.
13858 *
Masahiro Yamada3f8b6fb2017-02-27 14:29:25 -080013859 * This routine handles an fast-path WQ entry consumed event by invoking the
James Smart4f774512009-05-22 14:52:35 -040013860 * proper WQ release routine to the slow-path WQ.
13861 **/
13862static void
13863lpfc_sli4_fp_handle_rel_wcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
13864 struct lpfc_wcqe_release *wcqe)
13865{
13866 struct lpfc_queue *childwq;
13867 bool wqid_matched = false;
James Smart895427b2017-02-12 13:52:30 -080013868 uint16_t hba_wqid;
James Smart4f774512009-05-22 14:52:35 -040013869
13870 /* Check for fast-path FCP work queue release */
James Smart895427b2017-02-12 13:52:30 -080013871 hba_wqid = bf_get(lpfc_wcqe_r_wq_id, wcqe);
James Smart4f774512009-05-22 14:52:35 -040013872 list_for_each_entry(childwq, &cq->child_list, list) {
James Smart895427b2017-02-12 13:52:30 -080013873 if (childwq->queue_id == hba_wqid) {
James Smart4f774512009-05-22 14:52:35 -040013874 lpfc_sli4_wq_release(childwq,
13875 bf_get(lpfc_wcqe_r_wqe_index, wcqe));
James Smart6e8e1c12018-01-30 15:58:49 -080013876 if (childwq->q_flag & HBA_NVMET_WQFULL)
13877 lpfc_nvmet_wqfull_process(phba, childwq);
James Smart4f774512009-05-22 14:52:35 -040013878 wqid_matched = true;
13879 break;
13880 }
13881 }
13882 /* Report warning log message if no match found */
13883 if (wqid_matched != true)
13884 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
13885 "2580 Fast-path wqe consume event carries "
James Smart895427b2017-02-12 13:52:30 -080013886 "miss-matched qid: wcqe-qid=x%x\n", hba_wqid);
James Smart4f774512009-05-22 14:52:35 -040013887}
13888
13889/**
James Smart2d7dbc42017-02-12 13:52:35 -080013890 * lpfc_sli4_nvmet_handle_rcqe - Process a receive-queue completion queue entry
13891 * @phba: Pointer to HBA context object.
13892 * @rcqe: Pointer to receive-queue completion queue entry.
13893 *
13894 * This routine process a receive-queue completion queue entry.
13895 *
13896 * Return: true if work posted to worker thread, otherwise false.
13897 **/
13898static bool
13899lpfc_sli4_nvmet_handle_rcqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
13900 struct lpfc_rcqe *rcqe)
13901{
13902 bool workposted = false;
13903 struct lpfc_queue *hrq;
13904 struct lpfc_queue *drq;
13905 struct rqb_dmabuf *dma_buf;
13906 struct fc_frame_header *fc_hdr;
James Smart547077a2017-05-15 15:20:40 -070013907 struct lpfc_nvmet_tgtport *tgtp;
James Smart2d7dbc42017-02-12 13:52:35 -080013908 uint32_t status, rq_id;
13909 unsigned long iflags;
13910 uint32_t fctl, idx;
13911
13912 if ((phba->nvmet_support == 0) ||
13913 (phba->sli4_hba.nvmet_cqset == NULL))
13914 return workposted;
13915
13916 idx = cq->queue_id - phba->sli4_hba.nvmet_cqset[0]->queue_id;
13917 hrq = phba->sli4_hba.nvmet_mrq_hdr[idx];
13918 drq = phba->sli4_hba.nvmet_mrq_data[idx];
13919
13920 /* sanity check on queue memory */
13921 if (unlikely(!hrq) || unlikely(!drq))
13922 return workposted;
13923
13924 if (bf_get(lpfc_cqe_code, rcqe) == CQE_CODE_RECEIVE_V1)
13925 rq_id = bf_get(lpfc_rcqe_rq_id_v1, rcqe);
13926 else
13927 rq_id = bf_get(lpfc_rcqe_rq_id, rcqe);
13928
13929 if ((phba->nvmet_support == 0) ||
13930 (rq_id != hrq->queue_id))
13931 return workposted;
13932
13933 status = bf_get(lpfc_rcqe_status, rcqe);
13934 switch (status) {
13935 case FC_STATUS_RQ_BUF_LEN_EXCEEDED:
13936 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
13937 "6126 Receive Frame Truncated!!\n");
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060013938 /* fall through */
James Smart2d7dbc42017-02-12 13:52:35 -080013939 case FC_STATUS_RQ_SUCCESS:
James Smart2d7dbc42017-02-12 13:52:35 -080013940 spin_lock_irqsave(&phba->hbalock, iflags);
James Smartcbc5de12017-12-08 17:18:04 -080013941 lpfc_sli4_rq_release(hrq, drq);
James Smart2d7dbc42017-02-12 13:52:35 -080013942 dma_buf = lpfc_sli_rqbuf_get(phba, hrq);
13943 if (!dma_buf) {
13944 hrq->RQ_no_buf_found++;
13945 spin_unlock_irqrestore(&phba->hbalock, iflags);
13946 goto out;
13947 }
13948 spin_unlock_irqrestore(&phba->hbalock, iflags);
13949 hrq->RQ_rcv_buf++;
James Smart547077a2017-05-15 15:20:40 -070013950 hrq->RQ_buf_posted--;
James Smart2d7dbc42017-02-12 13:52:35 -080013951 fc_hdr = (struct fc_frame_header *)dma_buf->hbuf.virt;
13952
13953 /* Just some basic sanity checks on FCP Command frame */
13954 fctl = (fc_hdr->fh_f_ctl[0] << 16 |
13955 fc_hdr->fh_f_ctl[1] << 8 |
13956 fc_hdr->fh_f_ctl[2]);
13957 if (((fctl &
13958 (FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT)) !=
13959 (FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT)) ||
13960 (fc_hdr->fh_seq_cnt != 0)) /* 0 byte swapped is still 0 */
13961 goto drop;
13962
13963 if (fc_hdr->fh_type == FC_TYPE_FCP) {
James Smartd74a89a2019-05-21 17:48:55 -070013964 dma_buf->bytes_recv = bf_get(lpfc_rcqe_length, rcqe);
James Smartd613b6a2017-02-12 13:52:37 -080013965 lpfc_nvmet_unsol_fcp_event(
James Smartd74a89a2019-05-21 17:48:55 -070013966 phba, idx, dma_buf, cq->isr_timestamp,
13967 cq->q_flag & HBA_NVMET_CQ_NOTIFY);
James Smart2d7dbc42017-02-12 13:52:35 -080013968 return false;
13969 }
13970drop:
James Smart22b738a2019-03-12 16:30:11 -070013971 lpfc_rq_buf_free(phba, &dma_buf->hbuf);
James Smart2d7dbc42017-02-12 13:52:35 -080013972 break;
James Smart2d7dbc42017-02-12 13:52:35 -080013973 case FC_STATUS_INSUFF_BUF_FRM_DISC:
James Smart547077a2017-05-15 15:20:40 -070013974 if (phba->nvmet_support) {
13975 tgtp = phba->targetport->private;
13976 lpfc_printf_log(phba, KERN_ERR, LOG_SLI | LOG_NVME,
13977 "6401 RQE Error x%x, posted %d err_cnt "
13978 "%d: %x %x %x\n",
13979 status, hrq->RQ_buf_posted,
13980 hrq->RQ_no_posted_buf,
13981 atomic_read(&tgtp->rcv_fcp_cmd_in),
13982 atomic_read(&tgtp->rcv_fcp_cmd_out),
13983 atomic_read(&tgtp->xmt_fcp_release));
13984 }
13985 /* fallthrough */
13986
13987 case FC_STATUS_INSUFF_BUF_NEED_BUF:
James Smart2d7dbc42017-02-12 13:52:35 -080013988 hrq->RQ_no_posted_buf++;
13989 /* Post more buffers if possible */
James Smart2d7dbc42017-02-12 13:52:35 -080013990 break;
13991 }
13992out:
13993 return workposted;
13994}
13995
13996/**
James Smart895427b2017-02-12 13:52:30 -080013997 * lpfc_sli4_fp_handle_cqe - Process fast-path work queue completion entry
James Smart32517fc2019-01-28 11:14:33 -080013998 * @phba: adapter with cq
James Smart4f774512009-05-22 14:52:35 -040013999 * @cq: Pointer to the completion queue.
14000 * @eqe: Pointer to fast-path completion queue entry.
14001 *
14002 * This routine process a fast-path work queue completion entry from fast-path
14003 * event queue for FCP command response completion.
James Smart32517fc2019-01-28 11:14:33 -080014004 *
14005 * Return: true if work posted to worker thread, otherwise false.
James Smart4f774512009-05-22 14:52:35 -040014006 **/
James Smart32517fc2019-01-28 11:14:33 -080014007static bool
James Smart895427b2017-02-12 13:52:30 -080014008lpfc_sli4_fp_handle_cqe(struct lpfc_hba *phba, struct lpfc_queue *cq,
James Smart4f774512009-05-22 14:52:35 -040014009 struct lpfc_cqe *cqe)
14010{
14011 struct lpfc_wcqe_release wcqe;
14012 bool workposted = false;
14013
14014 /* Copy the work queue CQE and convert endian order if needed */
James Smart48f8fdb2018-05-04 20:37:51 -070014015 lpfc_sli4_pcimem_bcopy(cqe, &wcqe, sizeof(struct lpfc_cqe));
James Smart4f774512009-05-22 14:52:35 -040014016
14017 /* Check and process for different type of WCQE and dispatch */
14018 switch (bf_get(lpfc_wcqe_c_code, &wcqe)) {
14019 case CQE_CODE_COMPL_WQE:
James Smart895427b2017-02-12 13:52:30 -080014020 case CQE_CODE_NVME_ERSP:
James Smartb84daac2012-08-03 12:35:13 -040014021 cq->CQ_wq++;
James Smart4f774512009-05-22 14:52:35 -040014022 /* Process the WQ complete event */
James Smart98fc5dd2010-06-07 15:24:29 -040014023 phba->last_completion_time = jiffies;
James Smartc00f62e2019-08-14 16:57:11 -070014024 if (cq->subtype == LPFC_IO || cq->subtype == LPFC_NVME_LS)
James Smart895427b2017-02-12 13:52:30 -080014025 lpfc_sli4_fp_handle_fcp_wcqe(phba, cq,
James Smart4f774512009-05-22 14:52:35 -040014026 (struct lpfc_wcqe_complete *)&wcqe);
14027 break;
14028 case CQE_CODE_RELEASE_WQE:
James Smartb84daac2012-08-03 12:35:13 -040014029 cq->CQ_release_wqe++;
James Smart4f774512009-05-22 14:52:35 -040014030 /* Process the WQ release event */
14031 lpfc_sli4_fp_handle_rel_wcqe(phba, cq,
14032 (struct lpfc_wcqe_release *)&wcqe);
14033 break;
14034 case CQE_CODE_XRI_ABORTED:
James Smartb84daac2012-08-03 12:35:13 -040014035 cq->CQ_xri_aborted++;
James Smart4f774512009-05-22 14:52:35 -040014036 /* Process the WQ XRI abort event */
James Smartbc739052010-08-04 16:11:18 -040014037 phba->last_completion_time = jiffies;
James Smart4f774512009-05-22 14:52:35 -040014038 workposted = lpfc_sli4_sp_handle_abort_xri_wcqe(phba, cq,
14039 (struct sli4_wcqe_xri_aborted *)&wcqe);
14040 break;
James Smart895427b2017-02-12 13:52:30 -080014041 case CQE_CODE_RECEIVE_V1:
14042 case CQE_CODE_RECEIVE:
14043 phba->last_completion_time = jiffies;
James Smart2d7dbc42017-02-12 13:52:35 -080014044 if (cq->subtype == LPFC_NVMET) {
14045 workposted = lpfc_sli4_nvmet_handle_rcqe(
14046 phba, cq, (struct lpfc_rcqe *)&wcqe);
14047 }
James Smart895427b2017-02-12 13:52:30 -080014048 break;
James Smart4f774512009-05-22 14:52:35 -040014049 default:
14050 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart895427b2017-02-12 13:52:30 -080014051 "0144 Not a valid CQE code: x%x\n",
James Smart4f774512009-05-22 14:52:35 -040014052 bf_get(lpfc_wcqe_c_code, &wcqe));
14053 break;
14054 }
14055 return workposted;
14056}
14057
14058/**
James Smart67d12732012-08-03 12:36:13 -040014059 * lpfc_sli4_hba_handle_eqe - Process a fast-path event queue entry
James Smart4f774512009-05-22 14:52:35 -040014060 * @phba: Pointer to HBA context object.
14061 * @eqe: Pointer to fast-path event queue entry.
14062 *
14063 * This routine process a event queue entry from the fast-path event queue.
14064 * It will check the MajorCode and MinorCode to determine this is for a
14065 * completion event on a completion queue, if not, an error shall be logged
14066 * and just return. Otherwise, it will get to the corresponding completion
14067 * queue and process all the entries on the completion queue, rearm the
14068 * completion queue, and then return.
14069 **/
Dick Kennedyf485c182017-09-29 17:34:34 -070014070static void
James Smart32517fc2019-01-28 11:14:33 -080014071lpfc_sli4_hba_handle_eqe(struct lpfc_hba *phba, struct lpfc_queue *eq,
14072 struct lpfc_eqe *eqe)
James Smart4f774512009-05-22 14:52:35 -040014073{
James Smart895427b2017-02-12 13:52:30 -080014074 struct lpfc_queue *cq = NULL;
James Smart32517fc2019-01-28 11:14:33 -080014075 uint32_t qidx = eq->hdwq;
James Smart2d7dbc42017-02-12 13:52:35 -080014076 uint16_t cqid, id;
James Smart4f774512009-05-22 14:52:35 -040014077
James Smartcb5172e2010-03-15 11:25:07 -040014078 if (unlikely(bf_get_le32(lpfc_eqe_major_code, eqe) != 0)) {
James Smart4f774512009-05-22 14:52:35 -040014079 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart67d12732012-08-03 12:36:13 -040014080 "0366 Not a valid completion "
James Smart4f774512009-05-22 14:52:35 -040014081 "event: majorcode=x%x, minorcode=x%x\n",
James Smartcb5172e2010-03-15 11:25:07 -040014082 bf_get_le32(lpfc_eqe_major_code, eqe),
14083 bf_get_le32(lpfc_eqe_minor_code, eqe));
Dick Kennedyf485c182017-09-29 17:34:34 -070014084 return;
James Smart4f774512009-05-22 14:52:35 -040014085 }
14086
James Smart67d12732012-08-03 12:36:13 -040014087 /* Get the reference to the corresponding CQ */
14088 cqid = bf_get_le32(lpfc_eqe_resource_id, eqe);
14089
James Smart6a828b02019-01-28 11:14:31 -080014090 /* Use the fast lookup method first */
14091 if (cqid <= phba->sli4_hba.cq_max) {
14092 cq = phba->sli4_hba.cq_lookup[cqid];
14093 if (cq)
14094 goto work_cq;
James Smartcdb42be2019-01-28 11:14:21 -080014095 }
14096
14097 /* Next check for NVMET completion */
James Smart2d7dbc42017-02-12 13:52:35 -080014098 if (phba->cfg_nvmet_mrq && phba->sli4_hba.nvmet_cqset) {
14099 id = phba->sli4_hba.nvmet_cqset[0]->queue_id;
14100 if ((cqid >= id) && (cqid < (id + phba->cfg_nvmet_mrq))) {
14101 /* Process NVMET unsol rcv */
14102 cq = phba->sli4_hba.nvmet_cqset[cqid - id];
14103 goto process_cq;
14104 }
14105 }
14106
James Smart895427b2017-02-12 13:52:30 -080014107 if (phba->sli4_hba.nvmels_cq &&
14108 (cqid == phba->sli4_hba.nvmels_cq->queue_id)) {
14109 /* Process NVME unsol rcv */
14110 cq = phba->sli4_hba.nvmels_cq;
14111 }
14112
14113 /* Otherwise this is a Slow path event */
14114 if (cq == NULL) {
James Smartcdb42be2019-01-28 11:14:21 -080014115 lpfc_sli4_sp_handle_eqe(phba, eqe,
14116 phba->sli4_hba.hdwq[qidx].hba_eq);
Dick Kennedyf485c182017-09-29 17:34:34 -070014117 return;
James Smart67d12732012-08-03 12:36:13 -040014118 }
14119
James Smart895427b2017-02-12 13:52:30 -080014120process_cq:
James Smart4f774512009-05-22 14:52:35 -040014121 if (unlikely(cqid != cq->queue_id)) {
14122 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14123 "0368 Miss-matched fast-path completion "
14124 "queue identifier: eqcqid=%d, fcpcqid=%d\n",
14125 cqid, cq->queue_id);
Dick Kennedyf485c182017-09-29 17:34:34 -070014126 return;
James Smart4f774512009-05-22 14:52:35 -040014127 }
14128
James Smart6a828b02019-01-28 11:14:31 -080014129work_cq:
James Smartd74a89a2019-05-21 17:48:55 -070014130#if defined(CONFIG_SCSI_LPFC_DEBUG_FS)
14131 if (phba->ktime_on)
14132 cq->isr_timestamp = ktime_get_ns();
14133 else
14134 cq->isr_timestamp = 0;
14135#endif
James Smart45aa3122019-01-28 11:14:29 -080014136 if (!queue_work_on(cq->chann, phba->wq, &cq->irqwork))
Dick Kennedyf485c182017-09-29 17:34:34 -070014137 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14138 "0363 Cannot schedule soft IRQ "
14139 "for CQ eqcqid=%d, cqid=%d on CPU %d\n",
Bart Van Assched6d189c2019-03-28 11:06:22 -070014140 cqid, cq->queue_id, raw_smp_processor_id());
Dick Kennedyf485c182017-09-29 17:34:34 -070014141}
14142
14143/**
James Smart32517fc2019-01-28 11:14:33 -080014144 * __lpfc_sli4_hba_process_cq - Process a fast-path event queue entry
14145 * @cq: Pointer to CQ to be processed
Dick Kennedyf485c182017-09-29 17:34:34 -070014146 *
James Smart32517fc2019-01-28 11:14:33 -080014147 * This routine calls the cq processing routine with the handler for
14148 * fast path CQEs.
14149 *
14150 * The CQ routine returns two values: the first is the calling status,
14151 * which indicates whether work was queued to the background discovery
14152 * thread. If true, the routine should wakeup the discovery thread;
14153 * the second is the delay parameter. If non-zero, rather than rearming
14154 * the CQ and yet another interrupt, the CQ handler should be queued so
14155 * that it is processed in a subsequent polling action. The value of
14156 * the delay indicates when to reschedule it.
Dick Kennedyf485c182017-09-29 17:34:34 -070014157 **/
14158static void
James Smart32517fc2019-01-28 11:14:33 -080014159__lpfc_sli4_hba_process_cq(struct lpfc_queue *cq)
Dick Kennedyf485c182017-09-29 17:34:34 -070014160{
Dick Kennedyf485c182017-09-29 17:34:34 -070014161 struct lpfc_hba *phba = cq->phba;
James Smart32517fc2019-01-28 11:14:33 -080014162 unsigned long delay;
Dick Kennedyf485c182017-09-29 17:34:34 -070014163 bool workposted = false;
Dick Kennedyf485c182017-09-29 17:34:34 -070014164
James Smart32517fc2019-01-28 11:14:33 -080014165 /* process and rearm the CQ */
14166 workposted |= __lpfc_sli4_process_cq(phba, cq, lpfc_sli4_fp_handle_cqe,
14167 &delay);
14168
14169 if (delay) {
14170 if (!queue_delayed_work_on(cq->chann, phba->wq,
14171 &cq->sched_irqwork, delay))
14172 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14173 "0367 Cannot schedule soft IRQ "
14174 "for cqid=%d on CPU %d\n",
14175 cq->queue_id, cq->chann);
James Smart4f774512009-05-22 14:52:35 -040014176 }
14177
James Smart4f774512009-05-22 14:52:35 -040014178 /* wake up worker thread if there are works to be done */
14179 if (workposted)
14180 lpfc_worker_wake_up(phba);
14181}
14182
James Smart1ba981f2014-02-20 09:56:45 -050014183/**
James Smart32517fc2019-01-28 11:14:33 -080014184 * lpfc_sli4_hba_process_cq - fast-path work handler when started by
14185 * interrupt
14186 * @work: pointer to work element
James Smart1ba981f2014-02-20 09:56:45 -050014187 *
James Smart32517fc2019-01-28 11:14:33 -080014188 * translates from the work handler and calls the fast-path handler.
James Smart1ba981f2014-02-20 09:56:45 -050014189 **/
14190static void
James Smart32517fc2019-01-28 11:14:33 -080014191lpfc_sli4_hba_process_cq(struct work_struct *work)
James Smart1ba981f2014-02-20 09:56:45 -050014192{
James Smart32517fc2019-01-28 11:14:33 -080014193 struct lpfc_queue *cq = container_of(work, struct lpfc_queue, irqwork);
James Smart1ba981f2014-02-20 09:56:45 -050014194
James Smart32517fc2019-01-28 11:14:33 -080014195 __lpfc_sli4_hba_process_cq(cq);
James Smart1ba981f2014-02-20 09:56:45 -050014196}
14197
14198/**
James Smart32517fc2019-01-28 11:14:33 -080014199 * lpfc_sli4_hba_process_cq - fast-path work handler when started by timer
14200 * @work: pointer to work element
James Smart1ba981f2014-02-20 09:56:45 -050014201 *
James Smart32517fc2019-01-28 11:14:33 -080014202 * translates from the work handler and calls the fast-path handler.
James Smart1ba981f2014-02-20 09:56:45 -050014203 **/
James Smart32517fc2019-01-28 11:14:33 -080014204static void
14205lpfc_sli4_dly_hba_process_cq(struct work_struct *work)
James Smart1ba981f2014-02-20 09:56:45 -050014206{
James Smart32517fc2019-01-28 11:14:33 -080014207 struct lpfc_queue *cq = container_of(to_delayed_work(work),
14208 struct lpfc_queue, sched_irqwork);
James Smart1ba981f2014-02-20 09:56:45 -050014209
James Smart32517fc2019-01-28 11:14:33 -080014210 __lpfc_sli4_hba_process_cq(cq);
James Smart1ba981f2014-02-20 09:56:45 -050014211}
14212
James Smart4f774512009-05-22 14:52:35 -040014213/**
James Smart67d12732012-08-03 12:36:13 -040014214 * lpfc_sli4_hba_intr_handler - HBA interrupt handler to SLI-4 device
James Smart4f774512009-05-22 14:52:35 -040014215 * @irq: Interrupt number.
14216 * @dev_id: The device context pointer.
14217 *
14218 * This function is directly called from the PCI layer as an interrupt
14219 * service routine when device with SLI-4 interface spec is enabled with
14220 * MSI-X multi-message interrupt mode and there is a fast-path FCP IOCB
14221 * ring event in the HBA. However, when the device is enabled with either
14222 * MSI or Pin-IRQ interrupt mode, this function is called as part of the
14223 * device-level interrupt handler. When the PCI slot is in error recovery
14224 * or the HBA is undergoing initialization, the interrupt handler will not
14225 * process the interrupt. The SCSI FCP fast-path ring event are handled in
14226 * the intrrupt context. This function is called without any lock held.
14227 * It gets the hbalock to access and update SLI data structures. Note that,
14228 * the FCP EQ to FCP CQ are one-to-one map such that the FCP EQ index is
14229 * equal to that of FCP CQ index.
14230 *
James Smart67d12732012-08-03 12:36:13 -040014231 * The link attention and ELS ring attention events are handled
14232 * by the worker thread. The interrupt handler signals the worker thread
14233 * and returns for these events. This function is called without any lock
14234 * held. It gets the hbalock to access and update SLI data structures.
14235 *
James Smart4f774512009-05-22 14:52:35 -040014236 * This function returns IRQ_HANDLED when interrupt is handled else it
14237 * returns IRQ_NONE.
14238 **/
14239irqreturn_t
James Smart67d12732012-08-03 12:36:13 -040014240lpfc_sli4_hba_intr_handler(int irq, void *dev_id)
James Smart4f774512009-05-22 14:52:35 -040014241{
14242 struct lpfc_hba *phba;
James Smart895427b2017-02-12 13:52:30 -080014243 struct lpfc_hba_eq_hdl *hba_eq_hdl;
James Smart4f774512009-05-22 14:52:35 -040014244 struct lpfc_queue *fpeq;
James Smart4f774512009-05-22 14:52:35 -040014245 unsigned long iflag;
14246 int ecount = 0;
James Smart895427b2017-02-12 13:52:30 -080014247 int hba_eqidx;
James Smart32517fc2019-01-28 11:14:33 -080014248 struct lpfc_eq_intr_info *eqi;
14249 uint32_t icnt;
James Smart4f774512009-05-22 14:52:35 -040014250
14251 /* Get the driver's phba structure from the dev_id */
James Smart895427b2017-02-12 13:52:30 -080014252 hba_eq_hdl = (struct lpfc_hba_eq_hdl *)dev_id;
14253 phba = hba_eq_hdl->phba;
14254 hba_eqidx = hba_eq_hdl->idx;
James Smart4f774512009-05-22 14:52:35 -040014255
14256 if (unlikely(!phba))
14257 return IRQ_NONE;
James Smartcdb42be2019-01-28 11:14:21 -080014258 if (unlikely(!phba->sli4_hba.hdwq))
James Smart5350d872011-10-10 21:33:49 -040014259 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040014260
14261 /* Get to the EQ struct associated with this vector */
James Smart657add42019-05-21 17:49:06 -070014262 fpeq = phba->sli4_hba.hba_eq_hdl[hba_eqidx].eq;
James Smart2e90f4b2011-12-13 13:22:37 -050014263 if (unlikely(!fpeq))
14264 return IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040014265
14266 /* Check device state for handling interrupt */
14267 if (unlikely(lpfc_intr_state_check(phba))) {
14268 /* Check again for link_state with lock held */
14269 spin_lock_irqsave(&phba->hbalock, iflag);
14270 if (phba->link_state < LPFC_LINK_DOWN)
14271 /* Flush, clear interrupt, and rearm the EQ */
James Smart24c7c0a2019-09-21 20:58:58 -070014272 lpfc_sli4_eqcq_flush(phba, fpeq);
James Smart4f774512009-05-22 14:52:35 -040014273 spin_unlock_irqrestore(&phba->hbalock, iflag);
14274 return IRQ_NONE;
14275 }
14276
James Smart32517fc2019-01-28 11:14:33 -080014277 eqi = phba->sli4_hba.eq_info;
14278 icnt = this_cpu_inc_return(eqi->icnt);
Bart Van Assched6d189c2019-03-28 11:06:22 -070014279 fpeq->last_cpu = raw_smp_processor_id();
James Smart4f774512009-05-22 14:52:35 -040014280
James Smart32517fc2019-01-28 11:14:33 -080014281 if (icnt > LPFC_EQD_ISR_TRIGGER &&
James Smart8156d372019-10-18 14:18:26 -070014282 fpeq->q_flag & HBA_EQ_DELAY_CHK &&
James Smart32517fc2019-01-28 11:14:33 -080014283 phba->cfg_auto_imax &&
14284 fpeq->q_mode != LPFC_MAX_AUTO_EQ_DELAY &&
14285 phba->sli.sli_flag & LPFC_SLI_USE_EQDR)
14286 lpfc_sli4_mod_hba_eq_delay(phba, fpeq, LPFC_MAX_AUTO_EQ_DELAY);
James Smartb84daac2012-08-03 12:35:13 -040014287
James Smart32517fc2019-01-28 11:14:33 -080014288 /* process and rearm the EQ */
14289 ecount = lpfc_sli4_process_eq(phba, fpeq);
James Smart4f774512009-05-22 14:52:35 -040014290
14291 if (unlikely(ecount == 0)) {
James Smartb84daac2012-08-03 12:35:13 -040014292 fpeq->EQ_no_entry++;
James Smart4f774512009-05-22 14:52:35 -040014293 if (phba->intr_type == MSIX)
14294 /* MSI-X treated interrupt served as no EQ share INT */
14295 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
14296 "0358 MSI-X interrupt with no EQE\n");
14297 else
14298 /* Non MSI-X treated on interrupt as EQ share INT */
14299 return IRQ_NONE;
14300 }
14301
14302 return IRQ_HANDLED;
14303} /* lpfc_sli4_fp_intr_handler */
14304
14305/**
14306 * lpfc_sli4_intr_handler - Device-level interrupt handler for SLI-4 device
14307 * @irq: Interrupt number.
14308 * @dev_id: The device context pointer.
14309 *
14310 * This function is the device-level interrupt handler to device with SLI-4
14311 * interface spec, called from the PCI layer when either MSI or Pin-IRQ
14312 * interrupt mode is enabled and there is an event in the HBA which requires
14313 * driver attention. This function invokes the slow-path interrupt attention
14314 * handling function and fast-path interrupt attention handling function in
14315 * turn to process the relevant HBA attention events. This function is called
14316 * without any lock held. It gets the hbalock to access and update SLI data
14317 * structures.
14318 *
14319 * This function returns IRQ_HANDLED when interrupt is handled, else it
14320 * returns IRQ_NONE.
14321 **/
14322irqreturn_t
14323lpfc_sli4_intr_handler(int irq, void *dev_id)
14324{
14325 struct lpfc_hba *phba;
James Smart67d12732012-08-03 12:36:13 -040014326 irqreturn_t hba_irq_rc;
14327 bool hba_handled = false;
James Smart895427b2017-02-12 13:52:30 -080014328 int qidx;
James Smart4f774512009-05-22 14:52:35 -040014329
14330 /* Get the driver's phba structure from the dev_id */
14331 phba = (struct lpfc_hba *)dev_id;
14332
14333 if (unlikely(!phba))
14334 return IRQ_NONE;
14335
14336 /*
James Smart4f774512009-05-22 14:52:35 -040014337 * Invoke fast-path host attention interrupt handling as appropriate.
14338 */
James Smart6a828b02019-01-28 11:14:31 -080014339 for (qidx = 0; qidx < phba->cfg_irq_chann; qidx++) {
James Smart67d12732012-08-03 12:36:13 -040014340 hba_irq_rc = lpfc_sli4_hba_intr_handler(irq,
James Smart895427b2017-02-12 13:52:30 -080014341 &phba->sli4_hba.hba_eq_hdl[qidx]);
James Smart67d12732012-08-03 12:36:13 -040014342 if (hba_irq_rc == IRQ_HANDLED)
14343 hba_handled |= true;
James Smart4f774512009-05-22 14:52:35 -040014344 }
14345
James Smart67d12732012-08-03 12:36:13 -040014346 return (hba_handled == true) ? IRQ_HANDLED : IRQ_NONE;
James Smart4f774512009-05-22 14:52:35 -040014347} /* lpfc_sli4_intr_handler */
14348
14349/**
14350 * lpfc_sli4_queue_free - free a queue structure and associated memory
14351 * @queue: The queue structure to free.
14352 *
Uwe Kleine-Königb5950762010-11-01 15:38:34 -040014353 * This function frees a queue structure and the DMAable memory used for
James Smart4f774512009-05-22 14:52:35 -040014354 * the host resident queue. This function must be called after destroying the
14355 * queue on the HBA.
14356 **/
14357void
14358lpfc_sli4_queue_free(struct lpfc_queue *queue)
14359{
14360 struct lpfc_dmabuf *dmabuf;
14361
14362 if (!queue)
14363 return;
14364
James Smart4645f7b2019-03-12 16:30:14 -070014365 if (!list_empty(&queue->wq_list))
14366 list_del(&queue->wq_list);
14367
James Smart4f774512009-05-22 14:52:35 -040014368 while (!list_empty(&queue->page_list)) {
14369 list_remove_head(&queue->page_list, dmabuf, struct lpfc_dmabuf,
14370 list);
James Smart81b96ed2017-11-20 16:00:29 -080014371 dma_free_coherent(&queue->phba->pcidev->dev, queue->page_size,
James Smart4f774512009-05-22 14:52:35 -040014372 dmabuf->virt, dmabuf->phys);
14373 kfree(dmabuf);
14374 }
James Smart895427b2017-02-12 13:52:30 -080014375 if (queue->rqbp) {
14376 lpfc_free_rq_buffer(queue->phba, queue);
14377 kfree(queue->rqbp);
14378 }
James Smartd1f525a2017-04-21 16:04:55 -070014379
James Smart32517fc2019-01-28 11:14:33 -080014380 if (!list_empty(&queue->cpu_list))
14381 list_del(&queue->cpu_list);
14382
James Smart4f774512009-05-22 14:52:35 -040014383 kfree(queue);
14384 return;
14385}
14386
14387/**
14388 * lpfc_sli4_queue_alloc - Allocate and initialize a queue structure
14389 * @phba: The HBA that this queue is being created on.
James Smart81b96ed2017-11-20 16:00:29 -080014390 * @page_size: The size of a queue page
James Smart4f774512009-05-22 14:52:35 -040014391 * @entry_size: The size of each queue entry for this queue.
14392 * @entry count: The number of entries that this queue will handle.
James Smartc1a21eb2019-03-12 16:30:29 -070014393 * @cpu: The cpu that will primarily utilize this queue.
James Smart4f774512009-05-22 14:52:35 -040014394 *
14395 * This function allocates a queue structure and the DMAable memory used for
14396 * the host resident queue. This function must be called before creating the
14397 * queue on the HBA.
14398 **/
14399struct lpfc_queue *
James Smart81b96ed2017-11-20 16:00:29 -080014400lpfc_sli4_queue_alloc(struct lpfc_hba *phba, uint32_t page_size,
James Smartc1a21eb2019-03-12 16:30:29 -070014401 uint32_t entry_size, uint32_t entry_count, int cpu)
James Smart4f774512009-05-22 14:52:35 -040014402{
14403 struct lpfc_queue *queue;
14404 struct lpfc_dmabuf *dmabuf;
James Smartcb5172e2010-03-15 11:25:07 -040014405 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart9afbee32019-03-12 16:30:28 -070014406 uint16_t x, pgcnt;
James Smart4f774512009-05-22 14:52:35 -040014407
James Smartcb5172e2010-03-15 11:25:07 -040014408 if (!phba->sli4_hba.pc_sli4_params.supported)
James Smart81b96ed2017-11-20 16:00:29 -080014409 hw_page_size = page_size;
James Smartcb5172e2010-03-15 11:25:07 -040014410
James Smart9afbee32019-03-12 16:30:28 -070014411 pgcnt = ALIGN(entry_size * entry_count, hw_page_size) / hw_page_size;
James Smart895427b2017-02-12 13:52:30 -080014412
14413 /* If needed, Adjust page count to match the max the adapter supports */
James Smart9afbee32019-03-12 16:30:28 -070014414 if (pgcnt > phba->sli4_hba.pc_sli4_params.wqpcnt)
14415 pgcnt = phba->sli4_hba.pc_sli4_params.wqpcnt;
14416
James Smartc1a21eb2019-03-12 16:30:29 -070014417 queue = kzalloc_node(sizeof(*queue) + (sizeof(void *) * pgcnt),
14418 GFP_KERNEL, cpu_to_node(cpu));
James Smart9afbee32019-03-12 16:30:28 -070014419 if (!queue)
14420 return NULL;
James Smart895427b2017-02-12 13:52:30 -080014421
James Smart4f774512009-05-22 14:52:35 -040014422 INIT_LIST_HEAD(&queue->list);
James Smart895427b2017-02-12 13:52:30 -080014423 INIT_LIST_HEAD(&queue->wq_list);
James Smart6e8e1c12018-01-30 15:58:49 -080014424 INIT_LIST_HEAD(&queue->wqfull_list);
James Smart4f774512009-05-22 14:52:35 -040014425 INIT_LIST_HEAD(&queue->page_list);
14426 INIT_LIST_HEAD(&queue->child_list);
James Smart32517fc2019-01-28 11:14:33 -080014427 INIT_LIST_HEAD(&queue->cpu_list);
James Smart81b96ed2017-11-20 16:00:29 -080014428
14429 /* Set queue parameters now. If the system cannot provide memory
14430 * resources, the free routine needs to know what was allocated.
14431 */
James Smart9afbee32019-03-12 16:30:28 -070014432 queue->page_count = pgcnt;
14433 queue->q_pgs = (void **)&queue[1];
14434 queue->entry_cnt_per_pg = hw_page_size / entry_size;
James Smart81b96ed2017-11-20 16:00:29 -080014435 queue->entry_size = entry_size;
14436 queue->entry_count = entry_count;
14437 queue->page_size = hw_page_size;
14438 queue->phba = phba;
14439
James Smart9afbee32019-03-12 16:30:28 -070014440 for (x = 0; x < queue->page_count; x++) {
James Smartc1a21eb2019-03-12 16:30:29 -070014441 dmabuf = kzalloc_node(sizeof(*dmabuf), GFP_KERNEL,
14442 dev_to_node(&phba->pcidev->dev));
James Smart4f774512009-05-22 14:52:35 -040014443 if (!dmabuf)
14444 goto out_fail;
Luis Chamberlain750afb02019-01-04 09:23:09 +010014445 dmabuf->virt = dma_alloc_coherent(&phba->pcidev->dev,
14446 hw_page_size, &dmabuf->phys,
14447 GFP_KERNEL);
James Smart4f774512009-05-22 14:52:35 -040014448 if (!dmabuf->virt) {
14449 kfree(dmabuf);
14450 goto out_fail;
14451 }
14452 dmabuf->buffer_tag = x;
14453 list_add_tail(&dmabuf->list, &queue->page_list);
James Smart9afbee32019-03-12 16:30:28 -070014454 /* use lpfc_sli4_qe to index a paritcular entry in this page */
14455 queue->q_pgs[x] = dmabuf->virt;
James Smart4f774512009-05-22 14:52:35 -040014456 }
Dick Kennedyf485c182017-09-29 17:34:34 -070014457 INIT_WORK(&queue->irqwork, lpfc_sli4_hba_process_cq);
14458 INIT_WORK(&queue->spwork, lpfc_sli4_sp_process_cq);
James Smart32517fc2019-01-28 11:14:33 -080014459 INIT_DELAYED_WORK(&queue->sched_irqwork, lpfc_sli4_dly_hba_process_cq);
14460 INIT_DELAYED_WORK(&queue->sched_spwork, lpfc_sli4_dly_sp_process_cq);
James Smart4f774512009-05-22 14:52:35 -040014461
James Smart32517fc2019-01-28 11:14:33 -080014462 /* notify_interval will be set during q creation */
James Smart64eb4dc2017-05-15 15:20:49 -070014463
James Smart4f774512009-05-22 14:52:35 -040014464 return queue;
14465out_fail:
14466 lpfc_sli4_queue_free(queue);
14467 return NULL;
14468}
14469
14470/**
James Smart962bc512013-01-03 15:44:00 -050014471 * lpfc_dual_chute_pci_bar_map - Map pci base address register to host memory
14472 * @phba: HBA structure that indicates port to create a queue on.
14473 * @pci_barset: PCI BAR set flag.
14474 *
14475 * This function shall perform iomap of the specified PCI BAR address to host
14476 * memory address if not already done so and return it. The returned host
14477 * memory address can be NULL.
14478 */
14479static void __iomem *
14480lpfc_dual_chute_pci_bar_map(struct lpfc_hba *phba, uint16_t pci_barset)
14481{
James Smart962bc512013-01-03 15:44:00 -050014482 if (!phba->pcidev)
14483 return NULL;
James Smart962bc512013-01-03 15:44:00 -050014484
14485 switch (pci_barset) {
14486 case WQ_PCI_BAR_0_AND_1:
James Smart962bc512013-01-03 15:44:00 -050014487 return phba->pci_bar0_memmap_p;
14488 case WQ_PCI_BAR_2_AND_3:
James Smart962bc512013-01-03 15:44:00 -050014489 return phba->pci_bar2_memmap_p;
14490 case WQ_PCI_BAR_4_AND_5:
James Smart962bc512013-01-03 15:44:00 -050014491 return phba->pci_bar4_memmap_p;
14492 default:
14493 break;
14494 }
14495 return NULL;
14496}
14497
14498/**
James Smartcb733e32019-01-28 11:14:32 -080014499 * lpfc_modify_hba_eq_delay - Modify Delay Multiplier on EQs
14500 * @phba: HBA structure that EQs are on.
14501 * @startq: The starting EQ index to modify
14502 * @numq: The number of EQs (consecutive indexes) to modify
14503 * @usdelay: amount of delay
James Smart173edbb2012-06-12 13:54:50 -040014504 *
James Smartcb733e32019-01-28 11:14:32 -080014505 * This function revises the EQ delay on 1 or more EQs. The EQ delay
14506 * is set either by writing to a register (if supported by the SLI Port)
14507 * or by mailbox command. The mailbox command allows several EQs to be
14508 * updated at once.
James Smart173edbb2012-06-12 13:54:50 -040014509 *
James Smartcb733e32019-01-28 11:14:32 -080014510 * The @phba struct is used to send a mailbox command to HBA. The @startq
14511 * is used to get the starting EQ index to change. The @numq value is
14512 * used to specify how many consecutive EQ indexes, starting at EQ index,
14513 * are to be changed. This function is asynchronous and will wait for any
14514 * mailbox commands to finish before returning.
James Smart173edbb2012-06-12 13:54:50 -040014515 *
James Smartcb733e32019-01-28 11:14:32 -080014516 * On success this function will return a zero. If unable to allocate
14517 * enough memory this function will return -ENOMEM. If a mailbox command
14518 * fails this function will return -ENXIO. Note: on ENXIO, some EQs may
14519 * have had their delay multipler changed.
James Smart173edbb2012-06-12 13:54:50 -040014520 **/
James Smartcb733e32019-01-28 11:14:32 -080014521void
James Smart0cf07f842017-06-01 21:07:10 -070014522lpfc_modify_hba_eq_delay(struct lpfc_hba *phba, uint32_t startq,
James Smartcb733e32019-01-28 11:14:32 -080014523 uint32_t numq, uint32_t usdelay)
James Smart173edbb2012-06-12 13:54:50 -040014524{
14525 struct lpfc_mbx_modify_eq_delay *eq_delay;
14526 LPFC_MBOXQ_t *mbox;
14527 struct lpfc_queue *eq;
James Smartcb733e32019-01-28 11:14:32 -080014528 int cnt = 0, rc, length;
James Smart173edbb2012-06-12 13:54:50 -040014529 uint32_t shdr_status, shdr_add_status;
James Smartcb733e32019-01-28 11:14:32 -080014530 uint32_t dmult;
James Smart895427b2017-02-12 13:52:30 -080014531 int qidx;
James Smart173edbb2012-06-12 13:54:50 -040014532 union lpfc_sli4_cfg_shdr *shdr;
James Smart173edbb2012-06-12 13:54:50 -040014533
James Smart6a828b02019-01-28 11:14:31 -080014534 if (startq >= phba->cfg_irq_chann)
James Smartcb733e32019-01-28 11:14:32 -080014535 return;
14536
14537 if (usdelay > 0xFFFF) {
14538 lpfc_printf_log(phba, KERN_INFO, LOG_INIT | LOG_FCP | LOG_NVME,
14539 "6429 usdelay %d too large. Scaled down to "
14540 "0xFFFF.\n", usdelay);
14541 usdelay = 0xFFFF;
14542 }
14543
14544 /* set values by EQ_DELAY register if supported */
14545 if (phba->sli.sli_flag & LPFC_SLI_USE_EQDR) {
14546 for (qidx = startq; qidx < phba->cfg_irq_chann; qidx++) {
James Smart657add42019-05-21 17:49:06 -070014547 eq = phba->sli4_hba.hba_eq_hdl[qidx].eq;
James Smartcb733e32019-01-28 11:14:32 -080014548 if (!eq)
14549 continue;
14550
James Smart32517fc2019-01-28 11:14:33 -080014551 lpfc_sli4_mod_hba_eq_delay(phba, eq, usdelay);
James Smartcb733e32019-01-28 11:14:32 -080014552
14553 if (++cnt >= numq)
14554 break;
14555 }
James Smartcb733e32019-01-28 11:14:32 -080014556 return;
14557 }
14558
14559 /* Otherwise, set values by mailbox cmd */
James Smart173edbb2012-06-12 13:54:50 -040014560
14561 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smartcb733e32019-01-28 11:14:32 -080014562 if (!mbox) {
14563 lpfc_printf_log(phba, KERN_ERR, LOG_INIT | LOG_FCP | LOG_NVME,
14564 "6428 Failed allocating mailbox cmd buffer."
14565 " EQ delay was not set.\n");
14566 return;
14567 }
James Smart173edbb2012-06-12 13:54:50 -040014568 length = (sizeof(struct lpfc_mbx_modify_eq_delay) -
14569 sizeof(struct lpfc_sli4_cfg_mhdr));
14570 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14571 LPFC_MBOX_OPCODE_MODIFY_EQ_DELAY,
14572 length, LPFC_SLI4_MBX_EMBED);
14573 eq_delay = &mbox->u.mqe.un.eq_delay;
14574
14575 /* Calculate delay multiper from maximum interrupt per second */
James Smartcb733e32019-01-28 11:14:32 -080014576 dmult = (usdelay * LPFC_DMULT_CONST) / LPFC_SEC_TO_USEC;
14577 if (dmult)
14578 dmult--;
James Smart0cf07f842017-06-01 21:07:10 -070014579 if (dmult > LPFC_DMULT_MAX)
14580 dmult = LPFC_DMULT_MAX;
James Smart173edbb2012-06-12 13:54:50 -040014581
James Smart6a828b02019-01-28 11:14:31 -080014582 for (qidx = startq; qidx < phba->cfg_irq_chann; qidx++) {
James Smart657add42019-05-21 17:49:06 -070014583 eq = phba->sli4_hba.hba_eq_hdl[qidx].eq;
James Smart173edbb2012-06-12 13:54:50 -040014584 if (!eq)
14585 continue;
James Smartcb733e32019-01-28 11:14:32 -080014586 eq->q_mode = usdelay;
James Smart173edbb2012-06-12 13:54:50 -040014587 eq_delay->u.request.eq[cnt].eq_id = eq->queue_id;
14588 eq_delay->u.request.eq[cnt].phase = 0;
14589 eq_delay->u.request.eq[cnt].delay_multi = dmult;
James Smart0cf07f842017-06-01 21:07:10 -070014590
James Smartcb733e32019-01-28 11:14:32 -080014591 if (++cnt >= numq)
James Smart173edbb2012-06-12 13:54:50 -040014592 break;
14593 }
14594 eq_delay->u.request.num_eq = cnt;
14595
14596 mbox->vport = phba->pport;
14597 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart3e1f0712018-11-29 16:09:29 -080014598 mbox->ctx_buf = NULL;
14599 mbox->ctx_ndlp = NULL;
James Smart173edbb2012-06-12 13:54:50 -040014600 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14601 shdr = (union lpfc_sli4_cfg_shdr *) &eq_delay->header.cfg_shdr;
14602 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14603 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14604 if (shdr_status || shdr_add_status || rc) {
14605 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14606 "2512 MODIFY_EQ_DELAY mailbox failed with "
14607 "status x%x add_status x%x, mbx status x%x\n",
14608 shdr_status, shdr_add_status, rc);
James Smart173edbb2012-06-12 13:54:50 -040014609 }
14610 mempool_free(mbox, phba->mbox_mem_pool);
James Smartcb733e32019-01-28 11:14:32 -080014611 return;
James Smart173edbb2012-06-12 13:54:50 -040014612}
14613
14614/**
James Smart4f774512009-05-22 14:52:35 -040014615 * lpfc_eq_create - Create an Event Queue on the HBA
14616 * @phba: HBA structure that indicates port to create a queue on.
14617 * @eq: The queue structure to use to create the event queue.
14618 * @imax: The maximum interrupt per second limit.
14619 *
14620 * This function creates an event queue, as detailed in @eq, on a port,
14621 * described by @phba by sending an EQ_CREATE mailbox command to the HBA.
14622 *
14623 * The @phba struct is used to send mailbox command to HBA. The @eq struct
14624 * is used to get the entry count and entry size that are necessary to
14625 * determine the number of pages to allocate and use for this queue. This
14626 * function will send the EQ_CREATE mailbox command to the HBA to setup the
14627 * event queue. This function is asynchronous and will wait for the mailbox
14628 * command to finish before continuing.
14629 *
14630 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040014631 * memory this function will return -ENOMEM. If the queue create mailbox command
14632 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040014633 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040014634int
James Smartee020062012-09-29 11:28:52 -040014635lpfc_eq_create(struct lpfc_hba *phba, struct lpfc_queue *eq, uint32_t imax)
James Smart4f774512009-05-22 14:52:35 -040014636{
14637 struct lpfc_mbx_eq_create *eq_create;
14638 LPFC_MBOXQ_t *mbox;
14639 int rc, length, status = 0;
14640 struct lpfc_dmabuf *dmabuf;
14641 uint32_t shdr_status, shdr_add_status;
14642 union lpfc_sli4_cfg_shdr *shdr;
14643 uint16_t dmult;
James Smart49198b32010-04-06 15:04:33 -040014644 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
14645
James Smart2e90f4b2011-12-13 13:22:37 -050014646 /* sanity check on queue memory */
14647 if (!eq)
14648 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040014649 if (!phba->sli4_hba.pc_sli4_params.supported)
14650 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040014651
14652 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14653 if (!mbox)
14654 return -ENOMEM;
14655 length = (sizeof(struct lpfc_mbx_eq_create) -
14656 sizeof(struct lpfc_sli4_cfg_mhdr));
14657 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14658 LPFC_MBOX_OPCODE_EQ_CREATE,
14659 length, LPFC_SLI4_MBX_EMBED);
14660 eq_create = &mbox->u.mqe.un.eq_create;
James Smart7365f6f2018-02-22 08:18:46 -080014661 shdr = (union lpfc_sli4_cfg_shdr *) &eq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040014662 bf_set(lpfc_mbx_eq_create_num_pages, &eq_create->u.request,
14663 eq->page_count);
14664 bf_set(lpfc_eq_context_size, &eq_create->u.request.context,
14665 LPFC_EQE_SIZE);
14666 bf_set(lpfc_eq_context_valid, &eq_create->u.request.context, 1);
James Smart7365f6f2018-02-22 08:18:46 -080014667
14668 /* Use version 2 of CREATE_EQ if eqav is set */
14669 if (phba->sli4_hba.pc_sli4_params.eqav) {
14670 bf_set(lpfc_mbox_hdr_version, &shdr->request,
14671 LPFC_Q_CREATE_VERSION_2);
14672 bf_set(lpfc_eq_context_autovalid, &eq_create->u.request.context,
14673 phba->sli4_hba.pc_sli4_params.eqav);
14674 }
14675
James Smart2c9c5a02015-04-07 15:07:15 -040014676 /* don't setup delay multiplier using EQ_CREATE */
14677 dmult = 0;
James Smart4f774512009-05-22 14:52:35 -040014678 bf_set(lpfc_eq_context_delay_multi, &eq_create->u.request.context,
14679 dmult);
14680 switch (eq->entry_count) {
14681 default:
14682 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14683 "0360 Unsupported EQ count. (%d)\n",
14684 eq->entry_count);
James Smart04d210c2019-05-21 17:49:03 -070014685 if (eq->entry_count < 256) {
14686 status = -EINVAL;
14687 goto out;
14688 }
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060014689 /* fall through - otherwise default to smallest count */
James Smart4f774512009-05-22 14:52:35 -040014690 case 256:
14691 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
14692 LPFC_EQ_CNT_256);
14693 break;
14694 case 512:
14695 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
14696 LPFC_EQ_CNT_512);
14697 break;
14698 case 1024:
14699 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
14700 LPFC_EQ_CNT_1024);
14701 break;
14702 case 2048:
14703 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
14704 LPFC_EQ_CNT_2048);
14705 break;
14706 case 4096:
14707 bf_set(lpfc_eq_context_count, &eq_create->u.request.context,
14708 LPFC_EQ_CNT_4096);
14709 break;
14710 }
14711 list_for_each_entry(dmabuf, &eq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040014712 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040014713 eq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
14714 putPaddrLow(dmabuf->phys);
14715 eq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
14716 putPaddrHigh(dmabuf->phys);
14717 }
14718 mbox->vport = phba->pport;
14719 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart3e1f0712018-11-29 16:09:29 -080014720 mbox->ctx_buf = NULL;
14721 mbox->ctx_ndlp = NULL;
James Smart4f774512009-05-22 14:52:35 -040014722 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smart4f774512009-05-22 14:52:35 -040014723 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14724 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14725 if (shdr_status || shdr_add_status || rc) {
14726 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14727 "2500 EQ_CREATE mailbox failed with "
14728 "status x%x add_status x%x, mbx status x%x\n",
14729 shdr_status, shdr_add_status, rc);
14730 status = -ENXIO;
14731 }
14732 eq->type = LPFC_EQ;
14733 eq->subtype = LPFC_NONE;
14734 eq->queue_id = bf_get(lpfc_mbx_eq_create_q_id, &eq_create->u.response);
14735 if (eq->queue_id == 0xFFFF)
14736 status = -ENXIO;
14737 eq->host_index = 0;
James Smart32517fc2019-01-28 11:14:33 -080014738 eq->notify_interval = LPFC_EQ_NOTIFY_INTRVL;
14739 eq->max_proc_limit = LPFC_EQ_MAX_PROC_LIMIT;
James Smart04d210c2019-05-21 17:49:03 -070014740out:
James Smart8fa38512009-07-19 10:01:03 -040014741 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040014742 return status;
14743}
14744
14745/**
14746 * lpfc_cq_create - Create a Completion Queue on the HBA
14747 * @phba: HBA structure that indicates port to create a queue on.
14748 * @cq: The queue structure to use to create the completion queue.
14749 * @eq: The event queue to bind this completion queue to.
14750 *
14751 * This function creates a completion queue, as detailed in @wq, on a port,
14752 * described by @phba by sending a CQ_CREATE mailbox command to the HBA.
14753 *
14754 * The @phba struct is used to send mailbox command to HBA. The @cq struct
14755 * is used to get the entry count and entry size that are necessary to
14756 * determine the number of pages to allocate and use for this queue. The @eq
14757 * is used to indicate which event queue to bind this completion queue to. This
14758 * function will send the CQ_CREATE mailbox command to the HBA to setup the
14759 * completion queue. This function is asynchronous and will wait for the mailbox
14760 * command to finish before continuing.
14761 *
14762 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040014763 * memory this function will return -ENOMEM. If the queue create mailbox command
14764 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040014765 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040014766int
James Smart4f774512009-05-22 14:52:35 -040014767lpfc_cq_create(struct lpfc_hba *phba, struct lpfc_queue *cq,
14768 struct lpfc_queue *eq, uint32_t type, uint32_t subtype)
14769{
14770 struct lpfc_mbx_cq_create *cq_create;
14771 struct lpfc_dmabuf *dmabuf;
14772 LPFC_MBOXQ_t *mbox;
14773 int rc, length, status = 0;
14774 uint32_t shdr_status, shdr_add_status;
14775 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040014776
James Smart2e90f4b2011-12-13 13:22:37 -050014777 /* sanity check on queue memory */
14778 if (!cq || !eq)
14779 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040014780
James Smart4f774512009-05-22 14:52:35 -040014781 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14782 if (!mbox)
14783 return -ENOMEM;
14784 length = (sizeof(struct lpfc_mbx_cq_create) -
14785 sizeof(struct lpfc_sli4_cfg_mhdr));
14786 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
14787 LPFC_MBOX_OPCODE_CQ_CREATE,
14788 length, LPFC_SLI4_MBX_EMBED);
14789 cq_create = &mbox->u.mqe.un.cq_create;
James Smart5a6f1332011-03-11 16:05:35 -050014790 shdr = (union lpfc_sli4_cfg_shdr *) &cq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040014791 bf_set(lpfc_mbx_cq_create_num_pages, &cq_create->u.request,
14792 cq->page_count);
14793 bf_set(lpfc_cq_context_event, &cq_create->u.request.context, 1);
14794 bf_set(lpfc_cq_context_valid, &cq_create->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050014795 bf_set(lpfc_mbox_hdr_version, &shdr->request,
14796 phba->sli4_hba.pc_sli4_params.cqv);
14797 if (phba->sli4_hba.pc_sli4_params.cqv == LPFC_Q_CREATE_VERSION_2) {
James Smart81b96ed2017-11-20 16:00:29 -080014798 bf_set(lpfc_mbx_cq_create_page_size, &cq_create->u.request,
14799 (cq->page_size / SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050014800 bf_set(lpfc_cq_eq_id_2, &cq_create->u.request.context,
14801 eq->queue_id);
James Smart7365f6f2018-02-22 08:18:46 -080014802 bf_set(lpfc_cq_context_autovalid, &cq_create->u.request.context,
14803 phba->sli4_hba.pc_sli4_params.cqav);
James Smart5a6f1332011-03-11 16:05:35 -050014804 } else {
14805 bf_set(lpfc_cq_eq_id, &cq_create->u.request.context,
14806 eq->queue_id);
14807 }
James Smart4f774512009-05-22 14:52:35 -040014808 switch (cq->entry_count) {
James Smart81b96ed2017-11-20 16:00:29 -080014809 case 2048:
14810 case 4096:
14811 if (phba->sli4_hba.pc_sli4_params.cqv ==
14812 LPFC_Q_CREATE_VERSION_2) {
14813 cq_create->u.request.context.lpfc_cq_context_count =
14814 cq->entry_count;
14815 bf_set(lpfc_cq_context_count,
14816 &cq_create->u.request.context,
14817 LPFC_CQ_CNT_WORD7);
14818 break;
14819 }
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060014820 /* fall through */
James Smart4f774512009-05-22 14:52:35 -040014821 default:
14822 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart2ea259e2017-02-12 13:52:27 -080014823 "0361 Unsupported CQ count: "
James Smart64eb4dc2017-05-15 15:20:49 -070014824 "entry cnt %d sz %d pg cnt %d\n",
James Smart2ea259e2017-02-12 13:52:27 -080014825 cq->entry_count, cq->entry_size,
James Smart64eb4dc2017-05-15 15:20:49 -070014826 cq->page_count);
James Smart4f4c1862012-06-12 13:54:02 -040014827 if (cq->entry_count < 256) {
14828 status = -EINVAL;
14829 goto out;
14830 }
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060014831 /* fall through - otherwise default to smallest count */
James Smart4f774512009-05-22 14:52:35 -040014832 case 256:
14833 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
14834 LPFC_CQ_CNT_256);
14835 break;
14836 case 512:
14837 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
14838 LPFC_CQ_CNT_512);
14839 break;
14840 case 1024:
14841 bf_set(lpfc_cq_context_count, &cq_create->u.request.context,
14842 LPFC_CQ_CNT_1024);
14843 break;
14844 }
14845 list_for_each_entry(dmabuf, &cq->page_list, list) {
James Smart81b96ed2017-11-20 16:00:29 -080014846 memset(dmabuf->virt, 0, cq->page_size);
James Smart4f774512009-05-22 14:52:35 -040014847 cq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
14848 putPaddrLow(dmabuf->phys);
14849 cq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
14850 putPaddrHigh(dmabuf->phys);
14851 }
14852 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
14853
14854 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040014855 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
14856 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
14857 if (shdr_status || shdr_add_status || rc) {
14858 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
14859 "2501 CQ_CREATE mailbox failed with "
14860 "status x%x add_status x%x, mbx status x%x\n",
14861 shdr_status, shdr_add_status, rc);
14862 status = -ENXIO;
14863 goto out;
14864 }
14865 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
14866 if (cq->queue_id == 0xFFFF) {
14867 status = -ENXIO;
14868 goto out;
14869 }
14870 /* link the cq onto the parent eq child list */
14871 list_add_tail(&cq->list, &eq->child_list);
14872 /* Set up completion queue's type and subtype */
14873 cq->type = type;
14874 cq->subtype = subtype;
14875 cq->queue_id = bf_get(lpfc_mbx_cq_create_q_id, &cq_create->u.response);
James Smart2a622bf2011-02-16 12:40:06 -050014876 cq->assoc_qid = eq->queue_id;
James Smart6a828b02019-01-28 11:14:31 -080014877 cq->assoc_qp = eq;
James Smart4f774512009-05-22 14:52:35 -040014878 cq->host_index = 0;
James Smart32517fc2019-01-28 11:14:33 -080014879 cq->notify_interval = LPFC_CQ_NOTIFY_INTRVL;
14880 cq->max_proc_limit = min(phba->cfg_cq_max_proc_limit, cq->entry_count);
James Smart4f774512009-05-22 14:52:35 -040014881
James Smart6a828b02019-01-28 11:14:31 -080014882 if (cq->queue_id > phba->sli4_hba.cq_max)
14883 phba->sli4_hba.cq_max = cq->queue_id;
James Smart8fa38512009-07-19 10:01:03 -040014884out:
14885 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040014886 return status;
14887}
14888
14889/**
James Smart2d7dbc42017-02-12 13:52:35 -080014890 * lpfc_cq_create_set - Create a set of Completion Queues on the HBA for MRQ
14891 * @phba: HBA structure that indicates port to create a queue on.
14892 * @cqp: The queue structure array to use to create the completion queues.
James Smartcdb42be2019-01-28 11:14:21 -080014893 * @hdwq: The hardware queue array with the EQ to bind completion queues to.
James Smart2d7dbc42017-02-12 13:52:35 -080014894 *
14895 * This function creates a set of completion queue, s to support MRQ
14896 * as detailed in @cqp, on a port,
14897 * described by @phba by sending a CREATE_CQ_SET mailbox command to the HBA.
14898 *
14899 * The @phba struct is used to send mailbox command to HBA. The @cq struct
14900 * is used to get the entry count and entry size that are necessary to
14901 * determine the number of pages to allocate and use for this queue. The @eq
14902 * is used to indicate which event queue to bind this completion queue to. This
14903 * function will send the CREATE_CQ_SET mailbox command to the HBA to setup the
14904 * completion queue. This function is asynchronous and will wait for the mailbox
14905 * command to finish before continuing.
14906 *
14907 * On success this function will return a zero. If unable to allocate enough
14908 * memory this function will return -ENOMEM. If the queue create mailbox command
14909 * fails this function will return -ENXIO.
14910 **/
14911int
14912lpfc_cq_create_set(struct lpfc_hba *phba, struct lpfc_queue **cqp,
James Smartcdb42be2019-01-28 11:14:21 -080014913 struct lpfc_sli4_hdw_queue *hdwq, uint32_t type,
14914 uint32_t subtype)
James Smart2d7dbc42017-02-12 13:52:35 -080014915{
14916 struct lpfc_queue *cq;
14917 struct lpfc_queue *eq;
14918 struct lpfc_mbx_cq_create_set *cq_set;
14919 struct lpfc_dmabuf *dmabuf;
14920 LPFC_MBOXQ_t *mbox;
14921 int rc, length, alloclen, status = 0;
14922 int cnt, idx, numcq, page_idx = 0;
14923 uint32_t shdr_status, shdr_add_status;
14924 union lpfc_sli4_cfg_shdr *shdr;
14925 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
14926
14927 /* sanity check on queue memory */
14928 numcq = phba->cfg_nvmet_mrq;
James Smartcdb42be2019-01-28 11:14:21 -080014929 if (!cqp || !hdwq || !numcq)
James Smart2d7dbc42017-02-12 13:52:35 -080014930 return -ENODEV;
James Smart2d7dbc42017-02-12 13:52:35 -080014931
14932 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
14933 if (!mbox)
14934 return -ENOMEM;
14935
14936 length = sizeof(struct lpfc_mbx_cq_create_set);
14937 length += ((numcq * cqp[0]->page_count) *
14938 sizeof(struct dma_address));
14939 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
14940 LPFC_MBOX_OPCODE_FCOE_CQ_CREATE_SET, length,
14941 LPFC_SLI4_MBX_NEMBED);
14942 if (alloclen < length) {
14943 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14944 "3098 Allocated DMA memory size (%d) is "
14945 "less than the requested DMA memory size "
14946 "(%d)\n", alloclen, length);
14947 status = -ENOMEM;
14948 goto out;
14949 }
14950 cq_set = mbox->sge_array->addr[0];
14951 shdr = (union lpfc_sli4_cfg_shdr *)&cq_set->cfg_shdr;
14952 bf_set(lpfc_mbox_hdr_version, &shdr->request, 0);
14953
14954 for (idx = 0; idx < numcq; idx++) {
14955 cq = cqp[idx];
James Smartcdb42be2019-01-28 11:14:21 -080014956 eq = hdwq[idx].hba_eq;
James Smart2d7dbc42017-02-12 13:52:35 -080014957 if (!cq || !eq) {
14958 status = -ENOMEM;
14959 goto out;
14960 }
James Smart81b96ed2017-11-20 16:00:29 -080014961 if (!phba->sli4_hba.pc_sli4_params.supported)
14962 hw_page_size = cq->page_size;
James Smart2d7dbc42017-02-12 13:52:35 -080014963
14964 switch (idx) {
14965 case 0:
14966 bf_set(lpfc_mbx_cq_create_set_page_size,
14967 &cq_set->u.request,
14968 (hw_page_size / SLI4_PAGE_SIZE));
14969 bf_set(lpfc_mbx_cq_create_set_num_pages,
14970 &cq_set->u.request, cq->page_count);
14971 bf_set(lpfc_mbx_cq_create_set_evt,
14972 &cq_set->u.request, 1);
14973 bf_set(lpfc_mbx_cq_create_set_valid,
14974 &cq_set->u.request, 1);
14975 bf_set(lpfc_mbx_cq_create_set_cqe_size,
14976 &cq_set->u.request, 0);
14977 bf_set(lpfc_mbx_cq_create_set_num_cq,
14978 &cq_set->u.request, numcq);
James Smart7365f6f2018-02-22 08:18:46 -080014979 bf_set(lpfc_mbx_cq_create_set_autovalid,
14980 &cq_set->u.request,
14981 phba->sli4_hba.pc_sli4_params.cqav);
James Smart2d7dbc42017-02-12 13:52:35 -080014982 switch (cq->entry_count) {
James Smart81b96ed2017-11-20 16:00:29 -080014983 case 2048:
14984 case 4096:
14985 if (phba->sli4_hba.pc_sli4_params.cqv ==
14986 LPFC_Q_CREATE_VERSION_2) {
14987 bf_set(lpfc_mbx_cq_create_set_cqe_cnt,
14988 &cq_set->u.request,
14989 cq->entry_count);
14990 bf_set(lpfc_mbx_cq_create_set_cqe_cnt,
14991 &cq_set->u.request,
14992 LPFC_CQ_CNT_WORD7);
14993 break;
14994 }
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060014995 /* fall through */
James Smart2d7dbc42017-02-12 13:52:35 -080014996 default:
14997 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
14998 "3118 Bad CQ count. (%d)\n",
14999 cq->entry_count);
15000 if (cq->entry_count < 256) {
15001 status = -EINVAL;
15002 goto out;
15003 }
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060015004 /* fall through - otherwise default to smallest */
James Smart2d7dbc42017-02-12 13:52:35 -080015005 case 256:
15006 bf_set(lpfc_mbx_cq_create_set_cqe_cnt,
15007 &cq_set->u.request, LPFC_CQ_CNT_256);
15008 break;
15009 case 512:
15010 bf_set(lpfc_mbx_cq_create_set_cqe_cnt,
15011 &cq_set->u.request, LPFC_CQ_CNT_512);
15012 break;
15013 case 1024:
15014 bf_set(lpfc_mbx_cq_create_set_cqe_cnt,
15015 &cq_set->u.request, LPFC_CQ_CNT_1024);
15016 break;
15017 }
15018 bf_set(lpfc_mbx_cq_create_set_eq_id0,
15019 &cq_set->u.request, eq->queue_id);
15020 break;
15021 case 1:
15022 bf_set(lpfc_mbx_cq_create_set_eq_id1,
15023 &cq_set->u.request, eq->queue_id);
15024 break;
15025 case 2:
15026 bf_set(lpfc_mbx_cq_create_set_eq_id2,
15027 &cq_set->u.request, eq->queue_id);
15028 break;
15029 case 3:
15030 bf_set(lpfc_mbx_cq_create_set_eq_id3,
15031 &cq_set->u.request, eq->queue_id);
15032 break;
15033 case 4:
15034 bf_set(lpfc_mbx_cq_create_set_eq_id4,
15035 &cq_set->u.request, eq->queue_id);
15036 break;
15037 case 5:
15038 bf_set(lpfc_mbx_cq_create_set_eq_id5,
15039 &cq_set->u.request, eq->queue_id);
15040 break;
15041 case 6:
15042 bf_set(lpfc_mbx_cq_create_set_eq_id6,
15043 &cq_set->u.request, eq->queue_id);
15044 break;
15045 case 7:
15046 bf_set(lpfc_mbx_cq_create_set_eq_id7,
15047 &cq_set->u.request, eq->queue_id);
15048 break;
15049 case 8:
15050 bf_set(lpfc_mbx_cq_create_set_eq_id8,
15051 &cq_set->u.request, eq->queue_id);
15052 break;
15053 case 9:
15054 bf_set(lpfc_mbx_cq_create_set_eq_id9,
15055 &cq_set->u.request, eq->queue_id);
15056 break;
15057 case 10:
15058 bf_set(lpfc_mbx_cq_create_set_eq_id10,
15059 &cq_set->u.request, eq->queue_id);
15060 break;
15061 case 11:
15062 bf_set(lpfc_mbx_cq_create_set_eq_id11,
15063 &cq_set->u.request, eq->queue_id);
15064 break;
15065 case 12:
15066 bf_set(lpfc_mbx_cq_create_set_eq_id12,
15067 &cq_set->u.request, eq->queue_id);
15068 break;
15069 case 13:
15070 bf_set(lpfc_mbx_cq_create_set_eq_id13,
15071 &cq_set->u.request, eq->queue_id);
15072 break;
15073 case 14:
15074 bf_set(lpfc_mbx_cq_create_set_eq_id14,
15075 &cq_set->u.request, eq->queue_id);
15076 break;
15077 case 15:
15078 bf_set(lpfc_mbx_cq_create_set_eq_id15,
15079 &cq_set->u.request, eq->queue_id);
15080 break;
15081 }
15082
15083 /* link the cq onto the parent eq child list */
15084 list_add_tail(&cq->list, &eq->child_list);
15085 /* Set up completion queue's type and subtype */
15086 cq->type = type;
15087 cq->subtype = subtype;
15088 cq->assoc_qid = eq->queue_id;
James Smart6a828b02019-01-28 11:14:31 -080015089 cq->assoc_qp = eq;
James Smart2d7dbc42017-02-12 13:52:35 -080015090 cq->host_index = 0;
James Smart32517fc2019-01-28 11:14:33 -080015091 cq->notify_interval = LPFC_CQ_NOTIFY_INTRVL;
15092 cq->max_proc_limit = min(phba->cfg_cq_max_proc_limit,
15093 cq->entry_count);
James Smart81b96ed2017-11-20 16:00:29 -080015094 cq->chann = idx;
James Smart2d7dbc42017-02-12 13:52:35 -080015095
15096 rc = 0;
15097 list_for_each_entry(dmabuf, &cq->page_list, list) {
15098 memset(dmabuf->virt, 0, hw_page_size);
15099 cnt = page_idx + dmabuf->buffer_tag;
15100 cq_set->u.request.page[cnt].addr_lo =
15101 putPaddrLow(dmabuf->phys);
15102 cq_set->u.request.page[cnt].addr_hi =
15103 putPaddrHigh(dmabuf->phys);
15104 rc++;
15105 }
15106 page_idx += rc;
15107 }
15108
15109 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
15110
15111 /* The IOCTL status is embedded in the mailbox subheader. */
15112 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15113 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15114 if (shdr_status || shdr_add_status || rc) {
15115 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15116 "3119 CQ_CREATE_SET mailbox failed with "
15117 "status x%x add_status x%x, mbx status x%x\n",
15118 shdr_status, shdr_add_status, rc);
15119 status = -ENXIO;
15120 goto out;
15121 }
15122 rc = bf_get(lpfc_mbx_cq_create_set_base_id, &cq_set->u.response);
15123 if (rc == 0xFFFF) {
15124 status = -ENXIO;
15125 goto out;
15126 }
15127
15128 for (idx = 0; idx < numcq; idx++) {
15129 cq = cqp[idx];
15130 cq->queue_id = rc + idx;
James Smart6a828b02019-01-28 11:14:31 -080015131 if (cq->queue_id > phba->sli4_hba.cq_max)
15132 phba->sli4_hba.cq_max = cq->queue_id;
James Smart2d7dbc42017-02-12 13:52:35 -080015133 }
15134
15135out:
15136 lpfc_sli4_mbox_cmd_free(phba, mbox);
15137 return status;
15138}
15139
15140/**
James Smartb19a0612010-04-06 14:48:51 -040015141 * lpfc_mq_create_fb_init - Send MCC_CREATE without async events registration
James Smart04c68492009-05-22 14:52:52 -040015142 * @phba: HBA structure that indicates port to create a queue on.
15143 * @mq: The queue structure to use to create the mailbox queue.
James Smartb19a0612010-04-06 14:48:51 -040015144 * @mbox: An allocated pointer to type LPFC_MBOXQ_t
15145 * @cq: The completion queue to associate with this cq.
James Smart04c68492009-05-22 14:52:52 -040015146 *
James Smartb19a0612010-04-06 14:48:51 -040015147 * This function provides failback (fb) functionality when the
15148 * mq_create_ext fails on older FW generations. It's purpose is identical
15149 * to mq_create_ext otherwise.
James Smart04c68492009-05-22 14:52:52 -040015150 *
James Smartb19a0612010-04-06 14:48:51 -040015151 * This routine cannot fail as all attributes were previously accessed and
15152 * initialized in mq_create_ext.
James Smart04c68492009-05-22 14:52:52 -040015153 **/
James Smartb19a0612010-04-06 14:48:51 -040015154static void
15155lpfc_mq_create_fb_init(struct lpfc_hba *phba, struct lpfc_queue *mq,
15156 LPFC_MBOXQ_t *mbox, struct lpfc_queue *cq)
James Smart04c68492009-05-22 14:52:52 -040015157{
15158 struct lpfc_mbx_mq_create *mq_create;
15159 struct lpfc_dmabuf *dmabuf;
James Smartb19a0612010-04-06 14:48:51 -040015160 int length;
James Smart04c68492009-05-22 14:52:52 -040015161
James Smart04c68492009-05-22 14:52:52 -040015162 length = (sizeof(struct lpfc_mbx_mq_create) -
15163 sizeof(struct lpfc_sli4_cfg_mhdr));
15164 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
15165 LPFC_MBOX_OPCODE_MQ_CREATE,
15166 length, LPFC_SLI4_MBX_EMBED);
15167 mq_create = &mbox->u.mqe.un.mq_create;
15168 bf_set(lpfc_mbx_mq_create_num_pages, &mq_create->u.request,
James Smartb19a0612010-04-06 14:48:51 -040015169 mq->page_count);
James Smart04c68492009-05-22 14:52:52 -040015170 bf_set(lpfc_mq_context_cq_id, &mq_create->u.request.context,
James Smartb19a0612010-04-06 14:48:51 -040015171 cq->queue_id);
James Smart04c68492009-05-22 14:52:52 -040015172 bf_set(lpfc_mq_context_valid, &mq_create->u.request.context, 1);
15173 switch (mq->entry_count) {
James Smart04c68492009-05-22 14:52:52 -040015174 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050015175 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
15176 LPFC_MQ_RING_SIZE_16);
James Smart04c68492009-05-22 14:52:52 -040015177 break;
15178 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050015179 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
15180 LPFC_MQ_RING_SIZE_32);
James Smart04c68492009-05-22 14:52:52 -040015181 break;
15182 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050015183 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
15184 LPFC_MQ_RING_SIZE_64);
James Smart04c68492009-05-22 14:52:52 -040015185 break;
15186 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050015187 bf_set(lpfc_mq_context_ring_size, &mq_create->u.request.context,
15188 LPFC_MQ_RING_SIZE_128);
James Smart04c68492009-05-22 14:52:52 -040015189 break;
15190 }
15191 list_for_each_entry(dmabuf, &mq->page_list, list) {
15192 mq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
James Smartb19a0612010-04-06 14:48:51 -040015193 putPaddrLow(dmabuf->phys);
James Smart04c68492009-05-22 14:52:52 -040015194 mq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smartb19a0612010-04-06 14:48:51 -040015195 putPaddrHigh(dmabuf->phys);
15196 }
15197}
15198
15199/**
15200 * lpfc_mq_create - Create a mailbox Queue on the HBA
15201 * @phba: HBA structure that indicates port to create a queue on.
15202 * @mq: The queue structure to use to create the mailbox queue.
15203 * @cq: The completion queue to associate with this cq.
15204 * @subtype: The queue's subtype.
15205 *
15206 * This function creates a mailbox queue, as detailed in @mq, on a port,
15207 * described by @phba by sending a MQ_CREATE mailbox command to the HBA.
15208 *
15209 * The @phba struct is used to send mailbox command to HBA. The @cq struct
15210 * is used to get the entry count and entry size that are necessary to
15211 * determine the number of pages to allocate and use for this queue. This
15212 * function will send the MQ_CREATE mailbox command to the HBA to setup the
15213 * mailbox queue. This function is asynchronous and will wait for the mailbox
15214 * command to finish before continuing.
15215 *
15216 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040015217 * memory this function will return -ENOMEM. If the queue create mailbox command
15218 * fails this function will return -ENXIO.
James Smartb19a0612010-04-06 14:48:51 -040015219 **/
15220int32_t
15221lpfc_mq_create(struct lpfc_hba *phba, struct lpfc_queue *mq,
15222 struct lpfc_queue *cq, uint32_t subtype)
15223{
15224 struct lpfc_mbx_mq_create *mq_create;
15225 struct lpfc_mbx_mq_create_ext *mq_create_ext;
15226 struct lpfc_dmabuf *dmabuf;
15227 LPFC_MBOXQ_t *mbox;
15228 int rc, length, status = 0;
15229 uint32_t shdr_status, shdr_add_status;
15230 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040015231 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smartb19a0612010-04-06 14:48:51 -040015232
James Smart2e90f4b2011-12-13 13:22:37 -050015233 /* sanity check on queue memory */
15234 if (!mq || !cq)
15235 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040015236 if (!phba->sli4_hba.pc_sli4_params.supported)
15237 hw_page_size = SLI4_PAGE_SIZE;
James Smartb19a0612010-04-06 14:48:51 -040015238
15239 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15240 if (!mbox)
15241 return -ENOMEM;
15242 length = (sizeof(struct lpfc_mbx_mq_create_ext) -
15243 sizeof(struct lpfc_sli4_cfg_mhdr));
15244 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
15245 LPFC_MBOX_OPCODE_MQ_CREATE_EXT,
15246 length, LPFC_SLI4_MBX_EMBED);
15247
15248 mq_create_ext = &mbox->u.mqe.un.mq_create_ext;
James Smart5a6f1332011-03-11 16:05:35 -050015249 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create_ext->header.cfg_shdr;
James Smart70f3c072010-12-15 17:57:33 -050015250 bf_set(lpfc_mbx_mq_create_ext_num_pages,
15251 &mq_create_ext->u.request, mq->page_count);
15252 bf_set(lpfc_mbx_mq_create_ext_async_evt_link,
15253 &mq_create_ext->u.request, 1);
15254 bf_set(lpfc_mbx_mq_create_ext_async_evt_fip,
James Smartb19a0612010-04-06 14:48:51 -040015255 &mq_create_ext->u.request, 1);
15256 bf_set(lpfc_mbx_mq_create_ext_async_evt_group5,
15257 &mq_create_ext->u.request, 1);
James Smart70f3c072010-12-15 17:57:33 -050015258 bf_set(lpfc_mbx_mq_create_ext_async_evt_fc,
15259 &mq_create_ext->u.request, 1);
15260 bf_set(lpfc_mbx_mq_create_ext_async_evt_sli,
15261 &mq_create_ext->u.request, 1);
James Smartb19a0612010-04-06 14:48:51 -040015262 bf_set(lpfc_mq_context_valid, &mq_create_ext->u.request.context, 1);
James Smart5a6f1332011-03-11 16:05:35 -050015263 bf_set(lpfc_mbox_hdr_version, &shdr->request,
15264 phba->sli4_hba.pc_sli4_params.mqv);
15265 if (phba->sli4_hba.pc_sli4_params.mqv == LPFC_Q_CREATE_VERSION_1)
15266 bf_set(lpfc_mbx_mq_create_ext_cq_id, &mq_create_ext->u.request,
15267 cq->queue_id);
15268 else
15269 bf_set(lpfc_mq_context_cq_id, &mq_create_ext->u.request.context,
15270 cq->queue_id);
James Smartb19a0612010-04-06 14:48:51 -040015271 switch (mq->entry_count) {
15272 default:
15273 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15274 "0362 Unsupported MQ count. (%d)\n",
15275 mq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040015276 if (mq->entry_count < 16) {
15277 status = -EINVAL;
15278 goto out;
15279 }
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060015280 /* fall through - otherwise default to smallest count */
James Smartb19a0612010-04-06 14:48:51 -040015281 case 16:
James Smart5a6f1332011-03-11 16:05:35 -050015282 bf_set(lpfc_mq_context_ring_size,
15283 &mq_create_ext->u.request.context,
15284 LPFC_MQ_RING_SIZE_16);
James Smartb19a0612010-04-06 14:48:51 -040015285 break;
15286 case 32:
James Smart5a6f1332011-03-11 16:05:35 -050015287 bf_set(lpfc_mq_context_ring_size,
15288 &mq_create_ext->u.request.context,
15289 LPFC_MQ_RING_SIZE_32);
James Smartb19a0612010-04-06 14:48:51 -040015290 break;
15291 case 64:
James Smart5a6f1332011-03-11 16:05:35 -050015292 bf_set(lpfc_mq_context_ring_size,
15293 &mq_create_ext->u.request.context,
15294 LPFC_MQ_RING_SIZE_64);
James Smartb19a0612010-04-06 14:48:51 -040015295 break;
15296 case 128:
James Smart5a6f1332011-03-11 16:05:35 -050015297 bf_set(lpfc_mq_context_ring_size,
15298 &mq_create_ext->u.request.context,
15299 LPFC_MQ_RING_SIZE_128);
James Smartb19a0612010-04-06 14:48:51 -040015300 break;
15301 }
15302 list_for_each_entry(dmabuf, &mq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040015303 memset(dmabuf->virt, 0, hw_page_size);
James Smartb19a0612010-04-06 14:48:51 -040015304 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_lo =
15305 putPaddrLow(dmabuf->phys);
15306 mq_create_ext->u.request.page[dmabuf->buffer_tag].addr_hi =
James Smart04c68492009-05-22 14:52:52 -040015307 putPaddrHigh(dmabuf->phys);
15308 }
15309 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smartb19a0612010-04-06 14:48:51 -040015310 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
15311 &mq_create_ext->u.response);
15312 if (rc != MBX_SUCCESS) {
15313 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
15314 "2795 MQ_CREATE_EXT failed with "
15315 "status x%x. Failback to MQ_CREATE.\n",
15316 rc);
15317 lpfc_mq_create_fb_init(phba, mq, mbox, cq);
15318 mq_create = &mbox->u.mqe.un.mq_create;
15319 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
15320 shdr = (union lpfc_sli4_cfg_shdr *) &mq_create->header.cfg_shdr;
15321 mq->queue_id = bf_get(lpfc_mbx_mq_create_q_id,
15322 &mq_create->u.response);
15323 }
15324
James Smart04c68492009-05-22 14:52:52 -040015325 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart04c68492009-05-22 14:52:52 -040015326 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15327 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15328 if (shdr_status || shdr_add_status || rc) {
15329 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15330 "2502 MQ_CREATE mailbox failed with "
15331 "status x%x add_status x%x, mbx status x%x\n",
15332 shdr_status, shdr_add_status, rc);
15333 status = -ENXIO;
15334 goto out;
15335 }
James Smart04c68492009-05-22 14:52:52 -040015336 if (mq->queue_id == 0xFFFF) {
15337 status = -ENXIO;
15338 goto out;
15339 }
15340 mq->type = LPFC_MQ;
James Smart2a622bf2011-02-16 12:40:06 -050015341 mq->assoc_qid = cq->queue_id;
James Smart04c68492009-05-22 14:52:52 -040015342 mq->subtype = subtype;
15343 mq->host_index = 0;
15344 mq->hba_index = 0;
15345
15346 /* link the mq onto the parent cq child list */
15347 list_add_tail(&mq->list, &cq->child_list);
15348out:
James Smart8fa38512009-07-19 10:01:03 -040015349 mempool_free(mbox, phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040015350 return status;
15351}
15352
15353/**
James Smart4f774512009-05-22 14:52:35 -040015354 * lpfc_wq_create - Create a Work Queue on the HBA
15355 * @phba: HBA structure that indicates port to create a queue on.
15356 * @wq: The queue structure to use to create the work queue.
15357 * @cq: The completion queue to bind this work queue to.
15358 * @subtype: The subtype of the work queue indicating its functionality.
15359 *
15360 * This function creates a work queue, as detailed in @wq, on a port, described
15361 * by @phba by sending a WQ_CREATE mailbox command to the HBA.
15362 *
15363 * The @phba struct is used to send mailbox command to HBA. The @wq struct
15364 * is used to get the entry count and entry size that are necessary to
15365 * determine the number of pages to allocate and use for this queue. The @cq
15366 * is used to indicate which completion queue to bind this work queue to. This
15367 * function will send the WQ_CREATE mailbox command to the HBA to setup the
15368 * work queue. This function is asynchronous and will wait for the mailbox
15369 * command to finish before continuing.
15370 *
15371 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040015372 * memory this function will return -ENOMEM. If the queue create mailbox command
15373 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040015374 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040015375int
James Smart4f774512009-05-22 14:52:35 -040015376lpfc_wq_create(struct lpfc_hba *phba, struct lpfc_queue *wq,
15377 struct lpfc_queue *cq, uint32_t subtype)
15378{
15379 struct lpfc_mbx_wq_create *wq_create;
15380 struct lpfc_dmabuf *dmabuf;
15381 LPFC_MBOXQ_t *mbox;
15382 int rc, length, status = 0;
15383 uint32_t shdr_status, shdr_add_status;
15384 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040015385 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart5a6f1332011-03-11 16:05:35 -050015386 struct dma_address *page;
James Smart962bc512013-01-03 15:44:00 -050015387 void __iomem *bar_memmap_p;
15388 uint32_t db_offset;
15389 uint16_t pci_barset;
James Smart1351e692018-02-22 08:18:43 -080015390 uint8_t dpp_barset;
15391 uint32_t dpp_offset;
15392 unsigned long pg_addr;
James Smart81b96ed2017-11-20 16:00:29 -080015393 uint8_t wq_create_version;
James Smart49198b32010-04-06 15:04:33 -040015394
James Smart2e90f4b2011-12-13 13:22:37 -050015395 /* sanity check on queue memory */
15396 if (!wq || !cq)
15397 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040015398 if (!phba->sli4_hba.pc_sli4_params.supported)
James Smart81b96ed2017-11-20 16:00:29 -080015399 hw_page_size = wq->page_size;
James Smart4f774512009-05-22 14:52:35 -040015400
15401 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15402 if (!mbox)
15403 return -ENOMEM;
15404 length = (sizeof(struct lpfc_mbx_wq_create) -
15405 sizeof(struct lpfc_sli4_cfg_mhdr));
15406 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
15407 LPFC_MBOX_OPCODE_FCOE_WQ_CREATE,
15408 length, LPFC_SLI4_MBX_EMBED);
15409 wq_create = &mbox->u.mqe.un.wq_create;
James Smart5a6f1332011-03-11 16:05:35 -050015410 shdr = (union lpfc_sli4_cfg_shdr *) &wq_create->header.cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040015411 bf_set(lpfc_mbx_wq_create_num_pages, &wq_create->u.request,
15412 wq->page_count);
15413 bf_set(lpfc_mbx_wq_create_cq_id, &wq_create->u.request,
15414 cq->queue_id);
James Smart0c651872013-07-15 18:33:23 -040015415
15416 /* wqv is the earliest version supported, NOT the latest */
James Smart5a6f1332011-03-11 16:05:35 -050015417 bf_set(lpfc_mbox_hdr_version, &shdr->request,
15418 phba->sli4_hba.pc_sli4_params.wqv);
James Smart962bc512013-01-03 15:44:00 -050015419
James Smartc176ffa2018-01-30 15:58:46 -080015420 if ((phba->sli4_hba.pc_sli4_params.wqsize & LPFC_WQ_SZ128_SUPPORT) ||
15421 (wq->page_size > SLI4_PAGE_SIZE))
James Smart81b96ed2017-11-20 16:00:29 -080015422 wq_create_version = LPFC_Q_CREATE_VERSION_1;
15423 else
15424 wq_create_version = LPFC_Q_CREATE_VERSION_0;
15425
James Smart0c651872013-07-15 18:33:23 -040015426
James Smart1351e692018-02-22 08:18:43 -080015427 if (phba->sli4_hba.pc_sli4_params.wqsize & LPFC_WQ_SZ128_SUPPORT)
15428 wq_create_version = LPFC_Q_CREATE_VERSION_1;
15429 else
15430 wq_create_version = LPFC_Q_CREATE_VERSION_0;
15431
15432 switch (wq_create_version) {
James Smart0c651872013-07-15 18:33:23 -040015433 case LPFC_Q_CREATE_VERSION_1:
James Smart5a6f1332011-03-11 16:05:35 -050015434 bf_set(lpfc_mbx_wq_create_wqe_count, &wq_create->u.request_1,
15435 wq->entry_count);
James Smart3f247de2017-04-21 16:04:56 -070015436 bf_set(lpfc_mbox_hdr_version, &shdr->request,
15437 LPFC_Q_CREATE_VERSION_1);
15438
James Smart5a6f1332011-03-11 16:05:35 -050015439 switch (wq->entry_size) {
15440 default:
15441 case 64:
15442 bf_set(lpfc_mbx_wq_create_wqe_size,
15443 &wq_create->u.request_1,
15444 LPFC_WQ_WQE_SIZE_64);
15445 break;
15446 case 128:
15447 bf_set(lpfc_mbx_wq_create_wqe_size,
15448 &wq_create->u.request_1,
15449 LPFC_WQ_WQE_SIZE_128);
15450 break;
15451 }
James Smart1351e692018-02-22 08:18:43 -080015452 /* Request DPP by default */
15453 bf_set(lpfc_mbx_wq_create_dpp_req, &wq_create->u.request_1, 1);
James Smart8ea73db2017-02-12 13:52:25 -080015454 bf_set(lpfc_mbx_wq_create_page_size,
15455 &wq_create->u.request_1,
James Smart81b96ed2017-11-20 16:00:29 -080015456 (wq->page_size / SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050015457 page = wq_create->u.request_1.page;
James Smart0c651872013-07-15 18:33:23 -040015458 break;
15459 default:
James Smart1351e692018-02-22 08:18:43 -080015460 page = wq_create->u.request.page;
15461 break;
James Smart5a6f1332011-03-11 16:05:35 -050015462 }
James Smart0c651872013-07-15 18:33:23 -040015463
James Smart4f774512009-05-22 14:52:35 -040015464 list_for_each_entry(dmabuf, &wq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040015465 memset(dmabuf->virt, 0, hw_page_size);
James Smart5a6f1332011-03-11 16:05:35 -050015466 page[dmabuf->buffer_tag].addr_lo = putPaddrLow(dmabuf->phys);
15467 page[dmabuf->buffer_tag].addr_hi = putPaddrHigh(dmabuf->phys);
James Smart4f774512009-05-22 14:52:35 -040015468 }
James Smart962bc512013-01-03 15:44:00 -050015469
15470 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
15471 bf_set(lpfc_mbx_wq_create_dua, &wq_create->u.request, 1);
15472
James Smart4f774512009-05-22 14:52:35 -040015473 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
15474 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040015475 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15476 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15477 if (shdr_status || shdr_add_status || rc) {
15478 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15479 "2503 WQ_CREATE mailbox failed with "
15480 "status x%x add_status x%x, mbx status x%x\n",
15481 shdr_status, shdr_add_status, rc);
15482 status = -ENXIO;
15483 goto out;
15484 }
James Smart1351e692018-02-22 08:18:43 -080015485
15486 if (wq_create_version == LPFC_Q_CREATE_VERSION_0)
15487 wq->queue_id = bf_get(lpfc_mbx_wq_create_q_id,
15488 &wq_create->u.response);
15489 else
15490 wq->queue_id = bf_get(lpfc_mbx_wq_create_v1_q_id,
15491 &wq_create->u.response_1);
15492
James Smart4f774512009-05-22 14:52:35 -040015493 if (wq->queue_id == 0xFFFF) {
15494 status = -ENXIO;
15495 goto out;
15496 }
James Smart1351e692018-02-22 08:18:43 -080015497
15498 wq->db_format = LPFC_DB_LIST_FORMAT;
15499 if (wq_create_version == LPFC_Q_CREATE_VERSION_0) {
15500 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
15501 wq->db_format = bf_get(lpfc_mbx_wq_create_db_format,
15502 &wq_create->u.response);
15503 if ((wq->db_format != LPFC_DB_LIST_FORMAT) &&
15504 (wq->db_format != LPFC_DB_RING_FORMAT)) {
15505 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15506 "3265 WQ[%d] doorbell format "
15507 "not supported: x%x\n",
15508 wq->queue_id, wq->db_format);
15509 status = -EINVAL;
15510 goto out;
15511 }
15512 pci_barset = bf_get(lpfc_mbx_wq_create_bar_set,
15513 &wq_create->u.response);
15514 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba,
15515 pci_barset);
15516 if (!bar_memmap_p) {
15517 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15518 "3263 WQ[%d] failed to memmap "
15519 "pci barset:x%x\n",
15520 wq->queue_id, pci_barset);
15521 status = -ENOMEM;
15522 goto out;
15523 }
15524 db_offset = wq_create->u.response.doorbell_offset;
15525 if ((db_offset != LPFC_ULP0_WQ_DOORBELL) &&
15526 (db_offset != LPFC_ULP1_WQ_DOORBELL)) {
15527 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15528 "3252 WQ[%d] doorbell offset "
15529 "not supported: x%x\n",
15530 wq->queue_id, db_offset);
15531 status = -EINVAL;
15532 goto out;
15533 }
15534 wq->db_regaddr = bar_memmap_p + db_offset;
15535 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
15536 "3264 WQ[%d]: barset:x%x, offset:x%x, "
15537 "format:x%x\n", wq->queue_id,
15538 pci_barset, db_offset, wq->db_format);
15539 } else
15540 wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
James Smart962bc512013-01-03 15:44:00 -050015541 } else {
James Smart1351e692018-02-22 08:18:43 -080015542 /* Check if DPP was honored by the firmware */
15543 wq->dpp_enable = bf_get(lpfc_mbx_wq_create_dpp_rsp,
15544 &wq_create->u.response_1);
15545 if (wq->dpp_enable) {
15546 pci_barset = bf_get(lpfc_mbx_wq_create_v1_bar_set,
15547 &wq_create->u.response_1);
15548 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba,
15549 pci_barset);
15550 if (!bar_memmap_p) {
15551 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15552 "3267 WQ[%d] failed to memmap "
15553 "pci barset:x%x\n",
15554 wq->queue_id, pci_barset);
15555 status = -ENOMEM;
15556 goto out;
15557 }
15558 db_offset = wq_create->u.response_1.doorbell_offset;
15559 wq->db_regaddr = bar_memmap_p + db_offset;
15560 wq->dpp_id = bf_get(lpfc_mbx_wq_create_dpp_id,
15561 &wq_create->u.response_1);
15562 dpp_barset = bf_get(lpfc_mbx_wq_create_dpp_bar,
15563 &wq_create->u.response_1);
15564 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba,
15565 dpp_barset);
15566 if (!bar_memmap_p) {
15567 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15568 "3268 WQ[%d] failed to memmap "
15569 "pci barset:x%x\n",
15570 wq->queue_id, dpp_barset);
15571 status = -ENOMEM;
15572 goto out;
15573 }
15574 dpp_offset = wq_create->u.response_1.dpp_offset;
15575 wq->dpp_regaddr = bar_memmap_p + dpp_offset;
15576 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
15577 "3271 WQ[%d]: barset:x%x, offset:x%x, "
15578 "dpp_id:x%x dpp_barset:x%x "
15579 "dpp_offset:x%x\n",
15580 wq->queue_id, pci_barset, db_offset,
15581 wq->dpp_id, dpp_barset, dpp_offset);
15582
15583 /* Enable combined writes for DPP aperture */
15584 pg_addr = (unsigned long)(wq->dpp_regaddr) & PAGE_MASK;
15585#ifdef CONFIG_X86
15586 rc = set_memory_wc(pg_addr, 1);
15587 if (rc) {
15588 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15589 "3272 Cannot setup Combined "
15590 "Write on WQ[%d] - disable DPP\n",
15591 wq->queue_id);
15592 phba->cfg_enable_dpp = 0;
15593 }
15594#else
15595 phba->cfg_enable_dpp = 0;
15596#endif
15597 } else
15598 wq->db_regaddr = phba->sli4_hba.WQDBregaddr;
James Smart962bc512013-01-03 15:44:00 -050015599 }
James Smart895427b2017-02-12 13:52:30 -080015600 wq->pring = kzalloc(sizeof(struct lpfc_sli_ring), GFP_KERNEL);
15601 if (wq->pring == NULL) {
15602 status = -ENOMEM;
15603 goto out;
15604 }
James Smart4f774512009-05-22 14:52:35 -040015605 wq->type = LPFC_WQ;
James Smart2a622bf2011-02-16 12:40:06 -050015606 wq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040015607 wq->subtype = subtype;
15608 wq->host_index = 0;
15609 wq->hba_index = 0;
James Smart32517fc2019-01-28 11:14:33 -080015610 wq->notify_interval = LPFC_WQ_NOTIFY_INTRVL;
James Smart4f774512009-05-22 14:52:35 -040015611
15612 /* link the wq onto the parent cq child list */
15613 list_add_tail(&wq->list, &cq->child_list);
15614out:
James Smart8fa38512009-07-19 10:01:03 -040015615 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040015616 return status;
15617}
15618
15619/**
15620 * lpfc_rq_create - Create a Receive Queue on the HBA
15621 * @phba: HBA structure that indicates port to create a queue on.
15622 * @hrq: The queue structure to use to create the header receive queue.
15623 * @drq: The queue structure to use to create the data receive queue.
15624 * @cq: The completion queue to bind this work queue to.
15625 *
15626 * This function creates a receive buffer queue pair , as detailed in @hrq and
15627 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
15628 * to the HBA.
15629 *
15630 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
15631 * struct is used to get the entry count that is necessary to determine the
15632 * number of pages to use for this queue. The @cq is used to indicate which
15633 * completion queue to bind received buffers that are posted to these queues to.
15634 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
15635 * receive queue pair. This function is asynchronous and will wait for the
15636 * mailbox command to finish before continuing.
15637 *
15638 * On success this function will return a zero. If unable to allocate enough
James Smartd439d282010-09-29 11:18:45 -040015639 * memory this function will return -ENOMEM. If the queue create mailbox command
15640 * fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040015641 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040015642int
James Smart4f774512009-05-22 14:52:35 -040015643lpfc_rq_create(struct lpfc_hba *phba, struct lpfc_queue *hrq,
15644 struct lpfc_queue *drq, struct lpfc_queue *cq, uint32_t subtype)
15645{
15646 struct lpfc_mbx_rq_create *rq_create;
15647 struct lpfc_dmabuf *dmabuf;
15648 LPFC_MBOXQ_t *mbox;
15649 int rc, length, status = 0;
15650 uint32_t shdr_status, shdr_add_status;
15651 union lpfc_sli4_cfg_shdr *shdr;
James Smart49198b32010-04-06 15:04:33 -040015652 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
James Smart962bc512013-01-03 15:44:00 -050015653 void __iomem *bar_memmap_p;
15654 uint32_t db_offset;
15655 uint16_t pci_barset;
James Smart49198b32010-04-06 15:04:33 -040015656
James Smart2e90f4b2011-12-13 13:22:37 -050015657 /* sanity check on queue memory */
15658 if (!hrq || !drq || !cq)
15659 return -ENODEV;
James Smart49198b32010-04-06 15:04:33 -040015660 if (!phba->sli4_hba.pc_sli4_params.supported)
15661 hw_page_size = SLI4_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040015662
15663 if (hrq->entry_count != drq->entry_count)
15664 return -EINVAL;
15665 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15666 if (!mbox)
15667 return -ENOMEM;
15668 length = (sizeof(struct lpfc_mbx_rq_create) -
15669 sizeof(struct lpfc_sli4_cfg_mhdr));
15670 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
15671 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
15672 length, LPFC_SLI4_MBX_EMBED);
15673 rq_create = &mbox->u.mqe.un.rq_create;
James Smart5a6f1332011-03-11 16:05:35 -050015674 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
15675 bf_set(lpfc_mbox_hdr_version, &shdr->request,
15676 phba->sli4_hba.pc_sli4_params.rqv);
15677 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
15678 bf_set(lpfc_rq_context_rqe_count_1,
15679 &rq_create->u.request.context,
15680 hrq->entry_count);
15681 rq_create->u.request.context.buffer_size = LPFC_HDR_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040015682 bf_set(lpfc_rq_context_rqe_size,
15683 &rq_create->u.request.context,
15684 LPFC_RQE_SIZE_8);
15685 bf_set(lpfc_rq_context_page_size,
15686 &rq_create->u.request.context,
James Smart8ea73db2017-02-12 13:52:25 -080015687 LPFC_RQ_PAGE_SIZE_4096);
James Smart5a6f1332011-03-11 16:05:35 -050015688 } else {
15689 switch (hrq->entry_count) {
15690 default:
15691 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15692 "2535 Unsupported RQ count. (%d)\n",
15693 hrq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040015694 if (hrq->entry_count < 512) {
15695 status = -EINVAL;
15696 goto out;
15697 }
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060015698 /* fall through - otherwise default to smallest count */
James Smart5a6f1332011-03-11 16:05:35 -050015699 case 512:
15700 bf_set(lpfc_rq_context_rqe_count,
15701 &rq_create->u.request.context,
15702 LPFC_RQ_RING_SIZE_512);
15703 break;
15704 case 1024:
15705 bf_set(lpfc_rq_context_rqe_count,
15706 &rq_create->u.request.context,
15707 LPFC_RQ_RING_SIZE_1024);
15708 break;
15709 case 2048:
15710 bf_set(lpfc_rq_context_rqe_count,
15711 &rq_create->u.request.context,
15712 LPFC_RQ_RING_SIZE_2048);
15713 break;
15714 case 4096:
15715 bf_set(lpfc_rq_context_rqe_count,
15716 &rq_create->u.request.context,
15717 LPFC_RQ_RING_SIZE_4096);
15718 break;
15719 }
15720 bf_set(lpfc_rq_context_buf_size, &rq_create->u.request.context,
15721 LPFC_HDR_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040015722 }
15723 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
15724 cq->queue_id);
15725 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
15726 hrq->page_count);
James Smart4f774512009-05-22 14:52:35 -040015727 list_for_each_entry(dmabuf, &hrq->page_list, list) {
James Smart49198b32010-04-06 15:04:33 -040015728 memset(dmabuf->virt, 0, hw_page_size);
James Smart4f774512009-05-22 14:52:35 -040015729 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
15730 putPaddrLow(dmabuf->phys);
15731 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
15732 putPaddrHigh(dmabuf->phys);
15733 }
James Smart962bc512013-01-03 15:44:00 -050015734 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
15735 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
15736
James Smart4f774512009-05-22 14:52:35 -040015737 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
15738 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart4f774512009-05-22 14:52:35 -040015739 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15740 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15741 if (shdr_status || shdr_add_status || rc) {
15742 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15743 "2504 RQ_CREATE mailbox failed with "
15744 "status x%x add_status x%x, mbx status x%x\n",
15745 shdr_status, shdr_add_status, rc);
15746 status = -ENXIO;
15747 goto out;
15748 }
15749 hrq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
15750 if (hrq->queue_id == 0xFFFF) {
15751 status = -ENXIO;
15752 goto out;
15753 }
James Smart962bc512013-01-03 15:44:00 -050015754
15755 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE) {
15756 hrq->db_format = bf_get(lpfc_mbx_rq_create_db_format,
15757 &rq_create->u.response);
15758 if ((hrq->db_format != LPFC_DB_LIST_FORMAT) &&
15759 (hrq->db_format != LPFC_DB_RING_FORMAT)) {
15760 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15761 "3262 RQ [%d] doorbell format not "
15762 "supported: x%x\n", hrq->queue_id,
15763 hrq->db_format);
15764 status = -EINVAL;
15765 goto out;
15766 }
15767
15768 pci_barset = bf_get(lpfc_mbx_rq_create_bar_set,
15769 &rq_create->u.response);
15770 bar_memmap_p = lpfc_dual_chute_pci_bar_map(phba, pci_barset);
15771 if (!bar_memmap_p) {
15772 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15773 "3269 RQ[%d] failed to memmap pci "
15774 "barset:x%x\n", hrq->queue_id,
15775 pci_barset);
15776 status = -ENOMEM;
15777 goto out;
15778 }
15779
15780 db_offset = rq_create->u.response.doorbell_offset;
15781 if ((db_offset != LPFC_ULP0_RQ_DOORBELL) &&
15782 (db_offset != LPFC_ULP1_RQ_DOORBELL)) {
15783 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
15784 "3270 RQ[%d] doorbell offset not "
15785 "supported: x%x\n", hrq->queue_id,
15786 db_offset);
15787 status = -EINVAL;
15788 goto out;
15789 }
15790 hrq->db_regaddr = bar_memmap_p + db_offset;
15791 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smarta22e7db2013-04-17 20:16:37 -040015792 "3266 RQ[qid:%d]: barset:x%x, offset:x%x, "
15793 "format:x%x\n", hrq->queue_id, pci_barset,
15794 db_offset, hrq->db_format);
James Smart962bc512013-01-03 15:44:00 -050015795 } else {
15796 hrq->db_format = LPFC_DB_RING_FORMAT;
15797 hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
15798 }
James Smart4f774512009-05-22 14:52:35 -040015799 hrq->type = LPFC_HRQ;
James Smart2a622bf2011-02-16 12:40:06 -050015800 hrq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040015801 hrq->subtype = subtype;
15802 hrq->host_index = 0;
15803 hrq->hba_index = 0;
James Smart32517fc2019-01-28 11:14:33 -080015804 hrq->notify_interval = LPFC_RQ_NOTIFY_INTRVL;
James Smart4f774512009-05-22 14:52:35 -040015805
15806 /* now create the data queue */
15807 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
15808 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE,
15809 length, LPFC_SLI4_MBX_EMBED);
James Smart5a6f1332011-03-11 16:05:35 -050015810 bf_set(lpfc_mbox_hdr_version, &shdr->request,
15811 phba->sli4_hba.pc_sli4_params.rqv);
15812 if (phba->sli4_hba.pc_sli4_params.rqv == LPFC_Q_CREATE_VERSION_1) {
15813 bf_set(lpfc_rq_context_rqe_count_1,
James Smartc31098c2011-04-16 11:03:33 -040015814 &rq_create->u.request.context, hrq->entry_count);
James Smart3c603be2017-05-15 15:20:44 -070015815 if (subtype == LPFC_NVMET)
15816 rq_create->u.request.context.buffer_size =
15817 LPFC_NVMET_DATA_BUF_SIZE;
15818 else
15819 rq_create->u.request.context.buffer_size =
15820 LPFC_DATA_BUF_SIZE;
James Smartc31098c2011-04-16 11:03:33 -040015821 bf_set(lpfc_rq_context_rqe_size, &rq_create->u.request.context,
15822 LPFC_RQE_SIZE_8);
15823 bf_set(lpfc_rq_context_page_size, &rq_create->u.request.context,
15824 (PAGE_SIZE/SLI4_PAGE_SIZE));
James Smart5a6f1332011-03-11 16:05:35 -050015825 } else {
15826 switch (drq->entry_count) {
15827 default:
15828 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15829 "2536 Unsupported RQ count. (%d)\n",
15830 drq->entry_count);
James Smart4f4c1862012-06-12 13:54:02 -040015831 if (drq->entry_count < 512) {
15832 status = -EINVAL;
15833 goto out;
15834 }
Gustavo A. R. Silva5bd5f662018-11-27 22:32:18 -060015835 /* fall through - otherwise default to smallest count */
James Smart5a6f1332011-03-11 16:05:35 -050015836 case 512:
15837 bf_set(lpfc_rq_context_rqe_count,
15838 &rq_create->u.request.context,
15839 LPFC_RQ_RING_SIZE_512);
15840 break;
15841 case 1024:
15842 bf_set(lpfc_rq_context_rqe_count,
15843 &rq_create->u.request.context,
15844 LPFC_RQ_RING_SIZE_1024);
15845 break;
15846 case 2048:
15847 bf_set(lpfc_rq_context_rqe_count,
15848 &rq_create->u.request.context,
15849 LPFC_RQ_RING_SIZE_2048);
15850 break;
15851 case 4096:
15852 bf_set(lpfc_rq_context_rqe_count,
15853 &rq_create->u.request.context,
15854 LPFC_RQ_RING_SIZE_4096);
15855 break;
15856 }
James Smart3c603be2017-05-15 15:20:44 -070015857 if (subtype == LPFC_NVMET)
15858 bf_set(lpfc_rq_context_buf_size,
15859 &rq_create->u.request.context,
15860 LPFC_NVMET_DATA_BUF_SIZE);
15861 else
15862 bf_set(lpfc_rq_context_buf_size,
15863 &rq_create->u.request.context,
15864 LPFC_DATA_BUF_SIZE);
James Smart4f774512009-05-22 14:52:35 -040015865 }
15866 bf_set(lpfc_rq_context_cq_id, &rq_create->u.request.context,
15867 cq->queue_id);
15868 bf_set(lpfc_mbx_rq_create_num_pages, &rq_create->u.request,
15869 drq->page_count);
James Smart4f774512009-05-22 14:52:35 -040015870 list_for_each_entry(dmabuf, &drq->page_list, list) {
15871 rq_create->u.request.page[dmabuf->buffer_tag].addr_lo =
15872 putPaddrLow(dmabuf->phys);
15873 rq_create->u.request.page[dmabuf->buffer_tag].addr_hi =
15874 putPaddrHigh(dmabuf->phys);
15875 }
James Smart962bc512013-01-03 15:44:00 -050015876 if (phba->sli4_hba.fw_func_mode & LPFC_DUA_MODE)
15877 bf_set(lpfc_mbx_rq_create_dua, &rq_create->u.request, 1);
James Smart4f774512009-05-22 14:52:35 -040015878 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
15879 /* The IOCTL status is embedded in the mailbox subheader. */
15880 shdr = (union lpfc_sli4_cfg_shdr *) &rq_create->header.cfg_shdr;
15881 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
15882 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
15883 if (shdr_status || shdr_add_status || rc) {
15884 status = -ENXIO;
15885 goto out;
15886 }
15887 drq->queue_id = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
15888 if (drq->queue_id == 0xFFFF) {
15889 status = -ENXIO;
15890 goto out;
15891 }
15892 drq->type = LPFC_DRQ;
James Smart2a622bf2011-02-16 12:40:06 -050015893 drq->assoc_qid = cq->queue_id;
James Smart4f774512009-05-22 14:52:35 -040015894 drq->subtype = subtype;
15895 drq->host_index = 0;
15896 drq->hba_index = 0;
James Smart32517fc2019-01-28 11:14:33 -080015897 drq->notify_interval = LPFC_RQ_NOTIFY_INTRVL;
James Smart4f774512009-05-22 14:52:35 -040015898
15899 /* link the header and data RQs onto the parent cq child list */
15900 list_add_tail(&hrq->list, &cq->child_list);
15901 list_add_tail(&drq->list, &cq->child_list);
15902
15903out:
James Smart8fa38512009-07-19 10:01:03 -040015904 mempool_free(mbox, phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040015905 return status;
15906}
15907
15908/**
James Smart2d7dbc42017-02-12 13:52:35 -080015909 * lpfc_mrq_create - Create MRQ Receive Queues on the HBA
15910 * @phba: HBA structure that indicates port to create a queue on.
15911 * @hrqp: The queue structure array to use to create the header receive queues.
15912 * @drqp: The queue structure array to use to create the data receive queues.
15913 * @cqp: The completion queue array to bind these receive queues to.
15914 *
15915 * This function creates a receive buffer queue pair , as detailed in @hrq and
15916 * @drq, on a port, described by @phba by sending a RQ_CREATE mailbox command
15917 * to the HBA.
15918 *
15919 * The @phba struct is used to send mailbox command to HBA. The @drq and @hrq
15920 * struct is used to get the entry count that is necessary to determine the
15921 * number of pages to use for this queue. The @cq is used to indicate which
15922 * completion queue to bind received buffers that are posted to these queues to.
15923 * This function will send the RQ_CREATE mailbox command to the HBA to setup the
15924 * receive queue pair. This function is asynchronous and will wait for the
15925 * mailbox command to finish before continuing.
15926 *
15927 * On success this function will return a zero. If unable to allocate enough
15928 * memory this function will return -ENOMEM. If the queue create mailbox command
15929 * fails this function will return -ENXIO.
15930 **/
15931int
15932lpfc_mrq_create(struct lpfc_hba *phba, struct lpfc_queue **hrqp,
15933 struct lpfc_queue **drqp, struct lpfc_queue **cqp,
15934 uint32_t subtype)
15935{
15936 struct lpfc_queue *hrq, *drq, *cq;
15937 struct lpfc_mbx_rq_create_v2 *rq_create;
15938 struct lpfc_dmabuf *dmabuf;
15939 LPFC_MBOXQ_t *mbox;
15940 int rc, length, alloclen, status = 0;
15941 int cnt, idx, numrq, page_idx = 0;
15942 uint32_t shdr_status, shdr_add_status;
15943 union lpfc_sli4_cfg_shdr *shdr;
15944 uint32_t hw_page_size = phba->sli4_hba.pc_sli4_params.if_page_sz;
15945
15946 numrq = phba->cfg_nvmet_mrq;
15947 /* sanity check on array memory */
15948 if (!hrqp || !drqp || !cqp || !numrq)
15949 return -ENODEV;
15950 if (!phba->sli4_hba.pc_sli4_params.supported)
15951 hw_page_size = SLI4_PAGE_SIZE;
15952
15953 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
15954 if (!mbox)
15955 return -ENOMEM;
15956
15957 length = sizeof(struct lpfc_mbx_rq_create_v2);
15958 length += ((2 * numrq * hrqp[0]->page_count) *
15959 sizeof(struct dma_address));
15960
15961 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
15962 LPFC_MBOX_OPCODE_FCOE_RQ_CREATE, length,
15963 LPFC_SLI4_MBX_NEMBED);
15964 if (alloclen < length) {
15965 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
15966 "3099 Allocated DMA memory size (%d) is "
15967 "less than the requested DMA memory size "
15968 "(%d)\n", alloclen, length);
15969 status = -ENOMEM;
15970 goto out;
15971 }
15972
15973
15974
15975 rq_create = mbox->sge_array->addr[0];
15976 shdr = (union lpfc_sli4_cfg_shdr *)&rq_create->cfg_shdr;
15977
15978 bf_set(lpfc_mbox_hdr_version, &shdr->request, LPFC_Q_CREATE_VERSION_2);
15979 cnt = 0;
15980
15981 for (idx = 0; idx < numrq; idx++) {
15982 hrq = hrqp[idx];
15983 drq = drqp[idx];
15984 cq = cqp[idx];
15985
James Smart2d7dbc42017-02-12 13:52:35 -080015986 /* sanity check on queue memory */
15987 if (!hrq || !drq || !cq) {
15988 status = -ENODEV;
15989 goto out;
15990 }
15991
James Smart7aabe842017-03-04 09:30:22 -080015992 if (hrq->entry_count != drq->entry_count) {
15993 status = -EINVAL;
15994 goto out;
15995 }
15996
James Smart2d7dbc42017-02-12 13:52:35 -080015997 if (idx == 0) {
15998 bf_set(lpfc_mbx_rq_create_num_pages,
15999 &rq_create->u.request,
16000 hrq->page_count);
16001 bf_set(lpfc_mbx_rq_create_rq_cnt,
16002 &rq_create->u.request, (numrq * 2));
16003 bf_set(lpfc_mbx_rq_create_dnb, &rq_create->u.request,
16004 1);
16005 bf_set(lpfc_rq_context_base_cq,
16006 &rq_create->u.request.context,
16007 cq->queue_id);
16008 bf_set(lpfc_rq_context_data_size,
16009 &rq_create->u.request.context,
James Smart3c603be2017-05-15 15:20:44 -070016010 LPFC_NVMET_DATA_BUF_SIZE);
James Smart2d7dbc42017-02-12 13:52:35 -080016011 bf_set(lpfc_rq_context_hdr_size,
16012 &rq_create->u.request.context,
16013 LPFC_HDR_BUF_SIZE);
16014 bf_set(lpfc_rq_context_rqe_count_1,
16015 &rq_create->u.request.context,
16016 hrq->entry_count);
16017 bf_set(lpfc_rq_context_rqe_size,
16018 &rq_create->u.request.context,
16019 LPFC_RQE_SIZE_8);
16020 bf_set(lpfc_rq_context_page_size,
16021 &rq_create->u.request.context,
16022 (PAGE_SIZE/SLI4_PAGE_SIZE));
16023 }
16024 rc = 0;
16025 list_for_each_entry(dmabuf, &hrq->page_list, list) {
16026 memset(dmabuf->virt, 0, hw_page_size);
16027 cnt = page_idx + dmabuf->buffer_tag;
16028 rq_create->u.request.page[cnt].addr_lo =
16029 putPaddrLow(dmabuf->phys);
16030 rq_create->u.request.page[cnt].addr_hi =
16031 putPaddrHigh(dmabuf->phys);
16032 rc++;
16033 }
16034 page_idx += rc;
16035
16036 rc = 0;
16037 list_for_each_entry(dmabuf, &drq->page_list, list) {
16038 memset(dmabuf->virt, 0, hw_page_size);
16039 cnt = page_idx + dmabuf->buffer_tag;
16040 rq_create->u.request.page[cnt].addr_lo =
16041 putPaddrLow(dmabuf->phys);
16042 rq_create->u.request.page[cnt].addr_hi =
16043 putPaddrHigh(dmabuf->phys);
16044 rc++;
16045 }
16046 page_idx += rc;
16047
16048 hrq->db_format = LPFC_DB_RING_FORMAT;
16049 hrq->db_regaddr = phba->sli4_hba.RQDBregaddr;
16050 hrq->type = LPFC_HRQ;
16051 hrq->assoc_qid = cq->queue_id;
16052 hrq->subtype = subtype;
16053 hrq->host_index = 0;
16054 hrq->hba_index = 0;
James Smart32517fc2019-01-28 11:14:33 -080016055 hrq->notify_interval = LPFC_RQ_NOTIFY_INTRVL;
James Smart2d7dbc42017-02-12 13:52:35 -080016056
16057 drq->db_format = LPFC_DB_RING_FORMAT;
16058 drq->db_regaddr = phba->sli4_hba.RQDBregaddr;
16059 drq->type = LPFC_DRQ;
16060 drq->assoc_qid = cq->queue_id;
16061 drq->subtype = subtype;
16062 drq->host_index = 0;
16063 drq->hba_index = 0;
James Smart32517fc2019-01-28 11:14:33 -080016064 drq->notify_interval = LPFC_RQ_NOTIFY_INTRVL;
James Smart2d7dbc42017-02-12 13:52:35 -080016065
16066 list_add_tail(&hrq->list, &cq->child_list);
16067 list_add_tail(&drq->list, &cq->child_list);
16068 }
16069
16070 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
16071 /* The IOCTL status is embedded in the mailbox subheader. */
16072 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16073 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16074 if (shdr_status || shdr_add_status || rc) {
16075 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16076 "3120 RQ_CREATE mailbox failed with "
16077 "status x%x add_status x%x, mbx status x%x\n",
16078 shdr_status, shdr_add_status, rc);
16079 status = -ENXIO;
16080 goto out;
16081 }
16082 rc = bf_get(lpfc_mbx_rq_create_q_id, &rq_create->u.response);
16083 if (rc == 0xFFFF) {
16084 status = -ENXIO;
16085 goto out;
16086 }
16087
16088 /* Initialize all RQs with associated queue id */
16089 for (idx = 0; idx < numrq; idx++) {
16090 hrq = hrqp[idx];
16091 hrq->queue_id = rc + (2 * idx);
16092 drq = drqp[idx];
16093 drq->queue_id = rc + (2 * idx) + 1;
16094 }
16095
16096out:
16097 lpfc_sli4_mbox_cmd_free(phba, mbox);
16098 return status;
16099}
16100
16101/**
James Smart4f774512009-05-22 14:52:35 -040016102 * lpfc_eq_destroy - Destroy an event Queue on the HBA
16103 * @eq: The queue structure associated with the queue to destroy.
16104 *
16105 * This function destroys a queue, as detailed in @eq by sending an mailbox
16106 * command, specific to the type of queue, to the HBA.
16107 *
16108 * The @eq struct is used to get the queue ID of the queue to destroy.
16109 *
16110 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040016111 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040016112 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040016113int
James Smart4f774512009-05-22 14:52:35 -040016114lpfc_eq_destroy(struct lpfc_hba *phba, struct lpfc_queue *eq)
16115{
16116 LPFC_MBOXQ_t *mbox;
16117 int rc, length, status = 0;
16118 uint32_t shdr_status, shdr_add_status;
16119 union lpfc_sli4_cfg_shdr *shdr;
16120
James Smart2e90f4b2011-12-13 13:22:37 -050016121 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040016122 if (!eq)
16123 return -ENODEV;
James Smart32517fc2019-01-28 11:14:33 -080016124
James Smart4f774512009-05-22 14:52:35 -040016125 mbox = mempool_alloc(eq->phba->mbox_mem_pool, GFP_KERNEL);
16126 if (!mbox)
16127 return -ENOMEM;
16128 length = (sizeof(struct lpfc_mbx_eq_destroy) -
16129 sizeof(struct lpfc_sli4_cfg_mhdr));
16130 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
16131 LPFC_MBOX_OPCODE_EQ_DESTROY,
16132 length, LPFC_SLI4_MBX_EMBED);
16133 bf_set(lpfc_mbx_eq_destroy_q_id, &mbox->u.mqe.un.eq_destroy.u.request,
16134 eq->queue_id);
16135 mbox->vport = eq->phba->pport;
16136 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16137
16138 rc = lpfc_sli_issue_mbox(eq->phba, mbox, MBX_POLL);
16139 /* The IOCTL status is embedded in the mailbox subheader. */
16140 shdr = (union lpfc_sli4_cfg_shdr *)
16141 &mbox->u.mqe.un.eq_destroy.header.cfg_shdr;
16142 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16143 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16144 if (shdr_status || shdr_add_status || rc) {
16145 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16146 "2505 EQ_DESTROY mailbox failed with "
16147 "status x%x add_status x%x, mbx status x%x\n",
16148 shdr_status, shdr_add_status, rc);
16149 status = -ENXIO;
16150 }
16151
16152 /* Remove eq from any list */
16153 list_del_init(&eq->list);
James Smart8fa38512009-07-19 10:01:03 -040016154 mempool_free(mbox, eq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040016155 return status;
16156}
16157
16158/**
16159 * lpfc_cq_destroy - Destroy a Completion Queue on the HBA
16160 * @cq: The queue structure associated with the queue to destroy.
16161 *
16162 * This function destroys a queue, as detailed in @cq by sending an mailbox
16163 * command, specific to the type of queue, to the HBA.
16164 *
16165 * The @cq struct is used to get the queue ID of the queue to destroy.
16166 *
16167 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040016168 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040016169 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040016170int
James Smart4f774512009-05-22 14:52:35 -040016171lpfc_cq_destroy(struct lpfc_hba *phba, struct lpfc_queue *cq)
16172{
16173 LPFC_MBOXQ_t *mbox;
16174 int rc, length, status = 0;
16175 uint32_t shdr_status, shdr_add_status;
16176 union lpfc_sli4_cfg_shdr *shdr;
16177
James Smart2e90f4b2011-12-13 13:22:37 -050016178 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040016179 if (!cq)
16180 return -ENODEV;
16181 mbox = mempool_alloc(cq->phba->mbox_mem_pool, GFP_KERNEL);
16182 if (!mbox)
16183 return -ENOMEM;
16184 length = (sizeof(struct lpfc_mbx_cq_destroy) -
16185 sizeof(struct lpfc_sli4_cfg_mhdr));
16186 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
16187 LPFC_MBOX_OPCODE_CQ_DESTROY,
16188 length, LPFC_SLI4_MBX_EMBED);
16189 bf_set(lpfc_mbx_cq_destroy_q_id, &mbox->u.mqe.un.cq_destroy.u.request,
16190 cq->queue_id);
16191 mbox->vport = cq->phba->pport;
16192 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16193 rc = lpfc_sli_issue_mbox(cq->phba, mbox, MBX_POLL);
16194 /* The IOCTL status is embedded in the mailbox subheader. */
16195 shdr = (union lpfc_sli4_cfg_shdr *)
16196 &mbox->u.mqe.un.wq_create.header.cfg_shdr;
16197 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16198 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16199 if (shdr_status || shdr_add_status || rc) {
16200 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16201 "2506 CQ_DESTROY mailbox failed with "
16202 "status x%x add_status x%x, mbx status x%x\n",
16203 shdr_status, shdr_add_status, rc);
16204 status = -ENXIO;
16205 }
16206 /* Remove cq from any list */
16207 list_del_init(&cq->list);
James Smart8fa38512009-07-19 10:01:03 -040016208 mempool_free(mbox, cq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040016209 return status;
16210}
16211
16212/**
James Smart04c68492009-05-22 14:52:52 -040016213 * lpfc_mq_destroy - Destroy a Mailbox Queue on the HBA
16214 * @qm: The queue structure associated with the queue to destroy.
16215 *
16216 * This function destroys a queue, as detailed in @mq by sending an mailbox
16217 * command, specific to the type of queue, to the HBA.
16218 *
16219 * The @mq struct is used to get the queue ID of the queue to destroy.
16220 *
16221 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040016222 * command fails this function will return -ENXIO.
James Smart04c68492009-05-22 14:52:52 -040016223 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040016224int
James Smart04c68492009-05-22 14:52:52 -040016225lpfc_mq_destroy(struct lpfc_hba *phba, struct lpfc_queue *mq)
16226{
16227 LPFC_MBOXQ_t *mbox;
16228 int rc, length, status = 0;
16229 uint32_t shdr_status, shdr_add_status;
16230 union lpfc_sli4_cfg_shdr *shdr;
16231
James Smart2e90f4b2011-12-13 13:22:37 -050016232 /* sanity check on queue memory */
James Smart04c68492009-05-22 14:52:52 -040016233 if (!mq)
16234 return -ENODEV;
16235 mbox = mempool_alloc(mq->phba->mbox_mem_pool, GFP_KERNEL);
16236 if (!mbox)
16237 return -ENOMEM;
16238 length = (sizeof(struct lpfc_mbx_mq_destroy) -
16239 sizeof(struct lpfc_sli4_cfg_mhdr));
16240 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
16241 LPFC_MBOX_OPCODE_MQ_DESTROY,
16242 length, LPFC_SLI4_MBX_EMBED);
16243 bf_set(lpfc_mbx_mq_destroy_q_id, &mbox->u.mqe.un.mq_destroy.u.request,
16244 mq->queue_id);
16245 mbox->vport = mq->phba->pport;
16246 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16247 rc = lpfc_sli_issue_mbox(mq->phba, mbox, MBX_POLL);
16248 /* The IOCTL status is embedded in the mailbox subheader. */
16249 shdr = (union lpfc_sli4_cfg_shdr *)
16250 &mbox->u.mqe.un.mq_destroy.header.cfg_shdr;
16251 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16252 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16253 if (shdr_status || shdr_add_status || rc) {
16254 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16255 "2507 MQ_DESTROY mailbox failed with "
16256 "status x%x add_status x%x, mbx status x%x\n",
16257 shdr_status, shdr_add_status, rc);
16258 status = -ENXIO;
16259 }
16260 /* Remove mq from any list */
16261 list_del_init(&mq->list);
James Smart8fa38512009-07-19 10:01:03 -040016262 mempool_free(mbox, mq->phba->mbox_mem_pool);
James Smart04c68492009-05-22 14:52:52 -040016263 return status;
16264}
16265
16266/**
James Smart4f774512009-05-22 14:52:35 -040016267 * lpfc_wq_destroy - Destroy a Work Queue on the HBA
16268 * @wq: The queue structure associated with the queue to destroy.
16269 *
16270 * This function destroys a queue, as detailed in @wq by sending an mailbox
16271 * command, specific to the type of queue, to the HBA.
16272 *
16273 * The @wq struct is used to get the queue ID of the queue to destroy.
16274 *
16275 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040016276 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040016277 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040016278int
James Smart4f774512009-05-22 14:52:35 -040016279lpfc_wq_destroy(struct lpfc_hba *phba, struct lpfc_queue *wq)
16280{
16281 LPFC_MBOXQ_t *mbox;
16282 int rc, length, status = 0;
16283 uint32_t shdr_status, shdr_add_status;
16284 union lpfc_sli4_cfg_shdr *shdr;
16285
James Smart2e90f4b2011-12-13 13:22:37 -050016286 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040016287 if (!wq)
16288 return -ENODEV;
16289 mbox = mempool_alloc(wq->phba->mbox_mem_pool, GFP_KERNEL);
16290 if (!mbox)
16291 return -ENOMEM;
16292 length = (sizeof(struct lpfc_mbx_wq_destroy) -
16293 sizeof(struct lpfc_sli4_cfg_mhdr));
16294 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
16295 LPFC_MBOX_OPCODE_FCOE_WQ_DESTROY,
16296 length, LPFC_SLI4_MBX_EMBED);
16297 bf_set(lpfc_mbx_wq_destroy_q_id, &mbox->u.mqe.un.wq_destroy.u.request,
16298 wq->queue_id);
16299 mbox->vport = wq->phba->pport;
16300 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16301 rc = lpfc_sli_issue_mbox(wq->phba, mbox, MBX_POLL);
16302 shdr = (union lpfc_sli4_cfg_shdr *)
16303 &mbox->u.mqe.un.wq_destroy.header.cfg_shdr;
16304 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16305 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16306 if (shdr_status || shdr_add_status || rc) {
16307 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16308 "2508 WQ_DESTROY mailbox failed with "
16309 "status x%x add_status x%x, mbx status x%x\n",
16310 shdr_status, shdr_add_status, rc);
16311 status = -ENXIO;
16312 }
16313 /* Remove wq from any list */
16314 list_del_init(&wq->list);
James Smartd1f525a2017-04-21 16:04:55 -070016315 kfree(wq->pring);
16316 wq->pring = NULL;
James Smart8fa38512009-07-19 10:01:03 -040016317 mempool_free(mbox, wq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040016318 return status;
16319}
16320
16321/**
16322 * lpfc_rq_destroy - Destroy a Receive Queue on the HBA
16323 * @rq: The queue structure associated with the queue to destroy.
16324 *
16325 * This function destroys a queue, as detailed in @rq by sending an mailbox
16326 * command, specific to the type of queue, to the HBA.
16327 *
16328 * The @rq struct is used to get the queue ID of the queue to destroy.
16329 *
16330 * On success this function will return a zero. If the queue destroy mailbox
James Smartd439d282010-09-29 11:18:45 -040016331 * command fails this function will return -ENXIO.
James Smart4f774512009-05-22 14:52:35 -040016332 **/
James Smarta2fc4aef2014-09-03 12:57:55 -040016333int
James Smart4f774512009-05-22 14:52:35 -040016334lpfc_rq_destroy(struct lpfc_hba *phba, struct lpfc_queue *hrq,
16335 struct lpfc_queue *drq)
16336{
16337 LPFC_MBOXQ_t *mbox;
16338 int rc, length, status = 0;
16339 uint32_t shdr_status, shdr_add_status;
16340 union lpfc_sli4_cfg_shdr *shdr;
16341
James Smart2e90f4b2011-12-13 13:22:37 -050016342 /* sanity check on queue memory */
James Smart4f774512009-05-22 14:52:35 -040016343 if (!hrq || !drq)
16344 return -ENODEV;
16345 mbox = mempool_alloc(hrq->phba->mbox_mem_pool, GFP_KERNEL);
16346 if (!mbox)
16347 return -ENOMEM;
16348 length = (sizeof(struct lpfc_mbx_rq_destroy) -
James Smartfedd3b72011-02-16 12:39:24 -050016349 sizeof(struct lpfc_sli4_cfg_mhdr));
James Smart4f774512009-05-22 14:52:35 -040016350 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
16351 LPFC_MBOX_OPCODE_FCOE_RQ_DESTROY,
16352 length, LPFC_SLI4_MBX_EMBED);
16353 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
16354 hrq->queue_id);
16355 mbox->vport = hrq->phba->pport;
16356 mbox->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
16357 rc = lpfc_sli_issue_mbox(hrq->phba, mbox, MBX_POLL);
16358 /* The IOCTL status is embedded in the mailbox subheader. */
16359 shdr = (union lpfc_sli4_cfg_shdr *)
16360 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
16361 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16362 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16363 if (shdr_status || shdr_add_status || rc) {
16364 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16365 "2509 RQ_DESTROY mailbox failed with "
16366 "status x%x add_status x%x, mbx status x%x\n",
16367 shdr_status, shdr_add_status, rc);
16368 if (rc != MBX_TIMEOUT)
16369 mempool_free(mbox, hrq->phba->mbox_mem_pool);
16370 return -ENXIO;
16371 }
16372 bf_set(lpfc_mbx_rq_destroy_q_id, &mbox->u.mqe.un.rq_destroy.u.request,
16373 drq->queue_id);
16374 rc = lpfc_sli_issue_mbox(drq->phba, mbox, MBX_POLL);
16375 shdr = (union lpfc_sli4_cfg_shdr *)
16376 &mbox->u.mqe.un.rq_destroy.header.cfg_shdr;
16377 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16378 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16379 if (shdr_status || shdr_add_status || rc) {
16380 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16381 "2510 RQ_DESTROY mailbox failed with "
16382 "status x%x add_status x%x, mbx status x%x\n",
16383 shdr_status, shdr_add_status, rc);
16384 status = -ENXIO;
16385 }
16386 list_del_init(&hrq->list);
16387 list_del_init(&drq->list);
James Smart8fa38512009-07-19 10:01:03 -040016388 mempool_free(mbox, hrq->phba->mbox_mem_pool);
James Smart4f774512009-05-22 14:52:35 -040016389 return status;
16390}
16391
16392/**
16393 * lpfc_sli4_post_sgl - Post scatter gather list for an XRI to HBA
16394 * @phba: The virtual port for which this call being executed.
16395 * @pdma_phys_addr0: Physical address of the 1st SGL page.
16396 * @pdma_phys_addr1: Physical address of the 2nd SGL page.
16397 * @xritag: the xritag that ties this io to the SGL pages.
16398 *
16399 * This routine will post the sgl pages for the IO that has the xritag
16400 * that is in the iocbq structure. The xritag is assigned during iocbq
16401 * creation and persists for as long as the driver is loaded.
16402 * if the caller has fewer than 256 scatter gather segments to map then
16403 * pdma_phys_addr1 should be 0.
16404 * If the caller needs to map more than 256 scatter gather segment then
16405 * pdma_phys_addr1 should be a valid physical address.
16406 * physical address for SGLs must be 64 byte aligned.
16407 * If you are going to map 2 SGL's then the first one must have 256 entries
16408 * the second sgl can have between 1 and 256 entries.
16409 *
16410 * Return codes:
16411 * 0 - Success
16412 * -ENXIO, -ENOMEM - Failure
16413 **/
16414int
16415lpfc_sli4_post_sgl(struct lpfc_hba *phba,
16416 dma_addr_t pdma_phys_addr0,
16417 dma_addr_t pdma_phys_addr1,
16418 uint16_t xritag)
16419{
16420 struct lpfc_mbx_post_sgl_pages *post_sgl_pages;
16421 LPFC_MBOXQ_t *mbox;
16422 int rc;
16423 uint32_t shdr_status, shdr_add_status;
James Smart6d368e52011-05-24 11:44:12 -040016424 uint32_t mbox_tmo;
James Smart4f774512009-05-22 14:52:35 -040016425 union lpfc_sli4_cfg_shdr *shdr;
16426
16427 if (xritag == NO_XRI) {
16428 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16429 "0364 Invalid param:\n");
16430 return -EINVAL;
16431 }
16432
16433 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16434 if (!mbox)
16435 return -ENOMEM;
16436
16437 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
16438 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
16439 sizeof(struct lpfc_mbx_post_sgl_pages) -
James Smartfedd3b72011-02-16 12:39:24 -050016440 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
James Smart4f774512009-05-22 14:52:35 -040016441
16442 post_sgl_pages = (struct lpfc_mbx_post_sgl_pages *)
16443 &mbox->u.mqe.un.post_sgl_pages;
16444 bf_set(lpfc_post_sgl_pages_xri, post_sgl_pages, xritag);
16445 bf_set(lpfc_post_sgl_pages_xricnt, post_sgl_pages, 1);
16446
16447 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_lo =
16448 cpu_to_le32(putPaddrLow(pdma_phys_addr0));
16449 post_sgl_pages->sgl_pg_pairs[0].sgl_pg0_addr_hi =
16450 cpu_to_le32(putPaddrHigh(pdma_phys_addr0));
16451
16452 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_lo =
16453 cpu_to_le32(putPaddrLow(pdma_phys_addr1));
16454 post_sgl_pages->sgl_pg_pairs[0].sgl_pg1_addr_hi =
16455 cpu_to_le32(putPaddrHigh(pdma_phys_addr1));
16456 if (!phba->sli4_hba.intr_enable)
16457 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smart6d368e52011-05-24 11:44:12 -040016458 else {
James Smarta183a152011-10-10 21:32:43 -040016459 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart6d368e52011-05-24 11:44:12 -040016460 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
16461 }
James Smart4f774512009-05-22 14:52:35 -040016462 /* The IOCTL status is embedded in the mailbox subheader. */
16463 shdr = (union lpfc_sli4_cfg_shdr *) &post_sgl_pages->header.cfg_shdr;
16464 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16465 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16466 if (rc != MBX_TIMEOUT)
16467 mempool_free(mbox, phba->mbox_mem_pool);
16468 if (shdr_status || shdr_add_status || rc) {
16469 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16470 "2511 POST_SGL mailbox failed with "
16471 "status x%x add_status x%x, mbx status x%x\n",
16472 shdr_status, shdr_add_status, rc);
James Smart4f774512009-05-22 14:52:35 -040016473 }
16474 return 0;
16475}
James Smart4f774512009-05-22 14:52:35 -040016476
16477/**
James Smart88a2cfb2011-07-22 18:36:33 -040016478 * lpfc_sli4_alloc_xri - Get an available rpi in the device's range
James Smart6d368e52011-05-24 11:44:12 -040016479 * @phba: pointer to lpfc hba data structure.
16480 *
16481 * This routine is invoked to post rpi header templates to the
James Smart88a2cfb2011-07-22 18:36:33 -040016482 * HBA consistent with the SLI-4 interface spec. This routine
16483 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
16484 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6d368e52011-05-24 11:44:12 -040016485 *
James Smart88a2cfb2011-07-22 18:36:33 -040016486 * Returns
16487 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
16488 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
16489 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040016490static uint16_t
James Smart6d368e52011-05-24 11:44:12 -040016491lpfc_sli4_alloc_xri(struct lpfc_hba *phba)
16492{
16493 unsigned long xri;
16494
16495 /*
16496 * Fetch the next logical xri. Because this index is logical,
16497 * the driver starts at 0 each time.
16498 */
16499 spin_lock_irq(&phba->hbalock);
16500 xri = find_next_zero_bit(phba->sli4_hba.xri_bmask,
16501 phba->sli4_hba.max_cfg_param.max_xri, 0);
16502 if (xri >= phba->sli4_hba.max_cfg_param.max_xri) {
16503 spin_unlock_irq(&phba->hbalock);
16504 return NO_XRI;
16505 } else {
16506 set_bit(xri, phba->sli4_hba.xri_bmask);
16507 phba->sli4_hba.max_cfg_param.xri_used++;
James Smart6d368e52011-05-24 11:44:12 -040016508 }
James Smart6d368e52011-05-24 11:44:12 -040016509 spin_unlock_irq(&phba->hbalock);
16510 return xri;
16511}
16512
16513/**
16514 * lpfc_sli4_free_xri - Release an xri for reuse.
16515 * @phba: pointer to lpfc hba data structure.
16516 *
16517 * This routine is invoked to release an xri to the pool of
16518 * available rpis maintained by the driver.
16519 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040016520static void
James Smart6d368e52011-05-24 11:44:12 -040016521__lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
16522{
16523 if (test_and_clear_bit(xri, phba->sli4_hba.xri_bmask)) {
James Smart6d368e52011-05-24 11:44:12 -040016524 phba->sli4_hba.max_cfg_param.xri_used--;
16525 }
16526}
16527
16528/**
16529 * lpfc_sli4_free_xri - Release an xri for reuse.
16530 * @phba: pointer to lpfc hba data structure.
16531 *
16532 * This routine is invoked to release an xri to the pool of
16533 * available rpis maintained by the driver.
16534 **/
16535void
16536lpfc_sli4_free_xri(struct lpfc_hba *phba, int xri)
16537{
16538 spin_lock_irq(&phba->hbalock);
16539 __lpfc_sli4_free_xri(phba, xri);
16540 spin_unlock_irq(&phba->hbalock);
16541}
16542
16543/**
James Smart4f774512009-05-22 14:52:35 -040016544 * lpfc_sli4_next_xritag - Get an xritag for the io
16545 * @phba: Pointer to HBA context object.
16546 *
16547 * This function gets an xritag for the iocb. If there is no unused xritag
16548 * it will return 0xffff.
16549 * The function returns the allocated xritag if successful, else returns zero.
16550 * Zero is not a valid xritag.
16551 * The caller is not required to hold any lock.
16552 **/
16553uint16_t
16554lpfc_sli4_next_xritag(struct lpfc_hba *phba)
16555{
James Smart6d368e52011-05-24 11:44:12 -040016556 uint16_t xri_index;
James Smart4f774512009-05-22 14:52:35 -040016557
James Smart6d368e52011-05-24 11:44:12 -040016558 xri_index = lpfc_sli4_alloc_xri(phba);
James Smart81378052012-05-09 21:17:37 -040016559 if (xri_index == NO_XRI)
16560 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
16561 "2004 Failed to allocate XRI.last XRITAG is %d"
16562 " Max XRI is %d, Used XRI is %d\n",
16563 xri_index,
16564 phba->sli4_hba.max_cfg_param.max_xri,
16565 phba->sli4_hba.max_cfg_param.xri_used);
16566 return xri_index;
James Smart4f774512009-05-22 14:52:35 -040016567}
16568
16569/**
James Smart895427b2017-02-12 13:52:30 -080016570 * lpfc_sli4_post_sgl_list - post a block of ELS sgls to the port.
James Smart4f774512009-05-22 14:52:35 -040016571 * @phba: pointer to lpfc hba data structure.
James Smart8a9d2e82012-05-09 21:16:12 -040016572 * @post_sgl_list: pointer to els sgl entry list.
16573 * @count: number of els sgl entries on the list.
James Smart4f774512009-05-22 14:52:35 -040016574 *
16575 * This routine is invoked to post a block of driver's sgl pages to the
16576 * HBA using non-embedded mailbox command. No Lock is held. This routine
16577 * is only called when the driver is loading and after all IO has been
16578 * stopped.
16579 **/
James Smart8a9d2e82012-05-09 21:16:12 -040016580static int
James Smart895427b2017-02-12 13:52:30 -080016581lpfc_sli4_post_sgl_list(struct lpfc_hba *phba,
James Smart8a9d2e82012-05-09 21:16:12 -040016582 struct list_head *post_sgl_list,
16583 int post_cnt)
James Smart4f774512009-05-22 14:52:35 -040016584{
James Smart8a9d2e82012-05-09 21:16:12 -040016585 struct lpfc_sglq *sglq_entry = NULL, *sglq_next = NULL;
James Smart4f774512009-05-22 14:52:35 -040016586 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
16587 struct sgl_page_pairs *sgl_pg_pairs;
16588 void *viraddr;
16589 LPFC_MBOXQ_t *mbox;
16590 uint32_t reqlen, alloclen, pg_pairs;
16591 uint32_t mbox_tmo;
James Smart8a9d2e82012-05-09 21:16:12 -040016592 uint16_t xritag_start = 0;
16593 int rc = 0;
James Smart4f774512009-05-22 14:52:35 -040016594 uint32_t shdr_status, shdr_add_status;
16595 union lpfc_sli4_cfg_shdr *shdr;
16596
James Smart895427b2017-02-12 13:52:30 -080016597 reqlen = post_cnt * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040016598 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040016599 if (reqlen > SLI4_PAGE_SIZE) {
James Smart895427b2017-02-12 13:52:30 -080016600 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart4f774512009-05-22 14:52:35 -040016601 "2559 Block sgl registration required DMA "
16602 "size (%d) great than a page\n", reqlen);
16603 return -ENOMEM;
16604 }
James Smart895427b2017-02-12 13:52:30 -080016605
James Smart4f774512009-05-22 14:52:35 -040016606 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
James Smart6d368e52011-05-24 11:44:12 -040016607 if (!mbox)
James Smart4f774512009-05-22 14:52:35 -040016608 return -ENOMEM;
James Smart4f774512009-05-22 14:52:35 -040016609
16610 /* Allocate DMA memory and set up the non-embedded mailbox command */
16611 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
16612 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES, reqlen,
16613 LPFC_SLI4_MBX_NEMBED);
16614
16615 if (alloclen < reqlen) {
16616 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
16617 "0285 Allocated DMA memory size (%d) is "
16618 "less than the requested DMA memory "
16619 "size (%d)\n", alloclen, reqlen);
16620 lpfc_sli4_mbox_cmd_free(phba, mbox);
16621 return -ENOMEM;
16622 }
James Smart4f774512009-05-22 14:52:35 -040016623 /* Set up the SGL pages in the non-embedded DMA pages */
James Smart6d368e52011-05-24 11:44:12 -040016624 viraddr = mbox->sge_array->addr[0];
James Smart4f774512009-05-22 14:52:35 -040016625 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
16626 sgl_pg_pairs = &sgl->sgl_pg_pairs;
16627
James Smart8a9d2e82012-05-09 21:16:12 -040016628 pg_pairs = 0;
16629 list_for_each_entry_safe(sglq_entry, sglq_next, post_sgl_list, list) {
James Smart4f774512009-05-22 14:52:35 -040016630 /* Set up the sge entry */
16631 sgl_pg_pairs->sgl_pg0_addr_lo =
16632 cpu_to_le32(putPaddrLow(sglq_entry->phys));
16633 sgl_pg_pairs->sgl_pg0_addr_hi =
16634 cpu_to_le32(putPaddrHigh(sglq_entry->phys));
16635 sgl_pg_pairs->sgl_pg1_addr_lo =
16636 cpu_to_le32(putPaddrLow(0));
16637 sgl_pg_pairs->sgl_pg1_addr_hi =
16638 cpu_to_le32(putPaddrHigh(0));
James Smart6d368e52011-05-24 11:44:12 -040016639
James Smart4f774512009-05-22 14:52:35 -040016640 /* Keep the first xritag on the list */
16641 if (pg_pairs == 0)
16642 xritag_start = sglq_entry->sli4_xritag;
16643 sgl_pg_pairs++;
James Smart8a9d2e82012-05-09 21:16:12 -040016644 pg_pairs++;
James Smart4f774512009-05-22 14:52:35 -040016645 }
James Smart6d368e52011-05-24 11:44:12 -040016646
16647 /* Complete initialization and perform endian conversion. */
James Smart4f774512009-05-22 14:52:35 -040016648 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
James Smart895427b2017-02-12 13:52:30 -080016649 bf_set(lpfc_post_sgl_pages_xricnt, sgl, post_cnt);
James Smart4f774512009-05-22 14:52:35 -040016650 sgl->word0 = cpu_to_le32(sgl->word0);
James Smart895427b2017-02-12 13:52:30 -080016651
James Smart4f774512009-05-22 14:52:35 -040016652 if (!phba->sli4_hba.intr_enable)
16653 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
16654 else {
James Smarta183a152011-10-10 21:32:43 -040016655 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040016656 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
16657 }
16658 shdr = (union lpfc_sli4_cfg_shdr *) &sgl->cfg_shdr;
16659 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16660 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16661 if (rc != MBX_TIMEOUT)
16662 lpfc_sli4_mbox_cmd_free(phba, mbox);
16663 if (shdr_status || shdr_add_status || rc) {
16664 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
16665 "2513 POST_SGL_BLOCK mailbox command failed "
16666 "status x%x add_status x%x mbx status x%x\n",
16667 shdr_status, shdr_add_status, rc);
16668 rc = -ENXIO;
16669 }
16670 return rc;
16671}
16672
16673/**
James Smart5e5b5112019-01-28 11:14:22 -080016674 * lpfc_sli4_post_io_sgl_block - post a block of nvme sgl list to firmware
James Smart4f774512009-05-22 14:52:35 -040016675 * @phba: pointer to lpfc hba data structure.
James Smart0794d602019-01-28 11:14:19 -080016676 * @nblist: pointer to nvme buffer list.
James Smart4f774512009-05-22 14:52:35 -040016677 * @count: number of scsi buffers on the list.
16678 *
16679 * This routine is invoked to post a block of @count scsi sgl pages from a
James Smart0794d602019-01-28 11:14:19 -080016680 * SCSI buffer list @nblist to the HBA using non-embedded mailbox command.
James Smart4f774512009-05-22 14:52:35 -040016681 * No Lock is held.
16682 *
16683 **/
James Smart0794d602019-01-28 11:14:19 -080016684static int
James Smart5e5b5112019-01-28 11:14:22 -080016685lpfc_sli4_post_io_sgl_block(struct lpfc_hba *phba, struct list_head *nblist,
16686 int count)
James Smart4f774512009-05-22 14:52:35 -040016687{
James Smartc4908502019-01-28 11:14:28 -080016688 struct lpfc_io_buf *lpfc_ncmd;
James Smart4f774512009-05-22 14:52:35 -040016689 struct lpfc_mbx_post_uembed_sgl_page1 *sgl;
16690 struct sgl_page_pairs *sgl_pg_pairs;
16691 void *viraddr;
16692 LPFC_MBOXQ_t *mbox;
16693 uint32_t reqlen, alloclen, pg_pairs;
16694 uint32_t mbox_tmo;
16695 uint16_t xritag_start = 0;
16696 int rc = 0;
16697 uint32_t shdr_status, shdr_add_status;
16698 dma_addr_t pdma_phys_bpl1;
16699 union lpfc_sli4_cfg_shdr *shdr;
16700
16701 /* Calculate the requested length of the dma memory */
James Smart8a9d2e82012-05-09 21:16:12 -040016702 reqlen = count * sizeof(struct sgl_page_pairs) +
James Smart4f774512009-05-22 14:52:35 -040016703 sizeof(union lpfc_sli4_cfg_shdr) + sizeof(uint32_t);
James Smart49198b32010-04-06 15:04:33 -040016704 if (reqlen > SLI4_PAGE_SIZE) {
James Smart4f774512009-05-22 14:52:35 -040016705 lpfc_printf_log(phba, KERN_WARNING, LOG_INIT,
James Smart0794d602019-01-28 11:14:19 -080016706 "6118 Block sgl registration required DMA "
James Smart4f774512009-05-22 14:52:35 -040016707 "size (%d) great than a page\n", reqlen);
16708 return -ENOMEM;
16709 }
16710 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
16711 if (!mbox) {
16712 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart0794d602019-01-28 11:14:19 -080016713 "6119 Failed to allocate mbox cmd memory\n");
James Smart4f774512009-05-22 14:52:35 -040016714 return -ENOMEM;
16715 }
16716
16717 /* Allocate DMA memory and set up the non-embedded mailbox command */
16718 alloclen = lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
James Smart0794d602019-01-28 11:14:19 -080016719 LPFC_MBOX_OPCODE_FCOE_POST_SGL_PAGES,
16720 reqlen, LPFC_SLI4_MBX_NEMBED);
James Smart4f774512009-05-22 14:52:35 -040016721
16722 if (alloclen < reqlen) {
16723 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart0794d602019-01-28 11:14:19 -080016724 "6120 Allocated DMA memory size (%d) is "
James Smart4f774512009-05-22 14:52:35 -040016725 "less than the requested DMA memory "
16726 "size (%d)\n", alloclen, reqlen);
16727 lpfc_sli4_mbox_cmd_free(phba, mbox);
16728 return -ENOMEM;
16729 }
James Smart6d368e52011-05-24 11:44:12 -040016730
James Smart4f774512009-05-22 14:52:35 -040016731 /* Get the first SGE entry from the non-embedded DMA memory */
James Smart4f774512009-05-22 14:52:35 -040016732 viraddr = mbox->sge_array->addr[0];
16733
16734 /* Set up the SGL pages in the non-embedded DMA pages */
16735 sgl = (struct lpfc_mbx_post_uembed_sgl_page1 *)viraddr;
16736 sgl_pg_pairs = &sgl->sgl_pg_pairs;
16737
16738 pg_pairs = 0;
James Smart0794d602019-01-28 11:14:19 -080016739 list_for_each_entry(lpfc_ncmd, nblist, list) {
James Smart4f774512009-05-22 14:52:35 -040016740 /* Set up the sge entry */
16741 sgl_pg_pairs->sgl_pg0_addr_lo =
James Smart0794d602019-01-28 11:14:19 -080016742 cpu_to_le32(putPaddrLow(lpfc_ncmd->dma_phys_sgl));
James Smart4f774512009-05-22 14:52:35 -040016743 sgl_pg_pairs->sgl_pg0_addr_hi =
James Smart0794d602019-01-28 11:14:19 -080016744 cpu_to_le32(putPaddrHigh(lpfc_ncmd->dma_phys_sgl));
James Smart4f774512009-05-22 14:52:35 -040016745 if (phba->cfg_sg_dma_buf_size > SGL_PAGE_SIZE)
James Smart0794d602019-01-28 11:14:19 -080016746 pdma_phys_bpl1 = lpfc_ncmd->dma_phys_sgl +
16747 SGL_PAGE_SIZE;
James Smart4f774512009-05-22 14:52:35 -040016748 else
16749 pdma_phys_bpl1 = 0;
16750 sgl_pg_pairs->sgl_pg1_addr_lo =
16751 cpu_to_le32(putPaddrLow(pdma_phys_bpl1));
16752 sgl_pg_pairs->sgl_pg1_addr_hi =
16753 cpu_to_le32(putPaddrHigh(pdma_phys_bpl1));
16754 /* Keep the first xritag on the list */
16755 if (pg_pairs == 0)
James Smart0794d602019-01-28 11:14:19 -080016756 xritag_start = lpfc_ncmd->cur_iocbq.sli4_xritag;
James Smart4f774512009-05-22 14:52:35 -040016757 sgl_pg_pairs++;
16758 pg_pairs++;
16759 }
16760 bf_set(lpfc_post_sgl_pages_xri, sgl, xritag_start);
16761 bf_set(lpfc_post_sgl_pages_xricnt, sgl, pg_pairs);
16762 /* Perform endian conversion if necessary */
16763 sgl->word0 = cpu_to_le32(sgl->word0);
16764
James Smart0794d602019-01-28 11:14:19 -080016765 if (!phba->sli4_hba.intr_enable) {
James Smart4f774512009-05-22 14:52:35 -040016766 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
James Smart0794d602019-01-28 11:14:19 -080016767 } else {
James Smarta183a152011-10-10 21:32:43 -040016768 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart4f774512009-05-22 14:52:35 -040016769 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
16770 }
James Smart0794d602019-01-28 11:14:19 -080016771 shdr = (union lpfc_sli4_cfg_shdr *)&sgl->cfg_shdr;
James Smart4f774512009-05-22 14:52:35 -040016772 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
16773 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
16774 if (rc != MBX_TIMEOUT)
16775 lpfc_sli4_mbox_cmd_free(phba, mbox);
16776 if (shdr_status || shdr_add_status || rc) {
16777 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart0794d602019-01-28 11:14:19 -080016778 "6125 POST_SGL_BLOCK mailbox command failed "
James Smart4f774512009-05-22 14:52:35 -040016779 "status x%x add_status x%x mbx status x%x\n",
16780 shdr_status, shdr_add_status, rc);
16781 rc = -ENXIO;
16782 }
16783 return rc;
16784}
16785
16786/**
James Smart5e5b5112019-01-28 11:14:22 -080016787 * lpfc_sli4_post_io_sgl_list - Post blocks of nvme buffer sgls from a list
James Smart0794d602019-01-28 11:14:19 -080016788 * @phba: pointer to lpfc hba data structure.
16789 * @post_nblist: pointer to the nvme buffer list.
16790 *
16791 * This routine walks a list of nvme buffers that was passed in. It attempts
16792 * to construct blocks of nvme buffer sgls which contains contiguous xris and
16793 * uses the non-embedded SGL block post mailbox commands to post to the port.
16794 * For single NVME buffer sgl with non-contiguous xri, if any, it shall use
16795 * embedded SGL post mailbox command for posting. The @post_nblist passed in
16796 * must be local list, thus no lock is needed when manipulate the list.
16797 *
16798 * Returns: 0 = failure, non-zero number of successfully posted buffers.
16799 **/
16800int
James Smart5e5b5112019-01-28 11:14:22 -080016801lpfc_sli4_post_io_sgl_list(struct lpfc_hba *phba,
16802 struct list_head *post_nblist, int sb_count)
James Smart0794d602019-01-28 11:14:19 -080016803{
James Smartc4908502019-01-28 11:14:28 -080016804 struct lpfc_io_buf *lpfc_ncmd, *lpfc_ncmd_next;
James Smart0794d602019-01-28 11:14:19 -080016805 int status, sgl_size;
16806 int post_cnt = 0, block_cnt = 0, num_posting = 0, num_posted = 0;
16807 dma_addr_t pdma_phys_sgl1;
16808 int last_xritag = NO_XRI;
16809 int cur_xritag;
James Smart0794d602019-01-28 11:14:19 -080016810 LIST_HEAD(prep_nblist);
16811 LIST_HEAD(blck_nblist);
16812 LIST_HEAD(nvme_nblist);
16813
16814 /* sanity check */
16815 if (sb_count <= 0)
16816 return -EINVAL;
16817
16818 sgl_size = phba->cfg_sg_dma_buf_size;
16819 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next, post_nblist, list) {
16820 list_del_init(&lpfc_ncmd->list);
16821 block_cnt++;
16822 if ((last_xritag != NO_XRI) &&
16823 (lpfc_ncmd->cur_iocbq.sli4_xritag != last_xritag + 1)) {
16824 /* a hole in xri block, form a sgl posting block */
16825 list_splice_init(&prep_nblist, &blck_nblist);
16826 post_cnt = block_cnt - 1;
16827 /* prepare list for next posting block */
16828 list_add_tail(&lpfc_ncmd->list, &prep_nblist);
16829 block_cnt = 1;
16830 } else {
16831 /* prepare list for next posting block */
16832 list_add_tail(&lpfc_ncmd->list, &prep_nblist);
16833 /* enough sgls for non-embed sgl mbox command */
16834 if (block_cnt == LPFC_NEMBED_MBOX_SGL_CNT) {
16835 list_splice_init(&prep_nblist, &blck_nblist);
16836 post_cnt = block_cnt;
16837 block_cnt = 0;
16838 }
16839 }
16840 num_posting++;
16841 last_xritag = lpfc_ncmd->cur_iocbq.sli4_xritag;
16842
16843 /* end of repost sgl list condition for NVME buffers */
16844 if (num_posting == sb_count) {
16845 if (post_cnt == 0) {
16846 /* last sgl posting block */
16847 list_splice_init(&prep_nblist, &blck_nblist);
16848 post_cnt = block_cnt;
16849 } else if (block_cnt == 1) {
16850 /* last single sgl with non-contiguous xri */
16851 if (sgl_size > SGL_PAGE_SIZE)
16852 pdma_phys_sgl1 =
16853 lpfc_ncmd->dma_phys_sgl +
16854 SGL_PAGE_SIZE;
16855 else
16856 pdma_phys_sgl1 = 0;
16857 cur_xritag = lpfc_ncmd->cur_iocbq.sli4_xritag;
16858 status = lpfc_sli4_post_sgl(
16859 phba, lpfc_ncmd->dma_phys_sgl,
16860 pdma_phys_sgl1, cur_xritag);
16861 if (status) {
James Smartc4908502019-01-28 11:14:28 -080016862 /* Post error. Buffer unavailable. */
16863 lpfc_ncmd->flags |=
16864 LPFC_SBUF_NOT_POSTED;
James Smart0794d602019-01-28 11:14:19 -080016865 } else {
James Smartc4908502019-01-28 11:14:28 -080016866 /* Post success. Bffer available. */
16867 lpfc_ncmd->flags &=
16868 ~LPFC_SBUF_NOT_POSTED;
James Smart0794d602019-01-28 11:14:19 -080016869 lpfc_ncmd->status = IOSTAT_SUCCESS;
16870 num_posted++;
16871 }
16872 /* success, put on NVME buffer sgl list */
16873 list_add_tail(&lpfc_ncmd->list, &nvme_nblist);
16874 }
16875 }
16876
16877 /* continue until a nembed page worth of sgls */
16878 if (post_cnt == 0)
16879 continue;
16880
16881 /* post block of NVME buffer list sgls */
James Smart5e5b5112019-01-28 11:14:22 -080016882 status = lpfc_sli4_post_io_sgl_block(phba, &blck_nblist,
16883 post_cnt);
James Smart0794d602019-01-28 11:14:19 -080016884
16885 /* don't reset xirtag due to hole in xri block */
16886 if (block_cnt == 0)
16887 last_xritag = NO_XRI;
16888
16889 /* reset NVME buffer post count for next round of posting */
16890 post_cnt = 0;
16891
16892 /* put posted NVME buffer-sgl posted on NVME buffer sgl list */
16893 while (!list_empty(&blck_nblist)) {
16894 list_remove_head(&blck_nblist, lpfc_ncmd,
James Smartc4908502019-01-28 11:14:28 -080016895 struct lpfc_io_buf, list);
James Smart0794d602019-01-28 11:14:19 -080016896 if (status) {
James Smartc4908502019-01-28 11:14:28 -080016897 /* Post error. Mark buffer unavailable. */
16898 lpfc_ncmd->flags |= LPFC_SBUF_NOT_POSTED;
James Smart0794d602019-01-28 11:14:19 -080016899 } else {
James Smartc4908502019-01-28 11:14:28 -080016900 /* Post success, Mark buffer available. */
16901 lpfc_ncmd->flags &= ~LPFC_SBUF_NOT_POSTED;
James Smart0794d602019-01-28 11:14:19 -080016902 lpfc_ncmd->status = IOSTAT_SUCCESS;
16903 num_posted++;
16904 }
16905 list_add_tail(&lpfc_ncmd->list, &nvme_nblist);
16906 }
16907 }
16908 /* Push NVME buffers with sgl posted to the available list */
James Smart5e5b5112019-01-28 11:14:22 -080016909 lpfc_io_buf_replenish(phba, &nvme_nblist);
16910
James Smart0794d602019-01-28 11:14:19 -080016911 return num_posted;
16912}
16913
16914/**
James Smart4f774512009-05-22 14:52:35 -040016915 * lpfc_fc_frame_check - Check that this frame is a valid frame to handle
16916 * @phba: pointer to lpfc_hba struct that the frame was received on
16917 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
16918 *
16919 * This function checks the fields in the @fc_hdr to see if the FC frame is a
16920 * valid type of frame that the LPFC driver will handle. This function will
16921 * return a zero if the frame is a valid frame or a non zero value when the
16922 * frame does not pass the check.
16923 **/
16924static int
16925lpfc_fc_frame_check(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr)
16926{
Tomas Henzl474ffb72010-12-22 16:52:40 +010016927 /* make rctl_names static to save stack space */
James Smart4f774512009-05-22 14:52:35 -040016928 struct fc_vft_header *fc_vft_hdr;
James Smart546fc852011-03-11 16:06:29 -050016929 uint32_t *header = (uint32_t *) fc_hdr;
James Smart4f774512009-05-22 14:52:35 -040016930
James Smarte62245d2019-08-14 16:57:08 -070016931#define FC_RCTL_MDS_DIAGS 0xF4
16932
James Smart4f774512009-05-22 14:52:35 -040016933 switch (fc_hdr->fh_r_ctl) {
16934 case FC_RCTL_DD_UNCAT: /* uncategorized information */
16935 case FC_RCTL_DD_SOL_DATA: /* solicited data */
16936 case FC_RCTL_DD_UNSOL_CTL: /* unsolicited control */
16937 case FC_RCTL_DD_SOL_CTL: /* solicited control or reply */
16938 case FC_RCTL_DD_UNSOL_DATA: /* unsolicited data */
16939 case FC_RCTL_DD_DATA_DESC: /* data descriptor */
16940 case FC_RCTL_DD_UNSOL_CMD: /* unsolicited command */
16941 case FC_RCTL_DD_CMD_STATUS: /* command status */
16942 case FC_RCTL_ELS_REQ: /* extended link services request */
16943 case FC_RCTL_ELS_REP: /* extended link services reply */
16944 case FC_RCTL_ELS4_REQ: /* FC-4 ELS request */
16945 case FC_RCTL_ELS4_REP: /* FC-4 ELS reply */
16946 case FC_RCTL_BA_NOP: /* basic link service NOP */
16947 case FC_RCTL_BA_ABTS: /* basic link service abort */
16948 case FC_RCTL_BA_RMC: /* remove connection */
16949 case FC_RCTL_BA_ACC: /* basic accept */
16950 case FC_RCTL_BA_RJT: /* basic reject */
16951 case FC_RCTL_BA_PRMT:
16952 case FC_RCTL_ACK_1: /* acknowledge_1 */
16953 case FC_RCTL_ACK_0: /* acknowledge_0 */
16954 case FC_RCTL_P_RJT: /* port reject */
16955 case FC_RCTL_F_RJT: /* fabric reject */
16956 case FC_RCTL_P_BSY: /* port busy */
16957 case FC_RCTL_F_BSY: /* fabric busy to data frame */
16958 case FC_RCTL_F_BSYL: /* fabric busy to link control frame */
16959 case FC_RCTL_LCR: /* link credit reset */
James Smartae9e28f2017-05-15 15:20:51 -070016960 case FC_RCTL_MDS_DIAGS: /* MDS Diagnostics */
James Smart4f774512009-05-22 14:52:35 -040016961 case FC_RCTL_END: /* end */
16962 break;
16963 case FC_RCTL_VFTH: /* Virtual Fabric tagging Header */
16964 fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
16965 fc_hdr = &((struct fc_frame_header *)fc_vft_hdr)[1];
16966 return lpfc_fc_frame_check(phba, fc_hdr);
16967 default:
16968 goto drop;
16969 }
James Smartae9e28f2017-05-15 15:20:51 -070016970
James Smart4f774512009-05-22 14:52:35 -040016971 switch (fc_hdr->fh_type) {
16972 case FC_TYPE_BLS:
16973 case FC_TYPE_ELS:
16974 case FC_TYPE_FCP:
16975 case FC_TYPE_CT:
James Smart895427b2017-02-12 13:52:30 -080016976 case FC_TYPE_NVME:
James Smart4f774512009-05-22 14:52:35 -040016977 break;
16978 case FC_TYPE_IP:
16979 case FC_TYPE_ILS:
16980 default:
16981 goto drop;
16982 }
James Smart546fc852011-03-11 16:06:29 -050016983
James Smart4f774512009-05-22 14:52:35 -040016984 lpfc_printf_log(phba, KERN_INFO, LOG_ELS,
James Smart78e1d202017-06-01 21:07:09 -070016985 "2538 Received frame rctl:x%x, type:x%x, "
James Smart88f43a02013-04-17 20:19:44 -040016986 "frame Data:%08x %08x %08x %08x %08x %08x %08x\n",
James Smart78e1d202017-06-01 21:07:09 -070016987 fc_hdr->fh_r_ctl, fc_hdr->fh_type,
16988 be32_to_cpu(header[0]), be32_to_cpu(header[1]),
16989 be32_to_cpu(header[2]), be32_to_cpu(header[3]),
16990 be32_to_cpu(header[4]), be32_to_cpu(header[5]),
16991 be32_to_cpu(header[6]));
James Smart4f774512009-05-22 14:52:35 -040016992 return 0;
16993drop:
16994 lpfc_printf_log(phba, KERN_WARNING, LOG_ELS,
James Smart78e1d202017-06-01 21:07:09 -070016995 "2539 Dropped frame rctl:x%x type:x%x\n",
16996 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
James Smart4f774512009-05-22 14:52:35 -040016997 return 1;
16998}
16999
17000/**
17001 * lpfc_fc_hdr_get_vfi - Get the VFI from an FC frame
17002 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
17003 *
17004 * This function processes the FC header to retrieve the VFI from the VF
17005 * header, if one exists. This function will return the VFI if one exists
17006 * or 0 if no VSAN Header exists.
17007 **/
17008static uint32_t
17009lpfc_fc_hdr_get_vfi(struct fc_frame_header *fc_hdr)
17010{
17011 struct fc_vft_header *fc_vft_hdr = (struct fc_vft_header *)fc_hdr;
17012
17013 if (fc_hdr->fh_r_ctl != FC_RCTL_VFTH)
17014 return 0;
17015 return bf_get(fc_vft_hdr_vf_id, fc_vft_hdr);
17016}
17017
17018/**
17019 * lpfc_fc_frame_to_vport - Finds the vport that a frame is destined to
17020 * @phba: Pointer to the HBA structure to search for the vport on
17021 * @fc_hdr: A pointer to the FC Header data (In Big Endian Format)
17022 * @fcfi: The FC Fabric ID that the frame came from
17023 *
17024 * This function searches the @phba for a vport that matches the content of the
17025 * @fc_hdr passed in and the @fcfi. This function uses the @fc_hdr to fetch the
17026 * VFI, if the Virtual Fabric Tagging Header exists, and the DID. This function
17027 * returns the matching vport pointer or NULL if unable to match frame to a
17028 * vport.
17029 **/
17030static struct lpfc_vport *
17031lpfc_fc_frame_to_vport(struct lpfc_hba *phba, struct fc_frame_header *fc_hdr,
James Smart895427b2017-02-12 13:52:30 -080017032 uint16_t fcfi, uint32_t did)
James Smart4f774512009-05-22 14:52:35 -040017033{
17034 struct lpfc_vport **vports;
17035 struct lpfc_vport *vport = NULL;
17036 int i;
James Smart939723a2012-05-09 21:19:03 -040017037
James Smartbf086112011-08-21 21:48:13 -040017038 if (did == Fabric_DID)
17039 return phba->pport;
James Smart939723a2012-05-09 21:19:03 -040017040 if ((phba->pport->fc_flag & FC_PT2PT) &&
17041 !(phba->link_state == LPFC_HBA_READY))
17042 return phba->pport;
17043
James Smart4f774512009-05-22 14:52:35 -040017044 vports = lpfc_create_vport_work_array(phba);
James Smart895427b2017-02-12 13:52:30 -080017045 if (vports != NULL) {
James Smart4f774512009-05-22 14:52:35 -040017046 for (i = 0; i <= phba->max_vpi && vports[i] != NULL; i++) {
17047 if (phba->fcf.fcfi == fcfi &&
17048 vports[i]->vfi == lpfc_fc_hdr_get_vfi(fc_hdr) &&
17049 vports[i]->fc_myDID == did) {
17050 vport = vports[i];
17051 break;
17052 }
17053 }
James Smart895427b2017-02-12 13:52:30 -080017054 }
James Smart4f774512009-05-22 14:52:35 -040017055 lpfc_destroy_vport_work_array(phba, vports);
17056 return vport;
17057}
17058
17059/**
James Smart45ed1192009-10-02 15:17:02 -040017060 * lpfc_update_rcv_time_stamp - Update vport's rcv seq time stamp
17061 * @vport: The vport to work on.
17062 *
17063 * This function updates the receive sequence time stamp for this vport. The
17064 * receive sequence time stamp indicates the time that the last frame of the
17065 * the sequence that has been idle for the longest amount of time was received.
17066 * the driver uses this time stamp to indicate if any received sequences have
17067 * timed out.
17068 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040017069static void
James Smart45ed1192009-10-02 15:17:02 -040017070lpfc_update_rcv_time_stamp(struct lpfc_vport *vport)
17071{
17072 struct lpfc_dmabuf *h_buf;
17073 struct hbq_dmabuf *dmabuf = NULL;
17074
17075 /* get the oldest sequence on the rcv list */
17076 h_buf = list_get_first(&vport->rcv_buffer_list,
17077 struct lpfc_dmabuf, list);
17078 if (!h_buf)
17079 return;
17080 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
17081 vport->rcv_buffer_time_stamp = dmabuf->time_stamp;
17082}
17083
17084/**
17085 * lpfc_cleanup_rcv_buffers - Cleans up all outstanding receive sequences.
17086 * @vport: The vport that the received sequences were sent to.
17087 *
17088 * This function cleans up all outstanding received sequences. This is called
17089 * by the driver when a link event or user action invalidates all the received
17090 * sequences.
17091 **/
17092void
17093lpfc_cleanup_rcv_buffers(struct lpfc_vport *vport)
17094{
17095 struct lpfc_dmabuf *h_buf, *hnext;
17096 struct lpfc_dmabuf *d_buf, *dnext;
17097 struct hbq_dmabuf *dmabuf = NULL;
17098
17099 /* start with the oldest sequence on the rcv list */
17100 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
17101 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
17102 list_del_init(&dmabuf->hbuf.list);
17103 list_for_each_entry_safe(d_buf, dnext,
17104 &dmabuf->dbuf.list, list) {
17105 list_del_init(&d_buf->list);
17106 lpfc_in_buf_free(vport->phba, d_buf);
17107 }
17108 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
17109 }
17110}
17111
17112/**
17113 * lpfc_rcv_seq_check_edtov - Cleans up timed out receive sequences.
17114 * @vport: The vport that the received sequences were sent to.
17115 *
17116 * This function determines whether any received sequences have timed out by
17117 * first checking the vport's rcv_buffer_time_stamp. If this time_stamp
17118 * indicates that there is at least one timed out sequence this routine will
17119 * go through the received sequences one at a time from most inactive to most
17120 * active to determine which ones need to be cleaned up. Once it has determined
17121 * that a sequence needs to be cleaned up it will simply free up the resources
17122 * without sending an abort.
17123 **/
17124void
17125lpfc_rcv_seq_check_edtov(struct lpfc_vport *vport)
17126{
17127 struct lpfc_dmabuf *h_buf, *hnext;
17128 struct lpfc_dmabuf *d_buf, *dnext;
17129 struct hbq_dmabuf *dmabuf = NULL;
17130 unsigned long timeout;
17131 int abort_count = 0;
17132
17133 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
17134 vport->rcv_buffer_time_stamp);
17135 if (list_empty(&vport->rcv_buffer_list) ||
17136 time_before(jiffies, timeout))
17137 return;
17138 /* start with the oldest sequence on the rcv list */
17139 list_for_each_entry_safe(h_buf, hnext, &vport->rcv_buffer_list, list) {
17140 dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
17141 timeout = (msecs_to_jiffies(vport->phba->fc_edtov) +
17142 dmabuf->time_stamp);
17143 if (time_before(jiffies, timeout))
17144 break;
17145 abort_count++;
17146 list_del_init(&dmabuf->hbuf.list);
17147 list_for_each_entry_safe(d_buf, dnext,
17148 &dmabuf->dbuf.list, list) {
17149 list_del_init(&d_buf->list);
17150 lpfc_in_buf_free(vport->phba, d_buf);
17151 }
17152 lpfc_in_buf_free(vport->phba, &dmabuf->dbuf);
17153 }
17154 if (abort_count)
17155 lpfc_update_rcv_time_stamp(vport);
17156}
17157
17158/**
James Smart4f774512009-05-22 14:52:35 -040017159 * lpfc_fc_frame_add - Adds a frame to the vport's list of received sequences
17160 * @dmabuf: pointer to a dmabuf that describes the hdr and data of the FC frame
17161 *
17162 * This function searches through the existing incomplete sequences that have
17163 * been sent to this @vport. If the frame matches one of the incomplete
17164 * sequences then the dbuf in the @dmabuf is added to the list of frames that
17165 * make up that sequence. If no sequence is found that matches this frame then
17166 * the function will add the hbuf in the @dmabuf to the @vport's rcv_buffer_list
17167 * This function returns a pointer to the first dmabuf in the sequence list that
17168 * the frame was linked to.
17169 **/
17170static struct hbq_dmabuf *
17171lpfc_fc_frame_add(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
17172{
17173 struct fc_frame_header *new_hdr;
17174 struct fc_frame_header *temp_hdr;
17175 struct lpfc_dmabuf *d_buf;
17176 struct lpfc_dmabuf *h_buf;
17177 struct hbq_dmabuf *seq_dmabuf = NULL;
17178 struct hbq_dmabuf *temp_dmabuf = NULL;
James Smart4360ca92015-12-16 18:12:04 -050017179 uint8_t found = 0;
James Smart4f774512009-05-22 14:52:35 -040017180
James Smart4d9ab992009-10-02 15:16:39 -040017181 INIT_LIST_HEAD(&dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040017182 dmabuf->time_stamp = jiffies;
James Smart4f774512009-05-22 14:52:35 -040017183 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
James Smart4360ca92015-12-16 18:12:04 -050017184
James Smart4f774512009-05-22 14:52:35 -040017185 /* Use the hdr_buf to find the sequence that this frame belongs to */
17186 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
17187 temp_hdr = (struct fc_frame_header *)h_buf->virt;
17188 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
17189 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
17190 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
17191 continue;
17192 /* found a pending sequence that matches this frame */
17193 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
17194 break;
17195 }
17196 if (!seq_dmabuf) {
17197 /*
17198 * This indicates first frame received for this sequence.
17199 * Queue the buffer on the vport's rcv_buffer_list.
17200 */
17201 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
James Smart45ed1192009-10-02 15:17:02 -040017202 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040017203 return dmabuf;
17204 }
17205 temp_hdr = seq_dmabuf->hbuf.virt;
James Smarteeead812009-12-21 17:01:23 -050017206 if (be16_to_cpu(new_hdr->fh_seq_cnt) <
17207 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4d9ab992009-10-02 15:16:39 -040017208 list_del_init(&seq_dmabuf->hbuf.list);
17209 list_add_tail(&dmabuf->hbuf.list, &vport->rcv_buffer_list);
17210 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040017211 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040017212 return dmabuf;
17213 }
James Smart45ed1192009-10-02 15:17:02 -040017214 /* move this sequence to the tail to indicate a young sequence */
17215 list_move_tail(&seq_dmabuf->hbuf.list, &vport->rcv_buffer_list);
17216 seq_dmabuf->time_stamp = jiffies;
17217 lpfc_update_rcv_time_stamp(vport);
James Smarteeead812009-12-21 17:01:23 -050017218 if (list_empty(&seq_dmabuf->dbuf.list)) {
17219 temp_hdr = dmabuf->hbuf.virt;
17220 list_add_tail(&dmabuf->dbuf.list, &seq_dmabuf->dbuf.list);
17221 return seq_dmabuf;
17222 }
James Smart4f774512009-05-22 14:52:35 -040017223 /* find the correct place in the sequence to insert this frame */
James Smart4360ca92015-12-16 18:12:04 -050017224 d_buf = list_entry(seq_dmabuf->dbuf.list.prev, typeof(*d_buf), list);
17225 while (!found) {
James Smart4f774512009-05-22 14:52:35 -040017226 temp_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
17227 temp_hdr = (struct fc_frame_header *)temp_dmabuf->hbuf.virt;
17228 /*
17229 * If the frame's sequence count is greater than the frame on
17230 * the list then insert the frame right after this frame
17231 */
James Smarteeead812009-12-21 17:01:23 -050017232 if (be16_to_cpu(new_hdr->fh_seq_cnt) >
17233 be16_to_cpu(temp_hdr->fh_seq_cnt)) {
James Smart4f774512009-05-22 14:52:35 -040017234 list_add(&dmabuf->dbuf.list, &temp_dmabuf->dbuf.list);
James Smart4360ca92015-12-16 18:12:04 -050017235 found = 1;
17236 break;
James Smart4f774512009-05-22 14:52:35 -040017237 }
James Smart4360ca92015-12-16 18:12:04 -050017238
17239 if (&d_buf->list == &seq_dmabuf->dbuf.list)
17240 break;
17241 d_buf = list_entry(d_buf->list.prev, typeof(*d_buf), list);
James Smart4f774512009-05-22 14:52:35 -040017242 }
James Smart4360ca92015-12-16 18:12:04 -050017243
17244 if (found)
17245 return seq_dmabuf;
James Smart4f774512009-05-22 14:52:35 -040017246 return NULL;
17247}
17248
17249/**
James Smart6669f9b2009-10-02 15:16:45 -040017250 * lpfc_sli4_abort_partial_seq - Abort partially assembled unsol sequence
17251 * @vport: pointer to a vitural port
17252 * @dmabuf: pointer to a dmabuf that describes the FC sequence
17253 *
17254 * This function tries to abort from the partially assembed sequence, described
17255 * by the information from basic abbort @dmabuf. It checks to see whether such
17256 * partially assembled sequence held by the driver. If so, it shall free up all
17257 * the frames from the partially assembled sequence.
17258 *
17259 * Return
17260 * true -- if there is matching partially assembled sequence present and all
17261 * the frames freed with the sequence;
17262 * false -- if there is no matching partially assembled sequence present so
17263 * nothing got aborted in the lower layer driver
17264 **/
17265static bool
17266lpfc_sli4_abort_partial_seq(struct lpfc_vport *vport,
17267 struct hbq_dmabuf *dmabuf)
17268{
17269 struct fc_frame_header *new_hdr;
17270 struct fc_frame_header *temp_hdr;
17271 struct lpfc_dmabuf *d_buf, *n_buf, *h_buf;
17272 struct hbq_dmabuf *seq_dmabuf = NULL;
17273
17274 /* Use the hdr_buf to find the sequence that matches this frame */
17275 INIT_LIST_HEAD(&dmabuf->dbuf.list);
17276 INIT_LIST_HEAD(&dmabuf->hbuf.list);
17277 new_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
17278 list_for_each_entry(h_buf, &vport->rcv_buffer_list, list) {
17279 temp_hdr = (struct fc_frame_header *)h_buf->virt;
17280 if ((temp_hdr->fh_seq_id != new_hdr->fh_seq_id) ||
17281 (temp_hdr->fh_ox_id != new_hdr->fh_ox_id) ||
17282 (memcmp(&temp_hdr->fh_s_id, &new_hdr->fh_s_id, 3)))
17283 continue;
17284 /* found a pending sequence that matches this frame */
17285 seq_dmabuf = container_of(h_buf, struct hbq_dmabuf, hbuf);
17286 break;
17287 }
17288
17289 /* Free up all the frames from the partially assembled sequence */
17290 if (seq_dmabuf) {
17291 list_for_each_entry_safe(d_buf, n_buf,
17292 &seq_dmabuf->dbuf.list, list) {
17293 list_del_init(&d_buf->list);
17294 lpfc_in_buf_free(vport->phba, d_buf);
17295 }
17296 return true;
17297 }
17298 return false;
17299}
17300
17301/**
James Smart6dd9e312013-01-03 15:43:37 -050017302 * lpfc_sli4_abort_ulp_seq - Abort assembled unsol sequence from ulp
17303 * @vport: pointer to a vitural port
17304 * @dmabuf: pointer to a dmabuf that describes the FC sequence
17305 *
17306 * This function tries to abort from the assembed sequence from upper level
17307 * protocol, described by the information from basic abbort @dmabuf. It
17308 * checks to see whether such pending context exists at upper level protocol.
17309 * If so, it shall clean up the pending context.
17310 *
17311 * Return
17312 * true -- if there is matching pending context of the sequence cleaned
17313 * at ulp;
17314 * false -- if there is no matching pending context of the sequence present
17315 * at ulp.
17316 **/
17317static bool
17318lpfc_sli4_abort_ulp_seq(struct lpfc_vport *vport, struct hbq_dmabuf *dmabuf)
17319{
17320 struct lpfc_hba *phba = vport->phba;
17321 int handled;
17322
17323 /* Accepting abort at ulp with SLI4 only */
17324 if (phba->sli_rev < LPFC_SLI_REV4)
17325 return false;
17326
17327 /* Register all caring upper level protocols to attend abort */
17328 handled = lpfc_ct_handle_unsol_abort(phba, dmabuf);
17329 if (handled)
17330 return true;
17331
17332 return false;
17333}
17334
17335/**
James Smart546fc852011-03-11 16:06:29 -050017336 * lpfc_sli4_seq_abort_rsp_cmpl - BLS ABORT RSP seq abort iocb complete handler
James Smart6669f9b2009-10-02 15:16:45 -040017337 * @phba: Pointer to HBA context object.
17338 * @cmd_iocbq: pointer to the command iocbq structure.
17339 * @rsp_iocbq: pointer to the response iocbq structure.
17340 *
James Smart546fc852011-03-11 16:06:29 -050017341 * This function handles the sequence abort response iocb command complete
James Smart6669f9b2009-10-02 15:16:45 -040017342 * event. It properly releases the memory allocated to the sequence abort
17343 * accept iocb.
17344 **/
17345static void
James Smart546fc852011-03-11 16:06:29 -050017346lpfc_sli4_seq_abort_rsp_cmpl(struct lpfc_hba *phba,
James Smart6669f9b2009-10-02 15:16:45 -040017347 struct lpfc_iocbq *cmd_iocbq,
17348 struct lpfc_iocbq *rsp_iocbq)
17349{
James Smart6dd9e312013-01-03 15:43:37 -050017350 struct lpfc_nodelist *ndlp;
17351
17352 if (cmd_iocbq) {
17353 ndlp = (struct lpfc_nodelist *)cmd_iocbq->context1;
17354 lpfc_nlp_put(ndlp);
17355 lpfc_nlp_not_used(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040017356 lpfc_sli_release_iocbq(phba, cmd_iocbq);
James Smart6dd9e312013-01-03 15:43:37 -050017357 }
James Smart6b5151f2012-01-18 16:24:06 -050017358
17359 /* Failure means BLS ABORT RSP did not get delivered to remote node*/
17360 if (rsp_iocbq && rsp_iocbq->iocb.ulpStatus)
17361 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
17362 "3154 BLS ABORT RSP failed, data: x%x/x%x\n",
17363 rsp_iocbq->iocb.ulpStatus,
17364 rsp_iocbq->iocb.un.ulpWord[4]);
James Smart6669f9b2009-10-02 15:16:45 -040017365}
17366
17367/**
James Smart6d368e52011-05-24 11:44:12 -040017368 * lpfc_sli4_xri_inrange - check xri is in range of xris owned by driver.
17369 * @phba: Pointer to HBA context object.
17370 * @xri: xri id in transaction.
17371 *
17372 * This function validates the xri maps to the known range of XRIs allocated an
17373 * used by the driver.
17374 **/
James Smart7851fe22011-07-22 18:36:52 -040017375uint16_t
James Smart6d368e52011-05-24 11:44:12 -040017376lpfc_sli4_xri_inrange(struct lpfc_hba *phba,
17377 uint16_t xri)
17378{
James Smarta2fc4aef2014-09-03 12:57:55 -040017379 uint16_t i;
James Smart6d368e52011-05-24 11:44:12 -040017380
17381 for (i = 0; i < phba->sli4_hba.max_cfg_param.max_xri; i++) {
17382 if (xri == phba->sli4_hba.xri_ids[i])
17383 return i;
17384 }
17385 return NO_XRI;
17386}
17387
James Smart6d368e52011-05-24 11:44:12 -040017388/**
James Smart546fc852011-03-11 16:06:29 -050017389 * lpfc_sli4_seq_abort_rsp - bls rsp to sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040017390 * @phba: Pointer to HBA context object.
17391 * @fc_hdr: pointer to a FC frame header.
17392 *
James Smart546fc852011-03-11 16:06:29 -050017393 * This function sends a basic response to a previous unsol sequence abort
James Smart6669f9b2009-10-02 15:16:45 -040017394 * event after aborting the sequence handling.
17395 **/
James Smart86c67372017-04-21 16:05:04 -070017396void
James Smart6dd9e312013-01-03 15:43:37 -050017397lpfc_sli4_seq_abort_rsp(struct lpfc_vport *vport,
17398 struct fc_frame_header *fc_hdr, bool aborted)
James Smart6669f9b2009-10-02 15:16:45 -040017399{
James Smart6dd9e312013-01-03 15:43:37 -050017400 struct lpfc_hba *phba = vport->phba;
James Smart6669f9b2009-10-02 15:16:45 -040017401 struct lpfc_iocbq *ctiocb = NULL;
17402 struct lpfc_nodelist *ndlp;
James Smartee0f4fe2012-05-09 21:19:14 -040017403 uint16_t oxid, rxid, xri, lxri;
James Smart5ffc2662009-11-18 15:39:44 -050017404 uint32_t sid, fctl;
James Smart6669f9b2009-10-02 15:16:45 -040017405 IOCB_t *icmd;
James Smart546fc852011-03-11 16:06:29 -050017406 int rc;
James Smart6669f9b2009-10-02 15:16:45 -040017407
17408 if (!lpfc_is_link_up(phba))
17409 return;
17410
17411 sid = sli4_sid_from_fc_hdr(fc_hdr);
17412 oxid = be16_to_cpu(fc_hdr->fh_ox_id);
James Smart5ffc2662009-11-18 15:39:44 -050017413 rxid = be16_to_cpu(fc_hdr->fh_rx_id);
James Smart6669f9b2009-10-02 15:16:45 -040017414
James Smart6dd9e312013-01-03 15:43:37 -050017415 ndlp = lpfc_findnode_did(vport, sid);
James Smart6669f9b2009-10-02 15:16:45 -040017416 if (!ndlp) {
James Smart9d3d3402017-04-21 16:05:00 -070017417 ndlp = lpfc_nlp_init(vport, sid);
James Smart6dd9e312013-01-03 15:43:37 -050017418 if (!ndlp) {
17419 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
17420 "1268 Failed to allocate ndlp for "
17421 "oxid:x%x SID:x%x\n", oxid, sid);
17422 return;
17423 }
James Smart6dd9e312013-01-03 15:43:37 -050017424 /* Put ndlp onto pport node list */
17425 lpfc_enqueue_node(vport, ndlp);
17426 } else if (!NLP_CHK_NODE_ACT(ndlp)) {
17427 /* re-setup ndlp without removing from node list */
17428 ndlp = lpfc_enable_node(vport, ndlp, NLP_STE_UNUSED_NODE);
17429 if (!ndlp) {
17430 lpfc_printf_vlog(vport, KERN_WARNING, LOG_ELS,
17431 "3275 Failed to active ndlp found "
17432 "for oxid:x%x SID:x%x\n", oxid, sid);
17433 return;
17434 }
James Smart6669f9b2009-10-02 15:16:45 -040017435 }
17436
James Smart546fc852011-03-11 16:06:29 -050017437 /* Allocate buffer for rsp iocb */
James Smart6669f9b2009-10-02 15:16:45 -040017438 ctiocb = lpfc_sli_get_iocbq(phba);
17439 if (!ctiocb)
17440 return;
17441
James Smart5ffc2662009-11-18 15:39:44 -050017442 /* Extract the F_CTL field from FC_HDR */
17443 fctl = sli4_fctl_from_fc_hdr(fc_hdr);
17444
James Smart6669f9b2009-10-02 15:16:45 -040017445 icmd = &ctiocb->iocb;
James Smart6669f9b2009-10-02 15:16:45 -040017446 icmd->un.xseq64.bdl.bdeSize = 0;
James Smart5ffc2662009-11-18 15:39:44 -050017447 icmd->un.xseq64.bdl.ulpIoTag32 = 0;
James Smart6669f9b2009-10-02 15:16:45 -040017448 icmd->un.xseq64.w5.hcsw.Dfctl = 0;
17449 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_ACC;
17450 icmd->un.xseq64.w5.hcsw.Type = FC_TYPE_BLS;
17451
17452 /* Fill in the rest of iocb fields */
17453 icmd->ulpCommand = CMD_XMIT_BLS_RSP64_CX;
17454 icmd->ulpBdeCount = 0;
17455 icmd->ulpLe = 1;
17456 icmd->ulpClass = CLASS3;
James Smart6d368e52011-05-24 11:44:12 -040017457 icmd->ulpContext = phba->sli4_hba.rpi_ids[ndlp->nlp_rpi];
James Smart6dd9e312013-01-03 15:43:37 -050017458 ctiocb->context1 = lpfc_nlp_get(ndlp);
James Smart6669f9b2009-10-02 15:16:45 -040017459
James Smart6669f9b2009-10-02 15:16:45 -040017460 ctiocb->vport = phba->pport;
James Smart546fc852011-03-11 16:06:29 -050017461 ctiocb->iocb_cmpl = lpfc_sli4_seq_abort_rsp_cmpl;
James Smart6d368e52011-05-24 11:44:12 -040017462 ctiocb->sli4_lxritag = NO_XRI;
James Smart546fc852011-03-11 16:06:29 -050017463 ctiocb->sli4_xritag = NO_XRI;
17464
James Smartee0f4fe2012-05-09 21:19:14 -040017465 if (fctl & FC_FC_EX_CTX)
17466 /* Exchange responder sent the abort so we
17467 * own the oxid.
17468 */
17469 xri = oxid;
17470 else
17471 xri = rxid;
17472 lxri = lpfc_sli4_xri_inrange(phba, xri);
17473 if (lxri != NO_XRI)
17474 lpfc_set_rrq_active(phba, ndlp, lxri,
17475 (xri == oxid) ? rxid : oxid, 0);
James Smart6dd9e312013-01-03 15:43:37 -050017476 /* For BA_ABTS from exchange responder, if the logical xri with
17477 * the oxid maps to the FCP XRI range, the port no longer has
17478 * that exchange context, send a BLS_RJT. Override the IOCB for
17479 * a BA_RJT.
James Smart546fc852011-03-11 16:06:29 -050017480 */
James Smart6dd9e312013-01-03 15:43:37 -050017481 if ((fctl & FC_FC_EX_CTX) &&
James Smart895427b2017-02-12 13:52:30 -080017482 (lxri > lpfc_sli4_get_iocb_cnt(phba))) {
James Smart6dd9e312013-01-03 15:43:37 -050017483 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
17484 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
17485 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
17486 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
17487 }
17488
17489 /* If BA_ABTS failed to abort a partially assembled receive sequence,
17490 * the driver no longer has that exchange, send a BLS_RJT. Override
17491 * the IOCB for a BA_RJT.
17492 */
17493 if (aborted == false) {
James Smart546fc852011-03-11 16:06:29 -050017494 icmd->un.xseq64.w5.hcsw.Rctl = FC_RCTL_BA_RJT;
17495 bf_set(lpfc_vndr_code, &icmd->un.bls_rsp, 0);
17496 bf_set(lpfc_rsn_expln, &icmd->un.bls_rsp, FC_BA_RJT_INV_XID);
17497 bf_set(lpfc_rsn_code, &icmd->un.bls_rsp, FC_BA_RJT_UNABLE);
17498 }
James Smart6669f9b2009-10-02 15:16:45 -040017499
James Smart5ffc2662009-11-18 15:39:44 -050017500 if (fctl & FC_FC_EX_CTX) {
17501 /* ABTS sent by responder to CT exchange, construction
17502 * of BA_ACC will use OX_ID from ABTS for the XRI_TAG
17503 * field and RX_ID from ABTS for RX_ID field.
17504 */
James Smart546fc852011-03-11 16:06:29 -050017505 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_RSP);
James Smart5ffc2662009-11-18 15:39:44 -050017506 } else {
17507 /* ABTS sent by initiator to CT exchange, construction
17508 * of BA_ACC will need to allocate a new XRI as for the
James Smartf09c3ac2012-03-01 22:33:29 -050017509 * XRI_TAG field.
James Smart5ffc2662009-11-18 15:39:44 -050017510 */
James Smart546fc852011-03-11 16:06:29 -050017511 bf_set(lpfc_abts_orig, &icmd->un.bls_rsp, LPFC_ABTS_UNSOL_INT);
James Smart5ffc2662009-11-18 15:39:44 -050017512 }
James Smartf09c3ac2012-03-01 22:33:29 -050017513 bf_set(lpfc_abts_rxid, &icmd->un.bls_rsp, rxid);
James Smart546fc852011-03-11 16:06:29 -050017514 bf_set(lpfc_abts_oxid, &icmd->un.bls_rsp, oxid);
James Smart5ffc2662009-11-18 15:39:44 -050017515
James Smart546fc852011-03-11 16:06:29 -050017516 /* Xmit CT abts response on exchange <xid> */
James Smart6dd9e312013-01-03 15:43:37 -050017517 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
17518 "1200 Send BLS cmd x%x on oxid x%x Data: x%x\n",
17519 icmd->un.xseq64.w5.hcsw.Rctl, oxid, phba->link_state);
James Smart546fc852011-03-11 16:06:29 -050017520
17521 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, ctiocb, 0);
17522 if (rc == IOCB_ERROR) {
James Smart6dd9e312013-01-03 15:43:37 -050017523 lpfc_printf_vlog(vport, KERN_ERR, LOG_ELS,
17524 "2925 Failed to issue CT ABTS RSP x%x on "
17525 "xri x%x, Data x%x\n",
17526 icmd->un.xseq64.w5.hcsw.Rctl, oxid,
17527 phba->link_state);
17528 lpfc_nlp_put(ndlp);
17529 ctiocb->context1 = NULL;
James Smart546fc852011-03-11 16:06:29 -050017530 lpfc_sli_release_iocbq(phba, ctiocb);
17531 }
James Smart6669f9b2009-10-02 15:16:45 -040017532}
17533
17534/**
17535 * lpfc_sli4_handle_unsol_abort - Handle sli-4 unsolicited abort event
17536 * @vport: Pointer to the vport on which this sequence was received
17537 * @dmabuf: pointer to a dmabuf that describes the FC sequence
17538 *
17539 * This function handles an SLI-4 unsolicited abort event. If the unsolicited
17540 * receive sequence is only partially assembed by the driver, it shall abort
17541 * the partially assembled frames for the sequence. Otherwise, if the
17542 * unsolicited receive sequence has been completely assembled and passed to
17543 * the Upper Layer Protocol (UPL), it then mark the per oxid status for the
17544 * unsolicited sequence has been aborted. After that, it will issue a basic
17545 * accept to accept the abort.
17546 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040017547static void
James Smart6669f9b2009-10-02 15:16:45 -040017548lpfc_sli4_handle_unsol_abort(struct lpfc_vport *vport,
17549 struct hbq_dmabuf *dmabuf)
17550{
17551 struct lpfc_hba *phba = vport->phba;
17552 struct fc_frame_header fc_hdr;
James Smart5ffc2662009-11-18 15:39:44 -050017553 uint32_t fctl;
James Smart6dd9e312013-01-03 15:43:37 -050017554 bool aborted;
James Smart6669f9b2009-10-02 15:16:45 -040017555
James Smart6669f9b2009-10-02 15:16:45 -040017556 /* Make a copy of fc_hdr before the dmabuf being released */
17557 memcpy(&fc_hdr, dmabuf->hbuf.virt, sizeof(struct fc_frame_header));
James Smart5ffc2662009-11-18 15:39:44 -050017558 fctl = sli4_fctl_from_fc_hdr(&fc_hdr);
James Smart6669f9b2009-10-02 15:16:45 -040017559
James Smart5ffc2662009-11-18 15:39:44 -050017560 if (fctl & FC_FC_EX_CTX) {
James Smart6dd9e312013-01-03 15:43:37 -050017561 /* ABTS by responder to exchange, no cleanup needed */
17562 aborted = true;
James Smart5ffc2662009-11-18 15:39:44 -050017563 } else {
James Smart6dd9e312013-01-03 15:43:37 -050017564 /* ABTS by initiator to exchange, need to do cleanup */
17565 aborted = lpfc_sli4_abort_partial_seq(vport, dmabuf);
17566 if (aborted == false)
17567 aborted = lpfc_sli4_abort_ulp_seq(vport, dmabuf);
James Smart5ffc2662009-11-18 15:39:44 -050017568 }
James Smart6dd9e312013-01-03 15:43:37 -050017569 lpfc_in_buf_free(phba, &dmabuf->dbuf);
17570
James Smart86c67372017-04-21 16:05:04 -070017571 if (phba->nvmet_support) {
17572 lpfc_nvmet_rcv_unsol_abort(vport, &fc_hdr);
17573 return;
17574 }
17575
James Smart6dd9e312013-01-03 15:43:37 -050017576 /* Respond with BA_ACC or BA_RJT accordingly */
17577 lpfc_sli4_seq_abort_rsp(vport, &fc_hdr, aborted);
James Smart6669f9b2009-10-02 15:16:45 -040017578}
17579
17580/**
James Smart4f774512009-05-22 14:52:35 -040017581 * lpfc_seq_complete - Indicates if a sequence is complete
17582 * @dmabuf: pointer to a dmabuf that describes the FC sequence
17583 *
17584 * This function checks the sequence, starting with the frame described by
17585 * @dmabuf, to see if all the frames associated with this sequence are present.
17586 * the frames associated with this sequence are linked to the @dmabuf using the
17587 * dbuf list. This function looks for two major things. 1) That the first frame
17588 * has a sequence count of zero. 2) There is a frame with last frame of sequence
17589 * set. 3) That there are no holes in the sequence count. The function will
17590 * return 1 when the sequence is complete, otherwise it will return 0.
17591 **/
17592static int
17593lpfc_seq_complete(struct hbq_dmabuf *dmabuf)
17594{
17595 struct fc_frame_header *hdr;
17596 struct lpfc_dmabuf *d_buf;
17597 struct hbq_dmabuf *seq_dmabuf;
17598 uint32_t fctl;
17599 int seq_count = 0;
17600
17601 hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
17602 /* make sure first fame of sequence has a sequence count of zero */
17603 if (hdr->fh_seq_cnt != seq_count)
17604 return 0;
17605 fctl = (hdr->fh_f_ctl[0] << 16 |
17606 hdr->fh_f_ctl[1] << 8 |
17607 hdr->fh_f_ctl[2]);
17608 /* If last frame of sequence we can return success. */
17609 if (fctl & FC_FC_END_SEQ)
17610 return 1;
17611 list_for_each_entry(d_buf, &dmabuf->dbuf.list, list) {
17612 seq_dmabuf = container_of(d_buf, struct hbq_dmabuf, dbuf);
17613 hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
17614 /* If there is a hole in the sequence count then fail. */
James Smarteeead812009-12-21 17:01:23 -050017615 if (++seq_count != be16_to_cpu(hdr->fh_seq_cnt))
James Smart4f774512009-05-22 14:52:35 -040017616 return 0;
17617 fctl = (hdr->fh_f_ctl[0] << 16 |
17618 hdr->fh_f_ctl[1] << 8 |
17619 hdr->fh_f_ctl[2]);
17620 /* If last frame of sequence we can return success. */
17621 if (fctl & FC_FC_END_SEQ)
17622 return 1;
17623 }
17624 return 0;
17625}
17626
17627/**
17628 * lpfc_prep_seq - Prep sequence for ULP processing
17629 * @vport: Pointer to the vport on which this sequence was received
17630 * @dmabuf: pointer to a dmabuf that describes the FC sequence
17631 *
17632 * This function takes a sequence, described by a list of frames, and creates
17633 * a list of iocbq structures to describe the sequence. This iocbq list will be
17634 * used to issue to the generic unsolicited sequence handler. This routine
17635 * returns a pointer to the first iocbq in the list. If the function is unable
17636 * to allocate an iocbq then it throw out the received frames that were not
17637 * able to be described and return a pointer to the first iocbq. If unable to
17638 * allocate any iocbqs (including the first) this function will return NULL.
17639 **/
17640static struct lpfc_iocbq *
17641lpfc_prep_seq(struct lpfc_vport *vport, struct hbq_dmabuf *seq_dmabuf)
17642{
James Smart7851fe22011-07-22 18:36:52 -040017643 struct hbq_dmabuf *hbq_buf;
James Smart4f774512009-05-22 14:52:35 -040017644 struct lpfc_dmabuf *d_buf, *n_buf;
17645 struct lpfc_iocbq *first_iocbq, *iocbq;
17646 struct fc_frame_header *fc_hdr;
17647 uint32_t sid;
James Smart7851fe22011-07-22 18:36:52 -040017648 uint32_t len, tot_len;
James Smarteeead812009-12-21 17:01:23 -050017649 struct ulp_bde64 *pbde;
James Smart4f774512009-05-22 14:52:35 -040017650
17651 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
17652 /* remove from receive buffer list */
17653 list_del_init(&seq_dmabuf->hbuf.list);
James Smart45ed1192009-10-02 15:17:02 -040017654 lpfc_update_rcv_time_stamp(vport);
James Smart4f774512009-05-22 14:52:35 -040017655 /* get the Remote Port's SID */
James Smart6669f9b2009-10-02 15:16:45 -040017656 sid = sli4_sid_from_fc_hdr(fc_hdr);
James Smart7851fe22011-07-22 18:36:52 -040017657 tot_len = 0;
James Smart4f774512009-05-22 14:52:35 -040017658 /* Get an iocbq struct to fill in. */
17659 first_iocbq = lpfc_sli_get_iocbq(vport->phba);
17660 if (first_iocbq) {
17661 /* Initialize the first IOCB. */
James Smart8fa38512009-07-19 10:01:03 -040017662 first_iocbq->iocb.unsli3.rcvsli3.acc_len = 0;
James Smart4f774512009-05-22 14:52:35 -040017663 first_iocbq->iocb.ulpStatus = IOSTAT_SUCCESS;
James Smart895427b2017-02-12 13:52:30 -080017664 first_iocbq->vport = vport;
James Smart939723a2012-05-09 21:19:03 -040017665
17666 /* Check FC Header to see what TYPE of frame we are rcv'ing */
17667 if (sli4_type_from_fc_hdr(fc_hdr) == FC_TYPE_ELS) {
17668 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_ELS64_CX;
17669 first_iocbq->iocb.un.rcvels.parmRo =
17670 sli4_did_from_fc_hdr(fc_hdr);
17671 first_iocbq->iocb.ulpPU = PARM_NPIV_DID;
17672 } else
17673 first_iocbq->iocb.ulpCommand = CMD_IOCB_RCV_SEQ64_CX;
James Smart7851fe22011-07-22 18:36:52 -040017674 first_iocbq->iocb.ulpContext = NO_XRI;
17675 first_iocbq->iocb.unsli3.rcvsli3.ox_id =
17676 be16_to_cpu(fc_hdr->fh_ox_id);
17677 /* iocbq is prepped for internal consumption. Physical vpi. */
17678 first_iocbq->iocb.unsli3.rcvsli3.vpi =
17679 vport->phba->vpi_ids[vport->vpi];
James Smart4f774512009-05-22 14:52:35 -040017680 /* put the first buffer into the first IOCBq */
James Smart48a5a662013-07-15 18:32:28 -040017681 tot_len = bf_get(lpfc_rcqe_length,
17682 &seq_dmabuf->cq_event.cqe.rcqe_cmpl);
17683
James Smart4f774512009-05-22 14:52:35 -040017684 first_iocbq->context2 = &seq_dmabuf->dbuf;
17685 first_iocbq->context3 = NULL;
17686 first_iocbq->iocb.ulpBdeCount = 1;
James Smart48a5a662013-07-15 18:32:28 -040017687 if (tot_len > LPFC_DATA_BUF_SIZE)
17688 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize =
James Smart4f774512009-05-22 14:52:35 -040017689 LPFC_DATA_BUF_SIZE;
James Smart48a5a662013-07-15 18:32:28 -040017690 else
17691 first_iocbq->iocb.un.cont64[0].tus.f.bdeSize = tot_len;
17692
James Smart4f774512009-05-22 14:52:35 -040017693 first_iocbq->iocb.un.rcvels.remoteID = sid;
James Smart48a5a662013-07-15 18:32:28 -040017694
James Smart7851fe22011-07-22 18:36:52 -040017695 first_iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
James Smart4f774512009-05-22 14:52:35 -040017696 }
17697 iocbq = first_iocbq;
17698 /*
17699 * Each IOCBq can have two Buffers assigned, so go through the list
17700 * of buffers for this sequence and save two buffers in each IOCBq
17701 */
17702 list_for_each_entry_safe(d_buf, n_buf, &seq_dmabuf->dbuf.list, list) {
17703 if (!iocbq) {
17704 lpfc_in_buf_free(vport->phba, d_buf);
17705 continue;
17706 }
17707 if (!iocbq->context3) {
17708 iocbq->context3 = d_buf;
17709 iocbq->iocb.ulpBdeCount++;
James Smart7851fe22011-07-22 18:36:52 -040017710 /* We need to get the size out of the right CQE */
17711 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
17712 len = bf_get(lpfc_rcqe_length,
17713 &hbq_buf->cq_event.cqe.rcqe_cmpl);
James Smart48a5a662013-07-15 18:32:28 -040017714 pbde = (struct ulp_bde64 *)
17715 &iocbq->iocb.unsli3.sli3Words[4];
17716 if (len > LPFC_DATA_BUF_SIZE)
17717 pbde->tus.f.bdeSize = LPFC_DATA_BUF_SIZE;
17718 else
17719 pbde->tus.f.bdeSize = len;
17720
James Smart7851fe22011-07-22 18:36:52 -040017721 iocbq->iocb.unsli3.rcvsli3.acc_len += len;
17722 tot_len += len;
James Smart4f774512009-05-22 14:52:35 -040017723 } else {
17724 iocbq = lpfc_sli_get_iocbq(vport->phba);
17725 if (!iocbq) {
17726 if (first_iocbq) {
17727 first_iocbq->iocb.ulpStatus =
17728 IOSTAT_FCP_RSP_ERROR;
17729 first_iocbq->iocb.un.ulpWord[4] =
17730 IOERR_NO_RESOURCES;
17731 }
17732 lpfc_in_buf_free(vport->phba, d_buf);
17733 continue;
17734 }
James Smart7851fe22011-07-22 18:36:52 -040017735 /* We need to get the size out of the right CQE */
17736 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
17737 len = bf_get(lpfc_rcqe_length,
17738 &hbq_buf->cq_event.cqe.rcqe_cmpl);
James Smart48a5a662013-07-15 18:32:28 -040017739 iocbq->context2 = d_buf;
17740 iocbq->context3 = NULL;
17741 iocbq->iocb.ulpBdeCount = 1;
17742 if (len > LPFC_DATA_BUF_SIZE)
17743 iocbq->iocb.un.cont64[0].tus.f.bdeSize =
17744 LPFC_DATA_BUF_SIZE;
17745 else
17746 iocbq->iocb.un.cont64[0].tus.f.bdeSize = len;
17747
James Smart7851fe22011-07-22 18:36:52 -040017748 tot_len += len;
17749 iocbq->iocb.unsli3.rcvsli3.acc_len = tot_len;
17750
James Smart4f774512009-05-22 14:52:35 -040017751 iocbq->iocb.un.rcvels.remoteID = sid;
17752 list_add_tail(&iocbq->list, &first_iocbq->list);
17753 }
17754 }
17755 return first_iocbq;
17756}
17757
James Smart6669f9b2009-10-02 15:16:45 -040017758static void
17759lpfc_sli4_send_seq_to_ulp(struct lpfc_vport *vport,
17760 struct hbq_dmabuf *seq_dmabuf)
17761{
17762 struct fc_frame_header *fc_hdr;
17763 struct lpfc_iocbq *iocbq, *curr_iocb, *next_iocb;
17764 struct lpfc_hba *phba = vport->phba;
17765
17766 fc_hdr = (struct fc_frame_header *)seq_dmabuf->hbuf.virt;
17767 iocbq = lpfc_prep_seq(vport, seq_dmabuf);
17768 if (!iocbq) {
17769 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
17770 "2707 Ring %d handler: Failed to allocate "
17771 "iocb Rctl x%x Type x%x received\n",
17772 LPFC_ELS_RING,
17773 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
17774 return;
17775 }
17776 if (!lpfc_complete_unsol_iocb(phba,
James Smart895427b2017-02-12 13:52:30 -080017777 phba->sli4_hba.els_wq->pring,
James Smart6669f9b2009-10-02 15:16:45 -040017778 iocbq, fc_hdr->fh_r_ctl,
17779 fc_hdr->fh_type))
James Smart6d368e52011-05-24 11:44:12 -040017780 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
James Smart6669f9b2009-10-02 15:16:45 -040017781 "2540 Ring %d handler: unexpected Rctl "
17782 "x%x Type x%x received\n",
17783 LPFC_ELS_RING,
17784 fc_hdr->fh_r_ctl, fc_hdr->fh_type);
17785
17786 /* Free iocb created in lpfc_prep_seq */
17787 list_for_each_entry_safe(curr_iocb, next_iocb,
17788 &iocbq->list, list) {
17789 list_del_init(&curr_iocb->list);
17790 lpfc_sli_release_iocbq(phba, curr_iocb);
17791 }
17792 lpfc_sli_release_iocbq(phba, iocbq);
17793}
17794
James Smartae9e28f2017-05-15 15:20:51 -070017795static void
17796lpfc_sli4_mds_loopback_cmpl(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb,
17797 struct lpfc_iocbq *rspiocb)
17798{
17799 struct lpfc_dmabuf *pcmd = cmdiocb->context2;
17800
17801 if (pcmd && pcmd->virt)
Romain Perier771db5c2017-07-06 10:13:05 +020017802 dma_pool_free(phba->lpfc_drb_pool, pcmd->virt, pcmd->phys);
James Smartae9e28f2017-05-15 15:20:51 -070017803 kfree(pcmd);
17804 lpfc_sli_release_iocbq(phba, cmdiocb);
James Smarte817e5d2018-12-13 15:17:53 -080017805 lpfc_drain_txq(phba);
James Smartae9e28f2017-05-15 15:20:51 -070017806}
17807
17808static void
17809lpfc_sli4_handle_mds_loopback(struct lpfc_vport *vport,
17810 struct hbq_dmabuf *dmabuf)
17811{
17812 struct fc_frame_header *fc_hdr;
17813 struct lpfc_hba *phba = vport->phba;
17814 struct lpfc_iocbq *iocbq = NULL;
17815 union lpfc_wqe *wqe;
17816 struct lpfc_dmabuf *pcmd = NULL;
17817 uint32_t frame_len;
17818 int rc;
James Smarte817e5d2018-12-13 15:17:53 -080017819 unsigned long iflags;
James Smartae9e28f2017-05-15 15:20:51 -070017820
17821 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
17822 frame_len = bf_get(lpfc_rcqe_length, &dmabuf->cq_event.cqe.rcqe_cmpl);
17823
17824 /* Send the received frame back */
17825 iocbq = lpfc_sli_get_iocbq(phba);
James Smarte817e5d2018-12-13 15:17:53 -080017826 if (!iocbq) {
17827 /* Queue cq event and wakeup worker thread to process it */
17828 spin_lock_irqsave(&phba->hbalock, iflags);
17829 list_add_tail(&dmabuf->cq_event.list,
17830 &phba->sli4_hba.sp_queue_event);
17831 phba->hba_flag |= HBA_SP_QUEUE_EVT;
17832 spin_unlock_irqrestore(&phba->hbalock, iflags);
17833 lpfc_worker_wake_up(phba);
17834 return;
17835 }
James Smartae9e28f2017-05-15 15:20:51 -070017836
17837 /* Allocate buffer for command payload */
17838 pcmd = kmalloc(sizeof(struct lpfc_dmabuf), GFP_KERNEL);
17839 if (pcmd)
Romain Perier771db5c2017-07-06 10:13:05 +020017840 pcmd->virt = dma_pool_alloc(phba->lpfc_drb_pool, GFP_KERNEL,
James Smartae9e28f2017-05-15 15:20:51 -070017841 &pcmd->phys);
17842 if (!pcmd || !pcmd->virt)
17843 goto exit;
17844
17845 INIT_LIST_HEAD(&pcmd->list);
17846
17847 /* copyin the payload */
17848 memcpy(pcmd->virt, dmabuf->dbuf.virt, frame_len);
17849
17850 /* fill in BDE's for command */
17851 iocbq->iocb.un.xseq64.bdl.addrHigh = putPaddrHigh(pcmd->phys);
17852 iocbq->iocb.un.xseq64.bdl.addrLow = putPaddrLow(pcmd->phys);
17853 iocbq->iocb.un.xseq64.bdl.bdeFlags = BUFF_TYPE_BDE_64;
17854 iocbq->iocb.un.xseq64.bdl.bdeSize = frame_len;
17855
17856 iocbq->context2 = pcmd;
17857 iocbq->vport = vport;
17858 iocbq->iocb_flag &= ~LPFC_FIP_ELS_ID_MASK;
17859 iocbq->iocb_flag |= LPFC_USE_FCPWQIDX;
17860
17861 /*
17862 * Setup rest of the iocb as though it were a WQE
17863 * Build the SEND_FRAME WQE
17864 */
17865 wqe = (union lpfc_wqe *)&iocbq->iocb;
17866
17867 wqe->send_frame.frame_len = frame_len;
17868 wqe->send_frame.fc_hdr_wd0 = be32_to_cpu(*((uint32_t *)fc_hdr));
17869 wqe->send_frame.fc_hdr_wd1 = be32_to_cpu(*((uint32_t *)fc_hdr + 1));
17870 wqe->send_frame.fc_hdr_wd2 = be32_to_cpu(*((uint32_t *)fc_hdr + 2));
17871 wqe->send_frame.fc_hdr_wd3 = be32_to_cpu(*((uint32_t *)fc_hdr + 3));
17872 wqe->send_frame.fc_hdr_wd4 = be32_to_cpu(*((uint32_t *)fc_hdr + 4));
17873 wqe->send_frame.fc_hdr_wd5 = be32_to_cpu(*((uint32_t *)fc_hdr + 5));
17874
17875 iocbq->iocb.ulpCommand = CMD_SEND_FRAME;
17876 iocbq->iocb.ulpLe = 1;
17877 iocbq->iocb_cmpl = lpfc_sli4_mds_loopback_cmpl;
17878 rc = lpfc_sli_issue_iocb(phba, LPFC_ELS_RING, iocbq, 0);
17879 if (rc == IOCB_ERROR)
17880 goto exit;
17881
17882 lpfc_in_buf_free(phba, &dmabuf->dbuf);
17883 return;
17884
17885exit:
17886 lpfc_printf_log(phba, KERN_WARNING, LOG_SLI,
17887 "2023 Unable to process MDS loopback frame\n");
17888 if (pcmd && pcmd->virt)
Romain Perier771db5c2017-07-06 10:13:05 +020017889 dma_pool_free(phba->lpfc_drb_pool, pcmd->virt, pcmd->phys);
James Smartae9e28f2017-05-15 15:20:51 -070017890 kfree(pcmd);
Dick Kennedy401bb412017-09-29 17:34:28 -070017891 if (iocbq)
17892 lpfc_sli_release_iocbq(phba, iocbq);
James Smartae9e28f2017-05-15 15:20:51 -070017893 lpfc_in_buf_free(phba, &dmabuf->dbuf);
17894}
17895
James Smart4f774512009-05-22 14:52:35 -040017896/**
17897 * lpfc_sli4_handle_received_buffer - Handle received buffers from firmware
17898 * @phba: Pointer to HBA context object.
17899 *
17900 * This function is called with no lock held. This function processes all
17901 * the received buffers and gives it to upper layers when a received buffer
17902 * indicates that it is the final frame in the sequence. The interrupt
James Smart895427b2017-02-12 13:52:30 -080017903 * service routine processes received buffers at interrupt contexts.
James Smart4f774512009-05-22 14:52:35 -040017904 * Worker thread calls lpfc_sli4_handle_received_buffer, which will call the
17905 * appropriate receive function when the final frame in a sequence is received.
17906 **/
James Smart4d9ab992009-10-02 15:16:39 -040017907void
17908lpfc_sli4_handle_received_buffer(struct lpfc_hba *phba,
17909 struct hbq_dmabuf *dmabuf)
James Smart4f774512009-05-22 14:52:35 -040017910{
James Smart4d9ab992009-10-02 15:16:39 -040017911 struct hbq_dmabuf *seq_dmabuf;
James Smart4f774512009-05-22 14:52:35 -040017912 struct fc_frame_header *fc_hdr;
17913 struct lpfc_vport *vport;
17914 uint32_t fcfi;
James Smart939723a2012-05-09 21:19:03 -040017915 uint32_t did;
James Smart4f774512009-05-22 14:52:35 -040017916
James Smart4f774512009-05-22 14:52:35 -040017917 /* Process each received buffer */
James Smart4d9ab992009-10-02 15:16:39 -040017918 fc_hdr = (struct fc_frame_header *)dmabuf->hbuf.virt;
James Smart2ea259e2017-02-12 13:52:27 -080017919
James Smarte817e5d2018-12-13 15:17:53 -080017920 if (fc_hdr->fh_r_ctl == FC_RCTL_MDS_DIAGS ||
17921 fc_hdr->fh_r_ctl == FC_RCTL_DD_UNSOL_DATA) {
17922 vport = phba->pport;
17923 /* Handle MDS Loopback frames */
17924 lpfc_sli4_handle_mds_loopback(vport, dmabuf);
17925 return;
17926 }
17927
James Smart4d9ab992009-10-02 15:16:39 -040017928 /* check to see if this a valid type of frame */
17929 if (lpfc_fc_frame_check(phba, fc_hdr)) {
17930 lpfc_in_buf_free(phba, &dmabuf->dbuf);
17931 return;
17932 }
James Smart2ea259e2017-02-12 13:52:27 -080017933
James Smart7851fe22011-07-22 18:36:52 -040017934 if ((bf_get(lpfc_cqe_code,
17935 &dmabuf->cq_event.cqe.rcqe_cmpl) == CQE_CODE_RECEIVE_V1))
17936 fcfi = bf_get(lpfc_rcqe_fcf_id_v1,
17937 &dmabuf->cq_event.cqe.rcqe_cmpl);
17938 else
17939 fcfi = bf_get(lpfc_rcqe_fcf_id,
17940 &dmabuf->cq_event.cqe.rcqe_cmpl);
James Smart939723a2012-05-09 21:19:03 -040017941
James Smarte62245d2019-08-14 16:57:08 -070017942 if (fc_hdr->fh_r_ctl == 0xF4 && fc_hdr->fh_type == 0xFF) {
17943 vport = phba->pport;
17944 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
17945 "2023 MDS Loopback %d bytes\n",
17946 bf_get(lpfc_rcqe_length,
17947 &dmabuf->cq_event.cqe.rcqe_cmpl));
17948 /* Handle MDS Loopback frames */
17949 lpfc_sli4_handle_mds_loopback(vport, dmabuf);
17950 return;
17951 }
17952
James Smart895427b2017-02-12 13:52:30 -080017953 /* d_id this frame is directed to */
17954 did = sli4_did_from_fc_hdr(fc_hdr);
17955
17956 vport = lpfc_fc_frame_to_vport(phba, fc_hdr, fcfi, did);
James Smart939723a2012-05-09 21:19:03 -040017957 if (!vport) {
James Smart4d9ab992009-10-02 15:16:39 -040017958 /* throw out the frame */
17959 lpfc_in_buf_free(phba, &dmabuf->dbuf);
17960 return;
17961 }
James Smart939723a2012-05-09 21:19:03 -040017962
James Smart939723a2012-05-09 21:19:03 -040017963 /* vport is registered unless we rcv a FLOGI directed to Fabric_DID */
17964 if (!(vport->vpi_state & LPFC_VPI_REGISTERED) &&
17965 (did != Fabric_DID)) {
17966 /*
17967 * Throw out the frame if we are not pt2pt.
17968 * The pt2pt protocol allows for discovery frames
17969 * to be received without a registered VPI.
17970 */
17971 if (!(vport->fc_flag & FC_PT2PT) ||
17972 (phba->link_state == LPFC_HBA_READY)) {
17973 lpfc_in_buf_free(phba, &dmabuf->dbuf);
17974 return;
17975 }
17976 }
17977
James Smart6669f9b2009-10-02 15:16:45 -040017978 /* Handle the basic abort sequence (BA_ABTS) event */
17979 if (fc_hdr->fh_r_ctl == FC_RCTL_BA_ABTS) {
17980 lpfc_sli4_handle_unsol_abort(vport, dmabuf);
17981 return;
17982 }
17983
James Smart4d9ab992009-10-02 15:16:39 -040017984 /* Link this frame */
17985 seq_dmabuf = lpfc_fc_frame_add(vport, dmabuf);
17986 if (!seq_dmabuf) {
17987 /* unable to add frame to vport - throw it out */
17988 lpfc_in_buf_free(phba, &dmabuf->dbuf);
17989 return;
17990 }
17991 /* If not last frame in sequence continue processing frames. */
James Smartdef9c7a2009-12-21 17:02:28 -050017992 if (!lpfc_seq_complete(seq_dmabuf))
James Smart4d9ab992009-10-02 15:16:39 -040017993 return;
James Smartdef9c7a2009-12-21 17:02:28 -050017994
James Smart6669f9b2009-10-02 15:16:45 -040017995 /* Send the complete sequence to the upper layer protocol */
17996 lpfc_sli4_send_seq_to_ulp(vport, seq_dmabuf);
James Smart4f774512009-05-22 14:52:35 -040017997}
James Smart6fb120a2009-05-22 14:52:59 -040017998
17999/**
18000 * lpfc_sli4_post_all_rpi_hdrs - Post the rpi header memory region to the port
18001 * @phba: pointer to lpfc hba data structure.
18002 *
18003 * This routine is invoked to post rpi header templates to the
18004 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040018005 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
18006 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040018007 *
18008 * This routine does not require any locks. It's usage is expected
18009 * to be driver load or reset recovery when the driver is
18010 * sequential.
18011 *
18012 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020018013 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040018014 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040018015 * When this error occurs, the driver is not guaranteed
18016 * to have any rpi regions posted to the device and
18017 * must either attempt to repost the regions or take a
18018 * fatal error.
18019 **/
18020int
18021lpfc_sli4_post_all_rpi_hdrs(struct lpfc_hba *phba)
18022{
18023 struct lpfc_rpi_hdr *rpi_page;
18024 uint32_t rc = 0;
James Smart6d368e52011-05-24 11:44:12 -040018025 uint16_t lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040018026
James Smart6d368e52011-05-24 11:44:12 -040018027 /* SLI4 ports that support extents do not require RPI headers. */
18028 if (!phba->sli4_hba.rpi_hdrs_in_use)
18029 goto exit;
18030 if (phba->sli4_hba.extents_in_use)
18031 return -EIO;
18032
James Smart6fb120a2009-05-22 14:52:59 -040018033 list_for_each_entry(rpi_page, &phba->sli4_hba.lpfc_rpi_hdr_list, list) {
James Smart6d368e52011-05-24 11:44:12 -040018034 /*
18035 * Assign the rpi headers a physical rpi only if the driver
18036 * has not initialized those resources. A port reset only
18037 * needs the headers posted.
18038 */
18039 if (bf_get(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags) !=
18040 LPFC_RPI_RSRC_RDY)
18041 rpi_page->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
18042
James Smart6fb120a2009-05-22 14:52:59 -040018043 rc = lpfc_sli4_post_rpi_hdr(phba, rpi_page);
18044 if (rc != MBX_SUCCESS) {
18045 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
18046 "2008 Error %d posting all rpi "
18047 "headers\n", rc);
18048 rc = -EIO;
18049 break;
18050 }
18051 }
18052
James Smart6d368e52011-05-24 11:44:12 -040018053 exit:
18054 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags,
18055 LPFC_RPI_RSRC_RDY);
James Smart6fb120a2009-05-22 14:52:59 -040018056 return rc;
18057}
18058
18059/**
18060 * lpfc_sli4_post_rpi_hdr - Post an rpi header memory region to the port
18061 * @phba: pointer to lpfc hba data structure.
18062 * @rpi_page: pointer to the rpi memory region.
18063 *
18064 * This routine is invoked to post a single rpi header to the
18065 * HBA consistent with the SLI-4 interface spec. This memory region
18066 * maps up to 64 rpi context regions.
18067 *
18068 * Return codes
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020018069 * 0 - successful
James Smartd439d282010-09-29 11:18:45 -040018070 * -ENOMEM - No available memory
18071 * -EIO - The mailbox failed to complete successfully.
James Smart6fb120a2009-05-22 14:52:59 -040018072 **/
18073int
18074lpfc_sli4_post_rpi_hdr(struct lpfc_hba *phba, struct lpfc_rpi_hdr *rpi_page)
18075{
18076 LPFC_MBOXQ_t *mboxq;
18077 struct lpfc_mbx_post_hdr_tmpl *hdr_tmpl;
18078 uint32_t rc = 0;
James Smart6fb120a2009-05-22 14:52:59 -040018079 uint32_t shdr_status, shdr_add_status;
18080 union lpfc_sli4_cfg_shdr *shdr;
18081
James Smart6d368e52011-05-24 11:44:12 -040018082 /* SLI4 ports that support extents do not require RPI headers. */
18083 if (!phba->sli4_hba.rpi_hdrs_in_use)
18084 return rc;
18085 if (phba->sli4_hba.extents_in_use)
18086 return -EIO;
18087
James Smart6fb120a2009-05-22 14:52:59 -040018088 /* The port is notified of the header region via a mailbox command. */
18089 mboxq = (LPFC_MBOXQ_t *) mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
18090 if (!mboxq) {
18091 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
18092 "2001 Unable to allocate memory for issuing "
18093 "SLI_CONFIG_SPECIAL mailbox command\n");
18094 return -ENOMEM;
18095 }
18096
18097 /* Post all rpi memory regions to the port. */
18098 hdr_tmpl = &mboxq->u.mqe.un.hdr_tmpl;
James Smart6fb120a2009-05-22 14:52:59 -040018099 lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
18100 LPFC_MBOX_OPCODE_FCOE_POST_HDR_TEMPLATE,
18101 sizeof(struct lpfc_mbx_post_hdr_tmpl) -
James Smartfedd3b72011-02-16 12:39:24 -050018102 sizeof(struct lpfc_sli4_cfg_mhdr),
18103 LPFC_SLI4_MBX_EMBED);
James Smart6d368e52011-05-24 11:44:12 -040018104
18105
18106 /* Post the physical rpi to the port for this rpi header. */
James Smart6fb120a2009-05-22 14:52:59 -040018107 bf_set(lpfc_mbx_post_hdr_tmpl_rpi_offset, hdr_tmpl,
18108 rpi_page->start_rpi);
James Smart6d368e52011-05-24 11:44:12 -040018109 bf_set(lpfc_mbx_post_hdr_tmpl_page_cnt,
18110 hdr_tmpl, rpi_page->page_count);
18111
James Smart6fb120a2009-05-22 14:52:59 -040018112 hdr_tmpl->rpi_paddr_lo = putPaddrLow(rpi_page->dmabuf->phys);
18113 hdr_tmpl->rpi_paddr_hi = putPaddrHigh(rpi_page->dmabuf->phys);
James Smartf1126682009-06-10 17:22:44 -040018114 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
James Smart6fb120a2009-05-22 14:52:59 -040018115 shdr = (union lpfc_sli4_cfg_shdr *) &hdr_tmpl->header.cfg_shdr;
18116 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
18117 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
18118 if (rc != MBX_TIMEOUT)
18119 mempool_free(mboxq, phba->mbox_mem_pool);
18120 if (shdr_status || shdr_add_status || rc) {
18121 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
18122 "2514 POST_RPI_HDR mailbox failed with "
18123 "status x%x add_status x%x, mbx status x%x\n",
18124 shdr_status, shdr_add_status, rc);
18125 rc = -ENXIO;
James Smart845d9e82017-05-15 15:20:38 -070018126 } else {
18127 /*
18128 * The next_rpi stores the next logical module-64 rpi value used
18129 * to post physical rpis in subsequent rpi postings.
18130 */
18131 spin_lock_irq(&phba->hbalock);
18132 phba->sli4_hba.next_rpi = rpi_page->next_rpi;
18133 spin_unlock_irq(&phba->hbalock);
James Smart6fb120a2009-05-22 14:52:59 -040018134 }
18135 return rc;
18136}
18137
18138/**
18139 * lpfc_sli4_alloc_rpi - Get an available rpi in the device's range
18140 * @phba: pointer to lpfc hba data structure.
18141 *
18142 * This routine is invoked to post rpi header templates to the
18143 * HBA consistent with the SLI-4 interface spec. This routine
James Smart49198b32010-04-06 15:04:33 -040018144 * posts a SLI4_PAGE_SIZE memory region to the port to hold up to
18145 * SLI4_PAGE_SIZE modulo 64 rpi context headers.
James Smart6fb120a2009-05-22 14:52:59 -040018146 *
18147 * Returns
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020018148 * A nonzero rpi defined as rpi_base <= rpi < max_rpi if successful
James Smart6fb120a2009-05-22 14:52:59 -040018149 * LPFC_RPI_ALLOC_ERROR if no rpis are available.
18150 **/
18151int
18152lpfc_sli4_alloc_rpi(struct lpfc_hba *phba)
18153{
James Smart6d368e52011-05-24 11:44:12 -040018154 unsigned long rpi;
18155 uint16_t max_rpi, rpi_limit;
18156 uint16_t rpi_remaining, lrpi = 0;
James Smart6fb120a2009-05-22 14:52:59 -040018157 struct lpfc_rpi_hdr *rpi_hdr;
James Smart4902b382013-10-10 12:20:35 -040018158 unsigned long iflag;
James Smart6fb120a2009-05-22 14:52:59 -040018159
James Smart6fb120a2009-05-22 14:52:59 -040018160 /*
James Smart6d368e52011-05-24 11:44:12 -040018161 * Fetch the next logical rpi. Because this index is logical,
18162 * the driver starts at 0 each time.
James Smart6fb120a2009-05-22 14:52:59 -040018163 */
James Smart4902b382013-10-10 12:20:35 -040018164 spin_lock_irqsave(&phba->hbalock, iflag);
James Smartbe6bb942015-04-07 15:07:22 -040018165 max_rpi = phba->sli4_hba.max_cfg_param.max_rpi;
18166 rpi_limit = phba->sli4_hba.next_rpi;
18167
James Smart6d368e52011-05-24 11:44:12 -040018168 rpi = find_next_zero_bit(phba->sli4_hba.rpi_bmask, rpi_limit, 0);
18169 if (rpi >= rpi_limit)
James Smart6fb120a2009-05-22 14:52:59 -040018170 rpi = LPFC_RPI_ALLOC_ERROR;
18171 else {
18172 set_bit(rpi, phba->sli4_hba.rpi_bmask);
18173 phba->sli4_hba.max_cfg_param.rpi_used++;
18174 phba->sli4_hba.rpi_count++;
18175 }
James Smart0f154222019-09-21 20:58:52 -070018176 lpfc_printf_log(phba, KERN_INFO,
18177 LOG_NODE | LOG_DISCOVERY,
18178 "0001 Allocated rpi:x%x max:x%x lim:x%x\n",
James Smartbe6bb942015-04-07 15:07:22 -040018179 (int) rpi, max_rpi, rpi_limit);
James Smart6fb120a2009-05-22 14:52:59 -040018180
18181 /*
18182 * Don't try to allocate more rpi header regions if the device limit
James Smart6d368e52011-05-24 11:44:12 -040018183 * has been exhausted.
James Smart6fb120a2009-05-22 14:52:59 -040018184 */
18185 if ((rpi == LPFC_RPI_ALLOC_ERROR) &&
18186 (phba->sli4_hba.rpi_count >= max_rpi)) {
James Smart4902b382013-10-10 12:20:35 -040018187 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6fb120a2009-05-22 14:52:59 -040018188 return rpi;
18189 }
18190
18191 /*
James Smart6d368e52011-05-24 11:44:12 -040018192 * RPI header postings are not required for SLI4 ports capable of
18193 * extents.
18194 */
18195 if (!phba->sli4_hba.rpi_hdrs_in_use) {
James Smart4902b382013-10-10 12:20:35 -040018196 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6d368e52011-05-24 11:44:12 -040018197 return rpi;
18198 }
18199
18200 /*
James Smart6fb120a2009-05-22 14:52:59 -040018201 * If the driver is running low on rpi resources, allocate another
18202 * page now. Note that the next_rpi value is used because
18203 * it represents how many are actually in use whereas max_rpi notes
18204 * how many are supported max by the device.
18205 */
James Smart6d368e52011-05-24 11:44:12 -040018206 rpi_remaining = phba->sli4_hba.next_rpi - phba->sli4_hba.rpi_count;
James Smart4902b382013-10-10 12:20:35 -040018207 spin_unlock_irqrestore(&phba->hbalock, iflag);
James Smart6fb120a2009-05-22 14:52:59 -040018208 if (rpi_remaining < LPFC_RPI_LOW_WATER_MARK) {
18209 rpi_hdr = lpfc_sli4_create_rpi_hdr(phba);
18210 if (!rpi_hdr) {
18211 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
18212 "2002 Error Could not grow rpi "
18213 "count\n");
18214 } else {
James Smart6d368e52011-05-24 11:44:12 -040018215 lrpi = rpi_hdr->start_rpi;
18216 rpi_hdr->start_rpi = phba->sli4_hba.rpi_ids[lrpi];
James Smart6fb120a2009-05-22 14:52:59 -040018217 lpfc_sli4_post_rpi_hdr(phba, rpi_hdr);
18218 }
18219 }
18220
18221 return rpi;
18222}
18223
18224/**
18225 * lpfc_sli4_free_rpi - Release an rpi for reuse.
18226 * @phba: pointer to lpfc hba data structure.
18227 *
18228 * This routine is invoked to release an rpi to the pool of
18229 * available rpis maintained by the driver.
18230 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040018231static void
James Smartd7c47992010-06-08 18:31:54 -040018232__lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
18233{
18234 if (test_and_clear_bit(rpi, phba->sli4_hba.rpi_bmask)) {
18235 phba->sli4_hba.rpi_count--;
18236 phba->sli4_hba.max_cfg_param.rpi_used--;
James Smartb95b2112019-08-14 16:56:47 -070018237 } else {
James Smart0f154222019-09-21 20:58:52 -070018238 lpfc_printf_log(phba, KERN_INFO,
18239 LOG_NODE | LOG_DISCOVERY,
James Smartb95b2112019-08-14 16:56:47 -070018240 "2016 rpi %x not inuse\n",
18241 rpi);
James Smartd7c47992010-06-08 18:31:54 -040018242 }
18243}
18244
18245/**
18246 * lpfc_sli4_free_rpi - Release an rpi for reuse.
18247 * @phba: pointer to lpfc hba data structure.
18248 *
18249 * This routine is invoked to release an rpi to the pool of
18250 * available rpis maintained by the driver.
18251 **/
18252void
James Smart6fb120a2009-05-22 14:52:59 -040018253lpfc_sli4_free_rpi(struct lpfc_hba *phba, int rpi)
18254{
18255 spin_lock_irq(&phba->hbalock);
James Smartd7c47992010-06-08 18:31:54 -040018256 __lpfc_sli4_free_rpi(phba, rpi);
James Smart6fb120a2009-05-22 14:52:59 -040018257 spin_unlock_irq(&phba->hbalock);
18258}
18259
18260/**
18261 * lpfc_sli4_remove_rpis - Remove the rpi bitmask region
18262 * @phba: pointer to lpfc hba data structure.
18263 *
18264 * This routine is invoked to remove the memory region that
18265 * provided rpi via a bitmask.
18266 **/
18267void
18268lpfc_sli4_remove_rpis(struct lpfc_hba *phba)
18269{
18270 kfree(phba->sli4_hba.rpi_bmask);
James Smart6d368e52011-05-24 11:44:12 -040018271 kfree(phba->sli4_hba.rpi_ids);
18272 bf_set(lpfc_rpi_rsrc_rdy, &phba->sli4_hba.sli4_flags, 0);
James Smart6fb120a2009-05-22 14:52:59 -040018273}
18274
18275/**
18276 * lpfc_sli4_resume_rpi - Remove the rpi bitmask region
18277 * @phba: pointer to lpfc hba data structure.
18278 *
18279 * This routine is invoked to remove the memory region that
18280 * provided rpi via a bitmask.
18281 **/
18282int
James Smart6b5151f2012-01-18 16:24:06 -050018283lpfc_sli4_resume_rpi(struct lpfc_nodelist *ndlp,
18284 void (*cmpl)(struct lpfc_hba *, LPFC_MBOXQ_t *), void *arg)
James Smart6fb120a2009-05-22 14:52:59 -040018285{
18286 LPFC_MBOXQ_t *mboxq;
18287 struct lpfc_hba *phba = ndlp->phba;
18288 int rc;
18289
18290 /* The port is notified of the header region via a mailbox command. */
18291 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
18292 if (!mboxq)
18293 return -ENOMEM;
18294
18295 /* Post all rpi memory regions to the port. */
18296 lpfc_resume_rpi(mboxq, ndlp);
James Smart6b5151f2012-01-18 16:24:06 -050018297 if (cmpl) {
18298 mboxq->mbox_cmpl = cmpl;
James Smart3e1f0712018-11-29 16:09:29 -080018299 mboxq->ctx_buf = arg;
18300 mboxq->ctx_ndlp = ndlp;
James Smart72859902012-01-18 16:25:38 -050018301 } else
18302 mboxq->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
James Smart6b5151f2012-01-18 16:24:06 -050018303 mboxq->vport = ndlp->vport;
James Smart6fb120a2009-05-22 14:52:59 -040018304 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
18305 if (rc == MBX_NOT_FINISHED) {
18306 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
18307 "2010 Resume RPI Mailbox failed "
18308 "status %d, mbxStatus x%x\n", rc,
18309 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
18310 mempool_free(mboxq, phba->mbox_mem_pool);
18311 return -EIO;
18312 }
18313 return 0;
18314}
18315
18316/**
18317 * lpfc_sli4_init_vpi - Initialize a vpi with the port
James Smart76a95d72010-11-20 23:11:48 -050018318 * @vport: Pointer to the vport for which the vpi is being initialized
James Smart6fb120a2009-05-22 14:52:59 -040018319 *
James Smart76a95d72010-11-20 23:11:48 -050018320 * This routine is invoked to activate a vpi with the port.
James Smart6fb120a2009-05-22 14:52:59 -040018321 *
18322 * Returns:
18323 * 0 success
18324 * -Evalue otherwise
18325 **/
18326int
James Smart76a95d72010-11-20 23:11:48 -050018327lpfc_sli4_init_vpi(struct lpfc_vport *vport)
James Smart6fb120a2009-05-22 14:52:59 -040018328{
18329 LPFC_MBOXQ_t *mboxq;
18330 int rc = 0;
James Smart6a9c52c2009-10-02 15:16:51 -040018331 int retval = MBX_SUCCESS;
James Smart6fb120a2009-05-22 14:52:59 -040018332 uint32_t mbox_tmo;
James Smart76a95d72010-11-20 23:11:48 -050018333 struct lpfc_hba *phba = vport->phba;
James Smart6fb120a2009-05-22 14:52:59 -040018334 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
18335 if (!mboxq)
18336 return -ENOMEM;
James Smart76a95d72010-11-20 23:11:48 -050018337 lpfc_init_vpi(phba, mboxq, vport->vpi);
James Smarta183a152011-10-10 21:32:43 -040018338 mbox_tmo = lpfc_mbox_tmo_val(phba, mboxq);
James Smart6fb120a2009-05-22 14:52:59 -040018339 rc = lpfc_sli_issue_mbox_wait(phba, mboxq, mbox_tmo);
James Smart6fb120a2009-05-22 14:52:59 -040018340 if (rc != MBX_SUCCESS) {
James Smart76a95d72010-11-20 23:11:48 -050018341 lpfc_printf_vlog(vport, KERN_ERR, LOG_SLI,
James Smart6fb120a2009-05-22 14:52:59 -040018342 "2022 INIT VPI Mailbox failed "
18343 "status %d, mbxStatus x%x\n", rc,
18344 bf_get(lpfc_mqe_status, &mboxq->u.mqe));
James Smart6a9c52c2009-10-02 15:16:51 -040018345 retval = -EIO;
James Smart6fb120a2009-05-22 14:52:59 -040018346 }
James Smart6a9c52c2009-10-02 15:16:51 -040018347 if (rc != MBX_TIMEOUT)
James Smart76a95d72010-11-20 23:11:48 -050018348 mempool_free(mboxq, vport->phba->mbox_mem_pool);
James Smart6a9c52c2009-10-02 15:16:51 -040018349
18350 return retval;
James Smart6fb120a2009-05-22 14:52:59 -040018351}
18352
18353/**
18354 * lpfc_mbx_cmpl_add_fcf_record - add fcf mbox completion handler.
18355 * @phba: pointer to lpfc hba data structure.
18356 * @mboxq: Pointer to mailbox object.
18357 *
18358 * This routine is invoked to manually add a single FCF record. The caller
18359 * must pass a completely initialized FCF_Record. This routine takes
18360 * care of the nonembedded mailbox operations.
18361 **/
18362static void
18363lpfc_mbx_cmpl_add_fcf_record(struct lpfc_hba *phba, LPFC_MBOXQ_t *mboxq)
18364{
18365 void *virt_addr;
18366 union lpfc_sli4_cfg_shdr *shdr;
18367 uint32_t shdr_status, shdr_add_status;
18368
18369 virt_addr = mboxq->sge_array->addr[0];
18370 /* The IOCTL status is embedded in the mailbox subheader. */
18371 shdr = (union lpfc_sli4_cfg_shdr *) virt_addr;
18372 shdr_status = bf_get(lpfc_mbox_hdr_status, &shdr->response);
18373 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status, &shdr->response);
18374
18375 if ((shdr_status || shdr_add_status) &&
18376 (shdr_status != STATUS_FCF_IN_USE))
18377 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
18378 "2558 ADD_FCF_RECORD mailbox failed with "
18379 "status x%x add_status x%x\n",
18380 shdr_status, shdr_add_status);
18381
18382 lpfc_sli4_mbox_cmd_free(phba, mboxq);
18383}
18384
18385/**
18386 * lpfc_sli4_add_fcf_record - Manually add an FCF Record.
18387 * @phba: pointer to lpfc hba data structure.
18388 * @fcf_record: pointer to the initialized fcf record to add.
18389 *
18390 * This routine is invoked to manually add a single FCF record. The caller
18391 * must pass a completely initialized FCF_Record. This routine takes
18392 * care of the nonembedded mailbox operations.
18393 **/
18394int
18395lpfc_sli4_add_fcf_record(struct lpfc_hba *phba, struct fcf_record *fcf_record)
18396{
18397 int rc = 0;
18398 LPFC_MBOXQ_t *mboxq;
18399 uint8_t *bytep;
18400 void *virt_addr;
James Smart6fb120a2009-05-22 14:52:59 -040018401 struct lpfc_mbx_sge sge;
18402 uint32_t alloc_len, req_len;
18403 uint32_t fcfindex;
18404
18405 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
18406 if (!mboxq) {
18407 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
18408 "2009 Failed to allocate mbox for ADD_FCF cmd\n");
18409 return -ENOMEM;
18410 }
18411
18412 req_len = sizeof(struct fcf_record) + sizeof(union lpfc_sli4_cfg_shdr) +
18413 sizeof(uint32_t);
18414
18415 /* Allocate DMA memory and set up the non-embedded mailbox command */
18416 alloc_len = lpfc_sli4_config(phba, mboxq, LPFC_MBOX_SUBSYSTEM_FCOE,
18417 LPFC_MBOX_OPCODE_FCOE_ADD_FCF,
18418 req_len, LPFC_SLI4_MBX_NEMBED);
18419 if (alloc_len < req_len) {
18420 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
18421 "2523 Allocated DMA memory size (x%x) is "
18422 "less than the requested DMA memory "
18423 "size (x%x)\n", alloc_len, req_len);
18424 lpfc_sli4_mbox_cmd_free(phba, mboxq);
18425 return -ENOMEM;
18426 }
18427
18428 /*
18429 * Get the first SGE entry from the non-embedded DMA memory. This
18430 * routine only uses a single SGE.
18431 */
18432 lpfc_sli4_mbx_sge_get(mboxq, 0, &sge);
James Smart6fb120a2009-05-22 14:52:59 -040018433 virt_addr = mboxq->sge_array->addr[0];
18434 /*
18435 * Configure the FCF record for FCFI 0. This is the driver's
18436 * hardcoded default and gets used in nonFIP mode.
18437 */
18438 fcfindex = bf_get(lpfc_fcf_record_fcf_index, fcf_record);
18439 bytep = virt_addr + sizeof(union lpfc_sli4_cfg_shdr);
18440 lpfc_sli_pcimem_bcopy(&fcfindex, bytep, sizeof(uint32_t));
18441
18442 /*
18443 * Copy the fcf_index and the FCF Record Data. The data starts after
18444 * the FCoE header plus word10. The data copy needs to be endian
18445 * correct.
18446 */
18447 bytep += sizeof(uint32_t);
18448 lpfc_sli_pcimem_bcopy(fcf_record, bytep, sizeof(struct fcf_record));
18449 mboxq->vport = phba->pport;
18450 mboxq->mbox_cmpl = lpfc_mbx_cmpl_add_fcf_record;
18451 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
18452 if (rc == MBX_NOT_FINISHED) {
18453 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
18454 "2515 ADD_FCF_RECORD mailbox failed with "
18455 "status 0x%x\n", rc);
18456 lpfc_sli4_mbox_cmd_free(phba, mboxq);
18457 rc = -EIO;
18458 } else
18459 rc = 0;
18460
18461 return rc;
18462}
18463
18464/**
18465 * lpfc_sli4_build_dflt_fcf_record - Build the driver's default FCF Record.
18466 * @phba: pointer to lpfc hba data structure.
18467 * @fcf_record: pointer to the fcf record to write the default data.
18468 * @fcf_index: FCF table entry index.
18469 *
18470 * This routine is invoked to build the driver's default FCF record. The
18471 * values used are hardcoded. This routine handles memory initialization.
18472 *
18473 **/
18474void
18475lpfc_sli4_build_dflt_fcf_record(struct lpfc_hba *phba,
18476 struct fcf_record *fcf_record,
18477 uint16_t fcf_index)
18478{
18479 memset(fcf_record, 0, sizeof(struct fcf_record));
18480 fcf_record->max_rcv_size = LPFC_FCOE_MAX_RCV_SIZE;
18481 fcf_record->fka_adv_period = LPFC_FCOE_FKA_ADV_PER;
18482 fcf_record->fip_priority = LPFC_FCOE_FIP_PRIORITY;
18483 bf_set(lpfc_fcf_record_mac_0, fcf_record, phba->fc_map[0]);
18484 bf_set(lpfc_fcf_record_mac_1, fcf_record, phba->fc_map[1]);
18485 bf_set(lpfc_fcf_record_mac_2, fcf_record, phba->fc_map[2]);
18486 bf_set(lpfc_fcf_record_mac_3, fcf_record, LPFC_FCOE_FCF_MAC3);
18487 bf_set(lpfc_fcf_record_mac_4, fcf_record, LPFC_FCOE_FCF_MAC4);
18488 bf_set(lpfc_fcf_record_mac_5, fcf_record, LPFC_FCOE_FCF_MAC5);
18489 bf_set(lpfc_fcf_record_fc_map_0, fcf_record, phba->fc_map[0]);
18490 bf_set(lpfc_fcf_record_fc_map_1, fcf_record, phba->fc_map[1]);
18491 bf_set(lpfc_fcf_record_fc_map_2, fcf_record, phba->fc_map[2]);
18492 bf_set(lpfc_fcf_record_fcf_valid, fcf_record, 1);
James Smart0c287582009-06-10 17:22:56 -040018493 bf_set(lpfc_fcf_record_fcf_avail, fcf_record, 1);
James Smart6fb120a2009-05-22 14:52:59 -040018494 bf_set(lpfc_fcf_record_fcf_index, fcf_record, fcf_index);
18495 bf_set(lpfc_fcf_record_mac_addr_prov, fcf_record,
18496 LPFC_FCF_FPMA | LPFC_FCF_SPMA);
18497 /* Set the VLAN bit map */
18498 if (phba->valid_vlan) {
18499 fcf_record->vlan_bitmap[phba->vlan_id / 8]
18500 = 1 << (phba->vlan_id % 8);
18501 }
18502}
18503
18504/**
James Smart0c9ab6f2010-02-26 14:15:57 -050018505 * lpfc_sli4_fcf_scan_read_fcf_rec - Read hba fcf record for fcf scan.
James Smart6fb120a2009-05-22 14:52:59 -040018506 * @phba: pointer to lpfc hba data structure.
18507 * @fcf_index: FCF table entry offset.
18508 *
James Smart0c9ab6f2010-02-26 14:15:57 -050018509 * This routine is invoked to scan the entire FCF table by reading FCF
18510 * record and processing it one at a time starting from the @fcf_index
18511 * for initial FCF discovery or fast FCF failover rediscovery.
18512 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030018513 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050018514 * otherwise.
James Smart6fb120a2009-05-22 14:52:59 -040018515 **/
18516int
James Smart0c9ab6f2010-02-26 14:15:57 -050018517lpfc_sli4_fcf_scan_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
James Smart6fb120a2009-05-22 14:52:59 -040018518{
18519 int rc = 0, error;
18520 LPFC_MBOXQ_t *mboxq;
James Smart6fb120a2009-05-22 14:52:59 -040018521
James Smart32b97932009-07-19 10:01:21 -040018522 phba->fcoe_eventtag_at_fcf_scan = phba->fcoe_eventtag;
James Smart80c17842012-03-01 22:35:45 -050018523 phba->fcoe_cvl_eventtag_attn = phba->fcoe_cvl_eventtag;
James Smart6fb120a2009-05-22 14:52:59 -040018524 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
18525 if (!mboxq) {
18526 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
18527 "2000 Failed to allocate mbox for "
18528 "READ_FCF cmd\n");
James Smart4d9ab992009-10-02 15:16:39 -040018529 error = -ENOMEM;
James Smart0c9ab6f2010-02-26 14:15:57 -050018530 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040018531 }
James Smartecfd03c2010-02-12 14:41:27 -050018532 /* Construct the read FCF record mailbox command */
James Smart0c9ab6f2010-02-26 14:15:57 -050018533 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
James Smartecfd03c2010-02-12 14:41:27 -050018534 if (rc) {
18535 error = -EINVAL;
James Smart0c9ab6f2010-02-26 14:15:57 -050018536 goto fail_fcf_scan;
James Smart6fb120a2009-05-22 14:52:59 -040018537 }
James Smartecfd03c2010-02-12 14:41:27 -050018538 /* Issue the mailbox command asynchronously */
James Smart6fb120a2009-05-22 14:52:59 -040018539 mboxq->vport = phba->pport;
James Smart0c9ab6f2010-02-26 14:15:57 -050018540 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_scan_read_fcf_rec;
James Smarta93ff372010-10-22 11:06:08 -040018541
18542 spin_lock_irq(&phba->hbalock);
18543 phba->hba_flag |= FCF_TS_INPROG;
18544 spin_unlock_irq(&phba->hbalock);
18545
James Smart6fb120a2009-05-22 14:52:59 -040018546 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
James Smartecfd03c2010-02-12 14:41:27 -050018547 if (rc == MBX_NOT_FINISHED)
James Smart6fb120a2009-05-22 14:52:59 -040018548 error = -EIO;
James Smartecfd03c2010-02-12 14:41:27 -050018549 else {
James Smart38b92ef2010-08-04 16:11:39 -040018550 /* Reset eligible FCF count for new scan */
18551 if (fcf_index == LPFC_FCOE_FCF_GET_FIRST)
James Smart999d8132010-03-15 11:24:56 -040018552 phba->fcf.eligible_fcf_cnt = 0;
James Smart6fb120a2009-05-22 14:52:59 -040018553 error = 0;
James Smart32b97932009-07-19 10:01:21 -040018554 }
James Smart0c9ab6f2010-02-26 14:15:57 -050018555fail_fcf_scan:
James Smart4d9ab992009-10-02 15:16:39 -040018556 if (error) {
18557 if (mboxq)
18558 lpfc_sli4_mbox_cmd_free(phba, mboxq);
James Smarta93ff372010-10-22 11:06:08 -040018559 /* FCF scan failed, clear FCF_TS_INPROG flag */
James Smart4d9ab992009-10-02 15:16:39 -040018560 spin_lock_irq(&phba->hbalock);
James Smarta93ff372010-10-22 11:06:08 -040018561 phba->hba_flag &= ~FCF_TS_INPROG;
James Smart4d9ab992009-10-02 15:16:39 -040018562 spin_unlock_irq(&phba->hbalock);
18563 }
James Smart6fb120a2009-05-22 14:52:59 -040018564 return error;
18565}
James Smarta0c87cb2009-07-19 10:01:10 -040018566
18567/**
James Smarta93ff372010-10-22 11:06:08 -040018568 * lpfc_sli4_fcf_rr_read_fcf_rec - Read hba fcf record for roundrobin fcf.
James Smart0c9ab6f2010-02-26 14:15:57 -050018569 * @phba: pointer to lpfc hba data structure.
18570 * @fcf_index: FCF table entry offset.
18571 *
18572 * This routine is invoked to read an FCF record indicated by @fcf_index
James Smarta93ff372010-10-22 11:06:08 -040018573 * and to use it for FLOGI roundrobin FCF failover.
James Smart0c9ab6f2010-02-26 14:15:57 -050018574 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030018575 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050018576 * otherwise.
18577 **/
18578int
18579lpfc_sli4_fcf_rr_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
18580{
18581 int rc = 0, error;
18582 LPFC_MBOXQ_t *mboxq;
18583
18584 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
18585 if (!mboxq) {
18586 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
18587 "2763 Failed to allocate mbox for "
18588 "READ_FCF cmd\n");
18589 error = -ENOMEM;
18590 goto fail_fcf_read;
18591 }
18592 /* Construct the read FCF record mailbox command */
18593 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
18594 if (rc) {
18595 error = -EINVAL;
18596 goto fail_fcf_read;
18597 }
18598 /* Issue the mailbox command asynchronously */
18599 mboxq->vport = phba->pport;
18600 mboxq->mbox_cmpl = lpfc_mbx_cmpl_fcf_rr_read_fcf_rec;
18601 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
18602 if (rc == MBX_NOT_FINISHED)
18603 error = -EIO;
18604 else
18605 error = 0;
18606
18607fail_fcf_read:
18608 if (error && mboxq)
18609 lpfc_sli4_mbox_cmd_free(phba, mboxq);
18610 return error;
18611}
18612
18613/**
18614 * lpfc_sli4_read_fcf_rec - Read hba fcf record for update eligible fcf bmask.
18615 * @phba: pointer to lpfc hba data structure.
18616 * @fcf_index: FCF table entry offset.
18617 *
18618 * This routine is invoked to read an FCF record indicated by @fcf_index to
James Smarta93ff372010-10-22 11:06:08 -040018619 * determine whether it's eligible for FLOGI roundrobin failover list.
James Smart0c9ab6f2010-02-26 14:15:57 -050018620 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030018621 * Return 0 if the mailbox command is submitted successfully, none 0
James Smart0c9ab6f2010-02-26 14:15:57 -050018622 * otherwise.
18623 **/
18624int
18625lpfc_sli4_read_fcf_rec(struct lpfc_hba *phba, uint16_t fcf_index)
18626{
18627 int rc = 0, error;
18628 LPFC_MBOXQ_t *mboxq;
18629
18630 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
18631 if (!mboxq) {
18632 lpfc_printf_log(phba, KERN_ERR, LOG_FIP | LOG_INIT,
18633 "2758 Failed to allocate mbox for "
18634 "READ_FCF cmd\n");
18635 error = -ENOMEM;
18636 goto fail_fcf_read;
18637 }
18638 /* Construct the read FCF record mailbox command */
18639 rc = lpfc_sli4_mbx_read_fcf_rec(phba, mboxq, fcf_index);
18640 if (rc) {
18641 error = -EINVAL;
18642 goto fail_fcf_read;
18643 }
18644 /* Issue the mailbox command asynchronously */
18645 mboxq->vport = phba->pport;
18646 mboxq->mbox_cmpl = lpfc_mbx_cmpl_read_fcf_rec;
18647 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_NOWAIT);
18648 if (rc == MBX_NOT_FINISHED)
18649 error = -EIO;
18650 else
18651 error = 0;
18652
18653fail_fcf_read:
18654 if (error && mboxq)
18655 lpfc_sli4_mbox_cmd_free(phba, mboxq);
18656 return error;
18657}
18658
18659/**
James Smartf5cb5302015-12-16 18:11:52 -050018660 * lpfc_check_next_fcf_pri_level
James Smart7d791df2011-07-22 18:37:52 -040018661 * phba pointer to the lpfc_hba struct for this port.
18662 * This routine is called from the lpfc_sli4_fcf_rr_next_index_get
18663 * routine when the rr_bmask is empty. The FCF indecies are put into the
18664 * rr_bmask based on their priority level. Starting from the highest priority
18665 * to the lowest. The most likely FCF candidate will be in the highest
18666 * priority group. When this routine is called it searches the fcf_pri list for
18667 * next lowest priority group and repopulates the rr_bmask with only those
18668 * fcf_indexes.
18669 * returns:
18670 * 1=success 0=failure
18671 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040018672static int
James Smart7d791df2011-07-22 18:37:52 -040018673lpfc_check_next_fcf_pri_level(struct lpfc_hba *phba)
18674{
18675 uint16_t next_fcf_pri;
18676 uint16_t last_index;
18677 struct lpfc_fcf_pri *fcf_pri;
18678 int rc;
18679 int ret = 0;
18680
18681 last_index = find_first_bit(phba->fcf.fcf_rr_bmask,
18682 LPFC_SLI4_FCF_TBL_INDX_MAX);
18683 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
18684 "3060 Last IDX %d\n", last_index);
James Smart25626692013-03-01 16:36:54 -050018685
18686 /* Verify the priority list has 2 or more entries */
18687 spin_lock_irq(&phba->hbalock);
18688 if (list_empty(&phba->fcf.fcf_pri_list) ||
18689 list_is_singular(&phba->fcf.fcf_pri_list)) {
18690 spin_unlock_irq(&phba->hbalock);
James Smart7d791df2011-07-22 18:37:52 -040018691 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
18692 "3061 Last IDX %d\n", last_index);
18693 return 0; /* Empty rr list */
18694 }
James Smart25626692013-03-01 16:36:54 -050018695 spin_unlock_irq(&phba->hbalock);
18696
James Smart7d791df2011-07-22 18:37:52 -040018697 next_fcf_pri = 0;
18698 /*
18699 * Clear the rr_bmask and set all of the bits that are at this
18700 * priority.
18701 */
18702 memset(phba->fcf.fcf_rr_bmask, 0,
18703 sizeof(*phba->fcf.fcf_rr_bmask));
18704 spin_lock_irq(&phba->hbalock);
18705 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
18706 if (fcf_pri->fcf_rec.flag & LPFC_FCF_FLOGI_FAILED)
18707 continue;
18708 /*
18709 * the 1st priority that has not FLOGI failed
18710 * will be the highest.
18711 */
18712 if (!next_fcf_pri)
18713 next_fcf_pri = fcf_pri->fcf_rec.priority;
18714 spin_unlock_irq(&phba->hbalock);
18715 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
18716 rc = lpfc_sli4_fcf_rr_index_set(phba,
18717 fcf_pri->fcf_rec.fcf_index);
18718 if (rc)
18719 return 0;
18720 }
18721 spin_lock_irq(&phba->hbalock);
18722 }
18723 /*
18724 * if next_fcf_pri was not set above and the list is not empty then
18725 * we have failed flogis on all of them. So reset flogi failed
Anatol Pomozov4907cb72012-09-01 10:31:09 -070018726 * and start at the beginning.
James Smart7d791df2011-07-22 18:37:52 -040018727 */
18728 if (!next_fcf_pri && !list_empty(&phba->fcf.fcf_pri_list)) {
18729 list_for_each_entry(fcf_pri, &phba->fcf.fcf_pri_list, list) {
18730 fcf_pri->fcf_rec.flag &= ~LPFC_FCF_FLOGI_FAILED;
18731 /*
18732 * the 1st priority that has not FLOGI failed
18733 * will be the highest.
18734 */
18735 if (!next_fcf_pri)
18736 next_fcf_pri = fcf_pri->fcf_rec.priority;
18737 spin_unlock_irq(&phba->hbalock);
18738 if (fcf_pri->fcf_rec.priority == next_fcf_pri) {
18739 rc = lpfc_sli4_fcf_rr_index_set(phba,
18740 fcf_pri->fcf_rec.fcf_index);
18741 if (rc)
18742 return 0;
18743 }
18744 spin_lock_irq(&phba->hbalock);
18745 }
18746 } else
18747 ret = 1;
18748 spin_unlock_irq(&phba->hbalock);
18749
18750 return ret;
18751}
18752/**
James Smart0c9ab6f2010-02-26 14:15:57 -050018753 * lpfc_sli4_fcf_rr_next_index_get - Get next eligible fcf record index
18754 * @phba: pointer to lpfc hba data structure.
18755 *
18756 * This routine is to get the next eligible FCF record index in a round
18757 * robin fashion. If the next eligible FCF record index equals to the
James Smarta93ff372010-10-22 11:06:08 -040018758 * initial roundrobin FCF record index, LPFC_FCOE_FCF_NEXT_NONE (0xFFFF)
James Smart0c9ab6f2010-02-26 14:15:57 -050018759 * shall be returned, otherwise, the next eligible FCF record's index
18760 * shall be returned.
18761 **/
18762uint16_t
18763lpfc_sli4_fcf_rr_next_index_get(struct lpfc_hba *phba)
18764{
18765 uint16_t next_fcf_index;
18766
James Smart421c6622013-01-03 15:44:16 -050018767initial_priority:
James Smart3804dc82010-07-14 15:31:37 -040018768 /* Search start from next bit of currently registered FCF index */
James Smart421c6622013-01-03 15:44:16 -050018769 next_fcf_index = phba->fcf.current_rec.fcf_indx;
18770
James Smart7d791df2011-07-22 18:37:52 -040018771next_priority:
James Smart421c6622013-01-03 15:44:16 -050018772 /* Determine the next fcf index to check */
18773 next_fcf_index = (next_fcf_index + 1) % LPFC_SLI4_FCF_TBL_INDX_MAX;
James Smart0c9ab6f2010-02-26 14:15:57 -050018774 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
18775 LPFC_SLI4_FCF_TBL_INDX_MAX,
James Smart3804dc82010-07-14 15:31:37 -040018776 next_fcf_index);
18777
James Smart0c9ab6f2010-02-26 14:15:57 -050018778 /* Wrap around condition on phba->fcf.fcf_rr_bmask */
James Smart7d791df2011-07-22 18:37:52 -040018779 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
18780 /*
18781 * If we have wrapped then we need to clear the bits that
18782 * have been tested so that we can detect when we should
18783 * change the priority level.
18784 */
James Smart0c9ab6f2010-02-26 14:15:57 -050018785 next_fcf_index = find_next_bit(phba->fcf.fcf_rr_bmask,
18786 LPFC_SLI4_FCF_TBL_INDX_MAX, 0);
James Smart7d791df2011-07-22 18:37:52 -040018787 }
18788
James Smart0c9ab6f2010-02-26 14:15:57 -050018789
James Smart3804dc82010-07-14 15:31:37 -040018790 /* Check roundrobin failover list empty condition */
James Smart7d791df2011-07-22 18:37:52 -040018791 if (next_fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX ||
18792 next_fcf_index == phba->fcf.current_rec.fcf_indx) {
18793 /*
18794 * If next fcf index is not found check if there are lower
18795 * Priority level fcf's in the fcf_priority list.
18796 * Set up the rr_bmask with all of the avaiable fcf bits
18797 * at that level and continue the selection process.
18798 */
18799 if (lpfc_check_next_fcf_pri_level(phba))
James Smart421c6622013-01-03 15:44:16 -050018800 goto initial_priority;
James Smart3804dc82010-07-14 15:31:37 -040018801 lpfc_printf_log(phba, KERN_WARNING, LOG_FIP,
18802 "2844 No roundrobin failover FCF available\n");
James Smart036cad12018-10-23 13:41:06 -070018803
18804 return LPFC_FCOE_FCF_NEXT_NONE;
James Smart3804dc82010-07-14 15:31:37 -040018805 }
18806
James Smart7d791df2011-07-22 18:37:52 -040018807 if (next_fcf_index < LPFC_SLI4_FCF_TBL_INDX_MAX &&
18808 phba->fcf.fcf_pri[next_fcf_index].fcf_rec.flag &
James Smartf5cb5302015-12-16 18:11:52 -050018809 LPFC_FCF_FLOGI_FAILED) {
18810 if (list_is_singular(&phba->fcf.fcf_pri_list))
18811 return LPFC_FCOE_FCF_NEXT_NONE;
18812
James Smart7d791df2011-07-22 18:37:52 -040018813 goto next_priority;
James Smartf5cb5302015-12-16 18:11:52 -050018814 }
James Smart7d791df2011-07-22 18:37:52 -040018815
James Smart3804dc82010-07-14 15:31:37 -040018816 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040018817 "2845 Get next roundrobin failover FCF (x%x)\n",
18818 next_fcf_index);
18819
James Smart0c9ab6f2010-02-26 14:15:57 -050018820 return next_fcf_index;
18821}
18822
18823/**
18824 * lpfc_sli4_fcf_rr_index_set - Set bmask with eligible fcf record index
18825 * @phba: pointer to lpfc hba data structure.
18826 *
18827 * This routine sets the FCF record index in to the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040018828 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050018829 * does not go beyond the range of the driver allocated bmask dimension
18830 * before setting the bit.
18831 *
18832 * Returns 0 if the index bit successfully set, otherwise, it returns
18833 * -EINVAL.
18834 **/
18835int
18836lpfc_sli4_fcf_rr_index_set(struct lpfc_hba *phba, uint16_t fcf_index)
18837{
18838 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
18839 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040018840 "2610 FCF (x%x) reached driver's book "
18841 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050018842 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
18843 return -EINVAL;
18844 }
18845 /* Set the eligible FCF record index bmask */
18846 set_bit(fcf_index, phba->fcf.fcf_rr_bmask);
18847
James Smart3804dc82010-07-14 15:31:37 -040018848 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040018849 "2790 Set FCF (x%x) to roundrobin FCF failover "
James Smart3804dc82010-07-14 15:31:37 -040018850 "bmask\n", fcf_index);
18851
James Smart0c9ab6f2010-02-26 14:15:57 -050018852 return 0;
18853}
18854
18855/**
James Smart3804dc82010-07-14 15:31:37 -040018856 * lpfc_sli4_fcf_rr_index_clear - Clear bmask from eligible fcf record index
James Smart0c9ab6f2010-02-26 14:15:57 -050018857 * @phba: pointer to lpfc hba data structure.
18858 *
18859 * This routine clears the FCF record index from the eligible bmask for
James Smarta93ff372010-10-22 11:06:08 -040018860 * roundrobin failover search. It checks to make sure that the index
James Smart0c9ab6f2010-02-26 14:15:57 -050018861 * does not go beyond the range of the driver allocated bmask dimension
18862 * before clearing the bit.
18863 **/
18864void
18865lpfc_sli4_fcf_rr_index_clear(struct lpfc_hba *phba, uint16_t fcf_index)
18866{
James Smart9a803a72013-09-06 12:17:56 -040018867 struct lpfc_fcf_pri *fcf_pri, *fcf_pri_next;
James Smart0c9ab6f2010-02-26 14:15:57 -050018868 if (fcf_index >= LPFC_SLI4_FCF_TBL_INDX_MAX) {
18869 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040018870 "2762 FCF (x%x) reached driver's book "
18871 "keeping dimension:x%x\n",
James Smart0c9ab6f2010-02-26 14:15:57 -050018872 fcf_index, LPFC_SLI4_FCF_TBL_INDX_MAX);
18873 return;
18874 }
18875 /* Clear the eligible FCF record index bmask */
James Smart7d791df2011-07-22 18:37:52 -040018876 spin_lock_irq(&phba->hbalock);
James Smart9a803a72013-09-06 12:17:56 -040018877 list_for_each_entry_safe(fcf_pri, fcf_pri_next, &phba->fcf.fcf_pri_list,
18878 list) {
James Smart7d791df2011-07-22 18:37:52 -040018879 if (fcf_pri->fcf_rec.fcf_index == fcf_index) {
18880 list_del_init(&fcf_pri->list);
18881 break;
18882 }
18883 }
18884 spin_unlock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050018885 clear_bit(fcf_index, phba->fcf.fcf_rr_bmask);
James Smart3804dc82010-07-14 15:31:37 -040018886
18887 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040018888 "2791 Clear FCF (x%x) from roundrobin failover "
James Smart3804dc82010-07-14 15:31:37 -040018889 "bmask\n", fcf_index);
James Smart0c9ab6f2010-02-26 14:15:57 -050018890}
18891
18892/**
James Smartecfd03c2010-02-12 14:41:27 -050018893 * lpfc_mbx_cmpl_redisc_fcf_table - completion routine for rediscover FCF table
18894 * @phba: pointer to lpfc hba data structure.
18895 *
18896 * This routine is the completion routine for the rediscover FCF table mailbox
18897 * command. If the mailbox command returned failure, it will try to stop the
18898 * FCF rediscover wait timer.
18899 **/
Rashika Kheria5d8b8162014-09-03 12:55:04 -040018900static void
James Smartecfd03c2010-02-12 14:41:27 -050018901lpfc_mbx_cmpl_redisc_fcf_table(struct lpfc_hba *phba, LPFC_MBOXQ_t *mbox)
18902{
18903 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
18904 uint32_t shdr_status, shdr_add_status;
18905
18906 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
18907
18908 shdr_status = bf_get(lpfc_mbox_hdr_status,
18909 &redisc_fcf->header.cfg_shdr.response);
18910 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
18911 &redisc_fcf->header.cfg_shdr.response);
18912 if (shdr_status || shdr_add_status) {
James Smart0c9ab6f2010-02-26 14:15:57 -050018913 lpfc_printf_log(phba, KERN_ERR, LOG_FIP,
James Smartecfd03c2010-02-12 14:41:27 -050018914 "2746 Requesting for FCF rediscovery failed "
18915 "status x%x add_status x%x\n",
18916 shdr_status, shdr_add_status);
James Smart0c9ab6f2010-02-26 14:15:57 -050018917 if (phba->fcf.fcf_flag & FCF_ACVL_DISC) {
James Smartfc2b9892010-02-26 14:15:29 -050018918 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050018919 phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050018920 spin_unlock_irq(&phba->hbalock);
18921 /*
18922 * CVL event triggered FCF rediscover request failed,
18923 * last resort to re-try current registered FCF entry.
18924 */
18925 lpfc_retry_pport_discovery(phba);
18926 } else {
18927 spin_lock_irq(&phba->hbalock);
James Smart0c9ab6f2010-02-26 14:15:57 -050018928 phba->fcf.fcf_flag &= ~FCF_DEAD_DISC;
James Smartfc2b9892010-02-26 14:15:29 -050018929 spin_unlock_irq(&phba->hbalock);
18930 /*
18931 * DEAD FCF event triggered FCF rediscover request
18932 * failed, last resort to fail over as a link down
18933 * to FCF registration.
18934 */
18935 lpfc_sli4_fcf_dead_failthrough(phba);
18936 }
James Smart0c9ab6f2010-02-26 14:15:57 -050018937 } else {
18938 lpfc_printf_log(phba, KERN_INFO, LOG_FIP,
James Smarta93ff372010-10-22 11:06:08 -040018939 "2775 Start FCF rediscover quiescent timer\n");
James Smartecfd03c2010-02-12 14:41:27 -050018940 /*
18941 * Start FCF rediscovery wait timer for pending FCF
18942 * before rescan FCF record table.
18943 */
18944 lpfc_fcf_redisc_wait_start_timer(phba);
James Smart0c9ab6f2010-02-26 14:15:57 -050018945 }
James Smartecfd03c2010-02-12 14:41:27 -050018946
18947 mempool_free(mbox, phba->mbox_mem_pool);
18948}
18949
18950/**
James Smart3804dc82010-07-14 15:31:37 -040018951 * lpfc_sli4_redisc_fcf_table - Request to rediscover entire FCF table by port.
James Smartecfd03c2010-02-12 14:41:27 -050018952 * @phba: pointer to lpfc hba data structure.
18953 *
18954 * This routine is invoked to request for rediscovery of the entire FCF table
18955 * by the port.
18956 **/
18957int
18958lpfc_sli4_redisc_fcf_table(struct lpfc_hba *phba)
18959{
18960 LPFC_MBOXQ_t *mbox;
18961 struct lpfc_mbx_redisc_fcf_tbl *redisc_fcf;
18962 int rc, length;
18963
James Smart0c9ab6f2010-02-26 14:15:57 -050018964 /* Cancel retry delay timers to all vports before FCF rediscover */
18965 lpfc_cancel_all_vport_retry_delay_timer(phba);
18966
James Smartecfd03c2010-02-12 14:41:27 -050018967 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
18968 if (!mbox) {
18969 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
18970 "2745 Failed to allocate mbox for "
18971 "requesting FCF rediscover.\n");
18972 return -ENOMEM;
18973 }
18974
18975 length = (sizeof(struct lpfc_mbx_redisc_fcf_tbl) -
18976 sizeof(struct lpfc_sli4_cfg_mhdr));
18977 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_FCOE,
18978 LPFC_MBOX_OPCODE_FCOE_REDISCOVER_FCF,
18979 length, LPFC_SLI4_MBX_EMBED);
18980
18981 redisc_fcf = &mbox->u.mqe.un.redisc_fcf_tbl;
18982 /* Set count to 0 for invalidating the entire FCF database */
18983 bf_set(lpfc_mbx_redisc_fcf_count, redisc_fcf, 0);
18984
18985 /* Issue the mailbox command asynchronously */
18986 mbox->vport = phba->pport;
18987 mbox->mbox_cmpl = lpfc_mbx_cmpl_redisc_fcf_table;
18988 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_NOWAIT);
18989
18990 if (rc == MBX_NOT_FINISHED) {
18991 mempool_free(mbox, phba->mbox_mem_pool);
18992 return -EIO;
18993 }
18994 return 0;
18995}
18996
18997/**
James Smartfc2b9892010-02-26 14:15:29 -050018998 * lpfc_sli4_fcf_dead_failthrough - Failthrough routine to fcf dead event
18999 * @phba: pointer to lpfc hba data structure.
19000 *
19001 * This function is the failover routine as a last resort to the FCF DEAD
19002 * event when driver failed to perform fast FCF failover.
19003 **/
19004void
19005lpfc_sli4_fcf_dead_failthrough(struct lpfc_hba *phba)
19006{
19007 uint32_t link_state;
19008
19009 /*
19010 * Last resort as FCF DEAD event failover will treat this as
19011 * a link down, but save the link state because we don't want
19012 * it to be changed to Link Down unless it is already down.
19013 */
19014 link_state = phba->link_state;
19015 lpfc_linkdown(phba);
19016 phba->link_state = link_state;
19017
19018 /* Unregister FCF if no devices connected to it */
19019 lpfc_unregister_unused_fcf(phba);
19020}
19021
19022/**
James Smart026abb82011-12-13 13:20:45 -050019023 * lpfc_sli_get_config_region23 - Get sli3 port region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040019024 * @phba: pointer to lpfc hba data structure.
James Smart026abb82011-12-13 13:20:45 -050019025 * @rgn23_data: pointer to configure region 23 data.
James Smarta0c87cb2009-07-19 10:01:10 -040019026 *
James Smart026abb82011-12-13 13:20:45 -050019027 * This function gets SLI3 port configure region 23 data through memory dump
19028 * mailbox command. When it successfully retrieves data, the size of the data
19029 * will be returned, otherwise, 0 will be returned.
James Smarta0c87cb2009-07-19 10:01:10 -040019030 **/
James Smart026abb82011-12-13 13:20:45 -050019031static uint32_t
19032lpfc_sli_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
James Smarta0c87cb2009-07-19 10:01:10 -040019033{
19034 LPFC_MBOXQ_t *pmb = NULL;
19035 MAILBOX_t *mb;
James Smart026abb82011-12-13 13:20:45 -050019036 uint32_t offset = 0;
James Smarta0c87cb2009-07-19 10:01:10 -040019037 int rc;
19038
James Smart026abb82011-12-13 13:20:45 -050019039 if (!rgn23_data)
19040 return 0;
19041
James Smarta0c87cb2009-07-19 10:01:10 -040019042 pmb = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
19043 if (!pmb) {
19044 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050019045 "2600 failed to allocate mailbox memory\n");
19046 return 0;
James Smarta0c87cb2009-07-19 10:01:10 -040019047 }
19048 mb = &pmb->u.mb;
19049
James Smarta0c87cb2009-07-19 10:01:10 -040019050 do {
19051 lpfc_dump_mem(phba, pmb, offset, DMP_REGION_23);
19052 rc = lpfc_sli_issue_mbox(phba, pmb, MBX_POLL);
19053
19054 if (rc != MBX_SUCCESS) {
19055 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
James Smart026abb82011-12-13 13:20:45 -050019056 "2601 failed to read config "
19057 "region 23, rc 0x%x Status 0x%x\n",
19058 rc, mb->mbxStatus);
James Smarta0c87cb2009-07-19 10:01:10 -040019059 mb->un.varDmp.word_cnt = 0;
19060 }
19061 /*
19062 * dump mem may return a zero when finished or we got a
19063 * mailbox error, either way we are done.
19064 */
19065 if (mb->un.varDmp.word_cnt == 0)
19066 break;
19067 if (mb->un.varDmp.word_cnt > DMP_RGN23_SIZE - offset)
19068 mb->un.varDmp.word_cnt = DMP_RGN23_SIZE - offset;
19069
19070 lpfc_sli_pcimem_bcopy(((uint8_t *)mb) + DMP_RSP_OFFSET,
James Smart026abb82011-12-13 13:20:45 -050019071 rgn23_data + offset,
19072 mb->un.varDmp.word_cnt);
James Smarta0c87cb2009-07-19 10:01:10 -040019073 offset += mb->un.varDmp.word_cnt;
19074 } while (mb->un.varDmp.word_cnt && offset < DMP_RGN23_SIZE);
19075
James Smart026abb82011-12-13 13:20:45 -050019076 mempool_free(pmb, phba->mbox_mem_pool);
19077 return offset;
19078}
19079
19080/**
19081 * lpfc_sli4_get_config_region23 - Get sli4 port region 23 data.
19082 * @phba: pointer to lpfc hba data structure.
19083 * @rgn23_data: pointer to configure region 23 data.
19084 *
19085 * This function gets SLI4 port configure region 23 data through memory dump
19086 * mailbox command. When it successfully retrieves data, the size of the data
19087 * will be returned, otherwise, 0 will be returned.
19088 **/
19089static uint32_t
19090lpfc_sli4_get_config_region23(struct lpfc_hba *phba, char *rgn23_data)
19091{
19092 LPFC_MBOXQ_t *mboxq = NULL;
19093 struct lpfc_dmabuf *mp = NULL;
19094 struct lpfc_mqe *mqe;
19095 uint32_t data_length = 0;
19096 int rc;
19097
19098 if (!rgn23_data)
19099 return 0;
19100
19101 mboxq = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
19102 if (!mboxq) {
19103 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
19104 "3105 failed to allocate mailbox memory\n");
19105 return 0;
19106 }
19107
19108 if (lpfc_sli4_dump_cfg_rg23(phba, mboxq))
19109 goto out;
19110 mqe = &mboxq->u.mqe;
James Smart3e1f0712018-11-29 16:09:29 -080019111 mp = (struct lpfc_dmabuf *)mboxq->ctx_buf;
James Smart026abb82011-12-13 13:20:45 -050019112 rc = lpfc_sli_issue_mbox(phba, mboxq, MBX_POLL);
19113 if (rc)
19114 goto out;
19115 data_length = mqe->un.mb_words[5];
19116 if (data_length == 0)
19117 goto out;
19118 if (data_length > DMP_RGN23_SIZE) {
19119 data_length = 0;
19120 goto out;
19121 }
19122 lpfc_sli_pcimem_bcopy((char *)mp->virt, rgn23_data, data_length);
19123out:
19124 mempool_free(mboxq, phba->mbox_mem_pool);
19125 if (mp) {
19126 lpfc_mbuf_free(phba, mp->virt, mp->phys);
19127 kfree(mp);
19128 }
19129 return data_length;
19130}
19131
19132/**
19133 * lpfc_sli_read_link_ste - Read region 23 to decide if link is disabled.
19134 * @phba: pointer to lpfc hba data structure.
19135 *
19136 * This function read region 23 and parse TLV for port status to
19137 * decide if the user disaled the port. If the TLV indicates the
19138 * port is disabled, the hba_flag is set accordingly.
19139 **/
19140void
19141lpfc_sli_read_link_ste(struct lpfc_hba *phba)
19142{
19143 uint8_t *rgn23_data = NULL;
19144 uint32_t if_type, data_size, sub_tlv_len, tlv_offset;
19145 uint32_t offset = 0;
19146
19147 /* Get adapter Region 23 data */
19148 rgn23_data = kzalloc(DMP_RGN23_SIZE, GFP_KERNEL);
19149 if (!rgn23_data)
19150 goto out;
19151
19152 if (phba->sli_rev < LPFC_SLI_REV4)
19153 data_size = lpfc_sli_get_config_region23(phba, rgn23_data);
19154 else {
19155 if_type = bf_get(lpfc_sli_intf_if_type,
19156 &phba->sli4_hba.sli_intf);
19157 if (if_type == LPFC_SLI_INTF_IF_TYPE_0)
19158 goto out;
19159 data_size = lpfc_sli4_get_config_region23(phba, rgn23_data);
19160 }
James Smarta0c87cb2009-07-19 10:01:10 -040019161
19162 if (!data_size)
19163 goto out;
19164
19165 /* Check the region signature first */
19166 if (memcmp(&rgn23_data[offset], LPFC_REGION23_SIGNATURE, 4)) {
19167 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
19168 "2619 Config region 23 has bad signature\n");
19169 goto out;
19170 }
19171 offset += 4;
19172
19173 /* Check the data structure version */
19174 if (rgn23_data[offset] != LPFC_REGION23_VERSION) {
19175 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
19176 "2620 Config region 23 has bad version\n");
19177 goto out;
19178 }
19179 offset += 4;
19180
19181 /* Parse TLV entries in the region */
19182 while (offset < data_size) {
19183 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC)
19184 break;
19185 /*
19186 * If the TLV is not driver specific TLV or driver id is
19187 * not linux driver id, skip the record.
19188 */
19189 if ((rgn23_data[offset] != DRIVER_SPECIFIC_TYPE) ||
19190 (rgn23_data[offset + 2] != LINUX_DRIVER_ID) ||
19191 (rgn23_data[offset + 3] != 0)) {
19192 offset += rgn23_data[offset + 1] * 4 + 4;
19193 continue;
19194 }
19195
19196 /* Driver found a driver specific TLV in the config region */
19197 sub_tlv_len = rgn23_data[offset + 1] * 4;
19198 offset += 4;
19199 tlv_offset = 0;
19200
19201 /*
19202 * Search for configured port state sub-TLV.
19203 */
19204 while ((offset < data_size) &&
19205 (tlv_offset < sub_tlv_len)) {
19206 if (rgn23_data[offset] == LPFC_REGION23_LAST_REC) {
19207 offset += 4;
19208 tlv_offset += 4;
19209 break;
19210 }
19211 if (rgn23_data[offset] != PORT_STE_TYPE) {
19212 offset += rgn23_data[offset + 1] * 4 + 4;
19213 tlv_offset += rgn23_data[offset + 1] * 4 + 4;
19214 continue;
19215 }
19216
19217 /* This HBA contains PORT_STE configured */
19218 if (!rgn23_data[offset + 2])
19219 phba->hba_flag |= LINK_DISABLED;
19220
19221 goto out;
19222 }
19223 }
James Smart026abb82011-12-13 13:20:45 -050019224
James Smarta0c87cb2009-07-19 10:01:10 -040019225out:
James Smarta0c87cb2009-07-19 10:01:10 -040019226 kfree(rgn23_data);
19227 return;
19228}
James Smart695a8142010-01-26 23:08:03 -050019229
19230/**
James Smart52d52442011-05-24 11:42:45 -040019231 * lpfc_wr_object - write an object to the firmware
19232 * @phba: HBA structure that indicates port to create a queue on.
19233 * @dmabuf_list: list of dmabufs to write to the port.
19234 * @size: the total byte value of the objects to write to the port.
19235 * @offset: the current offset to be used to start the transfer.
19236 *
19237 * This routine will create a wr_object mailbox command to send to the port.
19238 * the mailbox command will be constructed using the dma buffers described in
19239 * @dmabuf_list to create a list of BDEs. This routine will fill in as many
19240 * BDEs that the imbedded mailbox can support. The @offset variable will be
19241 * used to indicate the starting offset of the transfer and will also return
19242 * the offset after the write object mailbox has completed. @size is used to
19243 * determine the end of the object and whether the eof bit should be set.
19244 *
19245 * Return 0 is successful and offset will contain the the new offset to use
19246 * for the next write.
19247 * Return negative value for error cases.
19248 **/
19249int
19250lpfc_wr_object(struct lpfc_hba *phba, struct list_head *dmabuf_list,
19251 uint32_t size, uint32_t *offset)
19252{
19253 struct lpfc_mbx_wr_object *wr_object;
19254 LPFC_MBOXQ_t *mbox;
19255 int rc = 0, i = 0;
James Smart50212672018-12-13 15:17:57 -080019256 uint32_t shdr_status, shdr_add_status, shdr_change_status;
James Smart52d52442011-05-24 11:42:45 -040019257 uint32_t mbox_tmo;
James Smart52d52442011-05-24 11:42:45 -040019258 struct lpfc_dmabuf *dmabuf;
19259 uint32_t written = 0;
James Smart50212672018-12-13 15:17:57 -080019260 bool check_change_status = false;
James Smart52d52442011-05-24 11:42:45 -040019261
19262 mbox = mempool_alloc(phba->mbox_mem_pool, GFP_KERNEL);
19263 if (!mbox)
19264 return -ENOMEM;
19265
19266 lpfc_sli4_config(phba, mbox, LPFC_MBOX_SUBSYSTEM_COMMON,
19267 LPFC_MBOX_OPCODE_WRITE_OBJECT,
19268 sizeof(struct lpfc_mbx_wr_object) -
19269 sizeof(struct lpfc_sli4_cfg_mhdr), LPFC_SLI4_MBX_EMBED);
19270
19271 wr_object = (struct lpfc_mbx_wr_object *)&mbox->u.mqe.un.wr_object;
19272 wr_object->u.request.write_offset = *offset;
19273 sprintf((uint8_t *)wr_object->u.request.object_name, "/");
19274 wr_object->u.request.object_name[0] =
19275 cpu_to_le32(wr_object->u.request.object_name[0]);
19276 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 0);
19277 list_for_each_entry(dmabuf, dmabuf_list, list) {
19278 if (i >= LPFC_MBX_WR_CONFIG_MAX_BDE || written >= size)
19279 break;
19280 wr_object->u.request.bde[i].addrLow = putPaddrLow(dmabuf->phys);
19281 wr_object->u.request.bde[i].addrHigh =
19282 putPaddrHigh(dmabuf->phys);
19283 if (written + SLI4_PAGE_SIZE >= size) {
19284 wr_object->u.request.bde[i].tus.f.bdeSize =
19285 (size - written);
19286 written += (size - written);
19287 bf_set(lpfc_wr_object_eof, &wr_object->u.request, 1);
James Smart50212672018-12-13 15:17:57 -080019288 bf_set(lpfc_wr_object_eas, &wr_object->u.request, 1);
19289 check_change_status = true;
James Smart52d52442011-05-24 11:42:45 -040019290 } else {
19291 wr_object->u.request.bde[i].tus.f.bdeSize =
19292 SLI4_PAGE_SIZE;
19293 written += SLI4_PAGE_SIZE;
19294 }
19295 i++;
19296 }
19297 wr_object->u.request.bde_count = i;
19298 bf_set(lpfc_wr_object_write_length, &wr_object->u.request, written);
19299 if (!phba->sli4_hba.intr_enable)
19300 rc = lpfc_sli_issue_mbox(phba, mbox, MBX_POLL);
19301 else {
James Smarta183a152011-10-10 21:32:43 -040019302 mbox_tmo = lpfc_mbox_tmo_val(phba, mbox);
James Smart52d52442011-05-24 11:42:45 -040019303 rc = lpfc_sli_issue_mbox_wait(phba, mbox, mbox_tmo);
19304 }
19305 /* The IOCTL status is embedded in the mailbox subheader. */
James Smart50212672018-12-13 15:17:57 -080019306 shdr_status = bf_get(lpfc_mbox_hdr_status,
19307 &wr_object->header.cfg_shdr.response);
19308 shdr_add_status = bf_get(lpfc_mbox_hdr_add_status,
19309 &wr_object->header.cfg_shdr.response);
19310 if (check_change_status) {
19311 shdr_change_status = bf_get(lpfc_wr_object_change_status,
19312 &wr_object->u.response);
19313 switch (shdr_change_status) {
19314 case (LPFC_CHANGE_STATUS_PHYS_DEV_RESET):
19315 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
19316 "3198 Firmware write complete: System "
19317 "reboot required to instantiate\n");
19318 break;
19319 case (LPFC_CHANGE_STATUS_FW_RESET):
19320 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
19321 "3199 Firmware write complete: Firmware"
19322 " reset required to instantiate\n");
19323 break;
19324 case (LPFC_CHANGE_STATUS_PORT_MIGRATION):
19325 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
19326 "3200 Firmware write complete: Port "
19327 "Migration or PCI Reset required to "
19328 "instantiate\n");
19329 break;
19330 case (LPFC_CHANGE_STATUS_PCI_RESET):
19331 lpfc_printf_log(phba, KERN_INFO, LOG_INIT,
19332 "3201 Firmware write complete: PCI "
19333 "Reset required to instantiate\n");
19334 break;
19335 default:
19336 break;
19337 }
19338 }
James Smart52d52442011-05-24 11:42:45 -040019339 if (rc != MBX_TIMEOUT)
19340 mempool_free(mbox, phba->mbox_mem_pool);
19341 if (shdr_status || shdr_add_status || rc) {
19342 lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
19343 "3025 Write Object mailbox failed with "
19344 "status x%x add_status x%x, mbx status x%x\n",
19345 shdr_status, shdr_add_status, rc);
19346 rc = -ENXIO;
James Smart1feb8202018-02-22 08:18:47 -080019347 *offset = shdr_add_status;
James Smart52d52442011-05-24 11:42:45 -040019348 } else
19349 *offset += wr_object->u.response.actual_write_length;
19350 return rc;
19351}
19352
19353/**
James Smart695a8142010-01-26 23:08:03 -050019354 * lpfc_cleanup_pending_mbox - Free up vport discovery mailbox commands.
19355 * @vport: pointer to vport data structure.
19356 *
19357 * This function iterate through the mailboxq and clean up all REG_LOGIN
19358 * and REG_VPI mailbox commands associated with the vport. This function
19359 * is called when driver want to restart discovery of the vport due to
19360 * a Clear Virtual Link event.
19361 **/
19362void
19363lpfc_cleanup_pending_mbox(struct lpfc_vport *vport)
19364{
19365 struct lpfc_hba *phba = vport->phba;
19366 LPFC_MBOXQ_t *mb, *nextmb;
19367 struct lpfc_dmabuf *mp;
James Smart78730cf2010-04-06 15:06:30 -040019368 struct lpfc_nodelist *ndlp;
James Smartd439d282010-09-29 11:18:45 -040019369 struct lpfc_nodelist *act_mbx_ndlp = NULL;
James Smart589a52d2010-07-14 15:30:54 -040019370 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
James Smartd439d282010-09-29 11:18:45 -040019371 LIST_HEAD(mbox_cmd_list);
James Smart63e801c2010-11-20 23:14:19 -050019372 uint8_t restart_loop;
James Smart695a8142010-01-26 23:08:03 -050019373
James Smartd439d282010-09-29 11:18:45 -040019374 /* Clean up internally queued mailbox commands with the vport */
James Smart695a8142010-01-26 23:08:03 -050019375 spin_lock_irq(&phba->hbalock);
19376 list_for_each_entry_safe(mb, nextmb, &phba->sli.mboxq, list) {
19377 if (mb->vport != vport)
19378 continue;
19379
19380 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
19381 (mb->u.mb.mbxCommand != MBX_REG_VPI))
19382 continue;
19383
James Smartd439d282010-09-29 11:18:45 -040019384 list_del(&mb->list);
19385 list_add_tail(&mb->list, &mbox_cmd_list);
19386 }
19387 /* Clean up active mailbox command with the vport */
19388 mb = phba->sli.mbox_active;
19389 if (mb && (mb->vport == vport)) {
19390 if ((mb->u.mb.mbxCommand == MBX_REG_LOGIN64) ||
19391 (mb->u.mb.mbxCommand == MBX_REG_VPI))
19392 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
19393 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
James Smart3e1f0712018-11-29 16:09:29 -080019394 act_mbx_ndlp = (struct lpfc_nodelist *)mb->ctx_ndlp;
James Smartd439d282010-09-29 11:18:45 -040019395 /* Put reference count for delayed processing */
19396 act_mbx_ndlp = lpfc_nlp_get(act_mbx_ndlp);
19397 /* Unregister the RPI when mailbox complete */
19398 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
19399 }
19400 }
James Smart63e801c2010-11-20 23:14:19 -050019401 /* Cleanup any mailbox completions which are not yet processed */
19402 do {
19403 restart_loop = 0;
19404 list_for_each_entry(mb, &phba->sli.mboxq_cmpl, list) {
19405 /*
19406 * If this mailox is already processed or it is
19407 * for another vport ignore it.
19408 */
19409 if ((mb->vport != vport) ||
19410 (mb->mbox_flag & LPFC_MBX_IMED_UNREG))
19411 continue;
19412
19413 if ((mb->u.mb.mbxCommand != MBX_REG_LOGIN64) &&
19414 (mb->u.mb.mbxCommand != MBX_REG_VPI))
19415 continue;
19416
19417 mb->mbox_cmpl = lpfc_sli_def_mbox_cmpl;
19418 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
James Smart3e1f0712018-11-29 16:09:29 -080019419 ndlp = (struct lpfc_nodelist *)mb->ctx_ndlp;
James Smart63e801c2010-11-20 23:14:19 -050019420 /* Unregister the RPI when mailbox complete */
19421 mb->mbox_flag |= LPFC_MBX_IMED_UNREG;
19422 restart_loop = 1;
19423 spin_unlock_irq(&phba->hbalock);
19424 spin_lock(shost->host_lock);
19425 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
19426 spin_unlock(shost->host_lock);
19427 spin_lock_irq(&phba->hbalock);
19428 break;
19429 }
19430 }
19431 } while (restart_loop);
19432
James Smartd439d282010-09-29 11:18:45 -040019433 spin_unlock_irq(&phba->hbalock);
19434
19435 /* Release the cleaned-up mailbox commands */
19436 while (!list_empty(&mbox_cmd_list)) {
19437 list_remove_head(&mbox_cmd_list, mb, LPFC_MBOXQ_t, list);
James Smart695a8142010-01-26 23:08:03 -050019438 if (mb->u.mb.mbxCommand == MBX_REG_LOGIN64) {
James Smart3e1f0712018-11-29 16:09:29 -080019439 mp = (struct lpfc_dmabuf *)(mb->ctx_buf);
James Smart695a8142010-01-26 23:08:03 -050019440 if (mp) {
19441 __lpfc_mbuf_free(phba, mp->virt, mp->phys);
19442 kfree(mp);
19443 }
James Smart3e1f0712018-11-29 16:09:29 -080019444 mb->ctx_buf = NULL;
19445 ndlp = (struct lpfc_nodelist *)mb->ctx_ndlp;
19446 mb->ctx_ndlp = NULL;
James Smart78730cf2010-04-06 15:06:30 -040019447 if (ndlp) {
Dan Carpenterec21b3b2010-08-08 00:15:17 +020019448 spin_lock(shost->host_lock);
James Smart589a52d2010-07-14 15:30:54 -040019449 ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
Dan Carpenterec21b3b2010-08-08 00:15:17 +020019450 spin_unlock(shost->host_lock);
James Smart78730cf2010-04-06 15:06:30 -040019451 lpfc_nlp_put(ndlp);
James Smart78730cf2010-04-06 15:06:30 -040019452 }
James Smart695a8142010-01-26 23:08:03 -050019453 }
James Smart695a8142010-01-26 23:08:03 -050019454 mempool_free(mb, phba->mbox_mem_pool);
19455 }
James Smartd439d282010-09-29 11:18:45 -040019456
19457 /* Release the ndlp with the cleaned-up active mailbox command */
19458 if (act_mbx_ndlp) {
19459 spin_lock(shost->host_lock);
19460 act_mbx_ndlp->nlp_flag &= ~NLP_IGNR_REG_CMPL;
19461 spin_unlock(shost->host_lock);
19462 lpfc_nlp_put(act_mbx_ndlp);
James Smart695a8142010-01-26 23:08:03 -050019463 }
James Smart695a8142010-01-26 23:08:03 -050019464}
19465
James Smart2a9bf3d2010-06-07 15:24:45 -040019466/**
19467 * lpfc_drain_txq - Drain the txq
19468 * @phba: Pointer to HBA context object.
19469 *
19470 * This function attempt to submit IOCBs on the txq
19471 * to the adapter. For SLI4 adapters, the txq contains
19472 * ELS IOCBs that have been deferred because the there
19473 * are no SGLs. This congestion can occur with large
19474 * vport counts during node discovery.
19475 **/
19476
19477uint32_t
19478lpfc_drain_txq(struct lpfc_hba *phba)
19479{
19480 LIST_HEAD(completions);
James Smart895427b2017-02-12 13:52:30 -080019481 struct lpfc_sli_ring *pring;
Daeseok Youn2e706372014-02-21 09:03:32 +090019482 struct lpfc_iocbq *piocbq = NULL;
James Smart2a9bf3d2010-06-07 15:24:45 -040019483 unsigned long iflags = 0;
19484 char *fail_msg = NULL;
19485 struct lpfc_sglq *sglq;
James Smart205e8242018-03-05 12:04:03 -080019486 union lpfc_wqe128 wqe;
James Smarta2fc4aef2014-09-03 12:57:55 -040019487 uint32_t txq_cnt = 0;
James Smartdc19e3b2018-05-24 21:08:57 -070019488 struct lpfc_queue *wq;
James Smart2a9bf3d2010-06-07 15:24:45 -040019489
James Smartdc19e3b2018-05-24 21:08:57 -070019490 if (phba->link_flag & LS_MDS_LOOPBACK) {
19491 /* MDS WQE are posted only to first WQ*/
James Smartc00f62e2019-08-14 16:57:11 -070019492 wq = phba->sli4_hba.hdwq[0].io_wq;
James Smartdc19e3b2018-05-24 21:08:57 -070019493 if (unlikely(!wq))
19494 return 0;
19495 pring = wq->pring;
19496 } else {
19497 wq = phba->sli4_hba.els_wq;
19498 if (unlikely(!wq))
19499 return 0;
19500 pring = lpfc_phba_elsring(phba);
19501 }
19502
19503 if (unlikely(!pring) || list_empty(&pring->txq))
Dick Kennedy1234a6d2017-09-29 17:34:29 -070019504 return 0;
James Smart895427b2017-02-12 13:52:30 -080019505
James Smart398d81c2013-05-31 17:04:19 -040019506 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart0e9bb8d2013-03-01 16:35:12 -050019507 list_for_each_entry(piocbq, &pring->txq, list) {
19508 txq_cnt++;
19509 }
19510
19511 if (txq_cnt > pring->txq_max)
19512 pring->txq_max = txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040019513
James Smart398d81c2013-05-31 17:04:19 -040019514 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040019515
James Smart0e9bb8d2013-03-01 16:35:12 -050019516 while (!list_empty(&pring->txq)) {
James Smart398d81c2013-05-31 17:04:19 -040019517 spin_lock_irqsave(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040019518
James Smart19ca7602010-11-20 23:11:55 -050019519 piocbq = lpfc_sli_ringtx_get(phba, pring);
James Smarta6298522012-06-12 13:54:11 -040019520 if (!piocbq) {
James Smart398d81c2013-05-31 17:04:19 -040019521 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smarta6298522012-06-12 13:54:11 -040019522 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
19523 "2823 txq empty and txq_cnt is %d\n ",
James Smart0e9bb8d2013-03-01 16:35:12 -050019524 txq_cnt);
James Smarta6298522012-06-12 13:54:11 -040019525 break;
19526 }
James Smart895427b2017-02-12 13:52:30 -080019527 sglq = __lpfc_sli_get_els_sglq(phba, piocbq);
James Smart2a9bf3d2010-06-07 15:24:45 -040019528 if (!sglq) {
James Smart19ca7602010-11-20 23:11:55 -050019529 __lpfc_sli_ringtx_put(phba, pring, piocbq);
James Smart398d81c2013-05-31 17:04:19 -040019530 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040019531 break;
James Smart2a9bf3d2010-06-07 15:24:45 -040019532 }
James Smart0e9bb8d2013-03-01 16:35:12 -050019533 txq_cnt--;
James Smart2a9bf3d2010-06-07 15:24:45 -040019534
19535 /* The xri and iocb resources secured,
19536 * attempt to issue request
19537 */
James Smart6d368e52011-05-24 11:44:12 -040019538 piocbq->sli4_lxritag = sglq->sli4_lxritag;
James Smart2a9bf3d2010-06-07 15:24:45 -040019539 piocbq->sli4_xritag = sglq->sli4_xritag;
19540 if (NO_XRI == lpfc_sli4_bpl2sgl(phba, piocbq, sglq))
19541 fail_msg = "to convert bpl to sgl";
James Smart205e8242018-03-05 12:04:03 -080019542 else if (lpfc_sli4_iocb2wqe(phba, piocbq, &wqe))
James Smart2a9bf3d2010-06-07 15:24:45 -040019543 fail_msg = "to convert iocb to wqe";
James Smartdc19e3b2018-05-24 21:08:57 -070019544 else if (lpfc_sli4_wq_put(wq, &wqe))
James Smart2a9bf3d2010-06-07 15:24:45 -040019545 fail_msg = " - Wq is full";
19546 else
19547 lpfc_sli_ringtxcmpl_put(phba, pring, piocbq);
19548
19549 if (fail_msg) {
19550 /* Failed means we can't issue and need to cancel */
19551 lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
19552 "2822 IOCB failed %s iotag 0x%x "
19553 "xri 0x%x\n",
19554 fail_msg,
19555 piocbq->iotag, piocbq->sli4_xritag);
19556 list_add_tail(&piocbq->list, &completions);
19557 }
James Smart398d81c2013-05-31 17:04:19 -040019558 spin_unlock_irqrestore(&pring->ring_lock, iflags);
James Smart2a9bf3d2010-06-07 15:24:45 -040019559 }
19560
James Smart2a9bf3d2010-06-07 15:24:45 -040019561 /* Cancel all the IOCBs that cannot be issued */
19562 lpfc_sli_cancel_iocbs(phba, &completions, IOSTAT_LOCAL_REJECT,
19563 IOERR_SLI_ABORTED);
19564
James Smart0e9bb8d2013-03-01 16:35:12 -050019565 return txq_cnt;
James Smart2a9bf3d2010-06-07 15:24:45 -040019566}
James Smart895427b2017-02-12 13:52:30 -080019567
19568/**
19569 * lpfc_wqe_bpl2sgl - Convert the bpl/bde to a sgl.
19570 * @phba: Pointer to HBA context object.
19571 * @pwqe: Pointer to command WQE.
19572 * @sglq: Pointer to the scatter gather queue object.
19573 *
19574 * This routine converts the bpl or bde that is in the WQE
19575 * to a sgl list for the sli4 hardware. The physical address
19576 * of the bpl/bde is converted back to a virtual address.
19577 * If the WQE contains a BPL then the list of BDE's is
19578 * converted to sli4_sge's. If the WQE contains a single
19579 * BDE then it is converted to a single sli_sge.
19580 * The WQE is still in cpu endianness so the contents of
19581 * the bpl can be used without byte swapping.
19582 *
19583 * Returns valid XRI = Success, NO_XRI = Failure.
19584 */
19585static uint16_t
19586lpfc_wqe_bpl2sgl(struct lpfc_hba *phba, struct lpfc_iocbq *pwqeq,
19587 struct lpfc_sglq *sglq)
19588{
19589 uint16_t xritag = NO_XRI;
19590 struct ulp_bde64 *bpl = NULL;
19591 struct ulp_bde64 bde;
19592 struct sli4_sge *sgl = NULL;
19593 struct lpfc_dmabuf *dmabuf;
James Smart205e8242018-03-05 12:04:03 -080019594 union lpfc_wqe128 *wqe;
James Smart895427b2017-02-12 13:52:30 -080019595 int numBdes = 0;
19596 int i = 0;
19597 uint32_t offset = 0; /* accumulated offset in the sg request list */
19598 int inbound = 0; /* number of sg reply entries inbound from firmware */
19599 uint32_t cmd;
19600
19601 if (!pwqeq || !sglq)
19602 return xritag;
19603
19604 sgl = (struct sli4_sge *)sglq->sgl;
19605 wqe = &pwqeq->wqe;
19606 pwqeq->iocb.ulpIoTag = pwqeq->iotag;
19607
19608 cmd = bf_get(wqe_cmnd, &wqe->generic.wqe_com);
19609 if (cmd == CMD_XMIT_BLS_RSP64_WQE)
19610 return sglq->sli4_xritag;
19611 numBdes = pwqeq->rsvd2;
19612 if (numBdes) {
19613 /* The addrHigh and addrLow fields within the WQE
19614 * have not been byteswapped yet so there is no
19615 * need to swap them back.
19616 */
19617 if (pwqeq->context3)
19618 dmabuf = (struct lpfc_dmabuf *)pwqeq->context3;
19619 else
19620 return xritag;
19621
19622 bpl = (struct ulp_bde64 *)dmabuf->virt;
19623 if (!bpl)
19624 return xritag;
19625
19626 for (i = 0; i < numBdes; i++) {
19627 /* Should already be byte swapped. */
19628 sgl->addr_hi = bpl->addrHigh;
19629 sgl->addr_lo = bpl->addrLow;
19630
19631 sgl->word2 = le32_to_cpu(sgl->word2);
19632 if ((i+1) == numBdes)
19633 bf_set(lpfc_sli4_sge_last, sgl, 1);
19634 else
19635 bf_set(lpfc_sli4_sge_last, sgl, 0);
19636 /* swap the size field back to the cpu so we
19637 * can assign it to the sgl.
19638 */
19639 bde.tus.w = le32_to_cpu(bpl->tus.w);
19640 sgl->sge_len = cpu_to_le32(bde.tus.f.bdeSize);
19641 /* The offsets in the sgl need to be accumulated
19642 * separately for the request and reply lists.
19643 * The request is always first, the reply follows.
19644 */
19645 switch (cmd) {
19646 case CMD_GEN_REQUEST64_WQE:
19647 /* add up the reply sg entries */
19648 if (bpl->tus.f.bdeFlags == BUFF_TYPE_BDE_64I)
19649 inbound++;
19650 /* first inbound? reset the offset */
19651 if (inbound == 1)
19652 offset = 0;
19653 bf_set(lpfc_sli4_sge_offset, sgl, offset);
19654 bf_set(lpfc_sli4_sge_type, sgl,
19655 LPFC_SGE_TYPE_DATA);
19656 offset += bde.tus.f.bdeSize;
19657 break;
19658 case CMD_FCP_TRSP64_WQE:
19659 bf_set(lpfc_sli4_sge_offset, sgl, 0);
19660 bf_set(lpfc_sli4_sge_type, sgl,
19661 LPFC_SGE_TYPE_DATA);
19662 break;
19663 case CMD_FCP_TSEND64_WQE:
19664 case CMD_FCP_TRECEIVE64_WQE:
19665 bf_set(lpfc_sli4_sge_type, sgl,
19666 bpl->tus.f.bdeFlags);
19667 if (i < 3)
19668 offset = 0;
19669 else
19670 offset += bde.tus.f.bdeSize;
19671 bf_set(lpfc_sli4_sge_offset, sgl, offset);
19672 break;
19673 }
19674 sgl->word2 = cpu_to_le32(sgl->word2);
19675 bpl++;
19676 sgl++;
19677 }
19678 } else if (wqe->gen_req.bde.tus.f.bdeFlags == BUFF_TYPE_BDE_64) {
19679 /* The addrHigh and addrLow fields of the BDE have not
19680 * been byteswapped yet so they need to be swapped
19681 * before putting them in the sgl.
19682 */
19683 sgl->addr_hi = cpu_to_le32(wqe->gen_req.bde.addrHigh);
19684 sgl->addr_lo = cpu_to_le32(wqe->gen_req.bde.addrLow);
19685 sgl->word2 = le32_to_cpu(sgl->word2);
19686 bf_set(lpfc_sli4_sge_last, sgl, 1);
19687 sgl->word2 = cpu_to_le32(sgl->word2);
19688 sgl->sge_len = cpu_to_le32(wqe->gen_req.bde.tus.f.bdeSize);
19689 }
19690 return sglq->sli4_xritag;
19691}
19692
19693/**
19694 * lpfc_sli4_issue_wqe - Issue an SLI4 Work Queue Entry (WQE)
19695 * @phba: Pointer to HBA context object.
19696 * @ring_number: Base sli ring number
19697 * @pwqe: Pointer to command WQE.
19698 **/
19699int
James Smart1fbf9742019-01-28 11:14:26 -080019700lpfc_sli4_issue_wqe(struct lpfc_hba *phba, struct lpfc_sli4_hdw_queue *qp,
James Smart895427b2017-02-12 13:52:30 -080019701 struct lpfc_iocbq *pwqe)
19702{
James Smart205e8242018-03-05 12:04:03 -080019703 union lpfc_wqe128 *wqe = &pwqe->wqe;
James Smartf358dd02017-02-12 13:52:34 -080019704 struct lpfc_nvmet_rcv_ctx *ctxp;
James Smart895427b2017-02-12 13:52:30 -080019705 struct lpfc_queue *wq;
19706 struct lpfc_sglq *sglq;
19707 struct lpfc_sli_ring *pring;
19708 unsigned long iflags;
Dick Kennedycd22d602017-08-23 16:55:35 -070019709 uint32_t ret = 0;
James Smart895427b2017-02-12 13:52:30 -080019710
19711 /* NVME_LS and NVME_LS ABTS requests. */
19712 if (pwqe->iocb_flag & LPFC_IO_NVME_LS) {
19713 pring = phba->sli4_hba.nvmels_wq->pring;
James Smart6a828b02019-01-28 11:14:31 -080019714 lpfc_qp_spin_lock_irqsave(&pring->ring_lock, iflags,
19715 qp, wq_access);
James Smart895427b2017-02-12 13:52:30 -080019716 sglq = __lpfc_sli_get_els_sglq(phba, pwqe);
19717 if (!sglq) {
19718 spin_unlock_irqrestore(&pring->ring_lock, iflags);
19719 return WQE_BUSY;
19720 }
19721 pwqe->sli4_lxritag = sglq->sli4_lxritag;
19722 pwqe->sli4_xritag = sglq->sli4_xritag;
19723 if (lpfc_wqe_bpl2sgl(phba, pwqe, sglq) == NO_XRI) {
19724 spin_unlock_irqrestore(&pring->ring_lock, iflags);
19725 return WQE_ERROR;
19726 }
19727 bf_set(wqe_xri_tag, &pwqe->wqe.xmit_bls_rsp.wqe_com,
19728 pwqe->sli4_xritag);
Dick Kennedycd22d602017-08-23 16:55:35 -070019729 ret = lpfc_sli4_wq_put(phba->sli4_hba.nvmels_wq, wqe);
19730 if (ret) {
James Smart895427b2017-02-12 13:52:30 -080019731 spin_unlock_irqrestore(&pring->ring_lock, iflags);
Dick Kennedycd22d602017-08-23 16:55:35 -070019732 return ret;
James Smart895427b2017-02-12 13:52:30 -080019733 }
Dick Kennedycd22d602017-08-23 16:55:35 -070019734
James Smart895427b2017-02-12 13:52:30 -080019735 lpfc_sli_ringtxcmpl_put(phba, pring, pwqe);
19736 spin_unlock_irqrestore(&pring->ring_lock, iflags);
19737 return 0;
19738 }
19739
19740 /* NVME_FCREQ and NVME_ABTS requests */
19741 if (pwqe->iocb_flag & LPFC_IO_NVME) {
19742 /* Get the IO distribution (hba_wqidx) for WQ assignment. */
James Smartc00f62e2019-08-14 16:57:11 -070019743 wq = qp->io_wq;
James Smart1fbf9742019-01-28 11:14:26 -080019744 pring = wq->pring;
James Smart895427b2017-02-12 13:52:30 -080019745
James Smartc00f62e2019-08-14 16:57:11 -070019746 bf_set(wqe_cqid, &wqe->generic.wqe_com, qp->io_cq_map);
James Smart895427b2017-02-12 13:52:30 -080019747
James Smart6a828b02019-01-28 11:14:31 -080019748 lpfc_qp_spin_lock_irqsave(&pring->ring_lock, iflags,
19749 qp, wq_access);
Dick Kennedycd22d602017-08-23 16:55:35 -070019750 ret = lpfc_sli4_wq_put(wq, wqe);
19751 if (ret) {
James Smart895427b2017-02-12 13:52:30 -080019752 spin_unlock_irqrestore(&pring->ring_lock, iflags);
Dick Kennedycd22d602017-08-23 16:55:35 -070019753 return ret;
James Smart895427b2017-02-12 13:52:30 -080019754 }
19755 lpfc_sli_ringtxcmpl_put(phba, pring, pwqe);
19756 spin_unlock_irqrestore(&pring->ring_lock, iflags);
19757 return 0;
19758 }
19759
James Smartf358dd02017-02-12 13:52:34 -080019760 /* NVMET requests */
19761 if (pwqe->iocb_flag & LPFC_IO_NVMET) {
19762 /* Get the IO distribution (hba_wqidx) for WQ assignment. */
James Smartc00f62e2019-08-14 16:57:11 -070019763 wq = qp->io_wq;
James Smart1fbf9742019-01-28 11:14:26 -080019764 pring = wq->pring;
James Smartf358dd02017-02-12 13:52:34 -080019765
James Smartf358dd02017-02-12 13:52:34 -080019766 ctxp = pwqe->context2;
James Smart6c621a22017-05-15 15:20:45 -070019767 sglq = ctxp->ctxbuf->sglq;
James Smartf358dd02017-02-12 13:52:34 -080019768 if (pwqe->sli4_xritag == NO_XRI) {
19769 pwqe->sli4_lxritag = sglq->sli4_lxritag;
19770 pwqe->sli4_xritag = sglq->sli4_xritag;
19771 }
19772 bf_set(wqe_xri_tag, &pwqe->wqe.xmit_bls_rsp.wqe_com,
19773 pwqe->sli4_xritag);
James Smartc00f62e2019-08-14 16:57:11 -070019774 bf_set(wqe_cqid, &wqe->generic.wqe_com, qp->io_cq_map);
James Smart1fbf9742019-01-28 11:14:26 -080019775
James Smart6a828b02019-01-28 11:14:31 -080019776 lpfc_qp_spin_lock_irqsave(&pring->ring_lock, iflags,
19777 qp, wq_access);
Dick Kennedycd22d602017-08-23 16:55:35 -070019778 ret = lpfc_sli4_wq_put(wq, wqe);
19779 if (ret) {
James Smartf358dd02017-02-12 13:52:34 -080019780 spin_unlock_irqrestore(&pring->ring_lock, iflags);
Dick Kennedycd22d602017-08-23 16:55:35 -070019781 return ret;
James Smartf358dd02017-02-12 13:52:34 -080019782 }
19783 lpfc_sli_ringtxcmpl_put(phba, pring, pwqe);
19784 spin_unlock_irqrestore(&pring->ring_lock, iflags);
19785 return 0;
19786 }
James Smart895427b2017-02-12 13:52:30 -080019787 return WQE_ERROR;
19788}
James Smartc4908502019-01-28 11:14:28 -080019789
19790#ifdef LPFC_MXP_STAT
19791/**
19792 * lpfc_snapshot_mxp - Snapshot pbl, pvt and busy count
19793 * @phba: pointer to lpfc hba data structure.
19794 * @hwqid: belong to which HWQ.
19795 *
19796 * The purpose of this routine is to take a snapshot of pbl, pvt and busy count
19797 * 15 seconds after a test case is running.
19798 *
19799 * The user should call lpfc_debugfs_multixripools_write before running a test
19800 * case to clear stat_snapshot_taken. Then the user starts a test case. During
19801 * test case is running, stat_snapshot_taken is incremented by 1 every time when
19802 * this routine is called from heartbeat timer. When stat_snapshot_taken is
19803 * equal to LPFC_MXP_SNAPSHOT_TAKEN, a snapshot is taken.
19804 **/
19805void lpfc_snapshot_mxp(struct lpfc_hba *phba, u32 hwqid)
19806{
19807 struct lpfc_sli4_hdw_queue *qp;
19808 struct lpfc_multixri_pool *multixri_pool;
19809 struct lpfc_pvt_pool *pvt_pool;
19810 struct lpfc_pbl_pool *pbl_pool;
19811 u32 txcmplq_cnt;
19812
19813 qp = &phba->sli4_hba.hdwq[hwqid];
19814 multixri_pool = qp->p_multixri_pool;
19815 if (!multixri_pool)
19816 return;
19817
19818 if (multixri_pool->stat_snapshot_taken == LPFC_MXP_SNAPSHOT_TAKEN) {
19819 pvt_pool = &qp->p_multixri_pool->pvt_pool;
19820 pbl_pool = &qp->p_multixri_pool->pbl_pool;
James Smartc00f62e2019-08-14 16:57:11 -070019821 txcmplq_cnt = qp->io_wq->pring->txcmplq_cnt;
James Smartc4908502019-01-28 11:14:28 -080019822
19823 multixri_pool->stat_pbl_count = pbl_pool->count;
19824 multixri_pool->stat_pvt_count = pvt_pool->count;
19825 multixri_pool->stat_busy_count = txcmplq_cnt;
19826 }
19827
19828 multixri_pool->stat_snapshot_taken++;
19829}
19830#endif
19831
19832/**
19833 * lpfc_adjust_pvt_pool_count - Adjust private pool count
19834 * @phba: pointer to lpfc hba data structure.
19835 * @hwqid: belong to which HWQ.
19836 *
19837 * This routine moves some XRIs from private to public pool when private pool
19838 * is not busy.
19839 **/
19840void lpfc_adjust_pvt_pool_count(struct lpfc_hba *phba, u32 hwqid)
19841{
19842 struct lpfc_multixri_pool *multixri_pool;
19843 u32 io_req_count;
19844 u32 prev_io_req_count;
19845
19846 multixri_pool = phba->sli4_hba.hdwq[hwqid].p_multixri_pool;
19847 if (!multixri_pool)
19848 return;
19849 io_req_count = multixri_pool->io_req_count;
19850 prev_io_req_count = multixri_pool->prev_io_req_count;
19851
19852 if (prev_io_req_count != io_req_count) {
19853 /* Private pool is busy */
19854 multixri_pool->prev_io_req_count = io_req_count;
19855 } else {
19856 /* Private pool is not busy.
19857 * Move XRIs from private to public pool.
19858 */
19859 lpfc_move_xri_pvt_to_pbl(phba, hwqid);
19860 }
19861}
19862
19863/**
19864 * lpfc_adjust_high_watermark - Adjust high watermark
19865 * @phba: pointer to lpfc hba data structure.
19866 * @hwqid: belong to which HWQ.
19867 *
19868 * This routine sets high watermark as number of outstanding XRIs,
19869 * but make sure the new value is between xri_limit/2 and xri_limit.
19870 **/
19871void lpfc_adjust_high_watermark(struct lpfc_hba *phba, u32 hwqid)
19872{
19873 u32 new_watermark;
19874 u32 watermark_max;
19875 u32 watermark_min;
19876 u32 xri_limit;
19877 u32 txcmplq_cnt;
19878 u32 abts_io_bufs;
19879 struct lpfc_multixri_pool *multixri_pool;
19880 struct lpfc_sli4_hdw_queue *qp;
19881
19882 qp = &phba->sli4_hba.hdwq[hwqid];
19883 multixri_pool = qp->p_multixri_pool;
19884 if (!multixri_pool)
19885 return;
19886 xri_limit = multixri_pool->xri_limit;
19887
19888 watermark_max = xri_limit;
19889 watermark_min = xri_limit / 2;
19890
James Smartc00f62e2019-08-14 16:57:11 -070019891 txcmplq_cnt = qp->io_wq->pring->txcmplq_cnt;
James Smartc4908502019-01-28 11:14:28 -080019892 abts_io_bufs = qp->abts_scsi_io_bufs;
James Smartc00f62e2019-08-14 16:57:11 -070019893 abts_io_bufs += qp->abts_nvme_io_bufs;
James Smartc4908502019-01-28 11:14:28 -080019894
19895 new_watermark = txcmplq_cnt + abts_io_bufs;
19896 new_watermark = min(watermark_max, new_watermark);
19897 new_watermark = max(watermark_min, new_watermark);
19898 multixri_pool->pvt_pool.high_watermark = new_watermark;
19899
19900#ifdef LPFC_MXP_STAT
19901 multixri_pool->stat_max_hwm = max(multixri_pool->stat_max_hwm,
19902 new_watermark);
19903#endif
19904}
19905
19906/**
19907 * lpfc_move_xri_pvt_to_pbl - Move some XRIs from private to public pool
19908 * @phba: pointer to lpfc hba data structure.
19909 * @hwqid: belong to which HWQ.
19910 *
19911 * This routine is called from hearbeat timer when pvt_pool is idle.
19912 * All free XRIs are moved from private to public pool on hwqid with 2 steps.
19913 * The first step moves (all - low_watermark) amount of XRIs.
19914 * The second step moves the rest of XRIs.
19915 **/
19916void lpfc_move_xri_pvt_to_pbl(struct lpfc_hba *phba, u32 hwqid)
19917{
19918 struct lpfc_pbl_pool *pbl_pool;
19919 struct lpfc_pvt_pool *pvt_pool;
James Smart6a828b02019-01-28 11:14:31 -080019920 struct lpfc_sli4_hdw_queue *qp;
James Smartc4908502019-01-28 11:14:28 -080019921 struct lpfc_io_buf *lpfc_ncmd;
19922 struct lpfc_io_buf *lpfc_ncmd_next;
19923 unsigned long iflag;
19924 struct list_head tmp_list;
19925 u32 tmp_count;
19926
James Smart6a828b02019-01-28 11:14:31 -080019927 qp = &phba->sli4_hba.hdwq[hwqid];
19928 pbl_pool = &qp->p_multixri_pool->pbl_pool;
19929 pvt_pool = &qp->p_multixri_pool->pvt_pool;
James Smartc4908502019-01-28 11:14:28 -080019930 tmp_count = 0;
19931
James Smart6a828b02019-01-28 11:14:31 -080019932 lpfc_qp_spin_lock_irqsave(&pbl_pool->lock, iflag, qp, mv_to_pub_pool);
19933 lpfc_qp_spin_lock(&pvt_pool->lock, qp, mv_from_pvt_pool);
James Smartc4908502019-01-28 11:14:28 -080019934
19935 if (pvt_pool->count > pvt_pool->low_watermark) {
19936 /* Step 1: move (all - low_watermark) from pvt_pool
19937 * to pbl_pool
19938 */
19939
19940 /* Move low watermark of bufs from pvt_pool to tmp_list */
19941 INIT_LIST_HEAD(&tmp_list);
19942 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
19943 &pvt_pool->list, list) {
19944 list_move_tail(&lpfc_ncmd->list, &tmp_list);
19945 tmp_count++;
19946 if (tmp_count >= pvt_pool->low_watermark)
19947 break;
19948 }
19949
19950 /* Move all bufs from pvt_pool to pbl_pool */
19951 list_splice_init(&pvt_pool->list, &pbl_pool->list);
19952
19953 /* Move all bufs from tmp_list to pvt_pool */
19954 list_splice(&tmp_list, &pvt_pool->list);
19955
19956 pbl_pool->count += (pvt_pool->count - tmp_count);
19957 pvt_pool->count = tmp_count;
19958 } else {
19959 /* Step 2: move the rest from pvt_pool to pbl_pool */
19960 list_splice_init(&pvt_pool->list, &pbl_pool->list);
19961 pbl_pool->count += pvt_pool->count;
19962 pvt_pool->count = 0;
19963 }
19964
19965 spin_unlock(&pvt_pool->lock);
19966 spin_unlock_irqrestore(&pbl_pool->lock, iflag);
19967}
19968
19969/**
19970 * _lpfc_move_xri_pbl_to_pvt - Move some XRIs from public to private pool
19971 * @phba: pointer to lpfc hba data structure
19972 * @pbl_pool: specified public free XRI pool
19973 * @pvt_pool: specified private free XRI pool
19974 * @count: number of XRIs to move
19975 *
19976 * This routine tries to move some free common bufs from the specified pbl_pool
19977 * to the specified pvt_pool. It might move less than count XRIs if there's not
19978 * enough in public pool.
19979 *
19980 * Return:
19981 * true - if XRIs are successfully moved from the specified pbl_pool to the
19982 * specified pvt_pool
19983 * false - if the specified pbl_pool is empty or locked by someone else
19984 **/
19985static bool
James Smart6a828b02019-01-28 11:14:31 -080019986_lpfc_move_xri_pbl_to_pvt(struct lpfc_hba *phba, struct lpfc_sli4_hdw_queue *qp,
19987 struct lpfc_pbl_pool *pbl_pool,
James Smartc4908502019-01-28 11:14:28 -080019988 struct lpfc_pvt_pool *pvt_pool, u32 count)
19989{
19990 struct lpfc_io_buf *lpfc_ncmd;
19991 struct lpfc_io_buf *lpfc_ncmd_next;
19992 unsigned long iflag;
19993 int ret;
19994
19995 ret = spin_trylock_irqsave(&pbl_pool->lock, iflag);
19996 if (ret) {
19997 if (pbl_pool->count) {
19998 /* Move a batch of XRIs from public to private pool */
James Smart6a828b02019-01-28 11:14:31 -080019999 lpfc_qp_spin_lock(&pvt_pool->lock, qp, mv_to_pvt_pool);
James Smartc4908502019-01-28 11:14:28 -080020000 list_for_each_entry_safe(lpfc_ncmd,
20001 lpfc_ncmd_next,
20002 &pbl_pool->list,
20003 list) {
20004 list_move_tail(&lpfc_ncmd->list,
20005 &pvt_pool->list);
20006 pvt_pool->count++;
20007 pbl_pool->count--;
20008 count--;
20009 if (count == 0)
20010 break;
20011 }
20012
20013 spin_unlock(&pvt_pool->lock);
20014 spin_unlock_irqrestore(&pbl_pool->lock, iflag);
20015 return true;
20016 }
20017 spin_unlock_irqrestore(&pbl_pool->lock, iflag);
20018 }
20019
20020 return false;
20021}
20022
20023/**
20024 * lpfc_move_xri_pbl_to_pvt - Move some XRIs from public to private pool
20025 * @phba: pointer to lpfc hba data structure.
20026 * @hwqid: belong to which HWQ.
20027 * @count: number of XRIs to move
20028 *
20029 * This routine tries to find some free common bufs in one of public pools with
20030 * Round Robin method. The search always starts from local hwqid, then the next
20031 * HWQ which was found last time (rrb_next_hwqid). Once a public pool is found,
20032 * a batch of free common bufs are moved to private pool on hwqid.
20033 * It might move less than count XRIs if there's not enough in public pool.
20034 **/
20035void lpfc_move_xri_pbl_to_pvt(struct lpfc_hba *phba, u32 hwqid, u32 count)
20036{
20037 struct lpfc_multixri_pool *multixri_pool;
20038 struct lpfc_multixri_pool *next_multixri_pool;
20039 struct lpfc_pvt_pool *pvt_pool;
20040 struct lpfc_pbl_pool *pbl_pool;
James Smart6a828b02019-01-28 11:14:31 -080020041 struct lpfc_sli4_hdw_queue *qp;
James Smartc4908502019-01-28 11:14:28 -080020042 u32 next_hwqid;
20043 u32 hwq_count;
20044 int ret;
20045
James Smart6a828b02019-01-28 11:14:31 -080020046 qp = &phba->sli4_hba.hdwq[hwqid];
20047 multixri_pool = qp->p_multixri_pool;
James Smartc4908502019-01-28 11:14:28 -080020048 pvt_pool = &multixri_pool->pvt_pool;
20049 pbl_pool = &multixri_pool->pbl_pool;
20050
20051 /* Check if local pbl_pool is available */
James Smart6a828b02019-01-28 11:14:31 -080020052 ret = _lpfc_move_xri_pbl_to_pvt(phba, qp, pbl_pool, pvt_pool, count);
James Smartc4908502019-01-28 11:14:28 -080020053 if (ret) {
20054#ifdef LPFC_MXP_STAT
20055 multixri_pool->local_pbl_hit_count++;
20056#endif
20057 return;
20058 }
20059
20060 hwq_count = phba->cfg_hdw_queue;
20061
20062 /* Get the next hwqid which was found last time */
20063 next_hwqid = multixri_pool->rrb_next_hwqid;
20064
20065 do {
20066 /* Go to next hwq */
20067 next_hwqid = (next_hwqid + 1) % hwq_count;
20068
20069 next_multixri_pool =
20070 phba->sli4_hba.hdwq[next_hwqid].p_multixri_pool;
20071 pbl_pool = &next_multixri_pool->pbl_pool;
20072
20073 /* Check if the public free xri pool is available */
20074 ret = _lpfc_move_xri_pbl_to_pvt(
James Smart6a828b02019-01-28 11:14:31 -080020075 phba, qp, pbl_pool, pvt_pool, count);
James Smartc4908502019-01-28 11:14:28 -080020076
20077 /* Exit while-loop if success or all hwqid are checked */
20078 } while (!ret && next_hwqid != multixri_pool->rrb_next_hwqid);
20079
20080 /* Starting point for the next time */
20081 multixri_pool->rrb_next_hwqid = next_hwqid;
20082
20083 if (!ret) {
20084 /* stats: all public pools are empty*/
20085 multixri_pool->pbl_empty_count++;
20086 }
20087
20088#ifdef LPFC_MXP_STAT
20089 if (ret) {
20090 if (next_hwqid == hwqid)
20091 multixri_pool->local_pbl_hit_count++;
20092 else
20093 multixri_pool->other_pbl_hit_count++;
20094 }
20095#endif
20096}
20097
20098/**
20099 * lpfc_keep_pvt_pool_above_lowwm - Keep pvt_pool above low watermark
20100 * @phba: pointer to lpfc hba data structure.
20101 * @qp: belong to which HWQ.
20102 *
20103 * This routine get a batch of XRIs from pbl_pool if pvt_pool is less than
20104 * low watermark.
20105 **/
20106void lpfc_keep_pvt_pool_above_lowwm(struct lpfc_hba *phba, u32 hwqid)
20107{
20108 struct lpfc_multixri_pool *multixri_pool;
20109 struct lpfc_pvt_pool *pvt_pool;
20110
20111 multixri_pool = phba->sli4_hba.hdwq[hwqid].p_multixri_pool;
20112 pvt_pool = &multixri_pool->pvt_pool;
20113
20114 if (pvt_pool->count < pvt_pool->low_watermark)
20115 lpfc_move_xri_pbl_to_pvt(phba, hwqid, XRI_BATCH);
20116}
20117
20118/**
20119 * lpfc_release_io_buf - Return one IO buf back to free pool
20120 * @phba: pointer to lpfc hba data structure.
20121 * @lpfc_ncmd: IO buf to be returned.
20122 * @qp: belong to which HWQ.
20123 *
20124 * This routine returns one IO buf back to free pool. If this is an urgent IO,
20125 * the IO buf is returned to expedite pool. If cfg_xri_rebalancing==1,
20126 * the IO buf is returned to pbl_pool or pvt_pool based on watermark and
20127 * xri_limit. If cfg_xri_rebalancing==0, the IO buf is returned to
20128 * lpfc_io_buf_list_put.
20129 **/
20130void lpfc_release_io_buf(struct lpfc_hba *phba, struct lpfc_io_buf *lpfc_ncmd,
20131 struct lpfc_sli4_hdw_queue *qp)
20132{
20133 unsigned long iflag;
20134 struct lpfc_pbl_pool *pbl_pool;
20135 struct lpfc_pvt_pool *pvt_pool;
20136 struct lpfc_epd_pool *epd_pool;
20137 u32 txcmplq_cnt;
20138 u32 xri_owned;
20139 u32 xri_limit;
20140 u32 abts_io_bufs;
20141
20142 /* MUST zero fields if buffer is reused by another protocol */
20143 lpfc_ncmd->nvmeCmd = NULL;
20144 lpfc_ncmd->cur_iocbq.wqe_cmpl = NULL;
20145 lpfc_ncmd->cur_iocbq.iocb_cmpl = NULL;
20146
James Smart35a635a2019-09-21 20:59:02 -070020147 if (phba->cfg_xpsgl && !phba->nvmet_support &&
20148 !list_empty(&lpfc_ncmd->dma_sgl_xtra_list))
20149 lpfc_put_sgl_per_hdwq(phba, lpfc_ncmd);
20150
20151 if (!list_empty(&lpfc_ncmd->dma_cmd_rsp_list))
20152 lpfc_put_cmd_rsp_buf_per_hdwq(phba, lpfc_ncmd);
20153
James Smartc4908502019-01-28 11:14:28 -080020154 if (phba->cfg_xri_rebalancing) {
20155 if (lpfc_ncmd->expedite) {
20156 /* Return to expedite pool */
20157 epd_pool = &phba->epd_pool;
20158 spin_lock_irqsave(&epd_pool->lock, iflag);
20159 list_add_tail(&lpfc_ncmd->list, &epd_pool->list);
20160 epd_pool->count++;
20161 spin_unlock_irqrestore(&epd_pool->lock, iflag);
20162 return;
20163 }
20164
20165 /* Avoid invalid access if an IO sneaks in and is being rejected
20166 * just _after_ xri pools are destroyed in lpfc_offline.
20167 * Nothing much can be done at this point.
20168 */
20169 if (!qp->p_multixri_pool)
20170 return;
20171
20172 pbl_pool = &qp->p_multixri_pool->pbl_pool;
20173 pvt_pool = &qp->p_multixri_pool->pvt_pool;
20174
James Smartc00f62e2019-08-14 16:57:11 -070020175 txcmplq_cnt = qp->io_wq->pring->txcmplq_cnt;
James Smartc4908502019-01-28 11:14:28 -080020176 abts_io_bufs = qp->abts_scsi_io_bufs;
James Smartc00f62e2019-08-14 16:57:11 -070020177 abts_io_bufs += qp->abts_nvme_io_bufs;
James Smartc4908502019-01-28 11:14:28 -080020178
20179 xri_owned = pvt_pool->count + txcmplq_cnt + abts_io_bufs;
20180 xri_limit = qp->p_multixri_pool->xri_limit;
20181
20182#ifdef LPFC_MXP_STAT
20183 if (xri_owned <= xri_limit)
20184 qp->p_multixri_pool->below_limit_count++;
20185 else
20186 qp->p_multixri_pool->above_limit_count++;
20187#endif
20188
20189 /* XRI goes to either public or private free xri pool
20190 * based on watermark and xri_limit
20191 */
20192 if ((pvt_pool->count < pvt_pool->low_watermark) ||
20193 (xri_owned < xri_limit &&
20194 pvt_pool->count < pvt_pool->high_watermark)) {
James Smart6a828b02019-01-28 11:14:31 -080020195 lpfc_qp_spin_lock_irqsave(&pvt_pool->lock, iflag,
20196 qp, free_pvt_pool);
James Smartc4908502019-01-28 11:14:28 -080020197 list_add_tail(&lpfc_ncmd->list,
20198 &pvt_pool->list);
20199 pvt_pool->count++;
20200 spin_unlock_irqrestore(&pvt_pool->lock, iflag);
20201 } else {
James Smart6a828b02019-01-28 11:14:31 -080020202 lpfc_qp_spin_lock_irqsave(&pbl_pool->lock, iflag,
20203 qp, free_pub_pool);
James Smartc4908502019-01-28 11:14:28 -080020204 list_add_tail(&lpfc_ncmd->list,
20205 &pbl_pool->list);
20206 pbl_pool->count++;
20207 spin_unlock_irqrestore(&pbl_pool->lock, iflag);
20208 }
20209 } else {
James Smart6a828b02019-01-28 11:14:31 -080020210 lpfc_qp_spin_lock_irqsave(&qp->io_buf_list_put_lock, iflag,
20211 qp, free_xri);
James Smartc4908502019-01-28 11:14:28 -080020212 list_add_tail(&lpfc_ncmd->list,
20213 &qp->lpfc_io_buf_list_put);
20214 qp->put_io_bufs++;
20215 spin_unlock_irqrestore(&qp->io_buf_list_put_lock,
20216 iflag);
20217 }
20218}
20219
20220/**
20221 * lpfc_get_io_buf_from_private_pool - Get one free IO buf from private pool
20222 * @phba: pointer to lpfc hba data structure.
20223 * @pvt_pool: pointer to private pool data structure.
20224 * @ndlp: pointer to lpfc nodelist data structure.
20225 *
20226 * This routine tries to get one free IO buf from private pool.
20227 *
20228 * Return:
20229 * pointer to one free IO buf - if private pool is not empty
20230 * NULL - if private pool is empty
20231 **/
20232static struct lpfc_io_buf *
20233lpfc_get_io_buf_from_private_pool(struct lpfc_hba *phba,
James Smart6a828b02019-01-28 11:14:31 -080020234 struct lpfc_sli4_hdw_queue *qp,
James Smartc4908502019-01-28 11:14:28 -080020235 struct lpfc_pvt_pool *pvt_pool,
20236 struct lpfc_nodelist *ndlp)
20237{
20238 struct lpfc_io_buf *lpfc_ncmd;
20239 struct lpfc_io_buf *lpfc_ncmd_next;
20240 unsigned long iflag;
20241
James Smart6a828b02019-01-28 11:14:31 -080020242 lpfc_qp_spin_lock_irqsave(&pvt_pool->lock, iflag, qp, alloc_pvt_pool);
James Smartc4908502019-01-28 11:14:28 -080020243 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
20244 &pvt_pool->list, list) {
20245 if (lpfc_test_rrq_active(
20246 phba, ndlp, lpfc_ncmd->cur_iocbq.sli4_lxritag))
20247 continue;
20248 list_del(&lpfc_ncmd->list);
20249 pvt_pool->count--;
20250 spin_unlock_irqrestore(&pvt_pool->lock, iflag);
20251 return lpfc_ncmd;
20252 }
20253 spin_unlock_irqrestore(&pvt_pool->lock, iflag);
20254
20255 return NULL;
20256}
20257
20258/**
20259 * lpfc_get_io_buf_from_expedite_pool - Get one free IO buf from expedite pool
20260 * @phba: pointer to lpfc hba data structure.
20261 *
20262 * This routine tries to get one free IO buf from expedite pool.
20263 *
20264 * Return:
20265 * pointer to one free IO buf - if expedite pool is not empty
20266 * NULL - if expedite pool is empty
20267 **/
20268static struct lpfc_io_buf *
20269lpfc_get_io_buf_from_expedite_pool(struct lpfc_hba *phba)
20270{
20271 struct lpfc_io_buf *lpfc_ncmd;
20272 struct lpfc_io_buf *lpfc_ncmd_next;
20273 unsigned long iflag;
20274 struct lpfc_epd_pool *epd_pool;
20275
20276 epd_pool = &phba->epd_pool;
20277 lpfc_ncmd = NULL;
20278
20279 spin_lock_irqsave(&epd_pool->lock, iflag);
20280 if (epd_pool->count > 0) {
20281 list_for_each_entry_safe(lpfc_ncmd, lpfc_ncmd_next,
20282 &epd_pool->list, list) {
20283 list_del(&lpfc_ncmd->list);
20284 epd_pool->count--;
20285 break;
20286 }
20287 }
20288 spin_unlock_irqrestore(&epd_pool->lock, iflag);
20289
20290 return lpfc_ncmd;
20291}
20292
20293/**
20294 * lpfc_get_io_buf_from_multixri_pools - Get one free IO bufs
20295 * @phba: pointer to lpfc hba data structure.
20296 * @ndlp: pointer to lpfc nodelist data structure.
20297 * @hwqid: belong to which HWQ
20298 * @expedite: 1 means this request is urgent.
20299 *
20300 * This routine will do the following actions and then return a pointer to
20301 * one free IO buf.
20302 *
20303 * 1. If private free xri count is empty, move some XRIs from public to
20304 * private pool.
20305 * 2. Get one XRI from private free xri pool.
20306 * 3. If we fail to get one from pvt_pool and this is an expedite request,
20307 * get one free xri from expedite pool.
20308 *
20309 * Note: ndlp is only used on SCSI side for RRQ testing.
20310 * The caller should pass NULL for ndlp on NVME side.
20311 *
20312 * Return:
20313 * pointer to one free IO buf - if private pool is not empty
20314 * NULL - if private pool is empty
20315 **/
20316static struct lpfc_io_buf *
20317lpfc_get_io_buf_from_multixri_pools(struct lpfc_hba *phba,
20318 struct lpfc_nodelist *ndlp,
20319 int hwqid, int expedite)
20320{
20321 struct lpfc_sli4_hdw_queue *qp;
20322 struct lpfc_multixri_pool *multixri_pool;
20323 struct lpfc_pvt_pool *pvt_pool;
20324 struct lpfc_io_buf *lpfc_ncmd;
20325
20326 qp = &phba->sli4_hba.hdwq[hwqid];
20327 lpfc_ncmd = NULL;
20328 multixri_pool = qp->p_multixri_pool;
20329 pvt_pool = &multixri_pool->pvt_pool;
20330 multixri_pool->io_req_count++;
20331
20332 /* If pvt_pool is empty, move some XRIs from public to private pool */
20333 if (pvt_pool->count == 0)
20334 lpfc_move_xri_pbl_to_pvt(phba, hwqid, XRI_BATCH);
20335
20336 /* Get one XRI from private free xri pool */
James Smart6a828b02019-01-28 11:14:31 -080020337 lpfc_ncmd = lpfc_get_io_buf_from_private_pool(phba, qp, pvt_pool, ndlp);
James Smartc4908502019-01-28 11:14:28 -080020338
20339 if (lpfc_ncmd) {
20340 lpfc_ncmd->hdwq = qp;
20341 lpfc_ncmd->hdwq_no = hwqid;
20342 } else if (expedite) {
20343 /* If we fail to get one from pvt_pool and this is an expedite
20344 * request, get one free xri from expedite pool.
20345 */
20346 lpfc_ncmd = lpfc_get_io_buf_from_expedite_pool(phba);
20347 }
20348
20349 return lpfc_ncmd;
20350}
20351
20352static inline struct lpfc_io_buf *
20353lpfc_io_buf(struct lpfc_hba *phba, struct lpfc_nodelist *ndlp, int idx)
20354{
20355 struct lpfc_sli4_hdw_queue *qp;
20356 struct lpfc_io_buf *lpfc_cmd, *lpfc_cmd_next;
20357
20358 qp = &phba->sli4_hba.hdwq[idx];
20359 list_for_each_entry_safe(lpfc_cmd, lpfc_cmd_next,
20360 &qp->lpfc_io_buf_list_get, list) {
20361 if (lpfc_test_rrq_active(phba, ndlp,
20362 lpfc_cmd->cur_iocbq.sli4_lxritag))
20363 continue;
20364
20365 if (lpfc_cmd->flags & LPFC_SBUF_NOT_POSTED)
20366 continue;
20367
20368 list_del_init(&lpfc_cmd->list);
20369 qp->get_io_bufs--;
20370 lpfc_cmd->hdwq = qp;
20371 lpfc_cmd->hdwq_no = idx;
20372 return lpfc_cmd;
20373 }
20374 return NULL;
20375}
20376
20377/**
20378 * lpfc_get_io_buf - Get one IO buffer from free pool
20379 * @phba: The HBA for which this call is being executed.
20380 * @ndlp: pointer to lpfc nodelist data structure.
20381 * @hwqid: belong to which HWQ
20382 * @expedite: 1 means this request is urgent.
20383 *
20384 * This routine gets one IO buffer from free pool. If cfg_xri_rebalancing==1,
20385 * removes a IO buffer from multiXRI pools. If cfg_xri_rebalancing==0, removes
20386 * a IO buffer from head of @hdwq io_buf_list and returns to caller.
20387 *
20388 * Note: ndlp is only used on SCSI side for RRQ testing.
20389 * The caller should pass NULL for ndlp on NVME side.
20390 *
20391 * Return codes:
20392 * NULL - Error
20393 * Pointer to lpfc_io_buf - Success
20394 **/
20395struct lpfc_io_buf *lpfc_get_io_buf(struct lpfc_hba *phba,
20396 struct lpfc_nodelist *ndlp,
20397 u32 hwqid, int expedite)
20398{
20399 struct lpfc_sli4_hdw_queue *qp;
20400 unsigned long iflag;
20401 struct lpfc_io_buf *lpfc_cmd;
20402
20403 qp = &phba->sli4_hba.hdwq[hwqid];
20404 lpfc_cmd = NULL;
20405
20406 if (phba->cfg_xri_rebalancing)
20407 lpfc_cmd = lpfc_get_io_buf_from_multixri_pools(
20408 phba, ndlp, hwqid, expedite);
20409 else {
James Smart6a828b02019-01-28 11:14:31 -080020410 lpfc_qp_spin_lock_irqsave(&qp->io_buf_list_get_lock, iflag,
20411 qp, alloc_xri_get);
James Smartc4908502019-01-28 11:14:28 -080020412 if (qp->get_io_bufs > LPFC_NVME_EXPEDITE_XRICNT || expedite)
20413 lpfc_cmd = lpfc_io_buf(phba, ndlp, hwqid);
20414 if (!lpfc_cmd) {
James Smart6a828b02019-01-28 11:14:31 -080020415 lpfc_qp_spin_lock(&qp->io_buf_list_put_lock,
20416 qp, alloc_xri_put);
James Smartc4908502019-01-28 11:14:28 -080020417 list_splice(&qp->lpfc_io_buf_list_put,
20418 &qp->lpfc_io_buf_list_get);
20419 qp->get_io_bufs += qp->put_io_bufs;
20420 INIT_LIST_HEAD(&qp->lpfc_io_buf_list_put);
20421 qp->put_io_bufs = 0;
20422 spin_unlock(&qp->io_buf_list_put_lock);
20423 if (qp->get_io_bufs > LPFC_NVME_EXPEDITE_XRICNT ||
20424 expedite)
20425 lpfc_cmd = lpfc_io_buf(phba, ndlp, hwqid);
20426 }
20427 spin_unlock_irqrestore(&qp->io_buf_list_get_lock, iflag);
20428 }
20429
20430 return lpfc_cmd;
20431}
James Smartd79c9e92019-08-14 16:57:09 -070020432
20433/**
20434 * lpfc_get_sgl_per_hdwq - Get one SGL chunk from hdwq's pool
20435 * @phba: The HBA for which this call is being executed.
20436 * @lpfc_buf: IO buf structure to append the SGL chunk
20437 *
20438 * This routine gets one SGL chunk buffer from hdwq's SGL chunk pool,
20439 * and will allocate an SGL chunk if the pool is empty.
20440 *
20441 * Return codes:
20442 * NULL - Error
20443 * Pointer to sli4_hybrid_sgl - Success
20444 **/
20445struct sli4_hybrid_sgl *
20446lpfc_get_sgl_per_hdwq(struct lpfc_hba *phba, struct lpfc_io_buf *lpfc_buf)
20447{
20448 struct sli4_hybrid_sgl *list_entry = NULL;
20449 struct sli4_hybrid_sgl *tmp = NULL;
20450 struct sli4_hybrid_sgl *allocated_sgl = NULL;
20451 struct lpfc_sli4_hdw_queue *hdwq = lpfc_buf->hdwq;
20452 struct list_head *buf_list = &hdwq->sgl_list;
James Smarta4c21ac2019-09-21 20:59:01 -070020453 unsigned long iflags;
James Smartd79c9e92019-08-14 16:57:09 -070020454
James Smarta4c21ac2019-09-21 20:59:01 -070020455 spin_lock_irqsave(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020456
20457 if (likely(!list_empty(buf_list))) {
20458 /* break off 1 chunk from the sgl_list */
20459 list_for_each_entry_safe(list_entry, tmp,
20460 buf_list, list_node) {
20461 list_move_tail(&list_entry->list_node,
20462 &lpfc_buf->dma_sgl_xtra_list);
20463 break;
20464 }
20465 } else {
20466 /* allocate more */
James Smarta4c21ac2019-09-21 20:59:01 -070020467 spin_unlock_irqrestore(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020468 tmp = kmalloc_node(sizeof(*tmp), GFP_ATOMIC,
20469 cpu_to_node(smp_processor_id()));
20470 if (!tmp) {
20471 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
20472 "8353 error kmalloc memory for HDWQ "
20473 "%d %s\n",
20474 lpfc_buf->hdwq_no, __func__);
20475 return NULL;
20476 }
20477
20478 tmp->dma_sgl = dma_pool_alloc(phba->lpfc_sg_dma_buf_pool,
20479 GFP_ATOMIC, &tmp->dma_phys_sgl);
20480 if (!tmp->dma_sgl) {
20481 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
20482 "8354 error pool_alloc memory for HDWQ "
20483 "%d %s\n",
20484 lpfc_buf->hdwq_no, __func__);
20485 kfree(tmp);
20486 return NULL;
20487 }
20488
James Smarta4c21ac2019-09-21 20:59:01 -070020489 spin_lock_irqsave(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020490 list_add_tail(&tmp->list_node, &lpfc_buf->dma_sgl_xtra_list);
20491 }
20492
20493 allocated_sgl = list_last_entry(&lpfc_buf->dma_sgl_xtra_list,
20494 struct sli4_hybrid_sgl,
20495 list_node);
20496
James Smarta4c21ac2019-09-21 20:59:01 -070020497 spin_unlock_irqrestore(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020498
20499 return allocated_sgl;
20500}
20501
20502/**
20503 * lpfc_put_sgl_per_hdwq - Put one SGL chunk into hdwq pool
20504 * @phba: The HBA for which this call is being executed.
20505 * @lpfc_buf: IO buf structure with the SGL chunk
20506 *
20507 * This routine puts one SGL chunk buffer into hdwq's SGL chunk pool.
20508 *
20509 * Return codes:
20510 * 0 - Success
20511 * -EINVAL - Error
20512 **/
20513int
20514lpfc_put_sgl_per_hdwq(struct lpfc_hba *phba, struct lpfc_io_buf *lpfc_buf)
20515{
20516 int rc = 0;
20517 struct sli4_hybrid_sgl *list_entry = NULL;
20518 struct sli4_hybrid_sgl *tmp = NULL;
20519 struct lpfc_sli4_hdw_queue *hdwq = lpfc_buf->hdwq;
20520 struct list_head *buf_list = &hdwq->sgl_list;
James Smarta4c21ac2019-09-21 20:59:01 -070020521 unsigned long iflags;
James Smartd79c9e92019-08-14 16:57:09 -070020522
James Smarta4c21ac2019-09-21 20:59:01 -070020523 spin_lock_irqsave(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020524
20525 if (likely(!list_empty(&lpfc_buf->dma_sgl_xtra_list))) {
20526 list_for_each_entry_safe(list_entry, tmp,
20527 &lpfc_buf->dma_sgl_xtra_list,
20528 list_node) {
20529 list_move_tail(&list_entry->list_node,
20530 buf_list);
20531 }
20532 } else {
20533 rc = -EINVAL;
20534 }
20535
James Smarta4c21ac2019-09-21 20:59:01 -070020536 spin_unlock_irqrestore(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020537 return rc;
20538}
20539
20540/**
20541 * lpfc_free_sgl_per_hdwq - Free all SGL chunks of hdwq pool
20542 * @phba: phba object
20543 * @hdwq: hdwq to cleanup sgl buff resources on
20544 *
20545 * This routine frees all SGL chunks of hdwq SGL chunk pool.
20546 *
20547 * Return codes:
20548 * None
20549 **/
20550void
20551lpfc_free_sgl_per_hdwq(struct lpfc_hba *phba,
20552 struct lpfc_sli4_hdw_queue *hdwq)
20553{
20554 struct list_head *buf_list = &hdwq->sgl_list;
20555 struct sli4_hybrid_sgl *list_entry = NULL;
20556 struct sli4_hybrid_sgl *tmp = NULL;
James Smarta4c21ac2019-09-21 20:59:01 -070020557 unsigned long iflags;
James Smartd79c9e92019-08-14 16:57:09 -070020558
James Smarta4c21ac2019-09-21 20:59:01 -070020559 spin_lock_irqsave(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020560
20561 /* Free sgl pool */
20562 list_for_each_entry_safe(list_entry, tmp,
20563 buf_list, list_node) {
20564 dma_pool_free(phba->lpfc_sg_dma_buf_pool,
20565 list_entry->dma_sgl,
20566 list_entry->dma_phys_sgl);
20567 list_del(&list_entry->list_node);
20568 kfree(list_entry);
20569 }
20570
James Smarta4c21ac2019-09-21 20:59:01 -070020571 spin_unlock_irqrestore(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020572}
20573
20574/**
20575 * lpfc_get_cmd_rsp_buf_per_hdwq - Get one CMD/RSP buffer from hdwq
20576 * @phba: The HBA for which this call is being executed.
20577 * @lpfc_buf: IO buf structure to attach the CMD/RSP buffer
20578 *
20579 * This routine gets one CMD/RSP buffer from hdwq's CMD/RSP pool,
20580 * and will allocate an CMD/RSP buffer if the pool is empty.
20581 *
20582 * Return codes:
20583 * NULL - Error
20584 * Pointer to fcp_cmd_rsp_buf - Success
20585 **/
20586struct fcp_cmd_rsp_buf *
20587lpfc_get_cmd_rsp_buf_per_hdwq(struct lpfc_hba *phba,
20588 struct lpfc_io_buf *lpfc_buf)
20589{
20590 struct fcp_cmd_rsp_buf *list_entry = NULL;
20591 struct fcp_cmd_rsp_buf *tmp = NULL;
20592 struct fcp_cmd_rsp_buf *allocated_buf = NULL;
20593 struct lpfc_sli4_hdw_queue *hdwq = lpfc_buf->hdwq;
20594 struct list_head *buf_list = &hdwq->cmd_rsp_buf_list;
James Smarta4c21ac2019-09-21 20:59:01 -070020595 unsigned long iflags;
James Smartd79c9e92019-08-14 16:57:09 -070020596
James Smarta4c21ac2019-09-21 20:59:01 -070020597 spin_lock_irqsave(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020598
20599 if (likely(!list_empty(buf_list))) {
20600 /* break off 1 chunk from the list */
20601 list_for_each_entry_safe(list_entry, tmp,
20602 buf_list,
20603 list_node) {
20604 list_move_tail(&list_entry->list_node,
20605 &lpfc_buf->dma_cmd_rsp_list);
20606 break;
20607 }
20608 } else {
20609 /* allocate more */
James Smarta4c21ac2019-09-21 20:59:01 -070020610 spin_unlock_irqrestore(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020611 tmp = kmalloc_node(sizeof(*tmp), GFP_ATOMIC,
20612 cpu_to_node(smp_processor_id()));
20613 if (!tmp) {
20614 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
20615 "8355 error kmalloc memory for HDWQ "
20616 "%d %s\n",
20617 lpfc_buf->hdwq_no, __func__);
20618 return NULL;
20619 }
20620
20621 tmp->fcp_cmnd = dma_pool_alloc(phba->lpfc_cmd_rsp_buf_pool,
20622 GFP_ATOMIC,
20623 &tmp->fcp_cmd_rsp_dma_handle);
20624
20625 if (!tmp->fcp_cmnd) {
20626 lpfc_printf_log(phba, KERN_INFO, LOG_SLI,
20627 "8356 error pool_alloc memory for HDWQ "
20628 "%d %s\n",
20629 lpfc_buf->hdwq_no, __func__);
20630 kfree(tmp);
20631 return NULL;
20632 }
20633
20634 tmp->fcp_rsp = (struct fcp_rsp *)((uint8_t *)tmp->fcp_cmnd +
20635 sizeof(struct fcp_cmnd));
20636
James Smarta4c21ac2019-09-21 20:59:01 -070020637 spin_lock_irqsave(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020638 list_add_tail(&tmp->list_node, &lpfc_buf->dma_cmd_rsp_list);
20639 }
20640
20641 allocated_buf = list_last_entry(&lpfc_buf->dma_cmd_rsp_list,
20642 struct fcp_cmd_rsp_buf,
20643 list_node);
20644
James Smarta4c21ac2019-09-21 20:59:01 -070020645 spin_unlock_irqrestore(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020646
20647 return allocated_buf;
20648}
20649
20650/**
20651 * lpfc_put_cmd_rsp_buf_per_hdwq - Put one CMD/RSP buffer into hdwq pool
20652 * @phba: The HBA for which this call is being executed.
20653 * @lpfc_buf: IO buf structure with the CMD/RSP buf
20654 *
20655 * This routine puts one CMD/RSP buffer into executing CPU's CMD/RSP pool.
20656 *
20657 * Return codes:
20658 * 0 - Success
20659 * -EINVAL - Error
20660 **/
20661int
20662lpfc_put_cmd_rsp_buf_per_hdwq(struct lpfc_hba *phba,
20663 struct lpfc_io_buf *lpfc_buf)
20664{
20665 int rc = 0;
20666 struct fcp_cmd_rsp_buf *list_entry = NULL;
20667 struct fcp_cmd_rsp_buf *tmp = NULL;
20668 struct lpfc_sli4_hdw_queue *hdwq = lpfc_buf->hdwq;
20669 struct list_head *buf_list = &hdwq->cmd_rsp_buf_list;
James Smarta4c21ac2019-09-21 20:59:01 -070020670 unsigned long iflags;
James Smartd79c9e92019-08-14 16:57:09 -070020671
James Smarta4c21ac2019-09-21 20:59:01 -070020672 spin_lock_irqsave(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020673
20674 if (likely(!list_empty(&lpfc_buf->dma_cmd_rsp_list))) {
20675 list_for_each_entry_safe(list_entry, tmp,
20676 &lpfc_buf->dma_cmd_rsp_list,
20677 list_node) {
20678 list_move_tail(&list_entry->list_node,
20679 buf_list);
20680 }
20681 } else {
20682 rc = -EINVAL;
20683 }
20684
James Smarta4c21ac2019-09-21 20:59:01 -070020685 spin_unlock_irqrestore(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020686 return rc;
20687}
20688
20689/**
20690 * lpfc_free_cmd_rsp_buf_per_hdwq - Free all CMD/RSP chunks of hdwq pool
20691 * @phba: phba object
20692 * @hdwq: hdwq to cleanup cmd rsp buff resources on
20693 *
20694 * This routine frees all CMD/RSP buffers of hdwq's CMD/RSP buf pool.
20695 *
20696 * Return codes:
20697 * None
20698 **/
20699void
20700lpfc_free_cmd_rsp_buf_per_hdwq(struct lpfc_hba *phba,
20701 struct lpfc_sli4_hdw_queue *hdwq)
20702{
20703 struct list_head *buf_list = &hdwq->cmd_rsp_buf_list;
20704 struct fcp_cmd_rsp_buf *list_entry = NULL;
20705 struct fcp_cmd_rsp_buf *tmp = NULL;
James Smarta4c21ac2019-09-21 20:59:01 -070020706 unsigned long iflags;
James Smartd79c9e92019-08-14 16:57:09 -070020707
James Smarta4c21ac2019-09-21 20:59:01 -070020708 spin_lock_irqsave(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020709
20710 /* Free cmd_rsp buf pool */
20711 list_for_each_entry_safe(list_entry, tmp,
20712 buf_list,
20713 list_node) {
20714 dma_pool_free(phba->lpfc_cmd_rsp_buf_pool,
20715 list_entry->fcp_cmnd,
20716 list_entry->fcp_cmd_rsp_dma_handle);
20717 list_del(&list_entry->list_node);
20718 kfree(list_entry);
20719 }
20720
James Smarta4c21ac2019-09-21 20:59:01 -070020721 spin_unlock_irqrestore(&hdwq->hdwq_lock, iflags);
James Smartd79c9e92019-08-14 16:57:09 -070020722}