]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/ethernet/cavium/liquidio/lio_main.c
liquidio: Vlan filtering
[mirror_ubuntu-bionic-kernel.git] / drivers / net / ethernet / cavium / liquidio / lio_main.c
CommitLineData
f21fb3ed
RV
1/**********************************************************************
2* Author: Cavium, Inc.
3*
4* Contact: support@cavium.com
5* Please include "LiquidIO" in the subject.
6*
7* Copyright (c) 2003-2015 Cavium, Inc.
8*
9* This file is free software; you can redistribute it and/or modify
10* it under the terms of the GNU General Public License, Version 2, as
11* published by the Free Software Foundation.
12*
13* This file is distributed in the hope that it will be useful, but
14* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16* NONINFRINGEMENT. See the GNU General Public License for more
17* details.
18*
19* This file may also be available under a different license from Cavium.
20* Contact Cavium, Inc. for more information
21**********************************************************************/
22#include <linux/version.h>
23#include <linux/module.h>
24#include <linux/crc32.h>
25#include <linux/dma-mapping.h>
26#include <linux/pci.h>
27#include <linux/pci_ids.h>
28#include <linux/ip.h>
5b173cf9 29#include <net/ip.h>
f21fb3ed
RV
30#include <linux/ipv6.h>
31#include <linux/net_tstamp.h>
32#include <linux/if_vlan.h>
33#include <linux/firmware.h>
34#include <linux/ethtool.h>
35#include <linux/ptp_clock_kernel.h>
36#include <linux/types.h>
37#include <linux/list.h>
38#include <linux/workqueue.h>
39#include <linux/interrupt.h>
40#include "octeon_config.h"
41#include "liquidio_common.h"
42#include "octeon_droq.h"
43#include "octeon_iq.h"
44#include "response_manager.h"
45#include "octeon_device.h"
46#include "octeon_nic.h"
47#include "octeon_main.h"
48#include "octeon_network.h"
49#include "cn66xx_regs.h"
50#include "cn66xx_device.h"
51#include "cn68xx_regs.h"
52#include "cn68xx_device.h"
53#include "liquidio_image.h"
54
55MODULE_AUTHOR("Cavium Networks, <support@cavium.com>");
56MODULE_DESCRIPTION("Cavium LiquidIO Intelligent Server Adapter Driver");
57MODULE_LICENSE("GPL");
58MODULE_VERSION(LIQUIDIO_VERSION);
59MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210SV_NAME LIO_FW_NAME_SUFFIX);
60MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210NV_NAME LIO_FW_NAME_SUFFIX);
61MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_410NV_NAME LIO_FW_NAME_SUFFIX);
62
63static int ddr_timeout = 10000;
64module_param(ddr_timeout, int, 0644);
65MODULE_PARM_DESC(ddr_timeout,
66 "Number of milliseconds to wait for DDR initialization. 0 waits for ddr_timeout to be set to non-zero value before starting to check");
67
68static u32 console_bitmask;
69module_param(console_bitmask, int, 0644);
70MODULE_PARM_DESC(console_bitmask,
71 "Bitmask indicating which consoles have debug output redirected to syslog.");
72
73#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
74
75static int debug = -1;
76module_param(debug, int, 0644);
77MODULE_PARM_DESC(debug, "NETIF_MSG debug bits");
78
79static char fw_type[LIO_MAX_FW_TYPE_LEN];
80module_param_string(fw_type, fw_type, sizeof(fw_type), 0000);
81MODULE_PARM_DESC(fw_type, "Type of firmware to be loaded. Default \"nic\"");
82
83static int conf_type;
84module_param(conf_type, int, 0);
85MODULE_PARM_DESC(conf_type, "select octeon configuration 0 default 1 ovs");
86
a5b37888
RV
87static int ptp_enable = 1;
88
f21fb3ed
RV
89/* Bit mask values for lio->ifstate */
90#define LIO_IFSTATE_DROQ_OPS 0x01
91#define LIO_IFSTATE_REGISTERED 0x02
92#define LIO_IFSTATE_RUNNING 0x04
93#define LIO_IFSTATE_RX_TIMESTAMP_ENABLED 0x08
94
95/* Polling interval for determining when NIC application is alive */
96#define LIQUIDIO_STARTER_POLL_INTERVAL_MS 100
97
98/* runtime link query interval */
99#define LIQUIDIO_LINK_QUERY_INTERVAL_MS 1000
100
101struct liquidio_if_cfg_context {
102 int octeon_id;
103
104 wait_queue_head_t wc;
105
106 int cond;
107};
108
109struct liquidio_if_cfg_resp {
110 u64 rh;
111 struct liquidio_if_cfg_info cfg_info;
112 u64 status;
113};
114
115struct oct_link_status_resp {
116 u64 rh;
117 struct oct_link_info link_info;
118 u64 status;
119};
120
121struct oct_timestamp_resp {
122 u64 rh;
123 u64 timestamp;
124 u64 status;
125};
126
127#define OCT_TIMESTAMP_RESP_SIZE (sizeof(struct oct_timestamp_resp))
128
129union tx_info {
130 u64 u64;
131 struct {
132#ifdef __BIG_ENDIAN_BITFIELD
133 u16 gso_size;
134 u16 gso_segs;
135 u32 reserved;
136#else
137 u32 reserved;
138 u16 gso_segs;
139 u16 gso_size;
140#endif
141 } s;
142};
143
144/** Octeon device properties to be used by the NIC module.
145 * Each octeon device in the system will be represented
146 * by this structure in the NIC module.
147 */
148
149#define OCTNIC_MAX_SG (MAX_SKB_FRAGS)
150
151#define OCTNIC_GSO_MAX_HEADER_SIZE 128
152#define OCTNIC_GSO_MAX_SIZE (GSO_MAX_SIZE - OCTNIC_GSO_MAX_HEADER_SIZE)
153
154/** Structure of a node in list of gather components maintained by
155 * NIC driver for each network device.
156 */
157struct octnic_gather {
158 /** List manipulation. Next and prev pointers. */
159 struct list_head list;
160
161 /** Size of the gather component at sg in bytes. */
162 int sg_size;
163
164 /** Number of bytes that sg was adjusted to make it 8B-aligned. */
165 int adjust;
166
167 /** Gather component that can accommodate max sized fragment list
168 * received from the IP layer.
169 */
170 struct octeon_sg_entry *sg;
fcd2b5e3
RV
171
172 u64 sg_dma_ptr;
f21fb3ed
RV
173};
174
175/** This structure is used by NIC driver to store information required
176 * to free the sk_buff when the packet has been fetched by Octeon.
177 * Bytes offset below assume worst-case of a 64-bit system.
178 */
179struct octnet_buf_free_info {
180 /** Bytes 1-8. Pointer to network device private structure. */
181 struct lio *lio;
182
183 /** Bytes 9-16. Pointer to sk_buff. */
184 struct sk_buff *skb;
185
186 /** Bytes 17-24. Pointer to gather list. */
187 struct octnic_gather *g;
188
189 /** Bytes 25-32. Physical address of skb->data or gather list. */
190 u64 dptr;
191
192 /** Bytes 33-47. Piggybacked soft command, if any */
193 struct octeon_soft_command *sc;
194};
195
196struct handshake {
197 struct completion init;
198 struct completion started;
199 struct pci_dev *pci_dev;
200 int init_ok;
201 int started_ok;
202};
203
204struct octeon_device_priv {
205 /** Tasklet structures for this device. */
206 struct tasklet_struct droq_tasklet;
207 unsigned long napi_mask;
208};
209
210static int octeon_device_init(struct octeon_device *);
211static void liquidio_remove(struct pci_dev *pdev);
212static int liquidio_probe(struct pci_dev *pdev,
213 const struct pci_device_id *ent);
214
215static struct handshake handshake[MAX_OCTEON_DEVICES];
216static struct completion first_stage;
217
5b173cf9 218static void octeon_droq_bh(unsigned long pdev)
f21fb3ed
RV
219{
220 int q_no;
221 int reschedule = 0;
222 struct octeon_device *oct = (struct octeon_device *)pdev;
223 struct octeon_device_priv *oct_priv =
224 (struct octeon_device_priv *)oct->priv;
225
226 /* for (q_no = 0; q_no < oct->num_oqs; q_no++) { */
63da8404
RV
227 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES(oct); q_no++) {
228 if (!(oct->io_qmask.oq & (1ULL << q_no)))
f21fb3ed
RV
229 continue;
230 reschedule |= octeon_droq_process_packets(oct, oct->droq[q_no],
231 MAX_PACKET_BUDGET);
232 }
233
234 if (reschedule)
235 tasklet_schedule(&oct_priv->droq_tasklet);
236}
237
5b173cf9 238static int lio_wait_for_oq_pkts(struct octeon_device *oct)
f21fb3ed
RV
239{
240 struct octeon_device_priv *oct_priv =
241 (struct octeon_device_priv *)oct->priv;
242 int retry = 100, pkt_cnt = 0, pending_pkts = 0;
243 int i;
244
245 do {
246 pending_pkts = 0;
247
63da8404
RV
248 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
249 if (!(oct->io_qmask.oq & (1ULL << i)))
f21fb3ed
RV
250 continue;
251 pkt_cnt += octeon_droq_check_hw_for_pkts(oct,
252 oct->droq[i]);
253 }
254 if (pkt_cnt > 0) {
255 pending_pkts += pkt_cnt;
256 tasklet_schedule(&oct_priv->droq_tasklet);
257 }
258 pkt_cnt = 0;
259 schedule_timeout_uninterruptible(1);
260
261 } while (retry-- && pending_pkts);
262
263 return pkt_cnt;
264}
265
266void octeon_report_tx_completion_to_bql(void *txq, unsigned int pkts_compl,
267 unsigned int bytes_compl)
268{
269 struct netdev_queue *netdev_queue = txq;
270
271 netdev_tx_completed_queue(netdev_queue, pkts_compl, bytes_compl);
272}
273
274void octeon_update_tx_completion_counters(void *buf, int reqtype,
275 unsigned int *pkts_compl,
276 unsigned int *bytes_compl)
277{
278 struct octnet_buf_free_info *finfo;
279 struct sk_buff *skb = NULL;
280 struct octeon_soft_command *sc;
281
282 switch (reqtype) {
283 case REQTYPE_NORESP_NET:
284 case REQTYPE_NORESP_NET_SG:
285 finfo = buf;
286 skb = finfo->skb;
287 break;
288
289 case REQTYPE_RESP_NET_SG:
290 case REQTYPE_RESP_NET:
291 sc = buf;
292 skb = sc->callback_arg;
293 break;
294
295 default:
296 return;
297 }
298
299 (*pkts_compl)++;
300 *bytes_compl += skb->len;
301}
302
303void octeon_report_sent_bytes_to_bql(void *buf, int reqtype)
304{
305 struct octnet_buf_free_info *finfo;
306 struct sk_buff *skb;
307 struct octeon_soft_command *sc;
308 struct netdev_queue *txq;
309
310 switch (reqtype) {
311 case REQTYPE_NORESP_NET:
312 case REQTYPE_NORESP_NET_SG:
313 finfo = buf;
314 skb = finfo->skb;
315 break;
316
317 case REQTYPE_RESP_NET_SG:
318 case REQTYPE_RESP_NET:
319 sc = buf;
320 skb = sc->callback_arg;
321 break;
322
323 default:
324 return;
325 }
326
327 txq = netdev_get_tx_queue(skb->dev, skb_get_queue_mapping(skb));
328 netdev_tx_sent_queue(txq, skb->len);
329}
330
331int octeon_console_debug_enabled(u32 console)
332{
333 return (console_bitmask >> (console)) & 0x1;
334}
335
336/**
337 * \brief Forces all IO queues off on a given device
338 * @param oct Pointer to Octeon device
339 */
340static void force_io_queues_off(struct octeon_device *oct)
341{
342 if ((oct->chip_id == OCTEON_CN66XX) ||
343 (oct->chip_id == OCTEON_CN68XX)) {
344 /* Reset the Enable bits for Input Queues. */
345 octeon_write_csr(oct, CN6XXX_SLI_PKT_INSTR_ENB, 0);
346
347 /* Reset the Enable bits for Output Queues. */
348 octeon_write_csr(oct, CN6XXX_SLI_PKT_OUT_ENB, 0);
349 }
350}
351
352/**
353 * \brief wait for all pending requests to complete
354 * @param oct Pointer to Octeon device
355 *
356 * Called during shutdown sequence
357 */
358static int wait_for_pending_requests(struct octeon_device *oct)
359{
360 int i, pcount = 0;
361
362 for (i = 0; i < 100; i++) {
363 pcount =
364 atomic_read(&oct->response_list
365 [OCTEON_ORDERED_SC_LIST].pending_req_count);
366 if (pcount)
367 schedule_timeout_uninterruptible(HZ / 10);
368 else
369 break;
370 }
371
372 if (pcount)
373 return 1;
374
375 return 0;
376}
377
378/**
379 * \brief Cause device to go quiet so it can be safely removed/reset/etc
380 * @param oct Pointer to Octeon device
381 */
382static inline void pcierror_quiesce_device(struct octeon_device *oct)
383{
384 int i;
385
386 /* Disable the input and output queues now. No more packets will
387 * arrive from Octeon, but we should wait for all packet processing
388 * to finish.
389 */
390 force_io_queues_off(oct);
391
392 /* To allow for in-flight requests */
393 schedule_timeout_uninterruptible(100);
394
395 if (wait_for_pending_requests(oct))
396 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
397
398 /* Force all requests waiting to be fetched by OCTEON to complete. */
63da8404 399 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
f21fb3ed
RV
400 struct octeon_instr_queue *iq;
401
63da8404 402 if (!(oct->io_qmask.iq & (1ULL << i)))
f21fb3ed
RV
403 continue;
404 iq = oct->instr_queue[i];
405
406 if (atomic_read(&iq->instr_pending)) {
407 spin_lock_bh(&iq->lock);
408 iq->fill_cnt = 0;
409 iq->octeon_read_index = iq->host_write_index;
410 iq->stats.instr_processed +=
411 atomic_read(&iq->instr_pending);
412 lio_process_iq_request_list(oct, iq);
413 spin_unlock_bh(&iq->lock);
414 }
415 }
416
417 /* Force all pending ordered list requests to time out. */
418 lio_process_ordered_list(oct, 1);
419
420 /* We do not need to wait for output queue packets to be processed. */
421}
422
423/**
424 * \brief Cleanup PCI AER uncorrectable error status
425 * @param dev Pointer to PCI device
426 */
427static void cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
428{
429 int pos = 0x100;
430 u32 status, mask;
431
432 pr_info("%s :\n", __func__);
433
434 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
435 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
436 if (dev->error_state == pci_channel_io_normal)
437 status &= ~mask; /* Clear corresponding nonfatal bits */
438 else
439 status &= mask; /* Clear corresponding fatal bits */
440 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
441}
442
443/**
444 * \brief Stop all PCI IO to a given device
445 * @param dev Pointer to Octeon device
446 */
447static void stop_pci_io(struct octeon_device *oct)
448{
449 /* No more instructions will be forwarded. */
450 atomic_set(&oct->status, OCT_DEV_IN_RESET);
451
452 pci_disable_device(oct->pci_dev);
453
454 /* Disable interrupts */
455 oct->fn_list.disable_interrupt(oct->chip);
456
457 pcierror_quiesce_device(oct);
458
459 /* Release the interrupt line */
460 free_irq(oct->pci_dev->irq, oct);
461
462 if (oct->flags & LIO_FLAG_MSI_ENABLED)
463 pci_disable_msi(oct->pci_dev);
464
465 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
466 lio_get_state_string(&oct->status));
467
468 /* cn63xx_cleanup_aer_uncorrect_error_status(oct->pci_dev); */
469 /* making it a common function for all OCTEON models */
470 cleanup_aer_uncorrect_error_status(oct->pci_dev);
471}
472
473/**
474 * \brief called when PCI error is detected
475 * @param pdev Pointer to PCI device
476 * @param state The current pci connection state
477 *
478 * This function is called after a PCI bus error affecting
479 * this device has been detected.
480 */
481static pci_ers_result_t liquidio_pcie_error_detected(struct pci_dev *pdev,
482 pci_channel_state_t state)
483{
484 struct octeon_device *oct = pci_get_drvdata(pdev);
485
486 /* Non-correctable Non-fatal errors */
487 if (state == pci_channel_io_normal) {
488 dev_err(&oct->pci_dev->dev, "Non-correctable non-fatal error reported:\n");
489 cleanup_aer_uncorrect_error_status(oct->pci_dev);
490 return PCI_ERS_RESULT_CAN_RECOVER;
491 }
492
493 /* Non-correctable Fatal errors */
494 dev_err(&oct->pci_dev->dev, "Non-correctable FATAL reported by PCI AER driver\n");
495 stop_pci_io(oct);
496
497 /* Always return a DISCONNECT. There is no support for recovery but only
498 * for a clean shutdown.
499 */
500 return PCI_ERS_RESULT_DISCONNECT;
501}
502
503/**
504 * \brief mmio handler
505 * @param pdev Pointer to PCI device
506 */
507static pci_ers_result_t liquidio_pcie_mmio_enabled(struct pci_dev *pdev)
508{
509 /* We should never hit this since we never ask for a reset for a Fatal
510 * Error. We always return DISCONNECT in io_error above.
511 * But play safe and return RECOVERED for now.
512 */
513 return PCI_ERS_RESULT_RECOVERED;
514}
515
516/**
517 * \brief called after the pci bus has been reset.
518 * @param pdev Pointer to PCI device
519 *
520 * Restart the card from scratch, as if from a cold-boot. Implementation
521 * resembles the first-half of the octeon_resume routine.
522 */
523static pci_ers_result_t liquidio_pcie_slot_reset(struct pci_dev *pdev)
524{
525 /* We should never hit this since we never ask for a reset for a Fatal
526 * Error. We always return DISCONNECT in io_error above.
527 * But play safe and return RECOVERED for now.
528 */
529 return PCI_ERS_RESULT_RECOVERED;
530}
531
532/**
533 * \brief called when traffic can start flowing again.
534 * @param pdev Pointer to PCI device
535 *
536 * This callback is called when the error recovery driver tells us that
537 * its OK to resume normal operation. Implementation resembles the
538 * second-half of the octeon_resume routine.
539 */
540static void liquidio_pcie_resume(struct pci_dev *pdev)
541{
542 /* Nothing to be done here. */
543}
544
545#ifdef CONFIG_PM
546/**
547 * \brief called when suspending
548 * @param pdev Pointer to PCI device
549 * @param state state to suspend to
550 */
551static int liquidio_suspend(struct pci_dev *pdev, pm_message_t state)
552{
553 return 0;
554}
555
556/**
557 * \brief called when resuming
558 * @param pdev Pointer to PCI device
559 */
560static int liquidio_resume(struct pci_dev *pdev)
561{
562 return 0;
563}
564#endif
565
566/* For PCI-E Advanced Error Recovery (AER) Interface */
166e2362 567static const struct pci_error_handlers liquidio_err_handler = {
f21fb3ed
RV
568 .error_detected = liquidio_pcie_error_detected,
569 .mmio_enabled = liquidio_pcie_mmio_enabled,
570 .slot_reset = liquidio_pcie_slot_reset,
571 .resume = liquidio_pcie_resume,
572};
573
574static const struct pci_device_id liquidio_pci_tbl[] = {
575 { /* 68xx */
576 PCI_VENDOR_ID_CAVIUM, 0x91, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
577 },
578 { /* 66xx */
579 PCI_VENDOR_ID_CAVIUM, 0x92, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
580 },
581 {
582 0, 0, 0, 0, 0, 0, 0
583 }
584};
585MODULE_DEVICE_TABLE(pci, liquidio_pci_tbl);
586
587static struct pci_driver liquidio_pci_driver = {
588 .name = "LiquidIO",
589 .id_table = liquidio_pci_tbl,
590 .probe = liquidio_probe,
591 .remove = liquidio_remove,
592 .err_handler = &liquidio_err_handler, /* For AER */
593
594#ifdef CONFIG_PM
595 .suspend = liquidio_suspend,
596 .resume = liquidio_resume,
597#endif
598
599};
600
601/**
602 * \brief register PCI driver
603 */
604static int liquidio_init_pci(void)
605{
606 return pci_register_driver(&liquidio_pci_driver);
607}
608
609/**
610 * \brief unregister PCI driver
611 */
612static void liquidio_deinit_pci(void)
613{
614 pci_unregister_driver(&liquidio_pci_driver);
615}
616
617/**
618 * \brief check interface state
619 * @param lio per-network private data
620 * @param state_flag flag state to check
621 */
622static inline int ifstate_check(struct lio *lio, int state_flag)
623{
624 return atomic_read(&lio->ifstate) & state_flag;
625}
626
627/**
628 * \brief set interface state
629 * @param lio per-network private data
630 * @param state_flag flag state to set
631 */
632static inline void ifstate_set(struct lio *lio, int state_flag)
633{
634 atomic_set(&lio->ifstate, (atomic_read(&lio->ifstate) | state_flag));
635}
636
637/**
638 * \brief clear interface state
639 * @param lio per-network private data
640 * @param state_flag flag state to clear
641 */
642static inline void ifstate_reset(struct lio *lio, int state_flag)
643{
644 atomic_set(&lio->ifstate, (atomic_read(&lio->ifstate) & ~(state_flag)));
645}
646
647/**
648 * \brief Stop Tx queues
649 * @param netdev network device
650 */
651static inline void txqs_stop(struct net_device *netdev)
652{
653 if (netif_is_multiqueue(netdev)) {
654 int i;
655
656 for (i = 0; i < netdev->num_tx_queues; i++)
657 netif_stop_subqueue(netdev, i);
658 } else {
659 netif_stop_queue(netdev);
660 }
661}
662
663/**
664 * \brief Start Tx queues
665 * @param netdev network device
666 */
667static inline void txqs_start(struct net_device *netdev)
668{
669 if (netif_is_multiqueue(netdev)) {
670 int i;
671
672 for (i = 0; i < netdev->num_tx_queues; i++)
673 netif_start_subqueue(netdev, i);
674 } else {
675 netif_start_queue(netdev);
676 }
677}
678
679/**
680 * \brief Wake Tx queues
681 * @param netdev network device
682 */
683static inline void txqs_wake(struct net_device *netdev)
684{
685 if (netif_is_multiqueue(netdev)) {
686 int i;
687
688 for (i = 0; i < netdev->num_tx_queues; i++)
26236fa9
RV
689 if (__netif_subqueue_stopped(netdev, i))
690 netif_wake_subqueue(netdev, i);
f21fb3ed
RV
691 } else {
692 netif_wake_queue(netdev);
693 }
694}
695
696/**
697 * \brief Stop Tx queue
698 * @param netdev network device
699 */
700static void stop_txq(struct net_device *netdev)
701{
702 txqs_stop(netdev);
703}
704
705/**
706 * \brief Start Tx queue
707 * @param netdev network device
708 */
709static void start_txq(struct net_device *netdev)
710{
711 struct lio *lio = GET_LIO(netdev);
712
0cece6c5 713 if (lio->linfo.link.s.link_up) {
f21fb3ed
RV
714 txqs_start(netdev);
715 return;
716 }
717}
718
719/**
720 * \brief Wake a queue
721 * @param netdev network device
722 * @param q which queue to wake
723 */
724static inline void wake_q(struct net_device *netdev, int q)
725{
726 if (netif_is_multiqueue(netdev))
727 netif_wake_subqueue(netdev, q);
728 else
729 netif_wake_queue(netdev);
730}
731
732/**
733 * \brief Stop a queue
734 * @param netdev network device
735 * @param q which queue to stop
736 */
737static inline void stop_q(struct net_device *netdev, int q)
738{
739 if (netif_is_multiqueue(netdev))
740 netif_stop_subqueue(netdev, q);
741 else
742 netif_stop_queue(netdev);
743}
744
745/**
746 * \brief Check Tx queue status, and take appropriate action
747 * @param lio per-network private data
748 * @returns 0 if full, number of queues woken up otherwise
749 */
750static inline int check_txq_status(struct lio *lio)
751{
752 int ret_val = 0;
753
754 if (netif_is_multiqueue(lio->netdev)) {
755 int numqs = lio->netdev->num_tx_queues;
756 int q, iq = 0;
757
758 /* check each sub-queue state */
759 for (q = 0; q < numqs; q++) {
26236fa9
RV
760 iq = lio->linfo.txpciq[q %
761 (lio->linfo.num_txpciq)].s.q_no;
f21fb3ed
RV
762 if (octnet_iq_is_full(lio->oct_dev, iq))
763 continue;
26236fa9
RV
764 if (__netif_subqueue_stopped(lio->netdev, q)) {
765 wake_q(lio->netdev, q);
766 ret_val++;
767 }
f21fb3ed
RV
768 }
769 } else {
770 if (octnet_iq_is_full(lio->oct_dev, lio->txq))
771 return 0;
772 wake_q(lio->netdev, lio->txq);
773 ret_val = 1;
774 }
775 return ret_val;
776}
777
778/**
779 * Remove the node at the head of the list. The list would be empty at
780 * the end of this call if there are no more nodes in the list.
781 */
782static inline struct list_head *list_delete_head(struct list_head *root)
783{
784 struct list_head *node;
785
786 if ((root->prev == root) && (root->next == root))
787 node = NULL;
788 else
789 node = root->next;
790
791 if (node)
792 list_del(node);
793
794 return node;
795}
796
797/**
fcd2b5e3 798 * \brief Delete gather lists
f21fb3ed
RV
799 * @param lio per-network private data
800 */
fcd2b5e3 801static void delete_glists(struct lio *lio)
f21fb3ed
RV
802{
803 struct octnic_gather *g;
fcd2b5e3 804 int i;
f21fb3ed 805
fcd2b5e3
RV
806 if (!lio->glist)
807 return;
808
809 for (i = 0; i < lio->linfo.num_txpciq; i++) {
810 do {
811 g = (struct octnic_gather *)
812 list_delete_head(&lio->glist[i]);
813 if (g) {
814 if (g->sg) {
815 dma_unmap_single(&lio->oct_dev->
816 pci_dev->dev,
817 g->sg_dma_ptr,
818 g->sg_size,
819 DMA_TO_DEVICE);
820 kfree((void *)((unsigned long)g->sg -
821 g->adjust));
822 }
823 kfree(g);
824 }
825 } while (g);
826 }
827
828 kfree((void *)lio->glist);
f21fb3ed
RV
829}
830
831/**
fcd2b5e3 832 * \brief Setup gather lists
f21fb3ed
RV
833 * @param lio per-network private data
834 */
fcd2b5e3 835static int setup_glists(struct octeon_device *oct, struct lio *lio, int num_iqs)
f21fb3ed 836{
fcd2b5e3 837 int i, j;
f21fb3ed
RV
838 struct octnic_gather *g;
839
fcd2b5e3
RV
840 lio->glist_lock = kcalloc(num_iqs, sizeof(*lio->glist_lock),
841 GFP_KERNEL);
842 if (!lio->glist_lock)
843 return 1;
f21fb3ed 844
fcd2b5e3
RV
845 lio->glist = kcalloc(num_iqs, sizeof(*lio->glist),
846 GFP_KERNEL);
847 if (!lio->glist) {
848 kfree((void *)lio->glist_lock);
849 return 1;
850 }
f21fb3ed 851
fcd2b5e3
RV
852 for (i = 0; i < num_iqs; i++) {
853 int numa_node = cpu_to_node(i % num_online_cpus());
f21fb3ed 854
fcd2b5e3
RV
855 spin_lock_init(&lio->glist_lock[i]);
856
857 INIT_LIST_HEAD(&lio->glist[i]);
858
859 for (j = 0; j < lio->tx_qsize; j++) {
860 g = kzalloc_node(sizeof(*g), GFP_KERNEL,
861 numa_node);
862 if (!g)
863 g = kzalloc(sizeof(*g), GFP_KERNEL);
864 if (!g)
865 break;
866
867 g->sg_size = ((ROUNDUP4(OCTNIC_MAX_SG) >> 2) *
868 OCT_SG_ENTRY_SIZE);
869
870 g->sg = kmalloc_node(g->sg_size + 8,
871 GFP_KERNEL, numa_node);
872 if (!g->sg)
873 g->sg = kmalloc(g->sg_size + 8, GFP_KERNEL);
874 if (!g->sg) {
875 kfree(g);
876 break;
877 }
878
879 /* The gather component should be aligned on 64-bit
880 * boundary
881 */
882 if (((unsigned long)g->sg) & 7) {
883 g->adjust = 8 - (((unsigned long)g->sg) & 7);
884 g->sg = (struct octeon_sg_entry *)
885 ((unsigned long)g->sg + g->adjust);
886 }
887 g->sg_dma_ptr = dma_map_single(&oct->pci_dev->dev,
888 g->sg, g->sg_size,
889 DMA_TO_DEVICE);
890 if (dma_mapping_error(&oct->pci_dev->dev,
891 g->sg_dma_ptr)) {
892 kfree((void *)((unsigned long)g->sg -
893 g->adjust));
894 kfree(g);
895 break;
896 }
897
898 list_add_tail(&g->list, &lio->glist[i]);
f21fb3ed
RV
899 }
900
fcd2b5e3
RV
901 if (j != lio->tx_qsize) {
902 delete_glists(lio);
903 return 1;
f21fb3ed 904 }
f21fb3ed
RV
905 }
906
fcd2b5e3 907 return 0;
f21fb3ed
RV
908}
909
910/**
911 * \brief Print link information
912 * @param netdev network device
913 */
914static void print_link_info(struct net_device *netdev)
915{
916 struct lio *lio = GET_LIO(netdev);
917
918 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED) {
919 struct oct_link_info *linfo = &lio->linfo;
920
0cece6c5 921 if (linfo->link.s.link_up) {
f21fb3ed
RV
922 netif_info(lio, link, lio->netdev, "%d Mbps %s Duplex UP\n",
923 linfo->link.s.speed,
924 (linfo->link.s.duplex) ? "Full" : "Half");
925 } else {
926 netif_info(lio, link, lio->netdev, "Link Down\n");
927 }
928 }
929}
930
931/**
932 * \brief Update link status
933 * @param netdev network device
934 * @param ls link status structure
935 *
936 * Called on receipt of a link status response from the core application to
937 * update each interface's link status.
938 */
939static inline void update_link_status(struct net_device *netdev,
940 union oct_link_status *ls)
941{
942 struct lio *lio = GET_LIO(netdev);
0cece6c5 943 int changed = (lio->linfo.link.u64 != ls->u64);
f21fb3ed 944
0cece6c5 945 lio->linfo.link.u64 = ls->u64;
f21fb3ed 946
0cece6c5 947 if ((lio->intf_open) && (changed)) {
f21fb3ed 948 print_link_info(netdev);
0cece6c5 949 lio->link_changes++;
f21fb3ed 950
0cece6c5 951 if (lio->linfo.link.s.link_up) {
f21fb3ed
RV
952 netif_carrier_on(netdev);
953 /* start_txq(netdev); */
954 txqs_wake(netdev);
955 } else {
956 netif_carrier_off(netdev);
957 stop_txq(netdev);
958 }
959 }
960}
961
962/**
963 * \brief Droq packet processor sceduler
964 * @param oct octeon device
965 */
966static
967void liquidio_schedule_droq_pkt_handlers(struct octeon_device *oct)
968{
969 struct octeon_device_priv *oct_priv =
970 (struct octeon_device_priv *)oct->priv;
971 u64 oq_no;
972 struct octeon_droq *droq;
973
974 if (oct->int_status & OCT_DEV_INTR_PKT_DATA) {
63da8404
RV
975 for (oq_no = 0; oq_no < MAX_OCTEON_OUTPUT_QUEUES(oct);
976 oq_no++) {
977 if (!(oct->droq_intr & (1ULL << oq_no)))
f21fb3ed
RV
978 continue;
979
980 droq = oct->droq[oq_no];
981
982 if (droq->ops.poll_mode) {
983 droq->ops.napi_fn(droq);
984 oct_priv->napi_mask |= (1 << oq_no);
985 } else {
986 tasklet_schedule(&oct_priv->droq_tasklet);
987 }
988 }
989 }
990}
991
992/**
993 * \brief Interrupt handler for octeon
994 * @param irq unused
995 * @param dev octeon device
996 */
997static
998irqreturn_t liquidio_intr_handler(int irq __attribute__((unused)), void *dev)
999{
1000 struct octeon_device *oct = (struct octeon_device *)dev;
1001 irqreturn_t ret;
1002
1003 /* Disable our interrupts for the duration of ISR */
1004 oct->fn_list.disable_interrupt(oct->chip);
1005
1006 ret = oct->fn_list.process_interrupt_regs(oct);
1007
1008 if (ret == IRQ_HANDLED)
1009 liquidio_schedule_droq_pkt_handlers(oct);
1010
1011 /* Re-enable our interrupts */
1012 if (!(atomic_read(&oct->status) == OCT_DEV_IN_RESET))
1013 oct->fn_list.enable_interrupt(oct->chip);
1014
1015 return ret;
1016}
1017
1018/**
1019 * \brief Setup interrupt for octeon device
1020 * @param oct octeon device
1021 *
1022 * Enable interrupt in Octeon device as given in the PCI interrupt mask.
1023 */
1024static int octeon_setup_interrupt(struct octeon_device *oct)
1025{
1026 int irqret, err;
1027
1028 err = pci_enable_msi(oct->pci_dev);
1029 if (err)
1030 dev_warn(&oct->pci_dev->dev, "Reverting to legacy interrupts. Error: %d\n",
1031 err);
1032 else
1033 oct->flags |= LIO_FLAG_MSI_ENABLED;
1034
1035 irqret = request_irq(oct->pci_dev->irq, liquidio_intr_handler,
1036 IRQF_SHARED, "octeon", oct);
1037 if (irqret) {
1038 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1039 pci_disable_msi(oct->pci_dev);
1040 dev_err(&oct->pci_dev->dev, "Request IRQ failed with code: %d\n",
1041 irqret);
1042 return 1;
1043 }
1044
1045 return 0;
1046}
1047
1048/**
1049 * \brief PCI probe handler
1050 * @param pdev PCI device structure
1051 * @param ent unused
1052 */
1053static int liquidio_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1054{
1055 struct octeon_device *oct_dev = NULL;
1056 struct handshake *hs;
1057
1058 oct_dev = octeon_allocate_device(pdev->device,
1059 sizeof(struct octeon_device_priv));
1060 if (!oct_dev) {
1061 dev_err(&pdev->dev, "Unable to allocate device\n");
1062 return -ENOMEM;
1063 }
1064
1065 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
1066 (u32)pdev->vendor, (u32)pdev->device);
1067
1068 /* Assign octeon_device for this device to the private data area. */
1069 pci_set_drvdata(pdev, oct_dev);
1070
1071 /* set linux specific device pointer */
1072 oct_dev->pci_dev = (void *)pdev;
1073
1074 hs = &handshake[oct_dev->octeon_id];
1075 init_completion(&hs->init);
1076 init_completion(&hs->started);
1077 hs->pci_dev = pdev;
1078
1079 if (oct_dev->octeon_id == 0)
1080 /* first LiquidIO NIC is detected */
1081 complete(&first_stage);
1082
1083 if (octeon_device_init(oct_dev)) {
1084 liquidio_remove(pdev);
1085 return -ENOMEM;
1086 }
1087
1088 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
1089
1090 return 0;
1091}
1092
1093/**
1094 *\brief Destroy resources associated with octeon device
1095 * @param pdev PCI device structure
1096 * @param ent unused
1097 */
1098static void octeon_destroy_resources(struct octeon_device *oct)
1099{
1100 int i;
1101 struct octeon_device_priv *oct_priv =
1102 (struct octeon_device_priv *)oct->priv;
1103
1104 struct handshake *hs;
1105
1106 switch (atomic_read(&oct->status)) {
1107 case OCT_DEV_RUNNING:
1108 case OCT_DEV_CORE_OK:
1109
1110 /* No more instructions will be forwarded. */
1111 atomic_set(&oct->status, OCT_DEV_IN_RESET);
1112
1113 oct->app_mode = CVM_DRV_INVALID_APP;
1114 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
1115 lio_get_state_string(&oct->status));
1116
1117 schedule_timeout_uninterruptible(HZ / 10);
1118
1119 /* fallthrough */
1120 case OCT_DEV_HOST_OK:
1121
1122 /* fallthrough */
1123 case OCT_DEV_CONSOLE_INIT_DONE:
1124 /* Remove any consoles */
1125 octeon_remove_consoles(oct);
1126
1127 /* fallthrough */
1128 case OCT_DEV_IO_QUEUES_DONE:
1129 if (wait_for_pending_requests(oct))
1130 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
1131
1132 if (lio_wait_for_instr_fetch(oct))
1133 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
1134
1135 /* Disable the input and output queues now. No more packets will
1136 * arrive from Octeon, but we should wait for all packet
1137 * processing to finish.
1138 */
1139 oct->fn_list.disable_io_queues(oct);
1140
1141 if (lio_wait_for_oq_pkts(oct))
1142 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1143
1144 /* Disable interrupts */
1145 oct->fn_list.disable_interrupt(oct->chip);
1146
1147 /* Release the interrupt line */
1148 free_irq(oct->pci_dev->irq, oct);
1149
1150 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1151 pci_disable_msi(oct->pci_dev);
1152
1153 /* Soft reset the octeon device before exiting */
1154 oct->fn_list.soft_reset(oct);
1155
1156 /* Disable the device, releasing the PCI INT */
1157 pci_disable_device(oct->pci_dev);
1158
1159 /* fallthrough */
1160 case OCT_DEV_IN_RESET:
1161 case OCT_DEV_DROQ_INIT_DONE:
1162 /*atomic_set(&oct->status, OCT_DEV_DROQ_INIT_DONE);*/
1163 mdelay(100);
63da8404
RV
1164 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
1165 if (!(oct->io_qmask.oq & (1ULL << i)))
f21fb3ed
RV
1166 continue;
1167 octeon_delete_droq(oct, i);
1168 }
1169
1170 /* Force any pending handshakes to complete */
1171 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1172 hs = &handshake[i];
1173
1174 if (hs->pci_dev) {
1175 handshake[oct->octeon_id].init_ok = 0;
1176 complete(&handshake[oct->octeon_id].init);
1177 handshake[oct->octeon_id].started_ok = 0;
1178 complete(&handshake[oct->octeon_id].started);
1179 }
1180 }
1181
1182 /* fallthrough */
1183 case OCT_DEV_RESP_LIST_INIT_DONE:
1184 octeon_delete_response_list(oct);
1185
1186 /* fallthrough */
1187 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1188 octeon_free_sc_buffer_pool(oct);
1189
1190 /* fallthrough */
1191 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
63da8404
RV
1192 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
1193 if (!(oct->io_qmask.iq & (1ULL << i)))
f21fb3ed
RV
1194 continue;
1195 octeon_delete_instr_queue(oct, i);
1196 }
1197
1198 /* fallthrough */
1199 case OCT_DEV_DISPATCH_INIT_DONE:
1200 octeon_delete_dispatch_list(oct);
1201 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1202
1203 /* fallthrough */
1204 case OCT_DEV_PCI_MAP_DONE:
1205 octeon_unmap_pci_barx(oct, 0);
1206 octeon_unmap_pci_barx(oct, 1);
1207
1208 /* fallthrough */
1209 case OCT_DEV_BEGIN_STATE:
1210 /* Nothing to be done here either */
1211 break;
1212 } /* end switch(oct->status) */
1213
1214 tasklet_kill(&oct_priv->droq_tasklet);
1215}
1216
1217/**
1218 * \brief Send Rx control command
1219 * @param lio per-network private data
1220 * @param start_stop whether to start or stop
1221 */
1222static void send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1223{
1224 struct octnic_ctrl_pkt nctrl;
f21fb3ed
RV
1225
1226 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
1227
1228 nctrl.ncmd.s.cmd = OCTNET_CMD_RX_CTL;
0cece6c5
RV
1229 nctrl.ncmd.s.param1 = start_stop;
1230 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
f21fb3ed
RV
1231 nctrl.netpndev = (u64)lio->netdev;
1232
0cece6c5 1233 if (octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl) < 0)
f21fb3ed
RV
1234 netif_info(lio, rx_err, lio->netdev, "Failed to send RX Control message\n");
1235}
1236
1237/**
1238 * \brief Destroy NIC device interface
1239 * @param oct octeon device
1240 * @param ifidx which interface to destroy
1241 *
1242 * Cleanup associated with each interface for an Octeon device when NIC
1243 * module is being unloaded or if initialization fails during load.
1244 */
1245static void liquidio_destroy_nic_device(struct octeon_device *oct, int ifidx)
1246{
1247 struct net_device *netdev = oct->props[ifidx].netdev;
1248 struct lio *lio;
1249
1250 if (!netdev) {
1251 dev_err(&oct->pci_dev->dev, "%s No netdevice ptr for index %d\n",
1252 __func__, ifidx);
1253 return;
1254 }
1255
1256 lio = GET_LIO(netdev);
1257
1258 dev_dbg(&oct->pci_dev->dev, "NIC device cleanup\n");
1259
1260 send_rx_ctrl_cmd(lio, 0);
1261
1262 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING)
1263 txqs_stop(netdev);
1264
1265 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
1266 unregister_netdev(netdev);
1267
fcd2b5e3 1268 delete_glists(lio);
f21fb3ed
RV
1269
1270 free_netdev(netdev);
1271
0cece6c5
RV
1272 oct->props[ifidx].gmxport = -1;
1273
f21fb3ed
RV
1274 oct->props[ifidx].netdev = NULL;
1275}
1276
1277/**
1278 * \brief Stop complete NIC functionality
1279 * @param oct octeon device
1280 */
1281static int liquidio_stop_nic_module(struct octeon_device *oct)
1282{
1283 int i, j;
1284 struct lio *lio;
1285
1286 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1287 if (!oct->ifcount) {
1288 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1289 return 1;
1290 }
1291
1292 for (i = 0; i < oct->ifcount; i++) {
1293 lio = GET_LIO(oct->props[i].netdev);
1294 for (j = 0; j < lio->linfo.num_rxpciq; j++)
26236fa9
RV
1295 octeon_unregister_droq_ops(oct,
1296 lio->linfo.rxpciq[j].s.q_no);
f21fb3ed
RV
1297 }
1298
1299 for (i = 0; i < oct->ifcount; i++)
1300 liquidio_destroy_nic_device(oct, i);
1301
1302 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1303 return 0;
1304}
1305
1306/**
1307 * \brief Cleans up resources at unload time
1308 * @param pdev PCI device structure
1309 */
1310static void liquidio_remove(struct pci_dev *pdev)
1311{
1312 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1313
1314 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1315
1316 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1317 liquidio_stop_nic_module(oct_dev);
1318
1319 /* Reset the octeon device and cleanup all memory allocated for
1320 * the octeon device by driver.
1321 */
1322 octeon_destroy_resources(oct_dev);
1323
1324 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1325
1326 /* This octeon device has been removed. Update the global
1327 * data structure to reflect this. Free the device structure.
1328 */
1329 octeon_free_device_mem(oct_dev);
1330}
1331
1332/**
1333 * \brief Identify the Octeon device and to map the BAR address space
1334 * @param oct octeon device
1335 */
1336static int octeon_chip_specific_setup(struct octeon_device *oct)
1337{
1338 u32 dev_id, rev_id;
1339 int ret = 1;
1340
1341 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1342 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1343 oct->rev_id = rev_id & 0xff;
1344
1345 switch (dev_id) {
1346 case OCTEON_CN68XX_PCIID:
1347 oct->chip_id = OCTEON_CN68XX;
1348 ret = lio_setup_cn68xx_octeon_device(oct);
1349 break;
1350
1351 case OCTEON_CN66XX_PCIID:
1352 oct->chip_id = OCTEON_CN66XX;
1353 ret = lio_setup_cn66xx_octeon_device(oct);
1354 break;
1355 default:
1356 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1357 dev_id);
1358 }
1359
1360 if (!ret)
1361 dev_info(&oct->pci_dev->dev, "CN68XX PASS%d.%d %s\n",
1362 OCTEON_MAJOR_REV(oct),
1363 OCTEON_MINOR_REV(oct),
1364 octeon_get_conf(oct)->card_name);
1365
1366 return ret;
1367}
1368
1369/**
1370 * \brief PCI initialization for each Octeon device.
1371 * @param oct octeon device
1372 */
1373static int octeon_pci_os_setup(struct octeon_device *oct)
1374{
1375 /* setup PCI stuff first */
1376 if (pci_enable_device(oct->pci_dev)) {
1377 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1378 return 1;
1379 }
1380
1381 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1382 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
1383 return 1;
1384 }
1385
1386 /* Enable PCI DMA Master. */
1387 pci_set_master(oct->pci_dev);
1388
1389 return 0;
1390}
1391
fcd2b5e3
RV
1392static inline int skb_iq(struct lio *lio, struct sk_buff *skb)
1393{
1394 int q = 0;
1395
1396 if (netif_is_multiqueue(lio->netdev))
1397 q = skb->queue_mapping % lio->linfo.num_txpciq;
1398
1399 return q;
1400}
1401
f21fb3ed
RV
1402/**
1403 * \brief Check Tx queue state for a given network buffer
1404 * @param lio per-network private data
1405 * @param skb network buffer
1406 */
1407static inline int check_txq_state(struct lio *lio, struct sk_buff *skb)
1408{
1409 int q = 0, iq = 0;
1410
1411 if (netif_is_multiqueue(lio->netdev)) {
1412 q = skb->queue_mapping;
26236fa9 1413 iq = lio->linfo.txpciq[(q % (lio->linfo.num_txpciq))].s.q_no;
f21fb3ed
RV
1414 } else {
1415 iq = lio->txq;
26236fa9 1416 q = iq;
f21fb3ed
RV
1417 }
1418
1419 if (octnet_iq_is_full(lio->oct_dev, iq))
1420 return 0;
26236fa9
RV
1421
1422 if (__netif_subqueue_stopped(lio->netdev, q))
1423 wake_q(lio->netdev, q);
f21fb3ed
RV
1424 return 1;
1425}
1426
1427/**
1428 * \brief Unmap and free network buffer
1429 * @param buf buffer
1430 */
1431static void free_netbuf(void *buf)
1432{
1433 struct sk_buff *skb;
1434 struct octnet_buf_free_info *finfo;
1435 struct lio *lio;
1436
1437 finfo = (struct octnet_buf_free_info *)buf;
1438 skb = finfo->skb;
1439 lio = finfo->lio;
1440
1441 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1442 DMA_TO_DEVICE);
1443
1444 check_txq_state(lio, skb);
1445
cabeb13b 1446 tx_buffer_free(skb);
f21fb3ed
RV
1447}
1448
1449/**
1450 * \brief Unmap and free gather buffer
1451 * @param buf buffer
1452 */
1453static void free_netsgbuf(void *buf)
1454{
1455 struct octnet_buf_free_info *finfo;
1456 struct sk_buff *skb;
1457 struct lio *lio;
1458 struct octnic_gather *g;
fcd2b5e3 1459 int i, frags, iq;
f21fb3ed
RV
1460
1461 finfo = (struct octnet_buf_free_info *)buf;
1462 skb = finfo->skb;
1463 lio = finfo->lio;
1464 g = finfo->g;
1465 frags = skb_shinfo(skb)->nr_frags;
1466
1467 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1468 g->sg[0].ptr[0], (skb->len - skb->data_len),
1469 DMA_TO_DEVICE);
1470
1471 i = 1;
1472 while (frags--) {
1473 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1474
1475 pci_unmap_page((lio->oct_dev)->pci_dev,
1476 g->sg[(i >> 2)].ptr[(i & 3)],
1477 frag->size, DMA_TO_DEVICE);
1478 i++;
1479 }
1480
fcd2b5e3
RV
1481 dma_sync_single_for_cpu(&lio->oct_dev->pci_dev->dev,
1482 g->sg_dma_ptr, g->sg_size, DMA_TO_DEVICE);
f21fb3ed 1483
fcd2b5e3
RV
1484 iq = skb_iq(lio, skb);
1485 spin_lock(&lio->glist_lock[iq]);
1486 list_add_tail(&g->list, &lio->glist[iq]);
1487 spin_unlock(&lio->glist_lock[iq]);
f21fb3ed
RV
1488
1489 check_txq_state(lio, skb); /* mq support: sub-queue state check */
1490
cabeb13b 1491 tx_buffer_free(skb);
f21fb3ed
RV
1492}
1493
1494/**
1495 * \brief Unmap and free gather buffer with response
1496 * @param buf buffer
1497 */
1498static void free_netsgbuf_with_resp(void *buf)
1499{
1500 struct octeon_soft_command *sc;
1501 struct octnet_buf_free_info *finfo;
1502 struct sk_buff *skb;
1503 struct lio *lio;
1504 struct octnic_gather *g;
fcd2b5e3 1505 int i, frags, iq;
f21fb3ed
RV
1506
1507 sc = (struct octeon_soft_command *)buf;
1508 skb = (struct sk_buff *)sc->callback_arg;
1509 finfo = (struct octnet_buf_free_info *)&skb->cb;
1510
1511 lio = finfo->lio;
1512 g = finfo->g;
1513 frags = skb_shinfo(skb)->nr_frags;
1514
1515 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1516 g->sg[0].ptr[0], (skb->len - skb->data_len),
1517 DMA_TO_DEVICE);
1518
1519 i = 1;
1520 while (frags--) {
1521 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1522
1523 pci_unmap_page((lio->oct_dev)->pci_dev,
1524 g->sg[(i >> 2)].ptr[(i & 3)],
1525 frag->size, DMA_TO_DEVICE);
1526 i++;
1527 }
1528
fcd2b5e3
RV
1529 dma_sync_single_for_cpu(&lio->oct_dev->pci_dev->dev,
1530 g->sg_dma_ptr, g->sg_size, DMA_TO_DEVICE);
f21fb3ed 1531
fcd2b5e3
RV
1532 iq = skb_iq(lio, skb);
1533
1534 spin_lock(&lio->glist_lock[iq]);
1535 list_add_tail(&g->list, &lio->glist[iq]);
1536 spin_unlock(&lio->glist_lock[iq]);
f21fb3ed
RV
1537
1538 /* Don't free the skb yet */
1539
1540 check_txq_state(lio, skb);
1541}
1542
1543/**
1544 * \brief Adjust ptp frequency
1545 * @param ptp PTP clock info
1546 * @param ppb how much to adjust by, in parts-per-billion
1547 */
1548static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
1549{
1550 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1551 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1552 u64 comp, delta;
1553 unsigned long flags;
1554 bool neg_adj = false;
1555
1556 if (ppb < 0) {
1557 neg_adj = true;
1558 ppb = -ppb;
1559 }
1560
1561 /* The hardware adds the clock compensation value to the
1562 * PTP clock on every coprocessor clock cycle, so we
1563 * compute the delta in terms of coprocessor clocks.
1564 */
1565 delta = (u64)ppb << 32;
1566 do_div(delta, oct->coproc_clock_rate);
1567
1568 spin_lock_irqsave(&lio->ptp_lock, flags);
1569 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
1570 if (neg_adj)
1571 comp -= delta;
1572 else
1573 comp += delta;
1574 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1575 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1576
1577 return 0;
1578}
1579
1580/**
1581 * \brief Adjust ptp time
1582 * @param ptp PTP clock info
1583 * @param delta how much to adjust by, in nanosecs
1584 */
1585static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
1586{
1587 unsigned long flags;
1588 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1589
1590 spin_lock_irqsave(&lio->ptp_lock, flags);
1591 lio->ptp_adjust += delta;
1592 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1593
1594 return 0;
1595}
1596
1597/**
1598 * \brief Get hardware clock time, including any adjustment
1599 * @param ptp PTP clock info
1600 * @param ts timespec
1601 */
1602static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
1603 struct timespec64 *ts)
1604{
1605 u64 ns;
f21fb3ed
RV
1606 unsigned long flags;
1607 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1608 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1609
1610 spin_lock_irqsave(&lio->ptp_lock, flags);
1611 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
1612 ns += lio->ptp_adjust;
1613 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1614
286af315 1615 *ts = ns_to_timespec64(ns);
f21fb3ed
RV
1616
1617 return 0;
1618}
1619
1620/**
1621 * \brief Set hardware clock time. Reset adjustment
1622 * @param ptp PTP clock info
1623 * @param ts timespec
1624 */
1625static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
1626 const struct timespec64 *ts)
1627{
1628 u64 ns;
1629 unsigned long flags;
1630 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1631 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1632
1633 ns = timespec_to_ns(ts);
1634
1635 spin_lock_irqsave(&lio->ptp_lock, flags);
1636 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
1637 lio->ptp_adjust = 0;
1638 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1639
1640 return 0;
1641}
1642
1643/**
1644 * \brief Check if PTP is enabled
1645 * @param ptp PTP clock info
1646 * @param rq request
1647 * @param on is it on
1648 */
1649static int liquidio_ptp_enable(struct ptp_clock_info *ptp,
1650 struct ptp_clock_request *rq, int on)
1651{
1652 return -EOPNOTSUPP;
1653}
1654
1655/**
1656 * \brief Open PTP clock source
1657 * @param netdev network device
1658 */
1659static void oct_ptp_open(struct net_device *netdev)
1660{
1661 struct lio *lio = GET_LIO(netdev);
1662 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1663
1664 spin_lock_init(&lio->ptp_lock);
1665
1666 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
1667 lio->ptp_info.owner = THIS_MODULE;
1668 lio->ptp_info.max_adj = 250000000;
1669 lio->ptp_info.n_alarm = 0;
1670 lio->ptp_info.n_ext_ts = 0;
1671 lio->ptp_info.n_per_out = 0;
1672 lio->ptp_info.pps = 0;
1673 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
1674 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
1675 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
1676 lio->ptp_info.settime64 = liquidio_ptp_settime;
1677 lio->ptp_info.enable = liquidio_ptp_enable;
1678
1679 lio->ptp_adjust = 0;
1680
1681 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
1682 &oct->pci_dev->dev);
1683
1684 if (IS_ERR(lio->ptp_clock))
1685 lio->ptp_clock = NULL;
1686}
1687
1688/**
1689 * \brief Init PTP clock
1690 * @param oct octeon device
1691 */
1692static void liquidio_ptp_init(struct octeon_device *oct)
1693{
1694 u64 clock_comp, cfg;
1695
1696 clock_comp = (u64)NSEC_PER_SEC << 32;
1697 do_div(clock_comp, oct->coproc_clock_rate);
1698 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1699
1700 /* Enable */
1701 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
1702 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
1703}
1704
1705/**
1706 * \brief Load firmware to device
1707 * @param oct octeon device
1708 *
1709 * Maps device to firmware filename, requests firmware, and downloads it
1710 */
1711static int load_firmware(struct octeon_device *oct)
1712{
1713 int ret = 0;
1714 const struct firmware *fw;
1715 char fw_name[LIO_MAX_FW_FILENAME_LEN];
1716 char *tmp_fw_type;
1717
1718 if (strncmp(fw_type, LIO_FW_NAME_TYPE_NONE,
1719 sizeof(LIO_FW_NAME_TYPE_NONE)) == 0) {
1720 dev_info(&oct->pci_dev->dev, "Skipping firmware load\n");
1721 return ret;
1722 }
1723
1724 if (fw_type[0] == '\0')
1725 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
1726 else
1727 tmp_fw_type = fw_type;
1728
1729 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
1730 octeon_get_conf(oct)->card_name, tmp_fw_type,
1731 LIO_FW_NAME_SUFFIX);
1732
1733 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
1734 if (ret) {
1735 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n.",
1736 fw_name);
1737 return ret;
1738 }
1739
1740 ret = octeon_download_firmware(oct, fw->data, fw->size);
1741
1742 release_firmware(fw);
1743
1744 return ret;
1745}
1746
1747/**
1748 * \brief Setup output queue
1749 * @param oct octeon device
1750 * @param q_no which queue
1751 * @param num_descs how many descriptors
1752 * @param desc_size size of each descriptor
1753 * @param app_ctx application context
1754 */
1755static int octeon_setup_droq(struct octeon_device *oct, int q_no, int num_descs,
1756 int desc_size, void *app_ctx)
1757{
1758 int ret_val = 0;
1759
1760 dev_dbg(&oct->pci_dev->dev, "Creating Droq: %d\n", q_no);
1761 /* droq creation and local register settings. */
1762 ret_val = octeon_create_droq(oct, q_no, num_descs, desc_size, app_ctx);
08a965ec 1763 if (ret_val < 0)
f21fb3ed
RV
1764 return ret_val;
1765
1766 if (ret_val == 1) {
1767 dev_dbg(&oct->pci_dev->dev, "Using default droq %d\n", q_no);
1768 return 0;
1769 }
1770 /* tasklet creation for the droq */
1771
1772 /* Enable the droq queues */
1773 octeon_set_droq_pkt_op(oct, q_no, 1);
1774
1775 /* Send Credit for Octeon Output queues. Credits are always
1776 * sent after the output queue is enabled.
1777 */
1778 writel(oct->droq[q_no]->max_count,
1779 oct->droq[q_no]->pkts_credit_reg);
1780
1781 return ret_val;
1782}
1783
1784/**
1785 * \brief Callback for getting interface configuration
1786 * @param status status of request
1787 * @param buf pointer to resp structure
1788 */
1789static void if_cfg_callback(struct octeon_device *oct,
1790 u32 status,
1791 void *buf)
1792{
1793 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1794 struct liquidio_if_cfg_resp *resp;
1795 struct liquidio_if_cfg_context *ctx;
1796
1797 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
1798 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
1799
1800 oct = lio_get_device(ctx->octeon_id);
1801 if (resp->status)
1802 dev_err(&oct->pci_dev->dev, "nic if cfg instruction failed. Status: %llx\n",
1803 CVM_CAST64(resp->status));
1804 ACCESS_ONCE(ctx->cond) = 1;
1805
1806 /* This barrier is required to be sure that the response has been
1807 * written fully before waking up the handler
1808 */
1809 wmb();
1810
1811 wake_up_interruptible(&ctx->wc);
1812}
1813
1814/**
1815 * \brief Select queue based on hash
1816 * @param dev Net device
1817 * @param skb sk_buff structure
1818 * @returns selected queue number
1819 */
1820static u16 select_q(struct net_device *dev, struct sk_buff *skb,
1821 void *accel_priv, select_queue_fallback_t fallback)
1822{
26236fa9 1823 u32 qindex = 0;
f21fb3ed
RV
1824 struct lio *lio;
1825
1826 lio = GET_LIO(dev);
26236fa9
RV
1827 qindex = skb_tx_hash(dev, skb);
1828
1829 return (u16)(qindex % (lio->linfo.num_txpciq));
f21fb3ed
RV
1830}
1831
1832/** Routine to push packets arriving on Octeon interface upto network layer.
1833 * @param oct_id - octeon device id.
1834 * @param skbuff - skbuff struct to be passed to network layer.
1835 * @param len - size of total data received.
1836 * @param rh - Control header associated with the packet
1837 * @param param - additional control data with the packet
0cece6c5 1838 * @param arg - farg registered in droq_ops
f21fb3ed
RV
1839 */
1840static void
1841liquidio_push_packet(u32 octeon_id,
1842 void *skbuff,
1843 u32 len,
1844 union octeon_rh *rh,
0cece6c5
RV
1845 void *param,
1846 void *arg)
f21fb3ed
RV
1847{
1848 struct napi_struct *napi = param;
f21fb3ed
RV
1849 struct sk_buff *skb = (struct sk_buff *)skbuff;
1850 struct skb_shared_hwtstamps *shhwtstamps;
1851 u64 ns;
0da0b77c 1852 u16 vtag = 0;
0cece6c5 1853 struct net_device *netdev = (struct net_device *)arg;
f21fb3ed
RV
1854 struct octeon_droq *droq = container_of(param, struct octeon_droq,
1855 napi);
1856 if (netdev) {
1857 int packet_was_received;
1858 struct lio *lio = GET_LIO(netdev);
a5b37888 1859 struct octeon_device *oct = lio->oct_dev;
f21fb3ed
RV
1860
1861 /* Do not proceed if the interface is not in RUNNING state. */
1862 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING)) {
1863 recv_buffer_free(skb);
1864 droq->stats.rx_dropped++;
1865 return;
1866 }
1867
1868 skb->dev = netdev;
1869
26236fa9 1870 skb_record_rx_queue(skb, droq->q_no);
cabeb13b
RV
1871 if (likely(len > MIN_SKB_SIZE)) {
1872 struct octeon_skb_page_info *pg_info;
1873 unsigned char *va;
1874
1875 pg_info = ((struct octeon_skb_page_info *)(skb->cb));
1876 if (pg_info->page) {
1877 /* For Paged allocation use the frags */
1878 va = page_address(pg_info->page) +
1879 pg_info->page_offset;
1880 memcpy(skb->data, va, MIN_SKB_SIZE);
1881 skb_put(skb, MIN_SKB_SIZE);
1882 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
1883 pg_info->page,
1884 pg_info->page_offset +
1885 MIN_SKB_SIZE,
1886 len - MIN_SKB_SIZE,
1887 LIO_RXBUFFER_SZ);
1888 }
1889 } else {
1890 struct octeon_skb_page_info *pg_info =
1891 ((struct octeon_skb_page_info *)(skb->cb));
1892 skb_copy_to_linear_data(skb, page_address(pg_info->page)
1893 + pg_info->page_offset, len);
1894 skb_put(skb, len);
1895 put_page(pg_info->page);
1896 }
26236fa9 1897
a5b37888
RV
1898 if (((oct->chip_id == OCTEON_CN66XX) ||
1899 (oct->chip_id == OCTEON_CN68XX)) &&
1900 ptp_enable) {
1901 if (rh->r_dh.has_hwtstamp) {
1902 /* timestamp is included from the hardware at
1903 * the beginning of the packet.
f21fb3ed 1904 */
a5b37888
RV
1905 if (ifstate_check
1906 (lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED)) {
1907 /* Nanoseconds are in the first 64-bits
1908 * of the packet.
1909 */
1910 memcpy(&ns, (skb->data), sizeof(ns));
1911 shhwtstamps = skb_hwtstamps(skb);
1912 shhwtstamps->hwtstamp =
1913 ns_to_ktime(ns +
1914 lio->ptp_adjust);
1915 }
1916 skb_pull(skb, sizeof(ns));
f21fb3ed 1917 }
f21fb3ed
RV
1918 }
1919
1920 skb->protocol = eth_type_trans(skb, skb->dev);
1921
1922 if ((netdev->features & NETIF_F_RXCSUM) &&
1923 (rh->r_dh.csum_verified == CNNIC_CSUM_VERIFIED))
1924 /* checksum has already been verified */
1925 skb->ip_summed = CHECKSUM_UNNECESSARY;
1926 else
1927 skb->ip_summed = CHECKSUM_NONE;
1928
0da0b77c
RV
1929 /* inbound VLAN tag */
1930 if ((netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
1931 (rh->r_dh.vlan != 0)) {
1932 u16 vid = rh->r_dh.vlan;
1933 u16 priority = rh->r_dh.priority;
1934
1935 vtag = priority << 13 | vid;
1936 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
1937 }
1938
f21fb3ed
RV
1939 packet_was_received = napi_gro_receive(napi, skb) != GRO_DROP;
1940
1941 if (packet_was_received) {
1942 droq->stats.rx_bytes_received += len;
1943 droq->stats.rx_pkts_received++;
1944 netdev->last_rx = jiffies;
1945 } else {
1946 droq->stats.rx_dropped++;
1947 netif_info(lio, rx_err, lio->netdev,
1948 "droq:%d error rx_dropped:%llu\n",
1949 droq->q_no, droq->stats.rx_dropped);
1950 }
1951
1952 } else {
1953 recv_buffer_free(skb);
1954 }
1955}
1956
1957/**
1958 * \brief wrapper for calling napi_schedule
1959 * @param param parameters to pass to napi_schedule
1960 *
1961 * Used when scheduling on different CPUs
1962 */
1963static void napi_schedule_wrapper(void *param)
1964{
1965 struct napi_struct *napi = param;
1966
1967 napi_schedule(napi);
1968}
1969
1970/**
1971 * \brief callback when receive interrupt occurs and we are in NAPI mode
1972 * @param arg pointer to octeon output queue
1973 */
1974static void liquidio_napi_drv_callback(void *arg)
1975{
1976 struct octeon_droq *droq = arg;
1977 int this_cpu = smp_processor_id();
1978
1979 if (droq->cpu_id == this_cpu) {
1980 napi_schedule(&droq->napi);
1981 } else {
1982 struct call_single_data *csd = &droq->csd;
1983
1984 csd->func = napi_schedule_wrapper;
1985 csd->info = &droq->napi;
1986 csd->flags = 0;
1987
1988 smp_call_function_single_async(droq->cpu_id, csd);
1989 }
1990}
1991
1992/**
1993 * \brief Main NAPI poll function
1994 * @param droq octeon output queue
1995 * @param budget maximum number of items to process
1996 */
1997static int liquidio_napi_do_rx(struct octeon_droq *droq, int budget)
1998{
1999 int work_done;
2000 struct lio *lio = GET_LIO(droq->napi.dev);
2001 struct octeon_device *oct = lio->oct_dev;
2002
2003 work_done = octeon_process_droq_poll_cmd(oct, droq->q_no,
2004 POLL_EVENT_PROCESS_PKTS,
2005 budget);
2006 if (work_done < 0) {
2007 netif_info(lio, rx_err, lio->netdev,
2008 "Receive work_done < 0, rxq:%d\n", droq->q_no);
2009 goto octnet_napi_finish;
2010 }
2011
2012 if (work_done > budget)
2013 dev_err(&oct->pci_dev->dev, ">>>> %s work_done: %d budget: %d\n",
2014 __func__, work_done, budget);
2015
2016 return work_done;
2017
2018octnet_napi_finish:
2019 napi_complete(&droq->napi);
2020 octeon_process_droq_poll_cmd(oct, droq->q_no, POLL_EVENT_ENABLE_INTR,
2021 0);
2022 return 0;
2023}
2024
2025/**
2026 * \brief Entry point for NAPI polling
2027 * @param napi NAPI structure
2028 * @param budget maximum number of items to process
2029 */
2030static int liquidio_napi_poll(struct napi_struct *napi, int budget)
2031{
2032 struct octeon_droq *droq;
2033 int work_done;
2034
2035 droq = container_of(napi, struct octeon_droq, napi);
2036
2037 work_done = liquidio_napi_do_rx(droq, budget);
2038
2039 if (work_done < budget) {
2040 napi_complete(napi);
2041 octeon_process_droq_poll_cmd(droq->oct_dev, droq->q_no,
2042 POLL_EVENT_ENABLE_INTR, 0);
2043 return 0;
2044 }
2045
2046 return work_done;
2047}
2048
2049/**
2050 * \brief Setup input and output queues
2051 * @param octeon_dev octeon device
2052 * @param net_device Net device
2053 *
2054 * Note: Queues are with respect to the octeon device. Thus
2055 * an input queue is for egress packets, and output queues
2056 * are for ingress packets.
2057 */
2058static inline int setup_io_queues(struct octeon_device *octeon_dev,
0cece6c5 2059 int ifidx)
f21fb3ed 2060{
0cece6c5
RV
2061 struct octeon_droq_ops droq_ops;
2062 struct net_device *netdev;
f21fb3ed
RV
2063 static int cpu_id;
2064 static int cpu_id_modulus;
2065 struct octeon_droq *droq;
2066 struct napi_struct *napi;
2067 int q, q_no, retval = 0;
2068 struct lio *lio;
2069 int num_tx_descs;
2070
0cece6c5
RV
2071 netdev = octeon_dev->props[ifidx].netdev;
2072
2073 lio = GET_LIO(netdev);
f21fb3ed 2074
0cece6c5 2075 memset(&droq_ops, 0, sizeof(struct octeon_droq_ops));
f21fb3ed 2076
0cece6c5
RV
2077 droq_ops.fptr = liquidio_push_packet;
2078 droq_ops.farg = (void *)netdev;
2079
2080 droq_ops.poll_mode = 1;
2081 droq_ops.napi_fn = liquidio_napi_drv_callback;
2082 cpu_id = 0;
2083 cpu_id_modulus = num_present_cpus();
f21fb3ed
RV
2084
2085 /* set up DROQs. */
2086 for (q = 0; q < lio->linfo.num_rxpciq; q++) {
26236fa9
RV
2087 q_no = lio->linfo.rxpciq[q].s.q_no;
2088 dev_dbg(&octeon_dev->pci_dev->dev,
2089 "setup_io_queues index:%d linfo.rxpciq.s.q_no:%d\n",
2090 q, q_no);
f21fb3ed
RV
2091 retval = octeon_setup_droq(octeon_dev, q_no,
2092 CFG_GET_NUM_RX_DESCS_NIC_IF
2093 (octeon_get_conf(octeon_dev),
2094 lio->ifidx),
2095 CFG_GET_NUM_RX_BUF_SIZE_NIC_IF
2096 (octeon_get_conf(octeon_dev),
2097 lio->ifidx), NULL);
2098 if (retval) {
2099 dev_err(&octeon_dev->pci_dev->dev,
2100 " %s : Runtime DROQ(RxQ) creation failed.\n",
2101 __func__);
2102 return 1;
2103 }
2104
2105 droq = octeon_dev->droq[q_no];
2106 napi = &droq->napi;
0cece6c5
RV
2107 dev_dbg(&octeon_dev->pci_dev->dev,
2108 "netif_napi_add netdev:%llx oct:%llx\n",
2109 (u64)netdev,
2110 (u64)octeon_dev);
2111 netif_napi_add(netdev, napi, liquidio_napi_poll, 64);
f21fb3ed
RV
2112
2113 /* designate a CPU for this droq */
2114 droq->cpu_id = cpu_id;
2115 cpu_id++;
2116 if (cpu_id >= cpu_id_modulus)
2117 cpu_id = 0;
2118
2119 octeon_register_droq_ops(octeon_dev, q_no, &droq_ops);
2120 }
2121
2122 /* set up IQs. */
2123 for (q = 0; q < lio->linfo.num_txpciq; q++) {
2124 num_tx_descs = CFG_GET_NUM_TX_DESCS_NIC_IF(octeon_get_conf
2125 (octeon_dev),
2126 lio->ifidx);
0cece6c5
RV
2127 retval = octeon_setup_iq(octeon_dev, ifidx, q,
2128 lio->linfo.txpciq[q], num_tx_descs,
2129 netdev_get_tx_queue(netdev, q));
f21fb3ed
RV
2130 if (retval) {
2131 dev_err(&octeon_dev->pci_dev->dev,
2132 " %s : Runtime IQ(TxQ) creation failed.\n",
2133 __func__);
2134 return 1;
2135 }
2136 }
2137
2138 return 0;
2139}
2140
2141/**
2142 * \brief Poll routine for checking transmit queue status
2143 * @param work work_struct data structure
2144 */
2145static void octnet_poll_check_txq_status(struct work_struct *work)
2146{
2147 struct cavium_wk *wk = (struct cavium_wk *)work;
2148 struct lio *lio = (struct lio *)wk->ctxptr;
2149
2150 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
2151 return;
2152
2153 check_txq_status(lio);
2154 queue_delayed_work(lio->txq_status_wq.wq,
2155 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2156}
2157
2158/**
2159 * \brief Sets up the txq poll check
2160 * @param netdev network device
2161 */
2162static inline void setup_tx_poll_fn(struct net_device *netdev)
2163{
2164 struct lio *lio = GET_LIO(netdev);
2165 struct octeon_device *oct = lio->oct_dev;
2166
292b9dab
BS
2167 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
2168 WQ_MEM_RECLAIM, 0);
f21fb3ed
RV
2169 if (!lio->txq_status_wq.wq) {
2170 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
2171 return;
2172 }
2173 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
2174 octnet_poll_check_txq_status);
2175 lio->txq_status_wq.wk.ctxptr = lio;
2176 queue_delayed_work(lio->txq_status_wq.wq,
2177 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2178}
2179
2180/**
2181 * \brief Net device open for LiquidIO
2182 * @param netdev network device
2183 */
2184static int liquidio_open(struct net_device *netdev)
2185{
2186 struct lio *lio = GET_LIO(netdev);
2187 struct octeon_device *oct = lio->oct_dev;
2188 struct napi_struct *napi, *n;
2189
2190 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2191 napi_enable(napi);
2192
2193 oct_ptp_open(netdev);
2194
2195 ifstate_set(lio, LIO_IFSTATE_RUNNING);
2196 setup_tx_poll_fn(netdev);
2197 start_txq(netdev);
2198
2199 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
2200 try_module_get(THIS_MODULE);
2201
2202 /* tell Octeon to start forwarding packets to host */
2203 send_rx_ctrl_cmd(lio, 1);
2204
2205 /* Ready for link status updates */
2206 lio->intf_open = 1;
2207
2208 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
2209 netdev->name);
2210
2211 return 0;
2212}
2213
2214/**
2215 * \brief Net device stop for LiquidIO
2216 * @param netdev network device
2217 */
2218static int liquidio_stop(struct net_device *netdev)
2219{
2220 struct napi_struct *napi, *n;
2221 struct lio *lio = GET_LIO(netdev);
2222 struct octeon_device *oct = lio->oct_dev;
2223
2224 netif_info(lio, ifdown, lio->netdev, "Stopping interface!\n");
2225 /* Inform that netif carrier is down */
2226 lio->intf_open = 0;
0cece6c5
RV
2227 lio->linfo.link.s.link_up = 0;
2228 lio->link_changes++;
f21fb3ed
RV
2229
2230 netif_carrier_off(netdev);
2231
2232 /* tell Octeon to stop forwarding packets to host */
2233 send_rx_ctrl_cmd(lio, 0);
2234
2235 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
f21fb3ed
RV
2236 destroy_workqueue(lio->txq_status_wq.wq);
2237
2238 if (lio->ptp_clock) {
2239 ptp_clock_unregister(lio->ptp_clock);
2240 lio->ptp_clock = NULL;
2241 }
2242
2243 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
2244
2245 /* This is a hack that allows DHCP to continue working. */
2246 set_bit(__LINK_STATE_START, &lio->netdev->state);
2247
2248 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2249 napi_disable(napi);
2250
2251 txqs_stop(netdev);
2252
2253 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
2254 module_put(THIS_MODULE);
2255
2256 return 0;
2257}
2258
2259void liquidio_link_ctrl_cmd_completion(void *nctrl_ptr)
2260{
2261 struct octnic_ctrl_pkt *nctrl = (struct octnic_ctrl_pkt *)nctrl_ptr;
2262 struct net_device *netdev = (struct net_device *)nctrl->netpndev;
2263 struct lio *lio = GET_LIO(netdev);
2264 struct octeon_device *oct = lio->oct_dev;
2265
2266 switch (nctrl->ncmd.s.cmd) {
2267 case OCTNET_CMD_CHANGE_DEVFLAGS:
2268 case OCTNET_CMD_SET_MULTI_LIST:
2269 break;
2270
2271 case OCTNET_CMD_CHANGE_MACADDR:
2272 /* If command is successful, change the MACADDR. */
2273 netif_info(lio, probe, lio->netdev, " MACAddr changed to 0x%llx\n",
2274 CVM_CAST64(nctrl->udd[0]));
2275 dev_info(&oct->pci_dev->dev, "%s MACAddr changed to 0x%llx\n",
2276 netdev->name, CVM_CAST64(nctrl->udd[0]));
2277 memcpy(netdev->dev_addr, ((u8 *)&nctrl->udd[0]) + 2, ETH_ALEN);
2278 break;
2279
2280 case OCTNET_CMD_CHANGE_MTU:
2281 /* If command is successful, change the MTU. */
2282 netif_info(lio, probe, lio->netdev, " MTU Changed from %d to %d\n",
2283 netdev->mtu, nctrl->ncmd.s.param2);
2284 dev_info(&oct->pci_dev->dev, "%s MTU Changed from %d to %d\n",
2285 netdev->name, netdev->mtu,
2286 nctrl->ncmd.s.param2);
2287 netdev->mtu = nctrl->ncmd.s.param2;
2288 break;
2289
2290 case OCTNET_CMD_GPIO_ACCESS:
2291 netif_info(lio, probe, lio->netdev, "LED Flashing visual identification\n");
2292
2293 break;
2294
2295 case OCTNET_CMD_LRO_ENABLE:
2296 dev_info(&oct->pci_dev->dev, "%s LRO Enabled\n", netdev->name);
2297 break;
2298
2299 case OCTNET_CMD_LRO_DISABLE:
2300 dev_info(&oct->pci_dev->dev, "%s LRO Disabled\n",
2301 netdev->name);
2302 break;
2303
2304 case OCTNET_CMD_VERBOSE_ENABLE:
2305 dev_info(&oct->pci_dev->dev, "%s LRO Enabled\n", netdev->name);
2306 break;
2307
2308 case OCTNET_CMD_VERBOSE_DISABLE:
2309 dev_info(&oct->pci_dev->dev, "%s LRO Disabled\n",
2310 netdev->name);
2311 break;
2312
63245f25
RV
2313 case OCTNET_CMD_ENABLE_VLAN_FILTER:
2314 dev_info(&oct->pci_dev->dev, "%s VLAN filter enabled\n",
2315 netdev->name);
2316 break;
2317
2318 case OCTNET_CMD_ADD_VLAN_FILTER:
2319 dev_info(&oct->pci_dev->dev, "%s VLAN filter %d added\n",
2320 netdev->name, nctrl->ncmd.s.param1);
2321 break;
2322
2323 case OCTNET_CMD_DEL_VLAN_FILTER:
2324 dev_info(&oct->pci_dev->dev, "%s VLAN filter %d removed\n",
2325 netdev->name, nctrl->ncmd.s.param1);
2326 break;
2327
f21fb3ed
RV
2328 case OCTNET_CMD_SET_SETTINGS:
2329 dev_info(&oct->pci_dev->dev, "%s settings changed\n",
2330 netdev->name);
2331
2332 break;
2333
2334 default:
2335 dev_err(&oct->pci_dev->dev, "%s Unknown cmd %d\n", __func__,
2336 nctrl->ncmd.s.cmd);
2337 }
2338}
2339
2340/**
2341 * \brief Converts a mask based on net device flags
2342 * @param netdev network device
2343 *
2344 * This routine generates a octnet_ifflags mask from the net device flags
2345 * received from the OS.
2346 */
2347static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
2348{
2349 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
2350
2351 if (netdev->flags & IFF_PROMISC)
2352 f |= OCTNET_IFFLAG_PROMISC;
2353
2354 if (netdev->flags & IFF_ALLMULTI)
2355 f |= OCTNET_IFFLAG_ALLMULTI;
2356
2357 if (netdev->flags & IFF_MULTICAST) {
2358 f |= OCTNET_IFFLAG_MULTICAST;
2359
2360 /* Accept all multicast addresses if there are more than we
2361 * can handle
2362 */
2363 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
2364 f |= OCTNET_IFFLAG_ALLMULTI;
2365 }
2366
2367 if (netdev->flags & IFF_BROADCAST)
2368 f |= OCTNET_IFFLAG_BROADCAST;
2369
2370 return f;
2371}
2372
2373/**
2374 * \brief Net device set_multicast_list
2375 * @param netdev network device
2376 */
2377static void liquidio_set_mcast_list(struct net_device *netdev)
2378{
2379 struct lio *lio = GET_LIO(netdev);
2380 struct octeon_device *oct = lio->oct_dev;
2381 struct octnic_ctrl_pkt nctrl;
f21fb3ed
RV
2382 struct netdev_hw_addr *ha;
2383 u64 *mc;
2384 int ret, i;
2385 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
2386
2387 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2388
2389 /* Create a ctrl pkt command to be sent to core app. */
2390 nctrl.ncmd.u64 = 0;
2391 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
0cece6c5
RV
2392 nctrl.ncmd.s.param1 = get_new_flags(netdev);
2393 nctrl.ncmd.s.param2 = mc_count;
f21fb3ed 2394 nctrl.ncmd.s.more = mc_count;
0cece6c5 2395 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
f21fb3ed
RV
2396 nctrl.netpndev = (u64)netdev;
2397 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2398
2399 /* copy all the addresses into the udd */
2400 i = 0;
2401 mc = &nctrl.udd[0];
2402 netdev_for_each_mc_addr(ha, netdev) {
2403 *mc = 0;
2404 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
2405 /* no need to swap bytes */
2406
2407 if (++mc > &nctrl.udd[mc_count])
2408 break;
2409 }
2410
2411 /* Apparently, any activity in this call from the kernel has to
2412 * be atomic. So we won't wait for response.
2413 */
2414 nctrl.wait_time = 0;
2415
0cece6c5 2416 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
f21fb3ed
RV
2417 if (ret < 0) {
2418 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
2419 ret);
2420 }
2421}
2422
2423/**
2424 * \brief Net device set_mac_address
2425 * @param netdev network device
2426 */
2427static int liquidio_set_mac(struct net_device *netdev, void *p)
2428{
2429 int ret = 0;
2430 struct lio *lio = GET_LIO(netdev);
2431 struct octeon_device *oct = lio->oct_dev;
2432 struct sockaddr *addr = (struct sockaddr *)p;
2433 struct octnic_ctrl_pkt nctrl;
f21fb3ed 2434
0cece6c5 2435 if (!is_valid_ether_addr(addr->sa_data))
f21fb3ed
RV
2436 return -EADDRNOTAVAIL;
2437
2438 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2439
2440 nctrl.ncmd.u64 = 0;
2441 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
0cece6c5 2442 nctrl.ncmd.s.param1 = 0;
f21fb3ed 2443 nctrl.ncmd.s.more = 1;
0cece6c5 2444 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
f21fb3ed
RV
2445 nctrl.netpndev = (u64)netdev;
2446 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2447 nctrl.wait_time = 100;
2448
2449 nctrl.udd[0] = 0;
2450 /* The MAC Address is presented in network byte order. */
2451 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2452
0cece6c5 2453 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
f21fb3ed
RV
2454 if (ret < 0) {
2455 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2456 return -ENOMEM;
2457 }
2458 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2459 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2460
2461 return 0;
2462}
2463
2464/**
2465 * \brief Net device get_stats
2466 * @param netdev network device
2467 */
2468static struct net_device_stats *liquidio_get_stats(struct net_device *netdev)
2469{
2470 struct lio *lio = GET_LIO(netdev);
2471 struct net_device_stats *stats = &netdev->stats;
2472 struct octeon_device *oct;
2473 u64 pkts = 0, drop = 0, bytes = 0;
2474 struct oct_droq_stats *oq_stats;
2475 struct oct_iq_stats *iq_stats;
2476 int i, iq_no, oq_no;
2477
2478 oct = lio->oct_dev;
2479
2480 for (i = 0; i < lio->linfo.num_txpciq; i++) {
26236fa9 2481 iq_no = lio->linfo.txpciq[i].s.q_no;
f21fb3ed
RV
2482 iq_stats = &oct->instr_queue[iq_no]->stats;
2483 pkts += iq_stats->tx_done;
2484 drop += iq_stats->tx_dropped;
2485 bytes += iq_stats->tx_tot_bytes;
2486 }
2487
2488 stats->tx_packets = pkts;
2489 stats->tx_bytes = bytes;
2490 stats->tx_dropped = drop;
2491
2492 pkts = 0;
2493 drop = 0;
2494 bytes = 0;
2495
2496 for (i = 0; i < lio->linfo.num_rxpciq; i++) {
26236fa9 2497 oq_no = lio->linfo.rxpciq[i].s.q_no;
f21fb3ed
RV
2498 oq_stats = &oct->droq[oq_no]->stats;
2499 pkts += oq_stats->rx_pkts_received;
2500 drop += (oq_stats->rx_dropped +
2501 oq_stats->dropped_nodispatch +
2502 oq_stats->dropped_toomany +
2503 oq_stats->dropped_nomem);
2504 bytes += oq_stats->rx_bytes_received;
2505 }
2506
2507 stats->rx_bytes = bytes;
2508 stats->rx_packets = pkts;
2509 stats->rx_dropped = drop;
2510
2511 return stats;
2512}
2513
2514/**
2515 * \brief Net device change_mtu
2516 * @param netdev network device
2517 */
2518static int liquidio_change_mtu(struct net_device *netdev, int new_mtu)
2519{
2520 struct lio *lio = GET_LIO(netdev);
2521 struct octeon_device *oct = lio->oct_dev;
2522 struct octnic_ctrl_pkt nctrl;
f21fb3ed
RV
2523 int max_frm_size = new_mtu + OCTNET_FRM_HEADER_SIZE;
2524 int ret = 0;
2525
2526 /* Limit the MTU to make sure the ethernet packets are between 64 bytes
2527 * and 65535 bytes
2528 */
2529 if ((max_frm_size < OCTNET_MIN_FRM_SIZE) ||
2530 (max_frm_size > OCTNET_MAX_FRM_SIZE)) {
2531 dev_err(&oct->pci_dev->dev, "Invalid MTU: %d\n", new_mtu);
2532 dev_err(&oct->pci_dev->dev, "Valid range %d and %d\n",
2533 (OCTNET_MIN_FRM_SIZE - OCTNET_FRM_HEADER_SIZE),
2534 (OCTNET_MAX_FRM_SIZE - OCTNET_FRM_HEADER_SIZE));
2535 return -EINVAL;
2536 }
2537
2538 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2539
2540 nctrl.ncmd.u64 = 0;
2541 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MTU;
0cece6c5
RV
2542 nctrl.ncmd.s.param1 = new_mtu;
2543 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
f21fb3ed
RV
2544 nctrl.wait_time = 100;
2545 nctrl.netpndev = (u64)netdev;
2546 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2547
0cece6c5 2548 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
f21fb3ed
RV
2549 if (ret < 0) {
2550 dev_err(&oct->pci_dev->dev, "Failed to set MTU\n");
2551 return -1;
2552 }
2553
2554 lio->mtu = new_mtu;
2555
2556 return 0;
2557}
2558
2559/**
2560 * \brief Handler for SIOCSHWTSTAMP ioctl
2561 * @param netdev network device
2562 * @param ifr interface request
2563 * @param cmd command
2564 */
2565static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2566{
2567 struct hwtstamp_config conf;
2568 struct lio *lio = GET_LIO(netdev);
2569
2570 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
2571 return -EFAULT;
2572
2573 if (conf.flags)
2574 return -EINVAL;
2575
2576 switch (conf.tx_type) {
2577 case HWTSTAMP_TX_ON:
2578 case HWTSTAMP_TX_OFF:
2579 break;
2580 default:
2581 return -ERANGE;
2582 }
2583
2584 switch (conf.rx_filter) {
2585 case HWTSTAMP_FILTER_NONE:
2586 break;
2587 case HWTSTAMP_FILTER_ALL:
2588 case HWTSTAMP_FILTER_SOME:
2589 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
2590 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
2591 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
2592 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
2593 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
2594 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
2595 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
2596 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
2597 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
2598 case HWTSTAMP_FILTER_PTP_V2_EVENT:
2599 case HWTSTAMP_FILTER_PTP_V2_SYNC:
2600 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
2601 conf.rx_filter = HWTSTAMP_FILTER_ALL;
2602 break;
2603 default:
2604 return -ERANGE;
2605 }
2606
2607 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
2608 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2609
2610 else
2611 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2612
2613 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
2614}
2615
2616/**
2617 * \brief ioctl handler
2618 * @param netdev network device
2619 * @param ifr interface request
2620 * @param cmd command
2621 */
2622static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2623{
2624 switch (cmd) {
2625 case SIOCSHWTSTAMP:
2626 return hwtstamp_ioctl(netdev, ifr, cmd);
2627 default:
2628 return -EOPNOTSUPP;
2629 }
2630}
2631
2632/**
2633 * \brief handle a Tx timestamp response
2634 * @param status response status
2635 * @param buf pointer to skb
2636 */
2637static void handle_timestamp(struct octeon_device *oct,
2638 u32 status,
2639 void *buf)
2640{
2641 struct octnet_buf_free_info *finfo;
2642 struct octeon_soft_command *sc;
2643 struct oct_timestamp_resp *resp;
2644 struct lio *lio;
2645 struct sk_buff *skb = (struct sk_buff *)buf;
2646
2647 finfo = (struct octnet_buf_free_info *)skb->cb;
2648 lio = finfo->lio;
2649 sc = finfo->sc;
2650 oct = lio->oct_dev;
2651 resp = (struct oct_timestamp_resp *)sc->virtrptr;
2652
2653 if (status != OCTEON_REQUEST_DONE) {
2654 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
2655 CVM_CAST64(status));
2656 resp->timestamp = 0;
2657 }
2658
2659 octeon_swap_8B_data(&resp->timestamp, 1);
2660
19a6d156 2661 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
f21fb3ed
RV
2662 struct skb_shared_hwtstamps ts;
2663 u64 ns = resp->timestamp;
2664
2665 netif_info(lio, tx_done, lio->netdev,
2666 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
2667 skb, (unsigned long long)ns);
2668 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
2669 skb_tstamp_tx(skb, &ts);
2670 }
2671
2672 octeon_free_soft_command(oct, sc);
cabeb13b 2673 tx_buffer_free(skb);
f21fb3ed
RV
2674}
2675
2676/* \brief Send a data packet that will be timestamped
2677 * @param oct octeon device
2678 * @param ndata pointer to network data
2679 * @param finfo pointer to private network data
2680 */
2681static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
2682 struct octnic_data_pkt *ndata,
2683 struct octnet_buf_free_info *finfo,
2684 int xmit_more)
2685{
2686 int retval;
2687 struct octeon_soft_command *sc;
f21fb3ed
RV
2688 struct lio *lio;
2689 int ring_doorbell;
6a885b60 2690 u32 len;
f21fb3ed
RV
2691
2692 lio = finfo->lio;
2693
2694 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
2695 sizeof(struct oct_timestamp_resp));
2696 finfo->sc = sc;
2697
2698 if (!sc) {
2699 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
2700 return IQ_SEND_FAILED;
2701 }
2702
2703 if (ndata->reqtype == REQTYPE_NORESP_NET)
2704 ndata->reqtype = REQTYPE_RESP_NET;
2705 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
2706 ndata->reqtype = REQTYPE_RESP_NET_SG;
2707
2708 sc->callback = handle_timestamp;
2709 sc->callback_arg = finfo->skb;
2710 sc->iq_no = ndata->q_no;
2711
6a885b60 2712 len = (u32)((struct octeon_instr_ih2 *)(&sc->cmd.cmd2.ih2))->dlengsz;
f21fb3ed
RV
2713
2714 ring_doorbell = !xmit_more;
2715 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
6a885b60 2716 sc, len, ndata->reqtype);
f21fb3ed 2717
ddc173a6 2718 if (retval == IQ_SEND_FAILED) {
f21fb3ed
RV
2719 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
2720 retval);
2721 octeon_free_soft_command(oct, sc);
2722 } else {
2723 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
2724 }
2725
2726 return retval;
2727}
2728
f21fb3ed
RV
2729/** \brief Transmit networks packets to the Octeon interface
2730 * @param skbuff skbuff struct to be passed to network layer.
2731 * @param netdev pointer to network device
2732 * @returns whether the packet was transmitted to the device okay or not
2733 * (NETDEV_TX_OK or NETDEV_TX_BUSY)
2734 */
2735static int liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
2736{
2737 struct lio *lio;
2738 struct octnet_buf_free_info *finfo;
2739 union octnic_cmd_setup cmdsetup;
2740 struct octnic_data_pkt ndata;
2741 struct octeon_device *oct;
2742 struct oct_iq_stats *stats;
6a885b60
RV
2743 struct octeon_instr_irh *irh;
2744 union tx_info *tx_info;
26236fa9 2745 int status = 0;
f21fb3ed 2746 int q_idx = 0, iq_no = 0;
fcd2b5e3
RV
2747 int xmit_more, j;
2748 u64 dptr = 0;
f21fb3ed
RV
2749 u32 tag = 0;
2750
2751 lio = GET_LIO(netdev);
2752 oct = lio->oct_dev;
2753
2754 if (netif_is_multiqueue(netdev)) {
26236fa9
RV
2755 q_idx = skb->queue_mapping;
2756 q_idx = (q_idx % (lio->linfo.num_txpciq));
2757 tag = q_idx;
2758 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
f21fb3ed
RV
2759 } else {
2760 iq_no = lio->txq;
2761 }
2762
2763 stats = &oct->instr_queue[iq_no]->stats;
2764
2765 /* Check for all conditions in which the current packet cannot be
2766 * transmitted.
2767 */
2768 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
0cece6c5 2769 (!lio->linfo.link.s.link_up) ||
f21fb3ed
RV
2770 (skb->len <= 0)) {
2771 netif_info(lio, tx_err, lio->netdev,
2772 "Transmit failed link_status : %d\n",
0cece6c5 2773 lio->linfo.link.s.link_up);
f21fb3ed
RV
2774 goto lio_xmit_failed;
2775 }
2776
2777 /* Use space in skb->cb to store info used to unmap and
2778 * free the buffers.
2779 */
2780 finfo = (struct octnet_buf_free_info *)skb->cb;
2781 finfo->lio = lio;
2782 finfo->skb = skb;
2783 finfo->sc = NULL;
2784
2785 /* Prepare the attributes for the data to be passed to OSI. */
2786 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
2787
2788 ndata.buf = (void *)finfo;
2789
2790 ndata.q_no = iq_no;
2791
2792 if (netif_is_multiqueue(netdev)) {
2793 if (octnet_iq_is_full(oct, ndata.q_no)) {
2794 /* defer sending if queue is full */
2795 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
2796 ndata.q_no);
2797 stats->tx_iq_busy++;
2798 return NETDEV_TX_BUSY;
2799 }
2800 } else {
2801 if (octnet_iq_is_full(oct, lio->txq)) {
2802 /* defer sending if queue is full */
2803 stats->tx_iq_busy++;
2804 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
2805 ndata.q_no);
2806 return NETDEV_TX_BUSY;
2807 }
2808 }
2809 /* pr_info(" XMIT - valid Qs: %d, 1st Q no: %d, cpu: %d, q_no:%d\n",
2810 * lio->linfo.num_txpciq, lio->txq, cpu, ndata.q_no );
2811 */
2812
2813 ndata.datasize = skb->len;
2814
2815 cmdsetup.u64 = 0;
7275ebfc 2816 cmdsetup.s.iq_no = iq_no;
f21fb3ed 2817
7275ebfc
RV
2818 if (skb->ip_summed == CHECKSUM_PARTIAL)
2819 cmdsetup.s.transport_csum = 1;
f21fb3ed 2820
f21fb3ed
RV
2821 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
2822 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
2823 cmdsetup.s.timestamp = 1;
2824 }
2825
2826 if (skb_shinfo(skb)->nr_frags == 0) {
2827 cmdsetup.s.u.datasize = skb->len;
0cece6c5 2828 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
f21fb3ed 2829 /* Offload checksum calculation for TCP/UDP packets */
6a885b60
RV
2830 dptr = dma_map_single(&oct->pci_dev->dev,
2831 skb->data,
2832 skb->len,
2833 DMA_TO_DEVICE);
2834 if (dma_mapping_error(&oct->pci_dev->dev, dptr)) {
f21fb3ed
RV
2835 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
2836 __func__);
2837 return NETDEV_TX_BUSY;
2838 }
2839
6a885b60
RV
2840 ndata.cmd.cmd2.dptr = dptr;
2841 finfo->dptr = dptr;
f21fb3ed
RV
2842 ndata.reqtype = REQTYPE_NORESP_NET;
2843
2844 } else {
2845 int i, frags;
2846 struct skb_frag_struct *frag;
2847 struct octnic_gather *g;
2848
fcd2b5e3
RV
2849 spin_lock(&lio->glist_lock[q_idx]);
2850 g = (struct octnic_gather *)
2851 list_delete_head(&lio->glist[q_idx]);
2852 spin_unlock(&lio->glist_lock[q_idx]);
f21fb3ed
RV
2853
2854 if (!g) {
2855 netif_info(lio, tx_err, lio->netdev,
2856 "Transmit scatter gather: glist null!\n");
2857 goto lio_xmit_failed;
2858 }
2859
2860 cmdsetup.s.gather = 1;
2861 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
0cece6c5 2862 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
f21fb3ed
RV
2863
2864 memset(g->sg, 0, g->sg_size);
2865
2866 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
2867 skb->data,
2868 (skb->len - skb->data_len),
2869 DMA_TO_DEVICE);
2870 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
2871 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
2872 __func__);
2873 return NETDEV_TX_BUSY;
2874 }
2875 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
2876
2877 frags = skb_shinfo(skb)->nr_frags;
2878 i = 1;
2879 while (frags--) {
2880 frag = &skb_shinfo(skb)->frags[i - 1];
2881
2882 g->sg[(i >> 2)].ptr[(i & 3)] =
2883 dma_map_page(&oct->pci_dev->dev,
2884 frag->page.p,
2885 frag->page_offset,
2886 frag->size,
2887 DMA_TO_DEVICE);
2888
fcd2b5e3
RV
2889 if (dma_mapping_error(&oct->pci_dev->dev,
2890 g->sg[i >> 2].ptr[i & 3])) {
2891 dma_unmap_single(&oct->pci_dev->dev,
2892 g->sg[0].ptr[0],
2893 skb->len - skb->data_len,
2894 DMA_TO_DEVICE);
2895 for (j = 1; j < i; j++) {
2896 frag = &skb_shinfo(skb)->frags[j - 1];
2897 dma_unmap_page(&oct->pci_dev->dev,
2898 g->sg[j >> 2].ptr[j & 3],
2899 frag->size,
2900 DMA_TO_DEVICE);
2901 }
2902 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
2903 __func__);
2904 return NETDEV_TX_BUSY;
2905 }
2906
f21fb3ed
RV
2907 add_sg_size(&g->sg[(i >> 2)], frag->size, (i & 3));
2908 i++;
2909 }
2910
fcd2b5e3
RV
2911 dma_sync_single_for_device(&oct->pci_dev->dev, g->sg_dma_ptr,
2912 g->sg_size, DMA_TO_DEVICE);
2913 dptr = g->sg_dma_ptr;
f21fb3ed 2914
6a885b60
RV
2915 ndata.cmd.cmd2.dptr = dptr;
2916 finfo->dptr = dptr;
f21fb3ed
RV
2917 finfo->g = g;
2918
2919 ndata.reqtype = REQTYPE_NORESP_NET_SG;
2920 }
2921
6a885b60
RV
2922 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd2.irh;
2923 tx_info = (union tx_info *)&ndata.cmd.cmd2.ossp[0];
f21fb3ed 2924
6a885b60 2925 if (skb_shinfo(skb)->gso_size) {
f21fb3ed
RV
2926 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
2927 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
2928 }
0da0b77c
RV
2929 /* HW insert VLAN tag */
2930 if (skb_vlan_tag_present(skb)) {
2931 irh->priority = skb_vlan_tag_get(skb) >> 13;
2932 irh->vlan = skb_vlan_tag_get(skb) & 0xfff;
2933 }
f21fb3ed
RV
2934
2935 xmit_more = skb->xmit_more;
2936
2937 if (unlikely(cmdsetup.s.timestamp))
2938 status = send_nic_timestamp_pkt(oct, &ndata, finfo, xmit_more);
2939 else
2940 status = octnet_send_nic_data_pkt(oct, &ndata, xmit_more);
2941 if (status == IQ_SEND_FAILED)
2942 goto lio_xmit_failed;
2943
2944 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
2945
2946 if (status == IQ_SEND_STOP)
2947 stop_q(lio->netdev, q_idx);
2948
860e9538 2949 netif_trans_update(netdev);
f21fb3ed
RV
2950
2951 stats->tx_done++;
2952 stats->tx_tot_bytes += skb->len;
2953
2954 return NETDEV_TX_OK;
2955
2956lio_xmit_failed:
2957 stats->tx_dropped++;
2958 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
2959 iq_no, stats->tx_dropped);
6a885b60
RV
2960 if (dptr)
2961 dma_unmap_single(&oct->pci_dev->dev, dptr,
2962 ndata.datasize, DMA_TO_DEVICE);
cabeb13b 2963 tx_buffer_free(skb);
f21fb3ed
RV
2964 return NETDEV_TX_OK;
2965}
2966
2967/** \brief Network device Tx timeout
2968 * @param netdev pointer to network device
2969 */
2970static void liquidio_tx_timeout(struct net_device *netdev)
2971{
2972 struct lio *lio;
2973
2974 lio = GET_LIO(netdev);
2975
2976 netif_info(lio, tx_err, lio->netdev,
2977 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
2978 netdev->stats.tx_dropped);
860e9538 2979 netif_trans_update(netdev);
f21fb3ed
RV
2980 txqs_wake(netdev);
2981}
2982
63245f25
RV
2983static int liquidio_vlan_rx_add_vid(struct net_device *netdev,
2984 __be16 proto __attribute__((unused)),
2985 u16 vid)
2986{
2987 struct lio *lio = GET_LIO(netdev);
2988 struct octeon_device *oct = lio->oct_dev;
2989 struct octnic_ctrl_pkt nctrl;
2990 int ret = 0;
2991
2992 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2993
2994 nctrl.ncmd.u64 = 0;
2995 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
2996 nctrl.ncmd.s.param1 = vid;
2997 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2998 nctrl.wait_time = 100;
2999 nctrl.netpndev = (u64)netdev;
3000 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3001
3002 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3003 if (ret < 0) {
3004 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3005 ret);
3006 }
3007
3008 return ret;
3009}
3010
3011static int liquidio_vlan_rx_kill_vid(struct net_device *netdev,
3012 __be16 proto __attribute__((unused)),
3013 u16 vid)
3014{
3015 struct lio *lio = GET_LIO(netdev);
3016 struct octeon_device *oct = lio->oct_dev;
3017 struct octnic_ctrl_pkt nctrl;
3018 int ret = 0;
3019
3020 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3021
3022 nctrl.ncmd.u64 = 0;
3023 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3024 nctrl.ncmd.s.param1 = vid;
3025 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3026 nctrl.wait_time = 100;
3027 nctrl.netpndev = (u64)netdev;
3028 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3029
3030 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3031 if (ret < 0) {
3032 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3033 ret);
3034 }
3035 return ret;
3036}
3037
0cece6c5 3038int liquidio_set_feature(struct net_device *netdev, int cmd, u16 param1)
f21fb3ed
RV
3039{
3040 struct lio *lio = GET_LIO(netdev);
3041 struct octeon_device *oct = lio->oct_dev;
3042 struct octnic_ctrl_pkt nctrl;
f21fb3ed
RV
3043 int ret = 0;
3044
3045 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3046
3047 nctrl.ncmd.u64 = 0;
3048 nctrl.ncmd.s.cmd = cmd;
0cece6c5
RV
3049 nctrl.ncmd.s.param1 = param1;
3050 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
f21fb3ed
RV
3051 nctrl.wait_time = 100;
3052 nctrl.netpndev = (u64)netdev;
3053 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3054
0cece6c5 3055 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
f21fb3ed
RV
3056 if (ret < 0) {
3057 dev_err(&oct->pci_dev->dev, "Feature change failed in core (ret: 0x%x)\n",
3058 ret);
3059 }
3060 return ret;
3061}
3062
3063/** \brief Net device fix features
3064 * @param netdev pointer to network device
3065 * @param request features requested
3066 * @returns updated features list
3067 */
3068static netdev_features_t liquidio_fix_features(struct net_device *netdev,
3069 netdev_features_t request)
3070{
3071 struct lio *lio = netdev_priv(netdev);
3072
3073 if ((request & NETIF_F_RXCSUM) &&
3074 !(lio->dev_capability & NETIF_F_RXCSUM))
3075 request &= ~NETIF_F_RXCSUM;
3076
3077 if ((request & NETIF_F_HW_CSUM) &&
3078 !(lio->dev_capability & NETIF_F_HW_CSUM))
3079 request &= ~NETIF_F_HW_CSUM;
3080
3081 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
3082 request &= ~NETIF_F_TSO;
3083
3084 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
3085 request &= ~NETIF_F_TSO6;
3086
3087 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
3088 request &= ~NETIF_F_LRO;
3089
3090 /*Disable LRO if RXCSUM is off */
3091 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
3092 (lio->dev_capability & NETIF_F_LRO))
3093 request &= ~NETIF_F_LRO;
3094
3095 return request;
3096}
3097
3098/** \brief Net device set features
3099 * @param netdev pointer to network device
3100 * @param features features to enable/disable
3101 */
3102static int liquidio_set_features(struct net_device *netdev,
3103 netdev_features_t features)
3104{
3105 struct lio *lio = netdev_priv(netdev);
3106
3107 if (!((netdev->features ^ features) & NETIF_F_LRO))
3108 return 0;
3109
3110 if ((features & NETIF_F_LRO) && (lio->dev_capability & NETIF_F_LRO))
0cece6c5
RV
3111 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3112 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
f21fb3ed
RV
3113 else if (!(features & NETIF_F_LRO) &&
3114 (lio->dev_capability & NETIF_F_LRO))
0cece6c5
RV
3115 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE,
3116 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
f21fb3ed
RV
3117
3118 return 0;
3119}
3120
3121static struct net_device_ops lionetdevops = {
3122 .ndo_open = liquidio_open,
3123 .ndo_stop = liquidio_stop,
3124 .ndo_start_xmit = liquidio_xmit,
3125 .ndo_get_stats = liquidio_get_stats,
3126 .ndo_set_mac_address = liquidio_set_mac,
3127 .ndo_set_rx_mode = liquidio_set_mcast_list,
3128 .ndo_tx_timeout = liquidio_tx_timeout,
63245f25
RV
3129
3130 .ndo_vlan_rx_add_vid = liquidio_vlan_rx_add_vid,
3131 .ndo_vlan_rx_kill_vid = liquidio_vlan_rx_kill_vid,
f21fb3ed
RV
3132 .ndo_change_mtu = liquidio_change_mtu,
3133 .ndo_do_ioctl = liquidio_ioctl,
3134 .ndo_fix_features = liquidio_fix_features,
3135 .ndo_set_features = liquidio_set_features,
3136};
3137
3138/** \brief Entry point for the liquidio module
3139 */
3140static int __init liquidio_init(void)
3141{
3142 int i;
3143 struct handshake *hs;
3144
3145 init_completion(&first_stage);
3146
3147 octeon_init_device_list(conf_type);
3148
3149 if (liquidio_init_pci())
3150 return -EINVAL;
3151
3152 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3153
3154 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3155 hs = &handshake[i];
3156 if (hs->pci_dev) {
3157 wait_for_completion(&hs->init);
3158 if (!hs->init_ok) {
3159 /* init handshake failed */
3160 dev_err(&hs->pci_dev->dev,
3161 "Failed to init device\n");
3162 liquidio_deinit_pci();
3163 return -EIO;
3164 }
3165 }
3166 }
3167
3168 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3169 hs = &handshake[i];
3170 if (hs->pci_dev) {
3171 wait_for_completion_timeout(&hs->started,
3172 msecs_to_jiffies(30000));
3173 if (!hs->started_ok) {
3174 /* starter handshake failed */
3175 dev_err(&hs->pci_dev->dev,
3176 "Firmware failed to start\n");
3177 liquidio_deinit_pci();
3178 return -EIO;
3179 }
3180 }
3181 }
3182
3183 return 0;
3184}
3185
5b173cf9 3186static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
f21fb3ed
RV
3187{
3188 struct octeon_device *oct = (struct octeon_device *)buf;
3189 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
0cece6c5 3190 int gmxport = 0;
f21fb3ed
RV
3191 union oct_link_status *ls;
3192 int i;
3193
0cece6c5 3194 if (recv_pkt->buffer_size[0] != sizeof(*ls)) {
f21fb3ed
RV
3195 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3196 recv_pkt->buffer_size[0],
0cece6c5 3197 recv_pkt->rh.r_nic_info.gmxport);
f21fb3ed
RV
3198 goto nic_info_err;
3199 }
3200
0cece6c5 3201 gmxport = recv_pkt->rh.r_nic_info.gmxport;
f21fb3ed
RV
3202 ls = (union oct_link_status *)get_rbd(recv_pkt->buffer_ptr[0]);
3203
3204 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
0cece6c5
RV
3205 for (i = 0; i < oct->ifcount; i++) {
3206 if (oct->props[i].gmxport == gmxport) {
3207 update_link_status(oct->props[i].netdev, ls);
3208 break;
3209 }
3210 }
f21fb3ed
RV
3211
3212nic_info_err:
3213 for (i = 0; i < recv_pkt->buffer_count; i++)
3214 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3215 octeon_free_recv_info(recv_info);
3216 return 0;
3217}
3218
3219/**
3220 * \brief Setup network interfaces
3221 * @param octeon_dev octeon device
3222 *
3223 * Called during init time for each device. It assumes the NIC
3224 * is already up and running. The link information for each
3225 * interface is passed in link_info.
3226 */
3227static int setup_nic_devices(struct octeon_device *octeon_dev)
3228{
3229 struct lio *lio = NULL;
3230 struct net_device *netdev;
3231 u8 mac[6], i, j;
3232 struct octeon_soft_command *sc;
3233 struct liquidio_if_cfg_context *ctx;
3234 struct liquidio_if_cfg_resp *resp;
3235 struct octdev_props *props;
26236fa9 3236 int retval, num_iqueues, num_oqueues;
f21fb3ed
RV
3237 int num_cpus = num_online_cpus();
3238 union oct_nic_if_cfg if_cfg;
3239 unsigned int base_queue;
3240 unsigned int gmx_port_id;
3241 u32 resp_size, ctx_size;
0cece6c5 3242 u32 ifidx_or_pfnum;
f21fb3ed
RV
3243
3244 /* This is to handle link status changes */
3245 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3246 OPCODE_NIC_INFO,
3247 lio_nic_info, octeon_dev);
3248
3249 /* REQTYPE_RESP_NET and REQTYPE_SOFT_COMMAND do not have free functions.
3250 * They are handled directly.
3251 */
3252 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
3253 free_netbuf);
3254
3255 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
3256 free_netsgbuf);
3257
3258 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
3259 free_netsgbuf_with_resp);
3260
3261 for (i = 0; i < octeon_dev->ifcount; i++) {
3262 resp_size = sizeof(struct liquidio_if_cfg_resp);
3263 ctx_size = sizeof(struct liquidio_if_cfg_context);
3264 sc = (struct octeon_soft_command *)
3265 octeon_alloc_soft_command(octeon_dev, 0,
3266 resp_size, ctx_size);
3267 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
3268 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
3269
3270 num_iqueues =
3271 CFG_GET_NUM_TXQS_NIC_IF(octeon_get_conf(octeon_dev), i);
3272 num_oqueues =
3273 CFG_GET_NUM_RXQS_NIC_IF(octeon_get_conf(octeon_dev), i);
3274 base_queue =
3275 CFG_GET_BASE_QUE_NIC_IF(octeon_get_conf(octeon_dev), i);
3276 gmx_port_id =
3277 CFG_GET_GMXID_NIC_IF(octeon_get_conf(octeon_dev), i);
0cece6c5 3278 ifidx_or_pfnum = i;
f21fb3ed
RV
3279 if (num_iqueues > num_cpus)
3280 num_iqueues = num_cpus;
3281 if (num_oqueues > num_cpus)
3282 num_oqueues = num_cpus;
3283 dev_dbg(&octeon_dev->pci_dev->dev,
3284 "requesting config for interface %d, iqs %d, oqs %d\n",
0cece6c5 3285 ifidx_or_pfnum, num_iqueues, num_oqueues);
f21fb3ed
RV
3286 ACCESS_ONCE(ctx->cond) = 0;
3287 ctx->octeon_id = lio_get_device_id(octeon_dev);
3288 init_waitqueue_head(&ctx->wc);
3289
3290 if_cfg.u64 = 0;
3291 if_cfg.s.num_iqueues = num_iqueues;
3292 if_cfg.s.num_oqueues = num_oqueues;
3293 if_cfg.s.base_queue = base_queue;
3294 if_cfg.s.gmx_port_id = gmx_port_id;
0cece6c5
RV
3295
3296 sc->iq_no = 0;
3297
f21fb3ed 3298 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
0cece6c5 3299 OPCODE_NIC_IF_CFG, 0,
f21fb3ed
RV
3300 if_cfg.u64, 0);
3301
3302 sc->callback = if_cfg_callback;
3303 sc->callback_arg = sc;
3304 sc->wait_time = 1000;
3305
3306 retval = octeon_send_soft_command(octeon_dev, sc);
ddc173a6 3307 if (retval == IQ_SEND_FAILED) {
f21fb3ed
RV
3308 dev_err(&octeon_dev->pci_dev->dev,
3309 "iq/oq config failed status: %x\n",
3310 retval);
3311 /* Soft instr is freed by driver in case of failure. */
3312 goto setup_nic_dev_fail;
3313 }
3314
3315 /* Sleep on a wait queue till the cond flag indicates that the
3316 * response arrived or timed-out.
3317 */
3318 sleep_cond(&ctx->wc, &ctx->cond);
3319 retval = resp->status;
3320 if (retval) {
3321 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
3322 goto setup_nic_dev_fail;
3323 }
3324
3325 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
3326 (sizeof(struct liquidio_if_cfg_info)) >> 3);
3327
3328 num_iqueues = hweight64(resp->cfg_info.iqmask);
3329 num_oqueues = hweight64(resp->cfg_info.oqmask);
3330
3331 if (!(num_iqueues) || !(num_oqueues)) {
3332 dev_err(&octeon_dev->pci_dev->dev,
3333 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
3334 resp->cfg_info.iqmask,
3335 resp->cfg_info.oqmask);
3336 goto setup_nic_dev_fail;
3337 }
3338 dev_dbg(&octeon_dev->pci_dev->dev,
3339 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d\n",
3340 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
3341 num_iqueues, num_oqueues);
3342 netdev = alloc_etherdev_mq(LIO_SIZE, num_iqueues);
3343
3344 if (!netdev) {
3345 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
3346 goto setup_nic_dev_fail;
3347 }
3348
0cece6c5 3349 SET_NETDEV_DEV(netdev, &octeon_dev->pci_dev->dev);
f21fb3ed
RV
3350
3351 if (num_iqueues > 1)
3352 lionetdevops.ndo_select_queue = select_q;
3353
3354 /* Associate the routines that will handle different
3355 * netdev tasks.
3356 */
3357 netdev->netdev_ops = &lionetdevops;
3358
3359 lio = GET_LIO(netdev);
3360
3361 memset(lio, 0, sizeof(struct lio));
3362
0cece6c5
RV
3363 lio->ifidx = ifidx_or_pfnum;
3364
3365 props = &octeon_dev->props[i];
3366 props->gmxport = resp->cfg_info.linfo.gmxport;
3367 props->netdev = netdev;
f21fb3ed
RV
3368
3369 lio->linfo.num_rxpciq = num_oqueues;
3370 lio->linfo.num_txpciq = num_iqueues;
f21fb3ed 3371 for (j = 0; j < num_oqueues; j++) {
26236fa9
RV
3372 lio->linfo.rxpciq[j].u64 =
3373 resp->cfg_info.linfo.rxpciq[j].u64;
f21fb3ed 3374 }
f21fb3ed 3375 for (j = 0; j < num_iqueues; j++) {
26236fa9
RV
3376 lio->linfo.txpciq[j].u64 =
3377 resp->cfg_info.linfo.txpciq[j].u64;
f21fb3ed
RV
3378 }
3379 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
3380 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
3381 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
3382
3383 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
3384
3385 lio->dev_capability = NETIF_F_HIGHDMA
0cece6c5
RV
3386 | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM
3387 | NETIF_F_SG | NETIF_F_RXCSUM
3388 | NETIF_F_GRO
3389 | NETIF_F_TSO | NETIF_F_TSO6
3390 | NETIF_F_LRO;
f21fb3ed
RV
3391 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
3392
f21fb3ed 3393 netdev->vlan_features = lio->dev_capability;
0da0b77c 3394 /* Add any unchangeable hw features */
63245f25
RV
3395 lio->dev_capability |= NETIF_F_HW_VLAN_CTAG_FILTER |
3396 NETIF_F_HW_VLAN_CTAG_RX |
0da0b77c
RV
3397 NETIF_F_HW_VLAN_CTAG_TX;
3398
3399 netdev->features = (lio->dev_capability & ~NETIF_F_LRO);
f21fb3ed
RV
3400
3401 netdev->hw_features = lio->dev_capability;
0da0b77c
RV
3402 /*HW_VLAN_RX and HW_VLAN_FILTER is always on*/
3403 netdev->hw_features = netdev->hw_features &
3404 ~NETIF_F_HW_VLAN_CTAG_RX;
f21fb3ed
RV
3405
3406 /* Point to the properties for octeon device to which this
3407 * interface belongs.
3408 */
3409 lio->oct_dev = octeon_dev;
3410 lio->octprops = props;
3411 lio->netdev = netdev;
f21fb3ed
RV
3412
3413 dev_dbg(&octeon_dev->pci_dev->dev,
3414 "if%d gmx: %d hw_addr: 0x%llx\n", i,
3415 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
3416
3417 /* 64-bit swap required on LE machines */
3418 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
3419 for (j = 0; j < 6; j++)
3420 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
3421
3422 /* Copy MAC Address to OS network device structure */
3423
3424 ether_addr_copy(netdev->dev_addr, mac);
3425
26236fa9
RV
3426 /* By default all interfaces on a single Octeon uses the same
3427 * tx and rx queues
3428 */
3429 lio->txq = lio->linfo.txpciq[0].s.q_no;
3430 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
0cece6c5 3431 if (setup_io_queues(octeon_dev, i)) {
f21fb3ed
RV
3432 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
3433 goto setup_nic_dev_fail;
3434 }
3435
3436 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
3437
f21fb3ed
RV
3438 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
3439 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
3440
fcd2b5e3 3441 if (setup_glists(octeon_dev, lio, num_iqueues)) {
f21fb3ed
RV
3442 dev_err(&octeon_dev->pci_dev->dev,
3443 "Gather list allocation failed\n");
3444 goto setup_nic_dev_fail;
3445 }
3446
3447 /* Register ethtool support */
3448 liquidio_set_ethtool_ops(netdev);
3449
0cece6c5
RV
3450 if (netdev->features & NETIF_F_LRO)
3451 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3452 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
f21fb3ed 3453
63245f25
RV
3454 liquidio_set_feature(netdev, OCTNET_CMD_ENABLE_VLAN_FILTER, 0);
3455
f21fb3ed 3456 if ((debug != -1) && (debug & NETIF_MSG_HW))
63245f25
RV
3457 liquidio_set_feature(netdev,
3458 OCTNET_CMD_VERBOSE_ENABLE, 0);
f21fb3ed
RV
3459
3460 /* Register the network device with the OS */
3461 if (register_netdev(netdev)) {
3462 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
3463 goto setup_nic_dev_fail;
3464 }
3465
3466 dev_dbg(&octeon_dev->pci_dev->dev,
3467 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
3468 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
3469 netif_carrier_off(netdev);
0cece6c5 3470 lio->link_changes++;
f21fb3ed
RV
3471
3472 ifstate_set(lio, LIO_IFSTATE_REGISTERED);
3473
3474 dev_dbg(&octeon_dev->pci_dev->dev,
3475 "NIC ifidx:%d Setup successful\n", i);
3476
3477 octeon_free_soft_command(octeon_dev, sc);
3478 }
3479
3480 return 0;
3481
3482setup_nic_dev_fail:
3483
3484 octeon_free_soft_command(octeon_dev, sc);
3485
3486 while (i--) {
3487 dev_err(&octeon_dev->pci_dev->dev,
3488 "NIC ifidx:%d Setup failed\n", i);
3489 liquidio_destroy_nic_device(octeon_dev, i);
3490 }
3491 return -ENODEV;
3492}
3493
3494/**
3495 * \brief initialize the NIC
3496 * @param oct octeon device
3497 *
3498 * This initialization routine is called once the Octeon device application is
3499 * up and running
3500 */
3501static int liquidio_init_nic_module(struct octeon_device *oct)
3502{
3503 struct oct_intrmod_cfg *intrmod_cfg;
0cece6c5 3504 int i, retval = 0;
f21fb3ed
RV
3505 int num_nic_ports = CFG_GET_NUM_NIC_PORTS(octeon_get_conf(oct));
3506
3507 dev_dbg(&oct->pci_dev->dev, "Initializing network interfaces\n");
3508
3509 /* only default iq and oq were initialized
3510 * initialize the rest as well
3511 */
3512 /* run port_config command for each port */
3513 oct->ifcount = num_nic_ports;
3514
3515 memset(oct->props, 0,
3516 sizeof(struct octdev_props) * num_nic_ports);
3517
0cece6c5
RV
3518 for (i = 0; i < MAX_OCTEON_LINKS; i++)
3519 oct->props[i].gmxport = -1;
3520
f21fb3ed
RV
3521 retval = setup_nic_devices(oct);
3522 if (retval) {
3523 dev_err(&oct->pci_dev->dev, "Setup NIC devices failed\n");
3524 goto octnet_init_failure;
3525 }
3526
3527 liquidio_ptp_init(oct);
3528
3529 /* Initialize interrupt moderation params */
3530 intrmod_cfg = &((struct octeon_device *)oct)->intrmod;
3531 intrmod_cfg->intrmod_enable = 1;
3532 intrmod_cfg->intrmod_check_intrvl = LIO_INTRMOD_CHECK_INTERVAL;
3533 intrmod_cfg->intrmod_maxpkt_ratethr = LIO_INTRMOD_MAXPKT_RATETHR;
3534 intrmod_cfg->intrmod_minpkt_ratethr = LIO_INTRMOD_MINPKT_RATETHR;
3535 intrmod_cfg->intrmod_maxcnt_trigger = LIO_INTRMOD_MAXCNT_TRIGGER;
3536 intrmod_cfg->intrmod_maxtmr_trigger = LIO_INTRMOD_MAXTMR_TRIGGER;
3537 intrmod_cfg->intrmod_mintmr_trigger = LIO_INTRMOD_MINTMR_TRIGGER;
3538 intrmod_cfg->intrmod_mincnt_trigger = LIO_INTRMOD_MINCNT_TRIGGER;
3539
3540 dev_dbg(&oct->pci_dev->dev, "Network interfaces ready\n");
3541
3542 return retval;
3543
3544octnet_init_failure:
3545
3546 oct->ifcount = 0;
3547
3548 return retval;
3549}
3550
3551/**
3552 * \brief starter callback that invokes the remaining initialization work after
3553 * the NIC is up and running.
3554 * @param octptr work struct work_struct
3555 */
3556static void nic_starter(struct work_struct *work)
3557{
3558 struct octeon_device *oct;
3559 struct cavium_wk *wk = (struct cavium_wk *)work;
3560
3561 oct = (struct octeon_device *)wk->ctxptr;
3562
3563 if (atomic_read(&oct->status) == OCT_DEV_RUNNING)
3564 return;
3565
3566 /* If the status of the device is CORE_OK, the core
3567 * application has reported its application type. Call
3568 * any registered handlers now and move to the RUNNING
3569 * state.
3570 */
3571 if (atomic_read(&oct->status) != OCT_DEV_CORE_OK) {
3572 schedule_delayed_work(&oct->nic_poll_work.work,
3573 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
3574 return;
3575 }
3576
3577 atomic_set(&oct->status, OCT_DEV_RUNNING);
3578
3579 if (oct->app_mode && oct->app_mode == CVM_DRV_NIC_APP) {
3580 dev_dbg(&oct->pci_dev->dev, "Starting NIC module\n");
3581
3582 if (liquidio_init_nic_module(oct))
3583 dev_err(&oct->pci_dev->dev, "NIC initialization failed\n");
3584 else
3585 handshake[oct->octeon_id].started_ok = 1;
3586 } else {
3587 dev_err(&oct->pci_dev->dev,
3588 "Unexpected application running on NIC (%d). Check firmware.\n",
3589 oct->app_mode);
3590 }
3591
3592 complete(&handshake[oct->octeon_id].started);
3593}
3594
3595/**
3596 * \brief Device initialization for each Octeon device that is probed
3597 * @param octeon_dev octeon device
3598 */
3599static int octeon_device_init(struct octeon_device *octeon_dev)
3600{
3601 int j, ret;
3602 struct octeon_device_priv *oct_priv =
3603 (struct octeon_device_priv *)octeon_dev->priv;
3604 atomic_set(&octeon_dev->status, OCT_DEV_BEGIN_STATE);
3605
3606 /* Enable access to the octeon device and make its DMA capability
3607 * known to the OS.
3608 */
3609 if (octeon_pci_os_setup(octeon_dev))
3610 return 1;
3611
3612 /* Identify the Octeon type and map the BAR address space. */
3613 if (octeon_chip_specific_setup(octeon_dev)) {
3614 dev_err(&octeon_dev->pci_dev->dev, "Chip specific setup failed\n");
3615 return 1;
3616 }
3617
3618 atomic_set(&octeon_dev->status, OCT_DEV_PCI_MAP_DONE);
3619
3620 octeon_dev->app_mode = CVM_DRV_INVALID_APP;
3621
3622 /* Do a soft reset of the Octeon device. */
3623 if (octeon_dev->fn_list.soft_reset(octeon_dev))
3624 return 1;
3625
3626 /* Initialize the dispatch mechanism used to push packets arriving on
3627 * Octeon Output queues.
3628 */
3629 if (octeon_init_dispatch_list(octeon_dev))
3630 return 1;
3631
3632 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3633 OPCODE_NIC_CORE_DRV_ACTIVE,
3634 octeon_core_drv_init,
3635 octeon_dev);
3636
3637 INIT_DELAYED_WORK(&octeon_dev->nic_poll_work.work, nic_starter);
3638 octeon_dev->nic_poll_work.ctxptr = (void *)octeon_dev;
3639 schedule_delayed_work(&octeon_dev->nic_poll_work.work,
3640 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
3641
3642 atomic_set(&octeon_dev->status, OCT_DEV_DISPATCH_INIT_DONE);
3643
3644 octeon_set_io_queues_off(octeon_dev);
3645
3646 /* Setup the data structures that manage this Octeon's Input queues. */
3647 if (octeon_setup_instr_queues(octeon_dev)) {
3648 dev_err(&octeon_dev->pci_dev->dev,
3649 "instruction queue initialization failed\n");
3650 /* On error, release any previously allocated queues */
3651 for (j = 0; j < octeon_dev->num_iqs; j++)
3652 octeon_delete_instr_queue(octeon_dev, j);
3653 return 1;
3654 }
3655 atomic_set(&octeon_dev->status, OCT_DEV_INSTR_QUEUE_INIT_DONE);
3656
3657 /* Initialize soft command buffer pool
3658 */
3659 if (octeon_setup_sc_buffer_pool(octeon_dev)) {
3660 dev_err(&octeon_dev->pci_dev->dev, "sc buffer pool allocation failed\n");
3661 return 1;
3662 }
3663 atomic_set(&octeon_dev->status, OCT_DEV_SC_BUFF_POOL_INIT_DONE);
3664
3665 /* Initialize lists to manage the requests of different types that
3666 * arrive from user & kernel applications for this octeon device.
3667 */
3668 if (octeon_setup_response_list(octeon_dev)) {
3669 dev_err(&octeon_dev->pci_dev->dev, "Response list allocation failed\n");
3670 return 1;
3671 }
3672 atomic_set(&octeon_dev->status, OCT_DEV_RESP_LIST_INIT_DONE);
3673
3674 if (octeon_setup_output_queues(octeon_dev)) {
3675 dev_err(&octeon_dev->pci_dev->dev, "Output queue initialization failed\n");
3676 /* Release any previously allocated queues */
3677 for (j = 0; j < octeon_dev->num_oqs; j++)
3678 octeon_delete_droq(octeon_dev, j);
3679 }
3680
3681 atomic_set(&octeon_dev->status, OCT_DEV_DROQ_INIT_DONE);
3682
3683 /* The input and output queue registers were setup earlier (the queues
3684 * were not enabled). Any additional registers that need to be
3685 * programmed should be done now.
3686 */
3687 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
3688 if (ret) {
3689 dev_err(&octeon_dev->pci_dev->dev,
3690 "Failed to configure device registers\n");
3691 return ret;
3692 }
3693
3694 /* Initialize the tasklet that handles output queue packet processing.*/
3695 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing droq tasklet\n");
3696 tasklet_init(&oct_priv->droq_tasklet, octeon_droq_bh,
3697 (unsigned long)octeon_dev);
3698
3699 /* Setup the interrupt handler and record the INT SUM register address
3700 */
3701 octeon_setup_interrupt(octeon_dev);
3702
3703 /* Enable Octeon device interrupts */
3704 octeon_dev->fn_list.enable_interrupt(octeon_dev->chip);
3705
3706 /* Enable the input and output queues for this Octeon device */
3707 octeon_dev->fn_list.enable_io_queues(octeon_dev);
3708
3709 atomic_set(&octeon_dev->status, OCT_DEV_IO_QUEUES_DONE);
3710
3711 dev_dbg(&octeon_dev->pci_dev->dev, "Waiting for DDR initialization...\n");
3712
3713 if (ddr_timeout == 0) {
3714 dev_info(&octeon_dev->pci_dev->dev,
3715 "WAITING. Set ddr_timeout to non-zero value to proceed with initialization.\n");
3716 }
3717
3718 schedule_timeout_uninterruptible(HZ * LIO_RESET_SECS);
3719
3720 /* Wait for the octeon to initialize DDR after the soft-reset. */
3721 ret = octeon_wait_for_ddr_init(octeon_dev, &ddr_timeout);
3722 if (ret) {
3723 dev_err(&octeon_dev->pci_dev->dev,
3724 "DDR not initialized. Please confirm that board is configured to boot from Flash, ret: %d\n",
3725 ret);
3726 return 1;
3727 }
3728
3729 if (octeon_wait_for_bootloader(octeon_dev, 1000) != 0) {
3730 dev_err(&octeon_dev->pci_dev->dev, "Board not responding\n");
3731 return 1;
3732 }
3733
3734 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing consoles\n");
3735 ret = octeon_init_consoles(octeon_dev);
3736 if (ret) {
3737 dev_err(&octeon_dev->pci_dev->dev, "Could not access board consoles\n");
3738 return 1;
3739 }
3740 ret = octeon_add_console(octeon_dev, 0);
3741 if (ret) {
3742 dev_err(&octeon_dev->pci_dev->dev, "Could not access board console\n");
3743 return 1;
3744 }
3745
3746 atomic_set(&octeon_dev->status, OCT_DEV_CONSOLE_INIT_DONE);
3747
3748 dev_dbg(&octeon_dev->pci_dev->dev, "Loading firmware\n");
3749 ret = load_firmware(octeon_dev);
3750 if (ret) {
3751 dev_err(&octeon_dev->pci_dev->dev, "Could not load firmware to board\n");
3752 return 1;
3753 }
3754
3755 handshake[octeon_dev->octeon_id].init_ok = 1;
3756 complete(&handshake[octeon_dev->octeon_id].init);
3757
3758 atomic_set(&octeon_dev->status, OCT_DEV_HOST_OK);
3759
3760 /* Send Credit for Octeon Output queues. Credits are always sent after
3761 * the output queue is enabled.
3762 */
3763 for (j = 0; j < octeon_dev->num_oqs; j++)
3764 writel(octeon_dev->droq[j]->max_count,
3765 octeon_dev->droq[j]->pkts_credit_reg);
3766
3767 /* Packets can start arriving on the output queues from this point. */
3768
3769 return 0;
3770}
3771
3772/**
3773 * \brief Exits the module
3774 */
3775static void __exit liquidio_exit(void)
3776{
3777 liquidio_deinit_pci();
3778
3779 pr_info("LiquidIO network module is now unloaded\n");
3780}
3781
3782module_init(liquidio_init);
3783module_exit(liquidio_exit);