blob: 8c82cd33c0657fed76aa8b4ef17e04a48e504e68 [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>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070023#include <linux/pci.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070024#include <linux/firmware.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070025#include <linux/ptp_clock_kernel.h>
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -070026#include <net/vxlan.h>
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -070027#include <linux/kthread.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070028#include "liquidio_common.h"
29#include "octeon_droq.h"
30#include "octeon_iq.h"
31#include "response_manager.h"
32#include "octeon_device.h"
33#include "octeon_nic.h"
34#include "octeon_main.h"
35#include "octeon_network.h"
36#include "cn66xx_regs.h"
37#include "cn66xx_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070038#include "cn68xx_device.h"
Raghu Vatsavayi72c00912016-08-31 11:03:25 -070039#include "cn23xx_pf_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070040#include "liquidio_image.h"
41
42MODULE_AUTHOR("Cavium Networks, <support@cavium.com>");
43MODULE_DESCRIPTION("Cavium LiquidIO Intelligent Server Adapter Driver");
44MODULE_LICENSE("GPL");
45MODULE_VERSION(LIQUIDIO_VERSION);
46MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210SV_NAME LIO_FW_NAME_SUFFIX);
47MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210NV_NAME LIO_FW_NAME_SUFFIX);
48MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_410NV_NAME LIO_FW_NAME_SUFFIX);
49
50static int ddr_timeout = 10000;
51module_param(ddr_timeout, int, 0644);
52MODULE_PARM_DESC(ddr_timeout,
53 "Number of milliseconds to wait for DDR initialization. 0 waits for ddr_timeout to be set to non-zero value before starting to check");
54
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070055#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
56
Raghu Vatsavayi1f164712016-06-21 22:53:11 -070057#define INCR_INSTRQUEUE_PKT_COUNT(octeon_dev_ptr, iq_no, field, count) \
58 (octeon_dev_ptr->instr_queue[iq_no]->stats.field += count)
59
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070060static int debug = -1;
61module_param(debug, int, 0644);
62MODULE_PARM_DESC(debug, "NETIF_MSG debug bits");
63
64static char fw_type[LIO_MAX_FW_TYPE_LEN];
65module_param_string(fw_type, fw_type, sizeof(fw_type), 0000);
66MODULE_PARM_DESC(fw_type, "Type of firmware to be loaded. Default \"nic\"");
67
68static int conf_type;
69module_param(conf_type, int, 0);
70MODULE_PARM_DESC(conf_type, "select octeon configuration 0 default 1 ovs");
71
Raghu Vatsavayia5b37882016-06-14 16:54:48 -070072static int ptp_enable = 1;
73
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070074/* Bit mask values for lio->ifstate */
75#define LIO_IFSTATE_DROQ_OPS 0x01
76#define LIO_IFSTATE_REGISTERED 0x02
77#define LIO_IFSTATE_RUNNING 0x04
78#define LIO_IFSTATE_RX_TIMESTAMP_ENABLED 0x08
79
80/* Polling interval for determining when NIC application is alive */
81#define LIQUIDIO_STARTER_POLL_INTERVAL_MS 100
82
83/* runtime link query interval */
84#define LIQUIDIO_LINK_QUERY_INTERVAL_MS 1000
85
86struct liquidio_if_cfg_context {
87 int octeon_id;
88
89 wait_queue_head_t wc;
90
91 int cond;
92};
93
94struct liquidio_if_cfg_resp {
95 u64 rh;
96 struct liquidio_if_cfg_info cfg_info;
97 u64 status;
98};
99
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -0700100struct liquidio_rx_ctl_context {
101 int octeon_id;
102
103 wait_queue_head_t wc;
104
105 int cond;
106};
107
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700108struct oct_link_status_resp {
109 u64 rh;
110 struct oct_link_info link_info;
111 u64 status;
112};
113
114struct oct_timestamp_resp {
115 u64 rh;
116 u64 timestamp;
117 u64 status;
118};
119
120#define OCT_TIMESTAMP_RESP_SIZE (sizeof(struct oct_timestamp_resp))
121
122union tx_info {
123 u64 u64;
124 struct {
125#ifdef __BIG_ENDIAN_BITFIELD
126 u16 gso_size;
127 u16 gso_segs;
128 u32 reserved;
129#else
130 u32 reserved;
131 u16 gso_segs;
132 u16 gso_size;
133#endif
134 } s;
135};
136
137/** Octeon device properties to be used by the NIC module.
138 * Each octeon device in the system will be represented
139 * by this structure in the NIC module.
140 */
141
142#define OCTNIC_MAX_SG (MAX_SKB_FRAGS)
143
144#define OCTNIC_GSO_MAX_HEADER_SIZE 128
Raghu Vatsavayi72c00912016-08-31 11:03:25 -0700145#define OCTNIC_GSO_MAX_SIZE \
146 (CN23XX_DEFAULT_INPUT_JABBER - OCTNIC_GSO_MAX_HEADER_SIZE)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700147
148/** Structure of a node in list of gather components maintained by
149 * NIC driver for each network device.
150 */
151struct octnic_gather {
152 /** List manipulation. Next and prev pointers. */
153 struct list_head list;
154
155 /** Size of the gather component at sg in bytes. */
156 int sg_size;
157
158 /** Number of bytes that sg was adjusted to make it 8B-aligned. */
159 int adjust;
160
161 /** Gather component that can accommodate max sized fragment list
162 * received from the IP layer.
163 */
164 struct octeon_sg_entry *sg;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700165
166 u64 sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700167};
168
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700169struct handshake {
170 struct completion init;
171 struct completion started;
172 struct pci_dev *pci_dev;
173 int init_ok;
174 int started_ok;
175};
176
177struct octeon_device_priv {
178 /** Tasklet structures for this device. */
179 struct tasklet_struct droq_tasklet;
180 unsigned long napi_mask;
181};
182
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800183#ifdef CONFIG_PCI_IOV
184static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs);
185#endif
186
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700187static int octeon_device_init(struct octeon_device *);
Raghu Vatsavayi32581242016-08-31 11:03:20 -0700188static int liquidio_stop(struct net_device *netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700189static void liquidio_remove(struct pci_dev *pdev);
190static int liquidio_probe(struct pci_dev *pdev,
191 const struct pci_device_id *ent);
192
193static struct handshake handshake[MAX_OCTEON_DEVICES];
194static struct completion first_stage;
195
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700196static void octeon_droq_bh(unsigned long pdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700197{
198 int q_no;
199 int reschedule = 0;
200 struct octeon_device *oct = (struct octeon_device *)pdev;
201 struct octeon_device_priv *oct_priv =
202 (struct octeon_device_priv *)oct->priv;
203
204 /* for (q_no = 0; q_no < oct->num_oqs; q_no++) { */
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700205 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES(oct); q_no++) {
206 if (!(oct->io_qmask.oq & (1ULL << q_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700207 continue;
208 reschedule |= octeon_droq_process_packets(oct, oct->droq[q_no],
209 MAX_PACKET_BUDGET);
Raghu Vatsavayicd8b1eb2016-08-31 11:03:22 -0700210 lio_enable_irq(oct->droq[q_no], NULL);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700211
212 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
213 /* set time and cnt interrupt thresholds for this DROQ
214 * for NAPI
215 */
216 int adjusted_q_no = q_no + oct->sriov_info.pf_srn;
217
218 octeon_write_csr64(
219 oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(adjusted_q_no),
220 0x5700000040ULL);
221 octeon_write_csr64(
222 oct, CN23XX_SLI_OQ_PKTS_SENT(adjusted_q_no), 0);
223 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700224 }
225
226 if (reschedule)
227 tasklet_schedule(&oct_priv->droq_tasklet);
228}
229
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700230static int lio_wait_for_oq_pkts(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700231{
232 struct octeon_device_priv *oct_priv =
233 (struct octeon_device_priv *)oct->priv;
234 int retry = 100, pkt_cnt = 0, pending_pkts = 0;
235 int i;
236
237 do {
238 pending_pkts = 0;
239
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700240 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
241 if (!(oct->io_qmask.oq & (1ULL << i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700242 continue;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700243 pkt_cnt += octeon_droq_check_hw_for_pkts(oct->droq[i]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700244 }
245 if (pkt_cnt > 0) {
246 pending_pkts += pkt_cnt;
247 tasklet_schedule(&oct_priv->droq_tasklet);
248 }
249 pkt_cnt = 0;
250 schedule_timeout_uninterruptible(1);
251
252 } while (retry-- && pending_pkts);
253
254 return pkt_cnt;
255}
256
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700257/**
258 * \brief Forces all IO queues off on a given device
259 * @param oct Pointer to Octeon device
260 */
261static void force_io_queues_off(struct octeon_device *oct)
262{
263 if ((oct->chip_id == OCTEON_CN66XX) ||
264 (oct->chip_id == OCTEON_CN68XX)) {
265 /* Reset the Enable bits for Input Queues. */
266 octeon_write_csr(oct, CN6XXX_SLI_PKT_INSTR_ENB, 0);
267
268 /* Reset the Enable bits for Output Queues. */
269 octeon_write_csr(oct, CN6XXX_SLI_PKT_OUT_ENB, 0);
270 }
271}
272
273/**
274 * \brief wait for all pending requests to complete
275 * @param oct Pointer to Octeon device
276 *
277 * Called during shutdown sequence
278 */
279static int wait_for_pending_requests(struct octeon_device *oct)
280{
281 int i, pcount = 0;
282
283 for (i = 0; i < 100; i++) {
284 pcount =
285 atomic_read(&oct->response_list
286 [OCTEON_ORDERED_SC_LIST].pending_req_count);
287 if (pcount)
288 schedule_timeout_uninterruptible(HZ / 10);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700289 else
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700290 break;
291 }
292
293 if (pcount)
294 return 1;
295
296 return 0;
297}
298
299/**
300 * \brief Cause device to go quiet so it can be safely removed/reset/etc
301 * @param oct Pointer to Octeon device
302 */
303static inline void pcierror_quiesce_device(struct octeon_device *oct)
304{
305 int i;
306
307 /* Disable the input and output queues now. No more packets will
308 * arrive from Octeon, but we should wait for all packet processing
309 * to finish.
310 */
311 force_io_queues_off(oct);
312
313 /* To allow for in-flight requests */
314 schedule_timeout_uninterruptible(100);
315
316 if (wait_for_pending_requests(oct))
317 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
318
319 /* Force all requests waiting to be fetched by OCTEON to complete. */
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700320 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700321 struct octeon_instr_queue *iq;
322
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700323 if (!(oct->io_qmask.iq & (1ULL << i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700324 continue;
325 iq = oct->instr_queue[i];
326
327 if (atomic_read(&iq->instr_pending)) {
328 spin_lock_bh(&iq->lock);
329 iq->fill_cnt = 0;
330 iq->octeon_read_index = iq->host_write_index;
331 iq->stats.instr_processed +=
332 atomic_read(&iq->instr_pending);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700333 lio_process_iq_request_list(oct, iq, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700334 spin_unlock_bh(&iq->lock);
335 }
336 }
337
338 /* Force all pending ordered list requests to time out. */
339 lio_process_ordered_list(oct, 1);
340
341 /* We do not need to wait for output queue packets to be processed. */
342}
343
344/**
345 * \brief Cleanup PCI AER uncorrectable error status
346 * @param dev Pointer to PCI device
347 */
348static void cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
349{
350 int pos = 0x100;
351 u32 status, mask;
352
353 pr_info("%s :\n", __func__);
354
355 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
356 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
357 if (dev->error_state == pci_channel_io_normal)
358 status &= ~mask; /* Clear corresponding nonfatal bits */
359 else
360 status &= mask; /* Clear corresponding fatal bits */
361 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
362}
363
364/**
365 * \brief Stop all PCI IO to a given device
366 * @param dev Pointer to Octeon device
367 */
368static void stop_pci_io(struct octeon_device *oct)
369{
370 /* No more instructions will be forwarded. */
371 atomic_set(&oct->status, OCT_DEV_IN_RESET);
372
373 pci_disable_device(oct->pci_dev);
374
375 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700376 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700377
378 pcierror_quiesce_device(oct);
379
380 /* Release the interrupt line */
381 free_irq(oct->pci_dev->irq, oct);
382
383 if (oct->flags & LIO_FLAG_MSI_ENABLED)
384 pci_disable_msi(oct->pci_dev);
385
386 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
387 lio_get_state_string(&oct->status));
388
389 /* cn63xx_cleanup_aer_uncorrect_error_status(oct->pci_dev); */
390 /* making it a common function for all OCTEON models */
391 cleanup_aer_uncorrect_error_status(oct->pci_dev);
392}
393
394/**
395 * \brief called when PCI error is detected
396 * @param pdev Pointer to PCI device
397 * @param state The current pci connection state
398 *
399 * This function is called after a PCI bus error affecting
400 * this device has been detected.
401 */
402static pci_ers_result_t liquidio_pcie_error_detected(struct pci_dev *pdev,
403 pci_channel_state_t state)
404{
405 struct octeon_device *oct = pci_get_drvdata(pdev);
406
407 /* Non-correctable Non-fatal errors */
408 if (state == pci_channel_io_normal) {
409 dev_err(&oct->pci_dev->dev, "Non-correctable non-fatal error reported:\n");
410 cleanup_aer_uncorrect_error_status(oct->pci_dev);
411 return PCI_ERS_RESULT_CAN_RECOVER;
412 }
413
414 /* Non-correctable Fatal errors */
415 dev_err(&oct->pci_dev->dev, "Non-correctable FATAL reported by PCI AER driver\n");
416 stop_pci_io(oct);
417
418 /* Always return a DISCONNECT. There is no support for recovery but only
419 * for a clean shutdown.
420 */
421 return PCI_ERS_RESULT_DISCONNECT;
422}
423
424/**
425 * \brief mmio handler
426 * @param pdev Pointer to PCI device
427 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700428static pci_ers_result_t liquidio_pcie_mmio_enabled(
429 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700430{
431 /* We should never hit this since we never ask for a reset for a Fatal
432 * Error. We always return DISCONNECT in io_error above.
433 * But play safe and return RECOVERED for now.
434 */
435 return PCI_ERS_RESULT_RECOVERED;
436}
437
438/**
439 * \brief called after the pci bus has been reset.
440 * @param pdev Pointer to PCI device
441 *
442 * Restart the card from scratch, as if from a cold-boot. Implementation
443 * resembles the first-half of the octeon_resume routine.
444 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700445static pci_ers_result_t liquidio_pcie_slot_reset(
446 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700447{
448 /* We should never hit this since we never ask for a reset for a Fatal
449 * Error. We always return DISCONNECT in io_error above.
450 * But play safe and return RECOVERED for now.
451 */
452 return PCI_ERS_RESULT_RECOVERED;
453}
454
455/**
456 * \brief called when traffic can start flowing again.
457 * @param pdev Pointer to PCI device
458 *
459 * This callback is called when the error recovery driver tells us that
460 * its OK to resume normal operation. Implementation resembles the
461 * second-half of the octeon_resume routine.
462 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700463static void liquidio_pcie_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700464{
465 /* Nothing to be done here. */
466}
467
468#ifdef CONFIG_PM
469/**
470 * \brief called when suspending
471 * @param pdev Pointer to PCI device
472 * @param state state to suspend to
473 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700474static int liquidio_suspend(struct pci_dev *pdev __attribute__((unused)),
475 pm_message_t state __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700476{
477 return 0;
478}
479
480/**
481 * \brief called when resuming
482 * @param pdev Pointer to PCI device
483 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700484static int liquidio_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700485{
486 return 0;
487}
488#endif
489
490/* For PCI-E Advanced Error Recovery (AER) Interface */
Julia Lawall166e2362015-11-14 11:06:53 +0100491static const struct pci_error_handlers liquidio_err_handler = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700492 .error_detected = liquidio_pcie_error_detected,
493 .mmio_enabled = liquidio_pcie_mmio_enabled,
494 .slot_reset = liquidio_pcie_slot_reset,
495 .resume = liquidio_pcie_resume,
496};
497
498static const struct pci_device_id liquidio_pci_tbl[] = {
499 { /* 68xx */
500 PCI_VENDOR_ID_CAVIUM, 0x91, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
501 },
502 { /* 66xx */
503 PCI_VENDOR_ID_CAVIUM, 0x92, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
504 },
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -0700505 { /* 23xx pf */
506 PCI_VENDOR_ID_CAVIUM, 0x9702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
507 },
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700508 {
509 0, 0, 0, 0, 0, 0, 0
510 }
511};
512MODULE_DEVICE_TABLE(pci, liquidio_pci_tbl);
513
514static struct pci_driver liquidio_pci_driver = {
515 .name = "LiquidIO",
516 .id_table = liquidio_pci_tbl,
517 .probe = liquidio_probe,
518 .remove = liquidio_remove,
519 .err_handler = &liquidio_err_handler, /* For AER */
520
521#ifdef CONFIG_PM
522 .suspend = liquidio_suspend,
523 .resume = liquidio_resume,
524#endif
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800525#ifdef CONFIG_PCI_IOV
526 .sriov_configure = liquidio_enable_sriov,
527#endif
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700528};
529
530/**
531 * \brief register PCI driver
532 */
533static int liquidio_init_pci(void)
534{
535 return pci_register_driver(&liquidio_pci_driver);
536}
537
538/**
539 * \brief unregister PCI driver
540 */
541static void liquidio_deinit_pci(void)
542{
543 pci_unregister_driver(&liquidio_pci_driver);
544}
545
546/**
547 * \brief check interface state
548 * @param lio per-network private data
549 * @param state_flag flag state to check
550 */
551static inline int ifstate_check(struct lio *lio, int state_flag)
552{
553 return atomic_read(&lio->ifstate) & state_flag;
554}
555
556/**
557 * \brief set interface state
558 * @param lio per-network private data
559 * @param state_flag flag state to set
560 */
561static inline void ifstate_set(struct lio *lio, int state_flag)
562{
563 atomic_set(&lio->ifstate, (atomic_read(&lio->ifstate) | state_flag));
564}
565
566/**
567 * \brief clear interface state
568 * @param lio per-network private data
569 * @param state_flag flag state to clear
570 */
571static inline void ifstate_reset(struct lio *lio, int state_flag)
572{
573 atomic_set(&lio->ifstate, (atomic_read(&lio->ifstate) & ~(state_flag)));
574}
575
576/**
577 * \brief Stop Tx queues
578 * @param netdev network device
579 */
580static inline void txqs_stop(struct net_device *netdev)
581{
582 if (netif_is_multiqueue(netdev)) {
583 int i;
584
585 for (i = 0; i < netdev->num_tx_queues; i++)
586 netif_stop_subqueue(netdev, i);
587 } else {
588 netif_stop_queue(netdev);
589 }
590}
591
592/**
593 * \brief Start Tx queues
594 * @param netdev network device
595 */
596static inline void txqs_start(struct net_device *netdev)
597{
598 if (netif_is_multiqueue(netdev)) {
599 int i;
600
601 for (i = 0; i < netdev->num_tx_queues; i++)
602 netif_start_subqueue(netdev, i);
603 } else {
604 netif_start_queue(netdev);
605 }
606}
607
608/**
609 * \brief Wake Tx queues
610 * @param netdev network device
611 */
612static inline void txqs_wake(struct net_device *netdev)
613{
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700614 struct lio *lio = GET_LIO(netdev);
615
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700616 if (netif_is_multiqueue(netdev)) {
617 int i;
618
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700619 for (i = 0; i < netdev->num_tx_queues; i++) {
620 int qno = lio->linfo.txpciq[i %
621 (lio->linfo.num_txpciq)].s.q_no;
622
623 if (__netif_subqueue_stopped(netdev, i)) {
624 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, qno,
625 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700626 netif_wake_subqueue(netdev, i);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700627 }
628 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700629 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700630 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
631 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700632 netif_wake_queue(netdev);
633 }
634}
635
636/**
637 * \brief Stop Tx queue
638 * @param netdev network device
639 */
640static void stop_txq(struct net_device *netdev)
641{
642 txqs_stop(netdev);
643}
644
645/**
646 * \brief Start Tx queue
647 * @param netdev network device
648 */
649static void start_txq(struct net_device *netdev)
650{
651 struct lio *lio = GET_LIO(netdev);
652
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700653 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700654 txqs_start(netdev);
655 return;
656 }
657}
658
659/**
660 * \brief Wake a queue
661 * @param netdev network device
662 * @param q which queue to wake
663 */
664static inline void wake_q(struct net_device *netdev, int q)
665{
666 if (netif_is_multiqueue(netdev))
667 netif_wake_subqueue(netdev, q);
668 else
669 netif_wake_queue(netdev);
670}
671
672/**
673 * \brief Stop a queue
674 * @param netdev network device
675 * @param q which queue to stop
676 */
677static inline void stop_q(struct net_device *netdev, int q)
678{
679 if (netif_is_multiqueue(netdev))
680 netif_stop_subqueue(netdev, q);
681 else
682 netif_stop_queue(netdev);
683}
684
685/**
686 * \brief Check Tx queue status, and take appropriate action
687 * @param lio per-network private data
688 * @returns 0 if full, number of queues woken up otherwise
689 */
690static inline int check_txq_status(struct lio *lio)
691{
692 int ret_val = 0;
693
694 if (netif_is_multiqueue(lio->netdev)) {
695 int numqs = lio->netdev->num_tx_queues;
696 int q, iq = 0;
697
698 /* check each sub-queue state */
699 for (q = 0; q < numqs; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700700 iq = lio->linfo.txpciq[q %
701 (lio->linfo.num_txpciq)].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700702 if (octnet_iq_is_full(lio->oct_dev, iq))
703 continue;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700704 if (__netif_subqueue_stopped(lio->netdev, q)) {
705 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700706 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq,
707 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700708 ret_val++;
709 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700710 }
711 } else {
712 if (octnet_iq_is_full(lio->oct_dev, lio->txq))
713 return 0;
714 wake_q(lio->netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700715 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
716 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700717 ret_val = 1;
718 }
719 return ret_val;
720}
721
722/**
723 * Remove the node at the head of the list. The list would be empty at
724 * the end of this call if there are no more nodes in the list.
725 */
726static inline struct list_head *list_delete_head(struct list_head *root)
727{
728 struct list_head *node;
729
730 if ((root->prev == root) && (root->next == root))
731 node = NULL;
732 else
733 node = root->next;
734
735 if (node)
736 list_del(node);
737
738 return node;
739}
740
741/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700742 * \brief Delete gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700743 * @param lio per-network private data
744 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700745static void delete_glists(struct lio *lio)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700746{
747 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700748 int i;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700749
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700750 if (!lio->glist)
751 return;
752
753 for (i = 0; i < lio->linfo.num_txpciq; i++) {
754 do {
755 g = (struct octnic_gather *)
756 list_delete_head(&lio->glist[i]);
757 if (g) {
758 if (g->sg) {
759 dma_unmap_single(&lio->oct_dev->
760 pci_dev->dev,
761 g->sg_dma_ptr,
762 g->sg_size,
763 DMA_TO_DEVICE);
764 kfree((void *)((unsigned long)g->sg -
765 g->adjust));
766 }
767 kfree(g);
768 }
769 } while (g);
770 }
771
772 kfree((void *)lio->glist);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700773}
774
775/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700776 * \brief Setup gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700777 * @param lio per-network private data
778 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700779static int setup_glists(struct octeon_device *oct, struct lio *lio, int num_iqs)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700780{
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700781 int i, j;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700782 struct octnic_gather *g;
783
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700784 lio->glist_lock = kcalloc(num_iqs, sizeof(*lio->glist_lock),
785 GFP_KERNEL);
786 if (!lio->glist_lock)
787 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700788
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700789 lio->glist = kcalloc(num_iqs, sizeof(*lio->glist),
790 GFP_KERNEL);
791 if (!lio->glist) {
792 kfree((void *)lio->glist_lock);
793 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700794 }
795
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700796 for (i = 0; i < num_iqs; i++) {
797 int numa_node = cpu_to_node(i % num_online_cpus());
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700798
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700799 spin_lock_init(&lio->glist_lock[i]);
800
801 INIT_LIST_HEAD(&lio->glist[i]);
802
803 for (j = 0; j < lio->tx_qsize; j++) {
804 g = kzalloc_node(sizeof(*g), GFP_KERNEL,
805 numa_node);
806 if (!g)
807 g = kzalloc(sizeof(*g), GFP_KERNEL);
808 if (!g)
809 break;
810
811 g->sg_size = ((ROUNDUP4(OCTNIC_MAX_SG) >> 2) *
812 OCT_SG_ENTRY_SIZE);
813
814 g->sg = kmalloc_node(g->sg_size + 8,
815 GFP_KERNEL, numa_node);
816 if (!g->sg)
817 g->sg = kmalloc(g->sg_size + 8, GFP_KERNEL);
818 if (!g->sg) {
819 kfree(g);
820 break;
821 }
822
823 /* The gather component should be aligned on 64-bit
824 * boundary
825 */
826 if (((unsigned long)g->sg) & 7) {
827 g->adjust = 8 - (((unsigned long)g->sg) & 7);
828 g->sg = (struct octeon_sg_entry *)
829 ((unsigned long)g->sg + g->adjust);
830 }
831 g->sg_dma_ptr = dma_map_single(&oct->pci_dev->dev,
832 g->sg, g->sg_size,
833 DMA_TO_DEVICE);
834 if (dma_mapping_error(&oct->pci_dev->dev,
835 g->sg_dma_ptr)) {
836 kfree((void *)((unsigned long)g->sg -
837 g->adjust));
838 kfree(g);
839 break;
840 }
841
842 list_add_tail(&g->list, &lio->glist[i]);
843 }
844
845 if (j != lio->tx_qsize) {
846 delete_glists(lio);
847 return 1;
848 }
849 }
850
851 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700852}
853
854/**
855 * \brief Print link information
856 * @param netdev network device
857 */
858static void print_link_info(struct net_device *netdev)
859{
860 struct lio *lio = GET_LIO(netdev);
861
862 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED) {
863 struct oct_link_info *linfo = &lio->linfo;
864
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700865 if (linfo->link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700866 netif_info(lio, link, lio->netdev, "%d Mbps %s Duplex UP\n",
867 linfo->link.s.speed,
868 (linfo->link.s.duplex) ? "Full" : "Half");
869 } else {
870 netif_info(lio, link, lio->netdev, "Link Down\n");
871 }
872 }
873}
874
875/**
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -0700876 * \brief Routine to notify MTU change
877 * @param work work_struct data structure
878 */
879static void octnet_link_status_change(struct work_struct *work)
880{
881 struct cavium_wk *wk = (struct cavium_wk *)work;
882 struct lio *lio = (struct lio *)wk->ctxptr;
883
884 rtnl_lock();
885 call_netdevice_notifiers(NETDEV_CHANGEMTU, lio->netdev);
886 rtnl_unlock();
887}
888
889/**
890 * \brief Sets up the mtu status change work
891 * @param netdev network device
892 */
893static inline int setup_link_status_change_wq(struct net_device *netdev)
894{
895 struct lio *lio = GET_LIO(netdev);
896 struct octeon_device *oct = lio->oct_dev;
897
898 lio->link_status_wq.wq = alloc_workqueue("link-status",
899 WQ_MEM_RECLAIM, 0);
900 if (!lio->link_status_wq.wq) {
901 dev_err(&oct->pci_dev->dev, "unable to create cavium link status wq\n");
902 return -1;
903 }
904 INIT_DELAYED_WORK(&lio->link_status_wq.wk.work,
905 octnet_link_status_change);
906 lio->link_status_wq.wk.ctxptr = lio;
907
908 return 0;
909}
910
911static inline void cleanup_link_status_change_wq(struct net_device *netdev)
912{
913 struct lio *lio = GET_LIO(netdev);
914
915 if (lio->link_status_wq.wq) {
916 cancel_delayed_work_sync(&lio->link_status_wq.wk.work);
917 destroy_workqueue(lio->link_status_wq.wq);
918 }
919}
920
921/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700922 * \brief Update link status
923 * @param netdev network device
924 * @param ls link status structure
925 *
926 * Called on receipt of a link status response from the core application to
927 * update each interface's link status.
928 */
929static inline void update_link_status(struct net_device *netdev,
930 union oct_link_status *ls)
931{
932 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700933 int changed = (lio->linfo.link.u64 != ls->u64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700934
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700935 lio->linfo.link.u64 = ls->u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700936
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700937 if ((lio->intf_open) && (changed)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700938 print_link_info(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700939 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700940
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700941 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700942 netif_carrier_on(netdev);
943 /* start_txq(netdev); */
944 txqs_wake(netdev);
945 } else {
946 netif_carrier_off(netdev);
947 stop_txq(netdev);
948 }
949 }
950}
951
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700952/* Runs in interrupt context. */
953static void update_txq_status(struct octeon_device *oct, int iq_num)
954{
955 struct net_device *netdev;
956 struct lio *lio;
957 struct octeon_instr_queue *iq = oct->instr_queue[iq_num];
958
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700959 netdev = oct->props[iq->ifidx].netdev;
960
961 /* This is needed because the first IQ does not have
962 * a netdev associated with it.
963 */
964 if (!netdev)
965 return;
966
967 lio = GET_LIO(netdev);
968 if (netif_is_multiqueue(netdev)) {
969 if (__netif_subqueue_stopped(netdev, iq->q_index) &&
970 lio->linfo.link.s.link_up &&
971 (!octnet_iq_is_full(oct, iq_num))) {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700972 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq_num,
973 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700974 netif_wake_subqueue(netdev, iq->q_index);
975 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700976 if (!octnet_iq_is_full(oct, lio->txq)) {
977 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev,
978 lio->txq,
979 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700980 wake_q(netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700981 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700982 }
983 }
984}
985
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700986static
987int liquidio_schedule_msix_droq_pkt_handler(struct octeon_droq *droq, u64 ret)
988{
989 struct octeon_device *oct = droq->oct_dev;
990 struct octeon_device_priv *oct_priv =
991 (struct octeon_device_priv *)oct->priv;
992
993 if (droq->ops.poll_mode) {
994 droq->ops.napi_fn(droq);
995 } else {
996 if (ret & MSIX_PO_INT) {
997 tasklet_schedule(&oct_priv->droq_tasklet);
998 return 1;
999 }
1000 /* this will be flushed periodically by check iq db */
1001 if (ret & MSIX_PI_INT)
1002 return 0;
1003 }
1004 return 0;
1005}
1006
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001007/**
1008 * \brief Droq packet processor sceduler
1009 * @param oct octeon device
1010 */
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07001011static void liquidio_schedule_droq_pkt_handlers(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001012{
1013 struct octeon_device_priv *oct_priv =
1014 (struct octeon_device_priv *)oct->priv;
1015 u64 oq_no;
1016 struct octeon_droq *droq;
1017
1018 if (oct->int_status & OCT_DEV_INTR_PKT_DATA) {
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001019 for (oq_no = 0; oq_no < MAX_OCTEON_OUTPUT_QUEUES(oct);
1020 oq_no++) {
1021 if (!(oct->droq_intr & (1ULL << oq_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001022 continue;
1023
1024 droq = oct->droq[oq_no];
1025
1026 if (droq->ops.poll_mode) {
1027 droq->ops.napi_fn(droq);
1028 oct_priv->napi_mask |= (1 << oq_no);
1029 } else {
1030 tasklet_schedule(&oct_priv->droq_tasklet);
1031 }
1032 }
1033 }
1034}
1035
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001036static irqreturn_t
1037liquidio_msix_intr_handler(int irq __attribute__((unused)), void *dev)
1038{
1039 u64 ret;
1040 struct octeon_ioq_vector *ioq_vector = (struct octeon_ioq_vector *)dev;
1041 struct octeon_device *oct = ioq_vector->oct_dev;
1042 struct octeon_droq *droq = oct->droq[ioq_vector->droq_index];
1043
1044 ret = oct->fn_list.msix_interrupt_handler(ioq_vector);
1045
1046 if ((ret & MSIX_PO_INT) || (ret & MSIX_PI_INT))
1047 liquidio_schedule_msix_droq_pkt_handler(droq, ret);
1048
1049 return IRQ_HANDLED;
1050}
1051
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001052/**
1053 * \brief Interrupt handler for octeon
1054 * @param irq unused
1055 * @param dev octeon device
1056 */
1057static
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001058irqreturn_t liquidio_legacy_intr_handler(int irq __attribute__((unused)),
1059 void *dev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001060{
1061 struct octeon_device *oct = (struct octeon_device *)dev;
1062 irqreturn_t ret;
1063
1064 /* Disable our interrupts for the duration of ISR */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001065 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001066
1067 ret = oct->fn_list.process_interrupt_regs(oct);
1068
1069 if (ret == IRQ_HANDLED)
1070 liquidio_schedule_droq_pkt_handlers(oct);
1071
1072 /* Re-enable our interrupts */
1073 if (!(atomic_read(&oct->status) == OCT_DEV_IN_RESET))
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001074 oct->fn_list.enable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001075
1076 return ret;
1077}
1078
1079/**
1080 * \brief Setup interrupt for octeon device
1081 * @param oct octeon device
1082 *
1083 * Enable interrupt in Octeon device as given in the PCI interrupt mask.
1084 */
1085static int octeon_setup_interrupt(struct octeon_device *oct)
1086{
1087 int irqret, err;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001088 struct msix_entry *msix_entries;
1089 int i;
1090 int num_ioq_vectors;
1091 int num_alloc_ioq_vectors;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001092
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001093 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
1094 oct->num_msix_irqs = oct->sriov_info.num_pf_rings;
1095 /* one non ioq interrupt for handling sli_mac_pf_int_sum */
1096 oct->num_msix_irqs += 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001097
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001098 oct->msix_entries = kcalloc(
1099 oct->num_msix_irqs, sizeof(struct msix_entry), GFP_KERNEL);
1100 if (!oct->msix_entries)
1101 return 1;
1102
1103 msix_entries = (struct msix_entry *)oct->msix_entries;
1104 /*Assumption is that pf msix vectors start from pf srn to pf to
1105 * trs and not from 0. if not change this code
1106 */
1107 for (i = 0; i < oct->num_msix_irqs - 1; i++)
1108 msix_entries[i].entry = oct->sriov_info.pf_srn + i;
1109 msix_entries[oct->num_msix_irqs - 1].entry =
1110 oct->sriov_info.trs;
1111 num_alloc_ioq_vectors = pci_enable_msix_range(
1112 oct->pci_dev, msix_entries,
1113 oct->num_msix_irqs,
1114 oct->num_msix_irqs);
1115 if (num_alloc_ioq_vectors < 0) {
1116 dev_err(&oct->pci_dev->dev, "unable to Allocate MSI-X interrupts\n");
1117 kfree(oct->msix_entries);
1118 oct->msix_entries = NULL;
1119 return 1;
1120 }
1121 dev_dbg(&oct->pci_dev->dev, "OCTEON: Enough MSI-X interrupts are allocated...\n");
1122
1123 num_ioq_vectors = oct->num_msix_irqs;
1124
1125 /** For PF, there is one non-ioq interrupt handler */
1126 num_ioq_vectors -= 1;
1127 irqret = request_irq(msix_entries[num_ioq_vectors].vector,
1128 liquidio_legacy_intr_handler, 0, "octeon",
1129 oct);
1130 if (irqret) {
1131 dev_err(&oct->pci_dev->dev,
1132 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1133 irqret);
1134 pci_disable_msix(oct->pci_dev);
1135 kfree(oct->msix_entries);
1136 oct->msix_entries = NULL;
1137 return 1;
1138 }
1139
1140 for (i = 0; i < num_ioq_vectors; i++) {
1141 irqret = request_irq(msix_entries[i].vector,
1142 liquidio_msix_intr_handler, 0,
1143 "octeon", &oct->ioq_vector[i]);
1144 if (irqret) {
1145 dev_err(&oct->pci_dev->dev,
1146 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1147 irqret);
1148 /** Freeing the non-ioq irq vector here . */
1149 free_irq(msix_entries[num_ioq_vectors].vector,
1150 oct);
1151
1152 while (i) {
1153 i--;
1154 /** clearing affinity mask. */
1155 irq_set_affinity_hint(
1156 msix_entries[i].vector, NULL);
1157 free_irq(msix_entries[i].vector,
1158 &oct->ioq_vector[i]);
1159 }
1160 pci_disable_msix(oct->pci_dev);
1161 kfree(oct->msix_entries);
1162 oct->msix_entries = NULL;
1163 return 1;
1164 }
1165 oct->ioq_vector[i].vector = msix_entries[i].vector;
1166 /* assign the cpu mask for this msix interrupt vector */
1167 irq_set_affinity_hint(
1168 msix_entries[i].vector,
1169 (&oct->ioq_vector[i].affinity_mask));
1170 }
1171 dev_dbg(&oct->pci_dev->dev, "OCTEON[%d]: MSI-X enabled\n",
1172 oct->octeon_id);
1173 } else {
1174 err = pci_enable_msi(oct->pci_dev);
1175 if (err)
1176 dev_warn(&oct->pci_dev->dev, "Reverting to legacy interrupts. Error: %d\n",
1177 err);
1178 else
1179 oct->flags |= LIO_FLAG_MSI_ENABLED;
1180
1181 irqret = request_irq(oct->pci_dev->irq,
1182 liquidio_legacy_intr_handler, IRQF_SHARED,
1183 "octeon", oct);
1184 if (irqret) {
1185 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1186 pci_disable_msi(oct->pci_dev);
1187 dev_err(&oct->pci_dev->dev, "Request IRQ failed with code: %d\n",
1188 irqret);
1189 return 1;
1190 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001191 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001192 return 0;
1193}
1194
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001195static int liquidio_watchdog(void *param)
1196{
1197 u64 wdog;
1198 u16 mask_of_stuck_cores = 0;
1199 u16 mask_of_crashed_cores = 0;
1200 int core_num;
1201 u8 core_is_stuck[LIO_MAX_CORES];
1202 u8 core_crashed[LIO_MAX_CORES];
1203 struct octeon_device *oct = param;
1204
1205 memset(core_is_stuck, 0, sizeof(core_is_stuck));
1206 memset(core_crashed, 0, sizeof(core_crashed));
1207
1208 while (!kthread_should_stop()) {
1209 mask_of_crashed_cores =
1210 (u16)octeon_read_csr64(oct, CN23XX_SLI_SCRATCH2);
1211
1212 for (core_num = 0; core_num < LIO_MAX_CORES; core_num++) {
1213 if (!core_is_stuck[core_num]) {
1214 wdog = lio_pci_readq(oct, CIU3_WDOG(core_num));
1215
1216 /* look at watchdog state field */
1217 wdog &= CIU3_WDOG_MASK;
1218 if (wdog) {
1219 /* this watchdog timer has expired */
1220 core_is_stuck[core_num] =
1221 LIO_MONITOR_WDOG_EXPIRE;
1222 mask_of_stuck_cores |= (1 << core_num);
1223 }
1224 }
1225
1226 if (!core_crashed[core_num])
1227 core_crashed[core_num] =
1228 (mask_of_crashed_cores >> core_num) & 1;
1229 }
1230
1231 if (mask_of_stuck_cores) {
1232 for (core_num = 0; core_num < LIO_MAX_CORES;
1233 core_num++) {
1234 if (core_is_stuck[core_num] == 1) {
1235 dev_err(&oct->pci_dev->dev,
1236 "ERROR: Octeon core %d is stuck!\n",
1237 core_num);
1238 /* 2 means we have printk'd an error
1239 * so no need to repeat the same printk
1240 */
1241 core_is_stuck[core_num] =
1242 LIO_MONITOR_CORE_STUCK_MSGD;
1243 }
1244 }
1245 }
1246
1247 if (mask_of_crashed_cores) {
1248 for (core_num = 0; core_num < LIO_MAX_CORES;
1249 core_num++) {
1250 if (core_crashed[core_num] == 1) {
1251 dev_err(&oct->pci_dev->dev,
1252 "ERROR: Octeon core %d crashed! See oct-fwdump for details.\n",
1253 core_num);
1254 /* 2 means we have printk'd an error
1255 * so no need to repeat the same printk
1256 */
1257 core_crashed[core_num] =
1258 LIO_MONITOR_CORE_STUCK_MSGD;
1259 }
1260 }
1261 }
1262#ifdef CONFIG_MODULE_UNLOAD
1263 if (mask_of_stuck_cores || mask_of_crashed_cores) {
1264 /* make module refcount=0 so that rmmod will work */
1265 long refcount;
1266
1267 refcount = module_refcount(THIS_MODULE);
1268
1269 while (refcount > 0) {
1270 module_put(THIS_MODULE);
1271 refcount = module_refcount(THIS_MODULE);
1272 }
1273
1274 /* compensate for and withstand an unlikely (but still
1275 * possible) race condition
1276 */
1277 while (refcount < 0) {
1278 try_module_get(THIS_MODULE);
1279 refcount = module_refcount(THIS_MODULE);
1280 }
1281 }
1282#endif
1283 /* sleep for two seconds */
1284 set_current_state(TASK_INTERRUPTIBLE);
1285 schedule_timeout(2 * HZ);
1286 }
1287
1288 return 0;
1289}
1290
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001291/**
1292 * \brief PCI probe handler
1293 * @param pdev PCI device structure
1294 * @param ent unused
1295 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001296static int
1297liquidio_probe(struct pci_dev *pdev,
1298 const struct pci_device_id *ent __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001299{
1300 struct octeon_device *oct_dev = NULL;
1301 struct handshake *hs;
1302
1303 oct_dev = octeon_allocate_device(pdev->device,
1304 sizeof(struct octeon_device_priv));
1305 if (!oct_dev) {
1306 dev_err(&pdev->dev, "Unable to allocate device\n");
1307 return -ENOMEM;
1308 }
1309
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001310 if (pdev->device == OCTEON_CN23XX_PF_VID)
1311 oct_dev->msix_on = LIO_FLAG_MSIX_ENABLED;
1312
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001313 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
1314 (u32)pdev->vendor, (u32)pdev->device);
1315
1316 /* Assign octeon_device for this device to the private data area. */
1317 pci_set_drvdata(pdev, oct_dev);
1318
1319 /* set linux specific device pointer */
1320 oct_dev->pci_dev = (void *)pdev;
1321
1322 hs = &handshake[oct_dev->octeon_id];
1323 init_completion(&hs->init);
1324 init_completion(&hs->started);
1325 hs->pci_dev = pdev;
1326
1327 if (oct_dev->octeon_id == 0)
1328 /* first LiquidIO NIC is detected */
1329 complete(&first_stage);
1330
1331 if (octeon_device_init(oct_dev)) {
1332 liquidio_remove(pdev);
1333 return -ENOMEM;
1334 }
1335
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001336 if (OCTEON_CN23XX_PF(oct_dev)) {
1337 u64 scratch1;
1338 u8 bus, device, function;
1339
1340 scratch1 = octeon_read_csr64(oct_dev, CN23XX_SLI_SCRATCH1);
1341 if (!(scratch1 & 4ULL)) {
1342 /* Bit 2 of SLI_SCRATCH_1 is a flag that indicates that
1343 * the lio watchdog kernel thread is running for this
1344 * NIC. Each NIC gets one watchdog kernel thread.
1345 */
1346 scratch1 |= 4ULL;
1347 octeon_write_csr64(oct_dev, CN23XX_SLI_SCRATCH1,
1348 scratch1);
1349
1350 bus = pdev->bus->number;
1351 device = PCI_SLOT(pdev->devfn);
1352 function = PCI_FUNC(pdev->devfn);
1353 oct_dev->watchdog_task = kthread_create(
1354 liquidio_watchdog, oct_dev,
1355 "liowd/%02hhx:%02hhx.%hhx", bus, device, function);
1356 wake_up_process(oct_dev->watchdog_task);
1357 }
1358 }
1359
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001360 oct_dev->rx_pause = 1;
1361 oct_dev->tx_pause = 1;
1362
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001363 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
1364
1365 return 0;
1366}
1367
1368/**
1369 *\brief Destroy resources associated with octeon device
1370 * @param pdev PCI device structure
1371 * @param ent unused
1372 */
1373static void octeon_destroy_resources(struct octeon_device *oct)
1374{
1375 int i;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001376 struct msix_entry *msix_entries;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001377 struct octeon_device_priv *oct_priv =
1378 (struct octeon_device_priv *)oct->priv;
1379
1380 struct handshake *hs;
1381
1382 switch (atomic_read(&oct->status)) {
1383 case OCT_DEV_RUNNING:
1384 case OCT_DEV_CORE_OK:
1385
1386 /* No more instructions will be forwarded. */
1387 atomic_set(&oct->status, OCT_DEV_IN_RESET);
1388
1389 oct->app_mode = CVM_DRV_INVALID_APP;
1390 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
1391 lio_get_state_string(&oct->status));
1392
1393 schedule_timeout_uninterruptible(HZ / 10);
1394
1395 /* fallthrough */
1396 case OCT_DEV_HOST_OK:
1397
1398 /* fallthrough */
1399 case OCT_DEV_CONSOLE_INIT_DONE:
1400 /* Remove any consoles */
1401 octeon_remove_consoles(oct);
1402
1403 /* fallthrough */
1404 case OCT_DEV_IO_QUEUES_DONE:
1405 if (wait_for_pending_requests(oct))
1406 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
1407
1408 if (lio_wait_for_instr_fetch(oct))
1409 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
1410
1411 /* Disable the input and output queues now. No more packets will
1412 * arrive from Octeon, but we should wait for all packet
1413 * processing to finish.
1414 */
1415 oct->fn_list.disable_io_queues(oct);
1416
1417 if (lio_wait_for_oq_pkts(oct))
1418 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1419
1420 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001421 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001422
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001423 if (oct->msix_on) {
1424 msix_entries = (struct msix_entry *)oct->msix_entries;
1425 for (i = 0; i < oct->num_msix_irqs - 1; i++) {
1426 /* clear the affinity_cpumask */
1427 irq_set_affinity_hint(msix_entries[i].vector,
1428 NULL);
1429 free_irq(msix_entries[i].vector,
1430 &oct->ioq_vector[i]);
1431 }
1432 /* non-iov vector's argument is oct struct */
1433 free_irq(msix_entries[i].vector, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001434
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001435 pci_disable_msix(oct->pci_dev);
1436 kfree(oct->msix_entries);
1437 oct->msix_entries = NULL;
1438 } else {
1439 /* Release the interrupt line */
1440 free_irq(oct->pci_dev->irq, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001441
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001442 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1443 pci_disable_msi(oct->pci_dev);
1444 }
1445
1446 if (OCTEON_CN23XX_PF(oct))
1447 octeon_free_ioq_vector(oct);
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08001448
1449 /* fallthrough */
1450 case OCT_DEV_MBOX_SETUP_DONE:
1451 if (OCTEON_CN23XX_PF(oct))
1452 oct->fn_list.free_mbox(oct);
1453
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001454 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001455 case OCT_DEV_IN_RESET:
1456 case OCT_DEV_DROQ_INIT_DONE:
1457 /*atomic_set(&oct->status, OCT_DEV_DROQ_INIT_DONE);*/
1458 mdelay(100);
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001459 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001460 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001461 continue;
1462 octeon_delete_droq(oct, i);
1463 }
1464
1465 /* Force any pending handshakes to complete */
1466 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1467 hs = &handshake[i];
1468
1469 if (hs->pci_dev) {
1470 handshake[oct->octeon_id].init_ok = 0;
1471 complete(&handshake[oct->octeon_id].init);
1472 handshake[oct->octeon_id].started_ok = 0;
1473 complete(&handshake[oct->octeon_id].started);
1474 }
1475 }
1476
1477 /* fallthrough */
1478 case OCT_DEV_RESP_LIST_INIT_DONE:
1479 octeon_delete_response_list(oct);
1480
1481 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001482 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001483 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001484 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001485 continue;
1486 octeon_delete_instr_queue(oct, i);
1487 }
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08001488#ifdef CONFIG_PCI_IOV
1489 if (oct->sriov_info.sriov_enabled)
1490 pci_disable_sriov(oct->pci_dev);
1491#endif
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001492 /* fallthrough */
1493 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1494 octeon_free_sc_buffer_pool(oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001495
1496 /* fallthrough */
1497 case OCT_DEV_DISPATCH_INIT_DONE:
1498 octeon_delete_dispatch_list(oct);
1499 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1500
1501 /* fallthrough */
1502 case OCT_DEV_PCI_MAP_DONE:
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001503 /* Soft reset the octeon device before exiting */
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07001504 if ((!OCTEON_CN23XX_PF(oct)) || !oct->octeon_id)
1505 oct->fn_list.soft_reset(oct);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001506
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001507 octeon_unmap_pci_barx(oct, 0);
1508 octeon_unmap_pci_barx(oct, 1);
1509
1510 /* fallthrough */
1511 case OCT_DEV_BEGIN_STATE:
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001512 /* Disable the device, releasing the PCI INT */
1513 pci_disable_device(oct->pci_dev);
1514
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001515 /* Nothing to be done here either */
1516 break;
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07001517 } /* end switch (oct->status) */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001518
1519 tasklet_kill(&oct_priv->droq_tasklet);
1520}
1521
1522/**
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001523 * \brief Callback for rx ctrl
1524 * @param status status of request
1525 * @param buf pointer to resp structure
1526 */
1527static void rx_ctl_callback(struct octeon_device *oct,
1528 u32 status,
1529 void *buf)
1530{
1531 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1532 struct liquidio_rx_ctl_context *ctx;
1533
1534 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1535
1536 oct = lio_get_device(ctx->octeon_id);
1537 if (status)
1538 dev_err(&oct->pci_dev->dev, "rx ctl instruction failed. Status: %llx\n",
1539 CVM_CAST64(status));
1540 WRITE_ONCE(ctx->cond, 1);
1541
1542 /* This barrier is required to be sure that the response has been
1543 * written fully before waking up the handler
1544 */
1545 wmb();
1546
1547 wake_up_interruptible(&ctx->wc);
1548}
1549
1550/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001551 * \brief Send Rx control command
1552 * @param lio per-network private data
1553 * @param start_stop whether to start or stop
1554 */
1555static void send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1556{
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001557 struct octeon_soft_command *sc;
1558 struct liquidio_rx_ctl_context *ctx;
1559 union octnet_cmd *ncmd;
1560 int ctx_size = sizeof(struct liquidio_rx_ctl_context);
1561 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1562 int retval;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001563
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001564 if (oct->props[lio->ifidx].rx_on == start_stop)
1565 return;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001566
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001567 sc = (struct octeon_soft_command *)
1568 octeon_alloc_soft_command(oct, OCTNET_CMD_SIZE,
1569 16, ctx_size);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001570
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001571 ncmd = (union octnet_cmd *)sc->virtdptr;
1572 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1573
1574 WRITE_ONCE(ctx->cond, 0);
1575 ctx->octeon_id = lio_get_device_id(oct);
1576 init_waitqueue_head(&ctx->wc);
1577
1578 ncmd->u64 = 0;
1579 ncmd->s.cmd = OCTNET_CMD_RX_CTL;
1580 ncmd->s.param1 = start_stop;
1581
1582 octeon_swap_8B_data((u64 *)ncmd, (OCTNET_CMD_SIZE >> 3));
1583
1584 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
1585
1586 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
1587 OPCODE_NIC_CMD, 0, 0, 0);
1588
1589 sc->callback = rx_ctl_callback;
1590 sc->callback_arg = sc;
1591 sc->wait_time = 5000;
1592
1593 retval = octeon_send_soft_command(oct, sc);
1594 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001595 netif_info(lio, rx_err, lio->netdev, "Failed to send RX Control message\n");
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001596 } else {
1597 /* Sleep on a wait queue till the cond flag indicates that the
1598 * response arrived or timed-out.
1599 */
1600 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR)
1601 return;
1602 oct->props[lio->ifidx].rx_on = start_stop;
1603 }
1604
1605 octeon_free_soft_command(oct, sc);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001606}
1607
1608/**
1609 * \brief Destroy NIC device interface
1610 * @param oct octeon device
1611 * @param ifidx which interface to destroy
1612 *
1613 * Cleanup associated with each interface for an Octeon device when NIC
1614 * module is being unloaded or if initialization fails during load.
1615 */
1616static void liquidio_destroy_nic_device(struct octeon_device *oct, int ifidx)
1617{
1618 struct net_device *netdev = oct->props[ifidx].netdev;
1619 struct lio *lio;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001620 struct napi_struct *napi, *n;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001621
1622 if (!netdev) {
1623 dev_err(&oct->pci_dev->dev, "%s No netdevice ptr for index %d\n",
1624 __func__, ifidx);
1625 return;
1626 }
1627
1628 lio = GET_LIO(netdev);
1629
1630 dev_dbg(&oct->pci_dev->dev, "NIC device cleanup\n");
1631
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001632 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING)
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001633 liquidio_stop(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001634
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001635 if (oct->props[lio->ifidx].napi_enabled == 1) {
1636 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1637 napi_disable(napi);
1638
1639 oct->props[lio->ifidx].napi_enabled = 0;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001640
1641 if (OCTEON_CN23XX_PF(oct))
1642 oct->droq[0]->ops.poll_mode = 0;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001643 }
1644
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001645 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
1646 unregister_netdev(netdev);
1647
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001648 cleanup_link_status_change_wq(netdev);
1649
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001650 delete_glists(lio);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001651
1652 free_netdev(netdev);
1653
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07001654 oct->props[ifidx].gmxport = -1;
1655
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001656 oct->props[ifidx].netdev = NULL;
1657}
1658
1659/**
1660 * \brief Stop complete NIC functionality
1661 * @param oct octeon device
1662 */
1663static int liquidio_stop_nic_module(struct octeon_device *oct)
1664{
1665 int i, j;
1666 struct lio *lio;
1667
1668 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1669 if (!oct->ifcount) {
1670 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1671 return 1;
1672 }
1673
Raghu Vatsavayi60441882016-06-21 22:53:08 -07001674 spin_lock_bh(&oct->cmd_resp_wqlock);
1675 oct->cmd_resp_state = OCT_DRV_OFFLINE;
1676 spin_unlock_bh(&oct->cmd_resp_wqlock);
1677
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001678 for (i = 0; i < oct->ifcount; i++) {
1679 lio = GET_LIO(oct->props[i].netdev);
1680 for (j = 0; j < lio->linfo.num_rxpciq; j++)
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001681 octeon_unregister_droq_ops(oct,
1682 lio->linfo.rxpciq[j].s.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001683 }
1684
1685 for (i = 0; i < oct->ifcount; i++)
1686 liquidio_destroy_nic_device(oct, i);
1687
1688 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1689 return 0;
1690}
1691
1692/**
1693 * \brief Cleans up resources at unload time
1694 * @param pdev PCI device structure
1695 */
1696static void liquidio_remove(struct pci_dev *pdev)
1697{
1698 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1699
1700 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1701
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001702 if (oct_dev->watchdog_task)
1703 kthread_stop(oct_dev->watchdog_task);
1704
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001705 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1706 liquidio_stop_nic_module(oct_dev);
1707
1708 /* Reset the octeon device and cleanup all memory allocated for
1709 * the octeon device by driver.
1710 */
1711 octeon_destroy_resources(oct_dev);
1712
1713 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1714
1715 /* This octeon device has been removed. Update the global
1716 * data structure to reflect this. Free the device structure.
1717 */
1718 octeon_free_device_mem(oct_dev);
1719}
1720
1721/**
1722 * \brief Identify the Octeon device and to map the BAR address space
1723 * @param oct octeon device
1724 */
1725static int octeon_chip_specific_setup(struct octeon_device *oct)
1726{
1727 u32 dev_id, rev_id;
1728 int ret = 1;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001729 char *s;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001730
1731 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1732 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1733 oct->rev_id = rev_id & 0xff;
1734
1735 switch (dev_id) {
1736 case OCTEON_CN68XX_PCIID:
1737 oct->chip_id = OCTEON_CN68XX;
1738 ret = lio_setup_cn68xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001739 s = "CN68XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001740 break;
1741
1742 case OCTEON_CN66XX_PCIID:
1743 oct->chip_id = OCTEON_CN66XX;
1744 ret = lio_setup_cn66xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001745 s = "CN66XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001746 break;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001747
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001748 case OCTEON_CN23XX_PCIID_PF:
1749 oct->chip_id = OCTEON_CN23XX_PF_VID;
1750 ret = setup_cn23xx_octeon_pf_device(oct);
1751 s = "CN23XX";
1752 break;
1753
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001754 default:
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001755 s = "?";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001756 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1757 dev_id);
1758 }
1759
1760 if (!ret)
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001761 dev_info(&oct->pci_dev->dev, "%s PASS%d.%d %s Version: %s\n", s,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001762 OCTEON_MAJOR_REV(oct),
1763 OCTEON_MINOR_REV(oct),
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001764 octeon_get_conf(oct)->card_name,
1765 LIQUIDIO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001766
1767 return ret;
1768}
1769
1770/**
1771 * \brief PCI initialization for each Octeon device.
1772 * @param oct octeon device
1773 */
1774static int octeon_pci_os_setup(struct octeon_device *oct)
1775{
1776 /* setup PCI stuff first */
1777 if (pci_enable_device(oct->pci_dev)) {
1778 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1779 return 1;
1780 }
1781
1782 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1783 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
1784 return 1;
1785 }
1786
1787 /* Enable PCI DMA Master. */
1788 pci_set_master(oct->pci_dev);
1789
1790 return 0;
1791}
1792
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001793static inline int skb_iq(struct lio *lio, struct sk_buff *skb)
1794{
1795 int q = 0;
1796
1797 if (netif_is_multiqueue(lio->netdev))
1798 q = skb->queue_mapping % lio->linfo.num_txpciq;
1799
1800 return q;
1801}
1802
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001803/**
1804 * \brief Check Tx queue state for a given network buffer
1805 * @param lio per-network private data
1806 * @param skb network buffer
1807 */
1808static inline int check_txq_state(struct lio *lio, struct sk_buff *skb)
1809{
1810 int q = 0, iq = 0;
1811
1812 if (netif_is_multiqueue(lio->netdev)) {
1813 q = skb->queue_mapping;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001814 iq = lio->linfo.txpciq[(q % (lio->linfo.num_txpciq))].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001815 } else {
1816 iq = lio->txq;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001817 q = iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001818 }
1819
1820 if (octnet_iq_is_full(lio->oct_dev, iq))
1821 return 0;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001822
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001823 if (__netif_subqueue_stopped(lio->netdev, q)) {
1824 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq, tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001825 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001826 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001827 return 1;
1828}
1829
1830/**
1831 * \brief Unmap and free network buffer
1832 * @param buf buffer
1833 */
1834static void free_netbuf(void *buf)
1835{
1836 struct sk_buff *skb;
1837 struct octnet_buf_free_info *finfo;
1838 struct lio *lio;
1839
1840 finfo = (struct octnet_buf_free_info *)buf;
1841 skb = finfo->skb;
1842 lio = finfo->lio;
1843
1844 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1845 DMA_TO_DEVICE);
1846
1847 check_txq_state(lio, skb);
1848
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001849 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001850}
1851
1852/**
1853 * \brief Unmap and free gather buffer
1854 * @param buf buffer
1855 */
1856static void free_netsgbuf(void *buf)
1857{
1858 struct octnet_buf_free_info *finfo;
1859 struct sk_buff *skb;
1860 struct lio *lio;
1861 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001862 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001863
1864 finfo = (struct octnet_buf_free_info *)buf;
1865 skb = finfo->skb;
1866 lio = finfo->lio;
1867 g = finfo->g;
1868 frags = skb_shinfo(skb)->nr_frags;
1869
1870 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1871 g->sg[0].ptr[0], (skb->len - skb->data_len),
1872 DMA_TO_DEVICE);
1873
1874 i = 1;
1875 while (frags--) {
1876 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1877
1878 pci_unmap_page((lio->oct_dev)->pci_dev,
1879 g->sg[(i >> 2)].ptr[(i & 3)],
1880 frag->size, DMA_TO_DEVICE);
1881 i++;
1882 }
1883
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001884 dma_sync_single_for_cpu(&lio->oct_dev->pci_dev->dev,
1885 g->sg_dma_ptr, g->sg_size, DMA_TO_DEVICE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001886
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001887 iq = skb_iq(lio, skb);
1888 spin_lock(&lio->glist_lock[iq]);
1889 list_add_tail(&g->list, &lio->glist[iq]);
1890 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001891
1892 check_txq_state(lio, skb); /* mq support: sub-queue state check */
1893
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001894 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001895}
1896
1897/**
1898 * \brief Unmap and free gather buffer with response
1899 * @param buf buffer
1900 */
1901static void free_netsgbuf_with_resp(void *buf)
1902{
1903 struct octeon_soft_command *sc;
1904 struct octnet_buf_free_info *finfo;
1905 struct sk_buff *skb;
1906 struct lio *lio;
1907 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001908 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001909
1910 sc = (struct octeon_soft_command *)buf;
1911 skb = (struct sk_buff *)sc->callback_arg;
1912 finfo = (struct octnet_buf_free_info *)&skb->cb;
1913
1914 lio = finfo->lio;
1915 g = finfo->g;
1916 frags = skb_shinfo(skb)->nr_frags;
1917
1918 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1919 g->sg[0].ptr[0], (skb->len - skb->data_len),
1920 DMA_TO_DEVICE);
1921
1922 i = 1;
1923 while (frags--) {
1924 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1925
1926 pci_unmap_page((lio->oct_dev)->pci_dev,
1927 g->sg[(i >> 2)].ptr[(i & 3)],
1928 frag->size, DMA_TO_DEVICE);
1929 i++;
1930 }
1931
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001932 dma_sync_single_for_cpu(&lio->oct_dev->pci_dev->dev,
1933 g->sg_dma_ptr, g->sg_size, DMA_TO_DEVICE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001934
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001935 iq = skb_iq(lio, skb);
1936
1937 spin_lock(&lio->glist_lock[iq]);
1938 list_add_tail(&g->list, &lio->glist[iq]);
1939 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001940
1941 /* Don't free the skb yet */
1942
1943 check_txq_state(lio, skb);
1944}
1945
1946/**
1947 * \brief Adjust ptp frequency
1948 * @param ptp PTP clock info
1949 * @param ppb how much to adjust by, in parts-per-billion
1950 */
1951static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
1952{
1953 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1954 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1955 u64 comp, delta;
1956 unsigned long flags;
1957 bool neg_adj = false;
1958
1959 if (ppb < 0) {
1960 neg_adj = true;
1961 ppb = -ppb;
1962 }
1963
1964 /* The hardware adds the clock compensation value to the
1965 * PTP clock on every coprocessor clock cycle, so we
1966 * compute the delta in terms of coprocessor clocks.
1967 */
1968 delta = (u64)ppb << 32;
1969 do_div(delta, oct->coproc_clock_rate);
1970
1971 spin_lock_irqsave(&lio->ptp_lock, flags);
1972 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
1973 if (neg_adj)
1974 comp -= delta;
1975 else
1976 comp += delta;
1977 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1978 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1979
1980 return 0;
1981}
1982
1983/**
1984 * \brief Adjust ptp time
1985 * @param ptp PTP clock info
1986 * @param delta how much to adjust by, in nanosecs
1987 */
1988static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
1989{
1990 unsigned long flags;
1991 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1992
1993 spin_lock_irqsave(&lio->ptp_lock, flags);
1994 lio->ptp_adjust += delta;
1995 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1996
1997 return 0;
1998}
1999
2000/**
2001 * \brief Get hardware clock time, including any adjustment
2002 * @param ptp PTP clock info
2003 * @param ts timespec
2004 */
2005static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
2006 struct timespec64 *ts)
2007{
2008 u64 ns;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002009 unsigned long flags;
2010 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2011 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2012
2013 spin_lock_irqsave(&lio->ptp_lock, flags);
2014 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
2015 ns += lio->ptp_adjust;
2016 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2017
Kefeng Wang286af312016-01-27 17:34:37 +08002018 *ts = ns_to_timespec64(ns);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002019
2020 return 0;
2021}
2022
2023/**
2024 * \brief Set hardware clock time. Reset adjustment
2025 * @param ptp PTP clock info
2026 * @param ts timespec
2027 */
2028static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
2029 const struct timespec64 *ts)
2030{
2031 u64 ns;
2032 unsigned long flags;
2033 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2034 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2035
2036 ns = timespec_to_ns(ts);
2037
2038 spin_lock_irqsave(&lio->ptp_lock, flags);
2039 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
2040 lio->ptp_adjust = 0;
2041 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2042
2043 return 0;
2044}
2045
2046/**
2047 * \brief Check if PTP is enabled
2048 * @param ptp PTP clock info
2049 * @param rq request
2050 * @param on is it on
2051 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002052static int
2053liquidio_ptp_enable(struct ptp_clock_info *ptp __attribute__((unused)),
2054 struct ptp_clock_request *rq __attribute__((unused)),
2055 int on __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002056{
2057 return -EOPNOTSUPP;
2058}
2059
2060/**
2061 * \brief Open PTP clock source
2062 * @param netdev network device
2063 */
2064static void oct_ptp_open(struct net_device *netdev)
2065{
2066 struct lio *lio = GET_LIO(netdev);
2067 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2068
2069 spin_lock_init(&lio->ptp_lock);
2070
2071 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
2072 lio->ptp_info.owner = THIS_MODULE;
2073 lio->ptp_info.max_adj = 250000000;
2074 lio->ptp_info.n_alarm = 0;
2075 lio->ptp_info.n_ext_ts = 0;
2076 lio->ptp_info.n_per_out = 0;
2077 lio->ptp_info.pps = 0;
2078 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
2079 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
2080 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
2081 lio->ptp_info.settime64 = liquidio_ptp_settime;
2082 lio->ptp_info.enable = liquidio_ptp_enable;
2083
2084 lio->ptp_adjust = 0;
2085
2086 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
2087 &oct->pci_dev->dev);
2088
2089 if (IS_ERR(lio->ptp_clock))
2090 lio->ptp_clock = NULL;
2091}
2092
2093/**
2094 * \brief Init PTP clock
2095 * @param oct octeon device
2096 */
2097static void liquidio_ptp_init(struct octeon_device *oct)
2098{
2099 u64 clock_comp, cfg;
2100
2101 clock_comp = (u64)NSEC_PER_SEC << 32;
2102 do_div(clock_comp, oct->coproc_clock_rate);
2103 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
2104
2105 /* Enable */
2106 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
2107 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
2108}
2109
2110/**
2111 * \brief Load firmware to device
2112 * @param oct octeon device
2113 *
2114 * Maps device to firmware filename, requests firmware, and downloads it
2115 */
2116static int load_firmware(struct octeon_device *oct)
2117{
2118 int ret = 0;
2119 const struct firmware *fw;
2120 char fw_name[LIO_MAX_FW_FILENAME_LEN];
2121 char *tmp_fw_type;
2122
2123 if (strncmp(fw_type, LIO_FW_NAME_TYPE_NONE,
2124 sizeof(LIO_FW_NAME_TYPE_NONE)) == 0) {
2125 dev_info(&oct->pci_dev->dev, "Skipping firmware load\n");
2126 return ret;
2127 }
2128
2129 if (fw_type[0] == '\0')
2130 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
2131 else
2132 tmp_fw_type = fw_type;
2133
2134 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
2135 octeon_get_conf(oct)->card_name, tmp_fw_type,
2136 LIO_FW_NAME_SUFFIX);
2137
2138 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
2139 if (ret) {
2140 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n.",
2141 fw_name);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002142 release_firmware(fw);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002143 return ret;
2144 }
2145
2146 ret = octeon_download_firmware(oct, fw->data, fw->size);
2147
2148 release_firmware(fw);
2149
2150 return ret;
2151}
2152
2153/**
2154 * \brief Setup output queue
2155 * @param oct octeon device
2156 * @param q_no which queue
2157 * @param num_descs how many descriptors
2158 * @param desc_size size of each descriptor
2159 * @param app_ctx application context
2160 */
2161static int octeon_setup_droq(struct octeon_device *oct, int q_no, int num_descs,
2162 int desc_size, void *app_ctx)
2163{
2164 int ret_val = 0;
2165
2166 dev_dbg(&oct->pci_dev->dev, "Creating Droq: %d\n", q_no);
2167 /* droq creation and local register settings. */
2168 ret_val = octeon_create_droq(oct, q_no, num_descs, desc_size, app_ctx);
Amitoj Kaur Chawla08a965e2016-02-04 19:25:13 +05302169 if (ret_val < 0)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002170 return ret_val;
2171
2172 if (ret_val == 1) {
2173 dev_dbg(&oct->pci_dev->dev, "Using default droq %d\n", q_no);
2174 return 0;
2175 }
2176 /* tasklet creation for the droq */
2177
2178 /* Enable the droq queues */
2179 octeon_set_droq_pkt_op(oct, q_no, 1);
2180
2181 /* Send Credit for Octeon Output queues. Credits are always
2182 * sent after the output queue is enabled.
2183 */
2184 writel(oct->droq[q_no]->max_count,
2185 oct->droq[q_no]->pkts_credit_reg);
2186
2187 return ret_val;
2188}
2189
2190/**
2191 * \brief Callback for getting interface configuration
2192 * @param status status of request
2193 * @param buf pointer to resp structure
2194 */
2195static void if_cfg_callback(struct octeon_device *oct,
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002196 u32 status __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002197 void *buf)
2198{
2199 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
2200 struct liquidio_if_cfg_resp *resp;
2201 struct liquidio_if_cfg_context *ctx;
2202
2203 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07002204 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002205
2206 oct = lio_get_device(ctx->octeon_id);
2207 if (resp->status)
2208 dev_err(&oct->pci_dev->dev, "nic if cfg instruction failed. Status: %llx\n",
2209 CVM_CAST64(resp->status));
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002210 WRITE_ONCE(ctx->cond, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002211
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002212 snprintf(oct->fw_info.liquidio_firmware_version, 32, "%s",
2213 resp->cfg_info.liquidio_firmware_version);
2214
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002215 /* This barrier is required to be sure that the response has been
2216 * written fully before waking up the handler
2217 */
2218 wmb();
2219
2220 wake_up_interruptible(&ctx->wc);
2221}
2222
2223/**
2224 * \brief Select queue based on hash
2225 * @param dev Net device
2226 * @param skb sk_buff structure
2227 * @returns selected queue number
2228 */
2229static u16 select_q(struct net_device *dev, struct sk_buff *skb,
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002230 void *accel_priv __attribute__((unused)),
2231 select_queue_fallback_t fallback __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002232{
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002233 u32 qindex = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002234 struct lio *lio;
2235
2236 lio = GET_LIO(dev);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002237 qindex = skb_tx_hash(dev, skb);
2238
2239 return (u16)(qindex % (lio->linfo.num_txpciq));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002240}
2241
2242/** Routine to push packets arriving on Octeon interface upto network layer.
2243 * @param oct_id - octeon device id.
2244 * @param skbuff - skbuff struct to be passed to network layer.
2245 * @param len - size of total data received.
2246 * @param rh - Control header associated with the packet
2247 * @param param - additional control data with the packet
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002248 * @param arg - farg registered in droq_ops
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002249 */
2250static void
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002251liquidio_push_packet(u32 octeon_id __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002252 void *skbuff,
2253 u32 len,
2254 union octeon_rh *rh,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002255 void *param,
2256 void *arg)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002257{
2258 struct napi_struct *napi = param;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002259 struct sk_buff *skb = (struct sk_buff *)skbuff;
2260 struct skb_shared_hwtstamps *shhwtstamps;
2261 u64 ns;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002262 u16 vtag = 0;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002263 struct net_device *netdev = (struct net_device *)arg;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002264 struct octeon_droq *droq = container_of(param, struct octeon_droq,
2265 napi);
2266 if (netdev) {
2267 int packet_was_received;
2268 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002269 struct octeon_device *oct = lio->oct_dev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002270
2271 /* Do not proceed if the interface is not in RUNNING state. */
2272 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING)) {
2273 recv_buffer_free(skb);
2274 droq->stats.rx_dropped++;
2275 return;
2276 }
2277
2278 skb->dev = netdev;
2279
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002280 skb_record_rx_queue(skb, droq->q_no);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07002281 if (likely(len > MIN_SKB_SIZE)) {
2282 struct octeon_skb_page_info *pg_info;
2283 unsigned char *va;
2284
2285 pg_info = ((struct octeon_skb_page_info *)(skb->cb));
2286 if (pg_info->page) {
2287 /* For Paged allocation use the frags */
2288 va = page_address(pg_info->page) +
2289 pg_info->page_offset;
2290 memcpy(skb->data, va, MIN_SKB_SIZE);
2291 skb_put(skb, MIN_SKB_SIZE);
2292 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
2293 pg_info->page,
2294 pg_info->page_offset +
2295 MIN_SKB_SIZE,
2296 len - MIN_SKB_SIZE,
2297 LIO_RXBUFFER_SZ);
2298 }
2299 } else {
2300 struct octeon_skb_page_info *pg_info =
2301 ((struct octeon_skb_page_info *)(skb->cb));
2302 skb_copy_to_linear_data(skb, page_address(pg_info->page)
2303 + pg_info->page_offset, len);
2304 skb_put(skb, len);
2305 put_page(pg_info->page);
2306 }
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002307
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002308 if (((oct->chip_id == OCTEON_CN66XX) ||
2309 (oct->chip_id == OCTEON_CN68XX)) &&
2310 ptp_enable) {
2311 if (rh->r_dh.has_hwtstamp) {
2312 /* timestamp is included from the hardware at
2313 * the beginning of the packet.
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002314 */
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002315 if (ifstate_check
2316 (lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED)) {
2317 /* Nanoseconds are in the first 64-bits
2318 * of the packet.
2319 */
2320 memcpy(&ns, (skb->data), sizeof(ns));
2321 shhwtstamps = skb_hwtstamps(skb);
2322 shhwtstamps->hwtstamp =
2323 ns_to_ktime(ns +
2324 lio->ptp_adjust);
2325 }
2326 skb_pull(skb, sizeof(ns));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002327 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002328 }
2329
2330 skb->protocol = eth_type_trans(skb, skb->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002331 if ((netdev->features & NETIF_F_RXCSUM) &&
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002332 (((rh->r_dh.encap_on) &&
2333 (rh->r_dh.csum_verified & CNNIC_TUN_CSUM_VERIFIED)) ||
2334 (!(rh->r_dh.encap_on) &&
2335 (rh->r_dh.csum_verified & CNNIC_CSUM_VERIFIED))))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002336 /* checksum has already been verified */
2337 skb->ip_summed = CHECKSUM_UNNECESSARY;
2338 else
2339 skb->ip_summed = CHECKSUM_NONE;
2340
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002341 /* Setting Encapsulation field on basis of status received
2342 * from the firmware
2343 */
2344 if (rh->r_dh.encap_on) {
2345 skb->encapsulation = 1;
2346 skb->csum_level = 1;
2347 droq->stats.rx_vxlan++;
2348 }
2349
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002350 /* inbound VLAN tag */
2351 if ((netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
2352 (rh->r_dh.vlan != 0)) {
2353 u16 vid = rh->r_dh.vlan;
2354 u16 priority = rh->r_dh.priority;
2355
2356 vtag = priority << 13 | vid;
2357 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
2358 }
2359
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002360 packet_was_received = napi_gro_receive(napi, skb) != GRO_DROP;
2361
2362 if (packet_was_received) {
2363 droq->stats.rx_bytes_received += len;
2364 droq->stats.rx_pkts_received++;
2365 netdev->last_rx = jiffies;
2366 } else {
2367 droq->stats.rx_dropped++;
2368 netif_info(lio, rx_err, lio->netdev,
2369 "droq:%d error rx_dropped:%llu\n",
2370 droq->q_no, droq->stats.rx_dropped);
2371 }
2372
2373 } else {
2374 recv_buffer_free(skb);
2375 }
2376}
2377
2378/**
2379 * \brief wrapper for calling napi_schedule
2380 * @param param parameters to pass to napi_schedule
2381 *
2382 * Used when scheduling on different CPUs
2383 */
2384static void napi_schedule_wrapper(void *param)
2385{
2386 struct napi_struct *napi = param;
2387
2388 napi_schedule(napi);
2389}
2390
2391/**
2392 * \brief callback when receive interrupt occurs and we are in NAPI mode
2393 * @param arg pointer to octeon output queue
2394 */
2395static void liquidio_napi_drv_callback(void *arg)
2396{
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002397 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002398 struct octeon_droq *droq = arg;
2399 int this_cpu = smp_processor_id();
2400
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002401 oct = droq->oct_dev;
2402
2403 if (OCTEON_CN23XX_PF(oct) || droq->cpu_id == this_cpu) {
2404 napi_schedule_irqoff(&droq->napi);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002405 } else {
2406 struct call_single_data *csd = &droq->csd;
2407
2408 csd->func = napi_schedule_wrapper;
2409 csd->info = &droq->napi;
2410 csd->flags = 0;
2411
2412 smp_call_function_single_async(droq->cpu_id, csd);
2413 }
2414}
2415
2416/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002417 * \brief Entry point for NAPI polling
2418 * @param napi NAPI structure
2419 * @param budget maximum number of items to process
2420 */
2421static int liquidio_napi_poll(struct napi_struct *napi, int budget)
2422{
2423 struct octeon_droq *droq;
2424 int work_done;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002425 int tx_done = 0, iq_no;
2426 struct octeon_instr_queue *iq;
2427 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002428
2429 droq = container_of(napi, struct octeon_droq, napi);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002430 oct = droq->oct_dev;
2431 iq_no = droq->q_no;
2432 /* Handle Droq descriptors */
2433 work_done = octeon_process_droq_poll_cmd(oct, droq->q_no,
2434 POLL_EVENT_PROCESS_PKTS,
2435 budget);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002436
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002437 /* Flush the instruction queue */
2438 iq = oct->instr_queue[iq_no];
2439 if (iq) {
2440 /* Process iq buffers with in the budget limits */
2441 tx_done = octeon_flush_iq(oct, iq, 1, budget);
2442 /* Update iq read-index rather than waiting for next interrupt.
2443 * Return back if tx_done is false.
2444 */
2445 update_txq_status(oct, iq_no);
2446 /*tx_done = (iq->flush_index == iq->octeon_read_index);*/
2447 } else {
2448 dev_err(&oct->pci_dev->dev, "%s: iq (%d) num invalid\n",
2449 __func__, iq_no);
2450 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002451
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002452 if ((work_done < budget) && (tx_done)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002453 napi_complete(napi);
2454 octeon_process_droq_poll_cmd(droq->oct_dev, droq->q_no,
2455 POLL_EVENT_ENABLE_INTR, 0);
2456 return 0;
2457 }
2458
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002459 return (!tx_done) ? (budget) : (work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002460}
2461
2462/**
2463 * \brief Setup input and output queues
2464 * @param octeon_dev octeon device
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07002465 * @param ifidx Interface Index
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002466 *
2467 * Note: Queues are with respect to the octeon device. Thus
2468 * an input queue is for egress packets, and output queues
2469 * are for ingress packets.
2470 */
2471static inline int setup_io_queues(struct octeon_device *octeon_dev,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002472 int ifidx)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002473{
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002474 struct octeon_droq_ops droq_ops;
2475 struct net_device *netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002476 static int cpu_id;
2477 static int cpu_id_modulus;
2478 struct octeon_droq *droq;
2479 struct napi_struct *napi;
2480 int q, q_no, retval = 0;
2481 struct lio *lio;
2482 int num_tx_descs;
2483
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002484 netdev = octeon_dev->props[ifidx].netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002485
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002486 lio = GET_LIO(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002487
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002488 memset(&droq_ops, 0, sizeof(struct octeon_droq_ops));
2489
2490 droq_ops.fptr = liquidio_push_packet;
2491 droq_ops.farg = (void *)netdev;
2492
2493 droq_ops.poll_mode = 1;
2494 droq_ops.napi_fn = liquidio_napi_drv_callback;
2495 cpu_id = 0;
2496 cpu_id_modulus = num_present_cpus();
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002497
2498 /* set up DROQs. */
2499 for (q = 0; q < lio->linfo.num_rxpciq; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002500 q_no = lio->linfo.rxpciq[q].s.q_no;
2501 dev_dbg(&octeon_dev->pci_dev->dev,
2502 "setup_io_queues index:%d linfo.rxpciq.s.q_no:%d\n",
2503 q, q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002504 retval = octeon_setup_droq(octeon_dev, q_no,
2505 CFG_GET_NUM_RX_DESCS_NIC_IF
2506 (octeon_get_conf(octeon_dev),
2507 lio->ifidx),
2508 CFG_GET_NUM_RX_BUF_SIZE_NIC_IF
2509 (octeon_get_conf(octeon_dev),
2510 lio->ifidx), NULL);
2511 if (retval) {
2512 dev_err(&octeon_dev->pci_dev->dev,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002513 "%s : Runtime DROQ(RxQ) creation failed.\n",
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002514 __func__);
2515 return 1;
2516 }
2517
2518 droq = octeon_dev->droq[q_no];
2519 napi = &droq->napi;
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07002520 dev_dbg(&octeon_dev->pci_dev->dev, "netif_napi_add netdev:%llx oct:%llx pf_num:%d\n",
2521 (u64)netdev, (u64)octeon_dev, octeon_dev->pf_num);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002522 netif_napi_add(netdev, napi, liquidio_napi_poll, 64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002523
2524 /* designate a CPU for this droq */
2525 droq->cpu_id = cpu_id;
2526 cpu_id++;
2527 if (cpu_id >= cpu_id_modulus)
2528 cpu_id = 0;
2529
2530 octeon_register_droq_ops(octeon_dev, q_no, &droq_ops);
2531 }
2532
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002533 if (OCTEON_CN23XX_PF(octeon_dev)) {
2534 /* 23XX PF can receive control messages (via the first PF-owned
2535 * droq) from the firmware even if the ethX interface is down,
2536 * so that's why poll_mode must be off for the first droq.
2537 */
2538 octeon_dev->droq[0]->ops.poll_mode = 0;
2539 }
2540
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002541 /* set up IQs. */
2542 for (q = 0; q < lio->linfo.num_txpciq; q++) {
2543 num_tx_descs = CFG_GET_NUM_TX_DESCS_NIC_IF(octeon_get_conf
2544 (octeon_dev),
2545 lio->ifidx);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002546 retval = octeon_setup_iq(octeon_dev, ifidx, q,
2547 lio->linfo.txpciq[q], num_tx_descs,
2548 netdev_get_tx_queue(netdev, q));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002549 if (retval) {
2550 dev_err(&octeon_dev->pci_dev->dev,
2551 " %s : Runtime IQ(TxQ) creation failed.\n",
2552 __func__);
2553 return 1;
2554 }
2555 }
2556
2557 return 0;
2558}
2559
2560/**
2561 * \brief Poll routine for checking transmit queue status
2562 * @param work work_struct data structure
2563 */
2564static void octnet_poll_check_txq_status(struct work_struct *work)
2565{
2566 struct cavium_wk *wk = (struct cavium_wk *)work;
2567 struct lio *lio = (struct lio *)wk->ctxptr;
2568
2569 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
2570 return;
2571
2572 check_txq_status(lio);
2573 queue_delayed_work(lio->txq_status_wq.wq,
2574 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2575}
2576
2577/**
2578 * \brief Sets up the txq poll check
2579 * @param netdev network device
2580 */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002581static inline int setup_tx_poll_fn(struct net_device *netdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002582{
2583 struct lio *lio = GET_LIO(netdev);
2584 struct octeon_device *oct = lio->oct_dev;
2585
Bhaktipriya Shridhar292b9da2016-06-08 01:47:59 +05302586 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
2587 WQ_MEM_RECLAIM, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002588 if (!lio->txq_status_wq.wq) {
2589 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002590 return -1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002591 }
2592 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
2593 octnet_poll_check_txq_status);
2594 lio->txq_status_wq.wk.ctxptr = lio;
2595 queue_delayed_work(lio->txq_status_wq.wq,
2596 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002597 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002598}
2599
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002600static inline void cleanup_tx_poll_fn(struct net_device *netdev)
2601{
2602 struct lio *lio = GET_LIO(netdev);
2603
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002604 if (lio->txq_status_wq.wq) {
2605 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
2606 destroy_workqueue(lio->txq_status_wq.wq);
2607 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002608}
2609
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002610/**
2611 * \brief Net device open for LiquidIO
2612 * @param netdev network device
2613 */
2614static int liquidio_open(struct net_device *netdev)
2615{
2616 struct lio *lio = GET_LIO(netdev);
2617 struct octeon_device *oct = lio->oct_dev;
2618 struct napi_struct *napi, *n;
2619
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002620 if (oct->props[lio->ifidx].napi_enabled == 0) {
2621 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2622 napi_enable(napi);
2623
2624 oct->props[lio->ifidx].napi_enabled = 1;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002625
2626 if (OCTEON_CN23XX_PF(oct))
2627 oct->droq[0]->ops.poll_mode = 1;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002628 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002629
2630 oct_ptp_open(netdev);
2631
2632 ifstate_set(lio, LIO_IFSTATE_RUNNING);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002633
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002634 /* Ready for link status updates */
2635 lio->intf_open = 1;
2636
2637 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
2638
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002639 if (OCTEON_CN23XX_PF(oct)) {
2640 if (!oct->msix_on)
2641 if (setup_tx_poll_fn(netdev))
2642 return -1;
2643 } else {
2644 if (setup_tx_poll_fn(netdev))
2645 return -1;
2646 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002647
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002648 start_txq(netdev);
2649
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002650 /* tell Octeon to start forwarding packets to host */
2651 send_rx_ctrl_cmd(lio, 1);
2652
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002653 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
2654 netdev->name);
2655
2656 return 0;
2657}
2658
2659/**
2660 * \brief Net device stop for LiquidIO
2661 * @param netdev network device
2662 */
2663static int liquidio_stop(struct net_device *netdev)
2664{
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002665 struct lio *lio = GET_LIO(netdev);
2666 struct octeon_device *oct = lio->oct_dev;
2667
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002668 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
2669
2670 netif_tx_disable(netdev);
2671
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002672 /* Inform that netif carrier is down */
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002673 netif_carrier_off(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002674 lio->intf_open = 0;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002675 lio->linfo.link.s.link_up = 0;
2676 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002677
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002678 /* Pause for a moment and wait for Octeon to flush out (to the wire) any
2679 * egress packets that are in-flight.
2680 */
2681 set_current_state(TASK_INTERRUPTIBLE);
2682 schedule_timeout(msecs_to_jiffies(100));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002683
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002684 /* Now it should be safe to tell Octeon that nic interface is down. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002685 send_rx_ctrl_cmd(lio, 0);
2686
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002687 if (OCTEON_CN23XX_PF(oct)) {
2688 if (!oct->msix_on)
2689 cleanup_tx_poll_fn(netdev);
2690 } else {
2691 cleanup_tx_poll_fn(netdev);
2692 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002693
2694 if (lio->ptp_clock) {
2695 ptp_clock_unregister(lio->ptp_clock);
2696 lio->ptp_clock = NULL;
2697 }
2698
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002699 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002700
2701 return 0;
2702}
2703
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002704/**
2705 * \brief Converts a mask based on net device flags
2706 * @param netdev network device
2707 *
2708 * This routine generates a octnet_ifflags mask from the net device flags
2709 * received from the OS.
2710 */
2711static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
2712{
2713 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
2714
2715 if (netdev->flags & IFF_PROMISC)
2716 f |= OCTNET_IFFLAG_PROMISC;
2717
2718 if (netdev->flags & IFF_ALLMULTI)
2719 f |= OCTNET_IFFLAG_ALLMULTI;
2720
2721 if (netdev->flags & IFF_MULTICAST) {
2722 f |= OCTNET_IFFLAG_MULTICAST;
2723
2724 /* Accept all multicast addresses if there are more than we
2725 * can handle
2726 */
2727 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
2728 f |= OCTNET_IFFLAG_ALLMULTI;
2729 }
2730
2731 if (netdev->flags & IFF_BROADCAST)
2732 f |= OCTNET_IFFLAG_BROADCAST;
2733
2734 return f;
2735}
2736
2737/**
2738 * \brief Net device set_multicast_list
2739 * @param netdev network device
2740 */
2741static void liquidio_set_mcast_list(struct net_device *netdev)
2742{
2743 struct lio *lio = GET_LIO(netdev);
2744 struct octeon_device *oct = lio->oct_dev;
2745 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002746 struct netdev_hw_addr *ha;
2747 u64 *mc;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002748 int ret;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002749 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
2750
2751 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2752
2753 /* Create a ctrl pkt command to be sent to core app. */
2754 nctrl.ncmd.u64 = 0;
2755 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002756 nctrl.ncmd.s.param1 = get_new_flags(netdev);
2757 nctrl.ncmd.s.param2 = mc_count;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002758 nctrl.ncmd.s.more = mc_count;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002759 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002760 nctrl.netpndev = (u64)netdev;
2761 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2762
2763 /* copy all the addresses into the udd */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002764 mc = &nctrl.udd[0];
2765 netdev_for_each_mc_addr(ha, netdev) {
2766 *mc = 0;
2767 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
2768 /* no need to swap bytes */
2769
2770 if (++mc > &nctrl.udd[mc_count])
2771 break;
2772 }
2773
2774 /* Apparently, any activity in this call from the kernel has to
2775 * be atomic. So we won't wait for response.
2776 */
2777 nctrl.wait_time = 0;
2778
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002779 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002780 if (ret < 0) {
2781 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
2782 ret);
2783 }
2784}
2785
2786/**
2787 * \brief Net device set_mac_address
2788 * @param netdev network device
2789 */
2790static int liquidio_set_mac(struct net_device *netdev, void *p)
2791{
2792 int ret = 0;
2793 struct lio *lio = GET_LIO(netdev);
2794 struct octeon_device *oct = lio->oct_dev;
2795 struct sockaddr *addr = (struct sockaddr *)p;
2796 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002797
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002798 if (!is_valid_ether_addr(addr->sa_data))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002799 return -EADDRNOTAVAIL;
2800
2801 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2802
2803 nctrl.ncmd.u64 = 0;
2804 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002805 nctrl.ncmd.s.param1 = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002806 nctrl.ncmd.s.more = 1;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002807 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002808 nctrl.netpndev = (u64)netdev;
2809 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2810 nctrl.wait_time = 100;
2811
2812 nctrl.udd[0] = 0;
2813 /* The MAC Address is presented in network byte order. */
2814 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2815
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002816 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002817 if (ret < 0) {
2818 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2819 return -ENOMEM;
2820 }
2821 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2822 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2823
2824 return 0;
2825}
2826
2827/**
2828 * \brief Net device get_stats
2829 * @param netdev network device
2830 */
2831static struct net_device_stats *liquidio_get_stats(struct net_device *netdev)
2832{
2833 struct lio *lio = GET_LIO(netdev);
2834 struct net_device_stats *stats = &netdev->stats;
2835 struct octeon_device *oct;
2836 u64 pkts = 0, drop = 0, bytes = 0;
2837 struct oct_droq_stats *oq_stats;
2838 struct oct_iq_stats *iq_stats;
2839 int i, iq_no, oq_no;
2840
2841 oct = lio->oct_dev;
2842
2843 for (i = 0; i < lio->linfo.num_txpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002844 iq_no = lio->linfo.txpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002845 iq_stats = &oct->instr_queue[iq_no]->stats;
2846 pkts += iq_stats->tx_done;
2847 drop += iq_stats->tx_dropped;
2848 bytes += iq_stats->tx_tot_bytes;
2849 }
2850
2851 stats->tx_packets = pkts;
2852 stats->tx_bytes = bytes;
2853 stats->tx_dropped = drop;
2854
2855 pkts = 0;
2856 drop = 0;
2857 bytes = 0;
2858
2859 for (i = 0; i < lio->linfo.num_rxpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002860 oq_no = lio->linfo.rxpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002861 oq_stats = &oct->droq[oq_no]->stats;
2862 pkts += oq_stats->rx_pkts_received;
2863 drop += (oq_stats->rx_dropped +
2864 oq_stats->dropped_nodispatch +
2865 oq_stats->dropped_toomany +
2866 oq_stats->dropped_nomem);
2867 bytes += oq_stats->rx_bytes_received;
2868 }
2869
2870 stats->rx_bytes = bytes;
2871 stats->rx_packets = pkts;
2872 stats->rx_dropped = drop;
2873
2874 return stats;
2875}
2876
2877/**
2878 * \brief Net device change_mtu
2879 * @param netdev network device
2880 */
2881static int liquidio_change_mtu(struct net_device *netdev, int new_mtu)
2882{
2883 struct lio *lio = GET_LIO(netdev);
2884 struct octeon_device *oct = lio->oct_dev;
2885 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002886 int ret = 0;
2887
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002888 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2889
2890 nctrl.ncmd.u64 = 0;
2891 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MTU;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002892 nctrl.ncmd.s.param1 = new_mtu;
2893 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002894 nctrl.wait_time = 100;
2895 nctrl.netpndev = (u64)netdev;
2896 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2897
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002898 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002899 if (ret < 0) {
2900 dev_err(&oct->pci_dev->dev, "Failed to set MTU\n");
2901 return -1;
2902 }
2903
2904 lio->mtu = new_mtu;
2905
2906 return 0;
2907}
2908
2909/**
2910 * \brief Handler for SIOCSHWTSTAMP ioctl
2911 * @param netdev network device
2912 * @param ifr interface request
2913 * @param cmd command
2914 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002915static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002916{
2917 struct hwtstamp_config conf;
2918 struct lio *lio = GET_LIO(netdev);
2919
2920 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
2921 return -EFAULT;
2922
2923 if (conf.flags)
2924 return -EINVAL;
2925
2926 switch (conf.tx_type) {
2927 case HWTSTAMP_TX_ON:
2928 case HWTSTAMP_TX_OFF:
2929 break;
2930 default:
2931 return -ERANGE;
2932 }
2933
2934 switch (conf.rx_filter) {
2935 case HWTSTAMP_FILTER_NONE:
2936 break;
2937 case HWTSTAMP_FILTER_ALL:
2938 case HWTSTAMP_FILTER_SOME:
2939 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
2940 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
2941 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
2942 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
2943 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
2944 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
2945 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
2946 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
2947 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
2948 case HWTSTAMP_FILTER_PTP_V2_EVENT:
2949 case HWTSTAMP_FILTER_PTP_V2_SYNC:
2950 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
2951 conf.rx_filter = HWTSTAMP_FILTER_ALL;
2952 break;
2953 default:
2954 return -ERANGE;
2955 }
2956
2957 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
2958 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2959
2960 else
2961 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2962
2963 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
2964}
2965
2966/**
2967 * \brief ioctl handler
2968 * @param netdev network device
2969 * @param ifr interface request
2970 * @param cmd command
2971 */
2972static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2973{
2974 switch (cmd) {
2975 case SIOCSHWTSTAMP:
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002976 return hwtstamp_ioctl(netdev, ifr);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002977 default:
2978 return -EOPNOTSUPP;
2979 }
2980}
2981
2982/**
2983 * \brief handle a Tx timestamp response
2984 * @param status response status
2985 * @param buf pointer to skb
2986 */
2987static void handle_timestamp(struct octeon_device *oct,
2988 u32 status,
2989 void *buf)
2990{
2991 struct octnet_buf_free_info *finfo;
2992 struct octeon_soft_command *sc;
2993 struct oct_timestamp_resp *resp;
2994 struct lio *lio;
2995 struct sk_buff *skb = (struct sk_buff *)buf;
2996
2997 finfo = (struct octnet_buf_free_info *)skb->cb;
2998 lio = finfo->lio;
2999 sc = finfo->sc;
3000 oct = lio->oct_dev;
3001 resp = (struct oct_timestamp_resp *)sc->virtrptr;
3002
3003 if (status != OCTEON_REQUEST_DONE) {
3004 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
3005 CVM_CAST64(status));
3006 resp->timestamp = 0;
3007 }
3008
3009 octeon_swap_8B_data(&resp->timestamp, 1);
3010
Colin Ian King19a6d152016-02-05 16:30:39 +00003011 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003012 struct skb_shared_hwtstamps ts;
3013 u64 ns = resp->timestamp;
3014
3015 netif_info(lio, tx_done, lio->netdev,
3016 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
3017 skb, (unsigned long long)ns);
3018 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
3019 skb_tstamp_tx(skb, &ts);
3020 }
3021
3022 octeon_free_soft_command(oct, sc);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003023 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003024}
3025
3026/* \brief Send a data packet that will be timestamped
3027 * @param oct octeon device
3028 * @param ndata pointer to network data
3029 * @param finfo pointer to private network data
3030 */
3031static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
3032 struct octnic_data_pkt *ndata,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003033 struct octnet_buf_free_info *finfo)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003034{
3035 int retval;
3036 struct octeon_soft_command *sc;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003037 struct lio *lio;
3038 int ring_doorbell;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003039 u32 len;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003040
3041 lio = finfo->lio;
3042
3043 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
3044 sizeof(struct oct_timestamp_resp));
3045 finfo->sc = sc;
3046
3047 if (!sc) {
3048 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
3049 return IQ_SEND_FAILED;
3050 }
3051
3052 if (ndata->reqtype == REQTYPE_NORESP_NET)
3053 ndata->reqtype = REQTYPE_RESP_NET;
3054 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
3055 ndata->reqtype = REQTYPE_RESP_NET_SG;
3056
3057 sc->callback = handle_timestamp;
3058 sc->callback_arg = finfo->skb;
3059 sc->iq_no = ndata->q_no;
3060
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003061 if (OCTEON_CN23XX_PF(oct))
3062 len = (u32)((struct octeon_instr_ih3 *)
3063 (&sc->cmd.cmd3.ih3))->dlengsz;
3064 else
3065 len = (u32)((struct octeon_instr_ih2 *)
3066 (&sc->cmd.cmd2.ih2))->dlengsz;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003067
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003068 ring_doorbell = 1;
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003069
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003070 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003071 sc, len, ndata->reqtype);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003072
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003073 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003074 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
3075 retval);
3076 octeon_free_soft_command(oct, sc);
3077 } else {
3078 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
3079 }
3080
3081 return retval;
3082}
3083
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003084/** \brief Transmit networks packets to the Octeon interface
3085 * @param skbuff skbuff struct to be passed to network layer.
3086 * @param netdev pointer to network device
3087 * @returns whether the packet was transmitted to the device okay or not
3088 * (NETDEV_TX_OK or NETDEV_TX_BUSY)
3089 */
3090static int liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
3091{
3092 struct lio *lio;
3093 struct octnet_buf_free_info *finfo;
3094 union octnic_cmd_setup cmdsetup;
3095 struct octnic_data_pkt ndata;
3096 struct octeon_device *oct;
3097 struct oct_iq_stats *stats;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003098 struct octeon_instr_irh *irh;
3099 union tx_info *tx_info;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003100 int status = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003101 int q_idx = 0, iq_no = 0;
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003102 int j;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003103 u64 dptr = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003104 u32 tag = 0;
3105
3106 lio = GET_LIO(netdev);
3107 oct = lio->oct_dev;
3108
3109 if (netif_is_multiqueue(netdev)) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003110 q_idx = skb->queue_mapping;
3111 q_idx = (q_idx % (lio->linfo.num_txpciq));
3112 tag = q_idx;
3113 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003114 } else {
3115 iq_no = lio->txq;
3116 }
3117
3118 stats = &oct->instr_queue[iq_no]->stats;
3119
3120 /* Check for all conditions in which the current packet cannot be
3121 * transmitted.
3122 */
3123 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003124 (!lio->linfo.link.s.link_up) ||
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003125 (skb->len <= 0)) {
3126 netif_info(lio, tx_err, lio->netdev,
3127 "Transmit failed link_status : %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003128 lio->linfo.link.s.link_up);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003129 goto lio_xmit_failed;
3130 }
3131
3132 /* Use space in skb->cb to store info used to unmap and
3133 * free the buffers.
3134 */
3135 finfo = (struct octnet_buf_free_info *)skb->cb;
3136 finfo->lio = lio;
3137 finfo->skb = skb;
3138 finfo->sc = NULL;
3139
3140 /* Prepare the attributes for the data to be passed to OSI. */
3141 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
3142
3143 ndata.buf = (void *)finfo;
3144
3145 ndata.q_no = iq_no;
3146
3147 if (netif_is_multiqueue(netdev)) {
3148 if (octnet_iq_is_full(oct, ndata.q_no)) {
3149 /* defer sending if queue is full */
3150 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
3151 ndata.q_no);
3152 stats->tx_iq_busy++;
3153 return NETDEV_TX_BUSY;
3154 }
3155 } else {
3156 if (octnet_iq_is_full(oct, lio->txq)) {
3157 /* defer sending if queue is full */
3158 stats->tx_iq_busy++;
3159 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003160 lio->txq);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003161 return NETDEV_TX_BUSY;
3162 }
3163 }
3164 /* pr_info(" XMIT - valid Qs: %d, 1st Q no: %d, cpu: %d, q_no:%d\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003165 * lio->linfo.num_txpciq, lio->txq, cpu, ndata.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003166 */
3167
3168 ndata.datasize = skb->len;
3169
3170 cmdsetup.u64 = 0;
Raghu Vatsavayi7275ebf2016-06-14 16:54:49 -07003171 cmdsetup.s.iq_no = iq_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003172
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003173 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3174 if (skb->encapsulation) {
3175 cmdsetup.s.tnl_csum = 1;
3176 stats->tx_vxlan++;
3177 } else {
3178 cmdsetup.s.transport_csum = 1;
3179 }
3180 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003181 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
3182 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
3183 cmdsetup.s.timestamp = 1;
3184 }
3185
3186 if (skb_shinfo(skb)->nr_frags == 0) {
3187 cmdsetup.s.u.datasize = skb->len;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003188 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003189
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003190 /* Offload checksum calculation for TCP/UDP packets */
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003191 dptr = dma_map_single(&oct->pci_dev->dev,
3192 skb->data,
3193 skb->len,
3194 DMA_TO_DEVICE);
3195 if (dma_mapping_error(&oct->pci_dev->dev, dptr)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003196 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
3197 __func__);
3198 return NETDEV_TX_BUSY;
3199 }
3200
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003201 if (OCTEON_CN23XX_PF(oct))
3202 ndata.cmd.cmd3.dptr = dptr;
3203 else
3204 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003205 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003206 ndata.reqtype = REQTYPE_NORESP_NET;
3207
3208 } else {
3209 int i, frags;
3210 struct skb_frag_struct *frag;
3211 struct octnic_gather *g;
3212
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003213 spin_lock(&lio->glist_lock[q_idx]);
3214 g = (struct octnic_gather *)
3215 list_delete_head(&lio->glist[q_idx]);
3216 spin_unlock(&lio->glist_lock[q_idx]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003217
3218 if (!g) {
3219 netif_info(lio, tx_err, lio->netdev,
3220 "Transmit scatter gather: glist null!\n");
3221 goto lio_xmit_failed;
3222 }
3223
3224 cmdsetup.s.gather = 1;
3225 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003226 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003227
3228 memset(g->sg, 0, g->sg_size);
3229
3230 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
3231 skb->data,
3232 (skb->len - skb->data_len),
3233 DMA_TO_DEVICE);
3234 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
3235 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
3236 __func__);
3237 return NETDEV_TX_BUSY;
3238 }
3239 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
3240
3241 frags = skb_shinfo(skb)->nr_frags;
3242 i = 1;
3243 while (frags--) {
3244 frag = &skb_shinfo(skb)->frags[i - 1];
3245
3246 g->sg[(i >> 2)].ptr[(i & 3)] =
3247 dma_map_page(&oct->pci_dev->dev,
3248 frag->page.p,
3249 frag->page_offset,
3250 frag->size,
3251 DMA_TO_DEVICE);
3252
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003253 if (dma_mapping_error(&oct->pci_dev->dev,
3254 g->sg[i >> 2].ptr[i & 3])) {
3255 dma_unmap_single(&oct->pci_dev->dev,
3256 g->sg[0].ptr[0],
3257 skb->len - skb->data_len,
3258 DMA_TO_DEVICE);
3259 for (j = 1; j < i; j++) {
3260 frag = &skb_shinfo(skb)->frags[j - 1];
3261 dma_unmap_page(&oct->pci_dev->dev,
3262 g->sg[j >> 2].ptr[j & 3],
3263 frag->size,
3264 DMA_TO_DEVICE);
3265 }
3266 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
3267 __func__);
3268 return NETDEV_TX_BUSY;
3269 }
3270
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003271 add_sg_size(&g->sg[(i >> 2)], frag->size, (i & 3));
3272 i++;
3273 }
3274
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003275 dma_sync_single_for_device(&oct->pci_dev->dev, g->sg_dma_ptr,
3276 g->sg_size, DMA_TO_DEVICE);
3277 dptr = g->sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003278
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003279 if (OCTEON_CN23XX_PF(oct))
3280 ndata.cmd.cmd3.dptr = dptr;
3281 else
3282 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003283 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003284 finfo->g = g;
3285
3286 ndata.reqtype = REQTYPE_NORESP_NET_SG;
3287 }
3288
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003289 if (OCTEON_CN23XX_PF(oct)) {
3290 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd3.irh;
3291 tx_info = (union tx_info *)&ndata.cmd.cmd3.ossp[0];
3292 } else {
3293 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd2.irh;
3294 tx_info = (union tx_info *)&ndata.cmd.cmd2.ossp[0];
3295 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003296
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003297 if (skb_shinfo(skb)->gso_size) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003298 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
3299 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003300 stats->tx_gso++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003301 }
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003302
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07003303 /* HW insert VLAN tag */
3304 if (skb_vlan_tag_present(skb)) {
3305 irh->priority = skb_vlan_tag_get(skb) >> 13;
3306 irh->vlan = skb_vlan_tag_get(skb) & 0xfff;
3307 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003308
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003309 if (unlikely(cmdsetup.s.timestamp))
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003310 status = send_nic_timestamp_pkt(oct, &ndata, finfo);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003311 else
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003312 status = octnet_send_nic_data_pkt(oct, &ndata);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003313 if (status == IQ_SEND_FAILED)
3314 goto lio_xmit_failed;
3315
3316 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
3317
3318 if (status == IQ_SEND_STOP)
3319 stop_q(lio->netdev, q_idx);
3320
Florian Westphal860e9532016-05-03 16:33:13 +02003321 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003322
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003323 if (skb_shinfo(skb)->gso_size)
3324 stats->tx_done += skb_shinfo(skb)->gso_segs;
3325 else
3326 stats->tx_done++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003327 stats->tx_tot_bytes += skb->len;
3328
3329 return NETDEV_TX_OK;
3330
3331lio_xmit_failed:
3332 stats->tx_dropped++;
3333 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
3334 iq_no, stats->tx_dropped);
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003335 if (dptr)
3336 dma_unmap_single(&oct->pci_dev->dev, dptr,
3337 ndata.datasize, DMA_TO_DEVICE);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003338 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003339 return NETDEV_TX_OK;
3340}
3341
3342/** \brief Network device Tx timeout
3343 * @param netdev pointer to network device
3344 */
3345static void liquidio_tx_timeout(struct net_device *netdev)
3346{
3347 struct lio *lio;
3348
3349 lio = GET_LIO(netdev);
3350
3351 netif_info(lio, tx_err, lio->netdev,
3352 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
3353 netdev->stats.tx_dropped);
Florian Westphal860e9532016-05-03 16:33:13 +02003354 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003355 txqs_wake(netdev);
3356}
3357
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003358static int liquidio_vlan_rx_add_vid(struct net_device *netdev,
3359 __be16 proto __attribute__((unused)),
3360 u16 vid)
3361{
3362 struct lio *lio = GET_LIO(netdev);
3363 struct octeon_device *oct = lio->oct_dev;
3364 struct octnic_ctrl_pkt nctrl;
3365 int ret = 0;
3366
3367 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3368
3369 nctrl.ncmd.u64 = 0;
3370 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3371 nctrl.ncmd.s.param1 = vid;
3372 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3373 nctrl.wait_time = 100;
3374 nctrl.netpndev = (u64)netdev;
3375 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3376
3377 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3378 if (ret < 0) {
3379 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3380 ret);
3381 }
3382
3383 return ret;
3384}
3385
3386static int liquidio_vlan_rx_kill_vid(struct net_device *netdev,
3387 __be16 proto __attribute__((unused)),
3388 u16 vid)
3389{
3390 struct lio *lio = GET_LIO(netdev);
3391 struct octeon_device *oct = lio->oct_dev;
3392 struct octnic_ctrl_pkt nctrl;
3393 int ret = 0;
3394
3395 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3396
3397 nctrl.ncmd.u64 = 0;
3398 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3399 nctrl.ncmd.s.param1 = vid;
3400 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3401 nctrl.wait_time = 100;
3402 nctrl.netpndev = (u64)netdev;
3403 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3404
3405 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3406 if (ret < 0) {
3407 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3408 ret);
3409 }
3410 return ret;
3411}
3412
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003413/** Sending command to enable/disable RX checksum offload
3414 * @param netdev pointer to network device
3415 * @param command OCTNET_CMD_TNL_RX_CSUM_CTL
3416 * @param rx_cmd_bit OCTNET_CMD_RXCSUM_ENABLE/
3417 * OCTNET_CMD_RXCSUM_DISABLE
3418 * @returns SUCCESS or FAILURE
3419 */
Nicholas Mc Guirec41419b2016-08-22 17:52:00 +02003420static int liquidio_set_rxcsum_command(struct net_device *netdev, int command,
3421 u8 rx_cmd)
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003422{
3423 struct lio *lio = GET_LIO(netdev);
3424 struct octeon_device *oct = lio->oct_dev;
3425 struct octnic_ctrl_pkt nctrl;
3426 int ret = 0;
3427
3428 nctrl.ncmd.u64 = 0;
3429 nctrl.ncmd.s.cmd = command;
3430 nctrl.ncmd.s.param1 = rx_cmd;
3431 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3432 nctrl.wait_time = 100;
3433 nctrl.netpndev = (u64)netdev;
3434 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3435
3436 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3437 if (ret < 0) {
3438 dev_err(&oct->pci_dev->dev,
3439 "DEVFLAGS RXCSUM change failed in core(ret:0x%x)\n",
3440 ret);
3441 }
3442 return ret;
3443}
3444
3445/** Sending command to add/delete VxLAN UDP port to firmware
3446 * @param netdev pointer to network device
3447 * @param command OCTNET_CMD_VXLAN_PORT_CONFIG
3448 * @param vxlan_port VxLAN port to be added or deleted
3449 * @param vxlan_cmd_bit OCTNET_CMD_VXLAN_PORT_ADD,
3450 * OCTNET_CMD_VXLAN_PORT_DEL
3451 * @returns SUCCESS or FAILURE
3452 */
3453static int liquidio_vxlan_port_command(struct net_device *netdev, int command,
3454 u16 vxlan_port, u8 vxlan_cmd_bit)
3455{
3456 struct lio *lio = GET_LIO(netdev);
3457 struct octeon_device *oct = lio->oct_dev;
3458 struct octnic_ctrl_pkt nctrl;
3459 int ret = 0;
3460
3461 nctrl.ncmd.u64 = 0;
3462 nctrl.ncmd.s.cmd = command;
3463 nctrl.ncmd.s.more = vxlan_cmd_bit;
3464 nctrl.ncmd.s.param1 = vxlan_port;
3465 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3466 nctrl.wait_time = 100;
3467 nctrl.netpndev = (u64)netdev;
3468 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3469
3470 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3471 if (ret < 0) {
3472 dev_err(&oct->pci_dev->dev,
3473 "VxLAN port add/delete failed in core (ret:0x%x)\n",
3474 ret);
3475 }
3476 return ret;
3477}
3478
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003479/** \brief Net device fix features
3480 * @param netdev pointer to network device
3481 * @param request features requested
3482 * @returns updated features list
3483 */
3484static netdev_features_t liquidio_fix_features(struct net_device *netdev,
3485 netdev_features_t request)
3486{
3487 struct lio *lio = netdev_priv(netdev);
3488
3489 if ((request & NETIF_F_RXCSUM) &&
3490 !(lio->dev_capability & NETIF_F_RXCSUM))
3491 request &= ~NETIF_F_RXCSUM;
3492
3493 if ((request & NETIF_F_HW_CSUM) &&
3494 !(lio->dev_capability & NETIF_F_HW_CSUM))
3495 request &= ~NETIF_F_HW_CSUM;
3496
3497 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
3498 request &= ~NETIF_F_TSO;
3499
3500 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
3501 request &= ~NETIF_F_TSO6;
3502
3503 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
3504 request &= ~NETIF_F_LRO;
3505
3506 /*Disable LRO if RXCSUM is off */
3507 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
3508 (lio->dev_capability & NETIF_F_LRO))
3509 request &= ~NETIF_F_LRO;
3510
3511 return request;
3512}
3513
3514/** \brief Net device set features
3515 * @param netdev pointer to network device
3516 * @param features features to enable/disable
3517 */
3518static int liquidio_set_features(struct net_device *netdev,
3519 netdev_features_t features)
3520{
3521 struct lio *lio = netdev_priv(netdev);
3522
3523 if (!((netdev->features ^ features) & NETIF_F_LRO))
3524 return 0;
3525
3526 if ((features & NETIF_F_LRO) && (lio->dev_capability & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003527 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3528 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003529 else if (!(features & NETIF_F_LRO) &&
3530 (lio->dev_capability & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003531 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE,
3532 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003533
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003534 /* Sending command to firmware to enable/disable RX checksum
3535 * offload settings using ethtool
3536 */
3537 if (!(netdev->features & NETIF_F_RXCSUM) &&
3538 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3539 (features & NETIF_F_RXCSUM))
3540 liquidio_set_rxcsum_command(netdev,
3541 OCTNET_CMD_TNL_RX_CSUM_CTL,
3542 OCTNET_CMD_RXCSUM_ENABLE);
3543 else if ((netdev->features & NETIF_F_RXCSUM) &&
3544 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3545 !(features & NETIF_F_RXCSUM))
3546 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
3547 OCTNET_CMD_RXCSUM_DISABLE);
3548
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003549 return 0;
3550}
3551
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003552static void liquidio_add_vxlan_port(struct net_device *netdev,
3553 struct udp_tunnel_info *ti)
3554{
3555 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3556 return;
3557
3558 liquidio_vxlan_port_command(netdev,
3559 OCTNET_CMD_VXLAN_PORT_CONFIG,
3560 htons(ti->port),
3561 OCTNET_CMD_VXLAN_PORT_ADD);
3562}
3563
3564static void liquidio_del_vxlan_port(struct net_device *netdev,
3565 struct udp_tunnel_info *ti)
3566{
3567 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3568 return;
3569
3570 liquidio_vxlan_port_command(netdev,
3571 OCTNET_CMD_VXLAN_PORT_CONFIG,
3572 htons(ti->port),
3573 OCTNET_CMD_VXLAN_PORT_DEL);
3574}
3575
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003576static int __liquidio_set_vf_mac(struct net_device *netdev, int vfidx,
3577 u8 *mac, bool is_admin_assigned)
3578{
3579 struct lio *lio = GET_LIO(netdev);
3580 struct octeon_device *oct = lio->oct_dev;
3581 struct octnic_ctrl_pkt nctrl;
3582
3583 if (!is_valid_ether_addr(mac))
3584 return -EINVAL;
3585
3586 if (vfidx < 0 || vfidx >= oct->sriov_info.max_vfs)
3587 return -EINVAL;
3588
3589 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3590
3591 nctrl.ncmd.u64 = 0;
3592 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
3593 /* vfidx is 0 based, but vf_num (param1) is 1 based */
3594 nctrl.ncmd.s.param1 = vfidx + 1;
3595 nctrl.ncmd.s.param2 = (is_admin_assigned ? 1 : 0);
3596 nctrl.ncmd.s.more = 1;
3597 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3598 nctrl.cb_fn = 0;
3599 nctrl.wait_time = LIO_CMD_WAIT_TM;
3600
3601 nctrl.udd[0] = 0;
3602 /* The MAC Address is presented in network byte order. */
3603 ether_addr_copy((u8 *)&nctrl.udd[0] + 2, mac);
3604
3605 oct->sriov_info.vf_macaddr[vfidx] = nctrl.udd[0];
3606
3607 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3608
3609 return 0;
3610}
3611
3612static int liquidio_set_vf_mac(struct net_device *netdev, int vfidx, u8 *mac)
3613{
3614 struct lio *lio = GET_LIO(netdev);
3615 struct octeon_device *oct = lio->oct_dev;
3616 int retval;
3617
3618 retval = __liquidio_set_vf_mac(netdev, vfidx, mac, true);
3619 if (!retval)
3620 cn23xx_tell_vf_its_macaddr_changed(oct, vfidx, mac);
3621
3622 return retval;
3623}
3624
3625static int liquidio_set_vf_vlan(struct net_device *netdev, int vfidx,
3626 u16 vlan, u8 qos, __be16 vlan_proto)
3627{
3628 struct lio *lio = GET_LIO(netdev);
3629 struct octeon_device *oct = lio->oct_dev;
3630 struct octnic_ctrl_pkt nctrl;
3631 u16 vlantci;
3632
3633 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3634 return -EINVAL;
3635
3636 if (vlan_proto != htons(ETH_P_8021Q))
3637 return -EPROTONOSUPPORT;
3638
3639 if (vlan >= VLAN_N_VID || qos > 7)
3640 return -EINVAL;
3641
3642 if (vlan)
3643 vlantci = vlan | (u16)qos << VLAN_PRIO_SHIFT;
3644 else
3645 vlantci = 0;
3646
3647 if (oct->sriov_info.vf_vlantci[vfidx] == vlantci)
3648 return 0;
3649
3650 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3651
3652 if (vlan)
3653 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3654 else
3655 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3656
3657 nctrl.ncmd.s.param1 = vlantci;
3658 nctrl.ncmd.s.param2 =
3659 vfidx + 1; /* vfidx is 0 based, but vf_num (param2) is 1 based */
3660 nctrl.ncmd.s.more = 0;
3661 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3662 nctrl.cb_fn = 0;
3663 nctrl.wait_time = LIO_CMD_WAIT_TM;
3664
3665 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3666
3667 oct->sriov_info.vf_vlantci[vfidx] = vlantci;
3668
3669 return 0;
3670}
3671
3672static int liquidio_get_vf_config(struct net_device *netdev, int vfidx,
3673 struct ifla_vf_info *ivi)
3674{
3675 struct lio *lio = GET_LIO(netdev);
3676 struct octeon_device *oct = lio->oct_dev;
3677 u8 *macaddr;
3678
3679 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3680 return -EINVAL;
3681
3682 ivi->vf = vfidx;
3683 macaddr = 2 + (u8 *)&oct->sriov_info.vf_macaddr[vfidx];
3684 ether_addr_copy(&ivi->mac[0], macaddr);
3685 ivi->vlan = oct->sriov_info.vf_vlantci[vfidx] & VLAN_VID_MASK;
3686 ivi->qos = oct->sriov_info.vf_vlantci[vfidx] >> VLAN_PRIO_SHIFT;
3687 ivi->linkstate = oct->sriov_info.vf_linkstate[vfidx];
3688 return 0;
3689}
3690
3691static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
3692 int linkstate)
3693{
3694 struct lio *lio = GET_LIO(netdev);
3695 struct octeon_device *oct = lio->oct_dev;
3696 struct octnic_ctrl_pkt nctrl;
3697
3698 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3699 return -EINVAL;
3700
3701 if (oct->sriov_info.vf_linkstate[vfidx] == linkstate)
3702 return 0;
3703
3704 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3705 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_VF_LINKSTATE;
3706 nctrl.ncmd.s.param1 =
3707 vfidx + 1; /* vfidx is 0 based, but vf_num (param1) is 1 based */
3708 nctrl.ncmd.s.param2 = linkstate;
3709 nctrl.ncmd.s.more = 0;
3710 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3711 nctrl.cb_fn = 0;
3712 nctrl.wait_time = LIO_CMD_WAIT_TM;
3713
3714 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3715
3716 oct->sriov_info.vf_linkstate[vfidx] = linkstate;
3717
3718 return 0;
3719}
3720
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003721static struct net_device_ops lionetdevops = {
3722 .ndo_open = liquidio_open,
3723 .ndo_stop = liquidio_stop,
3724 .ndo_start_xmit = liquidio_xmit,
3725 .ndo_get_stats = liquidio_get_stats,
3726 .ndo_set_mac_address = liquidio_set_mac,
3727 .ndo_set_rx_mode = liquidio_set_mcast_list,
3728 .ndo_tx_timeout = liquidio_tx_timeout,
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003729
3730 .ndo_vlan_rx_add_vid = liquidio_vlan_rx_add_vid,
3731 .ndo_vlan_rx_kill_vid = liquidio_vlan_rx_kill_vid,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003732 .ndo_change_mtu = liquidio_change_mtu,
3733 .ndo_do_ioctl = liquidio_ioctl,
3734 .ndo_fix_features = liquidio_fix_features,
3735 .ndo_set_features = liquidio_set_features,
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003736 .ndo_udp_tunnel_add = liquidio_add_vxlan_port,
3737 .ndo_udp_tunnel_del = liquidio_del_vxlan_port,
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003738 .ndo_set_vf_mac = liquidio_set_vf_mac,
3739 .ndo_set_vf_vlan = liquidio_set_vf_vlan,
3740 .ndo_get_vf_config = liquidio_get_vf_config,
3741 .ndo_set_vf_link_state = liquidio_set_vf_link_state,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003742};
3743
3744/** \brief Entry point for the liquidio module
3745 */
3746static int __init liquidio_init(void)
3747{
3748 int i;
3749 struct handshake *hs;
3750
3751 init_completion(&first_stage);
3752
3753 octeon_init_device_list(conf_type);
3754
3755 if (liquidio_init_pci())
3756 return -EINVAL;
3757
3758 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3759
3760 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3761 hs = &handshake[i];
3762 if (hs->pci_dev) {
3763 wait_for_completion(&hs->init);
3764 if (!hs->init_ok) {
3765 /* init handshake failed */
3766 dev_err(&hs->pci_dev->dev,
3767 "Failed to init device\n");
3768 liquidio_deinit_pci();
3769 return -EIO;
3770 }
3771 }
3772 }
3773
3774 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3775 hs = &handshake[i];
3776 if (hs->pci_dev) {
3777 wait_for_completion_timeout(&hs->started,
3778 msecs_to_jiffies(30000));
3779 if (!hs->started_ok) {
3780 /* starter handshake failed */
3781 dev_err(&hs->pci_dev->dev,
3782 "Firmware failed to start\n");
3783 liquidio_deinit_pci();
3784 return -EIO;
3785 }
3786 }
3787 }
3788
3789 return 0;
3790}
3791
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -07003792static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003793{
3794 struct octeon_device *oct = (struct octeon_device *)buf;
3795 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003796 int gmxport = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003797 union oct_link_status *ls;
3798 int i;
3799
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003800 if (recv_pkt->buffer_size[0] != sizeof(*ls)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003801 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3802 recv_pkt->buffer_size[0],
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003803 recv_pkt->rh.r_nic_info.gmxport);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003804 goto nic_info_err;
3805 }
3806
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003807 gmxport = recv_pkt->rh.r_nic_info.gmxport;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003808 ls = (union oct_link_status *)get_rbd(recv_pkt->buffer_ptr[0]);
3809
3810 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003811 for (i = 0; i < oct->ifcount; i++) {
3812 if (oct->props[i].gmxport == gmxport) {
3813 update_link_status(oct->props[i].netdev, ls);
3814 break;
3815 }
3816 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003817
3818nic_info_err:
3819 for (i = 0; i < recv_pkt->buffer_count; i++)
3820 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3821 octeon_free_recv_info(recv_info);
3822 return 0;
3823}
3824
3825/**
3826 * \brief Setup network interfaces
3827 * @param octeon_dev octeon device
3828 *
3829 * Called during init time for each device. It assumes the NIC
3830 * is already up and running. The link information for each
3831 * interface is passed in link_info.
3832 */
3833static int setup_nic_devices(struct octeon_device *octeon_dev)
3834{
3835 struct lio *lio = NULL;
3836 struct net_device *netdev;
3837 u8 mac[6], i, j;
3838 struct octeon_soft_command *sc;
3839 struct liquidio_if_cfg_context *ctx;
3840 struct liquidio_if_cfg_resp *resp;
3841 struct octdev_props *props;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003842 int retval, num_iqueues, num_oqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003843 union oct_nic_if_cfg if_cfg;
3844 unsigned int base_queue;
3845 unsigned int gmx_port_id;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003846 u32 resp_size, ctx_size, data_size;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003847 u32 ifidx_or_pfnum;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003848 struct lio_version *vdata;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003849
3850 /* This is to handle link status changes */
3851 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3852 OPCODE_NIC_INFO,
3853 lio_nic_info, octeon_dev);
3854
3855 /* REQTYPE_RESP_NET and REQTYPE_SOFT_COMMAND do not have free functions.
3856 * They are handled directly.
3857 */
3858 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
3859 free_netbuf);
3860
3861 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
3862 free_netsgbuf);
3863
3864 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
3865 free_netsgbuf_with_resp);
3866
3867 for (i = 0; i < octeon_dev->ifcount; i++) {
3868 resp_size = sizeof(struct liquidio_if_cfg_resp);
3869 ctx_size = sizeof(struct liquidio_if_cfg_context);
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003870 data_size = sizeof(struct lio_version);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003871 sc = (struct octeon_soft_command *)
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003872 octeon_alloc_soft_command(octeon_dev, data_size,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003873 resp_size, ctx_size);
3874 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
3875 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003876 vdata = (struct lio_version *)sc->virtdptr;
3877
3878 *((u64 *)vdata) = 0;
3879 vdata->major = cpu_to_be16(LIQUIDIO_BASE_MAJOR_VERSION);
3880 vdata->minor = cpu_to_be16(LIQUIDIO_BASE_MINOR_VERSION);
3881 vdata->micro = cpu_to_be16(LIQUIDIO_BASE_MICRO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003882
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07003883 if (OCTEON_CN23XX_PF(octeon_dev)) {
3884 num_iqueues = octeon_dev->sriov_info.num_pf_rings;
3885 num_oqueues = octeon_dev->sriov_info.num_pf_rings;
3886 base_queue = octeon_dev->sriov_info.pf_srn;
3887
3888 gmx_port_id = octeon_dev->pf_num;
3889 ifidx_or_pfnum = octeon_dev->pf_num;
3890 } else {
3891 num_iqueues = CFG_GET_NUM_TXQS_NIC_IF(
3892 octeon_get_conf(octeon_dev), i);
3893 num_oqueues = CFG_GET_NUM_RXQS_NIC_IF(
3894 octeon_get_conf(octeon_dev), i);
3895 base_queue = CFG_GET_BASE_QUE_NIC_IF(
3896 octeon_get_conf(octeon_dev), i);
3897 gmx_port_id = CFG_GET_GMXID_NIC_IF(
3898 octeon_get_conf(octeon_dev), i);
3899 ifidx_or_pfnum = i;
3900 }
Raghu Vatsavayi3dcef2c2016-07-03 13:56:51 -07003901
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003902 dev_dbg(&octeon_dev->pci_dev->dev,
3903 "requesting config for interface %d, iqs %d, oqs %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003904 ifidx_or_pfnum, num_iqueues, num_oqueues);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07003905 WRITE_ONCE(ctx->cond, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003906 ctx->octeon_id = lio_get_device_id(octeon_dev);
3907 init_waitqueue_head(&ctx->wc);
3908
3909 if_cfg.u64 = 0;
3910 if_cfg.s.num_iqueues = num_iqueues;
3911 if_cfg.s.num_oqueues = num_oqueues;
3912 if_cfg.s.base_queue = base_queue;
3913 if_cfg.s.gmx_port_id = gmx_port_id;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003914
3915 sc->iq_no = 0;
3916
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003917 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003918 OPCODE_NIC_IF_CFG, 0,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003919 if_cfg.u64, 0);
3920
3921 sc->callback = if_cfg_callback;
3922 sc->callback_arg = sc;
Raghu Vatsavayi55893a62016-07-03 13:56:50 -07003923 sc->wait_time = 3000;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003924
3925 retval = octeon_send_soft_command(octeon_dev, sc);
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003926 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003927 dev_err(&octeon_dev->pci_dev->dev,
3928 "iq/oq config failed status: %x\n",
3929 retval);
3930 /* Soft instr is freed by driver in case of failure. */
3931 goto setup_nic_dev_fail;
3932 }
3933
3934 /* Sleep on a wait queue till the cond flag indicates that the
3935 * response arrived or timed-out.
3936 */
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07003937 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR) {
3938 dev_err(&octeon_dev->pci_dev->dev, "Wait interrupted\n");
3939 goto setup_nic_wait_intr;
3940 }
3941
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003942 retval = resp->status;
3943 if (retval) {
3944 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
3945 goto setup_nic_dev_fail;
3946 }
3947
3948 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
3949 (sizeof(struct liquidio_if_cfg_info)) >> 3);
3950
3951 num_iqueues = hweight64(resp->cfg_info.iqmask);
3952 num_oqueues = hweight64(resp->cfg_info.oqmask);
3953
3954 if (!(num_iqueues) || !(num_oqueues)) {
3955 dev_err(&octeon_dev->pci_dev->dev,
3956 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
3957 resp->cfg_info.iqmask,
3958 resp->cfg_info.oqmask);
3959 goto setup_nic_dev_fail;
3960 }
3961 dev_dbg(&octeon_dev->pci_dev->dev,
3962 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d\n",
3963 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
3964 num_iqueues, num_oqueues);
3965 netdev = alloc_etherdev_mq(LIO_SIZE, num_iqueues);
3966
3967 if (!netdev) {
3968 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
3969 goto setup_nic_dev_fail;
3970 }
3971
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003972 SET_NETDEV_DEV(netdev, &octeon_dev->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003973
3974 if (num_iqueues > 1)
3975 lionetdevops.ndo_select_queue = select_q;
3976
3977 /* Associate the routines that will handle different
3978 * netdev tasks.
3979 */
3980 netdev->netdev_ops = &lionetdevops;
3981
3982 lio = GET_LIO(netdev);
3983
3984 memset(lio, 0, sizeof(struct lio));
3985
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003986 lio->ifidx = ifidx_or_pfnum;
3987
3988 props = &octeon_dev->props[i];
3989 props->gmxport = resp->cfg_info.linfo.gmxport;
3990 props->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003991
3992 lio->linfo.num_rxpciq = num_oqueues;
3993 lio->linfo.num_txpciq = num_iqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003994 for (j = 0; j < num_oqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003995 lio->linfo.rxpciq[j].u64 =
3996 resp->cfg_info.linfo.rxpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003997 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003998 for (j = 0; j < num_iqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003999 lio->linfo.txpciq[j].u64 =
4000 resp->cfg_info.linfo.txpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004001 }
4002 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
4003 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
4004 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
4005
4006 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
4007
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07004008 if (OCTEON_CN23XX_PF(octeon_dev) ||
4009 OCTEON_CN6XXX(octeon_dev)) {
4010 lio->dev_capability = NETIF_F_HIGHDMA
4011 | NETIF_F_IP_CSUM
4012 | NETIF_F_IPV6_CSUM
4013 | NETIF_F_SG | NETIF_F_RXCSUM
4014 | NETIF_F_GRO
4015 | NETIF_F_TSO | NETIF_F_TSO6
4016 | NETIF_F_LRO;
4017 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004018 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
4019
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004020 /* Copy of transmit encapsulation capabilities:
4021 * TSO, TSO6, Checksums for this device
4022 */
4023 lio->enc_dev_capability = NETIF_F_IP_CSUM
4024 | NETIF_F_IPV6_CSUM
4025 | NETIF_F_GSO_UDP_TUNNEL
4026 | NETIF_F_HW_CSUM | NETIF_F_SG
4027 | NETIF_F_RXCSUM
4028 | NETIF_F_TSO | NETIF_F_TSO6
4029 | NETIF_F_LRO;
4030
4031 netdev->hw_enc_features = (lio->enc_dev_capability &
4032 ~NETIF_F_LRO);
4033
4034 lio->dev_capability |= NETIF_F_GSO_UDP_TUNNEL;
4035
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004036 netdev->vlan_features = lio->dev_capability;
4037 /* Add any unchangeable hw features */
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004038 lio->dev_capability |= NETIF_F_HW_VLAN_CTAG_FILTER |
4039 NETIF_F_HW_VLAN_CTAG_RX |
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004040 NETIF_F_HW_VLAN_CTAG_TX;
4041
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004042 netdev->features = (lio->dev_capability & ~NETIF_F_LRO);
4043
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004044 netdev->hw_features = lio->dev_capability;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004045 /*HW_VLAN_RX and HW_VLAN_FILTER is always on*/
4046 netdev->hw_features = netdev->hw_features &
4047 ~NETIF_F_HW_VLAN_CTAG_RX;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004048
Jarod Wilson109cc162016-10-17 15:54:13 -04004049 /* MTU range: 68 - 16000 */
4050 netdev->min_mtu = LIO_MIN_MTU_SIZE;
4051 netdev->max_mtu = LIO_MAX_MTU_SIZE;
4052
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004053 /* Point to the properties for octeon device to which this
4054 * interface belongs.
4055 */
4056 lio->oct_dev = octeon_dev;
4057 lio->octprops = props;
4058 lio->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004059
4060 dev_dbg(&octeon_dev->pci_dev->dev,
4061 "if%d gmx: %d hw_addr: 0x%llx\n", i,
4062 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
4063
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004064 for (j = 0; j < octeon_dev->sriov_info.max_vfs; j++) {
4065 u8 vfmac[ETH_ALEN];
4066
4067 random_ether_addr(&vfmac[0]);
4068 if (__liquidio_set_vf_mac(netdev, j,
4069 &vfmac[0], false)) {
4070 dev_err(&octeon_dev->pci_dev->dev,
4071 "Error setting VF%d MAC address\n",
4072 j);
4073 goto setup_nic_dev_fail;
4074 }
4075 }
4076
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004077 /* 64-bit swap required on LE machines */
4078 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
4079 for (j = 0; j < 6; j++)
4080 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
4081
4082 /* Copy MAC Address to OS network device structure */
4083
4084 ether_addr_copy(netdev->dev_addr, mac);
4085
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004086 /* By default all interfaces on a single Octeon uses the same
4087 * tx and rx queues
4088 */
4089 lio->txq = lio->linfo.txpciq[0].s.q_no;
4090 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004091 if (setup_io_queues(octeon_dev, i)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004092 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
4093 goto setup_nic_dev_fail;
4094 }
4095
4096 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
4097
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004098 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
4099 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
4100
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07004101 if (setup_glists(octeon_dev, lio, num_iqueues)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004102 dev_err(&octeon_dev->pci_dev->dev,
4103 "Gather list allocation failed\n");
4104 goto setup_nic_dev_fail;
4105 }
4106
4107 /* Register ethtool support */
4108 liquidio_set_ethtool_ops(netdev);
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004109 if (lio->oct_dev->chip_id == OCTEON_CN23XX_PF_VID)
4110 octeon_dev->priv_flags = OCT_PRIV_FLAG_DEFAULT;
4111 else
4112 octeon_dev->priv_flags = 0x0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004113
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004114 if (netdev->features & NETIF_F_LRO)
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07004115 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
4116 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004117
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004118 liquidio_set_feature(netdev, OCTNET_CMD_ENABLE_VLAN_FILTER, 0);
4119
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004120 if ((debug != -1) && (debug & NETIF_MSG_HW))
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004121 liquidio_set_feature(netdev,
4122 OCTNET_CMD_VERBOSE_ENABLE, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004123
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07004124 if (setup_link_status_change_wq(netdev))
4125 goto setup_nic_dev_fail;
4126
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004127 /* Register the network device with the OS */
4128 if (register_netdev(netdev)) {
4129 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
4130 goto setup_nic_dev_fail;
4131 }
4132
4133 dev_dbg(&octeon_dev->pci_dev->dev,
4134 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
4135 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
4136 netif_carrier_off(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004137 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004138
4139 ifstate_set(lio, LIO_IFSTATE_REGISTERED);
4140
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004141 /* Sending command to firmware to enable Rx checksum offload
4142 * by default at the time of setup of Liquidio driver for
4143 * this device
4144 */
4145 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
4146 OCTNET_CMD_RXCSUM_ENABLE);
4147 liquidio_set_feature(netdev, OCTNET_CMD_TNL_TX_CSUM_CTL,
4148 OCTNET_CMD_TXCSUM_ENABLE);
4149
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004150 dev_dbg(&octeon_dev->pci_dev->dev,
4151 "NIC ifidx:%d Setup successful\n", i);
4152
4153 octeon_free_soft_command(octeon_dev, sc);
4154 }
4155
4156 return 0;
4157
4158setup_nic_dev_fail:
4159
4160 octeon_free_soft_command(octeon_dev, sc);
4161
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07004162setup_nic_wait_intr:
4163
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004164 while (i--) {
4165 dev_err(&octeon_dev->pci_dev->dev,
4166 "NIC ifidx:%d Setup failed\n", i);
4167 liquidio_destroy_nic_device(octeon_dev, i);
4168 }
4169 return -ENODEV;
4170}
4171
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08004172#ifdef CONFIG_PCI_IOV
4173static int octeon_enable_sriov(struct octeon_device *oct)
4174{
4175 unsigned int num_vfs_alloced = oct->sriov_info.num_vfs_alloced;
4176 struct pci_dev *vfdev;
4177 int err;
4178 u32 u;
4179
4180 if (OCTEON_CN23XX_PF(oct) && num_vfs_alloced) {
4181 err = pci_enable_sriov(oct->pci_dev,
4182 oct->sriov_info.num_vfs_alloced);
4183 if (err) {
4184 dev_err(&oct->pci_dev->dev,
4185 "OCTEON: Failed to enable PCI sriov: %d\n",
4186 err);
4187 oct->sriov_info.num_vfs_alloced = 0;
4188 return err;
4189 }
4190 oct->sriov_info.sriov_enabled = 1;
4191
4192 /* init lookup table that maps DPI ring number to VF pci_dev
4193 * struct pointer
4194 */
4195 u = 0;
4196 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4197 OCTEON_CN23XX_VF_VID, NULL);
4198 while (vfdev) {
4199 if (vfdev->is_virtfn &&
4200 (vfdev->physfn == oct->pci_dev)) {
4201 oct->sriov_info.dpiring_to_vfpcidev_lut[u] =
4202 vfdev;
4203 u += oct->sriov_info.rings_per_vf;
4204 }
4205 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4206 OCTEON_CN23XX_VF_VID, vfdev);
4207 }
4208 }
4209
4210 return num_vfs_alloced;
4211}
4212
4213static int lio_pci_sriov_disable(struct octeon_device *oct)
4214{
4215 int u;
4216
4217 if (pci_vfs_assigned(oct->pci_dev)) {
4218 dev_err(&oct->pci_dev->dev, "VFs are still assigned to VMs.\n");
4219 return -EPERM;
4220 }
4221
4222 pci_disable_sriov(oct->pci_dev);
4223
4224 u = 0;
4225 while (u < MAX_POSSIBLE_VFS) {
4226 oct->sriov_info.dpiring_to_vfpcidev_lut[u] = NULL;
4227 u += oct->sriov_info.rings_per_vf;
4228 }
4229
4230 oct->sriov_info.num_vfs_alloced = 0;
4231 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d disabled VFs\n",
4232 oct->pf_num);
4233
4234 return 0;
4235}
4236
4237static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs)
4238{
4239 struct octeon_device *oct = pci_get_drvdata(dev);
4240 int ret = 0;
4241
4242 if ((num_vfs == oct->sriov_info.num_vfs_alloced) &&
4243 (oct->sriov_info.sriov_enabled)) {
4244 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d already enabled num_vfs:%d\n",
4245 oct->pf_num, num_vfs);
4246 return 0;
4247 }
4248
4249 if (!num_vfs) {
4250 ret = lio_pci_sriov_disable(oct);
4251 } else if (num_vfs > oct->sriov_info.max_vfs) {
4252 dev_err(&oct->pci_dev->dev,
4253 "OCTEON: Max allowed VFs:%d user requested:%d",
4254 oct->sriov_info.max_vfs, num_vfs);
4255 ret = -EPERM;
4256 } else {
4257 oct->sriov_info.num_vfs_alloced = num_vfs;
4258 ret = octeon_enable_sriov(oct);
4259 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d num_vfs:%d\n",
4260 oct->pf_num, num_vfs);
4261 }
4262
4263 return ret;
4264}
4265#endif
4266
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004267/**
4268 * \brief initialize the NIC
4269 * @param oct octeon device
4270 *
4271 * This initialization routine is called once the Octeon device application is
4272 * up and running
4273 */
4274static int liquidio_init_nic_module(struct octeon_device *oct)
4275{
4276 struct oct_intrmod_cfg *intrmod_cfg;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004277 int i, retval = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004278 int num_nic_ports = CFG_GET_NUM_NIC_PORTS(octeon_get_conf(oct));
4279
4280 dev_dbg(&oct->pci_dev->dev, "Initializing network interfaces\n");
4281
4282 /* only default iq and oq were initialized
4283 * initialize the rest as well
4284 */
4285 /* run port_config command for each port */
4286 oct->ifcount = num_nic_ports;
4287
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004288 memset(oct->props, 0, sizeof(struct octdev_props) * num_nic_ports);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004289
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004290 for (i = 0; i < MAX_OCTEON_LINKS; i++)
4291 oct->props[i].gmxport = -1;
4292
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004293 retval = setup_nic_devices(oct);
4294 if (retval) {
4295 dev_err(&oct->pci_dev->dev, "Setup NIC devices failed\n");
4296 goto octnet_init_failure;
4297 }
4298
4299 liquidio_ptp_init(oct);
4300
4301 /* Initialize interrupt moderation params */
4302 intrmod_cfg = &((struct octeon_device *)oct)->intrmod;
Raghu Vatsavayi78e6a9b2016-06-21 22:53:10 -07004303 intrmod_cfg->rx_enable = 1;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004304 intrmod_cfg->check_intrvl = LIO_INTRMOD_CHECK_INTERVAL;
Raghu Vatsavayi78e6a9b2016-06-21 22:53:10 -07004305 intrmod_cfg->maxpkt_ratethr = LIO_INTRMOD_MAXPKT_RATETHR;
4306 intrmod_cfg->minpkt_ratethr = LIO_INTRMOD_MINPKT_RATETHR;
4307 intrmod_cfg->rx_maxcnt_trigger = LIO_INTRMOD_RXMAXCNT_TRIGGER;
4308 intrmod_cfg->rx_maxtmr_trigger = LIO_INTRMOD_RXMAXTMR_TRIGGER;
4309 intrmod_cfg->rx_mintmr_trigger = LIO_INTRMOD_RXMINTMR_TRIGGER;
4310 intrmod_cfg->rx_mincnt_trigger = LIO_INTRMOD_RXMINCNT_TRIGGER;
4311 intrmod_cfg->tx_enable = 1;
4312 intrmod_cfg->tx_maxcnt_trigger = LIO_INTRMOD_TXMAXCNT_TRIGGER;
4313 intrmod_cfg->tx_mincnt_trigger = LIO_INTRMOD_TXMINCNT_TRIGGER;
4314 intrmod_cfg->rx_frames = CFG_GET_OQ_INTR_PKT(octeon_get_conf(oct));
4315 intrmod_cfg->rx_usecs = CFG_GET_OQ_INTR_TIME(octeon_get_conf(oct));
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07004316 intrmod_cfg->tx_frames = CFG_GET_IQ_INTR_PKT(octeon_get_conf(oct));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004317 dev_dbg(&oct->pci_dev->dev, "Network interfaces ready\n");
4318
4319 return retval;
4320
4321octnet_init_failure:
4322
4323 oct->ifcount = 0;
4324
4325 return retval;
4326}
4327
4328/**
4329 * \brief starter callback that invokes the remaining initialization work after
4330 * the NIC is up and running.
4331 * @param octptr work struct work_struct
4332 */
4333static void nic_starter(struct work_struct *work)
4334{
4335 struct octeon_device *oct;
4336 struct cavium_wk *wk = (struct cavium_wk *)work;
4337
4338 oct = (struct octeon_device *)wk->ctxptr;
4339
4340 if (atomic_read(&oct->status) == OCT_DEV_RUNNING)
4341 return;
4342
4343 /* If the status of the device is CORE_OK, the core
4344 * application has reported its application type. Call
4345 * any registered handlers now and move to the RUNNING
4346 * state.
4347 */
4348 if (atomic_read(&oct->status) != OCT_DEV_CORE_OK) {
4349 schedule_delayed_work(&oct->nic_poll_work.work,
4350 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4351 return;
4352 }
4353
4354 atomic_set(&oct->status, OCT_DEV_RUNNING);
4355
4356 if (oct->app_mode && oct->app_mode == CVM_DRV_NIC_APP) {
4357 dev_dbg(&oct->pci_dev->dev, "Starting NIC module\n");
4358
4359 if (liquidio_init_nic_module(oct))
4360 dev_err(&oct->pci_dev->dev, "NIC initialization failed\n");
4361 else
4362 handshake[oct->octeon_id].started_ok = 1;
4363 } else {
4364 dev_err(&oct->pci_dev->dev,
4365 "Unexpected application running on NIC (%d). Check firmware.\n",
4366 oct->app_mode);
4367 }
4368
4369 complete(&handshake[oct->octeon_id].started);
4370}
4371
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004372static int
4373octeon_recv_vf_drv_notice(struct octeon_recv_info *recv_info, void *buf)
4374{
4375 struct octeon_device *oct = (struct octeon_device *)buf;
4376 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
4377 int i, notice, vf_idx;
4378 u64 *data, vf_num;
4379
4380 notice = recv_pkt->rh.r.ossp;
4381 data = (u64 *)get_rbd(recv_pkt->buffer_ptr[0]);
4382
4383 /* the first 64-bit word of data is the vf_num */
4384 vf_num = data[0];
4385 octeon_swap_8B_data(&vf_num, 1);
4386 vf_idx = (int)vf_num - 1;
4387
4388 if (notice == VF_DRV_LOADED) {
4389 if (!(oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx))) {
4390 oct->sriov_info.vf_drv_loaded_mask |= BIT_ULL(vf_idx);
4391 dev_info(&oct->pci_dev->dev,
4392 "driver for VF%d was loaded\n", vf_idx);
4393 try_module_get(THIS_MODULE);
4394 }
4395 } else if (notice == VF_DRV_REMOVED) {
4396 if (oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx)) {
4397 oct->sriov_info.vf_drv_loaded_mask &= ~BIT_ULL(vf_idx);
4398 dev_info(&oct->pci_dev->dev,
4399 "driver for VF%d was removed\n", vf_idx);
4400 module_put(THIS_MODULE);
4401 }
4402 } else if (notice == VF_DRV_MACADDR_CHANGED) {
4403 u8 *b = (u8 *)&data[1];
4404
4405 oct->sriov_info.vf_macaddr[vf_idx] = data[1];
4406 dev_info(&oct->pci_dev->dev,
4407 "VF driver changed VF%d's MAC address to %pM\n",
4408 vf_idx, b + 2);
4409 }
4410
4411 for (i = 0; i < recv_pkt->buffer_count; i++)
4412 recv_buffer_free(recv_pkt->buffer_ptr[i]);
4413 octeon_free_recv_info(recv_info);
4414
4415 return 0;
4416}
4417
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004418/**
4419 * \brief Device initialization for each Octeon device that is probed
4420 * @param octeon_dev octeon device
4421 */
4422static int octeon_device_init(struct octeon_device *octeon_dev)
4423{
4424 int j, ret;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004425 int fw_loaded = 0;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004426 char bootcmd[] = "\n";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004427 struct octeon_device_priv *oct_priv =
4428 (struct octeon_device_priv *)octeon_dev->priv;
4429 atomic_set(&octeon_dev->status, OCT_DEV_BEGIN_STATE);
4430
4431 /* Enable access to the octeon device and make its DMA capability
4432 * known to the OS.
4433 */
4434 if (octeon_pci_os_setup(octeon_dev))
4435 return 1;
4436
4437 /* Identify the Octeon type and map the BAR address space. */
4438 if (octeon_chip_specific_setup(octeon_dev)) {
4439 dev_err(&octeon_dev->pci_dev->dev, "Chip specific setup failed\n");
4440 return 1;
4441 }
4442
4443 atomic_set(&octeon_dev->status, OCT_DEV_PCI_MAP_DONE);
4444
4445 octeon_dev->app_mode = CVM_DRV_INVALID_APP;
4446
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004447 if (OCTEON_CN23XX_PF(octeon_dev)) {
4448 if (!cn23xx_fw_loaded(octeon_dev)) {
4449 fw_loaded = 0;
4450 /* Do a soft reset of the Octeon device. */
4451 if (octeon_dev->fn_list.soft_reset(octeon_dev))
4452 return 1;
4453 /* things might have changed */
4454 if (!cn23xx_fw_loaded(octeon_dev))
4455 fw_loaded = 0;
4456 else
4457 fw_loaded = 1;
4458 } else {
4459 fw_loaded = 1;
4460 }
4461 } else if (octeon_dev->fn_list.soft_reset(octeon_dev)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004462 return 1;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004463 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004464
4465 /* Initialize the dispatch mechanism used to push packets arriving on
4466 * Octeon Output queues.
4467 */
4468 if (octeon_init_dispatch_list(octeon_dev))
4469 return 1;
4470
4471 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4472 OPCODE_NIC_CORE_DRV_ACTIVE,
4473 octeon_core_drv_init,
4474 octeon_dev);
4475
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004476 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4477 OPCODE_NIC_VF_DRV_NOTICE,
4478 octeon_recv_vf_drv_notice, octeon_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004479 INIT_DELAYED_WORK(&octeon_dev->nic_poll_work.work, nic_starter);
4480 octeon_dev->nic_poll_work.ctxptr = (void *)octeon_dev;
4481 schedule_delayed_work(&octeon_dev->nic_poll_work.work,
4482 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4483
4484 atomic_set(&octeon_dev->status, OCT_DEV_DISPATCH_INIT_DONE);
4485
4486 octeon_set_io_queues_off(octeon_dev);
4487
Raghu Vatsavayi3451b972016-08-31 11:03:26 -07004488 if (OCTEON_CN23XX_PF(octeon_dev)) {
4489 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4490 if (ret) {
4491 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Failed to configure device registers\n");
4492 return ret;
4493 }
4494 }
4495
4496 /* Initialize soft command buffer pool
4497 */
4498 if (octeon_setup_sc_buffer_pool(octeon_dev)) {
4499 dev_err(&octeon_dev->pci_dev->dev, "sc buffer pool allocation failed\n");
4500 return 1;
4501 }
4502 atomic_set(&octeon_dev->status, OCT_DEV_SC_BUFF_POOL_INIT_DONE);
4503
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004504 /* Setup the data structures that manage this Octeon's Input queues. */
4505 if (octeon_setup_instr_queues(octeon_dev)) {
4506 dev_err(&octeon_dev->pci_dev->dev,
4507 "instruction queue initialization failed\n");
4508 /* On error, release any previously allocated queues */
4509 for (j = 0; j < octeon_dev->num_iqs; j++)
4510 octeon_delete_instr_queue(octeon_dev, j);
4511 return 1;
4512 }
4513 atomic_set(&octeon_dev->status, OCT_DEV_INSTR_QUEUE_INIT_DONE);
4514
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004515 /* Initialize lists to manage the requests of different types that
4516 * arrive from user & kernel applications for this octeon device.
4517 */
4518 if (octeon_setup_response_list(octeon_dev)) {
4519 dev_err(&octeon_dev->pci_dev->dev, "Response list allocation failed\n");
4520 return 1;
4521 }
4522 atomic_set(&octeon_dev->status, OCT_DEV_RESP_LIST_INIT_DONE);
4523
4524 if (octeon_setup_output_queues(octeon_dev)) {
4525 dev_err(&octeon_dev->pci_dev->dev, "Output queue initialization failed\n");
4526 /* Release any previously allocated queues */
4527 for (j = 0; j < octeon_dev->num_oqs; j++)
4528 octeon_delete_droq(octeon_dev, j);
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004529 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004530 }
4531
4532 atomic_set(&octeon_dev->status, OCT_DEV_DROQ_INIT_DONE);
4533
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004534 if (OCTEON_CN23XX_PF(octeon_dev)) {
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08004535 if (octeon_dev->fn_list.setup_mbox(octeon_dev)) {
4536 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Mailbox setup failed\n");
4537 return 1;
4538 }
4539 atomic_set(&octeon_dev->status, OCT_DEV_MBOX_SETUP_DONE);
4540
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004541 if (octeon_allocate_ioq_vector(octeon_dev)) {
4542 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: ioq vector allocation failed\n");
4543 return 1;
4544 }
4545
4546 } else {
4547 /* The input and output queue registers were setup earlier (the
4548 * queues were not enabled). Any additional registers
4549 * that need to be programmed should be done now.
4550 */
4551 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4552 if (ret) {
4553 dev_err(&octeon_dev->pci_dev->dev,
4554 "Failed to configure device registers\n");
4555 return ret;
4556 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004557 }
4558
4559 /* Initialize the tasklet that handles output queue packet processing.*/
4560 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing droq tasklet\n");
4561 tasklet_init(&oct_priv->droq_tasklet, octeon_droq_bh,
4562 (unsigned long)octeon_dev);
4563
4564 /* Setup the interrupt handler and record the INT SUM register address
4565 */
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004566 if (octeon_setup_interrupt(octeon_dev))
4567 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004568
4569 /* Enable Octeon device interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004570 octeon_dev->fn_list.enable_interrupt(octeon_dev, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004571
4572 /* Enable the input and output queues for this Octeon device */
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07004573 ret = octeon_dev->fn_list.enable_io_queues(octeon_dev);
4574 if (ret) {
4575 dev_err(&octeon_dev->pci_dev->dev, "Failed to enable input/output queues");
4576 return ret;
4577 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004578
4579 atomic_set(&octeon_dev->status, OCT_DEV_IO_QUEUES_DONE);
4580
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004581 if ((!OCTEON_CN23XX_PF(octeon_dev)) || !fw_loaded) {
4582 dev_dbg(&octeon_dev->pci_dev->dev, "Waiting for DDR initialization...\n");
4583 if (!ddr_timeout) {
4584 dev_info(&octeon_dev->pci_dev->dev,
4585 "WAITING. Set ddr_timeout to non-zero value to proceed with initialization.\n");
4586 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004587
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004588 schedule_timeout_uninterruptible(HZ * LIO_RESET_SECS);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004589
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004590 /* Wait for the octeon to initialize DDR after the soft-reset.*/
4591 while (!ddr_timeout) {
4592 set_current_state(TASK_INTERRUPTIBLE);
4593 if (schedule_timeout(HZ / 10)) {
4594 /* user probably pressed Control-C */
4595 return 1;
4596 }
4597 }
4598 ret = octeon_wait_for_ddr_init(octeon_dev, &ddr_timeout);
4599 if (ret) {
4600 dev_err(&octeon_dev->pci_dev->dev,
4601 "DDR not initialized. Please confirm that board is configured to boot from Flash, ret: %d\n",
4602 ret);
Raghu Vatsavayi4b129ae2016-06-21 22:53:15 -07004603 return 1;
4604 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004605
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004606 if (octeon_wait_for_bootloader(octeon_dev, 1000)) {
4607 dev_err(&octeon_dev->pci_dev->dev, "Board not responding\n");
4608 return 1;
4609 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004610
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004611 /* Divert uboot to take commands from host instead. */
4612 ret = octeon_console_send_cmd(octeon_dev, bootcmd, 50);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004613
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004614 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing consoles\n");
4615 ret = octeon_init_consoles(octeon_dev);
4616 if (ret) {
4617 dev_err(&octeon_dev->pci_dev->dev, "Could not access board consoles\n");
4618 return 1;
4619 }
4620 ret = octeon_add_console(octeon_dev, 0);
4621 if (ret) {
4622 dev_err(&octeon_dev->pci_dev->dev, "Could not access board console\n");
4623 return 1;
4624 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004625
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004626 atomic_set(&octeon_dev->status, OCT_DEV_CONSOLE_INIT_DONE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004627
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004628 dev_dbg(&octeon_dev->pci_dev->dev, "Loading firmware\n");
4629 ret = load_firmware(octeon_dev);
4630 if (ret) {
4631 dev_err(&octeon_dev->pci_dev->dev, "Could not load firmware to board\n");
4632 return 1;
4633 }
4634 /* set bit 1 of SLI_SCRATCH_1 to indicate that firmware is
4635 * loaded
4636 */
4637 if (OCTEON_CN23XX_PF(octeon_dev))
4638 octeon_write_csr64(octeon_dev, CN23XX_SLI_SCRATCH1,
4639 2ULL);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004640 }
4641
4642 handshake[octeon_dev->octeon_id].init_ok = 1;
4643 complete(&handshake[octeon_dev->octeon_id].init);
4644
4645 atomic_set(&octeon_dev->status, OCT_DEV_HOST_OK);
4646
4647 /* Send Credit for Octeon Output queues. Credits are always sent after
4648 * the output queue is enabled.
4649 */
4650 for (j = 0; j < octeon_dev->num_oqs; j++)
4651 writel(octeon_dev->droq[j]->max_count,
4652 octeon_dev->droq[j]->pkts_credit_reg);
4653
4654 /* Packets can start arriving on the output queues from this point. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004655 return 0;
4656}
4657
4658/**
4659 * \brief Exits the module
4660 */
4661static void __exit liquidio_exit(void)
4662{
4663 liquidio_deinit_pci();
4664
4665 pr_info("LiquidIO network module is now unloaded\n");
4666}
4667
4668module_init(liquidio_init);
4669module_exit(liquidio_exit);