blob: aa28790d935e764c4ed20c4fb00682e6a91a1d38 [file] [log] [blame]
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001/**********************************************************************
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>
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -070029#include <net/ip.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070030#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
Raghu Vatsavayia5b37882016-06-14 16:54:48 -070087static int ptp_enable = 1;
88
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070089/* 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;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700171
172 u64 sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700173};
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
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700218static void octeon_droq_bh(unsigned long pdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700219{
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++) { */
227 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES; q_no++) {
228 if (!(oct->io_qmask.oq & (1UL << q_no)))
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
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700238static int lio_wait_for_oq_pkts(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700239{
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
248 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES; i++) {
249 if (!(oct->io_qmask.oq & (1UL << i)))
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. */
399 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES; i++) {
400 struct octeon_instr_queue *iq;
401
402 if (!(oct->io_qmask.iq & (1UL << i)))
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 */
Julia Lawall166e2362015-11-14 11:06:53 +0100567static const struct pci_error_handlers liquidio_err_handler = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700568 .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++)
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700689 if (__netif_subqueue_stopped(netdev, i))
690 netif_wake_subqueue(netdev, i);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700691 } 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
713 if (lio->linfo.link.s.status) {
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++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700760 iq = lio->linfo.txpciq[q %
761 (lio->linfo.num_txpciq)].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700762 if (octnet_iq_is_full(lio->oct_dev, iq))
763 continue;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700764 if (__netif_subqueue_stopped(lio->netdev, q)) {
765 wake_q(lio->netdev, q);
766 ret_val++;
767 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700768 }
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/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700798 * \brief Delete gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700799 * @param lio per-network private data
800 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700801static void delete_glists(struct lio *lio)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700802{
803 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700804 int i;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700805
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700806 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);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700829}
830
831/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700832 * \brief Setup gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700833 * @param lio per-network private data
834 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700835static int setup_glists(struct octeon_device *oct, struct lio *lio, int num_iqs)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700836{
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700837 int i, j;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700838 struct octnic_gather *g;
839
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700840 lio->glist_lock = kcalloc(num_iqs, sizeof(*lio->glist_lock),
841 GFP_KERNEL);
842 if (!lio->glist_lock)
843 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700844
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700845 lio->glist = kcalloc(num_iqs, sizeof(*lio->glist),
846 GFP_KERNEL);
847 if (!lio->glist) {
848 kfree((void *)lio->glist_lock);
849 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700850 }
851
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700852 for (i = 0; i < num_iqs; i++) {
853 int numa_node = cpu_to_node(i % num_online_cpus());
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700854
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700855 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]);
899 }
900
901 if (j != lio->tx_qsize) {
902 delete_glists(lio);
903 return 1;
904 }
905 }
906
907 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700908}
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
921 if (linfo->link.s.status) {
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);
943
944 if ((lio->intf_open) && (lio->linfo.link.u64 != ls->u64)) {
945 lio->linfo.link.u64 = ls->u64;
946
947 print_link_info(netdev);
948
949 if (lio->linfo.link.s.status) {
950 netif_carrier_on(netdev);
951 /* start_txq(netdev); */
952 txqs_wake(netdev);
953 } else {
954 netif_carrier_off(netdev);
955 stop_txq(netdev);
956 }
957 }
958}
959
960/**
961 * \brief Droq packet processor sceduler
962 * @param oct octeon device
963 */
964static
965void liquidio_schedule_droq_pkt_handlers(struct octeon_device *oct)
966{
967 struct octeon_device_priv *oct_priv =
968 (struct octeon_device_priv *)oct->priv;
969 u64 oq_no;
970 struct octeon_droq *droq;
971
972 if (oct->int_status & OCT_DEV_INTR_PKT_DATA) {
973 for (oq_no = 0; oq_no < MAX_OCTEON_OUTPUT_QUEUES; oq_no++) {
974 if (!(oct->droq_intr & (1 << oq_no)))
975 continue;
976
977 droq = oct->droq[oq_no];
978
979 if (droq->ops.poll_mode) {
980 droq->ops.napi_fn(droq);
981 oct_priv->napi_mask |= (1 << oq_no);
982 } else {
983 tasklet_schedule(&oct_priv->droq_tasklet);
984 }
985 }
986 }
987}
988
989/**
990 * \brief Interrupt handler for octeon
991 * @param irq unused
992 * @param dev octeon device
993 */
994static
995irqreturn_t liquidio_intr_handler(int irq __attribute__((unused)), void *dev)
996{
997 struct octeon_device *oct = (struct octeon_device *)dev;
998 irqreturn_t ret;
999
1000 /* Disable our interrupts for the duration of ISR */
1001 oct->fn_list.disable_interrupt(oct->chip);
1002
1003 ret = oct->fn_list.process_interrupt_regs(oct);
1004
1005 if (ret == IRQ_HANDLED)
1006 liquidio_schedule_droq_pkt_handlers(oct);
1007
1008 /* Re-enable our interrupts */
1009 if (!(atomic_read(&oct->status) == OCT_DEV_IN_RESET))
1010 oct->fn_list.enable_interrupt(oct->chip);
1011
1012 return ret;
1013}
1014
1015/**
1016 * \brief Setup interrupt for octeon device
1017 * @param oct octeon device
1018 *
1019 * Enable interrupt in Octeon device as given in the PCI interrupt mask.
1020 */
1021static int octeon_setup_interrupt(struct octeon_device *oct)
1022{
1023 int irqret, err;
1024
1025 err = pci_enable_msi(oct->pci_dev);
1026 if (err)
1027 dev_warn(&oct->pci_dev->dev, "Reverting to legacy interrupts. Error: %d\n",
1028 err);
1029 else
1030 oct->flags |= LIO_FLAG_MSI_ENABLED;
1031
1032 irqret = request_irq(oct->pci_dev->irq, liquidio_intr_handler,
1033 IRQF_SHARED, "octeon", oct);
1034 if (irqret) {
1035 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1036 pci_disable_msi(oct->pci_dev);
1037 dev_err(&oct->pci_dev->dev, "Request IRQ failed with code: %d\n",
1038 irqret);
1039 return 1;
1040 }
1041
1042 return 0;
1043}
1044
1045/**
1046 * \brief PCI probe handler
1047 * @param pdev PCI device structure
1048 * @param ent unused
1049 */
1050static int liquidio_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1051{
1052 struct octeon_device *oct_dev = NULL;
1053 struct handshake *hs;
1054
1055 oct_dev = octeon_allocate_device(pdev->device,
1056 sizeof(struct octeon_device_priv));
1057 if (!oct_dev) {
1058 dev_err(&pdev->dev, "Unable to allocate device\n");
1059 return -ENOMEM;
1060 }
1061
1062 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
1063 (u32)pdev->vendor, (u32)pdev->device);
1064
1065 /* Assign octeon_device for this device to the private data area. */
1066 pci_set_drvdata(pdev, oct_dev);
1067
1068 /* set linux specific device pointer */
1069 oct_dev->pci_dev = (void *)pdev;
1070
1071 hs = &handshake[oct_dev->octeon_id];
1072 init_completion(&hs->init);
1073 init_completion(&hs->started);
1074 hs->pci_dev = pdev;
1075
1076 if (oct_dev->octeon_id == 0)
1077 /* first LiquidIO NIC is detected */
1078 complete(&first_stage);
1079
1080 if (octeon_device_init(oct_dev)) {
1081 liquidio_remove(pdev);
1082 return -ENOMEM;
1083 }
1084
1085 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
1086
1087 return 0;
1088}
1089
1090/**
1091 *\brief Destroy resources associated with octeon device
1092 * @param pdev PCI device structure
1093 * @param ent unused
1094 */
1095static void octeon_destroy_resources(struct octeon_device *oct)
1096{
1097 int i;
1098 struct octeon_device_priv *oct_priv =
1099 (struct octeon_device_priv *)oct->priv;
1100
1101 struct handshake *hs;
1102
1103 switch (atomic_read(&oct->status)) {
1104 case OCT_DEV_RUNNING:
1105 case OCT_DEV_CORE_OK:
1106
1107 /* No more instructions will be forwarded. */
1108 atomic_set(&oct->status, OCT_DEV_IN_RESET);
1109
1110 oct->app_mode = CVM_DRV_INVALID_APP;
1111 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
1112 lio_get_state_string(&oct->status));
1113
1114 schedule_timeout_uninterruptible(HZ / 10);
1115
1116 /* fallthrough */
1117 case OCT_DEV_HOST_OK:
1118
1119 /* fallthrough */
1120 case OCT_DEV_CONSOLE_INIT_DONE:
1121 /* Remove any consoles */
1122 octeon_remove_consoles(oct);
1123
1124 /* fallthrough */
1125 case OCT_DEV_IO_QUEUES_DONE:
1126 if (wait_for_pending_requests(oct))
1127 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
1128
1129 if (lio_wait_for_instr_fetch(oct))
1130 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
1131
1132 /* Disable the input and output queues now. No more packets will
1133 * arrive from Octeon, but we should wait for all packet
1134 * processing to finish.
1135 */
1136 oct->fn_list.disable_io_queues(oct);
1137
1138 if (lio_wait_for_oq_pkts(oct))
1139 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1140
1141 /* Disable interrupts */
1142 oct->fn_list.disable_interrupt(oct->chip);
1143
1144 /* Release the interrupt line */
1145 free_irq(oct->pci_dev->irq, oct);
1146
1147 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1148 pci_disable_msi(oct->pci_dev);
1149
1150 /* Soft reset the octeon device before exiting */
1151 oct->fn_list.soft_reset(oct);
1152
1153 /* Disable the device, releasing the PCI INT */
1154 pci_disable_device(oct->pci_dev);
1155
1156 /* fallthrough */
1157 case OCT_DEV_IN_RESET:
1158 case OCT_DEV_DROQ_INIT_DONE:
1159 /*atomic_set(&oct->status, OCT_DEV_DROQ_INIT_DONE);*/
1160 mdelay(100);
1161 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES; i++) {
1162 if (!(oct->io_qmask.oq & (1UL << i)))
1163 continue;
1164 octeon_delete_droq(oct, i);
1165 }
1166
1167 /* Force any pending handshakes to complete */
1168 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1169 hs = &handshake[i];
1170
1171 if (hs->pci_dev) {
1172 handshake[oct->octeon_id].init_ok = 0;
1173 complete(&handshake[oct->octeon_id].init);
1174 handshake[oct->octeon_id].started_ok = 0;
1175 complete(&handshake[oct->octeon_id].started);
1176 }
1177 }
1178
1179 /* fallthrough */
1180 case OCT_DEV_RESP_LIST_INIT_DONE:
1181 octeon_delete_response_list(oct);
1182
1183 /* fallthrough */
1184 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1185 octeon_free_sc_buffer_pool(oct);
1186
1187 /* fallthrough */
1188 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
1189 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES; i++) {
1190 if (!(oct->io_qmask.iq & (1UL << i)))
1191 continue;
1192 octeon_delete_instr_queue(oct, i);
1193 }
1194
1195 /* fallthrough */
1196 case OCT_DEV_DISPATCH_INIT_DONE:
1197 octeon_delete_dispatch_list(oct);
1198 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1199
1200 /* fallthrough */
1201 case OCT_DEV_PCI_MAP_DONE:
1202 octeon_unmap_pci_barx(oct, 0);
1203 octeon_unmap_pci_barx(oct, 1);
1204
1205 /* fallthrough */
1206 case OCT_DEV_BEGIN_STATE:
1207 /* Nothing to be done here either */
1208 break;
1209 } /* end switch(oct->status) */
1210
1211 tasklet_kill(&oct_priv->droq_tasklet);
1212}
1213
1214/**
1215 * \brief Send Rx control command
1216 * @param lio per-network private data
1217 * @param start_stop whether to start or stop
1218 */
1219static void send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1220{
1221 struct octnic_ctrl_pkt nctrl;
1222 struct octnic_ctrl_params nparams;
1223
1224 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
1225
1226 nctrl.ncmd.s.cmd = OCTNET_CMD_RX_CTL;
1227 nctrl.ncmd.s.param1 = lio->linfo.ifidx;
1228 nctrl.ncmd.s.param2 = start_stop;
1229 nctrl.netpndev = (u64)lio->netdev;
1230
1231 nparams.resp_order = OCTEON_RESP_NORESPONSE;
1232
1233 if (octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl, nparams) < 0)
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
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001268 delete_glists(lio);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001269
1270 free_netdev(netdev);
1271
1272 oct->props[ifidx].netdev = NULL;
1273}
1274
1275/**
1276 * \brief Stop complete NIC functionality
1277 * @param oct octeon device
1278 */
1279static int liquidio_stop_nic_module(struct octeon_device *oct)
1280{
1281 int i, j;
1282 struct lio *lio;
1283
1284 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1285 if (!oct->ifcount) {
1286 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1287 return 1;
1288 }
1289
1290 for (i = 0; i < oct->ifcount; i++) {
1291 lio = GET_LIO(oct->props[i].netdev);
1292 for (j = 0; j < lio->linfo.num_rxpciq; j++)
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001293 octeon_unregister_droq_ops(oct,
1294 lio->linfo.rxpciq[j].s.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001295 }
1296
1297 for (i = 0; i < oct->ifcount; i++)
1298 liquidio_destroy_nic_device(oct, i);
1299
1300 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1301 return 0;
1302}
1303
1304/**
1305 * \brief Cleans up resources at unload time
1306 * @param pdev PCI device structure
1307 */
1308static void liquidio_remove(struct pci_dev *pdev)
1309{
1310 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1311
1312 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1313
1314 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1315 liquidio_stop_nic_module(oct_dev);
1316
1317 /* Reset the octeon device and cleanup all memory allocated for
1318 * the octeon device by driver.
1319 */
1320 octeon_destroy_resources(oct_dev);
1321
1322 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1323
1324 /* This octeon device has been removed. Update the global
1325 * data structure to reflect this. Free the device structure.
1326 */
1327 octeon_free_device_mem(oct_dev);
1328}
1329
1330/**
1331 * \brief Identify the Octeon device and to map the BAR address space
1332 * @param oct octeon device
1333 */
1334static int octeon_chip_specific_setup(struct octeon_device *oct)
1335{
1336 u32 dev_id, rev_id;
1337 int ret = 1;
1338
1339 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1340 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1341 oct->rev_id = rev_id & 0xff;
1342
1343 switch (dev_id) {
1344 case OCTEON_CN68XX_PCIID:
1345 oct->chip_id = OCTEON_CN68XX;
1346 ret = lio_setup_cn68xx_octeon_device(oct);
1347 break;
1348
1349 case OCTEON_CN66XX_PCIID:
1350 oct->chip_id = OCTEON_CN66XX;
1351 ret = lio_setup_cn66xx_octeon_device(oct);
1352 break;
1353 default:
1354 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1355 dev_id);
1356 }
1357
1358 if (!ret)
1359 dev_info(&oct->pci_dev->dev, "CN68XX PASS%d.%d %s\n",
1360 OCTEON_MAJOR_REV(oct),
1361 OCTEON_MINOR_REV(oct),
1362 octeon_get_conf(oct)->card_name);
1363
1364 return ret;
1365}
1366
1367/**
1368 * \brief PCI initialization for each Octeon device.
1369 * @param oct octeon device
1370 */
1371static int octeon_pci_os_setup(struct octeon_device *oct)
1372{
1373 /* setup PCI stuff first */
1374 if (pci_enable_device(oct->pci_dev)) {
1375 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1376 return 1;
1377 }
1378
1379 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1380 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
1381 return 1;
1382 }
1383
1384 /* Enable PCI DMA Master. */
1385 pci_set_master(oct->pci_dev);
1386
1387 return 0;
1388}
1389
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001390static inline int skb_iq(struct lio *lio, struct sk_buff *skb)
1391{
1392 int q = 0;
1393
1394 if (netif_is_multiqueue(lio->netdev))
1395 q = skb->queue_mapping % lio->linfo.num_txpciq;
1396
1397 return q;
1398}
1399
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001400/**
1401 * \brief Check Tx queue state for a given network buffer
1402 * @param lio per-network private data
1403 * @param skb network buffer
1404 */
1405static inline int check_txq_state(struct lio *lio, struct sk_buff *skb)
1406{
1407 int q = 0, iq = 0;
1408
1409 if (netif_is_multiqueue(lio->netdev)) {
1410 q = skb->queue_mapping;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001411 iq = lio->linfo.txpciq[(q % (lio->linfo.num_txpciq))].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001412 } else {
1413 iq = lio->txq;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001414 q = iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001415 }
1416
1417 if (octnet_iq_is_full(lio->oct_dev, iq))
1418 return 0;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001419
1420 if (__netif_subqueue_stopped(lio->netdev, q))
1421 wake_q(lio->netdev, q);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001422 return 1;
1423}
1424
1425/**
1426 * \brief Unmap and free network buffer
1427 * @param buf buffer
1428 */
1429static void free_netbuf(void *buf)
1430{
1431 struct sk_buff *skb;
1432 struct octnet_buf_free_info *finfo;
1433 struct lio *lio;
1434
1435 finfo = (struct octnet_buf_free_info *)buf;
1436 skb = finfo->skb;
1437 lio = finfo->lio;
1438
1439 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1440 DMA_TO_DEVICE);
1441
1442 check_txq_state(lio, skb);
1443
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001444 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001445}
1446
1447/**
1448 * \brief Unmap and free gather buffer
1449 * @param buf buffer
1450 */
1451static void free_netsgbuf(void *buf)
1452{
1453 struct octnet_buf_free_info *finfo;
1454 struct sk_buff *skb;
1455 struct lio *lio;
1456 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001457 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001458
1459 finfo = (struct octnet_buf_free_info *)buf;
1460 skb = finfo->skb;
1461 lio = finfo->lio;
1462 g = finfo->g;
1463 frags = skb_shinfo(skb)->nr_frags;
1464
1465 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1466 g->sg[0].ptr[0], (skb->len - skb->data_len),
1467 DMA_TO_DEVICE);
1468
1469 i = 1;
1470 while (frags--) {
1471 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1472
1473 pci_unmap_page((lio->oct_dev)->pci_dev,
1474 g->sg[(i >> 2)].ptr[(i & 3)],
1475 frag->size, DMA_TO_DEVICE);
1476 i++;
1477 }
1478
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001479 dma_sync_single_for_cpu(&lio->oct_dev->pci_dev->dev,
1480 g->sg_dma_ptr, g->sg_size, DMA_TO_DEVICE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001481
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001482 iq = skb_iq(lio, skb);
1483 spin_lock(&lio->glist_lock[iq]);
1484 list_add_tail(&g->list, &lio->glist[iq]);
1485 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001486
1487 check_txq_state(lio, skb); /* mq support: sub-queue state check */
1488
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001489 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001490}
1491
1492/**
1493 * \brief Unmap and free gather buffer with response
1494 * @param buf buffer
1495 */
1496static void free_netsgbuf_with_resp(void *buf)
1497{
1498 struct octeon_soft_command *sc;
1499 struct octnet_buf_free_info *finfo;
1500 struct sk_buff *skb;
1501 struct lio *lio;
1502 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001503 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001504
1505 sc = (struct octeon_soft_command *)buf;
1506 skb = (struct sk_buff *)sc->callback_arg;
1507 finfo = (struct octnet_buf_free_info *)&skb->cb;
1508
1509 lio = finfo->lio;
1510 g = finfo->g;
1511 frags = skb_shinfo(skb)->nr_frags;
1512
1513 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1514 g->sg[0].ptr[0], (skb->len - skb->data_len),
1515 DMA_TO_DEVICE);
1516
1517 i = 1;
1518 while (frags--) {
1519 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1520
1521 pci_unmap_page((lio->oct_dev)->pci_dev,
1522 g->sg[(i >> 2)].ptr[(i & 3)],
1523 frag->size, DMA_TO_DEVICE);
1524 i++;
1525 }
1526
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001527 dma_sync_single_for_cpu(&lio->oct_dev->pci_dev->dev,
1528 g->sg_dma_ptr, g->sg_size, DMA_TO_DEVICE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001529
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001530 iq = skb_iq(lio, skb);
1531
1532 spin_lock(&lio->glist_lock[iq]);
1533 list_add_tail(&g->list, &lio->glist[iq]);
1534 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001535
1536 /* Don't free the skb yet */
1537
1538 check_txq_state(lio, skb);
1539}
1540
1541/**
1542 * \brief Adjust ptp frequency
1543 * @param ptp PTP clock info
1544 * @param ppb how much to adjust by, in parts-per-billion
1545 */
1546static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
1547{
1548 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1549 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1550 u64 comp, delta;
1551 unsigned long flags;
1552 bool neg_adj = false;
1553
1554 if (ppb < 0) {
1555 neg_adj = true;
1556 ppb = -ppb;
1557 }
1558
1559 /* The hardware adds the clock compensation value to the
1560 * PTP clock on every coprocessor clock cycle, so we
1561 * compute the delta in terms of coprocessor clocks.
1562 */
1563 delta = (u64)ppb << 32;
1564 do_div(delta, oct->coproc_clock_rate);
1565
1566 spin_lock_irqsave(&lio->ptp_lock, flags);
1567 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
1568 if (neg_adj)
1569 comp -= delta;
1570 else
1571 comp += delta;
1572 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1573 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1574
1575 return 0;
1576}
1577
1578/**
1579 * \brief Adjust ptp time
1580 * @param ptp PTP clock info
1581 * @param delta how much to adjust by, in nanosecs
1582 */
1583static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
1584{
1585 unsigned long flags;
1586 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1587
1588 spin_lock_irqsave(&lio->ptp_lock, flags);
1589 lio->ptp_adjust += delta;
1590 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1591
1592 return 0;
1593}
1594
1595/**
1596 * \brief Get hardware clock time, including any adjustment
1597 * @param ptp PTP clock info
1598 * @param ts timespec
1599 */
1600static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
1601 struct timespec64 *ts)
1602{
1603 u64 ns;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001604 unsigned long flags;
1605 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1606 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1607
1608 spin_lock_irqsave(&lio->ptp_lock, flags);
1609 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
1610 ns += lio->ptp_adjust;
1611 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1612
Kefeng Wang286af312016-01-27 17:34:37 +08001613 *ts = ns_to_timespec64(ns);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001614
1615 return 0;
1616}
1617
1618/**
1619 * \brief Set hardware clock time. Reset adjustment
1620 * @param ptp PTP clock info
1621 * @param ts timespec
1622 */
1623static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
1624 const struct timespec64 *ts)
1625{
1626 u64 ns;
1627 unsigned long flags;
1628 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1629 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1630
1631 ns = timespec_to_ns(ts);
1632
1633 spin_lock_irqsave(&lio->ptp_lock, flags);
1634 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
1635 lio->ptp_adjust = 0;
1636 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1637
1638 return 0;
1639}
1640
1641/**
1642 * \brief Check if PTP is enabled
1643 * @param ptp PTP clock info
1644 * @param rq request
1645 * @param on is it on
1646 */
1647static int liquidio_ptp_enable(struct ptp_clock_info *ptp,
1648 struct ptp_clock_request *rq, int on)
1649{
1650 return -EOPNOTSUPP;
1651}
1652
1653/**
1654 * \brief Open PTP clock source
1655 * @param netdev network device
1656 */
1657static void oct_ptp_open(struct net_device *netdev)
1658{
1659 struct lio *lio = GET_LIO(netdev);
1660 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1661
1662 spin_lock_init(&lio->ptp_lock);
1663
1664 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
1665 lio->ptp_info.owner = THIS_MODULE;
1666 lio->ptp_info.max_adj = 250000000;
1667 lio->ptp_info.n_alarm = 0;
1668 lio->ptp_info.n_ext_ts = 0;
1669 lio->ptp_info.n_per_out = 0;
1670 lio->ptp_info.pps = 0;
1671 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
1672 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
1673 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
1674 lio->ptp_info.settime64 = liquidio_ptp_settime;
1675 lio->ptp_info.enable = liquidio_ptp_enable;
1676
1677 lio->ptp_adjust = 0;
1678
1679 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
1680 &oct->pci_dev->dev);
1681
1682 if (IS_ERR(lio->ptp_clock))
1683 lio->ptp_clock = NULL;
1684}
1685
1686/**
1687 * \brief Init PTP clock
1688 * @param oct octeon device
1689 */
1690static void liquidio_ptp_init(struct octeon_device *oct)
1691{
1692 u64 clock_comp, cfg;
1693
1694 clock_comp = (u64)NSEC_PER_SEC << 32;
1695 do_div(clock_comp, oct->coproc_clock_rate);
1696 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1697
1698 /* Enable */
1699 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
1700 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
1701}
1702
1703/**
1704 * \brief Load firmware to device
1705 * @param oct octeon device
1706 *
1707 * Maps device to firmware filename, requests firmware, and downloads it
1708 */
1709static int load_firmware(struct octeon_device *oct)
1710{
1711 int ret = 0;
1712 const struct firmware *fw;
1713 char fw_name[LIO_MAX_FW_FILENAME_LEN];
1714 char *tmp_fw_type;
1715
1716 if (strncmp(fw_type, LIO_FW_NAME_TYPE_NONE,
1717 sizeof(LIO_FW_NAME_TYPE_NONE)) == 0) {
1718 dev_info(&oct->pci_dev->dev, "Skipping firmware load\n");
1719 return ret;
1720 }
1721
1722 if (fw_type[0] == '\0')
1723 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
1724 else
1725 tmp_fw_type = fw_type;
1726
1727 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
1728 octeon_get_conf(oct)->card_name, tmp_fw_type,
1729 LIO_FW_NAME_SUFFIX);
1730
1731 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
1732 if (ret) {
1733 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n.",
1734 fw_name);
1735 return ret;
1736 }
1737
1738 ret = octeon_download_firmware(oct, fw->data, fw->size);
1739
1740 release_firmware(fw);
1741
1742 return ret;
1743}
1744
1745/**
1746 * \brief Setup output queue
1747 * @param oct octeon device
1748 * @param q_no which queue
1749 * @param num_descs how many descriptors
1750 * @param desc_size size of each descriptor
1751 * @param app_ctx application context
1752 */
1753static int octeon_setup_droq(struct octeon_device *oct, int q_no, int num_descs,
1754 int desc_size, void *app_ctx)
1755{
1756 int ret_val = 0;
1757
1758 dev_dbg(&oct->pci_dev->dev, "Creating Droq: %d\n", q_no);
1759 /* droq creation and local register settings. */
1760 ret_val = octeon_create_droq(oct, q_no, num_descs, desc_size, app_ctx);
Amitoj Kaur Chawla08a965e2016-02-04 19:25:13 +05301761 if (ret_val < 0)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001762 return ret_val;
1763
1764 if (ret_val == 1) {
1765 dev_dbg(&oct->pci_dev->dev, "Using default droq %d\n", q_no);
1766 return 0;
1767 }
1768 /* tasklet creation for the droq */
1769
1770 /* Enable the droq queues */
1771 octeon_set_droq_pkt_op(oct, q_no, 1);
1772
1773 /* Send Credit for Octeon Output queues. Credits are always
1774 * sent after the output queue is enabled.
1775 */
1776 writel(oct->droq[q_no]->max_count,
1777 oct->droq[q_no]->pkts_credit_reg);
1778
1779 return ret_val;
1780}
1781
1782/**
1783 * \brief Callback for getting interface configuration
1784 * @param status status of request
1785 * @param buf pointer to resp structure
1786 */
1787static void if_cfg_callback(struct octeon_device *oct,
1788 u32 status,
1789 void *buf)
1790{
1791 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1792 struct liquidio_if_cfg_resp *resp;
1793 struct liquidio_if_cfg_context *ctx;
1794
1795 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
1796 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
1797
1798 oct = lio_get_device(ctx->octeon_id);
1799 if (resp->status)
1800 dev_err(&oct->pci_dev->dev, "nic if cfg instruction failed. Status: %llx\n",
1801 CVM_CAST64(resp->status));
1802 ACCESS_ONCE(ctx->cond) = 1;
1803
1804 /* This barrier is required to be sure that the response has been
1805 * written fully before waking up the handler
1806 */
1807 wmb();
1808
1809 wake_up_interruptible(&ctx->wc);
1810}
1811
1812/**
1813 * \brief Select queue based on hash
1814 * @param dev Net device
1815 * @param skb sk_buff structure
1816 * @returns selected queue number
1817 */
1818static u16 select_q(struct net_device *dev, struct sk_buff *skb,
1819 void *accel_priv, select_queue_fallback_t fallback)
1820{
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001821 u32 qindex = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001822 struct lio *lio;
1823
1824 lio = GET_LIO(dev);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001825 qindex = skb_tx_hash(dev, skb);
1826
1827 return (u16)(qindex % (lio->linfo.num_txpciq));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001828}
1829
1830/** Routine to push packets arriving on Octeon interface upto network layer.
1831 * @param oct_id - octeon device id.
1832 * @param skbuff - skbuff struct to be passed to network layer.
1833 * @param len - size of total data received.
1834 * @param rh - Control header associated with the packet
1835 * @param param - additional control data with the packet
1836 */
1837static void
1838liquidio_push_packet(u32 octeon_id,
1839 void *skbuff,
1840 u32 len,
1841 union octeon_rh *rh,
1842 void *param)
1843{
1844 struct napi_struct *napi = param;
1845 struct octeon_device *oct = lio_get_device(octeon_id);
1846 struct sk_buff *skb = (struct sk_buff *)skbuff;
1847 struct skb_shared_hwtstamps *shhwtstamps;
1848 u64 ns;
1849 struct net_device *netdev =
1850 (struct net_device *)oct->props[rh->r_dh.link].netdev;
1851 struct octeon_droq *droq = container_of(param, struct octeon_droq,
1852 napi);
1853 if (netdev) {
1854 int packet_was_received;
1855 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07001856 struct octeon_device *oct = lio->oct_dev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001857
1858 /* Do not proceed if the interface is not in RUNNING state. */
1859 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING)) {
1860 recv_buffer_free(skb);
1861 droq->stats.rx_dropped++;
1862 return;
1863 }
1864
1865 skb->dev = netdev;
1866
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001867 skb_record_rx_queue(skb, droq->q_no);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001868 if (likely(len > MIN_SKB_SIZE)) {
1869 struct octeon_skb_page_info *pg_info;
1870 unsigned char *va;
1871
1872 pg_info = ((struct octeon_skb_page_info *)(skb->cb));
1873 if (pg_info->page) {
1874 /* For Paged allocation use the frags */
1875 va = page_address(pg_info->page) +
1876 pg_info->page_offset;
1877 memcpy(skb->data, va, MIN_SKB_SIZE);
1878 skb_put(skb, MIN_SKB_SIZE);
1879 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
1880 pg_info->page,
1881 pg_info->page_offset +
1882 MIN_SKB_SIZE,
1883 len - MIN_SKB_SIZE,
1884 LIO_RXBUFFER_SZ);
1885 }
1886 } else {
1887 struct octeon_skb_page_info *pg_info =
1888 ((struct octeon_skb_page_info *)(skb->cb));
1889 skb_copy_to_linear_data(skb, page_address(pg_info->page)
1890 + pg_info->page_offset, len);
1891 skb_put(skb, len);
1892 put_page(pg_info->page);
1893 }
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001894
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07001895 if (((oct->chip_id == OCTEON_CN66XX) ||
1896 (oct->chip_id == OCTEON_CN68XX)) &&
1897 ptp_enable) {
1898 if (rh->r_dh.has_hwtstamp) {
1899 /* timestamp is included from the hardware at
1900 * the beginning of the packet.
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001901 */
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07001902 if (ifstate_check
1903 (lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED)) {
1904 /* Nanoseconds are in the first 64-bits
1905 * of the packet.
1906 */
1907 memcpy(&ns, (skb->data), sizeof(ns));
1908 shhwtstamps = skb_hwtstamps(skb);
1909 shhwtstamps->hwtstamp =
1910 ns_to_ktime(ns +
1911 lio->ptp_adjust);
1912 }
1913 skb_pull(skb, sizeof(ns));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001914 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001915 }
1916
1917 skb->protocol = eth_type_trans(skb, skb->dev);
1918
1919 if ((netdev->features & NETIF_F_RXCSUM) &&
1920 (rh->r_dh.csum_verified == CNNIC_CSUM_VERIFIED))
1921 /* checksum has already been verified */
1922 skb->ip_summed = CHECKSUM_UNNECESSARY;
1923 else
1924 skb->ip_summed = CHECKSUM_NONE;
1925
1926 packet_was_received = napi_gro_receive(napi, skb) != GRO_DROP;
1927
1928 if (packet_was_received) {
1929 droq->stats.rx_bytes_received += len;
1930 droq->stats.rx_pkts_received++;
1931 netdev->last_rx = jiffies;
1932 } else {
1933 droq->stats.rx_dropped++;
1934 netif_info(lio, rx_err, lio->netdev,
1935 "droq:%d error rx_dropped:%llu\n",
1936 droq->q_no, droq->stats.rx_dropped);
1937 }
1938
1939 } else {
1940 recv_buffer_free(skb);
1941 }
1942}
1943
1944/**
1945 * \brief wrapper for calling napi_schedule
1946 * @param param parameters to pass to napi_schedule
1947 *
1948 * Used when scheduling on different CPUs
1949 */
1950static void napi_schedule_wrapper(void *param)
1951{
1952 struct napi_struct *napi = param;
1953
1954 napi_schedule(napi);
1955}
1956
1957/**
1958 * \brief callback when receive interrupt occurs and we are in NAPI mode
1959 * @param arg pointer to octeon output queue
1960 */
1961static void liquidio_napi_drv_callback(void *arg)
1962{
1963 struct octeon_droq *droq = arg;
1964 int this_cpu = smp_processor_id();
1965
1966 if (droq->cpu_id == this_cpu) {
1967 napi_schedule(&droq->napi);
1968 } else {
1969 struct call_single_data *csd = &droq->csd;
1970
1971 csd->func = napi_schedule_wrapper;
1972 csd->info = &droq->napi;
1973 csd->flags = 0;
1974
1975 smp_call_function_single_async(droq->cpu_id, csd);
1976 }
1977}
1978
1979/**
1980 * \brief Main NAPI poll function
1981 * @param droq octeon output queue
1982 * @param budget maximum number of items to process
1983 */
1984static int liquidio_napi_do_rx(struct octeon_droq *droq, int budget)
1985{
1986 int work_done;
1987 struct lio *lio = GET_LIO(droq->napi.dev);
1988 struct octeon_device *oct = lio->oct_dev;
1989
1990 work_done = octeon_process_droq_poll_cmd(oct, droq->q_no,
1991 POLL_EVENT_PROCESS_PKTS,
1992 budget);
1993 if (work_done < 0) {
1994 netif_info(lio, rx_err, lio->netdev,
1995 "Receive work_done < 0, rxq:%d\n", droq->q_no);
1996 goto octnet_napi_finish;
1997 }
1998
1999 if (work_done > budget)
2000 dev_err(&oct->pci_dev->dev, ">>>> %s work_done: %d budget: %d\n",
2001 __func__, work_done, budget);
2002
2003 return work_done;
2004
2005octnet_napi_finish:
2006 napi_complete(&droq->napi);
2007 octeon_process_droq_poll_cmd(oct, droq->q_no, POLL_EVENT_ENABLE_INTR,
2008 0);
2009 return 0;
2010}
2011
2012/**
2013 * \brief Entry point for NAPI polling
2014 * @param napi NAPI structure
2015 * @param budget maximum number of items to process
2016 */
2017static int liquidio_napi_poll(struct napi_struct *napi, int budget)
2018{
2019 struct octeon_droq *droq;
2020 int work_done;
2021
2022 droq = container_of(napi, struct octeon_droq, napi);
2023
2024 work_done = liquidio_napi_do_rx(droq, budget);
2025
2026 if (work_done < budget) {
2027 napi_complete(napi);
2028 octeon_process_droq_poll_cmd(droq->oct_dev, droq->q_no,
2029 POLL_EVENT_ENABLE_INTR, 0);
2030 return 0;
2031 }
2032
2033 return work_done;
2034}
2035
2036/**
2037 * \brief Setup input and output queues
2038 * @param octeon_dev octeon device
2039 * @param net_device Net device
2040 *
2041 * Note: Queues are with respect to the octeon device. Thus
2042 * an input queue is for egress packets, and output queues
2043 * are for ingress packets.
2044 */
2045static inline int setup_io_queues(struct octeon_device *octeon_dev,
2046 struct net_device *net_device)
2047{
2048 static int first_time = 1;
2049 static struct octeon_droq_ops droq_ops;
2050 static int cpu_id;
2051 static int cpu_id_modulus;
2052 struct octeon_droq *droq;
2053 struct napi_struct *napi;
2054 int q, q_no, retval = 0;
2055 struct lio *lio;
2056 int num_tx_descs;
2057
2058 lio = GET_LIO(net_device);
2059 if (first_time) {
2060 first_time = 0;
2061 memset(&droq_ops, 0, sizeof(struct octeon_droq_ops));
2062
2063 droq_ops.fptr = liquidio_push_packet;
2064
2065 droq_ops.poll_mode = 1;
2066 droq_ops.napi_fn = liquidio_napi_drv_callback;
2067 cpu_id = 0;
2068 cpu_id_modulus = num_present_cpus();
2069 }
2070
2071 /* set up DROQs. */
2072 for (q = 0; q < lio->linfo.num_rxpciq; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002073 q_no = lio->linfo.rxpciq[q].s.q_no;
2074 dev_dbg(&octeon_dev->pci_dev->dev,
2075 "setup_io_queues index:%d linfo.rxpciq.s.q_no:%d\n",
2076 q, q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002077 retval = octeon_setup_droq(octeon_dev, q_no,
2078 CFG_GET_NUM_RX_DESCS_NIC_IF
2079 (octeon_get_conf(octeon_dev),
2080 lio->ifidx),
2081 CFG_GET_NUM_RX_BUF_SIZE_NIC_IF
2082 (octeon_get_conf(octeon_dev),
2083 lio->ifidx), NULL);
2084 if (retval) {
2085 dev_err(&octeon_dev->pci_dev->dev,
2086 " %s : Runtime DROQ(RxQ) creation failed.\n",
2087 __func__);
2088 return 1;
2089 }
2090
2091 droq = octeon_dev->droq[q_no];
2092 napi = &droq->napi;
2093 netif_napi_add(net_device, napi, liquidio_napi_poll, 64);
2094
2095 /* designate a CPU for this droq */
2096 droq->cpu_id = cpu_id;
2097 cpu_id++;
2098 if (cpu_id >= cpu_id_modulus)
2099 cpu_id = 0;
2100
2101 octeon_register_droq_ops(octeon_dev, q_no, &droq_ops);
2102 }
2103
2104 /* set up IQs. */
2105 for (q = 0; q < lio->linfo.num_txpciq; q++) {
2106 num_tx_descs = CFG_GET_NUM_TX_DESCS_NIC_IF(octeon_get_conf
2107 (octeon_dev),
2108 lio->ifidx);
2109 retval = octeon_setup_iq(octeon_dev, lio->linfo.txpciq[q],
2110 num_tx_descs,
2111 netdev_get_tx_queue(net_device, q));
2112 if (retval) {
2113 dev_err(&octeon_dev->pci_dev->dev,
2114 " %s : Runtime IQ(TxQ) creation failed.\n",
2115 __func__);
2116 return 1;
2117 }
2118 }
2119
2120 return 0;
2121}
2122
2123/**
2124 * \brief Poll routine for checking transmit queue status
2125 * @param work work_struct data structure
2126 */
2127static void octnet_poll_check_txq_status(struct work_struct *work)
2128{
2129 struct cavium_wk *wk = (struct cavium_wk *)work;
2130 struct lio *lio = (struct lio *)wk->ctxptr;
2131
2132 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
2133 return;
2134
2135 check_txq_status(lio);
2136 queue_delayed_work(lio->txq_status_wq.wq,
2137 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2138}
2139
2140/**
2141 * \brief Sets up the txq poll check
2142 * @param netdev network device
2143 */
2144static inline void setup_tx_poll_fn(struct net_device *netdev)
2145{
2146 struct lio *lio = GET_LIO(netdev);
2147 struct octeon_device *oct = lio->oct_dev;
2148
Bhaktipriya Shridhar292b9da2016-06-08 01:47:59 +05302149 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
2150 WQ_MEM_RECLAIM, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002151 if (!lio->txq_status_wq.wq) {
2152 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
2153 return;
2154 }
2155 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
2156 octnet_poll_check_txq_status);
2157 lio->txq_status_wq.wk.ctxptr = lio;
2158 queue_delayed_work(lio->txq_status_wq.wq,
2159 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2160}
2161
2162/**
2163 * \brief Net device open for LiquidIO
2164 * @param netdev network device
2165 */
2166static int liquidio_open(struct net_device *netdev)
2167{
2168 struct lio *lio = GET_LIO(netdev);
2169 struct octeon_device *oct = lio->oct_dev;
2170 struct napi_struct *napi, *n;
2171
2172 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2173 napi_enable(napi);
2174
2175 oct_ptp_open(netdev);
2176
2177 ifstate_set(lio, LIO_IFSTATE_RUNNING);
2178 setup_tx_poll_fn(netdev);
2179 start_txq(netdev);
2180
2181 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
2182 try_module_get(THIS_MODULE);
2183
2184 /* tell Octeon to start forwarding packets to host */
2185 send_rx_ctrl_cmd(lio, 1);
2186
2187 /* Ready for link status updates */
2188 lio->intf_open = 1;
2189
2190 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
2191 netdev->name);
2192
2193 return 0;
2194}
2195
2196/**
2197 * \brief Net device stop for LiquidIO
2198 * @param netdev network device
2199 */
2200static int liquidio_stop(struct net_device *netdev)
2201{
2202 struct napi_struct *napi, *n;
2203 struct lio *lio = GET_LIO(netdev);
2204 struct octeon_device *oct = lio->oct_dev;
2205
2206 netif_info(lio, ifdown, lio->netdev, "Stopping interface!\n");
2207 /* Inform that netif carrier is down */
2208 lio->intf_open = 0;
2209 lio->linfo.link.s.status = 0;
2210
2211 netif_carrier_off(netdev);
2212
2213 /* tell Octeon to stop forwarding packets to host */
2214 send_rx_ctrl_cmd(lio, 0);
2215
2216 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002217 destroy_workqueue(lio->txq_status_wq.wq);
2218
2219 if (lio->ptp_clock) {
2220 ptp_clock_unregister(lio->ptp_clock);
2221 lio->ptp_clock = NULL;
2222 }
2223
2224 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
2225
2226 /* This is a hack that allows DHCP to continue working. */
2227 set_bit(__LINK_STATE_START, &lio->netdev->state);
2228
2229 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2230 napi_disable(napi);
2231
2232 txqs_stop(netdev);
2233
2234 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
2235 module_put(THIS_MODULE);
2236
2237 return 0;
2238}
2239
2240void liquidio_link_ctrl_cmd_completion(void *nctrl_ptr)
2241{
2242 struct octnic_ctrl_pkt *nctrl = (struct octnic_ctrl_pkt *)nctrl_ptr;
2243 struct net_device *netdev = (struct net_device *)nctrl->netpndev;
2244 struct lio *lio = GET_LIO(netdev);
2245 struct octeon_device *oct = lio->oct_dev;
2246
2247 switch (nctrl->ncmd.s.cmd) {
2248 case OCTNET_CMD_CHANGE_DEVFLAGS:
2249 case OCTNET_CMD_SET_MULTI_LIST:
2250 break;
2251
2252 case OCTNET_CMD_CHANGE_MACADDR:
2253 /* If command is successful, change the MACADDR. */
2254 netif_info(lio, probe, lio->netdev, " MACAddr changed to 0x%llx\n",
2255 CVM_CAST64(nctrl->udd[0]));
2256 dev_info(&oct->pci_dev->dev, "%s MACAddr changed to 0x%llx\n",
2257 netdev->name, CVM_CAST64(nctrl->udd[0]));
2258 memcpy(netdev->dev_addr, ((u8 *)&nctrl->udd[0]) + 2, ETH_ALEN);
2259 break;
2260
2261 case OCTNET_CMD_CHANGE_MTU:
2262 /* If command is successful, change the MTU. */
2263 netif_info(lio, probe, lio->netdev, " MTU Changed from %d to %d\n",
2264 netdev->mtu, nctrl->ncmd.s.param2);
2265 dev_info(&oct->pci_dev->dev, "%s MTU Changed from %d to %d\n",
2266 netdev->name, netdev->mtu,
2267 nctrl->ncmd.s.param2);
2268 netdev->mtu = nctrl->ncmd.s.param2;
2269 break;
2270
2271 case OCTNET_CMD_GPIO_ACCESS:
2272 netif_info(lio, probe, lio->netdev, "LED Flashing visual identification\n");
2273
2274 break;
2275
2276 case OCTNET_CMD_LRO_ENABLE:
2277 dev_info(&oct->pci_dev->dev, "%s LRO Enabled\n", netdev->name);
2278 break;
2279
2280 case OCTNET_CMD_LRO_DISABLE:
2281 dev_info(&oct->pci_dev->dev, "%s LRO Disabled\n",
2282 netdev->name);
2283 break;
2284
2285 case OCTNET_CMD_VERBOSE_ENABLE:
2286 dev_info(&oct->pci_dev->dev, "%s LRO Enabled\n", netdev->name);
2287 break;
2288
2289 case OCTNET_CMD_VERBOSE_DISABLE:
2290 dev_info(&oct->pci_dev->dev, "%s LRO Disabled\n",
2291 netdev->name);
2292 break;
2293
2294 case OCTNET_CMD_SET_SETTINGS:
2295 dev_info(&oct->pci_dev->dev, "%s settings changed\n",
2296 netdev->name);
2297
2298 break;
2299
2300 default:
2301 dev_err(&oct->pci_dev->dev, "%s Unknown cmd %d\n", __func__,
2302 nctrl->ncmd.s.cmd);
2303 }
2304}
2305
2306/**
2307 * \brief Converts a mask based on net device flags
2308 * @param netdev network device
2309 *
2310 * This routine generates a octnet_ifflags mask from the net device flags
2311 * received from the OS.
2312 */
2313static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
2314{
2315 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
2316
2317 if (netdev->flags & IFF_PROMISC)
2318 f |= OCTNET_IFFLAG_PROMISC;
2319
2320 if (netdev->flags & IFF_ALLMULTI)
2321 f |= OCTNET_IFFLAG_ALLMULTI;
2322
2323 if (netdev->flags & IFF_MULTICAST) {
2324 f |= OCTNET_IFFLAG_MULTICAST;
2325
2326 /* Accept all multicast addresses if there are more than we
2327 * can handle
2328 */
2329 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
2330 f |= OCTNET_IFFLAG_ALLMULTI;
2331 }
2332
2333 if (netdev->flags & IFF_BROADCAST)
2334 f |= OCTNET_IFFLAG_BROADCAST;
2335
2336 return f;
2337}
2338
2339/**
2340 * \brief Net device set_multicast_list
2341 * @param netdev network device
2342 */
2343static void liquidio_set_mcast_list(struct net_device *netdev)
2344{
2345 struct lio *lio = GET_LIO(netdev);
2346 struct octeon_device *oct = lio->oct_dev;
2347 struct octnic_ctrl_pkt nctrl;
2348 struct octnic_ctrl_params nparams;
2349 struct netdev_hw_addr *ha;
2350 u64 *mc;
2351 int ret, i;
2352 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
2353
2354 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2355
2356 /* Create a ctrl pkt command to be sent to core app. */
2357 nctrl.ncmd.u64 = 0;
2358 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
2359 nctrl.ncmd.s.param1 = lio->linfo.ifidx;
2360 nctrl.ncmd.s.param2 = get_new_flags(netdev);
2361 nctrl.ncmd.s.param3 = mc_count;
2362 nctrl.ncmd.s.more = mc_count;
2363 nctrl.netpndev = (u64)netdev;
2364 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2365
2366 /* copy all the addresses into the udd */
2367 i = 0;
2368 mc = &nctrl.udd[0];
2369 netdev_for_each_mc_addr(ha, netdev) {
2370 *mc = 0;
2371 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
2372 /* no need to swap bytes */
2373
2374 if (++mc > &nctrl.udd[mc_count])
2375 break;
2376 }
2377
2378 /* Apparently, any activity in this call from the kernel has to
2379 * be atomic. So we won't wait for response.
2380 */
2381 nctrl.wait_time = 0;
2382
2383 nparams.resp_order = OCTEON_RESP_NORESPONSE;
2384
2385 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl, nparams);
2386 if (ret < 0) {
2387 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
2388 ret);
2389 }
2390}
2391
2392/**
2393 * \brief Net device set_mac_address
2394 * @param netdev network device
2395 */
2396static int liquidio_set_mac(struct net_device *netdev, void *p)
2397{
2398 int ret = 0;
2399 struct lio *lio = GET_LIO(netdev);
2400 struct octeon_device *oct = lio->oct_dev;
2401 struct sockaddr *addr = (struct sockaddr *)p;
2402 struct octnic_ctrl_pkt nctrl;
2403 struct octnic_ctrl_params nparams;
2404
2405 if ((!is_valid_ether_addr(addr->sa_data)) ||
2406 (ifstate_check(lio, LIO_IFSTATE_RUNNING)))
2407 return -EADDRNOTAVAIL;
2408
2409 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2410
2411 nctrl.ncmd.u64 = 0;
2412 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
2413 nctrl.ncmd.s.param1 = lio->linfo.ifidx;
2414 nctrl.ncmd.s.param2 = 0;
2415 nctrl.ncmd.s.more = 1;
2416 nctrl.netpndev = (u64)netdev;
2417 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2418 nctrl.wait_time = 100;
2419
2420 nctrl.udd[0] = 0;
2421 /* The MAC Address is presented in network byte order. */
2422 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2423
2424 nparams.resp_order = OCTEON_RESP_ORDERED;
2425
2426 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl, nparams);
2427 if (ret < 0) {
2428 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2429 return -ENOMEM;
2430 }
2431 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2432 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2433
2434 return 0;
2435}
2436
2437/**
2438 * \brief Net device get_stats
2439 * @param netdev network device
2440 */
2441static struct net_device_stats *liquidio_get_stats(struct net_device *netdev)
2442{
2443 struct lio *lio = GET_LIO(netdev);
2444 struct net_device_stats *stats = &netdev->stats;
2445 struct octeon_device *oct;
2446 u64 pkts = 0, drop = 0, bytes = 0;
2447 struct oct_droq_stats *oq_stats;
2448 struct oct_iq_stats *iq_stats;
2449 int i, iq_no, oq_no;
2450
2451 oct = lio->oct_dev;
2452
2453 for (i = 0; i < lio->linfo.num_txpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002454 iq_no = lio->linfo.txpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002455 iq_stats = &oct->instr_queue[iq_no]->stats;
2456 pkts += iq_stats->tx_done;
2457 drop += iq_stats->tx_dropped;
2458 bytes += iq_stats->tx_tot_bytes;
2459 }
2460
2461 stats->tx_packets = pkts;
2462 stats->tx_bytes = bytes;
2463 stats->tx_dropped = drop;
2464
2465 pkts = 0;
2466 drop = 0;
2467 bytes = 0;
2468
2469 for (i = 0; i < lio->linfo.num_rxpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002470 oq_no = lio->linfo.rxpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002471 oq_stats = &oct->droq[oq_no]->stats;
2472 pkts += oq_stats->rx_pkts_received;
2473 drop += (oq_stats->rx_dropped +
2474 oq_stats->dropped_nodispatch +
2475 oq_stats->dropped_toomany +
2476 oq_stats->dropped_nomem);
2477 bytes += oq_stats->rx_bytes_received;
2478 }
2479
2480 stats->rx_bytes = bytes;
2481 stats->rx_packets = pkts;
2482 stats->rx_dropped = drop;
2483
2484 return stats;
2485}
2486
2487/**
2488 * \brief Net device change_mtu
2489 * @param netdev network device
2490 */
2491static int liquidio_change_mtu(struct net_device *netdev, int new_mtu)
2492{
2493 struct lio *lio = GET_LIO(netdev);
2494 struct octeon_device *oct = lio->oct_dev;
2495 struct octnic_ctrl_pkt nctrl;
2496 struct octnic_ctrl_params nparams;
2497 int max_frm_size = new_mtu + OCTNET_FRM_HEADER_SIZE;
2498 int ret = 0;
2499
2500 /* Limit the MTU to make sure the ethernet packets are between 64 bytes
2501 * and 65535 bytes
2502 */
2503 if ((max_frm_size < OCTNET_MIN_FRM_SIZE) ||
2504 (max_frm_size > OCTNET_MAX_FRM_SIZE)) {
2505 dev_err(&oct->pci_dev->dev, "Invalid MTU: %d\n", new_mtu);
2506 dev_err(&oct->pci_dev->dev, "Valid range %d and %d\n",
2507 (OCTNET_MIN_FRM_SIZE - OCTNET_FRM_HEADER_SIZE),
2508 (OCTNET_MAX_FRM_SIZE - OCTNET_FRM_HEADER_SIZE));
2509 return -EINVAL;
2510 }
2511
2512 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2513
2514 nctrl.ncmd.u64 = 0;
2515 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MTU;
2516 nctrl.ncmd.s.param1 = lio->linfo.ifidx;
2517 nctrl.ncmd.s.param2 = new_mtu;
2518 nctrl.wait_time = 100;
2519 nctrl.netpndev = (u64)netdev;
2520 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2521
2522 nparams.resp_order = OCTEON_RESP_ORDERED;
2523
2524 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl, nparams);
2525 if (ret < 0) {
2526 dev_err(&oct->pci_dev->dev, "Failed to set MTU\n");
2527 return -1;
2528 }
2529
2530 lio->mtu = new_mtu;
2531
2532 return 0;
2533}
2534
2535/**
2536 * \brief Handler for SIOCSHWTSTAMP ioctl
2537 * @param netdev network device
2538 * @param ifr interface request
2539 * @param cmd command
2540 */
2541static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2542{
2543 struct hwtstamp_config conf;
2544 struct lio *lio = GET_LIO(netdev);
2545
2546 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
2547 return -EFAULT;
2548
2549 if (conf.flags)
2550 return -EINVAL;
2551
2552 switch (conf.tx_type) {
2553 case HWTSTAMP_TX_ON:
2554 case HWTSTAMP_TX_OFF:
2555 break;
2556 default:
2557 return -ERANGE;
2558 }
2559
2560 switch (conf.rx_filter) {
2561 case HWTSTAMP_FILTER_NONE:
2562 break;
2563 case HWTSTAMP_FILTER_ALL:
2564 case HWTSTAMP_FILTER_SOME:
2565 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
2566 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
2567 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
2568 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
2569 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
2570 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
2571 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
2572 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
2573 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
2574 case HWTSTAMP_FILTER_PTP_V2_EVENT:
2575 case HWTSTAMP_FILTER_PTP_V2_SYNC:
2576 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
2577 conf.rx_filter = HWTSTAMP_FILTER_ALL;
2578 break;
2579 default:
2580 return -ERANGE;
2581 }
2582
2583 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
2584 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2585
2586 else
2587 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2588
2589 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
2590}
2591
2592/**
2593 * \brief ioctl handler
2594 * @param netdev network device
2595 * @param ifr interface request
2596 * @param cmd command
2597 */
2598static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2599{
2600 switch (cmd) {
2601 case SIOCSHWTSTAMP:
2602 return hwtstamp_ioctl(netdev, ifr, cmd);
2603 default:
2604 return -EOPNOTSUPP;
2605 }
2606}
2607
2608/**
2609 * \brief handle a Tx timestamp response
2610 * @param status response status
2611 * @param buf pointer to skb
2612 */
2613static void handle_timestamp(struct octeon_device *oct,
2614 u32 status,
2615 void *buf)
2616{
2617 struct octnet_buf_free_info *finfo;
2618 struct octeon_soft_command *sc;
2619 struct oct_timestamp_resp *resp;
2620 struct lio *lio;
2621 struct sk_buff *skb = (struct sk_buff *)buf;
2622
2623 finfo = (struct octnet_buf_free_info *)skb->cb;
2624 lio = finfo->lio;
2625 sc = finfo->sc;
2626 oct = lio->oct_dev;
2627 resp = (struct oct_timestamp_resp *)sc->virtrptr;
2628
2629 if (status != OCTEON_REQUEST_DONE) {
2630 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
2631 CVM_CAST64(status));
2632 resp->timestamp = 0;
2633 }
2634
2635 octeon_swap_8B_data(&resp->timestamp, 1);
2636
Colin Ian King19a6d152016-02-05 16:30:39 +00002637 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002638 struct skb_shared_hwtstamps ts;
2639 u64 ns = resp->timestamp;
2640
2641 netif_info(lio, tx_done, lio->netdev,
2642 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
2643 skb, (unsigned long long)ns);
2644 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
2645 skb_tstamp_tx(skb, &ts);
2646 }
2647
2648 octeon_free_soft_command(oct, sc);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07002649 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002650}
2651
2652/* \brief Send a data packet that will be timestamped
2653 * @param oct octeon device
2654 * @param ndata pointer to network data
2655 * @param finfo pointer to private network data
2656 */
2657static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
2658 struct octnic_data_pkt *ndata,
2659 struct octnet_buf_free_info *finfo,
2660 int xmit_more)
2661{
2662 int retval;
2663 struct octeon_soft_command *sc;
2664 struct octeon_instr_ih *ih;
2665 struct octeon_instr_rdp *rdp;
2666 struct lio *lio;
2667 int ring_doorbell;
2668
2669 lio = finfo->lio;
2670
2671 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
2672 sizeof(struct oct_timestamp_resp));
2673 finfo->sc = sc;
2674
2675 if (!sc) {
2676 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
2677 return IQ_SEND_FAILED;
2678 }
2679
2680 if (ndata->reqtype == REQTYPE_NORESP_NET)
2681 ndata->reqtype = REQTYPE_RESP_NET;
2682 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
2683 ndata->reqtype = REQTYPE_RESP_NET_SG;
2684
2685 sc->callback = handle_timestamp;
2686 sc->callback_arg = finfo->skb;
2687 sc->iq_no = ndata->q_no;
2688
2689 ih = (struct octeon_instr_ih *)&sc->cmd.ih;
2690 rdp = (struct octeon_instr_rdp *)&sc->cmd.rdp;
2691
2692 ring_doorbell = !xmit_more;
2693 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
2694 sc, ih->dlengsz, ndata->reqtype);
2695
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07002696 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002697 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
2698 retval);
2699 octeon_free_soft_command(oct, sc);
2700 } else {
2701 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
2702 }
2703
2704 return retval;
2705}
2706
2707static inline int is_ipv4(struct sk_buff *skb)
2708{
2709 return (skb->protocol == htons(ETH_P_IP)) &&
2710 (ip_hdr(skb)->version == 4);
2711}
2712
2713static inline int is_vlan(struct sk_buff *skb)
2714{
2715 return skb->protocol == htons(ETH_P_8021Q);
2716}
2717
2718static inline int is_ip_fragmented(struct sk_buff *skb)
2719{
2720 /* The Don't fragment and Reserved flag fields are ignored.
2721 * IP is fragmented if
2722 * - the More fragments bit is set (indicating this IP is a fragment
2723 * with more to follow; the current offset could be 0 ).
2724 * - ths offset field is non-zero.
2725 */
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -07002726 return (ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET)) ? 1 : 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002727}
2728
2729static inline int is_ipv6(struct sk_buff *skb)
2730{
2731 return (skb->protocol == htons(ETH_P_IPV6)) &&
2732 (ipv6_hdr(skb)->version == 6);
2733}
2734
2735static inline int is_with_extn_hdr(struct sk_buff *skb)
2736{
2737 return (ipv6_hdr(skb)->nexthdr != IPPROTO_TCP) &&
2738 (ipv6_hdr(skb)->nexthdr != IPPROTO_UDP);
2739}
2740
2741static inline int is_tcpudp(struct sk_buff *skb)
2742{
2743 return (ip_hdr(skb)->protocol == IPPROTO_TCP) ||
2744 (ip_hdr(skb)->protocol == IPPROTO_UDP);
2745}
2746
2747static inline u32 get_ipv4_5tuple_tag(struct sk_buff *skb)
2748{
2749 u32 tag;
2750 struct iphdr *iphdr = ip_hdr(skb);
2751
2752 tag = crc32(0, &iphdr->protocol, 1);
2753 tag = crc32(tag, (u8 *)&iphdr->saddr, 8);
2754 tag = crc32(tag, skb_transport_header(skb), 4);
2755 return tag;
2756}
2757
2758static inline u32 get_ipv6_5tuple_tag(struct sk_buff *skb)
2759{
2760 u32 tag;
2761 struct ipv6hdr *ipv6hdr = ipv6_hdr(skb);
2762
2763 tag = crc32(0, &ipv6hdr->nexthdr, 1);
2764 tag = crc32(tag, (u8 *)&ipv6hdr->saddr, 32);
2765 tag = crc32(tag, skb_transport_header(skb), 4);
2766 return tag;
2767}
2768
2769/** \brief Transmit networks packets to the Octeon interface
2770 * @param skbuff skbuff struct to be passed to network layer.
2771 * @param netdev pointer to network device
2772 * @returns whether the packet was transmitted to the device okay or not
2773 * (NETDEV_TX_OK or NETDEV_TX_BUSY)
2774 */
2775static int liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
2776{
2777 struct lio *lio;
2778 struct octnet_buf_free_info *finfo;
2779 union octnic_cmd_setup cmdsetup;
2780 struct octnic_data_pkt ndata;
2781 struct octeon_device *oct;
2782 struct oct_iq_stats *stats;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002783 int status = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002784 int q_idx = 0, iq_no = 0;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002785 int xmit_more, j;
2786 u64 dptr = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002787 u32 tag = 0;
2788
2789 lio = GET_LIO(netdev);
2790 oct = lio->oct_dev;
2791
2792 if (netif_is_multiqueue(netdev)) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002793 q_idx = skb->queue_mapping;
2794 q_idx = (q_idx % (lio->linfo.num_txpciq));
2795 tag = q_idx;
2796 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002797 } else {
2798 iq_no = lio->txq;
2799 }
2800
2801 stats = &oct->instr_queue[iq_no]->stats;
2802
2803 /* Check for all conditions in which the current packet cannot be
2804 * transmitted.
2805 */
2806 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
2807 (!lio->linfo.link.s.status) ||
2808 (skb->len <= 0)) {
2809 netif_info(lio, tx_err, lio->netdev,
2810 "Transmit failed link_status : %d\n",
2811 lio->linfo.link.s.status);
2812 goto lio_xmit_failed;
2813 }
2814
2815 /* Use space in skb->cb to store info used to unmap and
2816 * free the buffers.
2817 */
2818 finfo = (struct octnet_buf_free_info *)skb->cb;
2819 finfo->lio = lio;
2820 finfo->skb = skb;
2821 finfo->sc = NULL;
2822
2823 /* Prepare the attributes for the data to be passed to OSI. */
2824 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
2825
2826 ndata.buf = (void *)finfo;
2827
2828 ndata.q_no = iq_no;
2829
2830 if (netif_is_multiqueue(netdev)) {
2831 if (octnet_iq_is_full(oct, ndata.q_no)) {
2832 /* defer sending if queue is full */
2833 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
2834 ndata.q_no);
2835 stats->tx_iq_busy++;
2836 return NETDEV_TX_BUSY;
2837 }
2838 } else {
2839 if (octnet_iq_is_full(oct, lio->txq)) {
2840 /* defer sending if queue is full */
2841 stats->tx_iq_busy++;
2842 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
2843 ndata.q_no);
2844 return NETDEV_TX_BUSY;
2845 }
2846 }
2847 /* pr_info(" XMIT - valid Qs: %d, 1st Q no: %d, cpu: %d, q_no:%d\n",
2848 * lio->linfo.num_txpciq, lio->txq, cpu, ndata.q_no );
2849 */
2850
2851 ndata.datasize = skb->len;
2852
2853 cmdsetup.u64 = 0;
2854 cmdsetup.s.ifidx = lio->linfo.ifidx;
2855
2856 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2857 if (is_ipv4(skb) && !is_ip_fragmented(skb) && is_tcpudp(skb)) {
2858 tag = get_ipv4_5tuple_tag(skb);
2859
2860 cmdsetup.s.cksum_offset = sizeof(struct ethhdr) + 1;
2861
2862 if (ip_hdr(skb)->ihl > 5)
2863 cmdsetup.s.ipv4opts_ipv6exthdr =
2864 OCT_PKT_PARAM_IPV4OPTS;
2865
2866 } else if (is_ipv6(skb)) {
2867 tag = get_ipv6_5tuple_tag(skb);
2868
2869 cmdsetup.s.cksum_offset = sizeof(struct ethhdr) + 1;
2870
2871 if (is_with_extn_hdr(skb))
2872 cmdsetup.s.ipv4opts_ipv6exthdr =
2873 OCT_PKT_PARAM_IPV6EXTHDR;
2874
2875 } else if (is_vlan(skb)) {
2876 if (vlan_eth_hdr(skb)->h_vlan_encapsulated_proto
2877 == htons(ETH_P_IP) &&
2878 !is_ip_fragmented(skb) && is_tcpudp(skb)) {
2879 tag = get_ipv4_5tuple_tag(skb);
2880
2881 cmdsetup.s.cksum_offset =
2882 sizeof(struct vlan_ethhdr) + 1;
2883
2884 if (ip_hdr(skb)->ihl > 5)
2885 cmdsetup.s.ipv4opts_ipv6exthdr =
2886 OCT_PKT_PARAM_IPV4OPTS;
2887
2888 } else if (vlan_eth_hdr(skb)->h_vlan_encapsulated_proto
2889 == htons(ETH_P_IPV6)) {
2890 tag = get_ipv6_5tuple_tag(skb);
2891
2892 cmdsetup.s.cksum_offset =
2893 sizeof(struct vlan_ethhdr) + 1;
2894
2895 if (is_with_extn_hdr(skb))
2896 cmdsetup.s.ipv4opts_ipv6exthdr =
2897 OCT_PKT_PARAM_IPV6EXTHDR;
2898 }
2899 }
2900 }
2901 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
2902 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
2903 cmdsetup.s.timestamp = 1;
2904 }
2905
2906 if (skb_shinfo(skb)->nr_frags == 0) {
2907 cmdsetup.s.u.datasize = skb->len;
2908 octnet_prepare_pci_cmd(&ndata.cmd, &cmdsetup, tag);
2909 /* Offload checksum calculation for TCP/UDP packets */
2910 ndata.cmd.dptr = dma_map_single(&oct->pci_dev->dev,
2911 skb->data,
2912 skb->len,
2913 DMA_TO_DEVICE);
2914 if (dma_mapping_error(&oct->pci_dev->dev, ndata.cmd.dptr)) {
2915 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
2916 __func__);
2917 return NETDEV_TX_BUSY;
2918 }
2919
2920 finfo->dptr = ndata.cmd.dptr;
2921
2922 ndata.reqtype = REQTYPE_NORESP_NET;
2923
2924 } else {
2925 int i, frags;
2926 struct skb_frag_struct *frag;
2927 struct octnic_gather *g;
2928
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002929 spin_lock(&lio->glist_lock[q_idx]);
2930 g = (struct octnic_gather *)
2931 list_delete_head(&lio->glist[q_idx]);
2932 spin_unlock(&lio->glist_lock[q_idx]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002933
2934 if (!g) {
2935 netif_info(lio, tx_err, lio->netdev,
2936 "Transmit scatter gather: glist null!\n");
2937 goto lio_xmit_failed;
2938 }
2939
2940 cmdsetup.s.gather = 1;
2941 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
2942 octnet_prepare_pci_cmd(&ndata.cmd, &cmdsetup, tag);
2943
2944 memset(g->sg, 0, g->sg_size);
2945
2946 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
2947 skb->data,
2948 (skb->len - skb->data_len),
2949 DMA_TO_DEVICE);
2950 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
2951 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
2952 __func__);
2953 return NETDEV_TX_BUSY;
2954 }
2955 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
2956
2957 frags = skb_shinfo(skb)->nr_frags;
2958 i = 1;
2959 while (frags--) {
2960 frag = &skb_shinfo(skb)->frags[i - 1];
2961
2962 g->sg[(i >> 2)].ptr[(i & 3)] =
2963 dma_map_page(&oct->pci_dev->dev,
2964 frag->page.p,
2965 frag->page_offset,
2966 frag->size,
2967 DMA_TO_DEVICE);
2968
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002969 if (dma_mapping_error(&oct->pci_dev->dev,
2970 g->sg[i >> 2].ptr[i & 3])) {
2971 dma_unmap_single(&oct->pci_dev->dev,
2972 g->sg[0].ptr[0],
2973 skb->len - skb->data_len,
2974 DMA_TO_DEVICE);
2975 for (j = 1; j < i; j++) {
2976 frag = &skb_shinfo(skb)->frags[j - 1];
2977 dma_unmap_page(&oct->pci_dev->dev,
2978 g->sg[j >> 2].ptr[j & 3],
2979 frag->size,
2980 DMA_TO_DEVICE);
2981 }
2982 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
2983 __func__);
2984 return NETDEV_TX_BUSY;
2985 }
2986
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002987 add_sg_size(&g->sg[(i >> 2)], frag->size, (i & 3));
2988 i++;
2989 }
2990
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002991 dma_sync_single_for_device(&oct->pci_dev->dev, g->sg_dma_ptr,
2992 g->sg_size, DMA_TO_DEVICE);
2993 dptr = g->sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002994
2995 finfo->dptr = ndata.cmd.dptr;
2996 finfo->g = g;
2997
2998 ndata.reqtype = REQTYPE_NORESP_NET_SG;
2999 }
3000
3001 if (skb_shinfo(skb)->gso_size) {
3002 struct octeon_instr_irh *irh =
3003 (struct octeon_instr_irh *)&ndata.cmd.irh;
3004 union tx_info *tx_info = (union tx_info *)&ndata.cmd.ossp[0];
3005
3006 irh->len = 1; /* to indicate that ossp[0] contains tx_info */
3007 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
3008 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
3009 }
3010
3011 xmit_more = skb->xmit_more;
3012
3013 if (unlikely(cmdsetup.s.timestamp))
3014 status = send_nic_timestamp_pkt(oct, &ndata, finfo, xmit_more);
3015 else
3016 status = octnet_send_nic_data_pkt(oct, &ndata, xmit_more);
3017 if (status == IQ_SEND_FAILED)
3018 goto lio_xmit_failed;
3019
3020 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
3021
3022 if (status == IQ_SEND_STOP)
3023 stop_q(lio->netdev, q_idx);
3024
Florian Westphal860e9532016-05-03 16:33:13 +02003025 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003026
3027 stats->tx_done++;
3028 stats->tx_tot_bytes += skb->len;
3029
3030 return NETDEV_TX_OK;
3031
3032lio_xmit_failed:
3033 stats->tx_dropped++;
3034 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
3035 iq_no, stats->tx_dropped);
3036 dma_unmap_single(&oct->pci_dev->dev, ndata.cmd.dptr,
3037 ndata.datasize, DMA_TO_DEVICE);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003038 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003039 return NETDEV_TX_OK;
3040}
3041
3042/** \brief Network device Tx timeout
3043 * @param netdev pointer to network device
3044 */
3045static void liquidio_tx_timeout(struct net_device *netdev)
3046{
3047 struct lio *lio;
3048
3049 lio = GET_LIO(netdev);
3050
3051 netif_info(lio, tx_err, lio->netdev,
3052 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
3053 netdev->stats.tx_dropped);
Florian Westphal860e9532016-05-03 16:33:13 +02003054 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003055 txqs_wake(netdev);
3056}
3057
3058int liquidio_set_feature(struct net_device *netdev, int cmd)
3059{
3060 struct lio *lio = GET_LIO(netdev);
3061 struct octeon_device *oct = lio->oct_dev;
3062 struct octnic_ctrl_pkt nctrl;
3063 struct octnic_ctrl_params nparams;
3064 int ret = 0;
3065
3066 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3067
3068 nctrl.ncmd.u64 = 0;
3069 nctrl.ncmd.s.cmd = cmd;
3070 nctrl.ncmd.s.param1 = lio->linfo.ifidx;
3071 nctrl.ncmd.s.param2 = OCTNIC_LROIPV4 | OCTNIC_LROIPV6;
3072 nctrl.wait_time = 100;
3073 nctrl.netpndev = (u64)netdev;
3074 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3075
3076 nparams.resp_order = OCTEON_RESP_NORESPONSE;
3077
3078 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl, nparams);
3079 if (ret < 0) {
3080 dev_err(&oct->pci_dev->dev, "Feature change failed in core (ret: 0x%x)\n",
3081 ret);
3082 }
3083 return ret;
3084}
3085
3086/** \brief Net device fix features
3087 * @param netdev pointer to network device
3088 * @param request features requested
3089 * @returns updated features list
3090 */
3091static netdev_features_t liquidio_fix_features(struct net_device *netdev,
3092 netdev_features_t request)
3093{
3094 struct lio *lio = netdev_priv(netdev);
3095
3096 if ((request & NETIF_F_RXCSUM) &&
3097 !(lio->dev_capability & NETIF_F_RXCSUM))
3098 request &= ~NETIF_F_RXCSUM;
3099
3100 if ((request & NETIF_F_HW_CSUM) &&
3101 !(lio->dev_capability & NETIF_F_HW_CSUM))
3102 request &= ~NETIF_F_HW_CSUM;
3103
3104 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
3105 request &= ~NETIF_F_TSO;
3106
3107 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
3108 request &= ~NETIF_F_TSO6;
3109
3110 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
3111 request &= ~NETIF_F_LRO;
3112
3113 /*Disable LRO if RXCSUM is off */
3114 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
3115 (lio->dev_capability & NETIF_F_LRO))
3116 request &= ~NETIF_F_LRO;
3117
3118 return request;
3119}
3120
3121/** \brief Net device set features
3122 * @param netdev pointer to network device
3123 * @param features features to enable/disable
3124 */
3125static int liquidio_set_features(struct net_device *netdev,
3126 netdev_features_t features)
3127{
3128 struct lio *lio = netdev_priv(netdev);
3129
3130 if (!((netdev->features ^ features) & NETIF_F_LRO))
3131 return 0;
3132
3133 if ((features & NETIF_F_LRO) && (lio->dev_capability & NETIF_F_LRO))
3134 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE);
3135 else if (!(features & NETIF_F_LRO) &&
3136 (lio->dev_capability & NETIF_F_LRO))
3137 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE);
3138
3139 return 0;
3140}
3141
3142static struct net_device_ops lionetdevops = {
3143 .ndo_open = liquidio_open,
3144 .ndo_stop = liquidio_stop,
3145 .ndo_start_xmit = liquidio_xmit,
3146 .ndo_get_stats = liquidio_get_stats,
3147 .ndo_set_mac_address = liquidio_set_mac,
3148 .ndo_set_rx_mode = liquidio_set_mcast_list,
3149 .ndo_tx_timeout = liquidio_tx_timeout,
3150 .ndo_change_mtu = liquidio_change_mtu,
3151 .ndo_do_ioctl = liquidio_ioctl,
3152 .ndo_fix_features = liquidio_fix_features,
3153 .ndo_set_features = liquidio_set_features,
3154};
3155
3156/** \brief Entry point for the liquidio module
3157 */
3158static int __init liquidio_init(void)
3159{
3160 int i;
3161 struct handshake *hs;
3162
3163 init_completion(&first_stage);
3164
3165 octeon_init_device_list(conf_type);
3166
3167 if (liquidio_init_pci())
3168 return -EINVAL;
3169
3170 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3171
3172 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3173 hs = &handshake[i];
3174 if (hs->pci_dev) {
3175 wait_for_completion(&hs->init);
3176 if (!hs->init_ok) {
3177 /* init handshake failed */
3178 dev_err(&hs->pci_dev->dev,
3179 "Failed to init device\n");
3180 liquidio_deinit_pci();
3181 return -EIO;
3182 }
3183 }
3184 }
3185
3186 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3187 hs = &handshake[i];
3188 if (hs->pci_dev) {
3189 wait_for_completion_timeout(&hs->started,
3190 msecs_to_jiffies(30000));
3191 if (!hs->started_ok) {
3192 /* starter handshake failed */
3193 dev_err(&hs->pci_dev->dev,
3194 "Firmware failed to start\n");
3195 liquidio_deinit_pci();
3196 return -EIO;
3197 }
3198 }
3199 }
3200
3201 return 0;
3202}
3203
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -07003204static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003205{
3206 struct octeon_device *oct = (struct octeon_device *)buf;
3207 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
3208 int ifidx = 0;
3209 union oct_link_status *ls;
3210 int i;
3211
3212 if ((recv_pkt->buffer_size[0] != sizeof(*ls)) ||
3213 (recv_pkt->rh.r_nic_info.ifidx > oct->ifcount)) {
3214 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3215 recv_pkt->buffer_size[0],
3216 recv_pkt->rh.r_nic_info.ifidx);
3217 goto nic_info_err;
3218 }
3219
3220 ifidx = recv_pkt->rh.r_nic_info.ifidx;
3221 ls = (union oct_link_status *)get_rbd(recv_pkt->buffer_ptr[0]);
3222
3223 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
3224
3225 update_link_status(oct->props[ifidx].netdev, ls);
3226
3227nic_info_err:
3228 for (i = 0; i < recv_pkt->buffer_count; i++)
3229 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3230 octeon_free_recv_info(recv_info);
3231 return 0;
3232}
3233
3234/**
3235 * \brief Setup network interfaces
3236 * @param octeon_dev octeon device
3237 *
3238 * Called during init time for each device. It assumes the NIC
3239 * is already up and running. The link information for each
3240 * interface is passed in link_info.
3241 */
3242static int setup_nic_devices(struct octeon_device *octeon_dev)
3243{
3244 struct lio *lio = NULL;
3245 struct net_device *netdev;
3246 u8 mac[6], i, j;
3247 struct octeon_soft_command *sc;
3248 struct liquidio_if_cfg_context *ctx;
3249 struct liquidio_if_cfg_resp *resp;
3250 struct octdev_props *props;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003251 int retval, num_iqueues, num_oqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003252 u64 q_mask;
3253 int num_cpus = num_online_cpus();
3254 union oct_nic_if_cfg if_cfg;
3255 unsigned int base_queue;
3256 unsigned int gmx_port_id;
3257 u32 resp_size, ctx_size;
3258
3259 /* This is to handle link status changes */
3260 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3261 OPCODE_NIC_INFO,
3262 lio_nic_info, octeon_dev);
3263
3264 /* REQTYPE_RESP_NET and REQTYPE_SOFT_COMMAND do not have free functions.
3265 * They are handled directly.
3266 */
3267 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
3268 free_netbuf);
3269
3270 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
3271 free_netsgbuf);
3272
3273 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
3274 free_netsgbuf_with_resp);
3275
3276 for (i = 0; i < octeon_dev->ifcount; i++) {
3277 resp_size = sizeof(struct liquidio_if_cfg_resp);
3278 ctx_size = sizeof(struct liquidio_if_cfg_context);
3279 sc = (struct octeon_soft_command *)
3280 octeon_alloc_soft_command(octeon_dev, 0,
3281 resp_size, ctx_size);
3282 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
3283 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
3284
3285 num_iqueues =
3286 CFG_GET_NUM_TXQS_NIC_IF(octeon_get_conf(octeon_dev), i);
3287 num_oqueues =
3288 CFG_GET_NUM_RXQS_NIC_IF(octeon_get_conf(octeon_dev), i);
3289 base_queue =
3290 CFG_GET_BASE_QUE_NIC_IF(octeon_get_conf(octeon_dev), i);
3291 gmx_port_id =
3292 CFG_GET_GMXID_NIC_IF(octeon_get_conf(octeon_dev), i);
3293 if (num_iqueues > num_cpus)
3294 num_iqueues = num_cpus;
3295 if (num_oqueues > num_cpus)
3296 num_oqueues = num_cpus;
3297 dev_dbg(&octeon_dev->pci_dev->dev,
3298 "requesting config for interface %d, iqs %d, oqs %d\n",
3299 i, num_iqueues, num_oqueues);
3300 ACCESS_ONCE(ctx->cond) = 0;
3301 ctx->octeon_id = lio_get_device_id(octeon_dev);
3302 init_waitqueue_head(&ctx->wc);
3303
3304 if_cfg.u64 = 0;
3305 if_cfg.s.num_iqueues = num_iqueues;
3306 if_cfg.s.num_oqueues = num_oqueues;
3307 if_cfg.s.base_queue = base_queue;
3308 if_cfg.s.gmx_port_id = gmx_port_id;
3309 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
3310 OPCODE_NIC_IF_CFG, i,
3311 if_cfg.u64, 0);
3312
3313 sc->callback = if_cfg_callback;
3314 sc->callback_arg = sc;
3315 sc->wait_time = 1000;
3316
3317 retval = octeon_send_soft_command(octeon_dev, sc);
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003318 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003319 dev_err(&octeon_dev->pci_dev->dev,
3320 "iq/oq config failed status: %x\n",
3321 retval);
3322 /* Soft instr is freed by driver in case of failure. */
3323 goto setup_nic_dev_fail;
3324 }
3325
3326 /* Sleep on a wait queue till the cond flag indicates that the
3327 * response arrived or timed-out.
3328 */
3329 sleep_cond(&ctx->wc, &ctx->cond);
3330 retval = resp->status;
3331 if (retval) {
3332 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
3333 goto setup_nic_dev_fail;
3334 }
3335
3336 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
3337 (sizeof(struct liquidio_if_cfg_info)) >> 3);
3338
3339 num_iqueues = hweight64(resp->cfg_info.iqmask);
3340 num_oqueues = hweight64(resp->cfg_info.oqmask);
3341
3342 if (!(num_iqueues) || !(num_oqueues)) {
3343 dev_err(&octeon_dev->pci_dev->dev,
3344 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
3345 resp->cfg_info.iqmask,
3346 resp->cfg_info.oqmask);
3347 goto setup_nic_dev_fail;
3348 }
3349 dev_dbg(&octeon_dev->pci_dev->dev,
3350 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d\n",
3351 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
3352 num_iqueues, num_oqueues);
3353 netdev = alloc_etherdev_mq(LIO_SIZE, num_iqueues);
3354
3355 if (!netdev) {
3356 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
3357 goto setup_nic_dev_fail;
3358 }
3359
3360 props = &octeon_dev->props[i];
3361 props->netdev = netdev;
3362
3363 if (num_iqueues > 1)
3364 lionetdevops.ndo_select_queue = select_q;
3365
3366 /* Associate the routines that will handle different
3367 * netdev tasks.
3368 */
3369 netdev->netdev_ops = &lionetdevops;
3370
3371 lio = GET_LIO(netdev);
3372
3373 memset(lio, 0, sizeof(struct lio));
3374
3375 lio->linfo.ifidx = resp->cfg_info.ifidx;
3376 lio->ifidx = resp->cfg_info.ifidx;
3377
3378 lio->linfo.num_rxpciq = num_oqueues;
3379 lio->linfo.num_txpciq = num_iqueues;
3380 q_mask = resp->cfg_info.oqmask;
3381 /* q_mask is 0-based and already verified mask is nonzero */
3382 for (j = 0; j < num_oqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003383 lio->linfo.rxpciq[j].u64 =
3384 resp->cfg_info.linfo.rxpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003385 }
3386 q_mask = resp->cfg_info.iqmask;
3387 for (j = 0; j < num_iqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003388 lio->linfo.txpciq[j].u64 =
3389 resp->cfg_info.linfo.txpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003390 }
3391 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
3392 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
3393 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
3394
3395 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
3396
3397 lio->dev_capability = NETIF_F_HIGHDMA
3398 | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM
3399 | NETIF_F_SG | NETIF_F_RXCSUM
3400 | NETIF_F_TSO | NETIF_F_TSO6
3401 | NETIF_F_LRO;
3402 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
3403
3404 netdev->features = lio->dev_capability;
3405 netdev->vlan_features = lio->dev_capability;
3406
3407 netdev->hw_features = lio->dev_capability;
3408
3409 /* Point to the properties for octeon device to which this
3410 * interface belongs.
3411 */
3412 lio->oct_dev = octeon_dev;
3413 lio->octprops = props;
3414 lio->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003415
3416 dev_dbg(&octeon_dev->pci_dev->dev,
3417 "if%d gmx: %d hw_addr: 0x%llx\n", i,
3418 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
3419
3420 /* 64-bit swap required on LE machines */
3421 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
3422 for (j = 0; j < 6; j++)
3423 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
3424
3425 /* Copy MAC Address to OS network device structure */
3426
3427 ether_addr_copy(netdev->dev_addr, mac);
3428
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003429 /* By default all interfaces on a single Octeon uses the same
3430 * tx and rx queues
3431 */
3432 lio->txq = lio->linfo.txpciq[0].s.q_no;
3433 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003434 if (setup_io_queues(octeon_dev, netdev)) {
3435 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
3436 goto setup_nic_dev_fail;
3437 }
3438
3439 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
3440
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003441 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
3442 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
3443
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003444 if (setup_glists(octeon_dev, lio, num_iqueues)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003445 dev_err(&octeon_dev->pci_dev->dev,
3446 "Gather list allocation failed\n");
3447 goto setup_nic_dev_fail;
3448 }
3449
3450 /* Register ethtool support */
3451 liquidio_set_ethtool_ops(netdev);
3452
3453 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE);
3454
3455 if ((debug != -1) && (debug & NETIF_MSG_HW))
3456 liquidio_set_feature(netdev, OCTNET_CMD_VERBOSE_ENABLE);
3457
3458 /* Register the network device with the OS */
3459 if (register_netdev(netdev)) {
3460 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
3461 goto setup_nic_dev_fail;
3462 }
3463
3464 dev_dbg(&octeon_dev->pci_dev->dev,
3465 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
3466 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
3467 netif_carrier_off(netdev);
3468
3469 if (lio->linfo.link.s.status) {
3470 netif_carrier_on(netdev);
3471 start_txq(netdev);
3472 } else {
3473 netif_carrier_off(netdev);
3474 }
3475
3476 ifstate_set(lio, LIO_IFSTATE_REGISTERED);
3477
3478 dev_dbg(&octeon_dev->pci_dev->dev,
3479 "NIC ifidx:%d Setup successful\n", i);
3480
3481 octeon_free_soft_command(octeon_dev, sc);
3482 }
3483
3484 return 0;
3485
3486setup_nic_dev_fail:
3487
3488 octeon_free_soft_command(octeon_dev, sc);
3489
3490 while (i--) {
3491 dev_err(&octeon_dev->pci_dev->dev,
3492 "NIC ifidx:%d Setup failed\n", i);
3493 liquidio_destroy_nic_device(octeon_dev, i);
3494 }
3495 return -ENODEV;
3496}
3497
3498/**
3499 * \brief initialize the NIC
3500 * @param oct octeon device
3501 *
3502 * This initialization routine is called once the Octeon device application is
3503 * up and running
3504 */
3505static int liquidio_init_nic_module(struct octeon_device *oct)
3506{
3507 struct oct_intrmod_cfg *intrmod_cfg;
3508 int retval = 0;
3509 int num_nic_ports = CFG_GET_NUM_NIC_PORTS(octeon_get_conf(oct));
3510
3511 dev_dbg(&oct->pci_dev->dev, "Initializing network interfaces\n");
3512
3513 /* only default iq and oq were initialized
3514 * initialize the rest as well
3515 */
3516 /* run port_config command for each port */
3517 oct->ifcount = num_nic_ports;
3518
3519 memset(oct->props, 0,
3520 sizeof(struct octdev_props) * num_nic_ports);
3521
3522 retval = setup_nic_devices(oct);
3523 if (retval) {
3524 dev_err(&oct->pci_dev->dev, "Setup NIC devices failed\n");
3525 goto octnet_init_failure;
3526 }
3527
3528 liquidio_ptp_init(oct);
3529
3530 /* Initialize interrupt moderation params */
3531 intrmod_cfg = &((struct octeon_device *)oct)->intrmod;
3532 intrmod_cfg->intrmod_enable = 1;
3533 intrmod_cfg->intrmod_check_intrvl = LIO_INTRMOD_CHECK_INTERVAL;
3534 intrmod_cfg->intrmod_maxpkt_ratethr = LIO_INTRMOD_MAXPKT_RATETHR;
3535 intrmod_cfg->intrmod_minpkt_ratethr = LIO_INTRMOD_MINPKT_RATETHR;
3536 intrmod_cfg->intrmod_maxcnt_trigger = LIO_INTRMOD_MAXCNT_TRIGGER;
3537 intrmod_cfg->intrmod_maxtmr_trigger = LIO_INTRMOD_MAXTMR_TRIGGER;
3538 intrmod_cfg->intrmod_mintmr_trigger = LIO_INTRMOD_MINTMR_TRIGGER;
3539 intrmod_cfg->intrmod_mincnt_trigger = LIO_INTRMOD_MINCNT_TRIGGER;
3540
3541 dev_dbg(&oct->pci_dev->dev, "Network interfaces ready\n");
3542
3543 return retval;
3544
3545octnet_init_failure:
3546
3547 oct->ifcount = 0;
3548
3549 return retval;
3550}
3551
3552/**
3553 * \brief starter callback that invokes the remaining initialization work after
3554 * the NIC is up and running.
3555 * @param octptr work struct work_struct
3556 */
3557static void nic_starter(struct work_struct *work)
3558{
3559 struct octeon_device *oct;
3560 struct cavium_wk *wk = (struct cavium_wk *)work;
3561
3562 oct = (struct octeon_device *)wk->ctxptr;
3563
3564 if (atomic_read(&oct->status) == OCT_DEV_RUNNING)
3565 return;
3566
3567 /* If the status of the device is CORE_OK, the core
3568 * application has reported its application type. Call
3569 * any registered handlers now and move to the RUNNING
3570 * state.
3571 */
3572 if (atomic_read(&oct->status) != OCT_DEV_CORE_OK) {
3573 schedule_delayed_work(&oct->nic_poll_work.work,
3574 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
3575 return;
3576 }
3577
3578 atomic_set(&oct->status, OCT_DEV_RUNNING);
3579
3580 if (oct->app_mode && oct->app_mode == CVM_DRV_NIC_APP) {
3581 dev_dbg(&oct->pci_dev->dev, "Starting NIC module\n");
3582
3583 if (liquidio_init_nic_module(oct))
3584 dev_err(&oct->pci_dev->dev, "NIC initialization failed\n");
3585 else
3586 handshake[oct->octeon_id].started_ok = 1;
3587 } else {
3588 dev_err(&oct->pci_dev->dev,
3589 "Unexpected application running on NIC (%d). Check firmware.\n",
3590 oct->app_mode);
3591 }
3592
3593 complete(&handshake[oct->octeon_id].started);
3594}
3595
3596/**
3597 * \brief Device initialization for each Octeon device that is probed
3598 * @param octeon_dev octeon device
3599 */
3600static int octeon_device_init(struct octeon_device *octeon_dev)
3601{
3602 int j, ret;
3603 struct octeon_device_priv *oct_priv =
3604 (struct octeon_device_priv *)octeon_dev->priv;
3605 atomic_set(&octeon_dev->status, OCT_DEV_BEGIN_STATE);
3606
3607 /* Enable access to the octeon device and make its DMA capability
3608 * known to the OS.
3609 */
3610 if (octeon_pci_os_setup(octeon_dev))
3611 return 1;
3612
3613 /* Identify the Octeon type and map the BAR address space. */
3614 if (octeon_chip_specific_setup(octeon_dev)) {
3615 dev_err(&octeon_dev->pci_dev->dev, "Chip specific setup failed\n");
3616 return 1;
3617 }
3618
3619 atomic_set(&octeon_dev->status, OCT_DEV_PCI_MAP_DONE);
3620
3621 octeon_dev->app_mode = CVM_DRV_INVALID_APP;
3622
3623 /* Do a soft reset of the Octeon device. */
3624 if (octeon_dev->fn_list.soft_reset(octeon_dev))
3625 return 1;
3626
3627 /* Initialize the dispatch mechanism used to push packets arriving on
3628 * Octeon Output queues.
3629 */
3630 if (octeon_init_dispatch_list(octeon_dev))
3631 return 1;
3632
3633 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3634 OPCODE_NIC_CORE_DRV_ACTIVE,
3635 octeon_core_drv_init,
3636 octeon_dev);
3637
3638 INIT_DELAYED_WORK(&octeon_dev->nic_poll_work.work, nic_starter);
3639 octeon_dev->nic_poll_work.ctxptr = (void *)octeon_dev;
3640 schedule_delayed_work(&octeon_dev->nic_poll_work.work,
3641 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
3642
3643 atomic_set(&octeon_dev->status, OCT_DEV_DISPATCH_INIT_DONE);
3644
3645 octeon_set_io_queues_off(octeon_dev);
3646
3647 /* Setup the data structures that manage this Octeon's Input queues. */
3648 if (octeon_setup_instr_queues(octeon_dev)) {
3649 dev_err(&octeon_dev->pci_dev->dev,
3650 "instruction queue initialization failed\n");
3651 /* On error, release any previously allocated queues */
3652 for (j = 0; j < octeon_dev->num_iqs; j++)
3653 octeon_delete_instr_queue(octeon_dev, j);
3654 return 1;
3655 }
3656 atomic_set(&octeon_dev->status, OCT_DEV_INSTR_QUEUE_INIT_DONE);
3657
3658 /* Initialize soft command buffer pool
3659 */
3660 if (octeon_setup_sc_buffer_pool(octeon_dev)) {
3661 dev_err(&octeon_dev->pci_dev->dev, "sc buffer pool allocation failed\n");
3662 return 1;
3663 }
3664 atomic_set(&octeon_dev->status, OCT_DEV_SC_BUFF_POOL_INIT_DONE);
3665
3666 /* Initialize lists to manage the requests of different types that
3667 * arrive from user & kernel applications for this octeon device.
3668 */
3669 if (octeon_setup_response_list(octeon_dev)) {
3670 dev_err(&octeon_dev->pci_dev->dev, "Response list allocation failed\n");
3671 return 1;
3672 }
3673 atomic_set(&octeon_dev->status, OCT_DEV_RESP_LIST_INIT_DONE);
3674
3675 if (octeon_setup_output_queues(octeon_dev)) {
3676 dev_err(&octeon_dev->pci_dev->dev, "Output queue initialization failed\n");
3677 /* Release any previously allocated queues */
3678 for (j = 0; j < octeon_dev->num_oqs; j++)
3679 octeon_delete_droq(octeon_dev, j);
3680 }
3681
3682 atomic_set(&octeon_dev->status, OCT_DEV_DROQ_INIT_DONE);
3683
3684 /* The input and output queue registers were setup earlier (the queues
3685 * were not enabled). Any additional registers that need to be
3686 * programmed should be done now.
3687 */
3688 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
3689 if (ret) {
3690 dev_err(&octeon_dev->pci_dev->dev,
3691 "Failed to configure device registers\n");
3692 return ret;
3693 }
3694
3695 /* Initialize the tasklet that handles output queue packet processing.*/
3696 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing droq tasklet\n");
3697 tasklet_init(&oct_priv->droq_tasklet, octeon_droq_bh,
3698 (unsigned long)octeon_dev);
3699
3700 /* Setup the interrupt handler and record the INT SUM register address
3701 */
3702 octeon_setup_interrupt(octeon_dev);
3703
3704 /* Enable Octeon device interrupts */
3705 octeon_dev->fn_list.enable_interrupt(octeon_dev->chip);
3706
3707 /* Enable the input and output queues for this Octeon device */
3708 octeon_dev->fn_list.enable_io_queues(octeon_dev);
3709
3710 atomic_set(&octeon_dev->status, OCT_DEV_IO_QUEUES_DONE);
3711
3712 dev_dbg(&octeon_dev->pci_dev->dev, "Waiting for DDR initialization...\n");
3713
3714 if (ddr_timeout == 0) {
3715 dev_info(&octeon_dev->pci_dev->dev,
3716 "WAITING. Set ddr_timeout to non-zero value to proceed with initialization.\n");
3717 }
3718
3719 schedule_timeout_uninterruptible(HZ * LIO_RESET_SECS);
3720
3721 /* Wait for the octeon to initialize DDR after the soft-reset. */
3722 ret = octeon_wait_for_ddr_init(octeon_dev, &ddr_timeout);
3723 if (ret) {
3724 dev_err(&octeon_dev->pci_dev->dev,
3725 "DDR not initialized. Please confirm that board is configured to boot from Flash, ret: %d\n",
3726 ret);
3727 return 1;
3728 }
3729
3730 if (octeon_wait_for_bootloader(octeon_dev, 1000) != 0) {
3731 dev_err(&octeon_dev->pci_dev->dev, "Board not responding\n");
3732 return 1;
3733 }
3734
3735 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing consoles\n");
3736 ret = octeon_init_consoles(octeon_dev);
3737 if (ret) {
3738 dev_err(&octeon_dev->pci_dev->dev, "Could not access board consoles\n");
3739 return 1;
3740 }
3741 ret = octeon_add_console(octeon_dev, 0);
3742 if (ret) {
3743 dev_err(&octeon_dev->pci_dev->dev, "Could not access board console\n");
3744 return 1;
3745 }
3746
3747 atomic_set(&octeon_dev->status, OCT_DEV_CONSOLE_INIT_DONE);
3748
3749 dev_dbg(&octeon_dev->pci_dev->dev, "Loading firmware\n");
3750 ret = load_firmware(octeon_dev);
3751 if (ret) {
3752 dev_err(&octeon_dev->pci_dev->dev, "Could not load firmware to board\n");
3753 return 1;
3754 }
3755
3756 handshake[octeon_dev->octeon_id].init_ok = 1;
3757 complete(&handshake[octeon_dev->octeon_id].init);
3758
3759 atomic_set(&octeon_dev->status, OCT_DEV_HOST_OK);
3760
3761 /* Send Credit for Octeon Output queues. Credits are always sent after
3762 * the output queue is enabled.
3763 */
3764 for (j = 0; j < octeon_dev->num_oqs; j++)
3765 writel(octeon_dev->droq[j]->max_count,
3766 octeon_dev->droq[j]->pkts_credit_reg);
3767
3768 /* Packets can start arriving on the output queues from this point. */
3769
3770 return 0;
3771}
3772
3773/**
3774 * \brief Exits the module
3775 */
3776static void __exit liquidio_exit(void)
3777{
3778 liquidio_deinit_pci();
3779
3780 pr_info("LiquidIO network module is now unloaded\n");
3781}
3782
3783module_init(liquidio_init);
3784module_exit(liquidio_exit);