xref: /linux/drivers/net/ethernet/meta/fbnic/fbnic_pci.c (revision 0d2ab5f922e75d10162e7199826e14df9cfae5cc)
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) Meta Platforms, Inc. and affiliates. */
3 
4 #include <linux/init.h>
5 #include <linux/module.h>
6 #include <linux/pci.h>
7 #include <linux/rtnetlink.h>
8 #include <linux/types.h>
9 #include <net/devlink.h>
10 
11 #include "fbnic.h"
12 #include "fbnic_drvinfo.h"
13 #include "fbnic_hw_stats.h"
14 #include "fbnic_netdev.h"
15 
16 char fbnic_driver_name[] = DRV_NAME;
17 
18 MODULE_DESCRIPTION(DRV_SUMMARY);
19 MODULE_LICENSE("GPL");
20 
21 static const struct fbnic_info fbnic_asic_info = {
22 	.max_num_queues = FBNIC_MAX_QUEUES,
23 	.bar_mask = BIT(0) | BIT(4)
24 };
25 
26 static const struct fbnic_info *fbnic_info_tbl[] = {
27 	[fbnic_board_asic] = &fbnic_asic_info,
28 };
29 
30 static const struct pci_device_id fbnic_pci_tbl[] = {
31 	{ PCI_DEVICE_DATA(META, FBNIC_ASIC, fbnic_board_asic) },
32 	/* Required last entry */
33 	{0, }
34 };
35 MODULE_DEVICE_TABLE(pci, fbnic_pci_tbl);
36 
37 u32 fbnic_rd32(struct fbnic_dev *fbd, u32 reg)
38 {
39 	u32 __iomem *csr = READ_ONCE(fbd->uc_addr0);
40 	u32 value;
41 
42 	if (!csr)
43 		return ~0U;
44 
45 	value = readl(csr + reg);
46 
47 	/* If any bits are 0 value should be valid */
48 	if (~value)
49 		return value;
50 
51 	/* All 1's may be valid if ZEROs register still works */
52 	if (reg != FBNIC_MASTER_SPARE_0 && ~readl(csr + FBNIC_MASTER_SPARE_0))
53 		return value;
54 
55 	/* Hardware is giving us all 1's reads, assume it is gone */
56 	WRITE_ONCE(fbd->uc_addr0, NULL);
57 	WRITE_ONCE(fbd->uc_addr4, NULL);
58 
59 	dev_err(fbd->dev,
60 		"Failed read (idx 0x%x AKA addr 0x%x), disabled CSR access, awaiting reset\n",
61 		reg, reg << 2);
62 
63 	/* Notify stack that device has lost (PCIe) link */
64 	if (!fbnic_init_failure(fbd))
65 		netif_device_detach(fbd->netdev);
66 
67 	return ~0U;
68 }
69 
70 bool fbnic_fw_present(struct fbnic_dev *fbd)
71 {
72 	return !!READ_ONCE(fbd->uc_addr4);
73 }
74 
75 void fbnic_fw_wr32(struct fbnic_dev *fbd, u32 reg, u32 val)
76 {
77 	u32 __iomem *csr = READ_ONCE(fbd->uc_addr4);
78 
79 	if (csr)
80 		writel(val, csr + reg);
81 }
82 
83 u32 fbnic_fw_rd32(struct fbnic_dev *fbd, u32 reg)
84 {
85 	u32 __iomem *csr = READ_ONCE(fbd->uc_addr4);
86 	u32 value;
87 
88 	if (!csr)
89 		return ~0U;
90 
91 	value = readl(csr + reg);
92 
93 	/* If any bits are 0 value should be valid */
94 	if (~value)
95 		return value;
96 
97 	/* All 1's may be valid if ZEROs register still works */
98 	if (reg != FBNIC_FW_ZERO_REG && ~readl(csr + FBNIC_FW_ZERO_REG))
99 		return value;
100 
101 	/* Hardware is giving us all 1's reads, assume it is gone */
102 	WRITE_ONCE(fbd->uc_addr0, NULL);
103 	WRITE_ONCE(fbd->uc_addr4, NULL);
104 
105 	dev_err(fbd->dev,
106 		"Failed read (idx 0x%x AKA addr 0x%x), disabled CSR access, awaiting reset\n",
107 		reg, reg << 2);
108 
109 	/* Notify stack that device has lost (PCIe) link */
110 	if (!fbnic_init_failure(fbd))
111 		netif_device_detach(fbd->netdev);
112 
113 	return ~0U;
114 }
115 
116 static void fbnic_service_task_start(struct fbnic_net *fbn)
117 {
118 	struct fbnic_dev *fbd = fbn->fbd;
119 
120 	schedule_delayed_work(&fbd->service_task, HZ);
121 }
122 
123 static void fbnic_service_task_stop(struct fbnic_net *fbn)
124 {
125 	struct fbnic_dev *fbd = fbn->fbd;
126 
127 	cancel_delayed_work(&fbd->service_task);
128 }
129 
130 void fbnic_up(struct fbnic_net *fbn)
131 {
132 	fbnic_enable(fbn);
133 
134 	fbnic_fill(fbn);
135 
136 	fbnic_rss_reinit_hw(fbn->fbd, fbn);
137 
138 	__fbnic_set_rx_mode(fbn->fbd);
139 
140 	/* Enable Tx/Rx processing */
141 	fbnic_napi_enable(fbn);
142 	netif_tx_start_all_queues(fbn->netdev);
143 
144 	fbnic_service_task_start(fbn);
145 }
146 
147 void fbnic_down_noidle(struct fbnic_net *fbn)
148 {
149 	fbnic_service_task_stop(fbn);
150 
151 	/* Disable Tx/Rx Processing */
152 	fbnic_napi_disable(fbn);
153 	netif_tx_disable(fbn->netdev);
154 
155 	fbnic_clear_rx_mode(fbn->fbd);
156 	fbnic_clear_rules(fbn->fbd);
157 	fbnic_rss_disable_hw(fbn->fbd);
158 	fbnic_disable(fbn);
159 }
160 
161 void fbnic_down(struct fbnic_net *fbn)
162 {
163 	fbnic_down_noidle(fbn);
164 
165 	fbnic_wait_all_queues_idle(fbn->fbd, false);
166 
167 	fbnic_flush(fbn);
168 }
169 
170 static void fbnic_health_check(struct fbnic_dev *fbd)
171 {
172 	struct fbnic_fw_mbx *tx_mbx = &fbd->mbx[FBNIC_IPC_MBX_TX_IDX];
173 
174 	/* As long as the heart is beating the FW is healty */
175 	if (fbd->fw_heartbeat_enabled)
176 		return;
177 
178 	/* If the Tx mailbox still has messages sitting in it then there likely
179 	 * isn't anything we can do. We will wait until the mailbox is empty to
180 	 * report the fault so we can collect the crashlog.
181 	 */
182 	if (tx_mbx->head != tx_mbx->tail)
183 		return;
184 
185 	/* TBD: Need to add a more thorough recovery here.
186 	 *	Specifically I need to verify what all the firmware will have
187 	 *	changed since we had setup and it rebooted. May just need to
188 	 *	perform a down/up. For now we will just reclaim ownership so
189 	 *	the heartbeat can catch the next fault.
190 	 */
191 	fbnic_fw_xmit_ownership_msg(fbd, true);
192 }
193 
194 static void fbnic_service_task(struct work_struct *work)
195 {
196 	struct fbnic_dev *fbd = container_of(to_delayed_work(work),
197 					     struct fbnic_dev, service_task);
198 
199 	rtnl_lock();
200 
201 	fbnic_get_hw_stats32(fbd);
202 
203 	fbnic_fw_check_heartbeat(fbd);
204 
205 	fbnic_health_check(fbd);
206 
207 	fbnic_bmc_rpc_check(fbd);
208 
209 	if (netif_carrier_ok(fbd->netdev))
210 		fbnic_napi_depletion_check(fbd->netdev);
211 
212 	if (netif_running(fbd->netdev))
213 		schedule_delayed_work(&fbd->service_task, HZ);
214 
215 	rtnl_unlock();
216 }
217 
218 /**
219  * fbnic_probe - Device Initialization Routine
220  * @pdev: PCI device information struct
221  * @ent: entry in fbnic_pci_tbl
222  *
223  * Initializes a PCI device identified by a pci_dev structure.
224  * The OS initialization, configuring of the adapter private structure,
225  * and a hardware reset occur.
226  *
227  * Return: 0 on success, negative on failure
228  **/
229 static int fbnic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
230 {
231 	const struct fbnic_info *info = fbnic_info_tbl[ent->driver_data];
232 	struct net_device *netdev;
233 	struct fbnic_dev *fbd;
234 	int err;
235 
236 	if (pdev->error_state != pci_channel_io_normal) {
237 		dev_err(&pdev->dev,
238 			"PCI device still in an error state. Unable to load...\n");
239 		return -EIO;
240 	}
241 
242 	err = pcim_enable_device(pdev);
243 	if (err) {
244 		dev_err(&pdev->dev, "PCI enable device failed: %d\n", err);
245 		return err;
246 	}
247 
248 	err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(46));
249 	if (err)
250 		err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
251 	if (err) {
252 		dev_err(&pdev->dev, "DMA configuration failed: %d\n", err);
253 		return err;
254 	}
255 
256 	err = pcim_iomap_regions(pdev, info->bar_mask, fbnic_driver_name);
257 	if (err) {
258 		dev_err(&pdev->dev,
259 			"pci_request_selected_regions failed: %d\n", err);
260 		return err;
261 	}
262 
263 	fbd = fbnic_devlink_alloc(pdev);
264 	if (!fbd) {
265 		dev_err(&pdev->dev, "Devlink allocation failed\n");
266 		return -ENOMEM;
267 	}
268 
269 	/* Populate driver with hardware-specific info and handlers */
270 	fbd->max_num_queues = info->max_num_queues;
271 
272 	pci_set_master(pdev);
273 	pci_save_state(pdev);
274 
275 	INIT_DELAYED_WORK(&fbd->service_task, fbnic_service_task);
276 
277 	err = fbnic_alloc_irqs(fbd);
278 	if (err)
279 		goto free_fbd;
280 
281 	err = fbnic_mac_init(fbd);
282 	if (err) {
283 		dev_err(&pdev->dev, "Failed to initialize MAC: %d\n", err);
284 		goto free_irqs;
285 	}
286 
287 	err = fbnic_fw_request_mbx(fbd);
288 	if (err) {
289 		dev_err(&pdev->dev,
290 			"Firmware mailbox initialization failure\n");
291 		goto free_irqs;
292 	}
293 
294 	/* Send the request to enable the FW logging to host. Note if this
295 	 * fails we ignore the error and just display a message as it is
296 	 * possible the FW is just too old to support the logging and needs
297 	 * to be updated.
298 	 */
299 	err = fbnic_fw_log_init(fbd);
300 	if (err)
301 		dev_warn(fbd->dev,
302 			 "Unable to initialize firmware log buffer: %d\n",
303 			 err);
304 
305 	fbnic_devlink_register(fbd);
306 	fbnic_dbg_fbd_init(fbd);
307 
308 	/* Capture snapshot of hardware stats so netdev can calculate delta */
309 	fbnic_init_hw_stats(fbd);
310 
311 	fbnic_hwmon_register(fbd);
312 
313 	if (!fbd->dsn) {
314 		dev_warn(&pdev->dev, "Reading serial number failed\n");
315 		goto init_failure_mode;
316 	}
317 
318 	netdev = fbnic_netdev_alloc(fbd);
319 	if (!netdev) {
320 		dev_err(&pdev->dev, "Netdev allocation failed\n");
321 		goto init_failure_mode;
322 	}
323 
324 	err = fbnic_ptp_setup(fbd);
325 	if (err)
326 		goto ifm_free_netdev;
327 
328 	err = fbnic_netdev_register(netdev);
329 	if (err) {
330 		dev_err(&pdev->dev, "Netdev registration failed: %d\n", err);
331 		goto ifm_destroy_ptp;
332 	}
333 
334 	return 0;
335 
336 ifm_destroy_ptp:
337 	fbnic_ptp_destroy(fbd);
338 ifm_free_netdev:
339 	fbnic_netdev_free(fbd);
340 init_failure_mode:
341 	dev_warn(&pdev->dev, "Probe error encountered, entering init failure mode. Normal networking functionality will not be available.\n");
342 	 /* Always return 0 even on error so devlink is registered to allow
343 	  * firmware updates for fixes.
344 	  */
345 	return 0;
346 free_irqs:
347 	fbnic_free_irqs(fbd);
348 free_fbd:
349 	fbnic_devlink_free(fbd);
350 
351 	return err;
352 }
353 
354 /**
355  * fbnic_remove - Device Removal Routine
356  * @pdev: PCI device information struct
357  *
358  * Called by the PCI subsystem to alert the driver that it should release
359  * a PCI device.  The could be caused by a Hot-Plug event, or because the
360  * driver is going to be removed from memory.
361  **/
362 static void fbnic_remove(struct pci_dev *pdev)
363 {
364 	struct fbnic_dev *fbd = pci_get_drvdata(pdev);
365 
366 	if (!fbnic_init_failure(fbd)) {
367 		struct net_device *netdev = fbd->netdev;
368 
369 		fbnic_netdev_unregister(netdev);
370 		cancel_delayed_work_sync(&fbd->service_task);
371 		fbnic_ptp_destroy(fbd);
372 		fbnic_netdev_free(fbd);
373 	}
374 
375 	fbnic_hwmon_unregister(fbd);
376 	fbnic_dbg_fbd_exit(fbd);
377 	fbnic_devlink_unregister(fbd);
378 	fbnic_fw_log_free(fbd);
379 	fbnic_fw_free_mbx(fbd);
380 	fbnic_free_irqs(fbd);
381 
382 	fbnic_devlink_free(fbd);
383 }
384 
385 static int fbnic_pm_suspend(struct device *dev)
386 {
387 	struct fbnic_dev *fbd = dev_get_drvdata(dev);
388 	struct net_device *netdev = fbd->netdev;
389 
390 	if (fbnic_init_failure(fbd))
391 		goto null_uc_addr;
392 
393 	rtnl_lock();
394 
395 	netif_device_detach(netdev);
396 
397 	if (netif_running(netdev))
398 		netdev->netdev_ops->ndo_stop(netdev);
399 
400 	rtnl_unlock();
401 
402 null_uc_addr:
403 	fbnic_fw_log_disable(fbd);
404 
405 	devl_lock(priv_to_devlink(fbd));
406 
407 	fbnic_fw_free_mbx(fbd);
408 
409 	devl_unlock(priv_to_devlink(fbd));
410 
411 	/* Free the IRQs so they aren't trying to occupy sleeping CPUs */
412 	fbnic_free_irqs(fbd);
413 
414 	/* Hardware is about to go away, so switch off MMIO access internally */
415 	WRITE_ONCE(fbd->uc_addr0, NULL);
416 	WRITE_ONCE(fbd->uc_addr4, NULL);
417 
418 	return 0;
419 }
420 
421 static int __fbnic_pm_resume(struct device *dev)
422 {
423 	struct fbnic_dev *fbd = dev_get_drvdata(dev);
424 	struct net_device *netdev = fbd->netdev;
425 	void __iomem * const *iomap_table;
426 	struct fbnic_net *fbn;
427 	int err;
428 
429 	/* Restore MMIO access */
430 	iomap_table = pcim_iomap_table(to_pci_dev(dev));
431 	fbd->uc_addr0 = iomap_table[0];
432 	fbd->uc_addr4 = iomap_table[4];
433 
434 	/* Rerequest the IRQs */
435 	err = fbnic_alloc_irqs(fbd);
436 	if (err)
437 		goto err_invalidate_uc_addr;
438 
439 	fbd->mac->init_regs(fbd);
440 
441 	devl_lock(priv_to_devlink(fbd));
442 
443 	/* Re-enable mailbox */
444 	err = fbnic_fw_request_mbx(fbd);
445 	devl_unlock(priv_to_devlink(fbd));
446 	if (err)
447 		goto err_free_irqs;
448 
449 	/* Only send log history if log buffer is empty to prevent duplicate
450 	 * log entries.
451 	 */
452 	fbnic_fw_log_enable(fbd, list_empty(&fbd->fw_log.entries));
453 
454 	/* No netdev means there isn't a network interface to bring up */
455 	if (fbnic_init_failure(fbd))
456 		return 0;
457 
458 	fbn = netdev_priv(netdev);
459 
460 	/* Reset the queues if needed */
461 	fbnic_reset_queues(fbn, fbn->num_tx_queues, fbn->num_rx_queues);
462 
463 	rtnl_lock();
464 
465 	if (netif_running(netdev))
466 		err = __fbnic_open(fbn);
467 
468 	rtnl_unlock();
469 	if (err)
470 		goto err_free_mbx;
471 
472 	return 0;
473 err_free_mbx:
474 	fbnic_fw_log_disable(fbd);
475 
476 	devl_lock(priv_to_devlink(fbd));
477 	fbnic_fw_free_mbx(fbd);
478 	devl_unlock(priv_to_devlink(fbd));
479 err_free_irqs:
480 	fbnic_free_irqs(fbd);
481 err_invalidate_uc_addr:
482 	WRITE_ONCE(fbd->uc_addr0, NULL);
483 	WRITE_ONCE(fbd->uc_addr4, NULL);
484 	return err;
485 }
486 
487 static void __fbnic_pm_attach(struct device *dev)
488 {
489 	struct fbnic_dev *fbd = dev_get_drvdata(dev);
490 	struct net_device *netdev = fbd->netdev;
491 	struct fbnic_net *fbn;
492 
493 	rtnl_lock();
494 	fbnic_reset_hw_stats(fbd);
495 	rtnl_unlock();
496 
497 	if (fbnic_init_failure(fbd))
498 		return;
499 
500 	fbn = netdev_priv(netdev);
501 
502 	if (netif_running(netdev))
503 		fbnic_up(fbn);
504 
505 	netif_device_attach(netdev);
506 }
507 
508 static int __maybe_unused fbnic_pm_resume(struct device *dev)
509 {
510 	int err;
511 
512 	err = __fbnic_pm_resume(dev);
513 	if (!err)
514 		__fbnic_pm_attach(dev);
515 
516 	return err;
517 }
518 
519 static const struct dev_pm_ops fbnic_pm_ops = {
520 	SET_SYSTEM_SLEEP_PM_OPS(fbnic_pm_suspend, fbnic_pm_resume)
521 };
522 
523 static void fbnic_shutdown(struct pci_dev *pdev)
524 {
525 	fbnic_pm_suspend(&pdev->dev);
526 }
527 
528 static pci_ers_result_t fbnic_err_error_detected(struct pci_dev *pdev,
529 						 pci_channel_state_t state)
530 {
531 	/* Disconnect device if failure is not recoverable via reset */
532 	if (state == pci_channel_io_perm_failure)
533 		return PCI_ERS_RESULT_DISCONNECT;
534 
535 	fbnic_pm_suspend(&pdev->dev);
536 
537 	/* Request a slot reset */
538 	return PCI_ERS_RESULT_NEED_RESET;
539 }
540 
541 static pci_ers_result_t fbnic_err_slot_reset(struct pci_dev *pdev)
542 {
543 	int err;
544 
545 	pci_set_power_state(pdev, PCI_D0);
546 	pci_restore_state(pdev);
547 	pci_save_state(pdev);
548 
549 	if (pci_enable_device_mem(pdev)) {
550 		dev_err(&pdev->dev,
551 			"Cannot re-enable PCI device after reset.\n");
552 		return PCI_ERS_RESULT_DISCONNECT;
553 	}
554 
555 	/* Restore device to previous state */
556 	err = __fbnic_pm_resume(&pdev->dev);
557 
558 	return err ? PCI_ERS_RESULT_DISCONNECT : PCI_ERS_RESULT_RECOVERED;
559 }
560 
561 static void fbnic_err_resume(struct pci_dev *pdev)
562 {
563 	__fbnic_pm_attach(&pdev->dev);
564 }
565 
566 static const struct pci_error_handlers fbnic_err_handler = {
567 	.error_detected	= fbnic_err_error_detected,
568 	.slot_reset	= fbnic_err_slot_reset,
569 	.resume		= fbnic_err_resume,
570 };
571 
572 static struct pci_driver fbnic_driver = {
573 	.name		= fbnic_driver_name,
574 	.id_table	= fbnic_pci_tbl,
575 	.probe		= fbnic_probe,
576 	.remove		= fbnic_remove,
577 	.driver.pm	= &fbnic_pm_ops,
578 	.shutdown	= fbnic_shutdown,
579 	.err_handler	= &fbnic_err_handler,
580 };
581 
582 /**
583  * fbnic_init_module - Driver Registration Routine
584  *
585  * The first routine called when the driver is loaded.  All it does is
586  * register with the PCI subsystem.
587  *
588  * Return: 0 on success, negative on failure
589  **/
590 static int __init fbnic_init_module(void)
591 {
592 	int err;
593 
594 	fbnic_dbg_init();
595 
596 	err = pci_register_driver(&fbnic_driver);
597 	if (err) {
598 		fbnic_dbg_exit();
599 		goto out;
600 	}
601 
602 	pr_info(DRV_SUMMARY " (%s)", fbnic_driver.name);
603 out:
604 	return err;
605 }
606 module_init(fbnic_init_module);
607 
608 /**
609  * fbnic_exit_module - Driver Exit Cleanup Routine
610  *
611  * Called just before the driver is removed from memory.
612  **/
613 static void __exit fbnic_exit_module(void)
614 {
615 	pci_unregister_driver(&fbnic_driver);
616 
617 	fbnic_dbg_exit();
618 }
619 module_exit(fbnic_exit_module);
620