1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18#include <linux/module.h>
19#include <linux/interrupt.h>
20#include <linux/pci.h>
21#include <linux/firmware.h>
22#include <net/vxlan.h>
23#include <linux/kthread.h>
24#include "liquidio_common.h"
25#include "octeon_droq.h"
26#include "octeon_iq.h"
27#include "response_manager.h"
28#include "octeon_device.h"
29#include "octeon_nic.h"
30#include "octeon_main.h"
31#include "octeon_network.h"
32#include "cn66xx_regs.h"
33#include "cn66xx_device.h"
34#include "cn68xx_device.h"
35#include "cn23xx_pf_device.h"
36#include "liquidio_image.h"
37#include "lio_vf_rep.h"
38
39MODULE_AUTHOR("Cavium Networks, <support@cavium.com>");
40MODULE_DESCRIPTION("Cavium LiquidIO Intelligent Server Adapter Driver");
41MODULE_LICENSE("GPL");
42MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210SV_NAME
43 "_" LIO_FW_NAME_TYPE_NIC LIO_FW_NAME_SUFFIX);
44MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210NV_NAME
45 "_" LIO_FW_NAME_TYPE_NIC LIO_FW_NAME_SUFFIX);
46MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_410NV_NAME
47 "_" LIO_FW_NAME_TYPE_NIC LIO_FW_NAME_SUFFIX);
48MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_23XX_NAME
49 "_" LIO_FW_NAME_TYPE_NIC LIO_FW_NAME_SUFFIX);
50
51static int ddr_timeout = 10000;
52module_param(ddr_timeout, int, 0644);
53MODULE_PARM_DESC(ddr_timeout,
54 "Number of milliseconds to wait for DDR initialization. 0 waits for ddr_timeout to be set to non-zero value before starting to check");
55
56#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
57
58static int debug = -1;
59module_param(debug, int, 0644);
60MODULE_PARM_DESC(debug, "NETIF_MSG debug bits");
61
62static char fw_type[LIO_MAX_FW_TYPE_LEN] = LIO_FW_NAME_TYPE_AUTO;
63module_param_string(fw_type, fw_type, sizeof(fw_type), 0444);
64MODULE_PARM_DESC(fw_type, "Type of firmware to be loaded (default is \"auto\"), which uses firmware in flash, if present, else loads \"nic\".");
65
66static u32 console_bitmask;
67module_param(console_bitmask, int, 0644);
68MODULE_PARM_DESC(console_bitmask,
69 "Bitmask indicating which consoles have debug output redirected to syslog.");
70
71
72
73
74
75
76static int octeon_console_debug_enabled(u32 console)
77{
78 return (console_bitmask >> (console)) & 0x1;
79}
80
81
82#define LIQUIDIO_STARTER_POLL_INTERVAL_MS 100
83
84
85#define LIQUIDIO_LINK_QUERY_INTERVAL_MS 1000
86
87
88
89
90#define LIO_SYNC_OCTEON_TIME_INTERVAL_MS 60000
91
92
93#define WAIT_INFLIGHT_REQUEST msecs_to_jiffies(1000)
94
95struct lio_trusted_vf_ctx {
96 struct completion complete;
97 int status;
98};
99
100struct oct_link_status_resp {
101 u64 rh;
102 struct oct_link_info link_info;
103 u64 status;
104};
105
106struct oct_timestamp_resp {
107 u64 rh;
108 u64 timestamp;
109 u64 status;
110};
111
112#define OCT_TIMESTAMP_RESP_SIZE (sizeof(struct oct_timestamp_resp))
113
114union tx_info {
115 u64 u64;
116 struct {
117#ifdef __BIG_ENDIAN_BITFIELD
118 u16 gso_size;
119 u16 gso_segs;
120 u32 reserved;
121#else
122 u32 reserved;
123 u16 gso_segs;
124 u16 gso_size;
125#endif
126 } s;
127};
128
129
130
131
132
133
134#define OCTNIC_GSO_MAX_HEADER_SIZE 128
135#define OCTNIC_GSO_MAX_SIZE \
136 (CN23XX_DEFAULT_INPUT_JABBER - OCTNIC_GSO_MAX_HEADER_SIZE)
137
138struct handshake {
139 struct completion init;
140 struct completion started;
141 struct pci_dev *pci_dev;
142 int init_ok;
143 int started_ok;
144};
145
146#ifdef CONFIG_PCI_IOV
147static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs);
148#endif
149
150static int octeon_dbg_console_print(struct octeon_device *oct, u32 console_num,
151 char *prefix, char *suffix);
152
153static int octeon_device_init(struct octeon_device *);
154static int liquidio_stop(struct net_device *netdev);
155static void liquidio_remove(struct pci_dev *pdev);
156static int liquidio_probe(struct pci_dev *pdev,
157 const struct pci_device_id *ent);
158static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
159 int linkstate);
160
161static struct handshake handshake[MAX_OCTEON_DEVICES];
162static struct completion first_stage;
163
164static void octeon_droq_bh(struct tasklet_struct *t)
165{
166 int q_no;
167 int reschedule = 0;
168 struct octeon_device_priv *oct_priv = from_tasklet(oct_priv, t,
169 droq_tasklet);
170 struct octeon_device *oct = oct_priv->dev;
171
172 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES(oct); q_no++) {
173 if (!(oct->io_qmask.oq & BIT_ULL(q_no)))
174 continue;
175 reschedule |= octeon_droq_process_packets(oct, oct->droq[q_no],
176 MAX_PACKET_BUDGET);
177 lio_enable_irq(oct->droq[q_no], NULL);
178
179 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
180
181
182
183 int adjusted_q_no = q_no + oct->sriov_info.pf_srn;
184
185 octeon_write_csr64(
186 oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(adjusted_q_no),
187 0x5700000040ULL);
188 octeon_write_csr64(
189 oct, CN23XX_SLI_OQ_PKTS_SENT(adjusted_q_no), 0);
190 }
191 }
192
193 if (reschedule)
194 tasklet_schedule(&oct_priv->droq_tasklet);
195}
196
197static int lio_wait_for_oq_pkts(struct octeon_device *oct)
198{
199 struct octeon_device_priv *oct_priv =
200 (struct octeon_device_priv *)oct->priv;
201 int retry = 100, pkt_cnt = 0, pending_pkts = 0;
202 int i;
203
204 do {
205 pending_pkts = 0;
206
207 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
208 if (!(oct->io_qmask.oq & BIT_ULL(i)))
209 continue;
210 pkt_cnt += octeon_droq_check_hw_for_pkts(oct->droq[i]);
211 }
212 if (pkt_cnt > 0) {
213 pending_pkts += pkt_cnt;
214 tasklet_schedule(&oct_priv->droq_tasklet);
215 }
216 pkt_cnt = 0;
217 schedule_timeout_uninterruptible(1);
218
219 } while (retry-- && pending_pkts);
220
221 return pkt_cnt;
222}
223
224
225
226
227
228static void force_io_queues_off(struct octeon_device *oct)
229{
230 if ((oct->chip_id == OCTEON_CN66XX) ||
231 (oct->chip_id == OCTEON_CN68XX)) {
232
233 octeon_write_csr(oct, CN6XXX_SLI_PKT_INSTR_ENB, 0);
234
235
236 octeon_write_csr(oct, CN6XXX_SLI_PKT_OUT_ENB, 0);
237 }
238}
239
240
241
242
243
244static inline void pcierror_quiesce_device(struct octeon_device *oct)
245{
246 int i;
247
248
249
250
251
252 force_io_queues_off(oct);
253
254
255 schedule_timeout_uninterruptible(WAIT_INFLIGHT_REQUEST);
256
257 if (wait_for_pending_requests(oct))
258 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
259
260
261 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
262 struct octeon_instr_queue *iq;
263
264 if (!(oct->io_qmask.iq & BIT_ULL(i)))
265 continue;
266 iq = oct->instr_queue[i];
267
268 if (atomic_read(&iq->instr_pending)) {
269 spin_lock_bh(&iq->lock);
270 iq->fill_cnt = 0;
271 iq->octeon_read_index = iq->host_write_index;
272 iq->stats.instr_processed +=
273 atomic_read(&iq->instr_pending);
274 lio_process_iq_request_list(oct, iq, 0);
275 spin_unlock_bh(&iq->lock);
276 }
277 }
278
279
280 lio_process_ordered_list(oct, 1);
281
282
283}
284
285
286
287
288
289static void cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
290{
291 int pos = 0x100;
292 u32 status, mask;
293
294 pr_info("%s :\n", __func__);
295
296 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
297 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
298 if (dev->error_state == pci_channel_io_normal)
299 status &= ~mask;
300 else
301 status &= mask;
302 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
303}
304
305
306
307
308
309static void stop_pci_io(struct octeon_device *oct)
310{
311
312 atomic_set(&oct->status, OCT_DEV_IN_RESET);
313
314 pci_disable_device(oct->pci_dev);
315
316
317 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
318
319 pcierror_quiesce_device(oct);
320
321
322 free_irq(oct->pci_dev->irq, oct);
323
324 if (oct->flags & LIO_FLAG_MSI_ENABLED)
325 pci_disable_msi(oct->pci_dev);
326
327 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
328 lio_get_state_string(&oct->status));
329
330
331 cleanup_aer_uncorrect_error_status(oct->pci_dev);
332}
333
334
335
336
337
338
339
340
341
342static pci_ers_result_t liquidio_pcie_error_detected(struct pci_dev *pdev,
343 pci_channel_state_t state)
344{
345 struct octeon_device *oct = pci_get_drvdata(pdev);
346
347
348 if (state == pci_channel_io_normal) {
349 dev_err(&oct->pci_dev->dev, "Non-correctable non-fatal error reported:\n");
350 cleanup_aer_uncorrect_error_status(oct->pci_dev);
351 return PCI_ERS_RESULT_CAN_RECOVER;
352 }
353
354
355 dev_err(&oct->pci_dev->dev, "Non-correctable FATAL reported by PCI AER driver\n");
356 stop_pci_io(oct);
357
358
359
360
361 return PCI_ERS_RESULT_DISCONNECT;
362}
363
364
365
366
367
368static pci_ers_result_t liquidio_pcie_mmio_enabled(struct pci_dev __maybe_unused *pdev)
369{
370
371
372
373
374 return PCI_ERS_RESULT_RECOVERED;
375}
376
377
378
379
380
381
382
383
384static pci_ers_result_t liquidio_pcie_slot_reset(struct pci_dev __maybe_unused *pdev)
385{
386
387
388
389
390 return PCI_ERS_RESULT_RECOVERED;
391}
392
393
394
395
396
397
398
399
400
401static void liquidio_pcie_resume(struct pci_dev __maybe_unused *pdev)
402{
403
404}
405
406#define liquidio_suspend NULL
407#define liquidio_resume NULL
408
409
410static const struct pci_error_handlers liquidio_err_handler = {
411 .error_detected = liquidio_pcie_error_detected,
412 .mmio_enabled = liquidio_pcie_mmio_enabled,
413 .slot_reset = liquidio_pcie_slot_reset,
414 .resume = liquidio_pcie_resume,
415};
416
417static const struct pci_device_id liquidio_pci_tbl[] = {
418 {
419 PCI_VENDOR_ID_CAVIUM, 0x91, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
420 },
421 {
422 PCI_VENDOR_ID_CAVIUM, 0x92, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
423 },
424 {
425 PCI_VENDOR_ID_CAVIUM, 0x9702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
426 },
427 {
428 0, 0, 0, 0, 0, 0, 0
429 }
430};
431MODULE_DEVICE_TABLE(pci, liquidio_pci_tbl);
432
433static SIMPLE_DEV_PM_OPS(liquidio_pm_ops, liquidio_suspend, liquidio_resume);
434
435static struct pci_driver liquidio_pci_driver = {
436 .name = "LiquidIO",
437 .id_table = liquidio_pci_tbl,
438 .probe = liquidio_probe,
439 .remove = liquidio_remove,
440 .err_handler = &liquidio_err_handler,
441 .driver.pm = &liquidio_pm_ops,
442#ifdef CONFIG_PCI_IOV
443 .sriov_configure = liquidio_enable_sriov,
444#endif
445};
446
447
448
449
450static int liquidio_init_pci(void)
451{
452 return pci_register_driver(&liquidio_pci_driver);
453}
454
455
456
457
458static void liquidio_deinit_pci(void)
459{
460 pci_unregister_driver(&liquidio_pci_driver);
461}
462
463
464
465
466
467
468static inline int check_txq_status(struct lio *lio)
469{
470 int numqs = lio->netdev->real_num_tx_queues;
471 int ret_val = 0;
472 int q, iq;
473
474
475 for (q = 0; q < numqs; q++) {
476 iq = lio->linfo.txpciq[q %
477 lio->oct_dev->num_iqs].s.q_no;
478 if (octnet_iq_is_full(lio->oct_dev, iq))
479 continue;
480 if (__netif_subqueue_stopped(lio->netdev, q)) {
481 netif_wake_subqueue(lio->netdev, q);
482 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq,
483 tx_restart, 1);
484 ret_val++;
485 }
486 }
487
488 return ret_val;
489}
490
491
492
493
494
495static void print_link_info(struct net_device *netdev)
496{
497 struct lio *lio = GET_LIO(netdev);
498
499 if (!ifstate_check(lio, LIO_IFSTATE_RESETTING) &&
500 ifstate_check(lio, LIO_IFSTATE_REGISTERED)) {
501 struct oct_link_info *linfo = &lio->linfo;
502
503 if (linfo->link.s.link_up) {
504 netif_info(lio, link, lio->netdev, "%d Mbps %s Duplex UP\n",
505 linfo->link.s.speed,
506 (linfo->link.s.duplex) ? "Full" : "Half");
507 } else {
508 netif_info(lio, link, lio->netdev, "Link Down\n");
509 }
510 }
511}
512
513
514
515
516
517static void octnet_link_status_change(struct work_struct *work)
518{
519 struct cavium_wk *wk = (struct cavium_wk *)work;
520 struct lio *lio = (struct lio *)wk->ctxptr;
521
522
523
524
525
526 rtnl_lock();
527 dev_set_mtu(lio->netdev, lio->linfo.link.s.mtu);
528 rtnl_unlock();
529}
530
531
532
533
534
535static inline int setup_link_status_change_wq(struct net_device *netdev)
536{
537 struct lio *lio = GET_LIO(netdev);
538 struct octeon_device *oct = lio->oct_dev;
539
540 lio->link_status_wq.wq = alloc_workqueue("link-status",
541 WQ_MEM_RECLAIM, 0);
542 if (!lio->link_status_wq.wq) {
543 dev_err(&oct->pci_dev->dev, "unable to create cavium link status wq\n");
544 return -1;
545 }
546 INIT_DELAYED_WORK(&lio->link_status_wq.wk.work,
547 octnet_link_status_change);
548 lio->link_status_wq.wk.ctxptr = lio;
549
550 return 0;
551}
552
553static inline void cleanup_link_status_change_wq(struct net_device *netdev)
554{
555 struct lio *lio = GET_LIO(netdev);
556
557 if (lio->link_status_wq.wq) {
558 cancel_delayed_work_sync(&lio->link_status_wq.wk.work);
559 destroy_workqueue(lio->link_status_wq.wq);
560 }
561}
562
563
564
565
566
567
568
569
570
571static inline void update_link_status(struct net_device *netdev,
572 union oct_link_status *ls)
573{
574 struct lio *lio = GET_LIO(netdev);
575 int changed = (lio->linfo.link.u64 != ls->u64);
576 int current_max_mtu = lio->linfo.link.s.mtu;
577 struct octeon_device *oct = lio->oct_dev;
578
579 dev_dbg(&oct->pci_dev->dev, "%s: lio->linfo.link.u64=%llx, ls->u64=%llx\n",
580 __func__, lio->linfo.link.u64, ls->u64);
581 lio->linfo.link.u64 = ls->u64;
582
583 if ((lio->intf_open) && (changed)) {
584 print_link_info(netdev);
585 lio->link_changes++;
586
587 if (lio->linfo.link.s.link_up) {
588 dev_dbg(&oct->pci_dev->dev, "%s: link_up", __func__);
589 netif_carrier_on(netdev);
590 wake_txqs(netdev);
591 } else {
592 dev_dbg(&oct->pci_dev->dev, "%s: link_off", __func__);
593 netif_carrier_off(netdev);
594 stop_txqs(netdev);
595 }
596 if (lio->linfo.link.s.mtu != current_max_mtu) {
597 netif_info(lio, probe, lio->netdev, "Max MTU changed from %d to %d\n",
598 current_max_mtu, lio->linfo.link.s.mtu);
599 netdev->max_mtu = lio->linfo.link.s.mtu;
600 }
601 if (lio->linfo.link.s.mtu < netdev->mtu) {
602 dev_warn(&oct->pci_dev->dev,
603 "Current MTU is higher than new max MTU; Reducing the current mtu from %d to %d\n",
604 netdev->mtu, lio->linfo.link.s.mtu);
605 queue_delayed_work(lio->link_status_wq.wq,
606 &lio->link_status_wq.wk.work, 0);
607 }
608 }
609}
610
611
612
613
614
615
616
617static void lio_sync_octeon_time(struct work_struct *work)
618{
619 struct cavium_wk *wk = (struct cavium_wk *)work;
620 struct lio *lio = (struct lio *)wk->ctxptr;
621 struct octeon_device *oct = lio->oct_dev;
622 struct octeon_soft_command *sc;
623 struct timespec64 ts;
624 struct lio_time *lt;
625 int ret;
626
627 sc = octeon_alloc_soft_command(oct, sizeof(struct lio_time), 16, 0);
628 if (!sc) {
629 dev_err(&oct->pci_dev->dev,
630 "Failed to sync time to octeon: soft command allocation failed\n");
631 return;
632 }
633
634 lt = (struct lio_time *)sc->virtdptr;
635
636
637 ktime_get_real_ts64(&ts);
638 lt->sec = ts.tv_sec;
639 lt->nsec = ts.tv_nsec;
640 octeon_swap_8B_data((u64 *)lt, (sizeof(struct lio_time)) / 8);
641
642 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
643 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
644 OPCODE_NIC_SYNC_OCTEON_TIME, 0, 0, 0);
645
646 init_completion(&sc->complete);
647 sc->sc_status = OCTEON_REQUEST_PENDING;
648
649 ret = octeon_send_soft_command(oct, sc);
650 if (ret == IQ_SEND_FAILED) {
651 dev_err(&oct->pci_dev->dev,
652 "Failed to sync time to octeon: failed to send soft command\n");
653 octeon_free_soft_command(oct, sc);
654 } else {
655 WRITE_ONCE(sc->caller_is_done, true);
656 }
657
658 queue_delayed_work(lio->sync_octeon_time_wq.wq,
659 &lio->sync_octeon_time_wq.wk.work,
660 msecs_to_jiffies(LIO_SYNC_OCTEON_TIME_INTERVAL_MS));
661}
662
663
664
665
666
667
668static inline int setup_sync_octeon_time_wq(struct net_device *netdev)
669{
670 struct lio *lio = GET_LIO(netdev);
671 struct octeon_device *oct = lio->oct_dev;
672
673 lio->sync_octeon_time_wq.wq =
674 alloc_workqueue("update-octeon-time", WQ_MEM_RECLAIM, 0);
675 if (!lio->sync_octeon_time_wq.wq) {
676 dev_err(&oct->pci_dev->dev, "Unable to create wq to update octeon time\n");
677 return -1;
678 }
679 INIT_DELAYED_WORK(&lio->sync_octeon_time_wq.wk.work,
680 lio_sync_octeon_time);
681 lio->sync_octeon_time_wq.wk.ctxptr = lio;
682 queue_delayed_work(lio->sync_octeon_time_wq.wq,
683 &lio->sync_octeon_time_wq.wk.work,
684 msecs_to_jiffies(LIO_SYNC_OCTEON_TIME_INTERVAL_MS));
685
686 return 0;
687}
688
689
690
691
692
693
694
695
696
697static inline void cleanup_sync_octeon_time_wq(struct net_device *netdev)
698{
699 struct lio *lio = GET_LIO(netdev);
700 struct cavium_wq *time_wq = &lio->sync_octeon_time_wq;
701
702 if (time_wq->wq) {
703 cancel_delayed_work_sync(&time_wq->wk.work);
704 destroy_workqueue(time_wq->wq);
705 }
706}
707
708static struct octeon_device *get_other_octeon_device(struct octeon_device *oct)
709{
710 struct octeon_device *other_oct;
711
712 other_oct = lio_get_device(oct->octeon_id + 1);
713
714 if (other_oct && other_oct->pci_dev) {
715 int oct_busnum, other_oct_busnum;
716
717 oct_busnum = oct->pci_dev->bus->number;
718 other_oct_busnum = other_oct->pci_dev->bus->number;
719
720 if (oct_busnum == other_oct_busnum) {
721 int oct_slot, other_oct_slot;
722
723 oct_slot = PCI_SLOT(oct->pci_dev->devfn);
724 other_oct_slot = PCI_SLOT(other_oct->pci_dev->devfn);
725
726 if (oct_slot == other_oct_slot)
727 return other_oct;
728 }
729 }
730
731 return NULL;
732}
733
734static void disable_all_vf_links(struct octeon_device *oct)
735{
736 struct net_device *netdev;
737 int max_vfs, vf, i;
738
739 if (!oct)
740 return;
741
742 max_vfs = oct->sriov_info.max_vfs;
743
744 for (i = 0; i < oct->ifcount; i++) {
745 netdev = oct->props[i].netdev;
746 if (!netdev)
747 continue;
748
749 for (vf = 0; vf < max_vfs; vf++)
750 liquidio_set_vf_link_state(netdev, vf,
751 IFLA_VF_LINK_STATE_DISABLE);
752 }
753}
754
755static int liquidio_watchdog(void *param)
756{
757 bool err_msg_was_printed[LIO_MAX_CORES];
758 u16 mask_of_crashed_or_stuck_cores = 0;
759 bool all_vf_links_are_disabled = false;
760 struct octeon_device *oct = param;
761 struct octeon_device *other_oct;
762#ifdef CONFIG_MODULE_UNLOAD
763 long refcount, vfs_referencing_pf;
764 u64 vfs_mask1, vfs_mask2;
765#endif
766 int core;
767
768 memset(err_msg_was_printed, 0, sizeof(err_msg_was_printed));
769
770 while (!kthread_should_stop()) {
771
772 set_current_state(TASK_INTERRUPTIBLE);
773 schedule_timeout(msecs_to_jiffies(2000));
774
775 mask_of_crashed_or_stuck_cores =
776 (u16)octeon_read_csr64(oct, CN23XX_SLI_SCRATCH2);
777
778 if (!mask_of_crashed_or_stuck_cores)
779 continue;
780
781 WRITE_ONCE(oct->cores_crashed, true);
782 other_oct = get_other_octeon_device(oct);
783 if (other_oct)
784 WRITE_ONCE(other_oct->cores_crashed, true);
785
786 for (core = 0; core < LIO_MAX_CORES; core++) {
787 bool core_crashed_or_got_stuck;
788
789 core_crashed_or_got_stuck =
790 (mask_of_crashed_or_stuck_cores
791 >> core) & 1;
792
793 if (core_crashed_or_got_stuck &&
794 !err_msg_was_printed[core]) {
795 dev_err(&oct->pci_dev->dev,
796 "ERROR: Octeon core %d crashed or got stuck! See oct-fwdump for details.\n",
797 core);
798 err_msg_was_printed[core] = true;
799 }
800 }
801
802 if (all_vf_links_are_disabled)
803 continue;
804
805 disable_all_vf_links(oct);
806 disable_all_vf_links(other_oct);
807 all_vf_links_are_disabled = true;
808
809#ifdef CONFIG_MODULE_UNLOAD
810 vfs_mask1 = READ_ONCE(oct->sriov_info.vf_drv_loaded_mask);
811 vfs_mask2 = READ_ONCE(other_oct->sriov_info.vf_drv_loaded_mask);
812
813 vfs_referencing_pf = hweight64(vfs_mask1);
814 vfs_referencing_pf += hweight64(vfs_mask2);
815
816 refcount = module_refcount(THIS_MODULE);
817 if (refcount >= vfs_referencing_pf) {
818 while (vfs_referencing_pf) {
819 module_put(THIS_MODULE);
820 vfs_referencing_pf--;
821 }
822 }
823#endif
824 }
825
826 return 0;
827}
828
829
830
831
832
833
834static int
835liquidio_probe(struct pci_dev *pdev, const struct pci_device_id __maybe_unused *ent)
836{
837 struct octeon_device *oct_dev = NULL;
838 struct handshake *hs;
839
840 oct_dev = octeon_allocate_device(pdev->device,
841 sizeof(struct octeon_device_priv));
842 if (!oct_dev) {
843 dev_err(&pdev->dev, "Unable to allocate device\n");
844 return -ENOMEM;
845 }
846
847 if (pdev->device == OCTEON_CN23XX_PF_VID)
848 oct_dev->msix_on = LIO_FLAG_MSIX_ENABLED;
849
850
851 if (((pdev->device == OCTEON_CN66XX) ||
852 (pdev->device == OCTEON_CN68XX)))
853 oct_dev->ptp_enable = true;
854 else
855 oct_dev->ptp_enable = false;
856
857 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
858 (u32)pdev->vendor, (u32)pdev->device);
859
860
861 pci_set_drvdata(pdev, oct_dev);
862
863
864 oct_dev->pci_dev = (void *)pdev;
865
866 oct_dev->subsystem_id = pdev->subsystem_vendor |
867 (pdev->subsystem_device << 16);
868
869 hs = &handshake[oct_dev->octeon_id];
870 init_completion(&hs->init);
871 init_completion(&hs->started);
872 hs->pci_dev = pdev;
873
874 if (oct_dev->octeon_id == 0)
875
876 complete(&first_stage);
877
878 if (octeon_device_init(oct_dev)) {
879 complete(&hs->init);
880 liquidio_remove(pdev);
881 return -ENOMEM;
882 }
883
884 if (OCTEON_CN23XX_PF(oct_dev)) {
885 u8 bus, device, function;
886
887 if (atomic_read(oct_dev->adapter_refcount) == 1) {
888
889
890
891
892 bus = pdev->bus->number;
893 device = PCI_SLOT(pdev->devfn);
894 function = PCI_FUNC(pdev->devfn);
895 oct_dev->watchdog_task = kthread_create(
896 liquidio_watchdog, oct_dev,
897 "liowd/%02hhx:%02hhx.%hhx", bus, device, function);
898 if (!IS_ERR(oct_dev->watchdog_task)) {
899 wake_up_process(oct_dev->watchdog_task);
900 } else {
901 oct_dev->watchdog_task = NULL;
902 dev_err(&oct_dev->pci_dev->dev,
903 "failed to create kernel_thread\n");
904 liquidio_remove(pdev);
905 return -1;
906 }
907 }
908 }
909
910 oct_dev->rx_pause = 1;
911 oct_dev->tx_pause = 1;
912
913 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
914
915 return 0;
916}
917
918static bool fw_type_is_auto(void)
919{
920 return strncmp(fw_type, LIO_FW_NAME_TYPE_AUTO,
921 sizeof(LIO_FW_NAME_TYPE_AUTO)) == 0;
922}
923
924
925
926
927
928static void octeon_pci_flr(struct octeon_device *oct)
929{
930 int rc;
931
932 pci_save_state(oct->pci_dev);
933
934 pci_cfg_access_lock(oct->pci_dev);
935
936
937 pci_write_config_word(oct->pci_dev, PCI_COMMAND,
938 PCI_COMMAND_INTX_DISABLE);
939
940 rc = __pci_reset_function_locked(oct->pci_dev);
941
942 if (rc != 0)
943 dev_err(&oct->pci_dev->dev, "Error %d resetting PCI function %d\n",
944 rc, oct->pf_num);
945
946 pci_cfg_access_unlock(oct->pci_dev);
947
948 pci_restore_state(oct->pci_dev);
949}
950
951
952
953
954
955static void octeon_destroy_resources(struct octeon_device *oct)
956{
957 int i, refcount;
958 struct msix_entry *msix_entries;
959 struct octeon_device_priv *oct_priv =
960 (struct octeon_device_priv *)oct->priv;
961
962 struct handshake *hs;
963
964 switch (atomic_read(&oct->status)) {
965 case OCT_DEV_RUNNING:
966 case OCT_DEV_CORE_OK:
967
968
969 atomic_set(&oct->status, OCT_DEV_IN_RESET);
970
971 oct->app_mode = CVM_DRV_INVALID_APP;
972 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
973 lio_get_state_string(&oct->status));
974
975 schedule_timeout_uninterruptible(HZ / 10);
976
977 fallthrough;
978 case OCT_DEV_HOST_OK:
979
980 case OCT_DEV_CONSOLE_INIT_DONE:
981
982 octeon_remove_consoles(oct);
983
984 fallthrough;
985 case OCT_DEV_IO_QUEUES_DONE:
986 if (lio_wait_for_instr_fetch(oct))
987 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
988
989 if (wait_for_pending_requests(oct))
990 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
991
992
993
994
995
996 oct->fn_list.disable_io_queues(oct);
997
998 if (lio_wait_for_oq_pkts(oct))
999 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1000
1001
1002
1003
1004 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
1005 struct octeon_instr_queue *iq;
1006
1007 if (!(oct->io_qmask.iq & BIT_ULL(i)))
1008 continue;
1009 iq = oct->instr_queue[i];
1010
1011 if (atomic_read(&iq->instr_pending)) {
1012 spin_lock_bh(&iq->lock);
1013 iq->fill_cnt = 0;
1014 iq->octeon_read_index = iq->host_write_index;
1015 iq->stats.instr_processed +=
1016 atomic_read(&iq->instr_pending);
1017 lio_process_iq_request_list(oct, iq, 0);
1018 spin_unlock_bh(&iq->lock);
1019 }
1020 }
1021
1022 lio_process_ordered_list(oct, 1);
1023 octeon_free_sc_done_list(oct);
1024 octeon_free_sc_zombie_list(oct);
1025
1026 fallthrough;
1027 case OCT_DEV_INTR_SET_DONE:
1028
1029 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
1030
1031 if (oct->msix_on) {
1032 msix_entries = (struct msix_entry *)oct->msix_entries;
1033 for (i = 0; i < oct->num_msix_irqs - 1; i++) {
1034 if (oct->ioq_vector[i].vector) {
1035
1036 irq_set_affinity_hint(
1037 msix_entries[i].vector,
1038 NULL);
1039 free_irq(msix_entries[i].vector,
1040 &oct->ioq_vector[i]);
1041 oct->ioq_vector[i].vector = 0;
1042 }
1043 }
1044
1045 free_irq(msix_entries[i].vector, oct);
1046
1047 pci_disable_msix(oct->pci_dev);
1048 kfree(oct->msix_entries);
1049 oct->msix_entries = NULL;
1050 } else {
1051
1052 free_irq(oct->pci_dev->irq, oct);
1053
1054 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1055 pci_disable_msi(oct->pci_dev);
1056 }
1057
1058 kfree(oct->irq_name_storage);
1059 oct->irq_name_storage = NULL;
1060
1061 fallthrough;
1062 case OCT_DEV_MSIX_ALLOC_VECTOR_DONE:
1063 if (OCTEON_CN23XX_PF(oct))
1064 octeon_free_ioq_vector(oct);
1065
1066 fallthrough;
1067 case OCT_DEV_MBOX_SETUP_DONE:
1068 if (OCTEON_CN23XX_PF(oct))
1069 oct->fn_list.free_mbox(oct);
1070
1071 fallthrough;
1072 case OCT_DEV_IN_RESET:
1073 case OCT_DEV_DROQ_INIT_DONE:
1074
1075 mdelay(100);
1076 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
1077 if (!(oct->io_qmask.oq & BIT_ULL(i)))
1078 continue;
1079 octeon_delete_droq(oct, i);
1080 }
1081
1082
1083 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1084 hs = &handshake[i];
1085
1086 if (hs->pci_dev) {
1087 handshake[oct->octeon_id].init_ok = 0;
1088 complete(&handshake[oct->octeon_id].init);
1089 handshake[oct->octeon_id].started_ok = 0;
1090 complete(&handshake[oct->octeon_id].started);
1091 }
1092 }
1093
1094 fallthrough;
1095 case OCT_DEV_RESP_LIST_INIT_DONE:
1096 octeon_delete_response_list(oct);
1097
1098 fallthrough;
1099 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
1100 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
1101 if (!(oct->io_qmask.iq & BIT_ULL(i)))
1102 continue;
1103 octeon_delete_instr_queue(oct, i);
1104 }
1105#ifdef CONFIG_PCI_IOV
1106 if (oct->sriov_info.sriov_enabled)
1107 pci_disable_sriov(oct->pci_dev);
1108#endif
1109 fallthrough;
1110 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1111 octeon_free_sc_buffer_pool(oct);
1112
1113 fallthrough;
1114 case OCT_DEV_DISPATCH_INIT_DONE:
1115 octeon_delete_dispatch_list(oct);
1116 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1117
1118 fallthrough;
1119 case OCT_DEV_PCI_MAP_DONE:
1120 refcount = octeon_deregister_device(oct);
1121
1122
1123
1124
1125
1126
1127
1128 if (atomic_read(oct->adapter_fw_state) == FW_IS_PRELOADED)
1129 octeon_pci_flr(oct);
1130 else if (OCTEON_CN6XXX(oct) || !refcount)
1131 oct->fn_list.soft_reset(oct);
1132
1133 octeon_unmap_pci_barx(oct, 0);
1134 octeon_unmap_pci_barx(oct, 1);
1135
1136 fallthrough;
1137 case OCT_DEV_PCI_ENABLE_DONE:
1138 pci_clear_master(oct->pci_dev);
1139
1140 pci_disable_device(oct->pci_dev);
1141
1142 fallthrough;
1143 case OCT_DEV_BEGIN_STATE:
1144
1145 break;
1146 }
1147
1148 tasklet_kill(&oct_priv->droq_tasklet);
1149}
1150
1151
1152
1153
1154
1155
1156static int send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1157{
1158 struct octeon_soft_command *sc;
1159 union octnet_cmd *ncmd;
1160 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1161 int retval;
1162
1163 if (oct->props[lio->ifidx].rx_on == start_stop)
1164 return 0;
1165
1166 sc = (struct octeon_soft_command *)
1167 octeon_alloc_soft_command(oct, OCTNET_CMD_SIZE,
1168 16, 0);
1169 if (!sc) {
1170 netif_info(lio, rx_err, lio->netdev,
1171 "Failed to allocate octeon_soft_command struct\n");
1172 return -ENOMEM;
1173 }
1174
1175 ncmd = (union octnet_cmd *)sc->virtdptr;
1176
1177 ncmd->u64 = 0;
1178 ncmd->s.cmd = OCTNET_CMD_RX_CTL;
1179 ncmd->s.param1 = start_stop;
1180
1181 octeon_swap_8B_data((u64 *)ncmd, (OCTNET_CMD_SIZE >> 3));
1182
1183 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
1184
1185 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
1186 OPCODE_NIC_CMD, 0, 0, 0);
1187
1188 init_completion(&sc->complete);
1189 sc->sc_status = OCTEON_REQUEST_PENDING;
1190
1191 retval = octeon_send_soft_command(oct, sc);
1192 if (retval == IQ_SEND_FAILED) {
1193 netif_info(lio, rx_err, lio->netdev, "Failed to send RX Control message\n");
1194 octeon_free_soft_command(oct, sc);
1195 } else {
1196
1197
1198
1199 retval = wait_for_sc_completion_timeout(oct, sc, 0);
1200 if (retval)
1201 return retval;
1202
1203 oct->props[lio->ifidx].rx_on = start_stop;
1204 WRITE_ONCE(sc->caller_is_done, true);
1205 }
1206
1207 return retval;
1208}
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218static void liquidio_destroy_nic_device(struct octeon_device *oct, int ifidx)
1219{
1220 struct net_device *netdev = oct->props[ifidx].netdev;
1221 struct octeon_device_priv *oct_priv =
1222 (struct octeon_device_priv *)oct->priv;
1223 struct napi_struct *napi, *n;
1224 struct lio *lio;
1225
1226 if (!netdev) {
1227 dev_err(&oct->pci_dev->dev, "%s No netdevice ptr for index %d\n",
1228 __func__, ifidx);
1229 return;
1230 }
1231
1232 lio = GET_LIO(netdev);
1233
1234 dev_dbg(&oct->pci_dev->dev, "NIC device cleanup\n");
1235
1236 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING)
1237 liquidio_stop(netdev);
1238
1239 if (oct->props[lio->ifidx].napi_enabled == 1) {
1240 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1241 napi_disable(napi);
1242
1243 oct->props[lio->ifidx].napi_enabled = 0;
1244
1245 if (OCTEON_CN23XX_PF(oct))
1246 oct->droq[0]->ops.poll_mode = 0;
1247 }
1248
1249
1250 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1251 netif_napi_del(napi);
1252
1253 tasklet_enable(&oct_priv->droq_tasklet);
1254
1255 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
1256 unregister_netdev(netdev);
1257
1258 cleanup_sync_octeon_time_wq(netdev);
1259 cleanup_link_status_change_wq(netdev);
1260
1261 cleanup_rx_oom_poll_fn(netdev);
1262
1263 lio_delete_glists(lio);
1264
1265 free_netdev(netdev);
1266
1267 oct->props[ifidx].gmxport = -1;
1268
1269 oct->props[ifidx].netdev = NULL;
1270}
1271
1272
1273
1274
1275
1276static int liquidio_stop_nic_module(struct octeon_device *oct)
1277{
1278 int i, j;
1279 struct lio *lio;
1280
1281 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1282 if (!oct->ifcount) {
1283 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1284 return 1;
1285 }
1286
1287 spin_lock_bh(&oct->cmd_resp_wqlock);
1288 oct->cmd_resp_state = OCT_DRV_OFFLINE;
1289 spin_unlock_bh(&oct->cmd_resp_wqlock);
1290
1291 lio_vf_rep_destroy(oct);
1292
1293 for (i = 0; i < oct->ifcount; i++) {
1294 lio = GET_LIO(oct->props[i].netdev);
1295 for (j = 0; j < oct->num_oqs; j++)
1296 octeon_unregister_droq_ops(oct,
1297 lio->linfo.rxpciq[j].s.q_no);
1298 }
1299
1300 for (i = 0; i < oct->ifcount; i++)
1301 liquidio_destroy_nic_device(oct, i);
1302
1303 if (oct->devlink) {
1304 devlink_unregister(oct->devlink);
1305 devlink_free(oct->devlink);
1306 oct->devlink = NULL;
1307 }
1308
1309 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1310 return 0;
1311}
1312
1313
1314
1315
1316
1317static void liquidio_remove(struct pci_dev *pdev)
1318{
1319 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1320
1321 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1322
1323 if (oct_dev->watchdog_task)
1324 kthread_stop(oct_dev->watchdog_task);
1325
1326 if (!oct_dev->octeon_id &&
1327 oct_dev->fw_info.app_cap_flags & LIQUIDIO_SWITCHDEV_CAP)
1328 lio_vf_rep_modexit();
1329
1330 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1331 liquidio_stop_nic_module(oct_dev);
1332
1333
1334
1335
1336 octeon_destroy_resources(oct_dev);
1337
1338 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1339
1340
1341
1342
1343 octeon_free_device_mem(oct_dev);
1344}
1345
1346
1347
1348
1349
1350static int octeon_chip_specific_setup(struct octeon_device *oct)
1351{
1352 u32 dev_id, rev_id;
1353 int ret = 1;
1354
1355 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1356 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1357 oct->rev_id = rev_id & 0xff;
1358
1359 switch (dev_id) {
1360 case OCTEON_CN68XX_PCIID:
1361 oct->chip_id = OCTEON_CN68XX;
1362 ret = lio_setup_cn68xx_octeon_device(oct);
1363 break;
1364
1365 case OCTEON_CN66XX_PCIID:
1366 oct->chip_id = OCTEON_CN66XX;
1367 ret = lio_setup_cn66xx_octeon_device(oct);
1368 break;
1369
1370 case OCTEON_CN23XX_PCIID_PF:
1371 oct->chip_id = OCTEON_CN23XX_PF_VID;
1372 ret = setup_cn23xx_octeon_pf_device(oct);
1373 if (ret)
1374 break;
1375#ifdef CONFIG_PCI_IOV
1376 if (!ret)
1377 pci_sriov_set_totalvfs(oct->pci_dev,
1378 oct->sriov_info.max_vfs);
1379#endif
1380 break;
1381
1382 default:
1383 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1384 dev_id);
1385 }
1386
1387 return ret;
1388}
1389
1390
1391
1392
1393
1394static int octeon_pci_os_setup(struct octeon_device *oct)
1395{
1396
1397 if (pci_enable_device(oct->pci_dev)) {
1398 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1399 return 1;
1400 }
1401
1402 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1403 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
1404 pci_disable_device(oct->pci_dev);
1405 return 1;
1406 }
1407
1408
1409 pci_set_master(oct->pci_dev);
1410
1411 return 0;
1412}
1413
1414
1415
1416
1417
1418static void free_netbuf(void *buf)
1419{
1420 struct sk_buff *skb;
1421 struct octnet_buf_free_info *finfo;
1422 struct lio *lio;
1423
1424 finfo = (struct octnet_buf_free_info *)buf;
1425 skb = finfo->skb;
1426 lio = finfo->lio;
1427
1428 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1429 DMA_TO_DEVICE);
1430
1431 tx_buffer_free(skb);
1432}
1433
1434
1435
1436
1437
1438static void free_netsgbuf(void *buf)
1439{
1440 struct octnet_buf_free_info *finfo;
1441 struct sk_buff *skb;
1442 struct lio *lio;
1443 struct octnic_gather *g;
1444 int i, frags, iq;
1445
1446 finfo = (struct octnet_buf_free_info *)buf;
1447 skb = finfo->skb;
1448 lio = finfo->lio;
1449 g = finfo->g;
1450 frags = skb_shinfo(skb)->nr_frags;
1451
1452 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1453 g->sg[0].ptr[0], (skb->len - skb->data_len),
1454 DMA_TO_DEVICE);
1455
1456 i = 1;
1457 while (frags--) {
1458 skb_frag_t *frag = &skb_shinfo(skb)->frags[i - 1];
1459
1460 pci_unmap_page((lio->oct_dev)->pci_dev,
1461 g->sg[(i >> 2)].ptr[(i & 3)],
1462 skb_frag_size(frag), DMA_TO_DEVICE);
1463 i++;
1464 }
1465
1466 iq = skb_iq(lio->oct_dev, skb);
1467 spin_lock(&lio->glist_lock[iq]);
1468 list_add_tail(&g->list, &lio->glist[iq]);
1469 spin_unlock(&lio->glist_lock[iq]);
1470
1471 tx_buffer_free(skb);
1472}
1473
1474
1475
1476
1477
1478static void free_netsgbuf_with_resp(void *buf)
1479{
1480 struct octeon_soft_command *sc;
1481 struct octnet_buf_free_info *finfo;
1482 struct sk_buff *skb;
1483 struct lio *lio;
1484 struct octnic_gather *g;
1485 int i, frags, iq;
1486
1487 sc = (struct octeon_soft_command *)buf;
1488 skb = (struct sk_buff *)sc->callback_arg;
1489 finfo = (struct octnet_buf_free_info *)&skb->cb;
1490
1491 lio = finfo->lio;
1492 g = finfo->g;
1493 frags = skb_shinfo(skb)->nr_frags;
1494
1495 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1496 g->sg[0].ptr[0], (skb->len - skb->data_len),
1497 DMA_TO_DEVICE);
1498
1499 i = 1;
1500 while (frags--) {
1501 skb_frag_t *frag = &skb_shinfo(skb)->frags[i - 1];
1502
1503 pci_unmap_page((lio->oct_dev)->pci_dev,
1504 g->sg[(i >> 2)].ptr[(i & 3)],
1505 skb_frag_size(frag), DMA_TO_DEVICE);
1506 i++;
1507 }
1508
1509 iq = skb_iq(lio->oct_dev, skb);
1510
1511 spin_lock(&lio->glist_lock[iq]);
1512 list_add_tail(&g->list, &lio->glist[iq]);
1513 spin_unlock(&lio->glist_lock[iq]);
1514
1515
1516}
1517
1518
1519
1520
1521
1522
1523static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
1524{
1525 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1526 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1527 u64 comp, delta;
1528 unsigned long flags;
1529 bool neg_adj = false;
1530
1531 if (ppb < 0) {
1532 neg_adj = true;
1533 ppb = -ppb;
1534 }
1535
1536
1537
1538
1539
1540 delta = (u64)ppb << 32;
1541 do_div(delta, oct->coproc_clock_rate);
1542
1543 spin_lock_irqsave(&lio->ptp_lock, flags);
1544 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
1545 if (neg_adj)
1546 comp -= delta;
1547 else
1548 comp += delta;
1549 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1550 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1551
1552 return 0;
1553}
1554
1555
1556
1557
1558
1559
1560static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
1561{
1562 unsigned long flags;
1563 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1564
1565 spin_lock_irqsave(&lio->ptp_lock, flags);
1566 lio->ptp_adjust += delta;
1567 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1568
1569 return 0;
1570}
1571
1572
1573
1574
1575
1576
1577static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
1578 struct timespec64 *ts)
1579{
1580 u64 ns;
1581 unsigned long flags;
1582 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1583 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1584
1585 spin_lock_irqsave(&lio->ptp_lock, flags);
1586 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
1587 ns += lio->ptp_adjust;
1588 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1589
1590 *ts = ns_to_timespec64(ns);
1591
1592 return 0;
1593}
1594
1595
1596
1597
1598
1599
1600static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
1601 const struct timespec64 *ts)
1602{
1603 u64 ns;
1604 unsigned long flags;
1605 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1606 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1607
1608 ns = timespec64_to_ns(ts);
1609
1610 spin_lock_irqsave(&lio->ptp_lock, flags);
1611 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
1612 lio->ptp_adjust = 0;
1613 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1614
1615 return 0;
1616}
1617
1618
1619
1620
1621
1622
1623
1624static int
1625liquidio_ptp_enable(struct ptp_clock_info __maybe_unused *ptp,
1626 struct ptp_clock_request __maybe_unused *rq,
1627 int __maybe_unused on)
1628{
1629 return -EOPNOTSUPP;
1630}
1631
1632
1633
1634
1635
1636static void oct_ptp_open(struct net_device *netdev)
1637{
1638 struct lio *lio = GET_LIO(netdev);
1639 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1640
1641 spin_lock_init(&lio->ptp_lock);
1642
1643 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
1644 lio->ptp_info.owner = THIS_MODULE;
1645 lio->ptp_info.max_adj = 250000000;
1646 lio->ptp_info.n_alarm = 0;
1647 lio->ptp_info.n_ext_ts = 0;
1648 lio->ptp_info.n_per_out = 0;
1649 lio->ptp_info.pps = 0;
1650 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
1651 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
1652 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
1653 lio->ptp_info.settime64 = liquidio_ptp_settime;
1654 lio->ptp_info.enable = liquidio_ptp_enable;
1655
1656 lio->ptp_adjust = 0;
1657
1658 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
1659 &oct->pci_dev->dev);
1660
1661 if (IS_ERR(lio->ptp_clock))
1662 lio->ptp_clock = NULL;
1663}
1664
1665
1666
1667
1668
1669static void liquidio_ptp_init(struct octeon_device *oct)
1670{
1671 u64 clock_comp, cfg;
1672
1673 clock_comp = (u64)NSEC_PER_SEC << 32;
1674 do_div(clock_comp, oct->coproc_clock_rate);
1675 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1676
1677
1678 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
1679 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
1680}
1681
1682
1683
1684
1685
1686
1687
1688static int load_firmware(struct octeon_device *oct)
1689{
1690 int ret = 0;
1691 const struct firmware *fw;
1692 char fw_name[LIO_MAX_FW_FILENAME_LEN];
1693 char *tmp_fw_type;
1694
1695 if (fw_type_is_auto()) {
1696 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
1697 strncpy(fw_type, tmp_fw_type, sizeof(fw_type));
1698 } else {
1699 tmp_fw_type = fw_type;
1700 }
1701
1702 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
1703 octeon_get_conf(oct)->card_name, tmp_fw_type,
1704 LIO_FW_NAME_SUFFIX);
1705
1706 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
1707 if (ret) {
1708 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n",
1709 fw_name);
1710 release_firmware(fw);
1711 return ret;
1712 }
1713
1714 ret = octeon_download_firmware(oct, fw->data, fw->size);
1715
1716 release_firmware(fw);
1717
1718 return ret;
1719}
1720
1721
1722
1723
1724
1725static void octnet_poll_check_txq_status(struct work_struct *work)
1726{
1727 struct cavium_wk *wk = (struct cavium_wk *)work;
1728 struct lio *lio = (struct lio *)wk->ctxptr;
1729
1730 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
1731 return;
1732
1733 check_txq_status(lio);
1734 queue_delayed_work(lio->txq_status_wq.wq,
1735 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
1736}
1737
1738
1739
1740
1741
1742static inline int setup_tx_poll_fn(struct net_device *netdev)
1743{
1744 struct lio *lio = GET_LIO(netdev);
1745 struct octeon_device *oct = lio->oct_dev;
1746
1747 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
1748 WQ_MEM_RECLAIM, 0);
1749 if (!lio->txq_status_wq.wq) {
1750 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
1751 return -1;
1752 }
1753 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
1754 octnet_poll_check_txq_status);
1755 lio->txq_status_wq.wk.ctxptr = lio;
1756 queue_delayed_work(lio->txq_status_wq.wq,
1757 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
1758 return 0;
1759}
1760
1761static inline void cleanup_tx_poll_fn(struct net_device *netdev)
1762{
1763 struct lio *lio = GET_LIO(netdev);
1764
1765 if (lio->txq_status_wq.wq) {
1766 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
1767 destroy_workqueue(lio->txq_status_wq.wq);
1768 }
1769}
1770
1771
1772
1773
1774
1775static int liquidio_open(struct net_device *netdev)
1776{
1777 struct lio *lio = GET_LIO(netdev);
1778 struct octeon_device *oct = lio->oct_dev;
1779 struct octeon_device_priv *oct_priv =
1780 (struct octeon_device_priv *)oct->priv;
1781 struct napi_struct *napi, *n;
1782 int ret = 0;
1783
1784 if (oct->props[lio->ifidx].napi_enabled == 0) {
1785 tasklet_disable(&oct_priv->droq_tasklet);
1786
1787 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1788 napi_enable(napi);
1789
1790 oct->props[lio->ifidx].napi_enabled = 1;
1791
1792 if (OCTEON_CN23XX_PF(oct))
1793 oct->droq[0]->ops.poll_mode = 1;
1794 }
1795
1796 if (oct->ptp_enable)
1797 oct_ptp_open(netdev);
1798
1799 ifstate_set(lio, LIO_IFSTATE_RUNNING);
1800
1801 if (OCTEON_CN23XX_PF(oct)) {
1802 if (!oct->msix_on)
1803 if (setup_tx_poll_fn(netdev))
1804 return -1;
1805 } else {
1806 if (setup_tx_poll_fn(netdev))
1807 return -1;
1808 }
1809
1810 netif_tx_start_all_queues(netdev);
1811
1812
1813 lio->intf_open = 1;
1814
1815 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
1816
1817
1818 ret = send_rx_ctrl_cmd(lio, 1);
1819 if (ret)
1820 return ret;
1821
1822
1823 INIT_DELAYED_WORK(&lio->stats_wk.work, lio_fetch_stats);
1824 lio->stats_wk.ctxptr = lio;
1825 schedule_delayed_work(&lio->stats_wk.work, msecs_to_jiffies
1826 (LIQUIDIO_NDEV_STATS_POLL_TIME_MS));
1827
1828 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
1829 netdev->name);
1830
1831 return ret;
1832}
1833
1834
1835
1836
1837
1838static int liquidio_stop(struct net_device *netdev)
1839{
1840 struct lio *lio = GET_LIO(netdev);
1841 struct octeon_device *oct = lio->oct_dev;
1842 struct octeon_device_priv *oct_priv =
1843 (struct octeon_device_priv *)oct->priv;
1844 struct napi_struct *napi, *n;
1845 int ret = 0;
1846
1847 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
1848
1849
1850 lio->intf_open = 0;
1851
1852 stop_txqs(netdev);
1853
1854
1855 netif_carrier_off(netdev);
1856 netif_tx_disable(netdev);
1857
1858 lio->linfo.link.s.link_up = 0;
1859 lio->link_changes++;
1860
1861
1862 ret = send_rx_ctrl_cmd(lio, 0);
1863 if (ret)
1864 return ret;
1865
1866 if (OCTEON_CN23XX_PF(oct)) {
1867 if (!oct->msix_on)
1868 cleanup_tx_poll_fn(netdev);
1869 } else {
1870 cleanup_tx_poll_fn(netdev);
1871 }
1872
1873 cancel_delayed_work_sync(&lio->stats_wk.work);
1874
1875 if (lio->ptp_clock) {
1876 ptp_clock_unregister(lio->ptp_clock);
1877 lio->ptp_clock = NULL;
1878 }
1879
1880
1881 if (lio_wait_for_clean_oq(oct))
1882 netif_info(lio, rx_err, lio->netdev,
1883 "Proceeding with stop interface after partial RX desc processing\n");
1884
1885 if (oct->props[lio->ifidx].napi_enabled == 1) {
1886 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1887 napi_disable(napi);
1888
1889 oct->props[lio->ifidx].napi_enabled = 0;
1890
1891 if (OCTEON_CN23XX_PF(oct))
1892 oct->droq[0]->ops.poll_mode = 0;
1893
1894 tasklet_enable(&oct_priv->droq_tasklet);
1895 }
1896
1897 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
1898
1899 return ret;
1900}
1901
1902
1903
1904
1905
1906
1907
1908
1909static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
1910{
1911 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
1912
1913 if (netdev->flags & IFF_PROMISC)
1914 f |= OCTNET_IFFLAG_PROMISC;
1915
1916 if (netdev->flags & IFF_ALLMULTI)
1917 f |= OCTNET_IFFLAG_ALLMULTI;
1918
1919 if (netdev->flags & IFF_MULTICAST) {
1920 f |= OCTNET_IFFLAG_MULTICAST;
1921
1922
1923
1924
1925 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
1926 f |= OCTNET_IFFLAG_ALLMULTI;
1927 }
1928
1929 if (netdev->flags & IFF_BROADCAST)
1930 f |= OCTNET_IFFLAG_BROADCAST;
1931
1932 return f;
1933}
1934
1935
1936
1937
1938
1939static void liquidio_set_mcast_list(struct net_device *netdev)
1940{
1941 struct lio *lio = GET_LIO(netdev);
1942 struct octeon_device *oct = lio->oct_dev;
1943 struct octnic_ctrl_pkt nctrl;
1944 struct netdev_hw_addr *ha;
1945 u64 *mc;
1946 int ret;
1947 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
1948
1949 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
1950
1951
1952 nctrl.ncmd.u64 = 0;
1953 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
1954 nctrl.ncmd.s.param1 = get_new_flags(netdev);
1955 nctrl.ncmd.s.param2 = mc_count;
1956 nctrl.ncmd.s.more = mc_count;
1957 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
1958 nctrl.netpndev = (u64)netdev;
1959 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
1960
1961
1962 mc = &nctrl.udd[0];
1963 netdev_for_each_mc_addr(ha, netdev) {
1964 *mc = 0;
1965 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
1966
1967
1968 if (++mc > &nctrl.udd[mc_count])
1969 break;
1970 }
1971
1972
1973
1974
1975
1976 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
1977 if (ret) {
1978 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
1979 ret);
1980 }
1981}
1982
1983
1984
1985
1986
1987
1988static int liquidio_set_mac(struct net_device *netdev, void *p)
1989{
1990 int ret = 0;
1991 struct lio *lio = GET_LIO(netdev);
1992 struct octeon_device *oct = lio->oct_dev;
1993 struct sockaddr *addr = (struct sockaddr *)p;
1994 struct octnic_ctrl_pkt nctrl;
1995
1996 if (!is_valid_ether_addr(addr->sa_data))
1997 return -EADDRNOTAVAIL;
1998
1999 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2000
2001 nctrl.ncmd.u64 = 0;
2002 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
2003 nctrl.ncmd.s.param1 = 0;
2004 nctrl.ncmd.s.more = 1;
2005 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2006 nctrl.netpndev = (u64)netdev;
2007
2008 nctrl.udd[0] = 0;
2009
2010 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2011
2012 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
2013 if (ret < 0) {
2014 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2015 return -ENOMEM;
2016 }
2017
2018 if (nctrl.sc_status) {
2019 dev_err(&oct->pci_dev->dev,
2020 "%s: MAC Address change failed. sc return=%x\n",
2021 __func__, nctrl.sc_status);
2022 return -EIO;
2023 }
2024
2025 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2026 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2027
2028 return 0;
2029}
2030
2031static void
2032liquidio_get_stats64(struct net_device *netdev,
2033 struct rtnl_link_stats64 *lstats)
2034{
2035 struct lio *lio = GET_LIO(netdev);
2036 struct octeon_device *oct;
2037 u64 pkts = 0, drop = 0, bytes = 0;
2038 struct oct_droq_stats *oq_stats;
2039 struct oct_iq_stats *iq_stats;
2040 int i, iq_no, oq_no;
2041
2042 oct = lio->oct_dev;
2043
2044 if (ifstate_check(lio, LIO_IFSTATE_RESETTING))
2045 return;
2046
2047 for (i = 0; i < oct->num_iqs; i++) {
2048 iq_no = lio->linfo.txpciq[i].s.q_no;
2049 iq_stats = &oct->instr_queue[iq_no]->stats;
2050 pkts += iq_stats->tx_done;
2051 drop += iq_stats->tx_dropped;
2052 bytes += iq_stats->tx_tot_bytes;
2053 }
2054
2055 lstats->tx_packets = pkts;
2056 lstats->tx_bytes = bytes;
2057 lstats->tx_dropped = drop;
2058
2059 pkts = 0;
2060 drop = 0;
2061 bytes = 0;
2062
2063 for (i = 0; i < oct->num_oqs; i++) {
2064 oq_no = lio->linfo.rxpciq[i].s.q_no;
2065 oq_stats = &oct->droq[oq_no]->stats;
2066 pkts += oq_stats->rx_pkts_received;
2067 drop += (oq_stats->rx_dropped +
2068 oq_stats->dropped_nodispatch +
2069 oq_stats->dropped_toomany +
2070 oq_stats->dropped_nomem);
2071 bytes += oq_stats->rx_bytes_received;
2072 }
2073
2074 lstats->rx_bytes = bytes;
2075 lstats->rx_packets = pkts;
2076 lstats->rx_dropped = drop;
2077
2078 lstats->multicast = oct->link_stats.fromwire.fw_total_mcast;
2079 lstats->collisions = oct->link_stats.fromhost.total_collisions;
2080
2081
2082 lstats->rx_length_errors = oct->link_stats.fromwire.l2_err;
2083
2084 lstats->rx_crc_errors = oct->link_stats.fromwire.fcs_err;
2085
2086 lstats->rx_frame_errors = oct->link_stats.fromwire.frame_err;
2087
2088 lstats->rx_fifo_errors = oct->link_stats.fromwire.fifo_err;
2089
2090 lstats->rx_errors = lstats->rx_length_errors + lstats->rx_crc_errors +
2091 lstats->rx_frame_errors + lstats->rx_fifo_errors;
2092
2093
2094 lstats->tx_aborted_errors = oct->link_stats.fromhost.fw_err_pko;
2095 lstats->tx_carrier_errors = oct->link_stats.fromhost.fw_err_link;
2096 lstats->tx_fifo_errors = oct->link_stats.fromhost.fifo_err;
2097
2098 lstats->tx_errors = lstats->tx_aborted_errors +
2099 lstats->tx_carrier_errors +
2100 lstats->tx_fifo_errors;
2101}
2102
2103
2104
2105
2106
2107
2108static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr)
2109{
2110 struct hwtstamp_config conf;
2111 struct lio *lio = GET_LIO(netdev);
2112
2113 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
2114 return -EFAULT;
2115
2116 if (conf.flags)
2117 return -EINVAL;
2118
2119 switch (conf.tx_type) {
2120 case HWTSTAMP_TX_ON:
2121 case HWTSTAMP_TX_OFF:
2122 break;
2123 default:
2124 return -ERANGE;
2125 }
2126
2127 switch (conf.rx_filter) {
2128 case HWTSTAMP_FILTER_NONE:
2129 break;
2130 case HWTSTAMP_FILTER_ALL:
2131 case HWTSTAMP_FILTER_SOME:
2132 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
2133 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
2134 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
2135 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
2136 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
2137 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
2138 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
2139 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
2140 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
2141 case HWTSTAMP_FILTER_PTP_V2_EVENT:
2142 case HWTSTAMP_FILTER_PTP_V2_SYNC:
2143 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
2144 case HWTSTAMP_FILTER_NTP_ALL:
2145 conf.rx_filter = HWTSTAMP_FILTER_ALL;
2146 break;
2147 default:
2148 return -ERANGE;
2149 }
2150
2151 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
2152 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2153
2154 else
2155 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2156
2157 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
2158}
2159
2160
2161
2162
2163
2164
2165
2166static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2167{
2168 struct lio *lio = GET_LIO(netdev);
2169
2170 switch (cmd) {
2171 case SIOCSHWTSTAMP:
2172 if (lio->oct_dev->ptp_enable)
2173 return hwtstamp_ioctl(netdev, ifr);
2174 fallthrough;
2175 default:
2176 return -EOPNOTSUPP;
2177 }
2178}
2179
2180
2181
2182
2183
2184
2185
2186static void handle_timestamp(struct octeon_device *oct,
2187 u32 status,
2188 void *buf)
2189{
2190 struct octnet_buf_free_info *finfo;
2191 struct octeon_soft_command *sc;
2192 struct oct_timestamp_resp *resp;
2193 struct lio *lio;
2194 struct sk_buff *skb = (struct sk_buff *)buf;
2195
2196 finfo = (struct octnet_buf_free_info *)skb->cb;
2197 lio = finfo->lio;
2198 sc = finfo->sc;
2199 oct = lio->oct_dev;
2200 resp = (struct oct_timestamp_resp *)sc->virtrptr;
2201
2202 if (status != OCTEON_REQUEST_DONE) {
2203 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
2204 CVM_CAST64(status));
2205 resp->timestamp = 0;
2206 }
2207
2208 octeon_swap_8B_data(&resp->timestamp, 1);
2209
2210 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
2211 struct skb_shared_hwtstamps ts;
2212 u64 ns = resp->timestamp;
2213
2214 netif_info(lio, tx_done, lio->netdev,
2215 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
2216 skb, (unsigned long long)ns);
2217 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
2218 skb_tstamp_tx(skb, &ts);
2219 }
2220
2221 octeon_free_soft_command(oct, sc);
2222 tx_buffer_free(skb);
2223}
2224
2225
2226
2227
2228
2229
2230
2231
2232static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
2233 struct octnic_data_pkt *ndata,
2234 struct octnet_buf_free_info *finfo,
2235 int xmit_more)
2236{
2237 int retval;
2238 struct octeon_soft_command *sc;
2239 struct lio *lio;
2240 int ring_doorbell;
2241 u32 len;
2242
2243 lio = finfo->lio;
2244
2245 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
2246 sizeof(struct oct_timestamp_resp));
2247 finfo->sc = sc;
2248
2249 if (!sc) {
2250 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
2251 return IQ_SEND_FAILED;
2252 }
2253
2254 if (ndata->reqtype == REQTYPE_NORESP_NET)
2255 ndata->reqtype = REQTYPE_RESP_NET;
2256 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
2257 ndata->reqtype = REQTYPE_RESP_NET_SG;
2258
2259 sc->callback = handle_timestamp;
2260 sc->callback_arg = finfo->skb;
2261 sc->iq_no = ndata->q_no;
2262
2263 if (OCTEON_CN23XX_PF(oct))
2264 len = (u32)((struct octeon_instr_ih3 *)
2265 (&sc->cmd.cmd3.ih3))->dlengsz;
2266 else
2267 len = (u32)((struct octeon_instr_ih2 *)
2268 (&sc->cmd.cmd2.ih2))->dlengsz;
2269
2270 ring_doorbell = !xmit_more;
2271
2272 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
2273 sc, len, ndata->reqtype);
2274
2275 if (retval == IQ_SEND_FAILED) {
2276 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
2277 retval);
2278 octeon_free_soft_command(oct, sc);
2279 } else {
2280 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
2281 }
2282
2283 return retval;
2284}
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294static netdev_tx_t liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
2295{
2296 struct lio *lio;
2297 struct octnet_buf_free_info *finfo;
2298 union octnic_cmd_setup cmdsetup;
2299 struct octnic_data_pkt ndata;
2300 struct octeon_device *oct;
2301 struct oct_iq_stats *stats;
2302 struct octeon_instr_irh *irh;
2303 union tx_info *tx_info;
2304 int status = 0;
2305 int q_idx = 0, iq_no = 0;
2306 int j, xmit_more = 0;
2307 u64 dptr = 0;
2308 u32 tag = 0;
2309
2310 lio = GET_LIO(netdev);
2311 oct = lio->oct_dev;
2312
2313 q_idx = skb_iq(oct, skb);
2314 tag = q_idx;
2315 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
2316
2317 stats = &oct->instr_queue[iq_no]->stats;
2318
2319
2320
2321
2322 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
2323 (!lio->linfo.link.s.link_up) ||
2324 (skb->len <= 0)) {
2325 netif_info(lio, tx_err, lio->netdev,
2326 "Transmit failed link_status : %d\n",
2327 lio->linfo.link.s.link_up);
2328 goto lio_xmit_failed;
2329 }
2330
2331
2332
2333
2334 finfo = (struct octnet_buf_free_info *)skb->cb;
2335 finfo->lio = lio;
2336 finfo->skb = skb;
2337 finfo->sc = NULL;
2338
2339
2340 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
2341
2342 ndata.buf = (void *)finfo;
2343
2344 ndata.q_no = iq_no;
2345
2346 if (octnet_iq_is_full(oct, ndata.q_no)) {
2347
2348 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
2349 ndata.q_no);
2350 stats->tx_iq_busy++;
2351 return NETDEV_TX_BUSY;
2352 }
2353
2354
2355
2356
2357
2358 ndata.datasize = skb->len;
2359
2360 cmdsetup.u64 = 0;
2361 cmdsetup.s.iq_no = iq_no;
2362
2363 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2364 if (skb->encapsulation) {
2365 cmdsetup.s.tnl_csum = 1;
2366 stats->tx_vxlan++;
2367 } else {
2368 cmdsetup.s.transport_csum = 1;
2369 }
2370 }
2371 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
2372 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
2373 cmdsetup.s.timestamp = 1;
2374 }
2375
2376 if (skb_shinfo(skb)->nr_frags == 0) {
2377 cmdsetup.s.u.datasize = skb->len;
2378 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
2379
2380
2381 dptr = dma_map_single(&oct->pci_dev->dev,
2382 skb->data,
2383 skb->len,
2384 DMA_TO_DEVICE);
2385 if (dma_mapping_error(&oct->pci_dev->dev, dptr)) {
2386 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
2387 __func__);
2388 stats->tx_dmamap_fail++;
2389 return NETDEV_TX_BUSY;
2390 }
2391
2392 if (OCTEON_CN23XX_PF(oct))
2393 ndata.cmd.cmd3.dptr = dptr;
2394 else
2395 ndata.cmd.cmd2.dptr = dptr;
2396 finfo->dptr = dptr;
2397 ndata.reqtype = REQTYPE_NORESP_NET;
2398
2399 } else {
2400 int i, frags;
2401 skb_frag_t *frag;
2402 struct octnic_gather *g;
2403
2404 spin_lock(&lio->glist_lock[q_idx]);
2405 g = (struct octnic_gather *)
2406 lio_list_delete_head(&lio->glist[q_idx]);
2407 spin_unlock(&lio->glist_lock[q_idx]);
2408
2409 if (!g) {
2410 netif_info(lio, tx_err, lio->netdev,
2411 "Transmit scatter gather: glist null!\n");
2412 goto lio_xmit_failed;
2413 }
2414
2415 cmdsetup.s.gather = 1;
2416 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
2417 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
2418
2419 memset(g->sg, 0, g->sg_size);
2420
2421 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
2422 skb->data,
2423 (skb->len - skb->data_len),
2424 DMA_TO_DEVICE);
2425 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
2426 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
2427 __func__);
2428 stats->tx_dmamap_fail++;
2429 return NETDEV_TX_BUSY;
2430 }
2431 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
2432
2433 frags = skb_shinfo(skb)->nr_frags;
2434 i = 1;
2435 while (frags--) {
2436 frag = &skb_shinfo(skb)->frags[i - 1];
2437
2438 g->sg[(i >> 2)].ptr[(i & 3)] =
2439 skb_frag_dma_map(&oct->pci_dev->dev,
2440 frag, 0, skb_frag_size(frag),
2441 DMA_TO_DEVICE);
2442
2443 if (dma_mapping_error(&oct->pci_dev->dev,
2444 g->sg[i >> 2].ptr[i & 3])) {
2445 dma_unmap_single(&oct->pci_dev->dev,
2446 g->sg[0].ptr[0],
2447 skb->len - skb->data_len,
2448 DMA_TO_DEVICE);
2449 for (j = 1; j < i; j++) {
2450 frag = &skb_shinfo(skb)->frags[j - 1];
2451 dma_unmap_page(&oct->pci_dev->dev,
2452 g->sg[j >> 2].ptr[j & 3],
2453 skb_frag_size(frag),
2454 DMA_TO_DEVICE);
2455 }
2456 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
2457 __func__);
2458 return NETDEV_TX_BUSY;
2459 }
2460
2461 add_sg_size(&g->sg[(i >> 2)], skb_frag_size(frag),
2462 (i & 3));
2463 i++;
2464 }
2465
2466 dptr = g->sg_dma_ptr;
2467
2468 if (OCTEON_CN23XX_PF(oct))
2469 ndata.cmd.cmd3.dptr = dptr;
2470 else
2471 ndata.cmd.cmd2.dptr = dptr;
2472 finfo->dptr = dptr;
2473 finfo->g = g;
2474
2475 ndata.reqtype = REQTYPE_NORESP_NET_SG;
2476 }
2477
2478 if (OCTEON_CN23XX_PF(oct)) {
2479 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd3.irh;
2480 tx_info = (union tx_info *)&ndata.cmd.cmd3.ossp[0];
2481 } else {
2482 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd2.irh;
2483 tx_info = (union tx_info *)&ndata.cmd.cmd2.ossp[0];
2484 }
2485
2486 if (skb_shinfo(skb)->gso_size) {
2487 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
2488 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
2489 stats->tx_gso++;
2490 }
2491
2492
2493 if (skb_vlan_tag_present(skb)) {
2494 irh->priority = skb_vlan_tag_get(skb) >> 13;
2495 irh->vlan = skb_vlan_tag_get(skb) & 0xfff;
2496 }
2497
2498 xmit_more = netdev_xmit_more();
2499
2500 if (unlikely(cmdsetup.s.timestamp))
2501 status = send_nic_timestamp_pkt(oct, &ndata, finfo, xmit_more);
2502 else
2503 status = octnet_send_nic_data_pkt(oct, &ndata, xmit_more);
2504 if (status == IQ_SEND_FAILED)
2505 goto lio_xmit_failed;
2506
2507 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
2508
2509 if (status == IQ_SEND_STOP)
2510 netif_stop_subqueue(netdev, q_idx);
2511
2512 netif_trans_update(netdev);
2513
2514 if (tx_info->s.gso_segs)
2515 stats->tx_done += tx_info->s.gso_segs;
2516 else
2517 stats->tx_done++;
2518 stats->tx_tot_bytes += ndata.datasize;
2519
2520 return NETDEV_TX_OK;
2521
2522lio_xmit_failed:
2523 stats->tx_dropped++;
2524 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
2525 iq_no, stats->tx_dropped);
2526 if (dptr)
2527 dma_unmap_single(&oct->pci_dev->dev, dptr,
2528 ndata.datasize, DMA_TO_DEVICE);
2529
2530 octeon_ring_doorbell_locked(oct, iq_no);
2531
2532 tx_buffer_free(skb);
2533 return NETDEV_TX_OK;
2534}
2535
2536
2537
2538
2539
2540
2541static void liquidio_tx_timeout(struct net_device *netdev, unsigned int txqueue)
2542{
2543 struct lio *lio;
2544
2545 lio = GET_LIO(netdev);
2546
2547 netif_info(lio, tx_err, lio->netdev,
2548 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
2549 netdev->stats.tx_dropped);
2550 netif_trans_update(netdev);
2551 wake_txqs(netdev);
2552}
2553
2554static int liquidio_vlan_rx_add_vid(struct net_device *netdev,
2555 __be16 proto __attribute__((unused)),
2556 u16 vid)
2557{
2558 struct lio *lio = GET_LIO(netdev);
2559 struct octeon_device *oct = lio->oct_dev;
2560 struct octnic_ctrl_pkt nctrl;
2561 int ret = 0;
2562
2563 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2564
2565 nctrl.ncmd.u64 = 0;
2566 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
2567 nctrl.ncmd.s.param1 = vid;
2568 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2569 nctrl.netpndev = (u64)netdev;
2570 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2571
2572 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
2573 if (ret) {
2574 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
2575 ret);
2576 if (ret > 0)
2577 ret = -EIO;
2578 }
2579
2580 return ret;
2581}
2582
2583static int liquidio_vlan_rx_kill_vid(struct net_device *netdev,
2584 __be16 proto __attribute__((unused)),
2585 u16 vid)
2586{
2587 struct lio *lio = GET_LIO(netdev);
2588 struct octeon_device *oct = lio->oct_dev;
2589 struct octnic_ctrl_pkt nctrl;
2590 int ret = 0;
2591
2592 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2593
2594 nctrl.ncmd.u64 = 0;
2595 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
2596 nctrl.ncmd.s.param1 = vid;
2597 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2598 nctrl.netpndev = (u64)netdev;
2599 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2600
2601 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
2602 if (ret) {
2603 dev_err(&oct->pci_dev->dev, "Del VLAN filter failed in core (ret: 0x%x)\n",
2604 ret);
2605 if (ret > 0)
2606 ret = -EIO;
2607 }
2608 return ret;
2609}
2610
2611
2612
2613
2614
2615
2616
2617
2618static int liquidio_set_rxcsum_command(struct net_device *netdev, int command,
2619 u8 rx_cmd)
2620{
2621 struct lio *lio = GET_LIO(netdev);
2622 struct octeon_device *oct = lio->oct_dev;
2623 struct octnic_ctrl_pkt nctrl;
2624 int ret = 0;
2625
2626 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2627
2628 nctrl.ncmd.u64 = 0;
2629 nctrl.ncmd.s.cmd = command;
2630 nctrl.ncmd.s.param1 = rx_cmd;
2631 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2632 nctrl.netpndev = (u64)netdev;
2633 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2634
2635 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
2636 if (ret) {
2637 dev_err(&oct->pci_dev->dev,
2638 "DEVFLAGS RXCSUM change failed in core(ret:0x%x)\n",
2639 ret);
2640 if (ret > 0)
2641 ret = -EIO;
2642 }
2643 return ret;
2644}
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655static int liquidio_vxlan_port_command(struct net_device *netdev, int command,
2656 u16 vxlan_port, u8 vxlan_cmd_bit)
2657{
2658 struct lio *lio = GET_LIO(netdev);
2659 struct octeon_device *oct = lio->oct_dev;
2660 struct octnic_ctrl_pkt nctrl;
2661 int ret = 0;
2662
2663 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2664
2665 nctrl.ncmd.u64 = 0;
2666 nctrl.ncmd.s.cmd = command;
2667 nctrl.ncmd.s.more = vxlan_cmd_bit;
2668 nctrl.ncmd.s.param1 = vxlan_port;
2669 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2670 nctrl.netpndev = (u64)netdev;
2671 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2672
2673 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
2674 if (ret) {
2675 dev_err(&oct->pci_dev->dev,
2676 "VxLAN port add/delete failed in core (ret:0x%x)\n",
2677 ret);
2678 if (ret > 0)
2679 ret = -EIO;
2680 }
2681 return ret;
2682}
2683
2684static int liquidio_udp_tunnel_set_port(struct net_device *netdev,
2685 unsigned int table, unsigned int entry,
2686 struct udp_tunnel_info *ti)
2687{
2688 return liquidio_vxlan_port_command(netdev,
2689 OCTNET_CMD_VXLAN_PORT_CONFIG,
2690 htons(ti->port),
2691 OCTNET_CMD_VXLAN_PORT_ADD);
2692}
2693
2694static int liquidio_udp_tunnel_unset_port(struct net_device *netdev,
2695 unsigned int table,
2696 unsigned int entry,
2697 struct udp_tunnel_info *ti)
2698{
2699 return liquidio_vxlan_port_command(netdev,
2700 OCTNET_CMD_VXLAN_PORT_CONFIG,
2701 htons(ti->port),
2702 OCTNET_CMD_VXLAN_PORT_DEL);
2703}
2704
2705static const struct udp_tunnel_nic_info liquidio_udp_tunnels = {
2706 .set_port = liquidio_udp_tunnel_set_port,
2707 .unset_port = liquidio_udp_tunnel_unset_port,
2708 .tables = {
2709 { .n_entries = 1024, .tunnel_types = UDP_TUNNEL_TYPE_VXLAN, },
2710 },
2711};
2712
2713
2714
2715
2716
2717
2718
2719static netdev_features_t liquidio_fix_features(struct net_device *netdev,
2720 netdev_features_t request)
2721{
2722 struct lio *lio = netdev_priv(netdev);
2723
2724 if ((request & NETIF_F_RXCSUM) &&
2725 !(lio->dev_capability & NETIF_F_RXCSUM))
2726 request &= ~NETIF_F_RXCSUM;
2727
2728 if ((request & NETIF_F_HW_CSUM) &&
2729 !(lio->dev_capability & NETIF_F_HW_CSUM))
2730 request &= ~NETIF_F_HW_CSUM;
2731
2732 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
2733 request &= ~NETIF_F_TSO;
2734
2735 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
2736 request &= ~NETIF_F_TSO6;
2737
2738 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
2739 request &= ~NETIF_F_LRO;
2740
2741
2742 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
2743 (lio->dev_capability & NETIF_F_LRO))
2744 request &= ~NETIF_F_LRO;
2745
2746 if ((request & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2747 !(lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER))
2748 request &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
2749
2750 return request;
2751}
2752
2753
2754
2755
2756
2757
2758static int liquidio_set_features(struct net_device *netdev,
2759 netdev_features_t features)
2760{
2761 struct lio *lio = netdev_priv(netdev);
2762
2763 if ((features & NETIF_F_LRO) &&
2764 (lio->dev_capability & NETIF_F_LRO) &&
2765 !(netdev->features & NETIF_F_LRO))
2766 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
2767 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
2768 else if (!(features & NETIF_F_LRO) &&
2769 (lio->dev_capability & NETIF_F_LRO) &&
2770 (netdev->features & NETIF_F_LRO))
2771 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE,
2772 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
2773
2774
2775
2776
2777 if (!(netdev->features & NETIF_F_RXCSUM) &&
2778 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
2779 (features & NETIF_F_RXCSUM))
2780 liquidio_set_rxcsum_command(netdev,
2781 OCTNET_CMD_TNL_RX_CSUM_CTL,
2782 OCTNET_CMD_RXCSUM_ENABLE);
2783 else if ((netdev->features & NETIF_F_RXCSUM) &&
2784 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
2785 !(features & NETIF_F_RXCSUM))
2786 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
2787 OCTNET_CMD_RXCSUM_DISABLE);
2788
2789 if ((features & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2790 (lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2791 !(netdev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
2792 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
2793 OCTNET_CMD_VLAN_FILTER_ENABLE);
2794 else if (!(features & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2795 (lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2796 (netdev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
2797 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
2798 OCTNET_CMD_VLAN_FILTER_DISABLE);
2799
2800 return 0;
2801}
2802
2803static int __liquidio_set_vf_mac(struct net_device *netdev, int vfidx,
2804 u8 *mac, bool is_admin_assigned)
2805{
2806 struct lio *lio = GET_LIO(netdev);
2807 struct octeon_device *oct = lio->oct_dev;
2808 struct octnic_ctrl_pkt nctrl;
2809 int ret = 0;
2810
2811 if (!is_valid_ether_addr(mac))
2812 return -EINVAL;
2813
2814 if (vfidx < 0 || vfidx >= oct->sriov_info.max_vfs)
2815 return -EINVAL;
2816
2817 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2818
2819 nctrl.ncmd.u64 = 0;
2820 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
2821
2822 nctrl.ncmd.s.param1 = vfidx + 1;
2823 nctrl.ncmd.s.more = 1;
2824 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2825 nctrl.netpndev = (u64)netdev;
2826 if (is_admin_assigned) {
2827 nctrl.ncmd.s.param2 = true;
2828 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2829 }
2830
2831 nctrl.udd[0] = 0;
2832
2833 ether_addr_copy((u8 *)&nctrl.udd[0] + 2, mac);
2834
2835 oct->sriov_info.vf_macaddr[vfidx] = nctrl.udd[0];
2836
2837 ret = octnet_send_nic_ctrl_pkt(oct, &nctrl);
2838 if (ret > 0)
2839 ret = -EIO;
2840
2841 return ret;
2842}
2843
2844static int liquidio_set_vf_mac(struct net_device *netdev, int vfidx, u8 *mac)
2845{
2846 struct lio *lio = GET_LIO(netdev);
2847 struct octeon_device *oct = lio->oct_dev;
2848 int retval;
2849
2850 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
2851 return -EINVAL;
2852
2853 retval = __liquidio_set_vf_mac(netdev, vfidx, mac, true);
2854 if (!retval)
2855 cn23xx_tell_vf_its_macaddr_changed(oct, vfidx, mac);
2856
2857 return retval;
2858}
2859
2860static int liquidio_set_vf_spoofchk(struct net_device *netdev, int vfidx,
2861 bool enable)
2862{
2863 struct lio *lio = GET_LIO(netdev);
2864 struct octeon_device *oct = lio->oct_dev;
2865 struct octnic_ctrl_pkt nctrl;
2866 int retval;
2867
2868 if (!(oct->fw_info.app_cap_flags & LIQUIDIO_SPOOFCHK_CAP)) {
2869 netif_info(lio, drv, lio->netdev,
2870 "firmware does not support spoofchk\n");
2871 return -EOPNOTSUPP;
2872 }
2873
2874 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced) {
2875 netif_info(lio, drv, lio->netdev, "Invalid vfidx %d\n", vfidx);
2876 return -EINVAL;
2877 }
2878
2879 if (enable) {
2880 if (oct->sriov_info.vf_spoofchk[vfidx])
2881 return 0;
2882 } else {
2883
2884 if (!oct->sriov_info.vf_spoofchk[vfidx])
2885 return 0;
2886 }
2887
2888 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2889 nctrl.ncmd.s.cmdgroup = OCTNET_CMD_GROUP1;
2890 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_VF_SPOOFCHK;
2891 nctrl.ncmd.s.param1 =
2892 vfidx + 1;
2893
2894
2895 nctrl.ncmd.s.param2 = enable;
2896 nctrl.ncmd.s.more = 0;
2897 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2898 nctrl.cb_fn = NULL;
2899
2900 retval = octnet_send_nic_ctrl_pkt(oct, &nctrl);
2901
2902 if (retval) {
2903 netif_info(lio, drv, lio->netdev,
2904 "Failed to set VF %d spoofchk %s\n", vfidx,
2905 enable ? "on" : "off");
2906 return -1;
2907 }
2908
2909 oct->sriov_info.vf_spoofchk[vfidx] = enable;
2910 netif_info(lio, drv, lio->netdev, "VF %u spoofchk is %s\n", vfidx,
2911 enable ? "on" : "off");
2912
2913 return 0;
2914}
2915
2916static int liquidio_set_vf_vlan(struct net_device *netdev, int vfidx,
2917 u16 vlan, u8 qos, __be16 vlan_proto)
2918{
2919 struct lio *lio = GET_LIO(netdev);
2920 struct octeon_device *oct = lio->oct_dev;
2921 struct octnic_ctrl_pkt nctrl;
2922 u16 vlantci;
2923 int ret = 0;
2924
2925 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
2926 return -EINVAL;
2927
2928 if (vlan_proto != htons(ETH_P_8021Q))
2929 return -EPROTONOSUPPORT;
2930
2931 if (vlan >= VLAN_N_VID || qos > 7)
2932 return -EINVAL;
2933
2934 if (vlan)
2935 vlantci = vlan | (u16)qos << VLAN_PRIO_SHIFT;
2936 else
2937 vlantci = 0;
2938
2939 if (oct->sriov_info.vf_vlantci[vfidx] == vlantci)
2940 return 0;
2941
2942 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2943
2944 if (vlan)
2945 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
2946 else
2947 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
2948
2949 nctrl.ncmd.s.param1 = vlantci;
2950 nctrl.ncmd.s.param2 =
2951 vfidx + 1;
2952 nctrl.ncmd.s.more = 0;
2953 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2954 nctrl.cb_fn = NULL;
2955
2956 ret = octnet_send_nic_ctrl_pkt(oct, &nctrl);
2957 if (ret) {
2958 if (ret > 0)
2959 ret = -EIO;
2960 return ret;
2961 }
2962
2963 oct->sriov_info.vf_vlantci[vfidx] = vlantci;
2964
2965 return ret;
2966}
2967
2968static int liquidio_get_vf_config(struct net_device *netdev, int vfidx,
2969 struct ifla_vf_info *ivi)
2970{
2971 struct lio *lio = GET_LIO(netdev);
2972 struct octeon_device *oct = lio->oct_dev;
2973 u8 *macaddr;
2974
2975 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
2976 return -EINVAL;
2977
2978 memset(ivi, 0, sizeof(struct ifla_vf_info));
2979
2980 ivi->vf = vfidx;
2981 macaddr = 2 + (u8 *)&oct->sriov_info.vf_macaddr[vfidx];
2982 ether_addr_copy(&ivi->mac[0], macaddr);
2983 ivi->vlan = oct->sriov_info.vf_vlantci[vfidx] & VLAN_VID_MASK;
2984 ivi->qos = oct->sriov_info.vf_vlantci[vfidx] >> VLAN_PRIO_SHIFT;
2985 if (oct->sriov_info.trusted_vf.active &&
2986 oct->sriov_info.trusted_vf.id == vfidx)
2987 ivi->trusted = true;
2988 else
2989 ivi->trusted = false;
2990 ivi->linkstate = oct->sriov_info.vf_linkstate[vfidx];
2991 ivi->spoofchk = oct->sriov_info.vf_spoofchk[vfidx];
2992 ivi->max_tx_rate = lio->linfo.link.s.speed;
2993 ivi->min_tx_rate = 0;
2994
2995 return 0;
2996}
2997
2998static int liquidio_send_vf_trust_cmd(struct lio *lio, int vfidx, bool trusted)
2999{
3000 struct octeon_device *oct = lio->oct_dev;
3001 struct octeon_soft_command *sc;
3002 int retval;
3003
3004 sc = octeon_alloc_soft_command(oct, 0, 16, 0);
3005 if (!sc)
3006 return -ENOMEM;
3007
3008 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
3009
3010
3011 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
3012 OPCODE_NIC_SET_TRUSTED_VF, 0, vfidx + 1,
3013 trusted);
3014
3015 init_completion(&sc->complete);
3016 sc->sc_status = OCTEON_REQUEST_PENDING;
3017
3018 retval = octeon_send_soft_command(oct, sc);
3019 if (retval == IQ_SEND_FAILED) {
3020 octeon_free_soft_command(oct, sc);
3021 retval = -1;
3022 } else {
3023
3024 retval = wait_for_sc_completion_timeout(oct, sc, 0);
3025 if (retval)
3026 return (retval);
3027
3028 WRITE_ONCE(sc->caller_is_done, true);
3029 }
3030
3031 return retval;
3032}
3033
3034static int liquidio_set_vf_trust(struct net_device *netdev, int vfidx,
3035 bool setting)
3036{
3037 struct lio *lio = GET_LIO(netdev);
3038 struct octeon_device *oct = lio->oct_dev;
3039
3040 if (strcmp(oct->fw_info.liquidio_firmware_version, "1.7.1") < 0) {
3041
3042 return -EOPNOTSUPP;
3043 }
3044
3045 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced) {
3046 netif_info(lio, drv, lio->netdev, "Invalid vfidx %d\n", vfidx);
3047 return -EINVAL;
3048 }
3049
3050 if (setting) {
3051
3052
3053 if (oct->sriov_info.trusted_vf.active &&
3054 oct->sriov_info.trusted_vf.id == vfidx)
3055 return 0;
3056
3057 if (oct->sriov_info.trusted_vf.active) {
3058 netif_info(lio, drv, lio->netdev, "More than one trusted VF is not allowed\n");
3059 return -EPERM;
3060 }
3061 } else {
3062
3063
3064 if (!oct->sriov_info.trusted_vf.active)
3065 return 0;
3066 }
3067
3068 if (!liquidio_send_vf_trust_cmd(lio, vfidx, setting)) {
3069 if (setting) {
3070 oct->sriov_info.trusted_vf.id = vfidx;
3071 oct->sriov_info.trusted_vf.active = true;
3072 } else {
3073 oct->sriov_info.trusted_vf.active = false;
3074 }
3075
3076 netif_info(lio, drv, lio->netdev, "VF %u is %strusted\n", vfidx,
3077 setting ? "" : "not ");
3078 } else {
3079 netif_info(lio, drv, lio->netdev, "Failed to set VF trusted\n");
3080 return -1;
3081 }
3082
3083 return 0;
3084}
3085
3086static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
3087 int linkstate)
3088{
3089 struct lio *lio = GET_LIO(netdev);
3090 struct octeon_device *oct = lio->oct_dev;
3091 struct octnic_ctrl_pkt nctrl;
3092 int ret = 0;
3093
3094 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3095 return -EINVAL;
3096
3097 if (oct->sriov_info.vf_linkstate[vfidx] == linkstate)
3098 return 0;
3099
3100 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3101 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_VF_LINKSTATE;
3102 nctrl.ncmd.s.param1 =
3103 vfidx + 1;
3104 nctrl.ncmd.s.param2 = linkstate;
3105 nctrl.ncmd.s.more = 0;
3106 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3107 nctrl.cb_fn = NULL;
3108
3109 ret = octnet_send_nic_ctrl_pkt(oct, &nctrl);
3110
3111 if (!ret)
3112 oct->sriov_info.vf_linkstate[vfidx] = linkstate;
3113 else if (ret > 0)
3114 ret = -EIO;
3115
3116 return ret;
3117}
3118
3119static int
3120liquidio_eswitch_mode_get(struct devlink *devlink, u16 *mode)
3121{
3122 struct lio_devlink_priv *priv;
3123 struct octeon_device *oct;
3124
3125 priv = devlink_priv(devlink);
3126 oct = priv->oct;
3127
3128 *mode = oct->eswitch_mode;
3129
3130 return 0;
3131}
3132
3133static int
3134liquidio_eswitch_mode_set(struct devlink *devlink, u16 mode,
3135 struct netlink_ext_ack *extack)
3136{
3137 struct lio_devlink_priv *priv;
3138 struct octeon_device *oct;
3139 int ret = 0;
3140
3141 priv = devlink_priv(devlink);
3142 oct = priv->oct;
3143
3144 if (!(oct->fw_info.app_cap_flags & LIQUIDIO_SWITCHDEV_CAP))
3145 return -EINVAL;
3146
3147 if (oct->eswitch_mode == mode)
3148 return 0;
3149
3150 switch (mode) {
3151 case DEVLINK_ESWITCH_MODE_SWITCHDEV:
3152 oct->eswitch_mode = mode;
3153 ret = lio_vf_rep_create(oct);
3154 break;
3155
3156 case DEVLINK_ESWITCH_MODE_LEGACY:
3157 lio_vf_rep_destroy(oct);
3158 oct->eswitch_mode = mode;
3159 break;
3160
3161 default:
3162 ret = -EINVAL;
3163 }
3164
3165 return ret;
3166}
3167
3168static const struct devlink_ops liquidio_devlink_ops = {
3169 .eswitch_mode_get = liquidio_eswitch_mode_get,
3170 .eswitch_mode_set = liquidio_eswitch_mode_set,
3171};
3172
3173static int
3174liquidio_get_port_parent_id(struct net_device *dev,
3175 struct netdev_phys_item_id *ppid)
3176{
3177 struct lio *lio = GET_LIO(dev);
3178 struct octeon_device *oct = lio->oct_dev;
3179
3180 if (oct->eswitch_mode != DEVLINK_ESWITCH_MODE_SWITCHDEV)
3181 return -EOPNOTSUPP;
3182
3183 ppid->id_len = ETH_ALEN;
3184 ether_addr_copy(ppid->id, (void *)&lio->linfo.hw_addr + 2);
3185
3186 return 0;
3187}
3188
3189static int liquidio_get_vf_stats(struct net_device *netdev, int vfidx,
3190 struct ifla_vf_stats *vf_stats)
3191{
3192 struct lio *lio = GET_LIO(netdev);
3193 struct octeon_device *oct = lio->oct_dev;
3194 struct oct_vf_stats stats;
3195 int ret;
3196
3197 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3198 return -EINVAL;
3199
3200 memset(&stats, 0, sizeof(struct oct_vf_stats));
3201 ret = cn23xx_get_vf_stats(oct, vfidx, &stats);
3202 if (!ret) {
3203 vf_stats->rx_packets = stats.rx_packets;
3204 vf_stats->tx_packets = stats.tx_packets;
3205 vf_stats->rx_bytes = stats.rx_bytes;
3206 vf_stats->tx_bytes = stats.tx_bytes;
3207 vf_stats->broadcast = stats.broadcast;
3208 vf_stats->multicast = stats.multicast;
3209 }
3210
3211 return ret;
3212}
3213
3214static const struct net_device_ops lionetdevops = {
3215 .ndo_open = liquidio_open,
3216 .ndo_stop = liquidio_stop,
3217 .ndo_start_xmit = liquidio_xmit,
3218 .ndo_get_stats64 = liquidio_get_stats64,
3219 .ndo_set_mac_address = liquidio_set_mac,
3220 .ndo_set_rx_mode = liquidio_set_mcast_list,
3221 .ndo_tx_timeout = liquidio_tx_timeout,
3222
3223 .ndo_vlan_rx_add_vid = liquidio_vlan_rx_add_vid,
3224 .ndo_vlan_rx_kill_vid = liquidio_vlan_rx_kill_vid,
3225 .ndo_change_mtu = liquidio_change_mtu,
3226 .ndo_do_ioctl = liquidio_ioctl,
3227 .ndo_fix_features = liquidio_fix_features,
3228 .ndo_set_features = liquidio_set_features,
3229 .ndo_set_vf_mac = liquidio_set_vf_mac,
3230 .ndo_set_vf_vlan = liquidio_set_vf_vlan,
3231 .ndo_get_vf_config = liquidio_get_vf_config,
3232 .ndo_set_vf_spoofchk = liquidio_set_vf_spoofchk,
3233 .ndo_set_vf_trust = liquidio_set_vf_trust,
3234 .ndo_set_vf_link_state = liquidio_set_vf_link_state,
3235 .ndo_get_vf_stats = liquidio_get_vf_stats,
3236 .ndo_get_port_parent_id = liquidio_get_port_parent_id,
3237};
3238
3239
3240
3241
3242static int __init liquidio_init(void)
3243{
3244 int i;
3245 struct handshake *hs;
3246
3247 init_completion(&first_stage);
3248
3249 octeon_init_device_list(OCTEON_CONFIG_TYPE_DEFAULT);
3250
3251 if (liquidio_init_pci())
3252 return -EINVAL;
3253
3254 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3255
3256 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3257 hs = &handshake[i];
3258 if (hs->pci_dev) {
3259 wait_for_completion(&hs->init);
3260 if (!hs->init_ok) {
3261
3262 dev_err(&hs->pci_dev->dev,
3263 "Failed to init device\n");
3264 liquidio_deinit_pci();
3265 return -EIO;
3266 }
3267 }
3268 }
3269
3270 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3271 hs = &handshake[i];
3272 if (hs->pci_dev) {
3273 wait_for_completion_timeout(&hs->started,
3274 msecs_to_jiffies(30000));
3275 if (!hs->started_ok) {
3276
3277 dev_err(&hs->pci_dev->dev,
3278 "Firmware failed to start\n");
3279 liquidio_deinit_pci();
3280 return -EIO;
3281 }
3282 }
3283 }
3284
3285 return 0;
3286}
3287
3288static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
3289{
3290 struct octeon_device *oct = (struct octeon_device *)buf;
3291 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
3292 int gmxport = 0;
3293 union oct_link_status *ls;
3294 int i;
3295
3296 if (recv_pkt->buffer_size[0] != (sizeof(*ls) + OCT_DROQ_INFO_SIZE)) {
3297 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3298 recv_pkt->buffer_size[0],
3299 recv_pkt->rh.r_nic_info.gmxport);
3300 goto nic_info_err;
3301 }
3302
3303 gmxport = recv_pkt->rh.r_nic_info.gmxport;
3304 ls = (union oct_link_status *)(get_rbd(recv_pkt->buffer_ptr[0]) +
3305 OCT_DROQ_INFO_SIZE);
3306
3307 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
3308 for (i = 0; i < oct->ifcount; i++) {
3309 if (oct->props[i].gmxport == gmxport) {
3310 update_link_status(oct->props[i].netdev, ls);
3311 break;
3312 }
3313 }
3314
3315nic_info_err:
3316 for (i = 0; i < recv_pkt->buffer_count; i++)
3317 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3318 octeon_free_recv_info(recv_info);
3319 return 0;
3320}
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330static int setup_nic_devices(struct octeon_device *octeon_dev)
3331{
3332 struct lio *lio = NULL;
3333 struct net_device *netdev;
3334 u8 mac[6], i, j, *fw_ver, *micro_ver;
3335 unsigned long micro;
3336 u32 cur_ver;
3337 struct octeon_soft_command *sc;
3338 struct liquidio_if_cfg_resp *resp;
3339 struct octdev_props *props;
3340 int retval, num_iqueues, num_oqueues;
3341 int max_num_queues = 0;
3342 union oct_nic_if_cfg if_cfg;
3343 unsigned int base_queue;
3344 unsigned int gmx_port_id;
3345 u32 resp_size, data_size;
3346 u32 ifidx_or_pfnum;
3347 struct lio_version *vdata;
3348 struct devlink *devlink;
3349 struct lio_devlink_priv *lio_devlink;
3350
3351
3352 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3353 OPCODE_NIC_INFO,
3354 lio_nic_info, octeon_dev);
3355
3356
3357
3358
3359 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
3360 free_netbuf);
3361
3362 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
3363 free_netsgbuf);
3364
3365 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
3366 free_netsgbuf_with_resp);
3367
3368 for (i = 0; i < octeon_dev->ifcount; i++) {
3369 resp_size = sizeof(struct liquidio_if_cfg_resp);
3370 data_size = sizeof(struct lio_version);
3371 sc = (struct octeon_soft_command *)
3372 octeon_alloc_soft_command(octeon_dev, data_size,
3373 resp_size, 0);
3374 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
3375 vdata = (struct lio_version *)sc->virtdptr;
3376
3377 *((u64 *)vdata) = 0;
3378 vdata->major = cpu_to_be16(LIQUIDIO_BASE_MAJOR_VERSION);
3379 vdata->minor = cpu_to_be16(LIQUIDIO_BASE_MINOR_VERSION);
3380 vdata->micro = cpu_to_be16(LIQUIDIO_BASE_MICRO_VERSION);
3381
3382 if (OCTEON_CN23XX_PF(octeon_dev)) {
3383 num_iqueues = octeon_dev->sriov_info.num_pf_rings;
3384 num_oqueues = octeon_dev->sriov_info.num_pf_rings;
3385 base_queue = octeon_dev->sriov_info.pf_srn;
3386
3387 gmx_port_id = octeon_dev->pf_num;
3388 ifidx_or_pfnum = octeon_dev->pf_num;
3389 } else {
3390 num_iqueues = CFG_GET_NUM_TXQS_NIC_IF(
3391 octeon_get_conf(octeon_dev), i);
3392 num_oqueues = CFG_GET_NUM_RXQS_NIC_IF(
3393 octeon_get_conf(octeon_dev), i);
3394 base_queue = CFG_GET_BASE_QUE_NIC_IF(
3395 octeon_get_conf(octeon_dev), i);
3396 gmx_port_id = CFG_GET_GMXID_NIC_IF(
3397 octeon_get_conf(octeon_dev), i);
3398 ifidx_or_pfnum = i;
3399 }
3400
3401 dev_dbg(&octeon_dev->pci_dev->dev,
3402 "requesting config for interface %d, iqs %d, oqs %d\n",
3403 ifidx_or_pfnum, num_iqueues, num_oqueues);
3404
3405 if_cfg.u64 = 0;
3406 if_cfg.s.num_iqueues = num_iqueues;
3407 if_cfg.s.num_oqueues = num_oqueues;
3408 if_cfg.s.base_queue = base_queue;
3409 if_cfg.s.gmx_port_id = gmx_port_id;
3410
3411 sc->iq_no = 0;
3412
3413 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
3414 OPCODE_NIC_IF_CFG, 0,
3415 if_cfg.u64, 0);
3416
3417 init_completion(&sc->complete);
3418 sc->sc_status = OCTEON_REQUEST_PENDING;
3419
3420 retval = octeon_send_soft_command(octeon_dev, sc);
3421 if (retval == IQ_SEND_FAILED) {
3422 dev_err(&octeon_dev->pci_dev->dev,
3423 "iq/oq config failed status: %x\n",
3424 retval);
3425
3426 octeon_free_soft_command(octeon_dev, sc);
3427 return(-EIO);
3428 }
3429
3430
3431
3432
3433 retval = wait_for_sc_completion_timeout(octeon_dev, sc, 0);
3434 if (retval)
3435 return retval;
3436
3437 retval = resp->status;
3438 if (retval) {
3439 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
3440 WRITE_ONCE(sc->caller_is_done, true);
3441 goto setup_nic_dev_done;
3442 }
3443 snprintf(octeon_dev->fw_info.liquidio_firmware_version,
3444 32, "%s",
3445 resp->cfg_info.liquidio_firmware_version);
3446
3447
3448 fw_ver = octeon_dev->fw_info.liquidio_firmware_version;
3449 if (memcmp(LIQUIDIO_BASE_VERSION,
3450 fw_ver,
3451 strlen(LIQUIDIO_BASE_VERSION))) {
3452 dev_err(&octeon_dev->pci_dev->dev,
3453 "Unmatched firmware version. Expected %s.x, got %s.\n",
3454 LIQUIDIO_BASE_VERSION, fw_ver);
3455 WRITE_ONCE(sc->caller_is_done, true);
3456 goto setup_nic_dev_done;
3457 } else if (atomic_read(octeon_dev->adapter_fw_state) ==
3458 FW_IS_PRELOADED) {
3459 dev_info(&octeon_dev->pci_dev->dev,
3460 "Using auto-loaded firmware version %s.\n",
3461 fw_ver);
3462 }
3463
3464
3465 micro_ver = fw_ver + strlen(LIQUIDIO_BASE_VERSION) + 1;
3466 if (kstrtoul(micro_ver, 10, µ) != 0)
3467 micro = 0;
3468 octeon_dev->fw_info.ver.maj = LIQUIDIO_BASE_MAJOR_VERSION;
3469 octeon_dev->fw_info.ver.min = LIQUIDIO_BASE_MINOR_VERSION;
3470 octeon_dev->fw_info.ver.rev = micro;
3471
3472 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
3473 (sizeof(struct liquidio_if_cfg_info)) >> 3);
3474
3475 num_iqueues = hweight64(resp->cfg_info.iqmask);
3476 num_oqueues = hweight64(resp->cfg_info.oqmask);
3477
3478 if (!(num_iqueues) || !(num_oqueues)) {
3479 dev_err(&octeon_dev->pci_dev->dev,
3480 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
3481 resp->cfg_info.iqmask,
3482 resp->cfg_info.oqmask);
3483 WRITE_ONCE(sc->caller_is_done, true);
3484 goto setup_nic_dev_done;
3485 }
3486
3487 if (OCTEON_CN6XXX(octeon_dev)) {
3488 max_num_queues = CFG_GET_IQ_MAX_Q(CHIP_CONF(octeon_dev,
3489 cn6xxx));
3490 } else if (OCTEON_CN23XX_PF(octeon_dev)) {
3491 max_num_queues = CFG_GET_IQ_MAX_Q(CHIP_CONF(octeon_dev,
3492 cn23xx_pf));
3493 }
3494
3495 dev_dbg(&octeon_dev->pci_dev->dev,
3496 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d max_num_queues: %d\n",
3497 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
3498 num_iqueues, num_oqueues, max_num_queues);
3499 netdev = alloc_etherdev_mq(LIO_SIZE, max_num_queues);
3500
3501 if (!netdev) {
3502 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
3503 WRITE_ONCE(sc->caller_is_done, true);
3504 goto setup_nic_dev_done;
3505 }
3506
3507 SET_NETDEV_DEV(netdev, &octeon_dev->pci_dev->dev);
3508
3509
3510
3511
3512 netdev->netdev_ops = &lionetdevops;
3513
3514 retval = netif_set_real_num_rx_queues(netdev, num_oqueues);
3515 if (retval) {
3516 dev_err(&octeon_dev->pci_dev->dev,
3517 "setting real number rx failed\n");
3518 WRITE_ONCE(sc->caller_is_done, true);
3519 goto setup_nic_dev_free;
3520 }
3521
3522 retval = netif_set_real_num_tx_queues(netdev, num_iqueues);
3523 if (retval) {
3524 dev_err(&octeon_dev->pci_dev->dev,
3525 "setting real number tx failed\n");
3526 WRITE_ONCE(sc->caller_is_done, true);
3527 goto setup_nic_dev_free;
3528 }
3529
3530 lio = GET_LIO(netdev);
3531
3532 memset(lio, 0, sizeof(struct lio));
3533
3534 lio->ifidx = ifidx_or_pfnum;
3535
3536 props = &octeon_dev->props[i];
3537 props->gmxport = resp->cfg_info.linfo.gmxport;
3538 props->netdev = netdev;
3539
3540 lio->linfo.num_rxpciq = num_oqueues;
3541 lio->linfo.num_txpciq = num_iqueues;
3542 for (j = 0; j < num_oqueues; j++) {
3543 lio->linfo.rxpciq[j].u64 =
3544 resp->cfg_info.linfo.rxpciq[j].u64;
3545 }
3546 for (j = 0; j < num_iqueues; j++) {
3547 lio->linfo.txpciq[j].u64 =
3548 resp->cfg_info.linfo.txpciq[j].u64;
3549 }
3550 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
3551 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
3552 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
3553
3554 WRITE_ONCE(sc->caller_is_done, true);
3555
3556 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
3557
3558 if (OCTEON_CN23XX_PF(octeon_dev) ||
3559 OCTEON_CN6XXX(octeon_dev)) {
3560 lio->dev_capability = NETIF_F_HIGHDMA
3561 | NETIF_F_IP_CSUM
3562 | NETIF_F_IPV6_CSUM
3563 | NETIF_F_SG | NETIF_F_RXCSUM
3564 | NETIF_F_GRO
3565 | NETIF_F_TSO | NETIF_F_TSO6
3566 | NETIF_F_LRO;
3567 }
3568 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
3569
3570
3571
3572
3573 lio->enc_dev_capability = NETIF_F_IP_CSUM
3574 | NETIF_F_IPV6_CSUM
3575 | NETIF_F_GSO_UDP_TUNNEL
3576 | NETIF_F_HW_CSUM | NETIF_F_SG
3577 | NETIF_F_RXCSUM
3578 | NETIF_F_TSO | NETIF_F_TSO6
3579 | NETIF_F_LRO;
3580
3581 netdev->hw_enc_features = (lio->enc_dev_capability &
3582 ~NETIF_F_LRO);
3583
3584 netdev->udp_tunnel_nic_info = &liquidio_udp_tunnels;
3585
3586 lio->dev_capability |= NETIF_F_GSO_UDP_TUNNEL;
3587
3588 netdev->vlan_features = lio->dev_capability;
3589
3590 lio->dev_capability |= NETIF_F_HW_VLAN_CTAG_FILTER |
3591 NETIF_F_HW_VLAN_CTAG_RX |
3592 NETIF_F_HW_VLAN_CTAG_TX;
3593
3594 netdev->features = (lio->dev_capability & ~NETIF_F_LRO);
3595
3596 netdev->hw_features = lio->dev_capability;
3597
3598 netdev->hw_features = netdev->hw_features &
3599 ~NETIF_F_HW_VLAN_CTAG_RX;
3600
3601
3602 netdev->min_mtu = LIO_MIN_MTU_SIZE;
3603 netdev->max_mtu = LIO_MAX_MTU_SIZE;
3604
3605
3606
3607
3608 lio->oct_dev = octeon_dev;
3609 lio->octprops = props;
3610 lio->netdev = netdev;
3611
3612 dev_dbg(&octeon_dev->pci_dev->dev,
3613 "if%d gmx: %d hw_addr: 0x%llx\n", i,
3614 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
3615
3616 for (j = 0; j < octeon_dev->sriov_info.max_vfs; j++) {
3617 u8 vfmac[ETH_ALEN];
3618
3619 eth_random_addr(vfmac);
3620 if (__liquidio_set_vf_mac(netdev, j, vfmac, false)) {
3621 dev_err(&octeon_dev->pci_dev->dev,
3622 "Error setting VF%d MAC address\n",
3623 j);
3624 goto setup_nic_dev_free;
3625 }
3626 }
3627
3628
3629 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
3630 for (j = 0; j < 6; j++)
3631 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
3632
3633
3634
3635 ether_addr_copy(netdev->dev_addr, mac);
3636
3637
3638
3639
3640 lio->txq = lio->linfo.txpciq[0].s.q_no;
3641 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
3642 if (liquidio_setup_io_queues(octeon_dev, i,
3643 lio->linfo.num_txpciq,
3644 lio->linfo.num_rxpciq)) {
3645 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
3646 goto setup_nic_dev_free;
3647 }
3648
3649 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
3650
3651 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
3652 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
3653
3654 if (lio_setup_glists(octeon_dev, lio, num_iqueues)) {
3655 dev_err(&octeon_dev->pci_dev->dev,
3656 "Gather list allocation failed\n");
3657 goto setup_nic_dev_free;
3658 }
3659
3660
3661 liquidio_set_ethtool_ops(netdev);
3662 if (lio->oct_dev->chip_id == OCTEON_CN23XX_PF_VID)
3663 octeon_dev->priv_flags = OCT_PRIV_FLAG_DEFAULT;
3664 else
3665 octeon_dev->priv_flags = 0x0;
3666
3667 if (netdev->features & NETIF_F_LRO)
3668 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3669 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
3670
3671 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
3672 OCTNET_CMD_VLAN_FILTER_ENABLE);
3673
3674 if ((debug != -1) && (debug & NETIF_MSG_HW))
3675 liquidio_set_feature(netdev,
3676 OCTNET_CMD_VERBOSE_ENABLE, 0);
3677
3678 if (setup_link_status_change_wq(netdev))
3679 goto setup_nic_dev_free;
3680
3681 if ((octeon_dev->fw_info.app_cap_flags &
3682 LIQUIDIO_TIME_SYNC_CAP) &&
3683 setup_sync_octeon_time_wq(netdev))
3684 goto setup_nic_dev_free;
3685
3686 if (setup_rx_oom_poll_fn(netdev))
3687 goto setup_nic_dev_free;
3688
3689
3690 if (register_netdev(netdev)) {
3691 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
3692 goto setup_nic_dev_free;
3693 }
3694
3695 dev_dbg(&octeon_dev->pci_dev->dev,
3696 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
3697 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
3698 netif_carrier_off(netdev);
3699