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