blob: e64457f53da86da662c9b7ee4b3ccfa844b04c70 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * QLogic FCoE Offload Driver
4 * Copyright (c) 2016-2018 Cavium Inc.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00005 */
6#include <linux/init.h>
7#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/pci.h>
10#include <linux/device.h>
11#include <linux/highmem.h>
12#include <linux/crc32.h>
13#include <linux/interrupt.h>
14#include <linux/list.h>
15#include <linux/kthread.h>
Olivier Deprez157378f2022-04-04 15:47:50 +020016#include <linux/phylink.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017#include <scsi/libfc.h>
18#include <scsi/scsi_host.h>
19#include <scsi/fc_frame.h>
20#include <linux/if_ether.h>
21#include <linux/if_vlan.h>
22#include <linux/cpu.h>
23#include "qedf.h"
24#include "qedf_dbg.h"
25#include <uapi/linux/pci_regs.h>
26
27const struct qed_fcoe_ops *qed_ops;
28
29static int qedf_probe(struct pci_dev *pdev, const struct pci_device_id *id);
30static void qedf_remove(struct pci_dev *pdev);
David Brazdil0f672f62019-12-10 10:32:29 +000031static void qedf_shutdown(struct pci_dev *pdev);
Olivier Deprez157378f2022-04-04 15:47:50 +020032static void qedf_schedule_recovery_handler(void *dev);
33static void qedf_recovery_handler(struct work_struct *work);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000034
35/*
36 * Driver module parameters.
37 */
38static unsigned int qedf_dev_loss_tmo = 60;
39module_param_named(dev_loss_tmo, qedf_dev_loss_tmo, int, S_IRUGO);
40MODULE_PARM_DESC(dev_loss_tmo, " dev_loss_tmo setting for attached "
41 "remote ports (default 60)");
42
43uint qedf_debug = QEDF_LOG_INFO;
Olivier Deprez157378f2022-04-04 15:47:50 +020044module_param_named(debug, qedf_debug, uint, S_IRUGO|S_IWUSR);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000045MODULE_PARM_DESC(debug, " Debug mask. Pass '1' to enable default debugging"
46 " mask");
47
48static uint qedf_fipvlan_retries = 60;
49module_param_named(fipvlan_retries, qedf_fipvlan_retries, int, S_IRUGO);
50MODULE_PARM_DESC(fipvlan_retries, " Number of FIP VLAN requests to attempt "
51 "before giving up (default 60)");
52
53static uint qedf_fallback_vlan = QEDF_FALLBACK_VLAN;
54module_param_named(fallback_vlan, qedf_fallback_vlan, int, S_IRUGO);
55MODULE_PARM_DESC(fallback_vlan, " VLAN ID to try if fip vlan request fails "
56 "(default 1002).");
57
58static int qedf_default_prio = -1;
59module_param_named(default_prio, qedf_default_prio, int, S_IRUGO);
60MODULE_PARM_DESC(default_prio, " Override 802.1q priority for FIP and FCoE"
61 " traffic (value between 0 and 7, default 3).");
62
63uint qedf_dump_frames;
64module_param_named(dump_frames, qedf_dump_frames, int, S_IRUGO | S_IWUSR);
65MODULE_PARM_DESC(dump_frames, " Print the skb data of FIP and FCoE frames "
66 "(default off)");
67
68static uint qedf_queue_depth;
69module_param_named(queue_depth, qedf_queue_depth, int, S_IRUGO);
70MODULE_PARM_DESC(queue_depth, " Sets the queue depth for all LUNs discovered "
71 "by the qedf driver. Default is 0 (use OS default).");
72
73uint qedf_io_tracing;
74module_param_named(io_tracing, qedf_io_tracing, int, S_IRUGO | S_IWUSR);
75MODULE_PARM_DESC(io_tracing, " Enable logging of SCSI requests/completions "
76 "into trace buffer. (default off).");
77
78static uint qedf_max_lun = MAX_FIBRE_LUNS;
79module_param_named(max_lun, qedf_max_lun, int, S_IRUGO);
80MODULE_PARM_DESC(max_lun, " Sets the maximum luns per target that the driver "
81 "supports. (default 0xffffffff)");
82
83uint qedf_link_down_tmo;
84module_param_named(link_down_tmo, qedf_link_down_tmo, int, S_IRUGO);
85MODULE_PARM_DESC(link_down_tmo, " Delays informing the fcoe transport that the "
86 "link is down by N seconds.");
87
88bool qedf_retry_delay;
89module_param_named(retry_delay, qedf_retry_delay, bool, S_IRUGO | S_IWUSR);
90MODULE_PARM_DESC(retry_delay, " Enable/disable handling of FCP_RSP IU retry "
91 "delay handling (default off).");
92
93static bool qedf_dcbx_no_wait;
94module_param_named(dcbx_no_wait, qedf_dcbx_no_wait, bool, S_IRUGO | S_IWUSR);
95MODULE_PARM_DESC(dcbx_no_wait, " Do not wait for DCBX convergence to start "
96 "sending FIP VLAN requests on link up (Default: off).");
97
98static uint qedf_dp_module;
99module_param_named(dp_module, qedf_dp_module, uint, S_IRUGO);
100MODULE_PARM_DESC(dp_module, " bit flags control for verbose printk passed "
101 "qed module during probe.");
102
103static uint qedf_dp_level = QED_LEVEL_NOTICE;
104module_param_named(dp_level, qedf_dp_level, uint, S_IRUGO);
105MODULE_PARM_DESC(dp_level, " printk verbosity control passed to qed module "
106 "during probe (0-3: 0 more verbose).");
107
Olivier Deprez157378f2022-04-04 15:47:50 +0200108static bool qedf_enable_recovery = true;
109module_param_named(enable_recovery, qedf_enable_recovery,
110 bool, S_IRUGO | S_IWUSR);
111MODULE_PARM_DESC(enable_recovery, "Enable/disable recovery on driver/firmware "
112 "interface level errors 0 = Disabled, 1 = Enabled (Default: 1).");
113
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000114struct workqueue_struct *qedf_io_wq;
115
116static struct fcoe_percpu_s qedf_global;
117static DEFINE_SPINLOCK(qedf_global_lock);
118
119static struct kmem_cache *qedf_io_work_cache;
120
121void qedf_set_vlan_id(struct qedf_ctx *qedf, int vlan_id)
122{
David Brazdil0f672f62019-12-10 10:32:29 +0000123 int vlan_id_tmp = 0;
124
125 vlan_id_tmp = vlan_id | (qedf->prio << VLAN_PRIO_SHIFT);
126 qedf->vlan_id = vlan_id_tmp;
127 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
128 "Setting vlan_id=0x%04x prio=%d.\n",
129 vlan_id_tmp, qedf->prio);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000130}
131
132/* Returns true if we have a valid vlan, false otherwise */
133static bool qedf_initiate_fipvlan_req(struct qedf_ctx *qedf)
134{
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000135
136 while (qedf->fipvlan_retries--) {
David Brazdil0f672f62019-12-10 10:32:29 +0000137 /* This is to catch if link goes down during fipvlan retries */
138 if (atomic_read(&qedf->link_state) == QEDF_LINK_DOWN) {
139 QEDF_ERR(&qedf->dbg_ctx, "Link not up.\n");
140 return false;
141 }
142
143 if (test_bit(QEDF_UNLOADING, &qedf->flags)) {
144 QEDF_ERR(&qedf->dbg_ctx, "Driver unloading.\n");
145 return false;
146 }
147
148 if (qedf->vlan_id > 0) {
149 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
150 "vlan = 0x%x already set, calling ctlr_link_up.\n",
151 qedf->vlan_id);
152 if (atomic_read(&qedf->link_state) == QEDF_LINK_UP)
153 fcoe_ctlr_link_up(&qedf->ctlr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000154 return true;
David Brazdil0f672f62019-12-10 10:32:29 +0000155 }
156
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000157 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
158 "Retry %d.\n", qedf->fipvlan_retries);
159 init_completion(&qedf->fipvlan_compl);
160 qedf_fcoe_send_vlan_req(qedf);
David Brazdil0f672f62019-12-10 10:32:29 +0000161 wait_for_completion_timeout(&qedf->fipvlan_compl, 1 * HZ);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000162 }
163
164 return false;
165}
166
167static void qedf_handle_link_update(struct work_struct *work)
168{
169 struct qedf_ctx *qedf =
170 container_of(work, struct qedf_ctx, link_update.work);
171 int rc;
172
David Brazdil0f672f62019-12-10 10:32:29 +0000173 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC, "Entered. link_state=%d.\n",
174 atomic_read(&qedf->link_state));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000175
176 if (atomic_read(&qedf->link_state) == QEDF_LINK_UP) {
177 rc = qedf_initiate_fipvlan_req(qedf);
178 if (rc)
179 return;
David Brazdil0f672f62019-12-10 10:32:29 +0000180
181 if (atomic_read(&qedf->link_state) != QEDF_LINK_UP) {
182 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
183 "Link is down, resetting vlan_id.\n");
184 qedf->vlan_id = 0;
185 return;
186 }
187
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000188 /*
189 * If we get here then we never received a repsonse to our
190 * fip vlan request so set the vlan_id to the default and
191 * tell FCoE that the link is up
192 */
193 QEDF_WARN(&(qedf->dbg_ctx), "Did not receive FIP VLAN "
194 "response, falling back to default VLAN %d.\n",
195 qedf_fallback_vlan);
196 qedf_set_vlan_id(qedf, qedf_fallback_vlan);
197
198 /*
199 * Zero out data_src_addr so we'll update it with the new
200 * lport port_id
201 */
202 eth_zero_addr(qedf->data_src_addr);
203 fcoe_ctlr_link_up(&qedf->ctlr);
204 } else if (atomic_read(&qedf->link_state) == QEDF_LINK_DOWN) {
205 /*
206 * If we hit here and link_down_tmo_valid is still 1 it means
207 * that link_down_tmo timed out so set it to 0 to make sure any
208 * other readers have accurate state.
209 */
210 atomic_set(&qedf->link_down_tmo_valid, 0);
211 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
212 "Calling fcoe_ctlr_link_down().\n");
213 fcoe_ctlr_link_down(&qedf->ctlr);
David Brazdil0f672f62019-12-10 10:32:29 +0000214 if (qedf_wait_for_upload(qedf) == false)
215 QEDF_ERR(&qedf->dbg_ctx,
216 "Could not upload all sessions.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000217 /* Reset the number of FIP VLAN retries */
218 qedf->fipvlan_retries = qedf_fipvlan_retries;
219 }
220}
221
222#define QEDF_FCOE_MAC_METHOD_GRANGED_MAC 1
223#define QEDF_FCOE_MAC_METHOD_FCF_MAP 2
224#define QEDF_FCOE_MAC_METHOD_FCOE_SET_MAC 3
225static void qedf_set_data_src_addr(struct qedf_ctx *qedf, struct fc_frame *fp)
226{
227 u8 *granted_mac;
228 struct fc_frame_header *fh = fc_frame_header_get(fp);
229 u8 fc_map[3];
230 int method = 0;
231
232 /* Get granted MAC address from FIP FLOGI payload */
233 granted_mac = fr_cb(fp)->granted_mac;
234
235 /*
236 * We set the source MAC for FCoE traffic based on the Granted MAC
237 * address from the switch.
238 *
239 * If granted_mac is non-zero, we used that.
240 * If the granted_mac is zeroed out, created the FCoE MAC based on
241 * the sel_fcf->fc_map and the d_id fo the FLOGI frame.
242 * If sel_fcf->fc_map is 0 then we use the default FCF-MAC plus the
243 * d_id of the FLOGI frame.
244 */
245 if (!is_zero_ether_addr(granted_mac)) {
246 ether_addr_copy(qedf->data_src_addr, granted_mac);
247 method = QEDF_FCOE_MAC_METHOD_GRANGED_MAC;
248 } else if (qedf->ctlr.sel_fcf->fc_map != 0) {
249 hton24(fc_map, qedf->ctlr.sel_fcf->fc_map);
250 qedf->data_src_addr[0] = fc_map[0];
251 qedf->data_src_addr[1] = fc_map[1];
252 qedf->data_src_addr[2] = fc_map[2];
253 qedf->data_src_addr[3] = fh->fh_d_id[0];
254 qedf->data_src_addr[4] = fh->fh_d_id[1];
255 qedf->data_src_addr[5] = fh->fh_d_id[2];
256 method = QEDF_FCOE_MAC_METHOD_FCF_MAP;
257 } else {
258 fc_fcoe_set_mac(qedf->data_src_addr, fh->fh_d_id);
259 method = QEDF_FCOE_MAC_METHOD_FCOE_SET_MAC;
260 }
261
262 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
263 "QEDF data_src_mac=%pM method=%d.\n", qedf->data_src_addr, method);
264}
265
266static void qedf_flogi_resp(struct fc_seq *seq, struct fc_frame *fp,
267 void *arg)
268{
269 struct fc_exch *exch = fc_seq_exch(seq);
270 struct fc_lport *lport = exch->lp;
271 struct qedf_ctx *qedf = lport_priv(lport);
272
273 if (!qedf) {
274 QEDF_ERR(NULL, "qedf is NULL.\n");
275 return;
276 }
277
278 /*
279 * If ERR_PTR is set then don't try to stat anything as it will cause
280 * a crash when we access fp.
281 */
282 if (IS_ERR(fp)) {
283 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_ELS,
284 "fp has IS_ERR() set.\n");
285 goto skip_stat;
286 }
287
288 /* Log stats for FLOGI reject */
289 if (fc_frame_payload_op(fp) == ELS_LS_RJT)
290 qedf->flogi_failed++;
291 else if (fc_frame_payload_op(fp) == ELS_LS_ACC) {
292 /* Set the source MAC we will use for FCoE traffic */
293 qedf_set_data_src_addr(qedf, fp);
Olivier Deprez157378f2022-04-04 15:47:50 +0200294 qedf->flogi_pending = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000295 }
296
297 /* Complete flogi_compl so we can proceed to sending ADISCs */
298 complete(&qedf->flogi_compl);
299
300skip_stat:
301 /* Report response to libfc */
302 fc_lport_flogi_resp(seq, fp, lport);
303}
304
305static struct fc_seq *qedf_elsct_send(struct fc_lport *lport, u32 did,
306 struct fc_frame *fp, unsigned int op,
307 void (*resp)(struct fc_seq *,
308 struct fc_frame *,
309 void *),
310 void *arg, u32 timeout)
311{
312 struct qedf_ctx *qedf = lport_priv(lport);
313
314 /*
315 * Intercept FLOGI for statistic purposes. Note we use the resp
316 * callback to tell if this is really a flogi.
317 */
318 if (resp == fc_lport_flogi_resp) {
319 qedf->flogi_cnt++;
Olivier Deprez157378f2022-04-04 15:47:50 +0200320 if (qedf->flogi_pending >= QEDF_FLOGI_RETRY_CNT) {
321 schedule_delayed_work(&qedf->stag_work, 2);
322 return NULL;
323 }
324 qedf->flogi_pending++;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000325 return fc_elsct_send(lport, did, fp, op, qedf_flogi_resp,
326 arg, timeout);
327 }
328
329 return fc_elsct_send(lport, did, fp, op, resp, arg, timeout);
330}
331
332int qedf_send_flogi(struct qedf_ctx *qedf)
333{
334 struct fc_lport *lport;
335 struct fc_frame *fp;
336
337 lport = qedf->lport;
338
David Brazdil0f672f62019-12-10 10:32:29 +0000339 if (!lport->tt.elsct_send) {
340 QEDF_ERR(&qedf->dbg_ctx, "tt.elsct_send not set.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000341 return -EINVAL;
David Brazdil0f672f62019-12-10 10:32:29 +0000342 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000343
344 fp = fc_frame_alloc(lport, sizeof(struct fc_els_flogi));
345 if (!fp) {
346 QEDF_ERR(&(qedf->dbg_ctx), "fc_frame_alloc failed.\n");
347 return -ENOMEM;
348 }
349
350 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_ELS,
351 "Sending FLOGI to reestablish session with switch.\n");
352 lport->tt.elsct_send(lport, FC_FID_FLOGI, fp,
353 ELS_FLOGI, qedf_flogi_resp, lport, lport->r_a_tov);
354
355 init_completion(&qedf->flogi_compl);
356
357 return 0;
358}
359
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000360/*
361 * This function is called if link_down_tmo is in use. If we get a link up and
362 * link_down_tmo has not expired then use just FLOGI/ADISC to recover our
363 * sessions with targets. Otherwise, just call fcoe_ctlr_link_up().
364 */
365static void qedf_link_recovery(struct work_struct *work)
366{
367 struct qedf_ctx *qedf =
368 container_of(work, struct qedf_ctx, link_recovery.work);
David Brazdil0f672f62019-12-10 10:32:29 +0000369 struct fc_lport *lport = qedf->lport;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000370 struct fc_rport_priv *rdata;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000371 bool rc;
372 int retries = 30;
373 int rval, i;
374 struct list_head rdata_login_list;
375
376 INIT_LIST_HEAD(&rdata_login_list);
377
378 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
379 "Link down tmo did not expire.\n");
380
381 /*
382 * Essentially reset the fcoe_ctlr here without affecting the state
383 * of the libfc structs.
384 */
385 qedf->ctlr.state = FIP_ST_LINK_WAIT;
386 fcoe_ctlr_link_down(&qedf->ctlr);
387
388 /*
389 * Bring the link up before we send the fipvlan request so libfcoe
390 * can select a new fcf in parallel
391 */
392 fcoe_ctlr_link_up(&qedf->ctlr);
393
394 /* Since the link when down and up to verify which vlan we're on */
395 qedf->fipvlan_retries = qedf_fipvlan_retries;
396 rc = qedf_initiate_fipvlan_req(qedf);
397 /* If getting the VLAN fails, set the VLAN to the fallback one */
398 if (!rc)
399 qedf_set_vlan_id(qedf, qedf_fallback_vlan);
400
401 /*
402 * We need to wait for an FCF to be selected due to the
403 * fcoe_ctlr_link_up other the FLOGI will be rejected.
404 */
405 while (retries > 0) {
406 if (qedf->ctlr.sel_fcf) {
407 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
408 "FCF reselected, proceeding with FLOGI.\n");
409 break;
410 }
411 msleep(500);
412 retries--;
413 }
414
415 if (retries < 1) {
416 QEDF_ERR(&(qedf->dbg_ctx), "Exhausted retries waiting for "
417 "FCF selection.\n");
418 return;
419 }
420
421 rval = qedf_send_flogi(qedf);
422 if (rval)
423 return;
424
425 /* Wait for FLOGI completion before proceeding with sending ADISCs */
426 i = wait_for_completion_timeout(&qedf->flogi_compl,
427 qedf->lport->r_a_tov);
428 if (i == 0) {
429 QEDF_ERR(&(qedf->dbg_ctx), "FLOGI timed out.\n");
430 return;
431 }
432
433 /*
434 * Call lport->tt.rport_login which will cause libfc to send an
435 * ADISC since the rport is in state ready.
436 */
David Brazdil0f672f62019-12-10 10:32:29 +0000437 mutex_lock(&lport->disc.disc_mutex);
438 list_for_each_entry_rcu(rdata, &lport->disc.rports, peers) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000439 if (kref_get_unless_zero(&rdata->kref)) {
David Brazdil0f672f62019-12-10 10:32:29 +0000440 fc_rport_login(rdata);
441 kref_put(&rdata->kref, fc_rport_destroy);
442 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000443 }
David Brazdil0f672f62019-12-10 10:32:29 +0000444 mutex_unlock(&lport->disc.disc_mutex);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000445}
446
447static void qedf_update_link_speed(struct qedf_ctx *qedf,
448 struct qed_link_output *link)
449{
Olivier Deprez157378f2022-04-04 15:47:50 +0200450 __ETHTOOL_DECLARE_LINK_MODE_MASK(sup_caps);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000451 struct fc_lport *lport = qedf->lport;
452
453 lport->link_speed = FC_PORTSPEED_UNKNOWN;
454 lport->link_supported_speeds = FC_PORTSPEED_UNKNOWN;
455
456 /* Set fc_host link speed */
457 switch (link->speed) {
458 case 10000:
459 lport->link_speed = FC_PORTSPEED_10GBIT;
460 break;
461 case 25000:
462 lport->link_speed = FC_PORTSPEED_25GBIT;
463 break;
464 case 40000:
465 lport->link_speed = FC_PORTSPEED_40GBIT;
466 break;
467 case 50000:
468 lport->link_speed = FC_PORTSPEED_50GBIT;
469 break;
470 case 100000:
471 lport->link_speed = FC_PORTSPEED_100GBIT;
472 break;
David Brazdil0f672f62019-12-10 10:32:29 +0000473 case 20000:
474 lport->link_speed = FC_PORTSPEED_20GBIT;
475 break;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000476 default:
477 lport->link_speed = FC_PORTSPEED_UNKNOWN;
478 break;
479 }
480
481 /*
482 * Set supported link speed by querying the supported
483 * capabilities of the link.
484 */
Olivier Deprez157378f2022-04-04 15:47:50 +0200485
486 phylink_zero(sup_caps);
487 phylink_set(sup_caps, 10000baseT_Full);
488 phylink_set(sup_caps, 10000baseKX4_Full);
489 phylink_set(sup_caps, 10000baseR_FEC);
490 phylink_set(sup_caps, 10000baseCR_Full);
491 phylink_set(sup_caps, 10000baseSR_Full);
492 phylink_set(sup_caps, 10000baseLR_Full);
493 phylink_set(sup_caps, 10000baseLRM_Full);
494 phylink_set(sup_caps, 10000baseKR_Full);
495
496 if (linkmode_intersects(link->supported_caps, sup_caps))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000497 lport->link_supported_speeds |= FC_PORTSPEED_10GBIT;
Olivier Deprez157378f2022-04-04 15:47:50 +0200498
499 phylink_zero(sup_caps);
500 phylink_set(sup_caps, 25000baseKR_Full);
501 phylink_set(sup_caps, 25000baseCR_Full);
502 phylink_set(sup_caps, 25000baseSR_Full);
503
504 if (linkmode_intersects(link->supported_caps, sup_caps))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000505 lport->link_supported_speeds |= FC_PORTSPEED_25GBIT;
Olivier Deprez157378f2022-04-04 15:47:50 +0200506
507 phylink_zero(sup_caps);
508 phylink_set(sup_caps, 40000baseLR4_Full);
509 phylink_set(sup_caps, 40000baseKR4_Full);
510 phylink_set(sup_caps, 40000baseCR4_Full);
511 phylink_set(sup_caps, 40000baseSR4_Full);
512
513 if (linkmode_intersects(link->supported_caps, sup_caps))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000514 lport->link_supported_speeds |= FC_PORTSPEED_40GBIT;
Olivier Deprez157378f2022-04-04 15:47:50 +0200515
516 phylink_zero(sup_caps);
517 phylink_set(sup_caps, 50000baseKR2_Full);
518 phylink_set(sup_caps, 50000baseCR2_Full);
519 phylink_set(sup_caps, 50000baseSR2_Full);
520
521 if (linkmode_intersects(link->supported_caps, sup_caps))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000522 lport->link_supported_speeds |= FC_PORTSPEED_50GBIT;
Olivier Deprez157378f2022-04-04 15:47:50 +0200523
524 phylink_zero(sup_caps);
525 phylink_set(sup_caps, 100000baseKR4_Full);
526 phylink_set(sup_caps, 100000baseSR4_Full);
527 phylink_set(sup_caps, 100000baseCR4_Full);
528 phylink_set(sup_caps, 100000baseLR4_ER4_Full);
529
530 if (linkmode_intersects(link->supported_caps, sup_caps))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000531 lport->link_supported_speeds |= FC_PORTSPEED_100GBIT;
Olivier Deprez157378f2022-04-04 15:47:50 +0200532
533 phylink_zero(sup_caps);
534 phylink_set(sup_caps, 20000baseKR2_Full);
535
536 if (linkmode_intersects(link->supported_caps, sup_caps))
David Brazdil0f672f62019-12-10 10:32:29 +0000537 lport->link_supported_speeds |= FC_PORTSPEED_20GBIT;
Olivier Deprez157378f2022-04-04 15:47:50 +0200538
539 if (lport->host && lport->host->shost_data)
540 fc_host_supported_speeds(lport->host) =
541 lport->link_supported_speeds;
542}
543
544static void qedf_bw_update(void *dev)
545{
546 struct qedf_ctx *qedf = (struct qedf_ctx *)dev;
547 struct qed_link_output link;
548
549 /* Get the latest status of the link */
550 qed_ops->common->get_link(qedf->cdev, &link);
551
552 if (test_bit(QEDF_UNLOADING, &qedf->flags)) {
553 QEDF_ERR(&qedf->dbg_ctx,
554 "Ignore link update, driver getting unload.\n");
555 return;
556 }
557
558 if (link.link_up) {
559 if (atomic_read(&qedf->link_state) == QEDF_LINK_UP)
560 qedf_update_link_speed(qedf, &link);
561 else
562 QEDF_ERR(&qedf->dbg_ctx,
563 "Ignore bw update, link is down.\n");
564
565 } else {
566 QEDF_ERR(&qedf->dbg_ctx, "link_up is not set.\n");
567 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000568}
569
570static void qedf_link_update(void *dev, struct qed_link_output *link)
571{
572 struct qedf_ctx *qedf = (struct qedf_ctx *)dev;
573
David Brazdil0f672f62019-12-10 10:32:29 +0000574 /*
575 * Prevent race where we're removing the module and we get link update
576 * for qed.
577 */
578 if (test_bit(QEDF_UNLOADING, &qedf->flags)) {
579 QEDF_ERR(&qedf->dbg_ctx,
580 "Ignore link update, driver getting unload.\n");
581 return;
582 }
583
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000584 if (link->link_up) {
585 if (atomic_read(&qedf->link_state) == QEDF_LINK_UP) {
586 QEDF_INFO((&qedf->dbg_ctx), QEDF_LOG_DISC,
587 "Ignoring link up event as link is already up.\n");
588 return;
589 }
590 QEDF_ERR(&(qedf->dbg_ctx), "LINK UP (%d GB/s).\n",
591 link->speed / 1000);
592
593 /* Cancel any pending link down work */
594 cancel_delayed_work(&qedf->link_update);
595
596 atomic_set(&qedf->link_state, QEDF_LINK_UP);
597 qedf_update_link_speed(qedf, link);
598
599 if (atomic_read(&qedf->dcbx) == QEDF_DCBX_DONE ||
600 qedf_dcbx_no_wait) {
601 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
602 "DCBx done.\n");
603 if (atomic_read(&qedf->link_down_tmo_valid) > 0)
604 queue_delayed_work(qedf->link_update_wq,
605 &qedf->link_recovery, 0);
606 else
607 queue_delayed_work(qedf->link_update_wq,
608 &qedf->link_update, 0);
609 atomic_set(&qedf->link_down_tmo_valid, 0);
610 }
611
612 } else {
613 QEDF_ERR(&(qedf->dbg_ctx), "LINK DOWN.\n");
614
615 atomic_set(&qedf->link_state, QEDF_LINK_DOWN);
616 atomic_set(&qedf->dcbx, QEDF_DCBX_PENDING);
617 /*
618 * Flag that we're waiting for the link to come back up before
619 * informing the fcoe layer of the event.
620 */
621 if (qedf_link_down_tmo > 0) {
622 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
623 "Starting link down tmo.\n");
624 atomic_set(&qedf->link_down_tmo_valid, 1);
625 }
626 qedf->vlan_id = 0;
627 qedf_update_link_speed(qedf, link);
628 queue_delayed_work(qedf->link_update_wq, &qedf->link_update,
629 qedf_link_down_tmo * HZ);
630 }
631}
632
633
634static void qedf_dcbx_handler(void *dev, struct qed_dcbx_get *get, u32 mib_type)
635{
636 struct qedf_ctx *qedf = (struct qedf_ctx *)dev;
637 u8 tmp_prio;
638
639 QEDF_ERR(&(qedf->dbg_ctx), "DCBx event valid=%d enabled=%d fcoe "
640 "prio=%d.\n", get->operational.valid, get->operational.enabled,
641 get->operational.app_prio.fcoe);
642
643 if (get->operational.enabled && get->operational.valid) {
644 /* If DCBX was already negotiated on link up then just exit */
645 if (atomic_read(&qedf->dcbx) == QEDF_DCBX_DONE) {
646 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
647 "DCBX already set on link up.\n");
648 return;
649 }
650
651 atomic_set(&qedf->dcbx, QEDF_DCBX_DONE);
652
653 /*
654 * Set the 8021q priority in the following manner:
655 *
656 * 1. If a modparam is set use that
657 * 2. If the value is not between 0..7 use the default
658 * 3. Use the priority we get from the DCBX app tag
659 */
660 tmp_prio = get->operational.app_prio.fcoe;
661 if (qedf_default_prio > -1)
662 qedf->prio = qedf_default_prio;
David Brazdil0f672f62019-12-10 10:32:29 +0000663 else if (tmp_prio > 7) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000664 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
665 "FIP/FCoE prio %d out of range, setting to %d.\n",
666 tmp_prio, QEDF_DEFAULT_PRIO);
667 qedf->prio = QEDF_DEFAULT_PRIO;
668 } else
669 qedf->prio = tmp_prio;
670
671 if (atomic_read(&qedf->link_state) == QEDF_LINK_UP &&
672 !qedf_dcbx_no_wait) {
673 if (atomic_read(&qedf->link_down_tmo_valid) > 0)
674 queue_delayed_work(qedf->link_update_wq,
675 &qedf->link_recovery, 0);
676 else
677 queue_delayed_work(qedf->link_update_wq,
678 &qedf->link_update, 0);
679 atomic_set(&qedf->link_down_tmo_valid, 0);
680 }
681 }
682
683}
684
685static u32 qedf_get_login_failures(void *cookie)
686{
687 struct qedf_ctx *qedf;
688
689 qedf = (struct qedf_ctx *)cookie;
690 return qedf->flogi_failed;
691}
692
693static struct qed_fcoe_cb_ops qedf_cb_ops = {
694 {
695 .link_update = qedf_link_update,
Olivier Deprez157378f2022-04-04 15:47:50 +0200696 .bw_update = qedf_bw_update,
697 .schedule_recovery_handler = qedf_schedule_recovery_handler,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000698 .dcbx_aen = qedf_dcbx_handler,
699 .get_generic_tlv_data = qedf_get_generic_tlv_data,
700 .get_protocol_tlv_data = qedf_get_protocol_tlv_data,
Olivier Deprez157378f2022-04-04 15:47:50 +0200701 .schedule_hw_err_handler = qedf_schedule_hw_err_handler,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000702 }
703};
704
705/*
706 * Various transport templates.
707 */
708
709static struct scsi_transport_template *qedf_fc_transport_template;
710static struct scsi_transport_template *qedf_fc_vport_transport_template;
711
712/*
713 * SCSI EH handlers
714 */
715static int qedf_eh_abort(struct scsi_cmnd *sc_cmd)
716{
717 struct fc_rport *rport = starget_to_rport(scsi_target(sc_cmd->device));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000718 struct fc_lport *lport;
719 struct qedf_ctx *qedf;
720 struct qedf_ioreq *io_req;
David Brazdil0f672f62019-12-10 10:32:29 +0000721 struct fc_rport_libfc_priv *rp = rport->dd_data;
722 struct fc_rport_priv *rdata;
723 struct qedf_rport *fcport = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000724 int rc = FAILED;
David Brazdil0f672f62019-12-10 10:32:29 +0000725 int wait_count = 100;
726 int refcount = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000727 int rval;
David Brazdil0f672f62019-12-10 10:32:29 +0000728 int got_ref = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000729
730 lport = shost_priv(sc_cmd->device->host);
731 qedf = (struct qedf_ctx *)lport_priv(lport);
732
David Brazdil0f672f62019-12-10 10:32:29 +0000733 /* rport and tgt are allocated together, so tgt should be non-NULL */
734 fcport = (struct qedf_rport *)&rp[1];
735 rdata = fcport->rdata;
736 if (!rdata || !kref_get_unless_zero(&rdata->kref)) {
737 QEDF_ERR(&qedf->dbg_ctx, "stale rport, sc_cmd=%p\n", sc_cmd);
Olivier Deprez0e641232021-09-23 10:07:05 +0200738 rc = SUCCESS;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000739 goto out;
740 }
741
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000742
743 io_req = (struct qedf_ioreq *)sc_cmd->SCp.ptr;
744 if (!io_req) {
David Brazdil0f672f62019-12-10 10:32:29 +0000745 QEDF_ERR(&qedf->dbg_ctx,
746 "sc_cmd not queued with lld, sc_cmd=%p op=0x%02x, port_id=%06x\n",
747 sc_cmd, sc_cmd->cmnd[0],
748 rdata->ids.port_id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000749 rc = SUCCESS;
David Brazdil0f672f62019-12-10 10:32:29 +0000750 goto drop_rdata_kref;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000751 }
752
David Brazdil0f672f62019-12-10 10:32:29 +0000753 rval = kref_get_unless_zero(&io_req->refcount); /* ID: 005 */
754 if (rval)
755 got_ref = 1;
756
757 /* If we got a valid io_req, confirm it belongs to this sc_cmd. */
758 if (!rval || io_req->sc_cmd != sc_cmd) {
759 QEDF_ERR(&qedf->dbg_ctx,
760 "Freed/Incorrect io_req, io_req->sc_cmd=%p, sc_cmd=%p, port_id=%06x, bailing out.\n",
761 io_req->sc_cmd, sc_cmd, rdata->ids.port_id);
762
763 goto drop_rdata_kref;
764 }
765
766 if (fc_remote_port_chkready(rport)) {
767 refcount = kref_read(&io_req->refcount);
768 QEDF_ERR(&qedf->dbg_ctx,
769 "rport not ready, io_req=%p, xid=0x%x sc_cmd=%p op=0x%02x, refcount=%d, port_id=%06x\n",
770 io_req, io_req->xid, sc_cmd, sc_cmd->cmnd[0],
771 refcount, rdata->ids.port_id);
772
773 goto drop_rdata_kref;
774 }
775
776 rc = fc_block_scsi_eh(sc_cmd);
777 if (rc)
778 goto drop_rdata_kref;
779
780 if (test_bit(QEDF_RPORT_UPLOADING_CONNECTION, &fcport->flags)) {
781 QEDF_ERR(&qedf->dbg_ctx,
782 "Connection uploading, xid=0x%x., port_id=%06x\n",
783 io_req->xid, rdata->ids.port_id);
784 while (io_req->sc_cmd && (wait_count != 0)) {
785 msleep(100);
786 wait_count--;
787 }
788 if (wait_count) {
789 QEDF_ERR(&qedf->dbg_ctx, "ABTS succeeded\n");
790 rc = SUCCESS;
791 } else {
792 QEDF_ERR(&qedf->dbg_ctx, "ABTS failed\n");
793 rc = FAILED;
794 }
795 goto drop_rdata_kref;
796 }
797
798 if (lport->state != LPORT_ST_READY || !(lport->link_up)) {
799 QEDF_ERR(&qedf->dbg_ctx, "link not ready.\n");
800 goto drop_rdata_kref;
801 }
802
803 QEDF_ERR(&qedf->dbg_ctx,
804 "Aborting io_req=%p sc_cmd=%p xid=0x%x fp_idx=%d, port_id=%06x.\n",
805 io_req, sc_cmd, io_req->xid, io_req->fp_idx,
806 rdata->ids.port_id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000807
808 if (qedf->stop_io_on_error) {
809 qedf_stop_all_io(qedf);
810 rc = SUCCESS;
David Brazdil0f672f62019-12-10 10:32:29 +0000811 goto drop_rdata_kref;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000812 }
813
814 init_completion(&io_req->abts_done);
815 rval = qedf_initiate_abts(io_req, true);
816 if (rval) {
817 QEDF_ERR(&(qedf->dbg_ctx), "Failed to queue ABTS.\n");
David Brazdil0f672f62019-12-10 10:32:29 +0000818 /*
819 * If we fail to queue the ABTS then return this command to
820 * the SCSI layer as it will own and free the xid
821 */
822 rc = SUCCESS;
823 qedf_scsi_done(qedf, io_req, DID_ERROR);
824 goto drop_rdata_kref;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000825 }
826
827 wait_for_completion(&io_req->abts_done);
828
829 if (io_req->event == QEDF_IOREQ_EV_ABORT_SUCCESS ||
830 io_req->event == QEDF_IOREQ_EV_ABORT_FAILED ||
831 io_req->event == QEDF_IOREQ_EV_CLEANUP_SUCCESS) {
832 /*
833 * If we get a reponse to the abort this is success from
834 * the perspective that all references to the command have
835 * been removed from the driver and firmware
836 */
837 rc = SUCCESS;
838 } else {
839 /* If the abort and cleanup failed then return a failure */
840 rc = FAILED;
841 }
842
843 if (rc == SUCCESS)
844 QEDF_ERR(&(qedf->dbg_ctx), "ABTS succeeded, xid=0x%x.\n",
845 io_req->xid);
846 else
847 QEDF_ERR(&(qedf->dbg_ctx), "ABTS failed, xid=0x%x.\n",
848 io_req->xid);
849
David Brazdil0f672f62019-12-10 10:32:29 +0000850drop_rdata_kref:
851 kref_put(&rdata->kref, fc_rport_destroy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000852out:
David Brazdil0f672f62019-12-10 10:32:29 +0000853 if (got_ref)
854 kref_put(&io_req->refcount, qedf_release_cmd);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000855 return rc;
856}
857
858static int qedf_eh_target_reset(struct scsi_cmnd *sc_cmd)
859{
David Brazdil0f672f62019-12-10 10:32:29 +0000860 QEDF_ERR(NULL, "%d:0:%d:%lld: TARGET RESET Issued...",
861 sc_cmd->device->host->host_no, sc_cmd->device->id,
862 sc_cmd->device->lun);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000863 return qedf_initiate_tmf(sc_cmd, FCP_TMF_TGT_RESET);
864}
865
866static int qedf_eh_device_reset(struct scsi_cmnd *sc_cmd)
867{
David Brazdil0f672f62019-12-10 10:32:29 +0000868 QEDF_ERR(NULL, "%d:0:%d:%lld: LUN RESET Issued... ",
869 sc_cmd->device->host->host_no, sc_cmd->device->id,
870 sc_cmd->device->lun);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000871 return qedf_initiate_tmf(sc_cmd, FCP_TMF_LUN_RESET);
872}
873
David Brazdil0f672f62019-12-10 10:32:29 +0000874bool qedf_wait_for_upload(struct qedf_ctx *qedf)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000875{
David Brazdil0f672f62019-12-10 10:32:29 +0000876 struct qedf_rport *fcport = NULL;
877 int wait_cnt = 120;
878
879 while (wait_cnt--) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000880 if (atomic_read(&qedf->num_offloads))
David Brazdil0f672f62019-12-10 10:32:29 +0000881 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
882 "Waiting for all uploads to complete num_offloads = 0x%x.\n",
883 atomic_read(&qedf->num_offloads));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000884 else
David Brazdil0f672f62019-12-10 10:32:29 +0000885 return true;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000886 msleep(500);
887 }
David Brazdil0f672f62019-12-10 10:32:29 +0000888
889 rcu_read_lock();
890 list_for_each_entry_rcu(fcport, &qedf->fcports, peers) {
891 if (fcport && test_bit(QEDF_RPORT_SESSION_READY,
892 &fcport->flags)) {
893 if (fcport->rdata)
894 QEDF_ERR(&qedf->dbg_ctx,
895 "Waiting for fcport %p portid=%06x.\n",
896 fcport, fcport->rdata->ids.port_id);
897 } else {
898 QEDF_ERR(&qedf->dbg_ctx,
899 "Waiting for fcport %p.\n", fcport);
900 }
901 }
902 rcu_read_unlock();
903 return false;
904
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000905}
906
907/* Performs soft reset of qedf_ctx by simulating a link down/up */
David Brazdil0f672f62019-12-10 10:32:29 +0000908void qedf_ctx_soft_reset(struct fc_lport *lport)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000909{
910 struct qedf_ctx *qedf;
David Brazdil0f672f62019-12-10 10:32:29 +0000911 struct qed_link_output if_link;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000912
913 if (lport->vport) {
914 QEDF_ERR(NULL, "Cannot issue host reset on NPIV port.\n");
915 return;
916 }
917
918 qedf = lport_priv(lport);
919
Olivier Deprez157378f2022-04-04 15:47:50 +0200920 qedf->flogi_pending = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000921 /* For host reset, essentially do a soft link up/down */
922 atomic_set(&qedf->link_state, QEDF_LINK_DOWN);
David Brazdil0f672f62019-12-10 10:32:29 +0000923 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
924 "Queuing link down work.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000925 queue_delayed_work(qedf->link_update_wq, &qedf->link_update,
926 0);
David Brazdil0f672f62019-12-10 10:32:29 +0000927
928 if (qedf_wait_for_upload(qedf) == false) {
929 QEDF_ERR(&qedf->dbg_ctx, "Could not upload all sessions.\n");
930 WARN_ON(atomic_read(&qedf->num_offloads));
931 }
932
933 /* Before setting link up query physical link state */
934 qed_ops->common->get_link(qedf->cdev, &if_link);
935 /* Bail if the physical link is not up */
936 if (!if_link.link_up) {
937 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
938 "Physical link is not up.\n");
939 return;
940 }
941 /* Flush and wait to make sure link down is processed */
942 flush_delayed_work(&qedf->link_update);
943 msleep(500);
944
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000945 atomic_set(&qedf->link_state, QEDF_LINK_UP);
946 qedf->vlan_id = 0;
David Brazdil0f672f62019-12-10 10:32:29 +0000947 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
948 "Queue link up work.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000949 queue_delayed_work(qedf->link_update_wq, &qedf->link_update,
950 0);
951}
952
953/* Reset the host by gracefully logging out and then logging back in */
954static int qedf_eh_host_reset(struct scsi_cmnd *sc_cmd)
955{
956 struct fc_lport *lport;
957 struct qedf_ctx *qedf;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000958
959 lport = shost_priv(sc_cmd->device->host);
960 qedf = lport_priv(lport);
961
962 if (atomic_read(&qedf->link_state) == QEDF_LINK_DOWN ||
963 test_bit(QEDF_UNLOADING, &qedf->flags))
964 return FAILED;
965
966 QEDF_ERR(&(qedf->dbg_ctx), "HOST RESET Issued...");
967
968 qedf_ctx_soft_reset(lport);
969
970 return SUCCESS;
971}
972
973static int qedf_slave_configure(struct scsi_device *sdev)
974{
975 if (qedf_queue_depth) {
976 scsi_change_queue_depth(sdev, qedf_queue_depth);
977 }
978
979 return 0;
980}
981
982static struct scsi_host_template qedf_host_template = {
983 .module = THIS_MODULE,
984 .name = QEDF_MODULE_NAME,
985 .this_id = -1,
986 .cmd_per_lun = 32,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000987 .max_sectors = 0xffff,
988 .queuecommand = qedf_queuecommand,
989 .shost_attrs = qedf_host_attrs,
990 .eh_abort_handler = qedf_eh_abort,
991 .eh_device_reset_handler = qedf_eh_device_reset, /* lun reset */
992 .eh_target_reset_handler = qedf_eh_target_reset, /* target reset */
993 .eh_host_reset_handler = qedf_eh_host_reset,
994 .slave_configure = qedf_slave_configure,
995 .dma_boundary = QED_HW_DMA_BOUNDARY,
996 .sg_tablesize = QEDF_MAX_BDS_PER_CMD,
997 .can_queue = FCOE_PARAMS_NUM_TASKS,
998 .change_queue_depth = scsi_change_queue_depth,
999};
1000
1001static int qedf_get_paged_crc_eof(struct sk_buff *skb, int tlen)
1002{
1003 int rc;
1004
1005 spin_lock(&qedf_global_lock);
1006 rc = fcoe_get_paged_crc_eof(skb, tlen, &qedf_global);
1007 spin_unlock(&qedf_global_lock);
1008
1009 return rc;
1010}
1011
1012static struct qedf_rport *qedf_fcport_lookup(struct qedf_ctx *qedf, u32 port_id)
1013{
1014 struct qedf_rport *fcport;
1015 struct fc_rport_priv *rdata;
1016
1017 rcu_read_lock();
1018 list_for_each_entry_rcu(fcport, &qedf->fcports, peers) {
1019 rdata = fcport->rdata;
1020 if (rdata == NULL)
1021 continue;
1022 if (rdata->ids.port_id == port_id) {
1023 rcu_read_unlock();
1024 return fcport;
1025 }
1026 }
1027 rcu_read_unlock();
1028
1029 /* Return NULL to caller to let them know fcport was not found */
1030 return NULL;
1031}
1032
1033/* Transmits an ELS frame over an offloaded session */
1034static int qedf_xmit_l2_frame(struct qedf_rport *fcport, struct fc_frame *fp)
1035{
1036 struct fc_frame_header *fh;
1037 int rc = 0;
1038
1039 fh = fc_frame_header_get(fp);
1040 if ((fh->fh_type == FC_TYPE_ELS) &&
1041 (fh->fh_r_ctl == FC_RCTL_ELS_REQ)) {
1042 switch (fc_frame_payload_op(fp)) {
1043 case ELS_ADISC:
1044 qedf_send_adisc(fcport, fp);
1045 rc = 1;
1046 break;
1047 }
1048 }
1049
1050 return rc;
1051}
1052
Olivier Deprez157378f2022-04-04 15:47:50 +02001053/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001054 * qedf_xmit - qedf FCoE frame transmit function
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001055 */
1056static int qedf_xmit(struct fc_lport *lport, struct fc_frame *fp)
1057{
1058 struct fc_lport *base_lport;
1059 struct qedf_ctx *qedf;
1060 struct ethhdr *eh;
1061 struct fcoe_crc_eof *cp;
1062 struct sk_buff *skb;
1063 struct fc_frame_header *fh;
1064 struct fcoe_hdr *hp;
1065 u8 sof, eof;
1066 u32 crc;
1067 unsigned int hlen, tlen, elen;
1068 int wlen;
1069 struct fc_stats *stats;
1070 struct fc_lport *tmp_lport;
1071 struct fc_lport *vn_port = NULL;
1072 struct qedf_rport *fcport;
1073 int rc;
1074 u16 vlan_tci = 0;
1075
1076 qedf = (struct qedf_ctx *)lport_priv(lport);
1077
1078 fh = fc_frame_header_get(fp);
1079 skb = fp_skb(fp);
1080
1081 /* Filter out traffic to other NPIV ports on the same host */
1082 if (lport->vport)
1083 base_lport = shost_priv(vport_to_shost(lport->vport));
1084 else
1085 base_lport = lport;
1086
1087 /* Flag if the destination is the base port */
1088 if (base_lport->port_id == ntoh24(fh->fh_d_id)) {
1089 vn_port = base_lport;
1090 } else {
1091 /* Got through the list of vports attached to the base_lport
1092 * and see if we have a match with the destination address.
1093 */
1094 list_for_each_entry(tmp_lport, &base_lport->vports, list) {
1095 if (tmp_lport->port_id == ntoh24(fh->fh_d_id)) {
1096 vn_port = tmp_lport;
1097 break;
1098 }
1099 }
1100 }
1101 if (vn_port && ntoh24(fh->fh_d_id) != FC_FID_FLOGI) {
1102 struct fc_rport_priv *rdata = NULL;
1103
1104 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_LL2,
1105 "Dropping FCoE frame to %06x.\n", ntoh24(fh->fh_d_id));
1106 kfree_skb(skb);
1107 rdata = fc_rport_lookup(lport, ntoh24(fh->fh_d_id));
David Brazdil0f672f62019-12-10 10:32:29 +00001108 if (rdata) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001109 rdata->retries = lport->max_rport_retry_count;
David Brazdil0f672f62019-12-10 10:32:29 +00001110 kref_put(&rdata->kref, fc_rport_destroy);
1111 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001112 return -EINVAL;
1113 }
1114 /* End NPIV filtering */
1115
1116 if (!qedf->ctlr.sel_fcf) {
1117 kfree_skb(skb);
1118 return 0;
1119 }
1120
1121 if (!test_bit(QEDF_LL2_STARTED, &qedf->flags)) {
1122 QEDF_WARN(&(qedf->dbg_ctx), "LL2 not started\n");
1123 kfree_skb(skb);
1124 return 0;
1125 }
1126
1127 if (atomic_read(&qedf->link_state) != QEDF_LINK_UP) {
1128 QEDF_WARN(&(qedf->dbg_ctx), "qedf link down\n");
1129 kfree_skb(skb);
1130 return 0;
1131 }
1132
1133 if (unlikely(fh->fh_r_ctl == FC_RCTL_ELS_REQ)) {
1134 if (fcoe_ctlr_els_send(&qedf->ctlr, lport, skb))
1135 return 0;
1136 }
1137
1138 /* Check to see if this needs to be sent on an offloaded session */
1139 fcport = qedf_fcport_lookup(qedf, ntoh24(fh->fh_d_id));
1140
1141 if (fcport && test_bit(QEDF_RPORT_SESSION_READY, &fcport->flags)) {
1142 rc = qedf_xmit_l2_frame(fcport, fp);
1143 /*
1144 * If the frame was successfully sent over the middle path
1145 * then do not try to also send it over the LL2 path
1146 */
1147 if (rc)
1148 return 0;
1149 }
1150
1151 sof = fr_sof(fp);
1152 eof = fr_eof(fp);
1153
1154 elen = sizeof(struct ethhdr);
1155 hlen = sizeof(struct fcoe_hdr);
1156 tlen = sizeof(struct fcoe_crc_eof);
1157 wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
1158
1159 skb->ip_summed = CHECKSUM_NONE;
1160 crc = fcoe_fc_crc(fp);
1161
1162 /* copy port crc and eof to the skb buff */
1163 if (skb_is_nonlinear(skb)) {
1164 skb_frag_t *frag;
1165
1166 if (qedf_get_paged_crc_eof(skb, tlen)) {
1167 kfree_skb(skb);
1168 return -ENOMEM;
1169 }
1170 frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
David Brazdil0f672f62019-12-10 10:32:29 +00001171 cp = kmap_atomic(skb_frag_page(frag)) + skb_frag_off(frag);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001172 } else {
1173 cp = skb_put(skb, tlen);
1174 }
1175
1176 memset(cp, 0, sizeof(*cp));
1177 cp->fcoe_eof = eof;
1178 cp->fcoe_crc32 = cpu_to_le32(~crc);
1179 if (skb_is_nonlinear(skb)) {
1180 kunmap_atomic(cp);
1181 cp = NULL;
1182 }
1183
1184
1185 /* adjust skb network/transport offsets to match mac/fcoe/port */
1186 skb_push(skb, elen + hlen);
1187 skb_reset_mac_header(skb);
1188 skb_reset_network_header(skb);
1189 skb->mac_len = elen;
1190 skb->protocol = htons(ETH_P_FCOE);
1191
1192 /*
1193 * Add VLAN tag to non-offload FCoE frame based on current stored VLAN
1194 * for FIP/FCoE traffic.
1195 */
1196 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), qedf->vlan_id);
1197
1198 /* fill up mac and fcoe headers */
1199 eh = eth_hdr(skb);
1200 eh->h_proto = htons(ETH_P_FCOE);
1201 if (qedf->ctlr.map_dest)
1202 fc_fcoe_set_mac(eh->h_dest, fh->fh_d_id);
1203 else
1204 /* insert GW address */
1205 ether_addr_copy(eh->h_dest, qedf->ctlr.dest_addr);
1206
1207 /* Set the source MAC address */
1208 ether_addr_copy(eh->h_source, qedf->data_src_addr);
1209
1210 hp = (struct fcoe_hdr *)(eh + 1);
1211 memset(hp, 0, sizeof(*hp));
1212 if (FC_FCOE_VER)
1213 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
1214 hp->fcoe_sof = sof;
1215
1216 /*update tx stats */
1217 stats = per_cpu_ptr(lport->stats, get_cpu());
1218 stats->TxFrames++;
1219 stats->TxWords += wlen;
1220 put_cpu();
1221
1222 /* Get VLAN ID from skb for printing purposes */
1223 __vlan_hwaccel_get_tag(skb, &vlan_tci);
1224
1225 /* send down to lld */
1226 fr_dev(fp) = lport;
1227 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_LL2, "FCoE frame send: "
1228 "src=%06x dest=%06x r_ctl=%x type=%x vlan=%04x.\n",
1229 ntoh24(fh->fh_s_id), ntoh24(fh->fh_d_id), fh->fh_r_ctl, fh->fh_type,
1230 vlan_tci);
1231 if (qedf_dump_frames)
1232 print_hex_dump(KERN_WARNING, "fcoe: ", DUMP_PREFIX_OFFSET, 16,
1233 1, skb->data, skb->len, false);
David Brazdil0f672f62019-12-10 10:32:29 +00001234 rc = qed_ops->ll2->start_xmit(qedf->cdev, skb, 0);
1235 if (rc) {
1236 QEDF_ERR(&qedf->dbg_ctx, "start_xmit failed rc = %d.\n", rc);
1237 kfree_skb(skb);
1238 return rc;
1239 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001240
1241 return 0;
1242}
1243
1244static int qedf_alloc_sq(struct qedf_ctx *qedf, struct qedf_rport *fcport)
1245{
1246 int rval = 0;
1247 u32 *pbl;
1248 dma_addr_t page;
1249 int num_pages;
1250
1251 /* Calculate appropriate queue and PBL sizes */
1252 fcport->sq_mem_size = SQ_NUM_ENTRIES * sizeof(struct fcoe_wqe);
1253 fcport->sq_mem_size = ALIGN(fcport->sq_mem_size, QEDF_PAGE_SIZE);
1254 fcport->sq_pbl_size = (fcport->sq_mem_size / QEDF_PAGE_SIZE) *
1255 sizeof(void *);
1256 fcport->sq_pbl_size = fcport->sq_pbl_size + QEDF_PAGE_SIZE;
1257
David Brazdil0f672f62019-12-10 10:32:29 +00001258 fcport->sq = dma_alloc_coherent(&qedf->pdev->dev, fcport->sq_mem_size,
1259 &fcport->sq_dma, GFP_KERNEL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001260 if (!fcport->sq) {
1261 QEDF_WARN(&(qedf->dbg_ctx), "Could not allocate send queue.\n");
1262 rval = 1;
1263 goto out;
1264 }
1265
David Brazdil0f672f62019-12-10 10:32:29 +00001266 fcport->sq_pbl = dma_alloc_coherent(&qedf->pdev->dev,
1267 fcport->sq_pbl_size,
1268 &fcport->sq_pbl_dma, GFP_KERNEL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001269 if (!fcport->sq_pbl) {
1270 QEDF_WARN(&(qedf->dbg_ctx), "Could not allocate send queue PBL.\n");
1271 rval = 1;
1272 goto out_free_sq;
1273 }
1274
1275 /* Create PBL */
1276 num_pages = fcport->sq_mem_size / QEDF_PAGE_SIZE;
1277 page = fcport->sq_dma;
1278 pbl = (u32 *)fcport->sq_pbl;
1279
1280 while (num_pages--) {
1281 *pbl = U64_LO(page);
1282 pbl++;
1283 *pbl = U64_HI(page);
1284 pbl++;
1285 page += QEDF_PAGE_SIZE;
1286 }
1287
1288 return rval;
1289
1290out_free_sq:
1291 dma_free_coherent(&qedf->pdev->dev, fcport->sq_mem_size, fcport->sq,
1292 fcport->sq_dma);
1293out:
1294 return rval;
1295}
1296
1297static void qedf_free_sq(struct qedf_ctx *qedf, struct qedf_rport *fcport)
1298{
1299 if (fcport->sq_pbl)
1300 dma_free_coherent(&qedf->pdev->dev, fcport->sq_pbl_size,
1301 fcport->sq_pbl, fcport->sq_pbl_dma);
1302 if (fcport->sq)
1303 dma_free_coherent(&qedf->pdev->dev, fcport->sq_mem_size,
1304 fcport->sq, fcport->sq_dma);
1305}
1306
1307static int qedf_offload_connection(struct qedf_ctx *qedf,
1308 struct qedf_rport *fcport)
1309{
1310 struct qed_fcoe_params_offload conn_info;
1311 u32 port_id;
1312 int rval;
1313 uint16_t total_sqe = (fcport->sq_mem_size / sizeof(struct fcoe_wqe));
1314
1315 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_CONN, "Offloading connection "
1316 "portid=%06x.\n", fcport->rdata->ids.port_id);
1317 rval = qed_ops->acquire_conn(qedf->cdev, &fcport->handle,
1318 &fcport->fw_cid, &fcport->p_doorbell);
1319 if (rval) {
1320 QEDF_WARN(&(qedf->dbg_ctx), "Could not acquire connection "
1321 "for portid=%06x.\n", fcport->rdata->ids.port_id);
1322 rval = 1; /* For some reason qed returns 0 on failure here */
1323 goto out;
1324 }
1325
1326 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_CONN, "portid=%06x "
1327 "fw_cid=%08x handle=%d.\n", fcport->rdata->ids.port_id,
1328 fcport->fw_cid, fcport->handle);
1329
1330 memset(&conn_info, 0, sizeof(struct qed_fcoe_params_offload));
1331
1332 /* Fill in the offload connection info */
1333 conn_info.sq_pbl_addr = fcport->sq_pbl_dma;
1334
1335 conn_info.sq_curr_page_addr = (dma_addr_t)(*(u64 *)fcport->sq_pbl);
1336 conn_info.sq_next_page_addr =
1337 (dma_addr_t)(*(u64 *)(fcport->sq_pbl + 8));
1338
1339 /* Need to use our FCoE MAC for the offload session */
1340 ether_addr_copy(conn_info.src_mac, qedf->data_src_addr);
1341
1342 ether_addr_copy(conn_info.dst_mac, qedf->ctlr.dest_addr);
1343
1344 conn_info.tx_max_fc_pay_len = fcport->rdata->maxframe_size;
Olivier Deprez157378f2022-04-04 15:47:50 +02001345 conn_info.e_d_tov_timer_val = qedf->lport->e_d_tov;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001346 conn_info.rec_tov_timer_val = 3; /* I think this is what E3 was */
1347 conn_info.rx_max_fc_pay_len = fcport->rdata->maxframe_size;
1348
1349 /* Set VLAN data */
1350 conn_info.vlan_tag = qedf->vlan_id <<
1351 FCOE_CONN_OFFLOAD_RAMROD_DATA_VLAN_ID_SHIFT;
1352 conn_info.vlan_tag |=
1353 qedf->prio << FCOE_CONN_OFFLOAD_RAMROD_DATA_PRIORITY_SHIFT;
1354 conn_info.flags |= (FCOE_CONN_OFFLOAD_RAMROD_DATA_B_VLAN_FLAG_MASK <<
1355 FCOE_CONN_OFFLOAD_RAMROD_DATA_B_VLAN_FLAG_SHIFT);
1356
1357 /* Set host port source id */
1358 port_id = fc_host_port_id(qedf->lport->host);
1359 fcport->sid = port_id;
1360 conn_info.s_id.addr_hi = (port_id & 0x000000FF);
1361 conn_info.s_id.addr_mid = (port_id & 0x0000FF00) >> 8;
1362 conn_info.s_id.addr_lo = (port_id & 0x00FF0000) >> 16;
1363
1364 conn_info.max_conc_seqs_c3 = fcport->rdata->max_seq;
1365
1366 /* Set remote port destination id */
1367 port_id = fcport->rdata->rport->port_id;
1368 conn_info.d_id.addr_hi = (port_id & 0x000000FF);
1369 conn_info.d_id.addr_mid = (port_id & 0x0000FF00) >> 8;
1370 conn_info.d_id.addr_lo = (port_id & 0x00FF0000) >> 16;
1371
1372 conn_info.def_q_idx = 0; /* Default index for send queue? */
1373
1374 /* Set FC-TAPE specific flags if needed */
1375 if (fcport->dev_type == QEDF_RPORT_TYPE_TAPE) {
1376 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_CONN,
1377 "Enable CONF, REC for portid=%06x.\n",
1378 fcport->rdata->ids.port_id);
1379 conn_info.flags |= 1 <<
1380 FCOE_CONN_OFFLOAD_RAMROD_DATA_B_CONF_REQ_SHIFT;
1381 conn_info.flags |=
1382 ((fcport->rdata->sp_features & FC_SP_FT_SEQC) ? 1 : 0) <<
1383 FCOE_CONN_OFFLOAD_RAMROD_DATA_B_REC_VALID_SHIFT;
1384 }
1385
1386 rval = qed_ops->offload_conn(qedf->cdev, fcport->handle, &conn_info);
1387 if (rval) {
1388 QEDF_WARN(&(qedf->dbg_ctx), "Could not offload connection "
1389 "for portid=%06x.\n", fcport->rdata->ids.port_id);
1390 goto out_free_conn;
1391 } else
1392 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_CONN, "Offload "
1393 "succeeded portid=%06x total_sqe=%d.\n",
1394 fcport->rdata->ids.port_id, total_sqe);
1395
1396 spin_lock_init(&fcport->rport_lock);
1397 atomic_set(&fcport->free_sqes, total_sqe);
1398 return 0;
1399out_free_conn:
1400 qed_ops->release_conn(qedf->cdev, fcport->handle);
1401out:
1402 return rval;
1403}
1404
1405#define QEDF_TERM_BUFF_SIZE 10
1406static void qedf_upload_connection(struct qedf_ctx *qedf,
1407 struct qedf_rport *fcport)
1408{
1409 void *term_params;
1410 dma_addr_t term_params_dma;
1411
1412 /* Term params needs to be a DMA coherent buffer as qed shared the
1413 * physical DMA address with the firmware. The buffer may be used in
1414 * the receive path so we may eventually have to move this.
1415 */
1416 term_params = dma_alloc_coherent(&qedf->pdev->dev, QEDF_TERM_BUFF_SIZE,
1417 &term_params_dma, GFP_KERNEL);
1418
1419 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_CONN, "Uploading connection "
1420 "port_id=%06x.\n", fcport->rdata->ids.port_id);
1421
1422 qed_ops->destroy_conn(qedf->cdev, fcport->handle, term_params_dma);
1423 qed_ops->release_conn(qedf->cdev, fcport->handle);
1424
1425 dma_free_coherent(&qedf->pdev->dev, QEDF_TERM_BUFF_SIZE, term_params,
1426 term_params_dma);
1427}
1428
1429static void qedf_cleanup_fcport(struct qedf_ctx *qedf,
1430 struct qedf_rport *fcport)
1431{
David Brazdil0f672f62019-12-10 10:32:29 +00001432 struct fc_rport_priv *rdata = fcport->rdata;
1433
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001434 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_CONN, "Cleaning up portid=%06x.\n",
1435 fcport->rdata->ids.port_id);
1436
1437 /* Flush any remaining i/o's before we upload the connection */
1438 qedf_flush_active_ios(fcport, -1);
1439
1440 if (test_and_clear_bit(QEDF_RPORT_SESSION_READY, &fcport->flags))
1441 qedf_upload_connection(qedf, fcport);
1442 qedf_free_sq(qedf, fcport);
1443 fcport->rdata = NULL;
1444 fcport->qedf = NULL;
David Brazdil0f672f62019-12-10 10:32:29 +00001445 kref_put(&rdata->kref, fc_rport_destroy);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001446}
1447
Olivier Deprez157378f2022-04-04 15:47:50 +02001448/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001449 * This event_callback is called after successful completion of libfc
1450 * initiated target login. qedf can proceed with initiating the session
1451 * establishment.
1452 */
1453static void qedf_rport_event_handler(struct fc_lport *lport,
1454 struct fc_rport_priv *rdata,
1455 enum fc_rport_event event)
1456{
1457 struct qedf_ctx *qedf = lport_priv(lport);
1458 struct fc_rport *rport = rdata->rport;
1459 struct fc_rport_libfc_priv *rp;
1460 struct qedf_rport *fcport;
1461 u32 port_id;
1462 int rval;
1463 unsigned long flags;
1464
1465 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC, "event = %d, "
1466 "port_id = 0x%x\n", event, rdata->ids.port_id);
1467
1468 switch (event) {
1469 case RPORT_EV_READY:
1470 if (!rport) {
1471 QEDF_WARN(&(qedf->dbg_ctx), "rport is NULL.\n");
1472 break;
1473 }
1474
1475 rp = rport->dd_data;
1476 fcport = (struct qedf_rport *)&rp[1];
1477 fcport->qedf = qedf;
1478
1479 if (atomic_read(&qedf->num_offloads) >= QEDF_MAX_SESSIONS) {
1480 QEDF_ERR(&(qedf->dbg_ctx), "Not offloading "
1481 "portid=0x%x as max number of offloaded sessions "
1482 "reached.\n", rdata->ids.port_id);
1483 return;
1484 }
1485
1486 /*
1487 * Don't try to offload the session again. Can happen when we
1488 * get an ADISC
1489 */
1490 if (test_bit(QEDF_RPORT_SESSION_READY, &fcport->flags)) {
1491 QEDF_WARN(&(qedf->dbg_ctx), "Session already "
1492 "offloaded, portid=0x%x.\n",
1493 rdata->ids.port_id);
1494 return;
1495 }
1496
1497 if (rport->port_id == FC_FID_DIR_SERV) {
1498 /*
1499 * qedf_rport structure doesn't exist for
1500 * directory server.
1501 * We should not come here, as lport will
1502 * take care of fabric login
1503 */
1504 QEDF_WARN(&(qedf->dbg_ctx), "rport struct does not "
1505 "exist for dir server port_id=%x\n",
1506 rdata->ids.port_id);
1507 break;
1508 }
1509
1510 if (rdata->spp_type != FC_TYPE_FCP) {
1511 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
1512 "Not offloading since spp type isn't FCP\n");
1513 break;
1514 }
1515 if (!(rdata->ids.roles & FC_RPORT_ROLE_FCP_TARGET)) {
1516 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
1517 "Not FCP target so not offloading\n");
1518 break;
1519 }
1520
David Brazdil0f672f62019-12-10 10:32:29 +00001521 /* Initial reference held on entry, so this can't fail */
1522 kref_get(&rdata->kref);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001523 fcport->rdata = rdata;
1524 fcport->rport = rport;
1525
1526 rval = qedf_alloc_sq(qedf, fcport);
1527 if (rval) {
1528 qedf_cleanup_fcport(qedf, fcport);
1529 break;
1530 }
1531
1532 /* Set device type */
1533 if (rdata->flags & FC_RP_FLAGS_RETRY &&
1534 rdata->ids.roles & FC_RPORT_ROLE_FCP_TARGET &&
1535 !(rdata->ids.roles & FC_RPORT_ROLE_FCP_INITIATOR)) {
1536 fcport->dev_type = QEDF_RPORT_TYPE_TAPE;
1537 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
1538 "portid=%06x is a TAPE device.\n",
1539 rdata->ids.port_id);
1540 } else {
1541 fcport->dev_type = QEDF_RPORT_TYPE_DISK;
1542 }
1543
1544 rval = qedf_offload_connection(qedf, fcport);
1545 if (rval) {
1546 qedf_cleanup_fcport(qedf, fcport);
1547 break;
1548 }
1549
1550 /* Add fcport to list of qedf_ctx list of offloaded ports */
1551 spin_lock_irqsave(&qedf->hba_lock, flags);
1552 list_add_rcu(&fcport->peers, &qedf->fcports);
1553 spin_unlock_irqrestore(&qedf->hba_lock, flags);
1554
1555 /*
1556 * Set the session ready bit to let everyone know that this
1557 * connection is ready for I/O
1558 */
1559 set_bit(QEDF_RPORT_SESSION_READY, &fcport->flags);
1560 atomic_inc(&qedf->num_offloads);
1561
1562 break;
1563 case RPORT_EV_LOGO:
1564 case RPORT_EV_FAILED:
1565 case RPORT_EV_STOP:
1566 port_id = rdata->ids.port_id;
1567 if (port_id == FC_FID_DIR_SERV)
1568 break;
1569
Olivier Deprez157378f2022-04-04 15:47:50 +02001570 if (rdata->spp_type != FC_TYPE_FCP) {
1571 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
1572 "No action since spp type isn't FCP\n");
1573 break;
1574 }
1575 if (!(rdata->ids.roles & FC_RPORT_ROLE_FCP_TARGET)) {
1576 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
1577 "Not FCP target so no action\n");
1578 break;
1579 }
1580
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001581 if (!rport) {
1582 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
1583 "port_id=%x - rport notcreated Yet!!\n", port_id);
1584 break;
1585 }
1586 rp = rport->dd_data;
1587 /*
1588 * Perform session upload. Note that rdata->peers is already
1589 * removed from disc->rports list before we get this event.
1590 */
1591 fcport = (struct qedf_rport *)&rp[1];
1592
David Brazdil0f672f62019-12-10 10:32:29 +00001593 spin_lock_irqsave(&fcport->rport_lock, flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001594 /* Only free this fcport if it is offloaded already */
David Brazdil0f672f62019-12-10 10:32:29 +00001595 if (test_bit(QEDF_RPORT_SESSION_READY, &fcport->flags) &&
1596 !test_bit(QEDF_RPORT_UPLOADING_CONNECTION,
1597 &fcport->flags)) {
1598 set_bit(QEDF_RPORT_UPLOADING_CONNECTION,
1599 &fcport->flags);
1600 spin_unlock_irqrestore(&fcport->rport_lock, flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001601 qedf_cleanup_fcport(qedf, fcport);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001602 /*
1603 * Remove fcport to list of qedf_ctx list of offloaded
1604 * ports
1605 */
1606 spin_lock_irqsave(&qedf->hba_lock, flags);
1607 list_del_rcu(&fcport->peers);
1608 spin_unlock_irqrestore(&qedf->hba_lock, flags);
1609
1610 clear_bit(QEDF_RPORT_UPLOADING_CONNECTION,
1611 &fcport->flags);
1612 atomic_dec(&qedf->num_offloads);
David Brazdil0f672f62019-12-10 10:32:29 +00001613 } else {
1614 spin_unlock_irqrestore(&fcport->rport_lock, flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001615 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001616 break;
1617
1618 case RPORT_EV_NONE:
1619 break;
1620 }
1621}
1622
1623static void qedf_abort_io(struct fc_lport *lport)
1624{
1625 /* NO-OP but need to fill in the template */
1626}
1627
1628static void qedf_fcp_cleanup(struct fc_lport *lport)
1629{
1630 /*
1631 * NO-OP but need to fill in template to prevent a NULL
1632 * function pointer dereference during link down. I/Os
1633 * will be flushed when port is uploaded.
1634 */
1635}
1636
1637static struct libfc_function_template qedf_lport_template = {
1638 .frame_send = qedf_xmit,
1639 .fcp_abort_io = qedf_abort_io,
1640 .fcp_cleanup = qedf_fcp_cleanup,
1641 .rport_event_callback = qedf_rport_event_handler,
1642 .elsct_send = qedf_elsct_send,
1643};
1644
1645static void qedf_fcoe_ctlr_setup(struct qedf_ctx *qedf)
1646{
David Brazdil0f672f62019-12-10 10:32:29 +00001647 fcoe_ctlr_init(&qedf->ctlr, FIP_MODE_AUTO);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001648
1649 qedf->ctlr.send = qedf_fip_send;
1650 qedf->ctlr.get_src_addr = qedf_get_src_mac;
1651 ether_addr_copy(qedf->ctlr.ctl_src_addr, qedf->mac);
1652}
1653
1654static void qedf_setup_fdmi(struct qedf_ctx *qedf)
1655{
1656 struct fc_lport *lport = qedf->lport;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001657 u8 buf[8];
Olivier Deprez157378f2022-04-04 15:47:50 +02001658 int pos;
1659 uint32_t i;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001660
1661 /*
Olivier Deprez157378f2022-04-04 15:47:50 +02001662 * fdmi_enabled needs to be set for libfc
1663 * to execute FDMI registration
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001664 */
1665 lport->fdmi_enabled = 1;
1666
1667 /*
1668 * Setup the necessary fc_host attributes to that will be used to fill
1669 * in the FDMI information.
1670 */
1671
1672 /* Get the PCI-e Device Serial Number Capability */
1673 pos = pci_find_ext_capability(qedf->pdev, PCI_EXT_CAP_ID_DSN);
1674 if (pos) {
1675 pos += 4;
1676 for (i = 0; i < 8; i++)
1677 pci_read_config_byte(qedf->pdev, pos + i, &buf[i]);
1678
Olivier Deprez157378f2022-04-04 15:47:50 +02001679 snprintf(fc_host_serial_number(lport->host),
1680 FC_SERIAL_NUMBER_SIZE,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001681 "%02X%02X%02X%02X%02X%02X%02X%02X",
1682 buf[7], buf[6], buf[5], buf[4],
1683 buf[3], buf[2], buf[1], buf[0]);
1684 } else
Olivier Deprez157378f2022-04-04 15:47:50 +02001685 snprintf(fc_host_serial_number(lport->host),
1686 FC_SERIAL_NUMBER_SIZE, "Unknown");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001687
Olivier Deprez157378f2022-04-04 15:47:50 +02001688 snprintf(fc_host_manufacturer(lport->host),
1689 FC_SERIAL_NUMBER_SIZE, "%s", "Marvell Semiconductor Inc.");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001690
Olivier Deprez157378f2022-04-04 15:47:50 +02001691 if (qedf->pdev->device == QL45xxx) {
1692 snprintf(fc_host_model(lport->host),
1693 FC_SYMBOLIC_NAME_SIZE, "%s", "QL45xxx");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001694
Olivier Deprez157378f2022-04-04 15:47:50 +02001695 snprintf(fc_host_model_description(lport->host),
1696 FC_SYMBOLIC_NAME_SIZE, "%s",
1697 "Marvell FastLinQ QL45xxx FCoE Adapter");
1698 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001699
Olivier Deprez157378f2022-04-04 15:47:50 +02001700 if (qedf->pdev->device == QL41xxx) {
1701 snprintf(fc_host_model(lport->host),
1702 FC_SYMBOLIC_NAME_SIZE, "%s", "QL41xxx");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001703
Olivier Deprez157378f2022-04-04 15:47:50 +02001704 snprintf(fc_host_model_description(lport->host),
1705 FC_SYMBOLIC_NAME_SIZE, "%s",
1706 "Marvell FastLinQ QL41xxx FCoE Adapter");
1707 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001708
Olivier Deprez157378f2022-04-04 15:47:50 +02001709 snprintf(fc_host_hardware_version(lport->host),
1710 FC_VERSION_STRING_SIZE, "Rev %d", qedf->pdev->revision);
1711
1712 snprintf(fc_host_driver_version(lport->host),
1713 FC_VERSION_STRING_SIZE, "%s", QEDF_VERSION);
1714
1715 snprintf(fc_host_firmware_version(lport->host),
1716 FC_VERSION_STRING_SIZE, "%d.%d.%d.%d",
1717 FW_MAJOR_VERSION, FW_MINOR_VERSION, FW_REVISION_VERSION,
1718 FW_ENGINEERING_VERSION);
1719
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001720}
1721
1722static int qedf_lport_setup(struct qedf_ctx *qedf)
1723{
1724 struct fc_lport *lport = qedf->lport;
1725
1726 lport->link_up = 0;
1727 lport->max_retry_count = QEDF_FLOGI_RETRY_CNT;
1728 lport->max_rport_retry_count = QEDF_RPORT_RETRY_CNT;
1729 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
1730 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
1731 lport->boot_time = jiffies;
1732 lport->e_d_tov = 2 * 1000;
1733 lport->r_a_tov = 10 * 1000;
1734
1735 /* Set NPIV support */
1736 lport->does_npiv = 1;
1737 fc_host_max_npiv_vports(lport->host) = QEDF_MAX_NPIV;
1738
1739 fc_set_wwnn(lport, qedf->wwnn);
1740 fc_set_wwpn(lport, qedf->wwpn);
1741
David Brazdil0f672f62019-12-10 10:32:29 +00001742 if (fcoe_libfc_config(lport, &qedf->ctlr, &qedf_lport_template, 0)) {
1743 QEDF_ERR(&qedf->dbg_ctx,
1744 "fcoe_libfc_config failed.\n");
1745 return -ENOMEM;
1746 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001747
1748 /* Allocate the exchange manager */
David Brazdil0f672f62019-12-10 10:32:29 +00001749 fc_exch_mgr_alloc(lport, FC_CLASS_3, FCOE_PARAMS_NUM_TASKS,
1750 0xfffe, NULL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001751
1752 if (fc_lport_init_stats(lport))
1753 return -ENOMEM;
1754
1755 /* Finish lport config */
1756 fc_lport_config(lport);
1757
1758 /* Set max frame size */
1759 fc_set_mfs(lport, QEDF_MFS);
1760 fc_host_maxframe_size(lport->host) = lport->mfs;
1761
1762 /* Set default dev_loss_tmo based on module parameter */
1763 fc_host_dev_loss_tmo(lport->host) = qedf_dev_loss_tmo;
1764
1765 /* Set symbolic node name */
Olivier Deprez157378f2022-04-04 15:47:50 +02001766 if (qedf->pdev->device == QL45xxx)
1767 snprintf(fc_host_symbolic_name(lport->host), 256,
1768 "Marvell FastLinQ 45xxx FCoE v%s", QEDF_VERSION);
1769
1770 if (qedf->pdev->device == QL41xxx)
1771 snprintf(fc_host_symbolic_name(lport->host), 256,
1772 "Marvell FastLinQ 41xxx FCoE v%s", QEDF_VERSION);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001773
1774 qedf_setup_fdmi(qedf);
1775
1776 return 0;
1777}
1778
1779/*
1780 * NPIV functions
1781 */
1782
1783static int qedf_vport_libfc_config(struct fc_vport *vport,
1784 struct fc_lport *lport)
1785{
1786 lport->link_up = 0;
1787 lport->qfull = 0;
1788 lport->max_retry_count = QEDF_FLOGI_RETRY_CNT;
1789 lport->max_rport_retry_count = QEDF_RPORT_RETRY_CNT;
1790 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
1791 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
1792 lport->boot_time = jiffies;
1793 lport->e_d_tov = 2 * 1000;
1794 lport->r_a_tov = 10 * 1000;
1795 lport->does_npiv = 1; /* Temporary until we add NPIV support */
1796
1797 /* Allocate stats for vport */
1798 if (fc_lport_init_stats(lport))
1799 return -ENOMEM;
1800
1801 /* Finish lport config */
1802 fc_lport_config(lport);
1803
1804 /* offload related configuration */
1805 lport->crc_offload = 0;
1806 lport->seq_offload = 0;
1807 lport->lro_enabled = 0;
1808 lport->lro_xid = 0;
1809 lport->lso_max = 0;
1810
1811 return 0;
1812}
1813
1814static int qedf_vport_create(struct fc_vport *vport, bool disabled)
1815{
1816 struct Scsi_Host *shost = vport_to_shost(vport);
1817 struct fc_lport *n_port = shost_priv(shost);
1818 struct fc_lport *vn_port;
1819 struct qedf_ctx *base_qedf = lport_priv(n_port);
1820 struct qedf_ctx *vport_qedf;
1821
1822 char buf[32];
1823 int rc = 0;
1824
1825 rc = fcoe_validate_vport_create(vport);
1826 if (rc) {
1827 fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf));
1828 QEDF_WARN(&(base_qedf->dbg_ctx), "Failed to create vport, "
1829 "WWPN (0x%s) already exists.\n", buf);
Olivier Deprez0e641232021-09-23 10:07:05 +02001830 return rc;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001831 }
1832
1833 if (atomic_read(&base_qedf->link_state) != QEDF_LINK_UP) {
1834 QEDF_WARN(&(base_qedf->dbg_ctx), "Cannot create vport "
1835 "because link is not up.\n");
Olivier Deprez0e641232021-09-23 10:07:05 +02001836 return -EIO;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001837 }
1838
1839 vn_port = libfc_vport_create(vport, sizeof(struct qedf_ctx));
1840 if (!vn_port) {
1841 QEDF_WARN(&(base_qedf->dbg_ctx), "Could not create lport "
1842 "for vport.\n");
Olivier Deprez0e641232021-09-23 10:07:05 +02001843 return -ENOMEM;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001844 }
1845
1846 fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf));
1847 QEDF_ERR(&(base_qedf->dbg_ctx), "Creating NPIV port, WWPN=%s.\n",
1848 buf);
1849
1850 /* Copy some fields from base_qedf */
1851 vport_qedf = lport_priv(vn_port);
1852 memcpy(vport_qedf, base_qedf, sizeof(struct qedf_ctx));
1853
1854 /* Set qedf data specific to this vport */
1855 vport_qedf->lport = vn_port;
1856 /* Use same hba_lock as base_qedf */
1857 vport_qedf->hba_lock = base_qedf->hba_lock;
1858 vport_qedf->pdev = base_qedf->pdev;
1859 vport_qedf->cmd_mgr = base_qedf->cmd_mgr;
1860 init_completion(&vport_qedf->flogi_compl);
1861 INIT_LIST_HEAD(&vport_qedf->fcports);
Olivier Deprez157378f2022-04-04 15:47:50 +02001862 INIT_DELAYED_WORK(&vport_qedf->stag_work, qedf_stag_change_work);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001863
1864 rc = qedf_vport_libfc_config(vport, vn_port);
1865 if (rc) {
1866 QEDF_ERR(&(base_qedf->dbg_ctx), "Could not allocate memory "
1867 "for lport stats.\n");
Olivier Deprez0e641232021-09-23 10:07:05 +02001868 goto err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001869 }
1870
1871 fc_set_wwnn(vn_port, vport->node_name);
1872 fc_set_wwpn(vn_port, vport->port_name);
1873 vport_qedf->wwnn = vn_port->wwnn;
1874 vport_qedf->wwpn = vn_port->wwpn;
1875
1876 vn_port->host->transportt = qedf_fc_vport_transport_template;
David Brazdil0f672f62019-12-10 10:32:29 +00001877 vn_port->host->can_queue = FCOE_PARAMS_NUM_TASKS;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001878 vn_port->host->max_lun = qedf_max_lun;
1879 vn_port->host->sg_tablesize = QEDF_MAX_BDS_PER_CMD;
1880 vn_port->host->max_cmd_len = QEDF_MAX_CDB_LEN;
1881
1882 rc = scsi_add_host(vn_port->host, &vport->dev);
1883 if (rc) {
David Brazdil0f672f62019-12-10 10:32:29 +00001884 QEDF_WARN(&base_qedf->dbg_ctx,
1885 "Error adding Scsi_Host rc=0x%x.\n", rc);
Olivier Deprez0e641232021-09-23 10:07:05 +02001886 goto err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001887 }
1888
1889 /* Set default dev_loss_tmo based on module parameter */
1890 fc_host_dev_loss_tmo(vn_port->host) = qedf_dev_loss_tmo;
1891
1892 /* Init libfc stuffs */
1893 memcpy(&vn_port->tt, &qedf_lport_template,
1894 sizeof(qedf_lport_template));
1895 fc_exch_init(vn_port);
1896 fc_elsct_init(vn_port);
1897 fc_lport_init(vn_port);
1898 fc_disc_init(vn_port);
1899 fc_disc_config(vn_port, vn_port);
1900
1901
1902 /* Allocate the exchange manager */
1903 shost = vport_to_shost(vport);
1904 n_port = shost_priv(shost);
1905 fc_exch_mgr_list_clone(n_port, vn_port);
1906
1907 /* Set max frame size */
1908 fc_set_mfs(vn_port, QEDF_MFS);
1909
1910 fc_host_port_type(vn_port->host) = FC_PORTTYPE_UNKNOWN;
1911
1912 if (disabled) {
1913 fc_vport_set_state(vport, FC_VPORT_DISABLED);
1914 } else {
1915 vn_port->boot_time = jiffies;
1916 fc_fabric_login(vn_port);
1917 fc_vport_setlink(vn_port);
1918 }
1919
1920 QEDF_INFO(&(base_qedf->dbg_ctx), QEDF_LOG_NPIV, "vn_port=%p.\n",
1921 vn_port);
1922
1923 /* Set up debug context for vport */
1924 vport_qedf->dbg_ctx.host_no = vn_port->host->host_no;
1925 vport_qedf->dbg_ctx.pdev = base_qedf->pdev;
1926
Olivier Deprez0e641232021-09-23 10:07:05 +02001927 return 0;
1928
1929err:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001930 scsi_host_put(vn_port->host);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001931 return rc;
1932}
1933
1934static int qedf_vport_destroy(struct fc_vport *vport)
1935{
1936 struct Scsi_Host *shost = vport_to_shost(vport);
1937 struct fc_lport *n_port = shost_priv(shost);
1938 struct fc_lport *vn_port = vport->dd_data;
1939 struct qedf_ctx *qedf = lport_priv(vn_port);
1940
1941 if (!qedf) {
1942 QEDF_ERR(NULL, "qedf is NULL.\n");
1943 goto out;
1944 }
1945
1946 /* Set unloading bit on vport qedf_ctx to prevent more I/O */
1947 set_bit(QEDF_UNLOADING, &qedf->flags);
1948
1949 mutex_lock(&n_port->lp_mutex);
1950 list_del(&vn_port->list);
1951 mutex_unlock(&n_port->lp_mutex);
1952
1953 fc_fabric_logoff(vn_port);
1954 fc_lport_destroy(vn_port);
1955
1956 /* Detach from scsi-ml */
1957 fc_remove_host(vn_port->host);
1958 scsi_remove_host(vn_port->host);
1959
1960 /*
1961 * Only try to release the exchange manager if the vn_port
1962 * configuration is complete.
1963 */
1964 if (vn_port->state == LPORT_ST_READY)
1965 fc_exch_mgr_free(vn_port);
1966
1967 /* Free memory used by statistical counters */
1968 fc_lport_free_stats(vn_port);
1969
1970 /* Release Scsi_Host */
Olivier Deprez0e641232021-09-23 10:07:05 +02001971 scsi_host_put(vn_port->host);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001972
1973out:
1974 return 0;
1975}
1976
1977static int qedf_vport_disable(struct fc_vport *vport, bool disable)
1978{
1979 struct fc_lport *lport = vport->dd_data;
1980
1981 if (disable) {
1982 fc_vport_set_state(vport, FC_VPORT_DISABLED);
1983 fc_fabric_logoff(lport);
1984 } else {
1985 lport->boot_time = jiffies;
1986 fc_fabric_login(lport);
1987 fc_vport_setlink(lport);
1988 }
1989 return 0;
1990}
1991
1992/*
1993 * During removal we need to wait for all the vports associated with a port
1994 * to be destroyed so we avoid a race condition where libfc is still trying
1995 * to reap vports while the driver remove function has already reaped the
1996 * driver contexts associated with the physical port.
1997 */
1998static void qedf_wait_for_vport_destroy(struct qedf_ctx *qedf)
1999{
2000 struct fc_host_attrs *fc_host = shost_to_fc_host(qedf->lport->host);
2001
2002 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_NPIV,
2003 "Entered.\n");
2004 while (fc_host->npiv_vports_inuse > 0) {
2005 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_NPIV,
2006 "Waiting for all vports to be reaped.\n");
2007 msleep(1000);
2008 }
2009}
2010
2011/**
2012 * qedf_fcoe_reset - Resets the fcoe
2013 *
2014 * @shost: shost the reset is from
2015 *
2016 * Returns: always 0
2017 */
2018static int qedf_fcoe_reset(struct Scsi_Host *shost)
2019{
2020 struct fc_lport *lport = shost_priv(shost);
2021
2022 qedf_ctx_soft_reset(lport);
2023 return 0;
2024}
2025
Olivier Deprez157378f2022-04-04 15:47:50 +02002026static void qedf_get_host_port_id(struct Scsi_Host *shost)
2027{
2028 struct fc_lport *lport = shost_priv(shost);
2029
2030 fc_host_port_id(shost) = lport->port_id;
2031}
2032
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002033static struct fc_host_statistics *qedf_fc_get_host_stats(struct Scsi_Host
2034 *shost)
2035{
2036 struct fc_host_statistics *qedf_stats;
2037 struct fc_lport *lport = shost_priv(shost);
2038 struct qedf_ctx *qedf = lport_priv(lport);
2039 struct qed_fcoe_stats *fw_fcoe_stats;
2040
2041 qedf_stats = fc_get_host_stats(shost);
2042
2043 /* We don't collect offload stats for specific NPIV ports */
2044 if (lport->vport)
2045 goto out;
2046
2047 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL);
2048 if (!fw_fcoe_stats) {
2049 QEDF_ERR(&(qedf->dbg_ctx), "Could not allocate memory for "
2050 "fw_fcoe_stats.\n");
2051 goto out;
2052 }
2053
2054 mutex_lock(&qedf->stats_mutex);
2055
2056 /* Query firmware for offload stats */
2057 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats);
2058
2059 /*
2060 * The expectation is that we add our offload stats to the stats
2061 * being maintained by libfc each time the fc_get_host_status callback
2062 * is invoked. The additions are not carried over for each call to
2063 * the fc_get_host_stats callback.
2064 */
2065 qedf_stats->tx_frames += fw_fcoe_stats->fcoe_tx_data_pkt_cnt +
2066 fw_fcoe_stats->fcoe_tx_xfer_pkt_cnt +
2067 fw_fcoe_stats->fcoe_tx_other_pkt_cnt;
2068 qedf_stats->rx_frames += fw_fcoe_stats->fcoe_rx_data_pkt_cnt +
2069 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt +
2070 fw_fcoe_stats->fcoe_rx_other_pkt_cnt;
2071 qedf_stats->fcp_input_megabytes +=
2072 do_div(fw_fcoe_stats->fcoe_rx_byte_cnt, 1000000);
2073 qedf_stats->fcp_output_megabytes +=
2074 do_div(fw_fcoe_stats->fcoe_tx_byte_cnt, 1000000);
2075 qedf_stats->rx_words += fw_fcoe_stats->fcoe_rx_byte_cnt / 4;
2076 qedf_stats->tx_words += fw_fcoe_stats->fcoe_tx_byte_cnt / 4;
2077 qedf_stats->invalid_crc_count +=
2078 fw_fcoe_stats->fcoe_silent_drop_pkt_crc_error_cnt;
2079 qedf_stats->dumped_frames =
2080 fw_fcoe_stats->fcoe_silent_drop_total_pkt_cnt;
2081 qedf_stats->error_frames +=
2082 fw_fcoe_stats->fcoe_silent_drop_total_pkt_cnt;
2083 qedf_stats->fcp_input_requests += qedf->input_requests;
2084 qedf_stats->fcp_output_requests += qedf->output_requests;
2085 qedf_stats->fcp_control_requests += qedf->control_requests;
2086 qedf_stats->fcp_packet_aborts += qedf->packet_aborts;
2087 qedf_stats->fcp_frame_alloc_failures += qedf->alloc_failures;
2088
2089 mutex_unlock(&qedf->stats_mutex);
2090 kfree(fw_fcoe_stats);
2091out:
2092 return qedf_stats;
2093}
2094
2095static struct fc_function_template qedf_fc_transport_fn = {
2096 .show_host_node_name = 1,
2097 .show_host_port_name = 1,
2098 .show_host_supported_classes = 1,
2099 .show_host_supported_fc4s = 1,
2100 .show_host_active_fc4s = 1,
2101 .show_host_maxframe_size = 1,
2102
Olivier Deprez157378f2022-04-04 15:47:50 +02002103 .get_host_port_id = qedf_get_host_port_id,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002104 .show_host_port_id = 1,
2105 .show_host_supported_speeds = 1,
2106 .get_host_speed = fc_get_host_speed,
2107 .show_host_speed = 1,
2108 .show_host_port_type = 1,
2109 .get_host_port_state = fc_get_host_port_state,
2110 .show_host_port_state = 1,
2111 .show_host_symbolic_name = 1,
2112
2113 /*
2114 * Tell FC transport to allocate enough space to store the backpointer
2115 * for the associate qedf_rport struct.
2116 */
2117 .dd_fcrport_size = (sizeof(struct fc_rport_libfc_priv) +
2118 sizeof(struct qedf_rport)),
2119 .show_rport_maxframe_size = 1,
2120 .show_rport_supported_classes = 1,
2121 .show_host_fabric_name = 1,
2122 .show_starget_node_name = 1,
2123 .show_starget_port_name = 1,
2124 .show_starget_port_id = 1,
2125 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
2126 .show_rport_dev_loss_tmo = 1,
2127 .get_fc_host_stats = qedf_fc_get_host_stats,
2128 .issue_fc_host_lip = qedf_fcoe_reset,
2129 .vport_create = qedf_vport_create,
2130 .vport_delete = qedf_vport_destroy,
2131 .vport_disable = qedf_vport_disable,
2132 .bsg_request = fc_lport_bsg_request,
2133};
2134
2135static struct fc_function_template qedf_fc_vport_transport_fn = {
2136 .show_host_node_name = 1,
2137 .show_host_port_name = 1,
2138 .show_host_supported_classes = 1,
2139 .show_host_supported_fc4s = 1,
2140 .show_host_active_fc4s = 1,
2141 .show_host_maxframe_size = 1,
2142 .show_host_port_id = 1,
2143 .show_host_supported_speeds = 1,
2144 .get_host_speed = fc_get_host_speed,
2145 .show_host_speed = 1,
2146 .show_host_port_type = 1,
2147 .get_host_port_state = fc_get_host_port_state,
2148 .show_host_port_state = 1,
2149 .show_host_symbolic_name = 1,
2150 .dd_fcrport_size = (sizeof(struct fc_rport_libfc_priv) +
2151 sizeof(struct qedf_rport)),
2152 .show_rport_maxframe_size = 1,
2153 .show_rport_supported_classes = 1,
2154 .show_host_fabric_name = 1,
2155 .show_starget_node_name = 1,
2156 .show_starget_port_name = 1,
2157 .show_starget_port_id = 1,
2158 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
2159 .show_rport_dev_loss_tmo = 1,
2160 .get_fc_host_stats = fc_get_host_stats,
2161 .issue_fc_host_lip = qedf_fcoe_reset,
2162 .bsg_request = fc_lport_bsg_request,
2163};
2164
2165static bool qedf_fp_has_work(struct qedf_fastpath *fp)
2166{
2167 struct qedf_ctx *qedf = fp->qedf;
2168 struct global_queue *que;
2169 struct qed_sb_info *sb_info = fp->sb_info;
2170 struct status_block_e4 *sb = sb_info->sb_virt;
2171 u16 prod_idx;
2172
2173 /* Get the pointer to the global CQ this completion is on */
2174 que = qedf->global_queues[fp->sb_id];
2175
2176 /* Be sure all responses have been written to PI */
2177 rmb();
2178
2179 /* Get the current firmware producer index */
2180 prod_idx = sb->pi_array[QEDF_FCOE_PARAMS_GL_RQ_PI];
2181
2182 return (que->cq_prod_idx != prod_idx);
2183}
2184
2185/*
2186 * Interrupt handler code.
2187 */
2188
2189/* Process completion queue and copy CQE contents for deferred processesing
2190 *
2191 * Return true if we should wake the I/O thread, false if not.
2192 */
2193static bool qedf_process_completions(struct qedf_fastpath *fp)
2194{
2195 struct qedf_ctx *qedf = fp->qedf;
2196 struct qed_sb_info *sb_info = fp->sb_info;
2197 struct status_block_e4 *sb = sb_info->sb_virt;
2198 struct global_queue *que;
2199 u16 prod_idx;
2200 struct fcoe_cqe *cqe;
2201 struct qedf_io_work *io_work;
2202 int num_handled = 0;
2203 unsigned int cpu;
2204 struct qedf_ioreq *io_req = NULL;
2205 u16 xid;
2206 u16 new_cqes;
2207 u32 comp_type;
2208
2209 /* Get the current firmware producer index */
2210 prod_idx = sb->pi_array[QEDF_FCOE_PARAMS_GL_RQ_PI];
2211
2212 /* Get the pointer to the global CQ this completion is on */
2213 que = qedf->global_queues[fp->sb_id];
2214
2215 /* Calculate the amount of new elements since last processing */
2216 new_cqes = (prod_idx >= que->cq_prod_idx) ?
2217 (prod_idx - que->cq_prod_idx) :
2218 0x10000 - que->cq_prod_idx + prod_idx;
2219
2220 /* Save producer index */
2221 que->cq_prod_idx = prod_idx;
2222
2223 while (new_cqes) {
2224 fp->completions++;
2225 num_handled++;
2226 cqe = &que->cq[que->cq_cons_idx];
2227
2228 comp_type = (cqe->cqe_data >> FCOE_CQE_CQE_TYPE_SHIFT) &
2229 FCOE_CQE_CQE_TYPE_MASK;
2230
2231 /*
2232 * Process unsolicited CQEs directly in the interrupt handler
2233 * sine we need the fastpath ID
2234 */
2235 if (comp_type == FCOE_UNSOLIC_CQE_TYPE) {
2236 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_UNSOL,
2237 "Unsolicated CQE.\n");
2238 qedf_process_unsol_compl(qedf, fp->sb_id, cqe);
2239 /*
2240 * Don't add a work list item. Increment consumer
2241 * consumer index and move on.
2242 */
2243 goto inc_idx;
2244 }
2245
2246 xid = cqe->cqe_data & FCOE_CQE_TASK_ID_MASK;
2247 io_req = &qedf->cmd_mgr->cmds[xid];
2248
2249 /*
2250 * Figure out which percpu thread we should queue this I/O
2251 * on.
2252 */
2253 if (!io_req)
2254 /* If there is not io_req assocated with this CQE
2255 * just queue it on CPU 0
2256 */
2257 cpu = 0;
2258 else {
2259 cpu = io_req->cpu;
2260 io_req->int_cpu = smp_processor_id();
2261 }
2262
2263 io_work = mempool_alloc(qedf->io_mempool, GFP_ATOMIC);
2264 if (!io_work) {
2265 QEDF_WARN(&(qedf->dbg_ctx), "Could not allocate "
2266 "work for I/O completion.\n");
2267 continue;
2268 }
2269 memset(io_work, 0, sizeof(struct qedf_io_work));
2270
2271 INIT_WORK(&io_work->work, qedf_fp_io_handler);
2272
2273 /* Copy contents of CQE for deferred processing */
2274 memcpy(&io_work->cqe, cqe, sizeof(struct fcoe_cqe));
2275
2276 io_work->qedf = fp->qedf;
2277 io_work->fp = NULL; /* Only used for unsolicited frames */
2278
2279 queue_work_on(cpu, qedf_io_wq, &io_work->work);
2280
2281inc_idx:
2282 que->cq_cons_idx++;
2283 if (que->cq_cons_idx == fp->cq_num_entries)
2284 que->cq_cons_idx = 0;
2285 new_cqes--;
2286 }
2287
2288 return true;
2289}
2290
2291
2292/* MSI-X fastpath handler code */
2293static irqreturn_t qedf_msix_handler(int irq, void *dev_id)
2294{
2295 struct qedf_fastpath *fp = dev_id;
2296
2297 if (!fp) {
2298 QEDF_ERR(NULL, "fp is null.\n");
2299 return IRQ_HANDLED;
2300 }
2301 if (!fp->sb_info) {
2302 QEDF_ERR(NULL, "fp->sb_info in null.");
2303 return IRQ_HANDLED;
2304 }
2305
2306 /*
2307 * Disable interrupts for this status block while we process new
2308 * completions
2309 */
2310 qed_sb_ack(fp->sb_info, IGU_INT_DISABLE, 0 /*do not update*/);
2311
2312 while (1) {
2313 qedf_process_completions(fp);
2314
2315 if (qedf_fp_has_work(fp) == 0) {
2316 /* Update the sb information */
2317 qed_sb_update_sb_idx(fp->sb_info);
2318
2319 /* Check for more work */
2320 rmb();
2321
2322 if (qedf_fp_has_work(fp) == 0) {
2323 /* Re-enable interrupts */
2324 qed_sb_ack(fp->sb_info, IGU_INT_ENABLE, 1);
2325 return IRQ_HANDLED;
2326 }
2327 }
2328 }
2329
2330 /* Do we ever want to break out of above loop? */
2331 return IRQ_HANDLED;
2332}
2333
2334/* simd handler for MSI/INTa */
2335static void qedf_simd_int_handler(void *cookie)
2336{
2337 /* Cookie is qedf_ctx struct */
2338 struct qedf_ctx *qedf = (struct qedf_ctx *)cookie;
2339
2340 QEDF_WARN(&(qedf->dbg_ctx), "qedf=%p.\n", qedf);
2341}
2342
2343#define QEDF_SIMD_HANDLER_NUM 0
2344static void qedf_sync_free_irqs(struct qedf_ctx *qedf)
2345{
2346 int i;
David Brazdil0f672f62019-12-10 10:32:29 +00002347 u16 vector_idx = 0;
2348 u32 vector;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002349
2350 if (qedf->int_info.msix_cnt) {
2351 for (i = 0; i < qedf->int_info.used_cnt; i++) {
David Brazdil0f672f62019-12-10 10:32:29 +00002352 vector_idx = i * qedf->dev_info.common.num_hwfns +
2353 qed_ops->common->get_affin_hwfn_idx(qedf->cdev);
2354 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
2355 "Freeing IRQ #%d vector_idx=%d.\n",
2356 i, vector_idx);
2357 vector = qedf->int_info.msix[vector_idx].vector;
2358 synchronize_irq(vector);
2359 irq_set_affinity_hint(vector, NULL);
2360 irq_set_affinity_notifier(vector, NULL);
2361 free_irq(vector, &qedf->fp_array[i]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002362 }
2363 } else
2364 qed_ops->common->simd_handler_clean(qedf->cdev,
2365 QEDF_SIMD_HANDLER_NUM);
2366
2367 qedf->int_info.used_cnt = 0;
2368 qed_ops->common->set_fp_int(qedf->cdev, 0);
2369}
2370
2371static int qedf_request_msix_irq(struct qedf_ctx *qedf)
2372{
2373 int i, rc, cpu;
David Brazdil0f672f62019-12-10 10:32:29 +00002374 u16 vector_idx = 0;
2375 u32 vector;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002376
2377 cpu = cpumask_first(cpu_online_mask);
2378 for (i = 0; i < qedf->num_queues; i++) {
David Brazdil0f672f62019-12-10 10:32:29 +00002379 vector_idx = i * qedf->dev_info.common.num_hwfns +
2380 qed_ops->common->get_affin_hwfn_idx(qedf->cdev);
2381 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
2382 "Requesting IRQ #%d vector_idx=%d.\n",
2383 i, vector_idx);
2384 vector = qedf->int_info.msix[vector_idx].vector;
2385 rc = request_irq(vector, qedf_msix_handler, 0, "qedf",
2386 &qedf->fp_array[i]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002387
2388 if (rc) {
2389 QEDF_WARN(&(qedf->dbg_ctx), "request_irq failed.\n");
2390 qedf_sync_free_irqs(qedf);
2391 return rc;
2392 }
2393
2394 qedf->int_info.used_cnt++;
David Brazdil0f672f62019-12-10 10:32:29 +00002395 rc = irq_set_affinity_hint(vector, get_cpu_mask(cpu));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002396 cpu = cpumask_next(cpu, cpu_online_mask);
2397 }
2398
2399 return 0;
2400}
2401
2402static int qedf_setup_int(struct qedf_ctx *qedf)
2403{
2404 int rc = 0;
2405
2406 /*
2407 * Learn interrupt configuration
2408 */
2409 rc = qed_ops->common->set_fp_int(qedf->cdev, num_online_cpus());
2410 if (rc <= 0)
2411 return 0;
2412
2413 rc = qed_ops->common->get_fp_int(qedf->cdev, &qedf->int_info);
2414 if (rc)
2415 return 0;
2416
2417 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC, "Number of msix_cnt = "
2418 "0x%x num of cpus = 0x%x\n", qedf->int_info.msix_cnt,
2419 num_online_cpus());
2420
2421 if (qedf->int_info.msix_cnt)
2422 return qedf_request_msix_irq(qedf);
2423
2424 qed_ops->common->simd_handler_config(qedf->cdev, &qedf,
2425 QEDF_SIMD_HANDLER_NUM, qedf_simd_int_handler);
2426 qedf->int_info.used_cnt = 1;
2427
David Brazdil0f672f62019-12-10 10:32:29 +00002428 QEDF_ERR(&qedf->dbg_ctx,
2429 "Cannot load driver due to a lack of MSI-X vectors.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002430 return -EINVAL;
2431}
2432
2433/* Main function for libfc frame reception */
2434static void qedf_recv_frame(struct qedf_ctx *qedf,
2435 struct sk_buff *skb)
2436{
2437 u32 fr_len;
2438 struct fc_lport *lport;
2439 struct fc_frame_header *fh;
2440 struct fcoe_crc_eof crc_eof;
2441 struct fc_frame *fp;
2442 u8 *mac = NULL;
2443 u8 *dest_mac = NULL;
2444 struct fcoe_hdr *hp;
2445 struct qedf_rport *fcport;
2446 struct fc_lport *vn_port;
2447 u32 f_ctl;
2448
2449 lport = qedf->lport;
2450 if (lport == NULL || lport->state == LPORT_ST_DISABLED) {
2451 QEDF_WARN(NULL, "Invalid lport struct or lport disabled.\n");
2452 kfree_skb(skb);
2453 return;
2454 }
2455
2456 if (skb_is_nonlinear(skb))
2457 skb_linearize(skb);
2458 mac = eth_hdr(skb)->h_source;
2459 dest_mac = eth_hdr(skb)->h_dest;
2460
2461 /* Pull the header */
2462 hp = (struct fcoe_hdr *)skb->data;
2463 fh = (struct fc_frame_header *) skb_transport_header(skb);
2464 skb_pull(skb, sizeof(struct fcoe_hdr));
2465 fr_len = skb->len - sizeof(struct fcoe_crc_eof);
2466
2467 fp = (struct fc_frame *)skb;
2468 fc_frame_init(fp);
2469 fr_dev(fp) = lport;
2470 fr_sof(fp) = hp->fcoe_sof;
2471 if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof))) {
David Brazdil0f672f62019-12-10 10:32:29 +00002472 QEDF_INFO(NULL, QEDF_LOG_LL2, "skb_copy_bits failed.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002473 kfree_skb(skb);
2474 return;
2475 }
2476 fr_eof(fp) = crc_eof.fcoe_eof;
2477 fr_crc(fp) = crc_eof.fcoe_crc32;
2478 if (pskb_trim(skb, fr_len)) {
David Brazdil0f672f62019-12-10 10:32:29 +00002479 QEDF_INFO(NULL, QEDF_LOG_LL2, "pskb_trim failed.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002480 kfree_skb(skb);
2481 return;
2482 }
2483
2484 fh = fc_frame_header_get(fp);
2485
2486 /*
2487 * Invalid frame filters.
2488 */
2489
2490 if (fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA &&
2491 fh->fh_type == FC_TYPE_FCP) {
2492 /* Drop FCP data. We dont this in L2 path */
2493 kfree_skb(skb);
2494 return;
2495 }
2496 if (fh->fh_r_ctl == FC_RCTL_ELS_REQ &&
2497 fh->fh_type == FC_TYPE_ELS) {
2498 switch (fc_frame_payload_op(fp)) {
2499 case ELS_LOGO:
2500 if (ntoh24(fh->fh_s_id) == FC_FID_FLOGI) {
2501 /* drop non-FIP LOGO */
2502 kfree_skb(skb);
2503 return;
2504 }
2505 break;
2506 }
2507 }
2508
2509 if (fh->fh_r_ctl == FC_RCTL_BA_ABTS) {
2510 /* Drop incoming ABTS */
2511 kfree_skb(skb);
2512 return;
2513 }
2514
2515 if (ntoh24(&dest_mac[3]) != ntoh24(fh->fh_d_id)) {
2516 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_LL2,
2517 "FC frame d_id mismatch with MAC %pM.\n", dest_mac);
2518 kfree_skb(skb);
2519 return;
2520 }
2521
2522 if (qedf->ctlr.state) {
2523 if (!ether_addr_equal(mac, qedf->ctlr.dest_addr)) {
2524 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_LL2,
2525 "Wrong source address: mac:%pM dest_addr:%pM.\n",
2526 mac, qedf->ctlr.dest_addr);
2527 kfree_skb(skb);
2528 return;
2529 }
2530 }
2531
2532 vn_port = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id));
2533
2534 /*
2535 * If the destination ID from the frame header does not match what we
2536 * have on record for lport and the search for a NPIV port came up
2537 * empty then this is not addressed to our port so simply drop it.
2538 */
2539 if (lport->port_id != ntoh24(fh->fh_d_id) && !vn_port) {
David Brazdil0f672f62019-12-10 10:32:29 +00002540 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_LL2,
2541 "Dropping frame due to destination mismatch: lport->port_id=0x%x fh->d_id=0x%x.\n",
2542 lport->port_id, ntoh24(fh->fh_d_id));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002543 kfree_skb(skb);
2544 return;
2545 }
2546
2547 f_ctl = ntoh24(fh->fh_f_ctl);
2548 if ((fh->fh_type == FC_TYPE_BLS) && (f_ctl & FC_FC_SEQ_CTX) &&
2549 (f_ctl & FC_FC_EX_CTX)) {
2550 /* Drop incoming ABTS response that has both SEQ/EX CTX set */
David Brazdil0f672f62019-12-10 10:32:29 +00002551 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_LL2,
2552 "Dropping ABTS response as both SEQ/EX CTX set.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002553 kfree_skb(skb);
2554 return;
2555 }
2556
2557 /*
2558 * If a connection is uploading, drop incoming FCoE frames as there
2559 * is a small window where we could try to return a frame while libfc
2560 * is trying to clean things up.
2561 */
2562
2563 /* Get fcport associated with d_id if it exists */
2564 fcport = qedf_fcport_lookup(qedf, ntoh24(fh->fh_d_id));
2565
2566 if (fcport && test_bit(QEDF_RPORT_UPLOADING_CONNECTION,
2567 &fcport->flags)) {
2568 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_LL2,
2569 "Connection uploading, dropping fp=%p.\n", fp);
2570 kfree_skb(skb);
2571 return;
2572 }
2573
2574 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_LL2, "FCoE frame receive: "
2575 "skb=%p fp=%p src=%06x dest=%06x r_ctl=%x fh_type=%x.\n", skb, fp,
2576 ntoh24(fh->fh_s_id), ntoh24(fh->fh_d_id), fh->fh_r_ctl,
2577 fh->fh_type);
2578 if (qedf_dump_frames)
2579 print_hex_dump(KERN_WARNING, "fcoe: ", DUMP_PREFIX_OFFSET, 16,
2580 1, skb->data, skb->len, false);
2581 fc_exch_recv(lport, fp);
2582}
2583
2584static void qedf_ll2_process_skb(struct work_struct *work)
2585{
2586 struct qedf_skb_work *skb_work =
2587 container_of(work, struct qedf_skb_work, work);
2588 struct qedf_ctx *qedf = skb_work->qedf;
2589 struct sk_buff *skb = skb_work->skb;
2590 struct ethhdr *eh;
2591
2592 if (!qedf) {
2593 QEDF_ERR(NULL, "qedf is NULL\n");
2594 goto err_out;
2595 }
2596
2597 eh = (struct ethhdr *)skb->data;
2598
2599 /* Undo VLAN encapsulation */
2600 if (eh->h_proto == htons(ETH_P_8021Q)) {
2601 memmove((u8 *)eh + VLAN_HLEN, eh, ETH_ALEN * 2);
2602 eh = skb_pull(skb, VLAN_HLEN);
2603 skb_reset_mac_header(skb);
2604 }
2605
2606 /*
2607 * Process either a FIP frame or FCoE frame based on the
2608 * protocol value. If it's not either just drop the
2609 * frame.
2610 */
2611 if (eh->h_proto == htons(ETH_P_FIP)) {
2612 qedf_fip_recv(qedf, skb);
2613 goto out;
2614 } else if (eh->h_proto == htons(ETH_P_FCOE)) {
2615 __skb_pull(skb, ETH_HLEN);
2616 qedf_recv_frame(qedf, skb);
2617 goto out;
2618 } else
2619 goto err_out;
2620
2621err_out:
2622 kfree_skb(skb);
2623out:
2624 kfree(skb_work);
2625 return;
2626}
2627
2628static int qedf_ll2_rx(void *cookie, struct sk_buff *skb,
2629 u32 arg1, u32 arg2)
2630{
2631 struct qedf_ctx *qedf = (struct qedf_ctx *)cookie;
2632 struct qedf_skb_work *skb_work;
2633
David Brazdil0f672f62019-12-10 10:32:29 +00002634 if (atomic_read(&qedf->link_state) == QEDF_LINK_DOWN) {
2635 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_LL2,
2636 "Dropping frame as link state is down.\n");
2637 kfree_skb(skb);
2638 return 0;
2639 }
2640
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002641 skb_work = kzalloc(sizeof(struct qedf_skb_work), GFP_ATOMIC);
2642 if (!skb_work) {
2643 QEDF_WARN(&(qedf->dbg_ctx), "Could not allocate skb_work so "
2644 "dropping frame.\n");
2645 kfree_skb(skb);
2646 return 0;
2647 }
2648
2649 INIT_WORK(&skb_work->work, qedf_ll2_process_skb);
2650 skb_work->skb = skb;
2651 skb_work->qedf = qedf;
2652 queue_work(qedf->ll2_recv_wq, &skb_work->work);
2653
2654 return 0;
2655}
2656
2657static struct qed_ll2_cb_ops qedf_ll2_cb_ops = {
2658 .rx_cb = qedf_ll2_rx,
2659 .tx_cb = NULL,
2660};
2661
2662/* Main thread to process I/O completions */
2663void qedf_fp_io_handler(struct work_struct *work)
2664{
2665 struct qedf_io_work *io_work =
2666 container_of(work, struct qedf_io_work, work);
2667 u32 comp_type;
2668
2669 /*
2670 * Deferred part of unsolicited CQE sends
2671 * frame to libfc.
2672 */
2673 comp_type = (io_work->cqe.cqe_data >>
2674 FCOE_CQE_CQE_TYPE_SHIFT) &
2675 FCOE_CQE_CQE_TYPE_MASK;
2676 if (comp_type == FCOE_UNSOLIC_CQE_TYPE &&
2677 io_work->fp)
2678 fc_exch_recv(io_work->qedf->lport, io_work->fp);
2679 else
2680 qedf_process_cqe(io_work->qedf, &io_work->cqe);
2681
2682 kfree(io_work);
2683}
2684
2685static int qedf_alloc_and_init_sb(struct qedf_ctx *qedf,
2686 struct qed_sb_info *sb_info, u16 sb_id)
2687{
2688 struct status_block_e4 *sb_virt;
2689 dma_addr_t sb_phys;
2690 int ret;
2691
2692 sb_virt = dma_alloc_coherent(&qedf->pdev->dev,
2693 sizeof(struct status_block_e4), &sb_phys, GFP_KERNEL);
2694
2695 if (!sb_virt) {
David Brazdil0f672f62019-12-10 10:32:29 +00002696 QEDF_ERR(&qedf->dbg_ctx,
2697 "Status block allocation failed for id = %d.\n",
2698 sb_id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002699 return -ENOMEM;
2700 }
2701
2702 ret = qed_ops->common->sb_init(qedf->cdev, sb_info, sb_virt, sb_phys,
2703 sb_id, QED_SB_TYPE_STORAGE);
2704
2705 if (ret) {
David Brazdil0f672f62019-12-10 10:32:29 +00002706 QEDF_ERR(&qedf->dbg_ctx,
2707 "Status block initialization failed (0x%x) for id = %d.\n",
2708 ret, sb_id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002709 return ret;
2710 }
2711
2712 return 0;
2713}
2714
2715static void qedf_free_sb(struct qedf_ctx *qedf, struct qed_sb_info *sb_info)
2716{
2717 if (sb_info->sb_virt)
2718 dma_free_coherent(&qedf->pdev->dev, sizeof(*sb_info->sb_virt),
2719 (void *)sb_info->sb_virt, sb_info->sb_phys);
2720}
2721
2722static void qedf_destroy_sb(struct qedf_ctx *qedf)
2723{
2724 int id;
2725 struct qedf_fastpath *fp = NULL;
2726
2727 for (id = 0; id < qedf->num_queues; id++) {
2728 fp = &(qedf->fp_array[id]);
2729 if (fp->sb_id == QEDF_SB_ID_NULL)
2730 break;
2731 qedf_free_sb(qedf, fp->sb_info);
2732 kfree(fp->sb_info);
2733 }
2734 kfree(qedf->fp_array);
2735}
2736
2737static int qedf_prepare_sb(struct qedf_ctx *qedf)
2738{
2739 int id;
2740 struct qedf_fastpath *fp;
2741 int ret;
2742
2743 qedf->fp_array =
2744 kcalloc(qedf->num_queues, sizeof(struct qedf_fastpath),
2745 GFP_KERNEL);
2746
2747 if (!qedf->fp_array) {
2748 QEDF_ERR(&(qedf->dbg_ctx), "fastpath array allocation "
2749 "failed.\n");
2750 return -ENOMEM;
2751 }
2752
2753 for (id = 0; id < qedf->num_queues; id++) {
2754 fp = &(qedf->fp_array[id]);
2755 fp->sb_id = QEDF_SB_ID_NULL;
2756 fp->sb_info = kcalloc(1, sizeof(*fp->sb_info), GFP_KERNEL);
2757 if (!fp->sb_info) {
2758 QEDF_ERR(&(qedf->dbg_ctx), "SB info struct "
2759 "allocation failed.\n");
2760 goto err;
2761 }
2762 ret = qedf_alloc_and_init_sb(qedf, fp->sb_info, id);
2763 if (ret) {
2764 QEDF_ERR(&(qedf->dbg_ctx), "SB allocation and "
2765 "initialization failed.\n");
2766 goto err;
2767 }
2768 fp->sb_id = id;
2769 fp->qedf = qedf;
2770 fp->cq_num_entries =
2771 qedf->global_queues[id]->cq_mem_size /
2772 sizeof(struct fcoe_cqe);
2773 }
2774err:
2775 return 0;
2776}
2777
2778void qedf_process_cqe(struct qedf_ctx *qedf, struct fcoe_cqe *cqe)
2779{
2780 u16 xid;
2781 struct qedf_ioreq *io_req;
2782 struct qedf_rport *fcport;
2783 u32 comp_type;
2784
2785 comp_type = (cqe->cqe_data >> FCOE_CQE_CQE_TYPE_SHIFT) &
2786 FCOE_CQE_CQE_TYPE_MASK;
2787
2788 xid = cqe->cqe_data & FCOE_CQE_TASK_ID_MASK;
2789 io_req = &qedf->cmd_mgr->cmds[xid];
2790
2791 /* Completion not for a valid I/O anymore so just return */
David Brazdil0f672f62019-12-10 10:32:29 +00002792 if (!io_req) {
2793 QEDF_ERR(&qedf->dbg_ctx,
2794 "io_req is NULL for xid=0x%x.\n", xid);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002795 return;
David Brazdil0f672f62019-12-10 10:32:29 +00002796 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002797
2798 fcport = io_req->fcport;
2799
2800 if (fcport == NULL) {
David Brazdil0f672f62019-12-10 10:32:29 +00002801 QEDF_ERR(&qedf->dbg_ctx,
2802 "fcport is NULL for xid=0x%x io_req=%p.\n",
2803 xid, io_req);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002804 return;
2805 }
2806
2807 /*
2808 * Check that fcport is offloaded. If it isn't then the spinlock
2809 * isn't valid and shouldn't be taken. We should just return.
2810 */
2811 if (!test_bit(QEDF_RPORT_SESSION_READY, &fcport->flags)) {
David Brazdil0f672f62019-12-10 10:32:29 +00002812 QEDF_ERR(&qedf->dbg_ctx,
2813 "Session not offloaded yet, fcport = %p.\n", fcport);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002814 return;
2815 }
2816
2817
2818 switch (comp_type) {
2819 case FCOE_GOOD_COMPLETION_CQE_TYPE:
2820 atomic_inc(&fcport->free_sqes);
2821 switch (io_req->cmd_type) {
2822 case QEDF_SCSI_CMD:
2823 qedf_scsi_completion(qedf, cqe, io_req);
2824 break;
2825 case QEDF_ELS:
2826 qedf_process_els_compl(qedf, cqe, io_req);
2827 break;
2828 case QEDF_TASK_MGMT_CMD:
2829 qedf_process_tmf_compl(qedf, cqe, io_req);
2830 break;
2831 case QEDF_SEQ_CLEANUP:
2832 qedf_process_seq_cleanup_compl(qedf, cqe, io_req);
2833 break;
2834 }
2835 break;
2836 case FCOE_ERROR_DETECTION_CQE_TYPE:
2837 atomic_inc(&fcport->free_sqes);
2838 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_IO,
2839 "Error detect CQE.\n");
2840 qedf_process_error_detect(qedf, cqe, io_req);
2841 break;
2842 case FCOE_EXCH_CLEANUP_CQE_TYPE:
2843 atomic_inc(&fcport->free_sqes);
2844 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_IO,
2845 "Cleanup CQE.\n");
2846 qedf_process_cleanup_compl(qedf, cqe, io_req);
2847 break;
2848 case FCOE_ABTS_CQE_TYPE:
2849 atomic_inc(&fcport->free_sqes);
2850 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_IO,
2851 "Abort CQE.\n");
2852 qedf_process_abts_compl(qedf, cqe, io_req);
2853 break;
2854 case FCOE_DUMMY_CQE_TYPE:
2855 atomic_inc(&fcport->free_sqes);
2856 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_IO,
2857 "Dummy CQE.\n");
2858 break;
2859 case FCOE_LOCAL_COMP_CQE_TYPE:
2860 atomic_inc(&fcport->free_sqes);
2861 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_IO,
2862 "Local completion CQE.\n");
2863 break;
2864 case FCOE_WARNING_CQE_TYPE:
2865 atomic_inc(&fcport->free_sqes);
2866 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_IO,
2867 "Warning CQE.\n");
2868 qedf_process_warning_compl(qedf, cqe, io_req);
2869 break;
2870 case MAX_FCOE_CQE_TYPE:
2871 atomic_inc(&fcport->free_sqes);
2872 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_IO,
2873 "Max FCoE CQE.\n");
2874 break;
2875 default:
2876 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_IO,
2877 "Default CQE.\n");
2878 break;
2879 }
2880}
2881
2882static void qedf_free_bdq(struct qedf_ctx *qedf)
2883{
2884 int i;
2885
2886 if (qedf->bdq_pbl_list)
2887 dma_free_coherent(&qedf->pdev->dev, QEDF_PAGE_SIZE,
2888 qedf->bdq_pbl_list, qedf->bdq_pbl_list_dma);
2889
2890 if (qedf->bdq_pbl)
2891 dma_free_coherent(&qedf->pdev->dev, qedf->bdq_pbl_mem_size,
2892 qedf->bdq_pbl, qedf->bdq_pbl_dma);
2893
2894 for (i = 0; i < QEDF_BDQ_SIZE; i++) {
2895 if (qedf->bdq[i].buf_addr) {
2896 dma_free_coherent(&qedf->pdev->dev, QEDF_BDQ_BUF_SIZE,
2897 qedf->bdq[i].buf_addr, qedf->bdq[i].buf_dma);
2898 }
2899 }
2900}
2901
2902static void qedf_free_global_queues(struct qedf_ctx *qedf)
2903{
2904 int i;
2905 struct global_queue **gl = qedf->global_queues;
2906
2907 for (i = 0; i < qedf->num_queues; i++) {
2908 if (!gl[i])
2909 continue;
2910
2911 if (gl[i]->cq)
2912 dma_free_coherent(&qedf->pdev->dev,
2913 gl[i]->cq_mem_size, gl[i]->cq, gl[i]->cq_dma);
2914 if (gl[i]->cq_pbl)
2915 dma_free_coherent(&qedf->pdev->dev, gl[i]->cq_pbl_size,
2916 gl[i]->cq_pbl, gl[i]->cq_pbl_dma);
2917
2918 kfree(gl[i]);
2919 }
2920
2921 qedf_free_bdq(qedf);
2922}
2923
2924static int qedf_alloc_bdq(struct qedf_ctx *qedf)
2925{
2926 int i;
2927 struct scsi_bd *pbl;
2928 u64 *list;
2929 dma_addr_t page;
2930
2931 /* Alloc dma memory for BDQ buffers */
2932 for (i = 0; i < QEDF_BDQ_SIZE; i++) {
2933 qedf->bdq[i].buf_addr = dma_alloc_coherent(&qedf->pdev->dev,
2934 QEDF_BDQ_BUF_SIZE, &qedf->bdq[i].buf_dma, GFP_KERNEL);
2935 if (!qedf->bdq[i].buf_addr) {
2936 QEDF_ERR(&(qedf->dbg_ctx), "Could not allocate BDQ "
2937 "buffer %d.\n", i);
2938 return -ENOMEM;
2939 }
2940 }
2941
2942 /* Alloc dma memory for BDQ page buffer list */
2943 qedf->bdq_pbl_mem_size =
2944 QEDF_BDQ_SIZE * sizeof(struct scsi_bd);
2945 qedf->bdq_pbl_mem_size =
2946 ALIGN(qedf->bdq_pbl_mem_size, QEDF_PAGE_SIZE);
2947
2948 qedf->bdq_pbl = dma_alloc_coherent(&qedf->pdev->dev,
2949 qedf->bdq_pbl_mem_size, &qedf->bdq_pbl_dma, GFP_KERNEL);
2950 if (!qedf->bdq_pbl) {
2951 QEDF_ERR(&(qedf->dbg_ctx), "Could not allocate BDQ PBL.\n");
2952 return -ENOMEM;
2953 }
2954
2955 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
2956 "BDQ PBL addr=0x%p dma=%pad\n",
2957 qedf->bdq_pbl, &qedf->bdq_pbl_dma);
2958
2959 /*
2960 * Populate BDQ PBL with physical and virtual address of individual
2961 * BDQ buffers
2962 */
2963 pbl = (struct scsi_bd *)qedf->bdq_pbl;
2964 for (i = 0; i < QEDF_BDQ_SIZE; i++) {
2965 pbl->address.hi = cpu_to_le32(U64_HI(qedf->bdq[i].buf_dma));
2966 pbl->address.lo = cpu_to_le32(U64_LO(qedf->bdq[i].buf_dma));
2967 pbl->opaque.fcoe_opaque.hi = 0;
2968 /* Opaque lo data is an index into the BDQ array */
2969 pbl->opaque.fcoe_opaque.lo = cpu_to_le32(i);
2970 pbl++;
2971 }
2972
2973 /* Allocate list of PBL pages */
David Brazdil0f672f62019-12-10 10:32:29 +00002974 qedf->bdq_pbl_list = dma_alloc_coherent(&qedf->pdev->dev,
2975 QEDF_PAGE_SIZE,
2976 &qedf->bdq_pbl_list_dma,
2977 GFP_KERNEL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002978 if (!qedf->bdq_pbl_list) {
2979 QEDF_ERR(&(qedf->dbg_ctx), "Could not allocate list of PBL pages.\n");
2980 return -ENOMEM;
2981 }
2982
2983 /*
2984 * Now populate PBL list with pages that contain pointers to the
2985 * individual buffers.
2986 */
2987 qedf->bdq_pbl_list_num_entries = qedf->bdq_pbl_mem_size /
2988 QEDF_PAGE_SIZE;
2989 list = (u64 *)qedf->bdq_pbl_list;
2990 page = qedf->bdq_pbl_list_dma;
2991 for (i = 0; i < qedf->bdq_pbl_list_num_entries; i++) {
2992 *list = qedf->bdq_pbl_dma;
2993 list++;
2994 page += QEDF_PAGE_SIZE;
2995 }
2996
2997 return 0;
2998}
2999
3000static int qedf_alloc_global_queues(struct qedf_ctx *qedf)
3001{
3002 u32 *list;
3003 int i;
Olivier Deprez0e641232021-09-23 10:07:05 +02003004 int status;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003005 u32 *pbl;
3006 dma_addr_t page;
3007 int num_pages;
3008
3009 /* Allocate and map CQs, RQs */
3010 /*
3011 * Number of global queues (CQ / RQ). This should
3012 * be <= number of available MSIX vectors for the PF
3013 */
3014 if (!qedf->num_queues) {
3015 QEDF_ERR(&(qedf->dbg_ctx), "No MSI-X vectors available!\n");
Olivier Deprez0e641232021-09-23 10:07:05 +02003016 return -ENOMEM;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003017 }
3018
3019 /*
3020 * Make sure we allocated the PBL that will contain the physical
3021 * addresses of our queues
3022 */
3023 if (!qedf->p_cpuq) {
Olivier Deprez0e641232021-09-23 10:07:05 +02003024 status = -EINVAL;
David Brazdil0f672f62019-12-10 10:32:29 +00003025 QEDF_ERR(&qedf->dbg_ctx, "p_cpuq is NULL.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003026 goto mem_alloc_failure;
3027 }
3028
3029 qedf->global_queues = kzalloc((sizeof(struct global_queue *)
3030 * qedf->num_queues), GFP_KERNEL);
3031 if (!qedf->global_queues) {
3032 QEDF_ERR(&(qedf->dbg_ctx), "Unable to allocate global "
3033 "queues array ptr memory\n");
3034 return -ENOMEM;
3035 }
3036 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
3037 "qedf->global_queues=%p.\n", qedf->global_queues);
3038
3039 /* Allocate DMA coherent buffers for BDQ */
Olivier Deprez0e641232021-09-23 10:07:05 +02003040 status = qedf_alloc_bdq(qedf);
3041 if (status) {
David Brazdil0f672f62019-12-10 10:32:29 +00003042 QEDF_ERR(&qedf->dbg_ctx, "Unable to allocate bdq.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003043 goto mem_alloc_failure;
David Brazdil0f672f62019-12-10 10:32:29 +00003044 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003045
3046 /* Allocate a CQ and an associated PBL for each MSI-X vector */
3047 for (i = 0; i < qedf->num_queues; i++) {
3048 qedf->global_queues[i] = kzalloc(sizeof(struct global_queue),
3049 GFP_KERNEL);
3050 if (!qedf->global_queues[i]) {
3051 QEDF_WARN(&(qedf->dbg_ctx), "Unable to allocate "
3052 "global queue %d.\n", i);
3053 status = -ENOMEM;
3054 goto mem_alloc_failure;
3055 }
3056
3057 qedf->global_queues[i]->cq_mem_size =
3058 FCOE_PARAMS_CQ_NUM_ENTRIES * sizeof(struct fcoe_cqe);
3059 qedf->global_queues[i]->cq_mem_size =
3060 ALIGN(qedf->global_queues[i]->cq_mem_size, QEDF_PAGE_SIZE);
3061
3062 qedf->global_queues[i]->cq_pbl_size =
3063 (qedf->global_queues[i]->cq_mem_size /
3064 PAGE_SIZE) * sizeof(void *);
3065 qedf->global_queues[i]->cq_pbl_size =
3066 ALIGN(qedf->global_queues[i]->cq_pbl_size, QEDF_PAGE_SIZE);
3067
3068 qedf->global_queues[i]->cq =
David Brazdil0f672f62019-12-10 10:32:29 +00003069 dma_alloc_coherent(&qedf->pdev->dev,
3070 qedf->global_queues[i]->cq_mem_size,
3071 &qedf->global_queues[i]->cq_dma,
3072 GFP_KERNEL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003073
3074 if (!qedf->global_queues[i]->cq) {
3075 QEDF_WARN(&(qedf->dbg_ctx), "Could not allocate cq.\n");
3076 status = -ENOMEM;
3077 goto mem_alloc_failure;
3078 }
3079
3080 qedf->global_queues[i]->cq_pbl =
David Brazdil0f672f62019-12-10 10:32:29 +00003081 dma_alloc_coherent(&qedf->pdev->dev,
3082 qedf->global_queues[i]->cq_pbl_size,
3083 &qedf->global_queues[i]->cq_pbl_dma,
3084 GFP_KERNEL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003085
3086 if (!qedf->global_queues[i]->cq_pbl) {
3087 QEDF_WARN(&(qedf->dbg_ctx), "Could not allocate cq PBL.\n");
3088 status = -ENOMEM;
3089 goto mem_alloc_failure;
3090 }
3091
3092 /* Create PBL */
3093 num_pages = qedf->global_queues[i]->cq_mem_size /
3094 QEDF_PAGE_SIZE;
3095 page = qedf->global_queues[i]->cq_dma;
3096 pbl = (u32 *)qedf->global_queues[i]->cq_pbl;
3097
3098 while (num_pages--) {
3099 *pbl = U64_LO(page);
3100 pbl++;
3101 *pbl = U64_HI(page);
3102 pbl++;
3103 page += QEDF_PAGE_SIZE;
3104 }
3105 /* Set the initial consumer index for cq */
3106 qedf->global_queues[i]->cq_cons_idx = 0;
3107 }
3108
3109 list = (u32 *)qedf->p_cpuq;
3110
3111 /*
3112 * The list is built as follows: CQ#0 PBL pointer, RQ#0 PBL pointer,
3113 * CQ#1 PBL pointer, RQ#1 PBL pointer, etc. Each PBL pointer points
3114 * to the physical address which contains an array of pointers to
3115 * the physical addresses of the specific queue pages.
3116 */
3117 for (i = 0; i < qedf->num_queues; i++) {
3118 *list = U64_LO(qedf->global_queues[i]->cq_pbl_dma);
3119 list++;
3120 *list = U64_HI(qedf->global_queues[i]->cq_pbl_dma);
3121 list++;
3122 *list = U64_LO(0);
3123 list++;
3124 *list = U64_HI(0);
3125 list++;
3126 }
3127
3128 return 0;
3129
3130mem_alloc_failure:
3131 qedf_free_global_queues(qedf);
3132 return status;
3133}
3134
3135static int qedf_set_fcoe_pf_param(struct qedf_ctx *qedf)
3136{
3137 u8 sq_num_pbl_pages;
3138 u32 sq_mem_size;
3139 u32 cq_mem_size;
3140 u32 cq_num_entries;
3141 int rval;
3142
3143 /*
3144 * The number of completion queues/fastpath interrupts/status blocks
3145 * we allocation is the minimum off:
3146 *
3147 * Number of CPUs
3148 * Number allocated by qed for our PCI function
3149 */
3150 qedf->num_queues = MIN_NUM_CPUS_MSIX(qedf);
3151
3152 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC, "Number of CQs is %d.\n",
3153 qedf->num_queues);
3154
David Brazdil0f672f62019-12-10 10:32:29 +00003155 qedf->p_cpuq = dma_alloc_coherent(&qedf->pdev->dev,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003156 qedf->num_queues * sizeof(struct qedf_glbl_q_params),
David Brazdil0f672f62019-12-10 10:32:29 +00003157 &qedf->hw_p_cpuq, GFP_KERNEL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003158
3159 if (!qedf->p_cpuq) {
David Brazdil0f672f62019-12-10 10:32:29 +00003160 QEDF_ERR(&(qedf->dbg_ctx), "dma_alloc_coherent failed.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003161 return 1;
3162 }
3163
3164 rval = qedf_alloc_global_queues(qedf);
3165 if (rval) {
3166 QEDF_ERR(&(qedf->dbg_ctx), "Global queue allocation "
3167 "failed.\n");
3168 return 1;
3169 }
3170
3171 /* Calculate SQ PBL size in the same manner as in qedf_sq_alloc() */
3172 sq_mem_size = SQ_NUM_ENTRIES * sizeof(struct fcoe_wqe);
3173 sq_mem_size = ALIGN(sq_mem_size, QEDF_PAGE_SIZE);
3174 sq_num_pbl_pages = (sq_mem_size / QEDF_PAGE_SIZE);
3175
3176 /* Calculate CQ num entries */
3177 cq_mem_size = FCOE_PARAMS_CQ_NUM_ENTRIES * sizeof(struct fcoe_cqe);
3178 cq_mem_size = ALIGN(cq_mem_size, QEDF_PAGE_SIZE);
3179 cq_num_entries = cq_mem_size / sizeof(struct fcoe_cqe);
3180
3181 memset(&(qedf->pf_params), 0, sizeof(qedf->pf_params));
3182
3183 /* Setup the value for fcoe PF */
3184 qedf->pf_params.fcoe_pf_params.num_cons = QEDF_MAX_SESSIONS;
3185 qedf->pf_params.fcoe_pf_params.num_tasks = FCOE_PARAMS_NUM_TASKS;
3186 qedf->pf_params.fcoe_pf_params.glbl_q_params_addr =
3187 (u64)qedf->hw_p_cpuq;
3188 qedf->pf_params.fcoe_pf_params.sq_num_pbl_pages = sq_num_pbl_pages;
3189
3190 qedf->pf_params.fcoe_pf_params.rq_buffer_log_size = 0;
3191
3192 qedf->pf_params.fcoe_pf_params.cq_num_entries = cq_num_entries;
3193 qedf->pf_params.fcoe_pf_params.num_cqs = qedf->num_queues;
3194
3195 /* log_page_size: 12 for 4KB pages */
3196 qedf->pf_params.fcoe_pf_params.log_page_size = ilog2(QEDF_PAGE_SIZE);
3197
3198 qedf->pf_params.fcoe_pf_params.mtu = 9000;
3199 qedf->pf_params.fcoe_pf_params.gl_rq_pi = QEDF_FCOE_PARAMS_GL_RQ_PI;
3200 qedf->pf_params.fcoe_pf_params.gl_cmd_pi = QEDF_FCOE_PARAMS_GL_CMD_PI;
3201
3202 /* BDQ address and size */
3203 qedf->pf_params.fcoe_pf_params.bdq_pbl_base_addr[0] =
3204 qedf->bdq_pbl_list_dma;
3205 qedf->pf_params.fcoe_pf_params.bdq_pbl_num_entries[0] =
3206 qedf->bdq_pbl_list_num_entries;
3207 qedf->pf_params.fcoe_pf_params.rq_buffer_size = QEDF_BDQ_BUF_SIZE;
3208
3209 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
3210 "bdq_list=%p bdq_pbl_list_dma=%llx bdq_pbl_list_entries=%d.\n",
3211 qedf->bdq_pbl_list,
3212 qedf->pf_params.fcoe_pf_params.bdq_pbl_base_addr[0],
3213 qedf->pf_params.fcoe_pf_params.bdq_pbl_num_entries[0]);
3214
3215 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
3216 "cq_num_entries=%d.\n",
3217 qedf->pf_params.fcoe_pf_params.cq_num_entries);
3218
3219 return 0;
3220}
3221
3222/* Free DMA coherent memory for array of queue pointers we pass to qed */
3223static void qedf_free_fcoe_pf_param(struct qedf_ctx *qedf)
3224{
3225 size_t size = 0;
3226
3227 if (qedf->p_cpuq) {
3228 size = qedf->num_queues * sizeof(struct qedf_glbl_q_params);
David Brazdil0f672f62019-12-10 10:32:29 +00003229 dma_free_coherent(&qedf->pdev->dev, size, qedf->p_cpuq,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003230 qedf->hw_p_cpuq);
3231 }
3232
3233 qedf_free_global_queues(qedf);
3234
David Brazdil0f672f62019-12-10 10:32:29 +00003235 kfree(qedf->global_queues);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003236}
3237
3238/*
3239 * PCI driver functions
3240 */
3241
3242static const struct pci_device_id qedf_pci_tbl[] = {
3243 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, 0x165c) },
3244 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, 0x8080) },
3245 {0}
3246};
3247MODULE_DEVICE_TABLE(pci, qedf_pci_tbl);
3248
3249static struct pci_driver qedf_pci_driver = {
3250 .name = QEDF_MODULE_NAME,
3251 .id_table = qedf_pci_tbl,
3252 .probe = qedf_probe,
3253 .remove = qedf_remove,
David Brazdil0f672f62019-12-10 10:32:29 +00003254 .shutdown = qedf_shutdown,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003255};
3256
3257static int __qedf_probe(struct pci_dev *pdev, int mode)
3258{
3259 int rc = -EINVAL;
3260 struct fc_lport *lport;
Olivier Deprez0e641232021-09-23 10:07:05 +02003261 struct qedf_ctx *qedf = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003262 struct Scsi_Host *host;
3263 bool is_vf = false;
3264 struct qed_ll2_params params;
3265 char host_buf[20];
3266 struct qed_link_params link_params;
3267 int status;
3268 void *task_start, *task_end;
3269 struct qed_slowpath_params slowpath_params;
3270 struct qed_probe_params qed_params;
Olivier Deprez157378f2022-04-04 15:47:50 +02003271 u16 retry_cnt = 10;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003272
3273 /*
3274 * When doing error recovery we didn't reap the lport so don't try
3275 * to reallocate it.
3276 */
Olivier Deprez157378f2022-04-04 15:47:50 +02003277retry_probe:
3278 if (mode == QEDF_MODE_RECOVERY)
3279 msleep(2000);
3280
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003281 if (mode != QEDF_MODE_RECOVERY) {
3282 lport = libfc_host_alloc(&qedf_host_template,
3283 sizeof(struct qedf_ctx));
3284
3285 if (!lport) {
3286 QEDF_ERR(NULL, "Could not allocate lport.\n");
3287 rc = -ENOMEM;
3288 goto err0;
3289 }
3290
David Brazdil0f672f62019-12-10 10:32:29 +00003291 fc_disc_init(lport);
3292
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003293 /* Initialize qedf_ctx */
3294 qedf = lport_priv(lport);
Olivier Deprez0e641232021-09-23 10:07:05 +02003295 set_bit(QEDF_PROBING, &qedf->flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003296 qedf->lport = lport;
3297 qedf->ctlr.lp = lport;
3298 qedf->pdev = pdev;
3299 qedf->dbg_ctx.pdev = pdev;
3300 qedf->dbg_ctx.host_no = lport->host->host_no;
3301 spin_lock_init(&qedf->hba_lock);
3302 INIT_LIST_HEAD(&qedf->fcports);
3303 qedf->curr_conn_id = QEDF_MAX_SESSIONS - 1;
3304 atomic_set(&qedf->num_offloads, 0);
3305 qedf->stop_io_on_error = false;
3306 pci_set_drvdata(pdev, qedf);
3307 init_completion(&qedf->fipvlan_compl);
3308 mutex_init(&qedf->stats_mutex);
David Brazdil0f672f62019-12-10 10:32:29 +00003309 mutex_init(&qedf->flush_mutex);
Olivier Deprez157378f2022-04-04 15:47:50 +02003310 qedf->flogi_pending = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003311
3312 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_INFO,
3313 "QLogic FastLinQ FCoE Module qedf %s, "
3314 "FW %d.%d.%d.%d\n", QEDF_VERSION,
3315 FW_MAJOR_VERSION, FW_MINOR_VERSION, FW_REVISION_VERSION,
3316 FW_ENGINEERING_VERSION);
3317 } else {
3318 /* Init pointers during recovery */
3319 qedf = pci_get_drvdata(pdev);
Olivier Deprez0e641232021-09-23 10:07:05 +02003320 set_bit(QEDF_PROBING, &qedf->flags);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003321 lport = qedf->lport;
3322 }
3323
Olivier Deprez0e641232021-09-23 10:07:05 +02003324 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC, "Probe started.\n");
3325
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003326 host = lport->host;
3327
3328 /* Allocate mempool for qedf_io_work structs */
3329 qedf->io_mempool = mempool_create_slab_pool(QEDF_IO_WORK_MIN,
3330 qedf_io_work_cache);
3331 if (qedf->io_mempool == NULL) {
3332 QEDF_ERR(&(qedf->dbg_ctx), "qedf->io_mempool is NULL.\n");
3333 goto err1;
3334 }
3335 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_INFO, "qedf->io_mempool=%p.\n",
3336 qedf->io_mempool);
3337
3338 sprintf(host_buf, "qedf_%u_link",
3339 qedf->lport->host->host_no);
3340 qedf->link_update_wq = create_workqueue(host_buf);
3341 INIT_DELAYED_WORK(&qedf->link_update, qedf_handle_link_update);
3342 INIT_DELAYED_WORK(&qedf->link_recovery, qedf_link_recovery);
3343 INIT_DELAYED_WORK(&qedf->grcdump_work, qedf_wq_grcdump);
Olivier Deprez157378f2022-04-04 15:47:50 +02003344 INIT_DELAYED_WORK(&qedf->stag_work, qedf_stag_change_work);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003345 qedf->fipvlan_retries = qedf_fipvlan_retries;
3346 /* Set a default prio in case DCBX doesn't converge */
3347 if (qedf_default_prio > -1) {
3348 /*
3349 * This is the case where we pass a modparam in so we want to
3350 * honor it even if dcbx doesn't converge.
3351 */
3352 qedf->prio = qedf_default_prio;
3353 } else
3354 qedf->prio = QEDF_DEFAULT_PRIO;
3355
3356 /*
3357 * Common probe. Takes care of basic hardware init and pci_*
3358 * functions.
3359 */
3360 memset(&qed_params, 0, sizeof(qed_params));
3361 qed_params.protocol = QED_PROTOCOL_FCOE;
3362 qed_params.dp_module = qedf_dp_module;
3363 qed_params.dp_level = qedf_dp_level;
3364 qed_params.is_vf = is_vf;
3365 qedf->cdev = qed_ops->common->probe(pdev, &qed_params);
3366 if (!qedf->cdev) {
Olivier Deprez157378f2022-04-04 15:47:50 +02003367 if ((mode == QEDF_MODE_RECOVERY) && retry_cnt) {
3368 QEDF_ERR(&qedf->dbg_ctx,
3369 "Retry %d initialize hardware\n", retry_cnt);
3370 retry_cnt--;
3371 goto retry_probe;
3372 }
David Brazdil0f672f62019-12-10 10:32:29 +00003373 QEDF_ERR(&qedf->dbg_ctx, "common probe failed.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003374 rc = -ENODEV;
3375 goto err1;
3376 }
3377
3378 /* Learn information crucial for qedf to progress */
3379 rc = qed_ops->fill_dev_info(qedf->cdev, &qedf->dev_info);
3380 if (rc) {
3381 QEDF_ERR(&(qedf->dbg_ctx), "Failed to dev info.\n");
3382 goto err1;
3383 }
3384
David Brazdil0f672f62019-12-10 10:32:29 +00003385 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
3386 "dev_info: num_hwfns=%d affin_hwfn_idx=%d.\n",
3387 qedf->dev_info.common.num_hwfns,
3388 qed_ops->common->get_affin_hwfn_idx(qedf->cdev));
3389
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003390 /* queue allocation code should come here
3391 * order should be
3392 * slowpath_start
3393 * status block allocation
3394 * interrupt registration (to get min number of queues)
3395 * set_fcoe_pf_param
3396 * qed_sp_fcoe_func_start
3397 */
3398 rc = qedf_set_fcoe_pf_param(qedf);
3399 if (rc) {
3400 QEDF_ERR(&(qedf->dbg_ctx), "Cannot set fcoe pf param.\n");
3401 goto err2;
3402 }
3403 qed_ops->common->update_pf_params(qedf->cdev, &qedf->pf_params);
3404
Olivier Deprez157378f2022-04-04 15:47:50 +02003405 /* Learn information crucial for qedf to progress */
3406 rc = qed_ops->fill_dev_info(qedf->cdev, &qedf->dev_info);
3407 if (rc) {
3408 QEDF_ERR(&qedf->dbg_ctx, "Failed to fill dev info.\n");
3409 goto err2;
3410 }
3411
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003412 /* Record BDQ producer doorbell addresses */
3413 qedf->bdq_primary_prod = qedf->dev_info.primary_dbq_rq_addr;
3414 qedf->bdq_secondary_prod = qedf->dev_info.secondary_bdq_rq_addr;
3415 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
3416 "BDQ primary_prod=%p secondary_prod=%p.\n", qedf->bdq_primary_prod,
3417 qedf->bdq_secondary_prod);
3418
3419 qed_ops->register_ops(qedf->cdev, &qedf_cb_ops, qedf);
3420
3421 rc = qedf_prepare_sb(qedf);
3422 if (rc) {
3423
3424 QEDF_ERR(&(qedf->dbg_ctx), "Cannot start slowpath.\n");
3425 goto err2;
3426 }
3427
3428 /* Start the Slowpath-process */
3429 slowpath_params.int_mode = QED_INT_MODE_MSIX;
3430 slowpath_params.drv_major = QEDF_DRIVER_MAJOR_VER;
3431 slowpath_params.drv_minor = QEDF_DRIVER_MINOR_VER;
3432 slowpath_params.drv_rev = QEDF_DRIVER_REV_VER;
3433 slowpath_params.drv_eng = QEDF_DRIVER_ENG_VER;
3434 strncpy(slowpath_params.name, "qedf", QED_DRV_VER_STR_SIZE);
3435 rc = qed_ops->common->slowpath_start(qedf->cdev, &slowpath_params);
3436 if (rc) {
3437 QEDF_ERR(&(qedf->dbg_ctx), "Cannot start slowpath.\n");
3438 goto err2;
3439 }
3440
3441 /*
3442 * update_pf_params needs to be called before and after slowpath
3443 * start
3444 */
3445 qed_ops->common->update_pf_params(qedf->cdev, &qedf->pf_params);
3446
3447 /* Setup interrupts */
3448 rc = qedf_setup_int(qedf);
David Brazdil0f672f62019-12-10 10:32:29 +00003449 if (rc) {
3450 QEDF_ERR(&qedf->dbg_ctx, "Setup interrupts failed.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003451 goto err3;
David Brazdil0f672f62019-12-10 10:32:29 +00003452 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003453
3454 rc = qed_ops->start(qedf->cdev, &qedf->tasks);
3455 if (rc) {
3456 QEDF_ERR(&(qedf->dbg_ctx), "Cannot start FCoE function.\n");
3457 goto err4;
3458 }
3459 task_start = qedf_get_task_mem(&qedf->tasks, 0);
3460 task_end = qedf_get_task_mem(&qedf->tasks, MAX_TID_BLOCKS_FCOE - 1);
3461 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC, "Task context start=%p, "
3462 "end=%p block_size=%u.\n", task_start, task_end,
3463 qedf->tasks.size);
3464
3465 /*
3466 * We need to write the number of BDs in the BDQ we've preallocated so
3467 * the f/w will do a prefetch and we'll get an unsolicited CQE when a
3468 * packet arrives.
3469 */
3470 qedf->bdq_prod_idx = QEDF_BDQ_SIZE;
3471 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
3472 "Writing %d to primary and secondary BDQ doorbell registers.\n",
3473 qedf->bdq_prod_idx);
3474 writew(qedf->bdq_prod_idx, qedf->bdq_primary_prod);
Olivier Deprez157378f2022-04-04 15:47:50 +02003475 readw(qedf->bdq_primary_prod);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003476 writew(qedf->bdq_prod_idx, qedf->bdq_secondary_prod);
Olivier Deprez157378f2022-04-04 15:47:50 +02003477 readw(qedf->bdq_secondary_prod);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003478
3479 qed_ops->common->set_power_state(qedf->cdev, PCI_D0);
3480
3481 /* Now that the dev_info struct has been filled in set the MAC
3482 * address
3483 */
3484 ether_addr_copy(qedf->mac, qedf->dev_info.common.hw_mac);
3485 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC, "MAC address is %pM.\n",
3486 qedf->mac);
3487
3488 /*
3489 * Set the WWNN and WWPN in the following way:
3490 *
3491 * If the info we get from qed is non-zero then use that to set the
3492 * WWPN and WWNN. Otherwise fall back to use fcoe_wwn_from_mac() based
3493 * on the MAC address.
3494 */
3495 if (qedf->dev_info.wwnn != 0 && qedf->dev_info.wwpn != 0) {
3496 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
3497 "Setting WWPN and WWNN from qed dev_info.\n");
3498 qedf->wwnn = qedf->dev_info.wwnn;
3499 qedf->wwpn = qedf->dev_info.wwpn;
3500 } else {
3501 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
3502 "Setting WWPN and WWNN using fcoe_wwn_from_mac().\n");
3503 qedf->wwnn = fcoe_wwn_from_mac(qedf->mac, 1, 0);
3504 qedf->wwpn = fcoe_wwn_from_mac(qedf->mac, 2, 0);
3505 }
3506 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC, "WWNN=%016llx "
3507 "WWPN=%016llx.\n", qedf->wwnn, qedf->wwpn);
3508
3509 sprintf(host_buf, "host_%d", host->host_no);
3510 qed_ops->common->set_name(qedf->cdev, host_buf);
3511
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003512 /* Allocate cmd mgr */
3513 qedf->cmd_mgr = qedf_cmd_mgr_alloc(qedf);
3514 if (!qedf->cmd_mgr) {
3515 QEDF_ERR(&(qedf->dbg_ctx), "Failed to allocate cmd mgr.\n");
3516 rc = -ENOMEM;
3517 goto err5;
3518 }
3519
3520 if (mode != QEDF_MODE_RECOVERY) {
3521 host->transportt = qedf_fc_transport_template;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003522 host->max_lun = qedf_max_lun;
3523 host->max_cmd_len = QEDF_MAX_CDB_LEN;
David Brazdil0f672f62019-12-10 10:32:29 +00003524 host->can_queue = FCOE_PARAMS_NUM_TASKS;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003525 rc = scsi_add_host(host, &pdev->dev);
David Brazdil0f672f62019-12-10 10:32:29 +00003526 if (rc) {
3527 QEDF_WARN(&qedf->dbg_ctx,
3528 "Error adding Scsi_Host rc=0x%x.\n", rc);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003529 goto err6;
David Brazdil0f672f62019-12-10 10:32:29 +00003530 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003531 }
3532
3533 memset(&params, 0, sizeof(params));
David Brazdil0f672f62019-12-10 10:32:29 +00003534 params.mtu = QEDF_LL2_BUF_SIZE;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003535 ether_addr_copy(params.ll2_mac_address, qedf->mac);
3536
3537 /* Start LL2 processing thread */
3538 snprintf(host_buf, 20, "qedf_%d_ll2", host->host_no);
3539 qedf->ll2_recv_wq =
3540 create_workqueue(host_buf);
3541 if (!qedf->ll2_recv_wq) {
3542 QEDF_ERR(&(qedf->dbg_ctx), "Failed to LL2 workqueue.\n");
3543 rc = -ENOMEM;
3544 goto err7;
3545 }
3546
3547#ifdef CONFIG_DEBUG_FS
3548 qedf_dbg_host_init(&(qedf->dbg_ctx), qedf_debugfs_ops,
3549 qedf_dbg_fops);
3550#endif
3551
3552 /* Start LL2 */
3553 qed_ops->ll2->register_cb_ops(qedf->cdev, &qedf_ll2_cb_ops, qedf);
3554 rc = qed_ops->ll2->start(qedf->cdev, &params);
3555 if (rc) {
3556 QEDF_ERR(&(qedf->dbg_ctx), "Could not start Light L2.\n");
3557 goto err7;
3558 }
3559 set_bit(QEDF_LL2_STARTED, &qedf->flags);
3560
3561 /* Set initial FIP/FCoE VLAN to NULL */
3562 qedf->vlan_id = 0;
3563
3564 /*
3565 * No need to setup fcoe_ctlr or fc_lport objects during recovery since
3566 * they were not reaped during the unload process.
3567 */
3568 if (mode != QEDF_MODE_RECOVERY) {
3569 /* Setup imbedded fcoe controller */
3570 qedf_fcoe_ctlr_setup(qedf);
3571
3572 /* Setup lport */
3573 rc = qedf_lport_setup(qedf);
3574 if (rc) {
3575 QEDF_ERR(&(qedf->dbg_ctx),
3576 "qedf_lport_setup failed.\n");
3577 goto err7;
3578 }
3579 }
3580
3581 sprintf(host_buf, "qedf_%u_timer", qedf->lport->host->host_no);
3582 qedf->timer_work_queue =
3583 create_workqueue(host_buf);
3584 if (!qedf->timer_work_queue) {
3585 QEDF_ERR(&(qedf->dbg_ctx), "Failed to start timer "
3586 "workqueue.\n");
3587 rc = -ENOMEM;
3588 goto err7;
3589 }
3590
3591 /* DPC workqueue is not reaped during recovery unload */
3592 if (mode != QEDF_MODE_RECOVERY) {
3593 sprintf(host_buf, "qedf_%u_dpc",
3594 qedf->lport->host->host_no);
3595 qedf->dpc_wq = create_workqueue(host_buf);
3596 }
Olivier Deprez157378f2022-04-04 15:47:50 +02003597 INIT_DELAYED_WORK(&qedf->recovery_work, qedf_recovery_handler);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003598
3599 /*
3600 * GRC dump and sysfs parameters are not reaped during the recovery
3601 * unload process.
3602 */
3603 if (mode != QEDF_MODE_RECOVERY) {
3604 qedf->grcdump_size =
3605 qed_ops->common->dbg_all_data_size(qedf->cdev);
3606 if (qedf->grcdump_size) {
3607 rc = qedf_alloc_grc_dump_buf(&qedf->grcdump,
3608 qedf->grcdump_size);
3609 if (rc) {
3610 QEDF_ERR(&(qedf->dbg_ctx),
3611 "GRC Dump buffer alloc failed.\n");
3612 qedf->grcdump = NULL;
3613 }
3614
3615 QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
3616 "grcdump: addr=%p, size=%u.\n",
3617 qedf->grcdump, qedf->grcdump_size);
3618 }
3619 qedf_create_sysfs_ctx_attr(qedf);
3620
3621 /* Initialize I/O tracing for this adapter */
3622 spin_lock_init(&qedf->io_trace_lock);
3623 qedf->io_trace_idx = 0;
3624 }
3625
3626 init_completion(&qedf->flogi_compl);
3627
3628 status = qed_ops->common->update_drv_state(qedf->cdev, true);
3629 if (status)
3630 QEDF_ERR(&(qedf->dbg_ctx),
3631 "Failed to send drv state to MFW.\n");
3632
3633 memset(&link_params, 0, sizeof(struct qed_link_params));
3634 link_params.link_up = true;
3635 status = qed_ops->common->set_link(qedf->cdev, &link_params);
3636 if (status)
3637 QEDF_WARN(&(qedf->dbg_ctx), "set_link failed.\n");
3638
3639 /* Start/restart discovery */
3640 if (mode == QEDF_MODE_RECOVERY)
3641 fcoe_ctlr_link_up(&qedf->ctlr);
3642 else
3643 fc_fabric_login(lport);
3644
Olivier Deprez0e641232021-09-23 10:07:05 +02003645 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC, "Probe done.\n");
3646
3647 clear_bit(QEDF_PROBING, &qedf->flags);
3648
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003649 /* All good */
3650 return 0;
3651
3652err7:
3653 if (qedf->ll2_recv_wq)
3654 destroy_workqueue(qedf->ll2_recv_wq);
3655 fc_remove_host(qedf->lport->host);
3656 scsi_remove_host(qedf->lport->host);
3657#ifdef CONFIG_DEBUG_FS
3658 qedf_dbg_host_exit(&(qedf->dbg_ctx));
3659#endif
3660err6:
3661 qedf_cmd_mgr_free(qedf->cmd_mgr);
3662err5:
3663 qed_ops->stop(qedf->cdev);
3664err4:
3665 qedf_free_fcoe_pf_param(qedf);
3666 qedf_sync_free_irqs(qedf);
3667err3:
3668 qed_ops->common->slowpath_stop(qedf->cdev);
3669err2:
3670 qed_ops->common->remove(qedf->cdev);
3671err1:
3672 scsi_host_put(lport->host);
3673err0:
Olivier Deprez0e641232021-09-23 10:07:05 +02003674 if (qedf) {
3675 QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC, "Probe done.\n");
3676
3677 clear_bit(QEDF_PROBING, &qedf->flags);
3678 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003679 return rc;
3680}
3681
3682static int qedf_probe(struct pci_dev *pdev, const struct pci_device_id *id)
3683{
3684 return __qedf_probe(pdev, QEDF_MODE_NORMAL);
3685}
3686
3687static void __qedf_remove(struct pci_dev *pdev, int mode)
3688{
3689 struct qedf_ctx *qedf;
3690 int rc;
3691
3692 if (!pdev) {
3693 QEDF_ERR(NULL, "pdev is NULL.\n");
3694 return;
3695 }
3696
3697 qedf = pci_get_drvdata(pdev);
3698
3699 /*
3700 * Prevent race where we're in board disable work and then try to
3701 * rmmod the module.
3702 */
3703 if (test_bit(QEDF_UNLOADING, &qedf->flags)) {
3704 QEDF_ERR(&qedf->dbg_ctx, "Already removing PCI function.\n");
3705 return;
3706 }
3707
3708 if (mode != QEDF_MODE_RECOVERY)
3709 set_bit(QEDF_UNLOADING, &qedf->flags);
3710
3711 /* Logoff the fabric to upload all connections */
3712 if (mode == QEDF_MODE_RECOVERY)
3713 fcoe_ctlr_link_down(&qedf->ctlr);
3714 else
3715 fc_fabric_logoff(qedf->lport);
David Brazdil0f672f62019-12-10 10:32:29 +00003716
3717 if (qedf_wait_for_upload(qedf) == false)
3718 QEDF_ERR(&qedf->dbg_ctx, "Could not upload all sessions.\n");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003719
3720#ifdef CONFIG_DEBUG_FS
3721 qedf_dbg_host_exit(&(qedf->dbg_ctx));
3722#endif
3723
3724 /* Stop any link update handling */
3725 cancel_delayed_work_sync(&qedf->link_update);
3726 destroy_workqueue(qedf->link_update_wq);
3727 qedf->link_update_wq = NULL;
3728
3729 if (qedf->timer_work_queue)
3730 destroy_workqueue(qedf->timer_work_queue);
3731
3732 /* Stop Light L2 */
3733 clear_bit(QEDF_LL2_STARTED, &qedf->flags);
3734 qed_ops->ll2->stop(qedf->cdev);
3735 if (qedf->ll2_recv_wq)
3736 destroy_workqueue(qedf->ll2_recv_wq);
3737
3738 /* Stop fastpath */
3739 qedf_sync_free_irqs(qedf);
3740 qedf_destroy_sb(qedf);
3741
3742 /*
3743 * During recovery don't destroy OS constructs that represent the
3744 * physical port.
3745 */
3746 if (mode != QEDF_MODE_RECOVERY) {
3747 qedf_free_grc_dump_buf(&qedf->grcdump);
3748 qedf_remove_sysfs_ctx_attr(qedf);
3749
3750 /* Remove all SCSI/libfc/libfcoe structures */
3751 fcoe_ctlr_destroy(&qedf->ctlr);
3752 fc_lport_destroy(qedf->lport);
3753 fc_remove_host(qedf->lport->host);
3754 scsi_remove_host(qedf->lport->host);
3755 }
3756
3757 qedf_cmd_mgr_free(qedf->cmd_mgr);
3758
3759 if (mode != QEDF_MODE_RECOVERY) {
3760 fc_exch_mgr_free(qedf->lport);
3761 fc_lport_free_stats(qedf->lport);
3762
3763 /* Wait for all vports to be reaped */
3764 qedf_wait_for_vport_destroy(qedf);
3765 }
3766
3767 /*
3768 * Now that all connections have been uploaded we can stop the
3769 * rest of the qed operations
3770 */
3771 qed_ops->stop(qedf->cdev);
3772
3773 if (mode != QEDF_MODE_RECOVERY) {
3774 if (qedf->dpc_wq) {
3775 /* Stop general DPC handling */
3776 destroy_workqueue(qedf->dpc_wq);
3777 qedf->dpc_wq = NULL;
3778 }
3779 }
3780
3781 /* Final shutdown for the board */
3782 qedf_free_fcoe_pf_param(qedf);
3783 if (mode != QEDF_MODE_RECOVERY) {
3784 qed_ops->common->set_power_state(qedf->cdev, PCI_D0);
3785 pci_set_drvdata(pdev, NULL);
3786 }
3787
3788 rc = qed_ops->common->update_drv_state(qedf->cdev, false);
3789 if (rc)
3790 QEDF_ERR(&(qedf->dbg_ctx),
3791 "Failed to send drv state to MFW.\n");
3792
3793 qed_ops->common->slowpath_stop(qedf->cdev);
3794 qed_ops->common->remove(qedf->cdev);
3795
3796 mempool_destroy(qedf->io_mempool);
3797
3798 /* Only reap the Scsi_host on a real removal */
3799 if (mode != QEDF_MODE_RECOVERY)
3800 scsi_host_put(qedf->lport->host);
3801}
3802
3803static void qedf_remove(struct pci_dev *pdev)
3804{
3805 /* Check to make sure this function wasn't already disabled */
3806 if (!atomic_read(&pdev->enable_cnt))
3807 return;
3808
3809 __qedf_remove(pdev, QEDF_MODE_NORMAL);
3810}
3811
3812void qedf_wq_grcdump(struct work_struct *work)
3813{
3814 struct qedf_ctx *qedf =
3815 container_of(work, struct qedf_ctx, grcdump_work.work);
3816
3817 QEDF_ERR(&(qedf->dbg_ctx), "Collecting GRC dump.\n");
3818 qedf_capture_grc_dump(qedf);
3819}
3820
Olivier Deprez157378f2022-04-04 15:47:50 +02003821void qedf_schedule_hw_err_handler(void *dev, enum qed_hw_err_type err_type)
3822{
3823 struct qedf_ctx *qedf = dev;
3824
3825 QEDF_ERR(&(qedf->dbg_ctx),
3826 "Hardware error handler scheduled, event=%d.\n",
3827 err_type);
3828
3829 if (test_bit(QEDF_IN_RECOVERY, &qedf->flags)) {
3830 QEDF_ERR(&(qedf->dbg_ctx),
3831 "Already in recovery, not scheduling board disable work.\n");
3832 return;
3833 }
3834
3835 switch (err_type) {
3836 case QED_HW_ERR_FAN_FAIL:
3837 schedule_delayed_work(&qedf->board_disable_work, 0);
3838 break;
3839 case QED_HW_ERR_MFW_RESP_FAIL:
3840 case QED_HW_ERR_HW_ATTN:
3841 case QED_HW_ERR_DMAE_FAIL:
3842 case QED_HW_ERR_FW_ASSERT:
3843 /* Prevent HW attentions from being reasserted */
3844 qed_ops->common->attn_clr_enable(qedf->cdev, true);
3845 break;
3846 case QED_HW_ERR_RAMROD_FAIL:
3847 /* Prevent HW attentions from being reasserted */
3848 qed_ops->common->attn_clr_enable(qedf->cdev, true);
3849
3850 if (qedf_enable_recovery)
3851 qed_ops->common->recovery_process(qedf->cdev);
3852
3853 break;
3854 default:
3855 break;
3856 }
3857}
3858
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003859/*
3860 * Protocol TLV handler
3861 */
3862void qedf_get_protocol_tlv_data(void *dev, void *data)
3863{
3864 struct qedf_ctx *qedf = dev;
3865 struct qed_mfw_tlv_fcoe *fcoe = data;
Olivier Deprez0e641232021-09-23 10:07:05 +02003866 struct fc_lport *lport;
3867 struct Scsi_Host *host;
3868 struct fc_host_attrs *fc_host;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003869 struct fc_host_statistics *hst;
3870
Olivier Deprez0e641232021-09-23 10:07:05 +02003871 if (!qedf) {
3872 QEDF_ERR(NULL, "qedf is null.\n");
3873 return;
3874 }
3875
3876 if (test_bit(QEDF_PROBING, &qedf->flags)) {
3877 QEDF_ERR(&qedf->dbg_ctx, "Function is still probing.\n");
3878 return;
3879 }
3880
3881 lport = qedf->lport;
3882 host = lport->host;
3883 fc_host = shost_to_fc_host(host);
3884
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003885 /* Force a refresh of the fc_host stats including offload stats */
3886 hst = qedf_fc_get_host_stats(host);
3887
3888 fcoe->qos_pri_set = true;
3889 fcoe->qos_pri = 3; /* Hard coded to 3 in driver */
3890
3891 fcoe->ra_tov_set = true;
3892 fcoe->ra_tov = lport->r_a_tov;
3893
3894 fcoe->ed_tov_set = true;
3895 fcoe->ed_tov = lport->e_d_tov;
3896
3897 fcoe->npiv_state_set = true;
3898 fcoe->npiv_state = 1; /* NPIV always enabled */
3899
3900 fcoe->num_npiv_ids_set = true;
3901 fcoe->num_npiv_ids = fc_host->npiv_vports_inuse;
3902
3903 /* Certain attributes we only want to set if we've selected an FCF */
3904 if (qedf->ctlr.sel_fcf) {
3905 fcoe->switch_name_set = true;
3906 u64_to_wwn(qedf->ctlr.sel_fcf->switch_name, fcoe->switch_name);
3907 }
3908
3909 fcoe->port_state_set = true;
3910 /* For qedf we're either link down or fabric attach */
3911 if (lport->link_up)
3912 fcoe->port_state = QED_MFW_TLV_PORT_STATE_FABRIC;
3913 else
3914 fcoe->port_state = QED_MFW_TLV_PORT_STATE_OFFLINE;
3915
3916 fcoe->link_failures_set = true;
3917 fcoe->link_failures = (u16)hst->link_failure_count;
3918
3919 fcoe->fcoe_txq_depth_set = true;
3920 fcoe->fcoe_rxq_depth_set = true;
3921 fcoe->fcoe_rxq_depth = FCOE_PARAMS_NUM_TASKS;
3922 fcoe->fcoe_txq_depth = FCOE_PARAMS_NUM_TASKS;
3923
3924 fcoe->fcoe_rx_frames_set = true;
3925 fcoe->fcoe_rx_frames = hst->rx_frames;
3926
3927 fcoe->fcoe_tx_frames_set = true;
3928 fcoe->fcoe_tx_frames = hst->tx_frames;
3929
3930 fcoe->fcoe_rx_bytes_set = true;
3931 fcoe->fcoe_rx_bytes = hst->fcp_input_megabytes * 1000000;
3932
3933 fcoe->fcoe_tx_bytes_set = true;
3934 fcoe->fcoe_tx_bytes = hst->fcp_output_megabytes * 1000000;
3935
3936 fcoe->crc_count_set = true;
3937 fcoe->crc_count = hst->invalid_crc_count;
3938
3939 fcoe->tx_abts_set = true;
3940 fcoe->tx_abts = hst->fcp_packet_aborts;
3941
3942 fcoe->tx_lun_rst_set = true;
3943 fcoe->tx_lun_rst = qedf->lun_resets;
3944
3945 fcoe->abort_task_sets_set = true;
3946 fcoe->abort_task_sets = qedf->packet_aborts;
3947
3948 fcoe->scsi_busy_set = true;
3949 fcoe->scsi_busy = qedf->busy;
3950
3951 fcoe->scsi_tsk_full_set = true;
3952 fcoe->scsi_tsk_full = qedf->task_set_fulls;
3953}
3954
Olivier Deprez157378f2022-04-04 15:47:50 +02003955/* Deferred work function to perform soft context reset on STAG change */
3956void qedf_stag_change_work(struct work_struct *work)
3957{
3958 struct qedf_ctx *qedf =
3959 container_of(work, struct qedf_ctx, stag_work.work);
3960
3961 if (!qedf) {
3962 QEDF_ERR(NULL, "qedf is NULL");
3963 return;
3964 }
3965 QEDF_ERR(&qedf->dbg_ctx, "Performing software context reset.\n");
3966 qedf_ctx_soft_reset(qedf->lport);
3967}
3968
David Brazdil0f672f62019-12-10 10:32:29 +00003969static void qedf_shutdown(struct pci_dev *pdev)
3970{
3971 __qedf_remove(pdev, QEDF_MODE_NORMAL);
3972}
3973
Olivier Deprez157378f2022-04-04 15:47:50 +02003974/*
3975 * Recovery handler code
3976 */
3977static void qedf_schedule_recovery_handler(void *dev)
3978{
3979 struct qedf_ctx *qedf = dev;
3980
3981 QEDF_ERR(&qedf->dbg_ctx, "Recovery handler scheduled.\n");
3982 schedule_delayed_work(&qedf->recovery_work, 0);
3983}
3984
3985static void qedf_recovery_handler(struct work_struct *work)
3986{
3987 struct qedf_ctx *qedf =
3988 container_of(work, struct qedf_ctx, recovery_work.work);
3989
3990 if (test_and_set_bit(QEDF_IN_RECOVERY, &qedf->flags))
3991 return;
3992
3993 /*
3994 * Call common_ops->recovery_prolog to allow the MFW to quiesce
3995 * any PCI transactions.
3996 */
3997 qed_ops->common->recovery_prolog(qedf->cdev);
3998
3999 QEDF_ERR(&qedf->dbg_ctx, "Recovery work start.\n");
4000 __qedf_remove(qedf->pdev, QEDF_MODE_RECOVERY);
4001 /*
4002 * Reset link and dcbx to down state since we will not get a link down
4003 * event from the MFW but calling __qedf_remove will essentially be a
4004 * link down event.
4005 */
4006 atomic_set(&qedf->link_state, QEDF_LINK_DOWN);
4007 atomic_set(&qedf->dcbx, QEDF_DCBX_PENDING);
4008 __qedf_probe(qedf->pdev, QEDF_MODE_RECOVERY);
4009 clear_bit(QEDF_IN_RECOVERY, &qedf->flags);
4010 QEDF_ERR(&qedf->dbg_ctx, "Recovery work complete.\n");
4011}
4012
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004013/* Generic TLV data callback */
4014void qedf_get_generic_tlv_data(void *dev, struct qed_generic_tlvs *data)
4015{
4016 struct qedf_ctx *qedf;
4017
4018 if (!dev) {
4019 QEDF_INFO(NULL, QEDF_LOG_EVT,
4020 "dev is NULL so ignoring get_generic_tlv_data request.\n");
4021 return;
4022 }
4023 qedf = (struct qedf_ctx *)dev;
4024
4025 memset(data, 0, sizeof(struct qed_generic_tlvs));
4026 ether_addr_copy(data->mac[0], qedf->mac);
4027}
4028
4029/*
4030 * Module Init/Remove
4031 */
4032
4033static int __init qedf_init(void)
4034{
4035 int ret;
4036
4037 /* If debug=1 passed, set the default log mask */
4038 if (qedf_debug == QEDF_LOG_DEFAULT)
4039 qedf_debug = QEDF_DEFAULT_LOG_MASK;
4040
4041 /*
4042 * Check that default prio for FIP/FCoE traffic is between 0..7 if a
4043 * value has been set
4044 */
4045 if (qedf_default_prio > -1)
4046 if (qedf_default_prio > 7) {
4047 qedf_default_prio = QEDF_DEFAULT_PRIO;
4048 QEDF_ERR(NULL, "FCoE/FIP priority out of range, resetting to %d.\n",
4049 QEDF_DEFAULT_PRIO);
4050 }
4051
4052 /* Print driver banner */
4053 QEDF_INFO(NULL, QEDF_LOG_INFO, "%s v%s.\n", QEDF_DESCR,
4054 QEDF_VERSION);
4055
4056 /* Create kmem_cache for qedf_io_work structs */
4057 qedf_io_work_cache = kmem_cache_create("qedf_io_work_cache",
4058 sizeof(struct qedf_io_work), 0, SLAB_HWCACHE_ALIGN, NULL);
4059 if (qedf_io_work_cache == NULL) {
4060 QEDF_ERR(NULL, "qedf_io_work_cache is NULL.\n");
4061 goto err1;
4062 }
4063 QEDF_INFO(NULL, QEDF_LOG_DISC, "qedf_io_work_cache=%p.\n",
4064 qedf_io_work_cache);
4065
4066 qed_ops = qed_get_fcoe_ops();
4067 if (!qed_ops) {
4068 QEDF_ERR(NULL, "Failed to get qed fcoe operations\n");
4069 goto err1;
4070 }
4071
4072#ifdef CONFIG_DEBUG_FS
4073 qedf_dbg_init("qedf");
4074#endif
4075
4076 qedf_fc_transport_template =
4077 fc_attach_transport(&qedf_fc_transport_fn);
4078 if (!qedf_fc_transport_template) {
4079 QEDF_ERR(NULL, "Could not register with FC transport\n");
4080 goto err2;
4081 }
4082
4083 qedf_fc_vport_transport_template =
4084 fc_attach_transport(&qedf_fc_vport_transport_fn);
4085 if (!qedf_fc_vport_transport_template) {
4086 QEDF_ERR(NULL, "Could not register vport template with FC "
4087 "transport\n");
4088 goto err3;
4089 }
4090
4091 qedf_io_wq = create_workqueue("qedf_io_wq");
4092 if (!qedf_io_wq) {
4093 QEDF_ERR(NULL, "Could not create qedf_io_wq.\n");
4094 goto err4;
4095 }
4096
4097 qedf_cb_ops.get_login_failures = qedf_get_login_failures;
4098
4099 ret = pci_register_driver(&qedf_pci_driver);
4100 if (ret) {
4101 QEDF_ERR(NULL, "Failed to register driver\n");
4102 goto err5;
4103 }
4104
4105 return 0;
4106
4107err5:
4108 destroy_workqueue(qedf_io_wq);
4109err4:
4110 fc_release_transport(qedf_fc_vport_transport_template);
4111err3:
4112 fc_release_transport(qedf_fc_transport_template);
4113err2:
4114#ifdef CONFIG_DEBUG_FS
4115 qedf_dbg_exit();
4116#endif
4117 qed_put_fcoe_ops();
4118err1:
4119 return -EINVAL;
4120}
4121
4122static void __exit qedf_cleanup(void)
4123{
4124 pci_unregister_driver(&qedf_pci_driver);
4125
4126 destroy_workqueue(qedf_io_wq);
4127
4128 fc_release_transport(qedf_fc_vport_transport_template);
4129 fc_release_transport(qedf_fc_transport_template);
4130#ifdef CONFIG_DEBUG_FS
4131 qedf_dbg_exit();
4132#endif
4133 qed_put_fcoe_ops();
4134
4135 kmem_cache_destroy(qedf_io_work_cache);
4136}
4137
4138MODULE_LICENSE("GPL");
David Brazdil0f672f62019-12-10 10:32:29 +00004139MODULE_DESCRIPTION("QLogic FastLinQ 4xxxx FCoE Module");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004140MODULE_AUTHOR("QLogic Corporation");
4141MODULE_VERSION(QEDF_VERSION);
4142module_init(qedf_init);
4143module_exit(qedf_cleanup);