blob: 761061b96948689a45065093a6a6b7e2d247dc8b [file] [log] [blame]
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001/**********************************************************************
Raghu Vatsavayi50579d32016-11-14 15:54:46 -08002 * Author: Cavium, Inc.
3 *
4 * Contact: support@cavium.com
5 * Please include "LiquidIO" in the subject.
6 *
7 * Copyright (c) 2003-2016 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 details.
17 ***********************************************************************/
Russell Kinge3bfc6e2017-02-07 15:03:03 -080018#include <linux/module.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070019#include <linux/pci.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070020#include <linux/firmware.h>
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -070021#include <net/vxlan.h>
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -070022#include <linux/kthread.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070023#include "liquidio_common.h"
24#include "octeon_droq.h"
25#include "octeon_iq.h"
26#include "response_manager.h"
27#include "octeon_device.h"
28#include "octeon_nic.h"
29#include "octeon_main.h"
30#include "octeon_network.h"
31#include "cn66xx_regs.h"
32#include "cn66xx_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070033#include "cn68xx_device.h"
Raghu Vatsavayi72c00912016-08-31 11:03:25 -070034#include "cn23xx_pf_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070035#include "liquidio_image.h"
36
37MODULE_AUTHOR("Cavium Networks, <support@cavium.com>");
38MODULE_DESCRIPTION("Cavium LiquidIO Intelligent Server Adapter Driver");
39MODULE_LICENSE("GPL");
40MODULE_VERSION(LIQUIDIO_VERSION);
41MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210SV_NAME LIO_FW_NAME_SUFFIX);
42MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210NV_NAME LIO_FW_NAME_SUFFIX);
43MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_410NV_NAME LIO_FW_NAME_SUFFIX);
Raghu Vatsavayic865cdf2016-11-28 16:54:36 -080044MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_23XX_NAME LIO_FW_NAME_SUFFIX);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070045
46static int ddr_timeout = 10000;
47module_param(ddr_timeout, int, 0644);
48MODULE_PARM_DESC(ddr_timeout,
49 "Number of milliseconds to wait for DDR initialization. 0 waits for ddr_timeout to be set to non-zero value before starting to check");
50
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070051#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
52
53static int debug = -1;
54module_param(debug, int, 0644);
55MODULE_PARM_DESC(debug, "NETIF_MSG debug bits");
56
57static char fw_type[LIO_MAX_FW_TYPE_LEN];
58module_param_string(fw_type, fw_type, sizeof(fw_type), 0000);
59MODULE_PARM_DESC(fw_type, "Type of firmware to be loaded. Default \"nic\"");
60
Raghu Vatsavayia5b37882016-06-14 16:54:48 -070061static int ptp_enable = 1;
62
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070063/* Bit mask values for lio->ifstate */
64#define LIO_IFSTATE_DROQ_OPS 0x01
65#define LIO_IFSTATE_REGISTERED 0x02
66#define LIO_IFSTATE_RUNNING 0x04
67#define LIO_IFSTATE_RX_TIMESTAMP_ENABLED 0x08
68
69/* Polling interval for determining when NIC application is alive */
70#define LIQUIDIO_STARTER_POLL_INTERVAL_MS 100
71
72/* runtime link query interval */
73#define LIQUIDIO_LINK_QUERY_INTERVAL_MS 1000
74
75struct liquidio_if_cfg_context {
76 int octeon_id;
77
78 wait_queue_head_t wc;
79
80 int cond;
81};
82
83struct liquidio_if_cfg_resp {
84 u64 rh;
85 struct liquidio_if_cfg_info cfg_info;
86 u64 status;
87};
88
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -070089struct liquidio_rx_ctl_context {
90 int octeon_id;
91
92 wait_queue_head_t wc;
93
94 int cond;
95};
96
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070097struct oct_link_status_resp {
98 u64 rh;
99 struct oct_link_info link_info;
100 u64 status;
101};
102
103struct oct_timestamp_resp {
104 u64 rh;
105 u64 timestamp;
106 u64 status;
107};
108
109#define OCT_TIMESTAMP_RESP_SIZE (sizeof(struct oct_timestamp_resp))
110
111union tx_info {
112 u64 u64;
113 struct {
114#ifdef __BIG_ENDIAN_BITFIELD
115 u16 gso_size;
116 u16 gso_segs;
117 u32 reserved;
118#else
119 u32 reserved;
120 u16 gso_segs;
121 u16 gso_size;
122#endif
123 } s;
124};
125
126/** Octeon device properties to be used by the NIC module.
127 * Each octeon device in the system will be represented
128 * by this structure in the NIC module.
129 */
130
131#define OCTNIC_MAX_SG (MAX_SKB_FRAGS)
132
133#define OCTNIC_GSO_MAX_HEADER_SIZE 128
Raghu Vatsavayi72c00912016-08-31 11:03:25 -0700134#define OCTNIC_GSO_MAX_SIZE \
135 (CN23XX_DEFAULT_INPUT_JABBER - OCTNIC_GSO_MAX_HEADER_SIZE)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700136
137/** Structure of a node in list of gather components maintained by
138 * NIC driver for each network device.
139 */
140struct octnic_gather {
141 /** List manipulation. Next and prev pointers. */
142 struct list_head list;
143
144 /** Size of the gather component at sg in bytes. */
145 int sg_size;
146
147 /** Number of bytes that sg was adjusted to make it 8B-aligned. */
148 int adjust;
149
150 /** Gather component that can accommodate max sized fragment list
151 * received from the IP layer.
152 */
153 struct octeon_sg_entry *sg;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700154
VSR Burru67e303e2017-03-06 18:45:59 -0800155 dma_addr_t sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700156};
157
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700158struct handshake {
159 struct completion init;
160 struct completion started;
161 struct pci_dev *pci_dev;
162 int init_ok;
163 int started_ok;
164};
165
166struct octeon_device_priv {
167 /** Tasklet structures for this device. */
168 struct tasklet_struct droq_tasklet;
169 unsigned long napi_mask;
170};
171
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800172#ifdef CONFIG_PCI_IOV
173static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs);
174#endif
175
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700176static int octeon_device_init(struct octeon_device *);
Raghu Vatsavayi32581242016-08-31 11:03:20 -0700177static int liquidio_stop(struct net_device *netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700178static void liquidio_remove(struct pci_dev *pdev);
179static int liquidio_probe(struct pci_dev *pdev,
180 const struct pci_device_id *ent);
181
182static struct handshake handshake[MAX_OCTEON_DEVICES];
183static struct completion first_stage;
184
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700185static void octeon_droq_bh(unsigned long pdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700186{
187 int q_no;
188 int reschedule = 0;
189 struct octeon_device *oct = (struct octeon_device *)pdev;
190 struct octeon_device_priv *oct_priv =
191 (struct octeon_device_priv *)oct->priv;
192
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700193 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES(oct); q_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800194 if (!(oct->io_qmask.oq & BIT_ULL(q_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700195 continue;
196 reschedule |= octeon_droq_process_packets(oct, oct->droq[q_no],
197 MAX_PACKET_BUDGET);
Raghu Vatsavayicd8b1eb2016-08-31 11:03:22 -0700198 lio_enable_irq(oct->droq[q_no], NULL);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700199
200 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
201 /* set time and cnt interrupt thresholds for this DROQ
202 * for NAPI
203 */
204 int adjusted_q_no = q_no + oct->sriov_info.pf_srn;
205
206 octeon_write_csr64(
207 oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(adjusted_q_no),
208 0x5700000040ULL);
209 octeon_write_csr64(
210 oct, CN23XX_SLI_OQ_PKTS_SENT(adjusted_q_no), 0);
211 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700212 }
213
214 if (reschedule)
215 tasklet_schedule(&oct_priv->droq_tasklet);
216}
217
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700218static int lio_wait_for_oq_pkts(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700219{
220 struct octeon_device_priv *oct_priv =
221 (struct octeon_device_priv *)oct->priv;
222 int retry = 100, pkt_cnt = 0, pending_pkts = 0;
223 int i;
224
225 do {
226 pending_pkts = 0;
227
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700228 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800229 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700230 continue;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700231 pkt_cnt += octeon_droq_check_hw_for_pkts(oct->droq[i]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700232 }
233 if (pkt_cnt > 0) {
234 pending_pkts += pkt_cnt;
235 tasklet_schedule(&oct_priv->droq_tasklet);
236 }
237 pkt_cnt = 0;
238 schedule_timeout_uninterruptible(1);
239
240 } while (retry-- && pending_pkts);
241
242 return pkt_cnt;
243}
244
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700245/**
246 * \brief Forces all IO queues off on a given device
247 * @param oct Pointer to Octeon device
248 */
249static void force_io_queues_off(struct octeon_device *oct)
250{
251 if ((oct->chip_id == OCTEON_CN66XX) ||
252 (oct->chip_id == OCTEON_CN68XX)) {
253 /* Reset the Enable bits for Input Queues. */
254 octeon_write_csr(oct, CN6XXX_SLI_PKT_INSTR_ENB, 0);
255
256 /* Reset the Enable bits for Output Queues. */
257 octeon_write_csr(oct, CN6XXX_SLI_PKT_OUT_ENB, 0);
258 }
259}
260
261/**
262 * \brief wait for all pending requests to complete
263 * @param oct Pointer to Octeon device
264 *
265 * Called during shutdown sequence
266 */
267static int wait_for_pending_requests(struct octeon_device *oct)
268{
269 int i, pcount = 0;
270
271 for (i = 0; i < 100; i++) {
272 pcount =
273 atomic_read(&oct->response_list
274 [OCTEON_ORDERED_SC_LIST].pending_req_count);
275 if (pcount)
276 schedule_timeout_uninterruptible(HZ / 10);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700277 else
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700278 break;
279 }
280
281 if (pcount)
282 return 1;
283
284 return 0;
285}
286
287/**
288 * \brief Cause device to go quiet so it can be safely removed/reset/etc
289 * @param oct Pointer to Octeon device
290 */
291static inline void pcierror_quiesce_device(struct octeon_device *oct)
292{
293 int i;
294
295 /* Disable the input and output queues now. No more packets will
296 * arrive from Octeon, but we should wait for all packet processing
297 * to finish.
298 */
299 force_io_queues_off(oct);
300
301 /* To allow for in-flight requests */
302 schedule_timeout_uninterruptible(100);
303
304 if (wait_for_pending_requests(oct))
305 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
306
307 /* Force all requests waiting to be fetched by OCTEON to complete. */
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700308 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700309 struct octeon_instr_queue *iq;
310
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800311 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700312 continue;
313 iq = oct->instr_queue[i];
314
315 if (atomic_read(&iq->instr_pending)) {
316 spin_lock_bh(&iq->lock);
317 iq->fill_cnt = 0;
318 iq->octeon_read_index = iq->host_write_index;
319 iq->stats.instr_processed +=
320 atomic_read(&iq->instr_pending);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700321 lio_process_iq_request_list(oct, iq, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700322 spin_unlock_bh(&iq->lock);
323 }
324 }
325
326 /* Force all pending ordered list requests to time out. */
327 lio_process_ordered_list(oct, 1);
328
329 /* We do not need to wait for output queue packets to be processed. */
330}
331
332/**
333 * \brief Cleanup PCI AER uncorrectable error status
334 * @param dev Pointer to PCI device
335 */
336static void cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
337{
338 int pos = 0x100;
339 u32 status, mask;
340
341 pr_info("%s :\n", __func__);
342
343 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
344 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
345 if (dev->error_state == pci_channel_io_normal)
346 status &= ~mask; /* Clear corresponding nonfatal bits */
347 else
348 status &= mask; /* Clear corresponding fatal bits */
349 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
350}
351
352/**
353 * \brief Stop all PCI IO to a given device
354 * @param dev Pointer to Octeon device
355 */
356static void stop_pci_io(struct octeon_device *oct)
357{
358 /* No more instructions will be forwarded. */
359 atomic_set(&oct->status, OCT_DEV_IN_RESET);
360
361 pci_disable_device(oct->pci_dev);
362
363 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700364 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700365
366 pcierror_quiesce_device(oct);
367
368 /* Release the interrupt line */
369 free_irq(oct->pci_dev->irq, oct);
370
371 if (oct->flags & LIO_FLAG_MSI_ENABLED)
372 pci_disable_msi(oct->pci_dev);
373
374 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
375 lio_get_state_string(&oct->status));
376
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700377 /* making it a common function for all OCTEON models */
378 cleanup_aer_uncorrect_error_status(oct->pci_dev);
379}
380
381/**
382 * \brief called when PCI error is detected
383 * @param pdev Pointer to PCI device
384 * @param state The current pci connection state
385 *
386 * This function is called after a PCI bus error affecting
387 * this device has been detected.
388 */
389static pci_ers_result_t liquidio_pcie_error_detected(struct pci_dev *pdev,
390 pci_channel_state_t state)
391{
392 struct octeon_device *oct = pci_get_drvdata(pdev);
393
394 /* Non-correctable Non-fatal errors */
395 if (state == pci_channel_io_normal) {
396 dev_err(&oct->pci_dev->dev, "Non-correctable non-fatal error reported:\n");
397 cleanup_aer_uncorrect_error_status(oct->pci_dev);
398 return PCI_ERS_RESULT_CAN_RECOVER;
399 }
400
401 /* Non-correctable Fatal errors */
402 dev_err(&oct->pci_dev->dev, "Non-correctable FATAL reported by PCI AER driver\n");
403 stop_pci_io(oct);
404
405 /* Always return a DISCONNECT. There is no support for recovery but only
406 * for a clean shutdown.
407 */
408 return PCI_ERS_RESULT_DISCONNECT;
409}
410
411/**
412 * \brief mmio handler
413 * @param pdev Pointer to PCI device
414 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700415static pci_ers_result_t liquidio_pcie_mmio_enabled(
416 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700417{
418 /* We should never hit this since we never ask for a reset for a Fatal
419 * Error. We always return DISCONNECT in io_error above.
420 * But play safe and return RECOVERED for now.
421 */
422 return PCI_ERS_RESULT_RECOVERED;
423}
424
425/**
426 * \brief called after the pci bus has been reset.
427 * @param pdev Pointer to PCI device
428 *
429 * Restart the card from scratch, as if from a cold-boot. Implementation
430 * resembles the first-half of the octeon_resume routine.
431 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700432static pci_ers_result_t liquidio_pcie_slot_reset(
433 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700434{
435 /* We should never hit this since we never ask for a reset for a Fatal
436 * Error. We always return DISCONNECT in io_error above.
437 * But play safe and return RECOVERED for now.
438 */
439 return PCI_ERS_RESULT_RECOVERED;
440}
441
442/**
443 * \brief called when traffic can start flowing again.
444 * @param pdev Pointer to PCI device
445 *
446 * This callback is called when the error recovery driver tells us that
447 * its OK to resume normal operation. Implementation resembles the
448 * second-half of the octeon_resume routine.
449 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700450static void liquidio_pcie_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700451{
452 /* Nothing to be done here. */
453}
454
455#ifdef CONFIG_PM
456/**
457 * \brief called when suspending
458 * @param pdev Pointer to PCI device
459 * @param state state to suspend to
460 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700461static int liquidio_suspend(struct pci_dev *pdev __attribute__((unused)),
462 pm_message_t state __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700463{
464 return 0;
465}
466
467/**
468 * \brief called when resuming
469 * @param pdev Pointer to PCI device
470 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700471static int liquidio_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700472{
473 return 0;
474}
475#endif
476
477/* For PCI-E Advanced Error Recovery (AER) Interface */
Julia Lawall166e2362015-11-14 11:06:53 +0100478static const struct pci_error_handlers liquidio_err_handler = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700479 .error_detected = liquidio_pcie_error_detected,
480 .mmio_enabled = liquidio_pcie_mmio_enabled,
481 .slot_reset = liquidio_pcie_slot_reset,
482 .resume = liquidio_pcie_resume,
483};
484
485static const struct pci_device_id liquidio_pci_tbl[] = {
486 { /* 68xx */
487 PCI_VENDOR_ID_CAVIUM, 0x91, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
488 },
489 { /* 66xx */
490 PCI_VENDOR_ID_CAVIUM, 0x92, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
491 },
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -0700492 { /* 23xx pf */
493 PCI_VENDOR_ID_CAVIUM, 0x9702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
494 },
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700495 {
496 0, 0, 0, 0, 0, 0, 0
497 }
498};
499MODULE_DEVICE_TABLE(pci, liquidio_pci_tbl);
500
501static struct pci_driver liquidio_pci_driver = {
502 .name = "LiquidIO",
503 .id_table = liquidio_pci_tbl,
504 .probe = liquidio_probe,
505 .remove = liquidio_remove,
506 .err_handler = &liquidio_err_handler, /* For AER */
507
508#ifdef CONFIG_PM
509 .suspend = liquidio_suspend,
510 .resume = liquidio_resume,
511#endif
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800512#ifdef CONFIG_PCI_IOV
513 .sriov_configure = liquidio_enable_sriov,
514#endif
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700515};
516
517/**
518 * \brief register PCI driver
519 */
520static int liquidio_init_pci(void)
521{
522 return pci_register_driver(&liquidio_pci_driver);
523}
524
525/**
526 * \brief unregister PCI driver
527 */
528static void liquidio_deinit_pci(void)
529{
530 pci_unregister_driver(&liquidio_pci_driver);
531}
532
533/**
534 * \brief check interface state
535 * @param lio per-network private data
536 * @param state_flag flag state to check
537 */
538static inline int ifstate_check(struct lio *lio, int state_flag)
539{
540 return atomic_read(&lio->ifstate) & state_flag;
541}
542
543/**
544 * \brief set interface state
545 * @param lio per-network private data
546 * @param state_flag flag state to set
547 */
548static inline void ifstate_set(struct lio *lio, int state_flag)
549{
550 atomic_set(&lio->ifstate, (atomic_read(&lio->ifstate) | state_flag));
551}
552
553/**
554 * \brief clear interface state
555 * @param lio per-network private data
556 * @param state_flag flag state to clear
557 */
558static inline void ifstate_reset(struct lio *lio, int state_flag)
559{
560 atomic_set(&lio->ifstate, (atomic_read(&lio->ifstate) & ~(state_flag)));
561}
562
563/**
564 * \brief Stop Tx queues
565 * @param netdev network device
566 */
567static inline void txqs_stop(struct net_device *netdev)
568{
569 if (netif_is_multiqueue(netdev)) {
570 int i;
571
572 for (i = 0; i < netdev->num_tx_queues; i++)
573 netif_stop_subqueue(netdev, i);
574 } else {
575 netif_stop_queue(netdev);
576 }
577}
578
579/**
580 * \brief Start Tx queues
581 * @param netdev network device
582 */
583static inline void txqs_start(struct net_device *netdev)
584{
585 if (netif_is_multiqueue(netdev)) {
586 int i;
587
588 for (i = 0; i < netdev->num_tx_queues; i++)
589 netif_start_subqueue(netdev, i);
590 } else {
591 netif_start_queue(netdev);
592 }
593}
594
595/**
596 * \brief Wake Tx queues
597 * @param netdev network device
598 */
599static inline void txqs_wake(struct net_device *netdev)
600{
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700601 struct lio *lio = GET_LIO(netdev);
602
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700603 if (netif_is_multiqueue(netdev)) {
604 int i;
605
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700606 for (i = 0; i < netdev->num_tx_queues; i++) {
607 int qno = lio->linfo.txpciq[i %
608 (lio->linfo.num_txpciq)].s.q_no;
609
610 if (__netif_subqueue_stopped(netdev, i)) {
611 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, qno,
612 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700613 netif_wake_subqueue(netdev, i);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700614 }
615 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700616 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700617 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
618 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700619 netif_wake_queue(netdev);
620 }
621}
622
623/**
624 * \brief Stop Tx queue
625 * @param netdev network device
626 */
627static void stop_txq(struct net_device *netdev)
628{
629 txqs_stop(netdev);
630}
631
632/**
633 * \brief Start Tx queue
634 * @param netdev network device
635 */
636static void start_txq(struct net_device *netdev)
637{
638 struct lio *lio = GET_LIO(netdev);
639
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700640 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700641 txqs_start(netdev);
642 return;
643 }
644}
645
646/**
647 * \brief Wake a queue
648 * @param netdev network device
649 * @param q which queue to wake
650 */
651static inline void wake_q(struct net_device *netdev, int q)
652{
653 if (netif_is_multiqueue(netdev))
654 netif_wake_subqueue(netdev, q);
655 else
656 netif_wake_queue(netdev);
657}
658
659/**
660 * \brief Stop a queue
661 * @param netdev network device
662 * @param q which queue to stop
663 */
664static inline void stop_q(struct net_device *netdev, int q)
665{
666 if (netif_is_multiqueue(netdev))
667 netif_stop_subqueue(netdev, q);
668 else
669 netif_stop_queue(netdev);
670}
671
672/**
673 * \brief Check Tx queue status, and take appropriate action
674 * @param lio per-network private data
675 * @returns 0 if full, number of queues woken up otherwise
676 */
677static inline int check_txq_status(struct lio *lio)
678{
679 int ret_val = 0;
680
681 if (netif_is_multiqueue(lio->netdev)) {
682 int numqs = lio->netdev->num_tx_queues;
683 int q, iq = 0;
684
685 /* check each sub-queue state */
686 for (q = 0; q < numqs; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700687 iq = lio->linfo.txpciq[q %
688 (lio->linfo.num_txpciq)].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700689 if (octnet_iq_is_full(lio->oct_dev, iq))
690 continue;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700691 if (__netif_subqueue_stopped(lio->netdev, q)) {
692 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700693 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq,
694 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700695 ret_val++;
696 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700697 }
698 } else {
699 if (octnet_iq_is_full(lio->oct_dev, lio->txq))
700 return 0;
701 wake_q(lio->netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700702 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
703 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700704 ret_val = 1;
705 }
706 return ret_val;
707}
708
709/**
710 * Remove the node at the head of the list. The list would be empty at
711 * the end of this call if there are no more nodes in the list.
712 */
713static inline struct list_head *list_delete_head(struct list_head *root)
714{
715 struct list_head *node;
716
717 if ((root->prev == root) && (root->next == root))
718 node = NULL;
719 else
720 node = root->next;
721
722 if (node)
723 list_del(node);
724
725 return node;
726}
727
728/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700729 * \brief Delete gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700730 * @param lio per-network private data
731 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700732static void delete_glists(struct lio *lio)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700733{
734 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700735 int i;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700736
VSR Burru67e303e2017-03-06 18:45:59 -0800737 kfree(lio->glist_lock);
738 lio->glist_lock = NULL;
739
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700740 if (!lio->glist)
741 return;
742
743 for (i = 0; i < lio->linfo.num_txpciq; i++) {
744 do {
745 g = (struct octnic_gather *)
746 list_delete_head(&lio->glist[i]);
VSR Burru67e303e2017-03-06 18:45:59 -0800747 if (g)
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700748 kfree(g);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700749 } while (g);
VSR Burru67e303e2017-03-06 18:45:59 -0800750
751 if (lio->glists_virt_base && lio->glists_virt_base[i]) {
752 lio_dma_free(lio->oct_dev,
753 lio->glist_entry_size * lio->tx_qsize,
754 lio->glists_virt_base[i],
755 lio->glists_dma_base[i]);
756 }
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700757 }
758
VSR Burru67e303e2017-03-06 18:45:59 -0800759 kfree(lio->glists_virt_base);
760 lio->glists_virt_base = NULL;
761
762 kfree(lio->glists_dma_base);
763 lio->glists_dma_base = NULL;
764
765 kfree(lio->glist);
766 lio->glist = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700767}
768
769/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700770 * \brief Setup gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700771 * @param lio per-network private data
772 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700773static int setup_glists(struct octeon_device *oct, struct lio *lio, int num_iqs)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700774{
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700775 int i, j;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700776 struct octnic_gather *g;
777
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700778 lio->glist_lock = kcalloc(num_iqs, sizeof(*lio->glist_lock),
779 GFP_KERNEL);
780 if (!lio->glist_lock)
VSR Burru67e303e2017-03-06 18:45:59 -0800781 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700782
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700783 lio->glist = kcalloc(num_iqs, sizeof(*lio->glist),
784 GFP_KERNEL);
785 if (!lio->glist) {
VSR Burru67e303e2017-03-06 18:45:59 -0800786 kfree(lio->glist_lock);
787 lio->glist_lock = NULL;
788 return -ENOMEM;
789 }
790
791 lio->glist_entry_size =
792 ROUNDUP8((ROUNDUP4(OCTNIC_MAX_SG) >> 2) * OCT_SG_ENTRY_SIZE);
793
794 /* allocate memory to store virtual and dma base address of
795 * per glist consistent memory
796 */
797 lio->glists_virt_base = kcalloc(num_iqs, sizeof(*lio->glists_virt_base),
798 GFP_KERNEL);
799 lio->glists_dma_base = kcalloc(num_iqs, sizeof(*lio->glists_dma_base),
800 GFP_KERNEL);
801
802 if (!lio->glists_virt_base || !lio->glists_dma_base) {
803 delete_glists(lio);
804 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700805 }
806
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700807 for (i = 0; i < num_iqs; i++) {
VSR Burrub3ca9af2017-03-09 17:03:24 -0800808 int numa_node = dev_to_node(&oct->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700809
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700810 spin_lock_init(&lio->glist_lock[i]);
811
812 INIT_LIST_HEAD(&lio->glist[i]);
813
VSR Burru67e303e2017-03-06 18:45:59 -0800814 lio->glists_virt_base[i] =
815 lio_dma_alloc(oct,
816 lio->glist_entry_size * lio->tx_qsize,
817 &lio->glists_dma_base[i]);
818
819 if (!lio->glists_virt_base[i]) {
820 delete_glists(lio);
821 return -ENOMEM;
822 }
823
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700824 for (j = 0; j < lio->tx_qsize; j++) {
825 g = kzalloc_node(sizeof(*g), GFP_KERNEL,
826 numa_node);
827 if (!g)
828 g = kzalloc(sizeof(*g), GFP_KERNEL);
829 if (!g)
830 break;
831
VSR Burru67e303e2017-03-06 18:45:59 -0800832 g->sg = lio->glists_virt_base[i] +
833 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700834
VSR Burru67e303e2017-03-06 18:45:59 -0800835 g->sg_dma_ptr = lio->glists_dma_base[i] +
836 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700837
838 list_add_tail(&g->list, &lio->glist[i]);
839 }
840
841 if (j != lio->tx_qsize) {
842 delete_glists(lio);
VSR Burru67e303e2017-03-06 18:45:59 -0800843 return -ENOMEM;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700844 }
845 }
846
847 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700848}
849
850/**
851 * \brief Print link information
852 * @param netdev network device
853 */
854static void print_link_info(struct net_device *netdev)
855{
856 struct lio *lio = GET_LIO(netdev);
857
858 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED) {
859 struct oct_link_info *linfo = &lio->linfo;
860
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700861 if (linfo->link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700862 netif_info(lio, link, lio->netdev, "%d Mbps %s Duplex UP\n",
863 linfo->link.s.speed,
864 (linfo->link.s.duplex) ? "Full" : "Half");
865 } else {
866 netif_info(lio, link, lio->netdev, "Link Down\n");
867 }
868 }
869}
870
871/**
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -0700872 * \brief Routine to notify MTU change
873 * @param work work_struct data structure
874 */
875static void octnet_link_status_change(struct work_struct *work)
876{
877 struct cavium_wk *wk = (struct cavium_wk *)work;
878 struct lio *lio = (struct lio *)wk->ctxptr;
879
880 rtnl_lock();
881 call_netdevice_notifiers(NETDEV_CHANGEMTU, lio->netdev);
882 rtnl_unlock();
883}
884
885/**
886 * \brief Sets up the mtu status change work
887 * @param netdev network device
888 */
889static inline int setup_link_status_change_wq(struct net_device *netdev)
890{
891 struct lio *lio = GET_LIO(netdev);
892 struct octeon_device *oct = lio->oct_dev;
893
894 lio->link_status_wq.wq = alloc_workqueue("link-status",
895 WQ_MEM_RECLAIM, 0);
896 if (!lio->link_status_wq.wq) {
897 dev_err(&oct->pci_dev->dev, "unable to create cavium link status wq\n");
898 return -1;
899 }
900 INIT_DELAYED_WORK(&lio->link_status_wq.wk.work,
901 octnet_link_status_change);
902 lio->link_status_wq.wk.ctxptr = lio;
903
904 return 0;
905}
906
907static inline void cleanup_link_status_change_wq(struct net_device *netdev)
908{
909 struct lio *lio = GET_LIO(netdev);
910
911 if (lio->link_status_wq.wq) {
912 cancel_delayed_work_sync(&lio->link_status_wq.wk.work);
913 destroy_workqueue(lio->link_status_wq.wq);
914 }
915}
916
917/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700918 * \brief Update link status
919 * @param netdev network device
920 * @param ls link status structure
921 *
922 * Called on receipt of a link status response from the core application to
923 * update each interface's link status.
924 */
925static inline void update_link_status(struct net_device *netdev,
926 union oct_link_status *ls)
927{
928 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700929 int changed = (lio->linfo.link.u64 != ls->u64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700930
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700931 lio->linfo.link.u64 = ls->u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700932
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700933 if ((lio->intf_open) && (changed)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700934 print_link_info(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700935 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700936
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700937 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700938 netif_carrier_on(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700939 txqs_wake(netdev);
940 } else {
941 netif_carrier_off(netdev);
942 stop_txq(netdev);
943 }
944 }
945}
946
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700947/* Runs in interrupt context. */
948static void update_txq_status(struct octeon_device *oct, int iq_num)
949{
950 struct net_device *netdev;
951 struct lio *lio;
952 struct octeon_instr_queue *iq = oct->instr_queue[iq_num];
953
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700954 netdev = oct->props[iq->ifidx].netdev;
955
956 /* This is needed because the first IQ does not have
957 * a netdev associated with it.
958 */
959 if (!netdev)
960 return;
961
962 lio = GET_LIO(netdev);
963 if (netif_is_multiqueue(netdev)) {
964 if (__netif_subqueue_stopped(netdev, iq->q_index) &&
965 lio->linfo.link.s.link_up &&
966 (!octnet_iq_is_full(oct, iq_num))) {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700967 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq_num,
968 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700969 netif_wake_subqueue(netdev, iq->q_index);
970 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700971 if (!octnet_iq_is_full(oct, lio->txq)) {
972 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev,
973 lio->txq,
974 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700975 wake_q(netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700976 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700977 }
978 }
979}
980
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700981static
982int liquidio_schedule_msix_droq_pkt_handler(struct octeon_droq *droq, u64 ret)
983{
984 struct octeon_device *oct = droq->oct_dev;
985 struct octeon_device_priv *oct_priv =
986 (struct octeon_device_priv *)oct->priv;
987
988 if (droq->ops.poll_mode) {
989 droq->ops.napi_fn(droq);
990 } else {
991 if (ret & MSIX_PO_INT) {
992 tasklet_schedule(&oct_priv->droq_tasklet);
993 return 1;
994 }
995 /* this will be flushed periodically by check iq db */
996 if (ret & MSIX_PI_INT)
997 return 0;
998 }
999 return 0;
1000}
1001
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001002/**
1003 * \brief Droq packet processor sceduler
1004 * @param oct octeon device
1005 */
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07001006static void liquidio_schedule_droq_pkt_handlers(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001007{
1008 struct octeon_device_priv *oct_priv =
1009 (struct octeon_device_priv *)oct->priv;
1010 u64 oq_no;
1011 struct octeon_droq *droq;
1012
1013 if (oct->int_status & OCT_DEV_INTR_PKT_DATA) {
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001014 for (oq_no = 0; oq_no < MAX_OCTEON_OUTPUT_QUEUES(oct);
1015 oq_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -08001016 if (!(oct->droq_intr & BIT_ULL(oq_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001017 continue;
1018
1019 droq = oct->droq[oq_no];
1020
1021 if (droq->ops.poll_mode) {
1022 droq->ops.napi_fn(droq);
1023 oct_priv->napi_mask |= (1 << oq_no);
1024 } else {
1025 tasklet_schedule(&oct_priv->droq_tasklet);
1026 }
1027 }
1028 }
1029}
1030
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001031static irqreturn_t
1032liquidio_msix_intr_handler(int irq __attribute__((unused)), void *dev)
1033{
1034 u64 ret;
1035 struct octeon_ioq_vector *ioq_vector = (struct octeon_ioq_vector *)dev;
1036 struct octeon_device *oct = ioq_vector->oct_dev;
1037 struct octeon_droq *droq = oct->droq[ioq_vector->droq_index];
1038
1039 ret = oct->fn_list.msix_interrupt_handler(ioq_vector);
1040
1041 if ((ret & MSIX_PO_INT) || (ret & MSIX_PI_INT))
1042 liquidio_schedule_msix_droq_pkt_handler(droq, ret);
1043
1044 return IRQ_HANDLED;
1045}
1046
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001047/**
1048 * \brief Interrupt handler for octeon
1049 * @param irq unused
1050 * @param dev octeon device
1051 */
1052static
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001053irqreturn_t liquidio_legacy_intr_handler(int irq __attribute__((unused)),
1054 void *dev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001055{
1056 struct octeon_device *oct = (struct octeon_device *)dev;
1057 irqreturn_t ret;
1058
1059 /* Disable our interrupts for the duration of ISR */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001060 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001061
1062 ret = oct->fn_list.process_interrupt_regs(oct);
1063
1064 if (ret == IRQ_HANDLED)
1065 liquidio_schedule_droq_pkt_handlers(oct);
1066
1067 /* Re-enable our interrupts */
1068 if (!(atomic_read(&oct->status) == OCT_DEV_IN_RESET))
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001069 oct->fn_list.enable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001070
1071 return ret;
1072}
1073
1074/**
1075 * \brief Setup interrupt for octeon device
1076 * @param oct octeon device
1077 *
1078 * Enable interrupt in Octeon device as given in the PCI interrupt mask.
1079 */
1080static int octeon_setup_interrupt(struct octeon_device *oct)
1081{
1082 int irqret, err;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001083 struct msix_entry *msix_entries;
1084 int i;
1085 int num_ioq_vectors;
1086 int num_alloc_ioq_vectors;
Rick Farrington0c88a762017-03-13 12:58:04 -07001087 char *queue_irq_names = NULL;
1088 char *aux_irq_name = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001089
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001090 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
1091 oct->num_msix_irqs = oct->sriov_info.num_pf_rings;
1092 /* one non ioq interrupt for handling sli_mac_pf_int_sum */
1093 oct->num_msix_irqs += 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001094
Rick Farrington0c88a762017-03-13 12:58:04 -07001095 /* allocate storage for the names assigned to each irq */
1096 oct->irq_name_storage =
1097 kcalloc((MAX_IOQ_INTERRUPTS_PER_PF + 1), INTRNAMSIZ,
1098 GFP_KERNEL);
1099 if (!oct->irq_name_storage) {
1100 dev_err(&oct->pci_dev->dev, "Irq name storage alloc failed...\n");
1101 return -ENOMEM;
1102 }
1103
1104 queue_irq_names = oct->irq_name_storage;
1105 aux_irq_name = &queue_irq_names
1106 [IRQ_NAME_OFF(MAX_IOQ_INTERRUPTS_PER_PF)];
1107
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001108 oct->msix_entries = kcalloc(
1109 oct->num_msix_irqs, sizeof(struct msix_entry), GFP_KERNEL);
Rick Farrington0c88a762017-03-13 12:58:04 -07001110 if (!oct->msix_entries) {
1111 dev_err(&oct->pci_dev->dev, "Memory Alloc failed...\n");
1112 kfree(oct->irq_name_storage);
1113 oct->irq_name_storage = NULL;
1114 return -ENOMEM;
1115 }
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001116
1117 msix_entries = (struct msix_entry *)oct->msix_entries;
1118 /*Assumption is that pf msix vectors start from pf srn to pf to
1119 * trs and not from 0. if not change this code
1120 */
1121 for (i = 0; i < oct->num_msix_irqs - 1; i++)
1122 msix_entries[i].entry = oct->sriov_info.pf_srn + i;
1123 msix_entries[oct->num_msix_irqs - 1].entry =
1124 oct->sriov_info.trs;
1125 num_alloc_ioq_vectors = pci_enable_msix_range(
1126 oct->pci_dev, msix_entries,
1127 oct->num_msix_irqs,
1128 oct->num_msix_irqs);
1129 if (num_alloc_ioq_vectors < 0) {
1130 dev_err(&oct->pci_dev->dev, "unable to Allocate MSI-X interrupts\n");
1131 kfree(oct->msix_entries);
1132 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001133 kfree(oct->irq_name_storage);
1134 oct->irq_name_storage = NULL;
1135 return num_alloc_ioq_vectors;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001136 }
1137 dev_dbg(&oct->pci_dev->dev, "OCTEON: Enough MSI-X interrupts are allocated...\n");
1138
1139 num_ioq_vectors = oct->num_msix_irqs;
1140
1141 /** For PF, there is one non-ioq interrupt handler */
1142 num_ioq_vectors -= 1;
Rick Farrington0c88a762017-03-13 12:58:04 -07001143
1144 snprintf(aux_irq_name, INTRNAMSIZ,
1145 "LiquidIO%u-pf%u-aux", oct->octeon_id, oct->pf_num);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001146 irqret = request_irq(msix_entries[num_ioq_vectors].vector,
Rick Farrington0c88a762017-03-13 12:58:04 -07001147 liquidio_legacy_intr_handler, 0,
1148 aux_irq_name, oct);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001149 if (irqret) {
1150 dev_err(&oct->pci_dev->dev,
1151 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1152 irqret);
1153 pci_disable_msix(oct->pci_dev);
1154 kfree(oct->msix_entries);
1155 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001156 kfree(oct->irq_name_storage);
1157 oct->irq_name_storage = NULL;
1158 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001159 }
1160
1161 for (i = 0; i < num_ioq_vectors; i++) {
Rick Farrington0c88a762017-03-13 12:58:04 -07001162 snprintf(&queue_irq_names[IRQ_NAME_OFF(i)], INTRNAMSIZ,
1163 "LiquidIO%u-pf%u-rxtx-%u",
1164 oct->octeon_id, oct->pf_num, i);
1165
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001166 irqret = request_irq(msix_entries[i].vector,
1167 liquidio_msix_intr_handler, 0,
Rick Farrington0c88a762017-03-13 12:58:04 -07001168 &queue_irq_names[IRQ_NAME_OFF(i)],
1169 &oct->ioq_vector[i]);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001170 if (irqret) {
1171 dev_err(&oct->pci_dev->dev,
1172 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1173 irqret);
1174 /** Freeing the non-ioq irq vector here . */
1175 free_irq(msix_entries[num_ioq_vectors].vector,
1176 oct);
1177
1178 while (i) {
1179 i--;
1180 /** clearing affinity mask. */
1181 irq_set_affinity_hint(
1182 msix_entries[i].vector, NULL);
1183 free_irq(msix_entries[i].vector,
1184 &oct->ioq_vector[i]);
1185 }
1186 pci_disable_msix(oct->pci_dev);
1187 kfree(oct->msix_entries);
1188 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001189 kfree(oct->irq_name_storage);
1190 oct->irq_name_storage = NULL;
1191 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001192 }
1193 oct->ioq_vector[i].vector = msix_entries[i].vector;
1194 /* assign the cpu mask for this msix interrupt vector */
1195 irq_set_affinity_hint(
1196 msix_entries[i].vector,
1197 (&oct->ioq_vector[i].affinity_mask));
1198 }
1199 dev_dbg(&oct->pci_dev->dev, "OCTEON[%d]: MSI-X enabled\n",
1200 oct->octeon_id);
1201 } else {
1202 err = pci_enable_msi(oct->pci_dev);
1203 if (err)
1204 dev_warn(&oct->pci_dev->dev, "Reverting to legacy interrupts. Error: %d\n",
1205 err);
1206 else
1207 oct->flags |= LIO_FLAG_MSI_ENABLED;
1208
Rick Farrington0c88a762017-03-13 12:58:04 -07001209 /* allocate storage for the names assigned to the irq */
1210 oct->irq_name_storage = kcalloc(1, INTRNAMSIZ, GFP_KERNEL);
1211 if (!oct->irq_name_storage)
1212 return -ENOMEM;
1213
1214 queue_irq_names = oct->irq_name_storage;
1215
1216 snprintf(&queue_irq_names[IRQ_NAME_OFF(0)], INTRNAMSIZ,
1217 "LiquidIO%u-pf%u-rxtx-%u",
1218 oct->octeon_id, oct->pf_num, 0);
1219
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001220 irqret = request_irq(oct->pci_dev->irq,
Rick Farrington0c88a762017-03-13 12:58:04 -07001221 liquidio_legacy_intr_handler,
1222 IRQF_SHARED,
1223 &queue_irq_names[IRQ_NAME_OFF(0)], oct);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001224 if (irqret) {
1225 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1226 pci_disable_msi(oct->pci_dev);
1227 dev_err(&oct->pci_dev->dev, "Request IRQ failed with code: %d\n",
1228 irqret);
Rick Farrington0c88a762017-03-13 12:58:04 -07001229 kfree(oct->irq_name_storage);
1230 oct->irq_name_storage = NULL;
1231 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001232 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001233 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001234 return 0;
1235}
1236
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001237static int liquidio_watchdog(void *param)
1238{
1239 u64 wdog;
1240 u16 mask_of_stuck_cores = 0;
1241 u16 mask_of_crashed_cores = 0;
1242 int core_num;
1243 u8 core_is_stuck[LIO_MAX_CORES];
1244 u8 core_crashed[LIO_MAX_CORES];
1245 struct octeon_device *oct = param;
1246
1247 memset(core_is_stuck, 0, sizeof(core_is_stuck));
1248 memset(core_crashed, 0, sizeof(core_crashed));
1249
1250 while (!kthread_should_stop()) {
1251 mask_of_crashed_cores =
1252 (u16)octeon_read_csr64(oct, CN23XX_SLI_SCRATCH2);
1253
1254 for (core_num = 0; core_num < LIO_MAX_CORES; core_num++) {
1255 if (!core_is_stuck[core_num]) {
1256 wdog = lio_pci_readq(oct, CIU3_WDOG(core_num));
1257
1258 /* look at watchdog state field */
1259 wdog &= CIU3_WDOG_MASK;
1260 if (wdog) {
1261 /* this watchdog timer has expired */
1262 core_is_stuck[core_num] =
1263 LIO_MONITOR_WDOG_EXPIRE;
1264 mask_of_stuck_cores |= (1 << core_num);
1265 }
1266 }
1267
1268 if (!core_crashed[core_num])
1269 core_crashed[core_num] =
1270 (mask_of_crashed_cores >> core_num) & 1;
1271 }
1272
1273 if (mask_of_stuck_cores) {
1274 for (core_num = 0; core_num < LIO_MAX_CORES;
1275 core_num++) {
1276 if (core_is_stuck[core_num] == 1) {
1277 dev_err(&oct->pci_dev->dev,
1278 "ERROR: Octeon core %d is stuck!\n",
1279 core_num);
1280 /* 2 means we have printk'd an error
1281 * so no need to repeat the same printk
1282 */
1283 core_is_stuck[core_num] =
1284 LIO_MONITOR_CORE_STUCK_MSGD;
1285 }
1286 }
1287 }
1288
1289 if (mask_of_crashed_cores) {
1290 for (core_num = 0; core_num < LIO_MAX_CORES;
1291 core_num++) {
1292 if (core_crashed[core_num] == 1) {
1293 dev_err(&oct->pci_dev->dev,
1294 "ERROR: Octeon core %d crashed! See oct-fwdump for details.\n",
1295 core_num);
1296 /* 2 means we have printk'd an error
1297 * so no need to repeat the same printk
1298 */
1299 core_crashed[core_num] =
1300 LIO_MONITOR_CORE_STUCK_MSGD;
1301 }
1302 }
1303 }
1304#ifdef CONFIG_MODULE_UNLOAD
1305 if (mask_of_stuck_cores || mask_of_crashed_cores) {
1306 /* make module refcount=0 so that rmmod will work */
1307 long refcount;
1308
1309 refcount = module_refcount(THIS_MODULE);
1310
1311 while (refcount > 0) {
1312 module_put(THIS_MODULE);
1313 refcount = module_refcount(THIS_MODULE);
1314 }
1315
1316 /* compensate for and withstand an unlikely (but still
1317 * possible) race condition
1318 */
1319 while (refcount < 0) {
1320 try_module_get(THIS_MODULE);
1321 refcount = module_refcount(THIS_MODULE);
1322 }
1323 }
1324#endif
1325 /* sleep for two seconds */
1326 set_current_state(TASK_INTERRUPTIBLE);
1327 schedule_timeout(2 * HZ);
1328 }
1329
1330 return 0;
1331}
1332
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001333/**
1334 * \brief PCI probe handler
1335 * @param pdev PCI device structure
1336 * @param ent unused
1337 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001338static int
1339liquidio_probe(struct pci_dev *pdev,
1340 const struct pci_device_id *ent __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001341{
1342 struct octeon_device *oct_dev = NULL;
1343 struct handshake *hs;
1344
1345 oct_dev = octeon_allocate_device(pdev->device,
1346 sizeof(struct octeon_device_priv));
1347 if (!oct_dev) {
1348 dev_err(&pdev->dev, "Unable to allocate device\n");
1349 return -ENOMEM;
1350 }
1351
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001352 if (pdev->device == OCTEON_CN23XX_PF_VID)
1353 oct_dev->msix_on = LIO_FLAG_MSIX_ENABLED;
1354
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001355 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
1356 (u32)pdev->vendor, (u32)pdev->device);
1357
1358 /* Assign octeon_device for this device to the private data area. */
1359 pci_set_drvdata(pdev, oct_dev);
1360
1361 /* set linux specific device pointer */
1362 oct_dev->pci_dev = (void *)pdev;
1363
1364 hs = &handshake[oct_dev->octeon_id];
1365 init_completion(&hs->init);
1366 init_completion(&hs->started);
1367 hs->pci_dev = pdev;
1368
1369 if (oct_dev->octeon_id == 0)
1370 /* first LiquidIO NIC is detected */
1371 complete(&first_stage);
1372
1373 if (octeon_device_init(oct_dev)) {
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001374 complete(&hs->init);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001375 liquidio_remove(pdev);
1376 return -ENOMEM;
1377 }
1378
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001379 if (OCTEON_CN23XX_PF(oct_dev)) {
1380 u64 scratch1;
1381 u8 bus, device, function;
1382
1383 scratch1 = octeon_read_csr64(oct_dev, CN23XX_SLI_SCRATCH1);
1384 if (!(scratch1 & 4ULL)) {
1385 /* Bit 2 of SLI_SCRATCH_1 is a flag that indicates that
1386 * the lio watchdog kernel thread is running for this
1387 * NIC. Each NIC gets one watchdog kernel thread.
1388 */
1389 scratch1 |= 4ULL;
1390 octeon_write_csr64(oct_dev, CN23XX_SLI_SCRATCH1,
1391 scratch1);
1392
1393 bus = pdev->bus->number;
1394 device = PCI_SLOT(pdev->devfn);
1395 function = PCI_FUNC(pdev->devfn);
1396 oct_dev->watchdog_task = kthread_create(
1397 liquidio_watchdog, oct_dev,
1398 "liowd/%02hhx:%02hhx.%hhx", bus, device, function);
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001399 if (!IS_ERR(oct_dev->watchdog_task)) {
1400 wake_up_process(oct_dev->watchdog_task);
1401 } else {
1402 oct_dev->watchdog_task = NULL;
1403 dev_err(&oct_dev->pci_dev->dev,
1404 "failed to create kernel_thread\n");
1405 liquidio_remove(pdev);
1406 return -1;
1407 }
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001408 }
1409 }
1410
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001411 oct_dev->rx_pause = 1;
1412 oct_dev->tx_pause = 1;
1413
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001414 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
1415
1416 return 0;
1417}
1418
1419/**
1420 *\brief Destroy resources associated with octeon device
1421 * @param pdev PCI device structure
1422 * @param ent unused
1423 */
1424static void octeon_destroy_resources(struct octeon_device *oct)
1425{
1426 int i;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001427 struct msix_entry *msix_entries;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001428 struct octeon_device_priv *oct_priv =
1429 (struct octeon_device_priv *)oct->priv;
1430
1431 struct handshake *hs;
1432
1433 switch (atomic_read(&oct->status)) {
1434 case OCT_DEV_RUNNING:
1435 case OCT_DEV_CORE_OK:
1436
1437 /* No more instructions will be forwarded. */
1438 atomic_set(&oct->status, OCT_DEV_IN_RESET);
1439
1440 oct->app_mode = CVM_DRV_INVALID_APP;
1441 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
1442 lio_get_state_string(&oct->status));
1443
1444 schedule_timeout_uninterruptible(HZ / 10);
1445
1446 /* fallthrough */
1447 case OCT_DEV_HOST_OK:
1448
1449 /* fallthrough */
1450 case OCT_DEV_CONSOLE_INIT_DONE:
1451 /* Remove any consoles */
1452 octeon_remove_consoles(oct);
1453
1454 /* fallthrough */
1455 case OCT_DEV_IO_QUEUES_DONE:
1456 if (wait_for_pending_requests(oct))
1457 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
1458
1459 if (lio_wait_for_instr_fetch(oct))
1460 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
1461
1462 /* Disable the input and output queues now. No more packets will
1463 * arrive from Octeon, but we should wait for all packet
1464 * processing to finish.
1465 */
1466 oct->fn_list.disable_io_queues(oct);
1467
1468 if (lio_wait_for_oq_pkts(oct))
1469 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1470
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001471 /* fallthrough */
1472 case OCT_DEV_INTR_SET_DONE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001473 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001474 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001475
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001476 if (oct->msix_on) {
1477 msix_entries = (struct msix_entry *)oct->msix_entries;
1478 for (i = 0; i < oct->num_msix_irqs - 1; i++) {
1479 /* clear the affinity_cpumask */
1480 irq_set_affinity_hint(msix_entries[i].vector,
1481 NULL);
1482 free_irq(msix_entries[i].vector,
1483 &oct->ioq_vector[i]);
1484 }
1485 /* non-iov vector's argument is oct struct */
1486 free_irq(msix_entries[i].vector, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001487
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001488 pci_disable_msix(oct->pci_dev);
1489 kfree(oct->msix_entries);
1490 oct->msix_entries = NULL;
1491 } else {
1492 /* Release the interrupt line */
1493 free_irq(oct->pci_dev->irq, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001494
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001495 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1496 pci_disable_msi(oct->pci_dev);
1497 }
1498
Rick Farrington0c88a762017-03-13 12:58:04 -07001499 kfree(oct->irq_name_storage);
1500 oct->irq_name_storage = NULL;
1501
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001502 /* fallthrough */
1503 case OCT_DEV_MSIX_ALLOC_VECTOR_DONE:
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001504 if (OCTEON_CN23XX_PF(oct))
1505 octeon_free_ioq_vector(oct);
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08001506
1507 /* fallthrough */
1508 case OCT_DEV_MBOX_SETUP_DONE:
1509 if (OCTEON_CN23XX_PF(oct))
1510 oct->fn_list.free_mbox(oct);
1511
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001512 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001513 case OCT_DEV_IN_RESET:
1514 case OCT_DEV_DROQ_INIT_DONE:
Raghu Vatsavayi763185a2016-11-14 15:54:45 -08001515 /* Wait for any pending operations */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001516 mdelay(100);
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001517 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001518 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001519 continue;
1520 octeon_delete_droq(oct, i);
1521 }
1522
1523 /* Force any pending handshakes to complete */
1524 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1525 hs = &handshake[i];
1526
1527 if (hs->pci_dev) {
1528 handshake[oct->octeon_id].init_ok = 0;
1529 complete(&handshake[oct->octeon_id].init);
1530 handshake[oct->octeon_id].started_ok = 0;
1531 complete(&handshake[oct->octeon_id].started);
1532 }
1533 }
1534
1535 /* fallthrough */
1536 case OCT_DEV_RESP_LIST_INIT_DONE:
1537 octeon_delete_response_list(oct);
1538
1539 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001540 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001541 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001542 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001543 continue;
1544 octeon_delete_instr_queue(oct, i);
1545 }
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08001546#ifdef CONFIG_PCI_IOV
1547 if (oct->sriov_info.sriov_enabled)
1548 pci_disable_sriov(oct->pci_dev);
1549#endif
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001550 /* fallthrough */
1551 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1552 octeon_free_sc_buffer_pool(oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001553
1554 /* fallthrough */
1555 case OCT_DEV_DISPATCH_INIT_DONE:
1556 octeon_delete_dispatch_list(oct);
1557 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1558
1559 /* fallthrough */
1560 case OCT_DEV_PCI_MAP_DONE:
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001561 /* Soft reset the octeon device before exiting */
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07001562 if ((!OCTEON_CN23XX_PF(oct)) || !oct->octeon_id)
1563 oct->fn_list.soft_reset(oct);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001564
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001565 octeon_unmap_pci_barx(oct, 0);
1566 octeon_unmap_pci_barx(oct, 1);
1567
1568 /* fallthrough */
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001569 case OCT_DEV_PCI_ENABLE_DONE:
1570 pci_clear_master(oct->pci_dev);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001571 /* Disable the device, releasing the PCI INT */
1572 pci_disable_device(oct->pci_dev);
1573
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001574 /* fallthrough */
1575 case OCT_DEV_BEGIN_STATE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001576 /* Nothing to be done here either */
1577 break;
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07001578 } /* end switch (oct->status) */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001579
1580 tasklet_kill(&oct_priv->droq_tasklet);
1581}
1582
1583/**
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001584 * \brief Callback for rx ctrl
1585 * @param status status of request
1586 * @param buf pointer to resp structure
1587 */
1588static void rx_ctl_callback(struct octeon_device *oct,
1589 u32 status,
1590 void *buf)
1591{
1592 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1593 struct liquidio_rx_ctl_context *ctx;
1594
1595 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1596
1597 oct = lio_get_device(ctx->octeon_id);
1598 if (status)
1599 dev_err(&oct->pci_dev->dev, "rx ctl instruction failed. Status: %llx\n",
1600 CVM_CAST64(status));
1601 WRITE_ONCE(ctx->cond, 1);
1602
1603 /* This barrier is required to be sure that the response has been
1604 * written fully before waking up the handler
1605 */
1606 wmb();
1607
1608 wake_up_interruptible(&ctx->wc);
1609}
1610
1611/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001612 * \brief Send Rx control command
1613 * @param lio per-network private data
1614 * @param start_stop whether to start or stop
1615 */
1616static void send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1617{
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001618 struct octeon_soft_command *sc;
1619 struct liquidio_rx_ctl_context *ctx;
1620 union octnet_cmd *ncmd;
1621 int ctx_size = sizeof(struct liquidio_rx_ctl_context);
1622 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1623 int retval;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001624
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001625 if (oct->props[lio->ifidx].rx_on == start_stop)
1626 return;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001627
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001628 sc = (struct octeon_soft_command *)
1629 octeon_alloc_soft_command(oct, OCTNET_CMD_SIZE,
1630 16, ctx_size);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001631
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001632 ncmd = (union octnet_cmd *)sc->virtdptr;
1633 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1634
1635 WRITE_ONCE(ctx->cond, 0);
1636 ctx->octeon_id = lio_get_device_id(oct);
1637 init_waitqueue_head(&ctx->wc);
1638
1639 ncmd->u64 = 0;
1640 ncmd->s.cmd = OCTNET_CMD_RX_CTL;
1641 ncmd->s.param1 = start_stop;
1642
1643 octeon_swap_8B_data((u64 *)ncmd, (OCTNET_CMD_SIZE >> 3));
1644
1645 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
1646
1647 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
1648 OPCODE_NIC_CMD, 0, 0, 0);
1649
1650 sc->callback = rx_ctl_callback;
1651 sc->callback_arg = sc;
1652 sc->wait_time = 5000;
1653
1654 retval = octeon_send_soft_command(oct, sc);
1655 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001656 netif_info(lio, rx_err, lio->netdev, "Failed to send RX Control message\n");
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001657 } else {
1658 /* Sleep on a wait queue till the cond flag indicates that the
1659 * response arrived or timed-out.
1660 */
1661 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR)
1662 return;
1663 oct->props[lio->ifidx].rx_on = start_stop;
1664 }
1665
1666 octeon_free_soft_command(oct, sc);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001667}
1668
1669/**
1670 * \brief Destroy NIC device interface
1671 * @param oct octeon device
1672 * @param ifidx which interface to destroy
1673 *
1674 * Cleanup associated with each interface for an Octeon device when NIC
1675 * module is being unloaded or if initialization fails during load.
1676 */
1677static void liquidio_destroy_nic_device(struct octeon_device *oct, int ifidx)
1678{
1679 struct net_device *netdev = oct->props[ifidx].netdev;
1680 struct lio *lio;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001681 struct napi_struct *napi, *n;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001682
1683 if (!netdev) {
1684 dev_err(&oct->pci_dev->dev, "%s No netdevice ptr for index %d\n",
1685 __func__, ifidx);
1686 return;
1687 }
1688
1689 lio = GET_LIO(netdev);
1690
1691 dev_dbg(&oct->pci_dev->dev, "NIC device cleanup\n");
1692
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001693 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING)
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001694 liquidio_stop(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001695
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001696 if (oct->props[lio->ifidx].napi_enabled == 1) {
1697 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1698 napi_disable(napi);
1699
1700 oct->props[lio->ifidx].napi_enabled = 0;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001701
1702 if (OCTEON_CN23XX_PF(oct))
1703 oct->droq[0]->ops.poll_mode = 0;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001704 }
1705
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001706 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
1707 unregister_netdev(netdev);
1708
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001709 cleanup_link_status_change_wq(netdev);
1710
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001711 delete_glists(lio);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001712
1713 free_netdev(netdev);
1714
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07001715 oct->props[ifidx].gmxport = -1;
1716
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001717 oct->props[ifidx].netdev = NULL;
1718}
1719
1720/**
1721 * \brief Stop complete NIC functionality
1722 * @param oct octeon device
1723 */
1724static int liquidio_stop_nic_module(struct octeon_device *oct)
1725{
1726 int i, j;
1727 struct lio *lio;
1728
1729 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1730 if (!oct->ifcount) {
1731 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1732 return 1;
1733 }
1734
Raghu Vatsavayi60441882016-06-21 22:53:08 -07001735 spin_lock_bh(&oct->cmd_resp_wqlock);
1736 oct->cmd_resp_state = OCT_DRV_OFFLINE;
1737 spin_unlock_bh(&oct->cmd_resp_wqlock);
1738
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001739 for (i = 0; i < oct->ifcount; i++) {
1740 lio = GET_LIO(oct->props[i].netdev);
1741 for (j = 0; j < lio->linfo.num_rxpciq; j++)
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001742 octeon_unregister_droq_ops(oct,
1743 lio->linfo.rxpciq[j].s.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001744 }
1745
1746 for (i = 0; i < oct->ifcount; i++)
1747 liquidio_destroy_nic_device(oct, i);
1748
1749 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1750 return 0;
1751}
1752
1753/**
1754 * \brief Cleans up resources at unload time
1755 * @param pdev PCI device structure
1756 */
1757static void liquidio_remove(struct pci_dev *pdev)
1758{
1759 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1760
1761 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1762
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001763 if (oct_dev->watchdog_task)
1764 kthread_stop(oct_dev->watchdog_task);
1765
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001766 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1767 liquidio_stop_nic_module(oct_dev);
1768
1769 /* Reset the octeon device and cleanup all memory allocated for
1770 * the octeon device by driver.
1771 */
1772 octeon_destroy_resources(oct_dev);
1773
1774 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1775
1776 /* This octeon device has been removed. Update the global
1777 * data structure to reflect this. Free the device structure.
1778 */
1779 octeon_free_device_mem(oct_dev);
1780}
1781
1782/**
1783 * \brief Identify the Octeon device and to map the BAR address space
1784 * @param oct octeon device
1785 */
1786static int octeon_chip_specific_setup(struct octeon_device *oct)
1787{
1788 u32 dev_id, rev_id;
1789 int ret = 1;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001790 char *s;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001791
1792 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1793 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1794 oct->rev_id = rev_id & 0xff;
1795
1796 switch (dev_id) {
1797 case OCTEON_CN68XX_PCIID:
1798 oct->chip_id = OCTEON_CN68XX;
1799 ret = lio_setup_cn68xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001800 s = "CN68XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001801 break;
1802
1803 case OCTEON_CN66XX_PCIID:
1804 oct->chip_id = OCTEON_CN66XX;
1805 ret = lio_setup_cn66xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001806 s = "CN66XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001807 break;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001808
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001809 case OCTEON_CN23XX_PCIID_PF:
1810 oct->chip_id = OCTEON_CN23XX_PF_VID;
1811 ret = setup_cn23xx_octeon_pf_device(oct);
1812 s = "CN23XX";
1813 break;
1814
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001815 default:
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001816 s = "?";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001817 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1818 dev_id);
1819 }
1820
1821 if (!ret)
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001822 dev_info(&oct->pci_dev->dev, "%s PASS%d.%d %s Version: %s\n", s,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001823 OCTEON_MAJOR_REV(oct),
1824 OCTEON_MINOR_REV(oct),
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001825 octeon_get_conf(oct)->card_name,
1826 LIQUIDIO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001827
1828 return ret;
1829}
1830
1831/**
1832 * \brief PCI initialization for each Octeon device.
1833 * @param oct octeon device
1834 */
1835static int octeon_pci_os_setup(struct octeon_device *oct)
1836{
1837 /* setup PCI stuff first */
1838 if (pci_enable_device(oct->pci_dev)) {
1839 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1840 return 1;
1841 }
1842
1843 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1844 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001845 pci_disable_device(oct->pci_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001846 return 1;
1847 }
1848
1849 /* Enable PCI DMA Master. */
1850 pci_set_master(oct->pci_dev);
1851
1852 return 0;
1853}
1854
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001855static inline int skb_iq(struct lio *lio, struct sk_buff *skb)
1856{
1857 int q = 0;
1858
1859 if (netif_is_multiqueue(lio->netdev))
1860 q = skb->queue_mapping % lio->linfo.num_txpciq;
1861
1862 return q;
1863}
1864
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001865/**
1866 * \brief Check Tx queue state for a given network buffer
1867 * @param lio per-network private data
1868 * @param skb network buffer
1869 */
1870static inline int check_txq_state(struct lio *lio, struct sk_buff *skb)
1871{
1872 int q = 0, iq = 0;
1873
1874 if (netif_is_multiqueue(lio->netdev)) {
1875 q = skb->queue_mapping;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001876 iq = lio->linfo.txpciq[(q % (lio->linfo.num_txpciq))].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001877 } else {
1878 iq = lio->txq;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001879 q = iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001880 }
1881
1882 if (octnet_iq_is_full(lio->oct_dev, iq))
1883 return 0;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001884
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001885 if (__netif_subqueue_stopped(lio->netdev, q)) {
1886 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq, tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001887 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001888 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001889 return 1;
1890}
1891
1892/**
1893 * \brief Unmap and free network buffer
1894 * @param buf buffer
1895 */
1896static void free_netbuf(void *buf)
1897{
1898 struct sk_buff *skb;
1899 struct octnet_buf_free_info *finfo;
1900 struct lio *lio;
1901
1902 finfo = (struct octnet_buf_free_info *)buf;
1903 skb = finfo->skb;
1904 lio = finfo->lio;
1905
1906 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1907 DMA_TO_DEVICE);
1908
1909 check_txq_state(lio, skb);
1910
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001911 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001912}
1913
1914/**
1915 * \brief Unmap and free gather buffer
1916 * @param buf buffer
1917 */
1918static void free_netsgbuf(void *buf)
1919{
1920 struct octnet_buf_free_info *finfo;
1921 struct sk_buff *skb;
1922 struct lio *lio;
1923 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001924 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001925
1926 finfo = (struct octnet_buf_free_info *)buf;
1927 skb = finfo->skb;
1928 lio = finfo->lio;
1929 g = finfo->g;
1930 frags = skb_shinfo(skb)->nr_frags;
1931
1932 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1933 g->sg[0].ptr[0], (skb->len - skb->data_len),
1934 DMA_TO_DEVICE);
1935
1936 i = 1;
1937 while (frags--) {
1938 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1939
1940 pci_unmap_page((lio->oct_dev)->pci_dev,
1941 g->sg[(i >> 2)].ptr[(i & 3)],
1942 frag->size, DMA_TO_DEVICE);
1943 i++;
1944 }
1945
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001946 iq = skb_iq(lio, skb);
1947 spin_lock(&lio->glist_lock[iq]);
1948 list_add_tail(&g->list, &lio->glist[iq]);
1949 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001950
1951 check_txq_state(lio, skb); /* mq support: sub-queue state check */
1952
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001953 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001954}
1955
1956/**
1957 * \brief Unmap and free gather buffer with response
1958 * @param buf buffer
1959 */
1960static void free_netsgbuf_with_resp(void *buf)
1961{
1962 struct octeon_soft_command *sc;
1963 struct octnet_buf_free_info *finfo;
1964 struct sk_buff *skb;
1965 struct lio *lio;
1966 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001967 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001968
1969 sc = (struct octeon_soft_command *)buf;
1970 skb = (struct sk_buff *)sc->callback_arg;
1971 finfo = (struct octnet_buf_free_info *)&skb->cb;
1972
1973 lio = finfo->lio;
1974 g = finfo->g;
1975 frags = skb_shinfo(skb)->nr_frags;
1976
1977 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1978 g->sg[0].ptr[0], (skb->len - skb->data_len),
1979 DMA_TO_DEVICE);
1980
1981 i = 1;
1982 while (frags--) {
1983 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1984
1985 pci_unmap_page((lio->oct_dev)->pci_dev,
1986 g->sg[(i >> 2)].ptr[(i & 3)],
1987 frag->size, DMA_TO_DEVICE);
1988 i++;
1989 }
1990
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001991 iq = skb_iq(lio, skb);
1992
1993 spin_lock(&lio->glist_lock[iq]);
1994 list_add_tail(&g->list, &lio->glist[iq]);
1995 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001996
1997 /* Don't free the skb yet */
1998
1999 check_txq_state(lio, skb);
2000}
2001
2002/**
2003 * \brief Adjust ptp frequency
2004 * @param ptp PTP clock info
2005 * @param ppb how much to adjust by, in parts-per-billion
2006 */
2007static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
2008{
2009 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2010 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2011 u64 comp, delta;
2012 unsigned long flags;
2013 bool neg_adj = false;
2014
2015 if (ppb < 0) {
2016 neg_adj = true;
2017 ppb = -ppb;
2018 }
2019
2020 /* The hardware adds the clock compensation value to the
2021 * PTP clock on every coprocessor clock cycle, so we
2022 * compute the delta in terms of coprocessor clocks.
2023 */
2024 delta = (u64)ppb << 32;
2025 do_div(delta, oct->coproc_clock_rate);
2026
2027 spin_lock_irqsave(&lio->ptp_lock, flags);
2028 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
2029 if (neg_adj)
2030 comp -= delta;
2031 else
2032 comp += delta;
2033 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
2034 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2035
2036 return 0;
2037}
2038
2039/**
2040 * \brief Adjust ptp time
2041 * @param ptp PTP clock info
2042 * @param delta how much to adjust by, in nanosecs
2043 */
2044static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
2045{
2046 unsigned long flags;
2047 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2048
2049 spin_lock_irqsave(&lio->ptp_lock, flags);
2050 lio->ptp_adjust += delta;
2051 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2052
2053 return 0;
2054}
2055
2056/**
2057 * \brief Get hardware clock time, including any adjustment
2058 * @param ptp PTP clock info
2059 * @param ts timespec
2060 */
2061static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
2062 struct timespec64 *ts)
2063{
2064 u64 ns;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002065 unsigned long flags;
2066 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2067 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2068
2069 spin_lock_irqsave(&lio->ptp_lock, flags);
2070 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
2071 ns += lio->ptp_adjust;
2072 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2073
Kefeng Wang286af312016-01-27 17:34:37 +08002074 *ts = ns_to_timespec64(ns);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002075
2076 return 0;
2077}
2078
2079/**
2080 * \brief Set hardware clock time. Reset adjustment
2081 * @param ptp PTP clock info
2082 * @param ts timespec
2083 */
2084static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
2085 const struct timespec64 *ts)
2086{
2087 u64 ns;
2088 unsigned long flags;
2089 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2090 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2091
2092 ns = timespec_to_ns(ts);
2093
2094 spin_lock_irqsave(&lio->ptp_lock, flags);
2095 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
2096 lio->ptp_adjust = 0;
2097 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2098
2099 return 0;
2100}
2101
2102/**
2103 * \brief Check if PTP is enabled
2104 * @param ptp PTP clock info
2105 * @param rq request
2106 * @param on is it on
2107 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002108static int
2109liquidio_ptp_enable(struct ptp_clock_info *ptp __attribute__((unused)),
2110 struct ptp_clock_request *rq __attribute__((unused)),
2111 int on __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002112{
2113 return -EOPNOTSUPP;
2114}
2115
2116/**
2117 * \brief Open PTP clock source
2118 * @param netdev network device
2119 */
2120static void oct_ptp_open(struct net_device *netdev)
2121{
2122 struct lio *lio = GET_LIO(netdev);
2123 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2124
2125 spin_lock_init(&lio->ptp_lock);
2126
2127 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
2128 lio->ptp_info.owner = THIS_MODULE;
2129 lio->ptp_info.max_adj = 250000000;
2130 lio->ptp_info.n_alarm = 0;
2131 lio->ptp_info.n_ext_ts = 0;
2132 lio->ptp_info.n_per_out = 0;
2133 lio->ptp_info.pps = 0;
2134 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
2135 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
2136 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
2137 lio->ptp_info.settime64 = liquidio_ptp_settime;
2138 lio->ptp_info.enable = liquidio_ptp_enable;
2139
2140 lio->ptp_adjust = 0;
2141
2142 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
2143 &oct->pci_dev->dev);
2144
2145 if (IS_ERR(lio->ptp_clock))
2146 lio->ptp_clock = NULL;
2147}
2148
2149/**
2150 * \brief Init PTP clock
2151 * @param oct octeon device
2152 */
2153static void liquidio_ptp_init(struct octeon_device *oct)
2154{
2155 u64 clock_comp, cfg;
2156
2157 clock_comp = (u64)NSEC_PER_SEC << 32;
2158 do_div(clock_comp, oct->coproc_clock_rate);
2159 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
2160
2161 /* Enable */
2162 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
2163 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
2164}
2165
2166/**
2167 * \brief Load firmware to device
2168 * @param oct octeon device
2169 *
2170 * Maps device to firmware filename, requests firmware, and downloads it
2171 */
2172static int load_firmware(struct octeon_device *oct)
2173{
2174 int ret = 0;
2175 const struct firmware *fw;
2176 char fw_name[LIO_MAX_FW_FILENAME_LEN];
2177 char *tmp_fw_type;
2178
2179 if (strncmp(fw_type, LIO_FW_NAME_TYPE_NONE,
2180 sizeof(LIO_FW_NAME_TYPE_NONE)) == 0) {
2181 dev_info(&oct->pci_dev->dev, "Skipping firmware load\n");
2182 return ret;
2183 }
2184
2185 if (fw_type[0] == '\0')
2186 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
2187 else
2188 tmp_fw_type = fw_type;
2189
2190 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
2191 octeon_get_conf(oct)->card_name, tmp_fw_type,
2192 LIO_FW_NAME_SUFFIX);
2193
2194 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
2195 if (ret) {
2196 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n.",
2197 fw_name);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002198 release_firmware(fw);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002199 return ret;
2200 }
2201
2202 ret = octeon_download_firmware(oct, fw->data, fw->size);
2203
2204 release_firmware(fw);
2205
2206 return ret;
2207}
2208
2209/**
2210 * \brief Setup output queue
2211 * @param oct octeon device
2212 * @param q_no which queue
2213 * @param num_descs how many descriptors
2214 * @param desc_size size of each descriptor
2215 * @param app_ctx application context
2216 */
2217static int octeon_setup_droq(struct octeon_device *oct, int q_no, int num_descs,
2218 int desc_size, void *app_ctx)
2219{
2220 int ret_val = 0;
2221
2222 dev_dbg(&oct->pci_dev->dev, "Creating Droq: %d\n", q_no);
2223 /* droq creation and local register settings. */
2224 ret_val = octeon_create_droq(oct, q_no, num_descs, desc_size, app_ctx);
Amitoj Kaur Chawla08a965e2016-02-04 19:25:13 +05302225 if (ret_val < 0)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002226 return ret_val;
2227
2228 if (ret_val == 1) {
2229 dev_dbg(&oct->pci_dev->dev, "Using default droq %d\n", q_no);
2230 return 0;
2231 }
2232 /* tasklet creation for the droq */
2233
2234 /* Enable the droq queues */
2235 octeon_set_droq_pkt_op(oct, q_no, 1);
2236
2237 /* Send Credit for Octeon Output queues. Credits are always
2238 * sent after the output queue is enabled.
2239 */
2240 writel(oct->droq[q_no]->max_count,
2241 oct->droq[q_no]->pkts_credit_reg);
2242
2243 return ret_val;
2244}
2245
2246/**
2247 * \brief Callback for getting interface configuration
2248 * @param status status of request
2249 * @param buf pointer to resp structure
2250 */
2251static void if_cfg_callback(struct octeon_device *oct,
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002252 u32 status __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002253 void *buf)
2254{
2255 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
2256 struct liquidio_if_cfg_resp *resp;
2257 struct liquidio_if_cfg_context *ctx;
2258
2259 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07002260 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002261
2262 oct = lio_get_device(ctx->octeon_id);
2263 if (resp->status)
2264 dev_err(&oct->pci_dev->dev, "nic if cfg instruction failed. Status: %llx\n",
2265 CVM_CAST64(resp->status));
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002266 WRITE_ONCE(ctx->cond, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002267
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002268 snprintf(oct->fw_info.liquidio_firmware_version, 32, "%s",
2269 resp->cfg_info.liquidio_firmware_version);
2270
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002271 /* This barrier is required to be sure that the response has been
2272 * written fully before waking up the handler
2273 */
2274 wmb();
2275
2276 wake_up_interruptible(&ctx->wc);
2277}
2278
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002279/** Routine to push packets arriving on Octeon interface upto network layer.
2280 * @param oct_id - octeon device id.
2281 * @param skbuff - skbuff struct to be passed to network layer.
2282 * @param len - size of total data received.
2283 * @param rh - Control header associated with the packet
2284 * @param param - additional control data with the packet
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002285 * @param arg - farg registered in droq_ops
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002286 */
2287static void
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002288liquidio_push_packet(u32 octeon_id __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002289 void *skbuff,
2290 u32 len,
2291 union octeon_rh *rh,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002292 void *param,
2293 void *arg)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002294{
2295 struct napi_struct *napi = param;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002296 struct sk_buff *skb = (struct sk_buff *)skbuff;
2297 struct skb_shared_hwtstamps *shhwtstamps;
2298 u64 ns;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002299 u16 vtag = 0;
Prasad Kannegantide28c992017-01-09 14:42:40 -08002300 u32 r_dh_off;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002301 struct net_device *netdev = (struct net_device *)arg;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002302 struct octeon_droq *droq = container_of(param, struct octeon_droq,
2303 napi);
2304 if (netdev) {
2305 int packet_was_received;
2306 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002307 struct octeon_device *oct = lio->oct_dev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002308
2309 /* Do not proceed if the interface is not in RUNNING state. */
2310 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING)) {
2311 recv_buffer_free(skb);
2312 droq->stats.rx_dropped++;
2313 return;
2314 }
2315
2316 skb->dev = netdev;
2317
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002318 skb_record_rx_queue(skb, droq->q_no);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07002319 if (likely(len > MIN_SKB_SIZE)) {
2320 struct octeon_skb_page_info *pg_info;
2321 unsigned char *va;
2322
2323 pg_info = ((struct octeon_skb_page_info *)(skb->cb));
2324 if (pg_info->page) {
2325 /* For Paged allocation use the frags */
2326 va = page_address(pg_info->page) +
2327 pg_info->page_offset;
2328 memcpy(skb->data, va, MIN_SKB_SIZE);
2329 skb_put(skb, MIN_SKB_SIZE);
2330 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
2331 pg_info->page,
2332 pg_info->page_offset +
2333 MIN_SKB_SIZE,
2334 len - MIN_SKB_SIZE,
2335 LIO_RXBUFFER_SZ);
2336 }
2337 } else {
2338 struct octeon_skb_page_info *pg_info =
2339 ((struct octeon_skb_page_info *)(skb->cb));
2340 skb_copy_to_linear_data(skb, page_address(pg_info->page)
2341 + pg_info->page_offset, len);
2342 skb_put(skb, len);
2343 put_page(pg_info->page);
2344 }
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002345
Prasad Kannegantide28c992017-01-09 14:42:40 -08002346 r_dh_off = (rh->r_dh.len - 1) * BYTES_PER_DHLEN_UNIT;
2347
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002348 if (((oct->chip_id == OCTEON_CN66XX) ||
2349 (oct->chip_id == OCTEON_CN68XX)) &&
2350 ptp_enable) {
2351 if (rh->r_dh.has_hwtstamp) {
2352 /* timestamp is included from the hardware at
2353 * the beginning of the packet.
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002354 */
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002355 if (ifstate_check
2356 (lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED)) {
2357 /* Nanoseconds are in the first 64-bits
2358 * of the packet.
2359 */
Prasad Kannegantide28c992017-01-09 14:42:40 -08002360 memcpy(&ns, (skb->data + r_dh_off),
2361 sizeof(ns));
2362 r_dh_off -= BYTES_PER_DHLEN_UNIT;
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002363 shhwtstamps = skb_hwtstamps(skb);
2364 shhwtstamps->hwtstamp =
2365 ns_to_ktime(ns +
2366 lio->ptp_adjust);
2367 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002368 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002369 }
2370
Prasad Kannegantide28c992017-01-09 14:42:40 -08002371 if (rh->r_dh.has_hash) {
2372 __be32 *hash_be = (__be32 *)(skb->data + r_dh_off);
2373 u32 hash = be32_to_cpu(*hash_be);
2374
2375 skb_set_hash(skb, hash, PKT_HASH_TYPE_L4);
2376 r_dh_off -= BYTES_PER_DHLEN_UNIT;
2377 }
2378
2379 skb_pull(skb, rh->r_dh.len * BYTES_PER_DHLEN_UNIT);
2380
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002381 skb->protocol = eth_type_trans(skb, skb->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002382 if ((netdev->features & NETIF_F_RXCSUM) &&
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002383 (((rh->r_dh.encap_on) &&
2384 (rh->r_dh.csum_verified & CNNIC_TUN_CSUM_VERIFIED)) ||
2385 (!(rh->r_dh.encap_on) &&
2386 (rh->r_dh.csum_verified & CNNIC_CSUM_VERIFIED))))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002387 /* checksum has already been verified */
2388 skb->ip_summed = CHECKSUM_UNNECESSARY;
2389 else
2390 skb->ip_summed = CHECKSUM_NONE;
2391
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002392 /* Setting Encapsulation field on basis of status received
2393 * from the firmware
2394 */
2395 if (rh->r_dh.encap_on) {
2396 skb->encapsulation = 1;
2397 skb->csum_level = 1;
2398 droq->stats.rx_vxlan++;
2399 }
2400
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002401 /* inbound VLAN tag */
2402 if ((netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
2403 (rh->r_dh.vlan != 0)) {
2404 u16 vid = rh->r_dh.vlan;
2405 u16 priority = rh->r_dh.priority;
2406
2407 vtag = priority << 13 | vid;
2408 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
2409 }
2410
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002411 packet_was_received = napi_gro_receive(napi, skb) != GRO_DROP;
2412
2413 if (packet_was_received) {
2414 droq->stats.rx_bytes_received += len;
2415 droq->stats.rx_pkts_received++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002416 } else {
2417 droq->stats.rx_dropped++;
2418 netif_info(lio, rx_err, lio->netdev,
2419 "droq:%d error rx_dropped:%llu\n",
2420 droq->q_no, droq->stats.rx_dropped);
2421 }
2422
2423 } else {
2424 recv_buffer_free(skb);
2425 }
2426}
2427
2428/**
2429 * \brief wrapper for calling napi_schedule
2430 * @param param parameters to pass to napi_schedule
2431 *
2432 * Used when scheduling on different CPUs
2433 */
2434static void napi_schedule_wrapper(void *param)
2435{
2436 struct napi_struct *napi = param;
2437
2438 napi_schedule(napi);
2439}
2440
2441/**
2442 * \brief callback when receive interrupt occurs and we are in NAPI mode
2443 * @param arg pointer to octeon output queue
2444 */
2445static void liquidio_napi_drv_callback(void *arg)
2446{
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002447 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002448 struct octeon_droq *droq = arg;
2449 int this_cpu = smp_processor_id();
2450
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002451 oct = droq->oct_dev;
2452
2453 if (OCTEON_CN23XX_PF(oct) || droq->cpu_id == this_cpu) {
2454 napi_schedule_irqoff(&droq->napi);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002455 } else {
2456 struct call_single_data *csd = &droq->csd;
2457
2458 csd->func = napi_schedule_wrapper;
2459 csd->info = &droq->napi;
2460 csd->flags = 0;
2461
2462 smp_call_function_single_async(droq->cpu_id, csd);
2463 }
2464}
2465
2466/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002467 * \brief Entry point for NAPI polling
2468 * @param napi NAPI structure
2469 * @param budget maximum number of items to process
2470 */
2471static int liquidio_napi_poll(struct napi_struct *napi, int budget)
2472{
2473 struct octeon_droq *droq;
2474 int work_done;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002475 int tx_done = 0, iq_no;
2476 struct octeon_instr_queue *iq;
2477 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002478
2479 droq = container_of(napi, struct octeon_droq, napi);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002480 oct = droq->oct_dev;
2481 iq_no = droq->q_no;
2482 /* Handle Droq descriptors */
2483 work_done = octeon_process_droq_poll_cmd(oct, droq->q_no,
2484 POLL_EVENT_PROCESS_PKTS,
2485 budget);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002486
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002487 /* Flush the instruction queue */
2488 iq = oct->instr_queue[iq_no];
2489 if (iq) {
2490 /* Process iq buffers with in the budget limits */
Derek Chickles60889862017-01-06 17:16:12 -08002491 tx_done = octeon_flush_iq(oct, iq, budget);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002492 /* Update iq read-index rather than waiting for next interrupt.
2493 * Return back if tx_done is false.
2494 */
2495 update_txq_status(oct, iq_no);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002496 } else {
2497 dev_err(&oct->pci_dev->dev, "%s: iq (%d) num invalid\n",
2498 __func__, iq_no);
2499 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002500
Satanand Burlacdb478e2017-01-31 13:04:42 -08002501 /* force enable interrupt if reg cnts are high to avoid wraparound */
2502 if ((work_done < budget && tx_done) ||
Felix Manlunas76e0e702017-02-07 12:10:58 -08002503 (iq && iq->pkt_in_done >= MAX_REG_CNT) ||
Satanand Burlacdb478e2017-01-31 13:04:42 -08002504 (droq->pkt_count >= MAX_REG_CNT)) {
2505 tx_done = 1;
Eric Dumazet6ad20162017-01-30 08:22:01 -08002506 napi_complete_done(napi, work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002507 octeon_process_droq_poll_cmd(droq->oct_dev, droq->q_no,
2508 POLL_EVENT_ENABLE_INTR, 0);
2509 return 0;
2510 }
2511
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002512 return (!tx_done) ? (budget) : (work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002513}
2514
2515/**
2516 * \brief Setup input and output queues
2517 * @param octeon_dev octeon device
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07002518 * @param ifidx Interface Index
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002519 *
2520 * Note: Queues are with respect to the octeon device. Thus
2521 * an input queue is for egress packets, and output queues
2522 * are for ingress packets.
2523 */
2524static inline int setup_io_queues(struct octeon_device *octeon_dev,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002525 int ifidx)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002526{
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002527 struct octeon_droq_ops droq_ops;
2528 struct net_device *netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002529 static int cpu_id;
2530 static int cpu_id_modulus;
2531 struct octeon_droq *droq;
2532 struct napi_struct *napi;
2533 int q, q_no, retval = 0;
2534 struct lio *lio;
2535 int num_tx_descs;
2536
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002537 netdev = octeon_dev->props[ifidx].netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002538
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002539 lio = GET_LIO(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002540
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002541 memset(&droq_ops, 0, sizeof(struct octeon_droq_ops));
2542
2543 droq_ops.fptr = liquidio_push_packet;
2544 droq_ops.farg = (void *)netdev;
2545
2546 droq_ops.poll_mode = 1;
2547 droq_ops.napi_fn = liquidio_napi_drv_callback;
2548 cpu_id = 0;
2549 cpu_id_modulus = num_present_cpus();
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002550
2551 /* set up DROQs. */
2552 for (q = 0; q < lio->linfo.num_rxpciq; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002553 q_no = lio->linfo.rxpciq[q].s.q_no;
2554 dev_dbg(&octeon_dev->pci_dev->dev,
2555 "setup_io_queues index:%d linfo.rxpciq.s.q_no:%d\n",
2556 q, q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002557 retval = octeon_setup_droq(octeon_dev, q_no,
2558 CFG_GET_NUM_RX_DESCS_NIC_IF
2559 (octeon_get_conf(octeon_dev),
2560 lio->ifidx),
2561 CFG_GET_NUM_RX_BUF_SIZE_NIC_IF
2562 (octeon_get_conf(octeon_dev),
2563 lio->ifidx), NULL);
2564 if (retval) {
2565 dev_err(&octeon_dev->pci_dev->dev,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002566 "%s : Runtime DROQ(RxQ) creation failed.\n",
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002567 __func__);
2568 return 1;
2569 }
2570
2571 droq = octeon_dev->droq[q_no];
2572 napi = &droq->napi;
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07002573 dev_dbg(&octeon_dev->pci_dev->dev, "netif_napi_add netdev:%llx oct:%llx pf_num:%d\n",
2574 (u64)netdev, (u64)octeon_dev, octeon_dev->pf_num);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002575 netif_napi_add(netdev, napi, liquidio_napi_poll, 64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002576
2577 /* designate a CPU for this droq */
2578 droq->cpu_id = cpu_id;
2579 cpu_id++;
2580 if (cpu_id >= cpu_id_modulus)
2581 cpu_id = 0;
2582
2583 octeon_register_droq_ops(octeon_dev, q_no, &droq_ops);
2584 }
2585
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002586 if (OCTEON_CN23XX_PF(octeon_dev)) {
2587 /* 23XX PF can receive control messages (via the first PF-owned
2588 * droq) from the firmware even if the ethX interface is down,
2589 * so that's why poll_mode must be off for the first droq.
2590 */
2591 octeon_dev->droq[0]->ops.poll_mode = 0;
2592 }
2593
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002594 /* set up IQs. */
2595 for (q = 0; q < lio->linfo.num_txpciq; q++) {
2596 num_tx_descs = CFG_GET_NUM_TX_DESCS_NIC_IF(octeon_get_conf
2597 (octeon_dev),
2598 lio->ifidx);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002599 retval = octeon_setup_iq(octeon_dev, ifidx, q,
2600 lio->linfo.txpciq[q], num_tx_descs,
2601 netdev_get_tx_queue(netdev, q));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002602 if (retval) {
2603 dev_err(&octeon_dev->pci_dev->dev,
2604 " %s : Runtime IQ(TxQ) creation failed.\n",
2605 __func__);
2606 return 1;
2607 }
Rick Farrington35ae57e2017-03-07 11:40:41 -08002608
2609 if (octeon_dev->ioq_vector) {
2610 struct octeon_ioq_vector *ioq_vector;
2611
2612 ioq_vector = &octeon_dev->ioq_vector[q];
2613 netif_set_xps_queue(netdev,
2614 &ioq_vector->affinity_mask,
2615 ioq_vector->iq_index);
2616 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002617 }
2618
2619 return 0;
2620}
2621
2622/**
2623 * \brief Poll routine for checking transmit queue status
2624 * @param work work_struct data structure
2625 */
2626static void octnet_poll_check_txq_status(struct work_struct *work)
2627{
2628 struct cavium_wk *wk = (struct cavium_wk *)work;
2629 struct lio *lio = (struct lio *)wk->ctxptr;
2630
2631 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
2632 return;
2633
2634 check_txq_status(lio);
2635 queue_delayed_work(lio->txq_status_wq.wq,
2636 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2637}
2638
2639/**
2640 * \brief Sets up the txq poll check
2641 * @param netdev network device
2642 */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002643static inline int setup_tx_poll_fn(struct net_device *netdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002644{
2645 struct lio *lio = GET_LIO(netdev);
2646 struct octeon_device *oct = lio->oct_dev;
2647
Bhaktipriya Shridhar292b9da2016-06-08 01:47:59 +05302648 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
2649 WQ_MEM_RECLAIM, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002650 if (!lio->txq_status_wq.wq) {
2651 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002652 return -1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002653 }
2654 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
2655 octnet_poll_check_txq_status);
2656 lio->txq_status_wq.wk.ctxptr = lio;
2657 queue_delayed_work(lio->txq_status_wq.wq,
2658 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002659 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002660}
2661
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002662static inline void cleanup_tx_poll_fn(struct net_device *netdev)
2663{
2664 struct lio *lio = GET_LIO(netdev);
2665
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002666 if (lio->txq_status_wq.wq) {
2667 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
2668 destroy_workqueue(lio->txq_status_wq.wq);
2669 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002670}
2671
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002672/**
2673 * \brief Net device open for LiquidIO
2674 * @param netdev network device
2675 */
2676static int liquidio_open(struct net_device *netdev)
2677{
2678 struct lio *lio = GET_LIO(netdev);
2679 struct octeon_device *oct = lio->oct_dev;
2680 struct napi_struct *napi, *n;
2681
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002682 if (oct->props[lio->ifidx].napi_enabled == 0) {
2683 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2684 napi_enable(napi);
2685
2686 oct->props[lio->ifidx].napi_enabled = 1;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002687
2688 if (OCTEON_CN23XX_PF(oct))
2689 oct->droq[0]->ops.poll_mode = 1;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002690 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002691
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002692 if ((oct->chip_id == OCTEON_CN66XX || oct->chip_id == OCTEON_CN68XX) &&
2693 ptp_enable)
2694 oct_ptp_open(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002695
2696 ifstate_set(lio, LIO_IFSTATE_RUNNING);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002697
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002698 /* Ready for link status updates */
2699 lio->intf_open = 1;
2700
2701 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
2702
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002703 if (OCTEON_CN23XX_PF(oct)) {
2704 if (!oct->msix_on)
2705 if (setup_tx_poll_fn(netdev))
2706 return -1;
2707 } else {
2708 if (setup_tx_poll_fn(netdev))
2709 return -1;
2710 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002711
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002712 start_txq(netdev);
2713
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002714 /* tell Octeon to start forwarding packets to host */
2715 send_rx_ctrl_cmd(lio, 1);
2716
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002717 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
2718 netdev->name);
2719
2720 return 0;
2721}
2722
2723/**
2724 * \brief Net device stop for LiquidIO
2725 * @param netdev network device
2726 */
2727static int liquidio_stop(struct net_device *netdev)
2728{
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002729 struct lio *lio = GET_LIO(netdev);
2730 struct octeon_device *oct = lio->oct_dev;
2731
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002732 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
2733
2734 netif_tx_disable(netdev);
2735
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002736 /* Inform that netif carrier is down */
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002737 netif_carrier_off(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002738 lio->intf_open = 0;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002739 lio->linfo.link.s.link_up = 0;
2740 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002741
Felix Manlunascb2336b2017-01-11 17:09:02 -08002742 /* Tell Octeon that nic interface is down. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002743 send_rx_ctrl_cmd(lio, 0);
2744
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002745 if (OCTEON_CN23XX_PF(oct)) {
2746 if (!oct->msix_on)
2747 cleanup_tx_poll_fn(netdev);
2748 } else {
2749 cleanup_tx_poll_fn(netdev);
2750 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002751
2752 if (lio->ptp_clock) {
2753 ptp_clock_unregister(lio->ptp_clock);
2754 lio->ptp_clock = NULL;
2755 }
2756
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002757 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002758
2759 return 0;
2760}
2761
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002762/**
2763 * \brief Converts a mask based on net device flags
2764 * @param netdev network device
2765 *
2766 * This routine generates a octnet_ifflags mask from the net device flags
2767 * received from the OS.
2768 */
2769static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
2770{
2771 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
2772
2773 if (netdev->flags & IFF_PROMISC)
2774 f |= OCTNET_IFFLAG_PROMISC;
2775
2776 if (netdev->flags & IFF_ALLMULTI)
2777 f |= OCTNET_IFFLAG_ALLMULTI;
2778
2779 if (netdev->flags & IFF_MULTICAST) {
2780 f |= OCTNET_IFFLAG_MULTICAST;
2781
2782 /* Accept all multicast addresses if there are more than we
2783 * can handle
2784 */
2785 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
2786 f |= OCTNET_IFFLAG_ALLMULTI;
2787 }
2788
2789 if (netdev->flags & IFF_BROADCAST)
2790 f |= OCTNET_IFFLAG_BROADCAST;
2791
2792 return f;
2793}
2794
2795/**
2796 * \brief Net device set_multicast_list
2797 * @param netdev network device
2798 */
2799static void liquidio_set_mcast_list(struct net_device *netdev)
2800{
2801 struct lio *lio = GET_LIO(netdev);
2802 struct octeon_device *oct = lio->oct_dev;
2803 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002804 struct netdev_hw_addr *ha;
2805 u64 *mc;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002806 int ret;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002807 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
2808
2809 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2810
2811 /* Create a ctrl pkt command to be sent to core app. */
2812 nctrl.ncmd.u64 = 0;
2813 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002814 nctrl.ncmd.s.param1 = get_new_flags(netdev);
2815 nctrl.ncmd.s.param2 = mc_count;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002816 nctrl.ncmd.s.more = mc_count;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002817 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002818 nctrl.netpndev = (u64)netdev;
2819 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2820
2821 /* copy all the addresses into the udd */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002822 mc = &nctrl.udd[0];
2823 netdev_for_each_mc_addr(ha, netdev) {
2824 *mc = 0;
2825 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
2826 /* no need to swap bytes */
2827
2828 if (++mc > &nctrl.udd[mc_count])
2829 break;
2830 }
2831
2832 /* Apparently, any activity in this call from the kernel has to
2833 * be atomic. So we won't wait for response.
2834 */
2835 nctrl.wait_time = 0;
2836
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002837 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002838 if (ret < 0) {
2839 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
2840 ret);
2841 }
2842}
2843
2844/**
2845 * \brief Net device set_mac_address
2846 * @param netdev network device
2847 */
2848static int liquidio_set_mac(struct net_device *netdev, void *p)
2849{
2850 int ret = 0;
2851 struct lio *lio = GET_LIO(netdev);
2852 struct octeon_device *oct = lio->oct_dev;
2853 struct sockaddr *addr = (struct sockaddr *)p;
2854 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002855
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002856 if (!is_valid_ether_addr(addr->sa_data))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002857 return -EADDRNOTAVAIL;
2858
2859 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2860
2861 nctrl.ncmd.u64 = 0;
2862 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002863 nctrl.ncmd.s.param1 = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002864 nctrl.ncmd.s.more = 1;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002865 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002866 nctrl.netpndev = (u64)netdev;
2867 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2868 nctrl.wait_time = 100;
2869
2870 nctrl.udd[0] = 0;
2871 /* The MAC Address is presented in network byte order. */
2872 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2873
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002874 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002875 if (ret < 0) {
2876 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2877 return -ENOMEM;
2878 }
2879 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2880 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2881
2882 return 0;
2883}
2884
2885/**
2886 * \brief Net device get_stats
2887 * @param netdev network device
2888 */
2889static struct net_device_stats *liquidio_get_stats(struct net_device *netdev)
2890{
2891 struct lio *lio = GET_LIO(netdev);
2892 struct net_device_stats *stats = &netdev->stats;
2893 struct octeon_device *oct;
2894 u64 pkts = 0, drop = 0, bytes = 0;
2895 struct oct_droq_stats *oq_stats;
2896 struct oct_iq_stats *iq_stats;
2897 int i, iq_no, oq_no;
2898
2899 oct = lio->oct_dev;
2900
2901 for (i = 0; i < lio->linfo.num_txpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002902 iq_no = lio->linfo.txpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002903 iq_stats = &oct->instr_queue[iq_no]->stats;
2904 pkts += iq_stats->tx_done;
2905 drop += iq_stats->tx_dropped;
2906 bytes += iq_stats->tx_tot_bytes;
2907 }
2908
2909 stats->tx_packets = pkts;
2910 stats->tx_bytes = bytes;
2911 stats->tx_dropped = drop;
2912
2913 pkts = 0;
2914 drop = 0;
2915 bytes = 0;
2916
2917 for (i = 0; i < lio->linfo.num_rxpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002918 oq_no = lio->linfo.rxpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002919 oq_stats = &oct->droq[oq_no]->stats;
2920 pkts += oq_stats->rx_pkts_received;
2921 drop += (oq_stats->rx_dropped +
2922 oq_stats->dropped_nodispatch +
2923 oq_stats->dropped_toomany +
2924 oq_stats->dropped_nomem);
2925 bytes += oq_stats->rx_bytes_received;
2926 }
2927
2928 stats->rx_bytes = bytes;
2929 stats->rx_packets = pkts;
2930 stats->rx_dropped = drop;
2931
2932 return stats;
2933}
2934
2935/**
2936 * \brief Net device change_mtu
2937 * @param netdev network device
2938 */
2939static int liquidio_change_mtu(struct net_device *netdev, int new_mtu)
2940{
2941 struct lio *lio = GET_LIO(netdev);
2942 struct octeon_device *oct = lio->oct_dev;
2943 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002944 int ret = 0;
2945
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002946 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2947
2948 nctrl.ncmd.u64 = 0;
2949 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MTU;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002950 nctrl.ncmd.s.param1 = new_mtu;
2951 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002952 nctrl.wait_time = 100;
2953 nctrl.netpndev = (u64)netdev;
2954 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2955
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002956 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002957 if (ret < 0) {
2958 dev_err(&oct->pci_dev->dev, "Failed to set MTU\n");
2959 return -1;
2960 }
2961
2962 lio->mtu = new_mtu;
2963
2964 return 0;
2965}
2966
2967/**
2968 * \brief Handler for SIOCSHWTSTAMP ioctl
2969 * @param netdev network device
2970 * @param ifr interface request
2971 * @param cmd command
2972 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002973static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002974{
2975 struct hwtstamp_config conf;
2976 struct lio *lio = GET_LIO(netdev);
2977
2978 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
2979 return -EFAULT;
2980
2981 if (conf.flags)
2982 return -EINVAL;
2983
2984 switch (conf.tx_type) {
2985 case HWTSTAMP_TX_ON:
2986 case HWTSTAMP_TX_OFF:
2987 break;
2988 default:
2989 return -ERANGE;
2990 }
2991
2992 switch (conf.rx_filter) {
2993 case HWTSTAMP_FILTER_NONE:
2994 break;
2995 case HWTSTAMP_FILTER_ALL:
2996 case HWTSTAMP_FILTER_SOME:
2997 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
2998 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
2999 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
3000 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
3001 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
3002 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
3003 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
3004 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
3005 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
3006 case HWTSTAMP_FILTER_PTP_V2_EVENT:
3007 case HWTSTAMP_FILTER_PTP_V2_SYNC:
3008 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
3009 conf.rx_filter = HWTSTAMP_FILTER_ALL;
3010 break;
3011 default:
3012 return -ERANGE;
3013 }
3014
3015 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
3016 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
3017
3018 else
3019 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
3020
3021 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
3022}
3023
3024/**
3025 * \brief ioctl handler
3026 * @param netdev network device
3027 * @param ifr interface request
3028 * @param cmd command
3029 */
3030static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
3031{
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08003032 struct lio *lio = GET_LIO(netdev);
3033
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003034 switch (cmd) {
3035 case SIOCSHWTSTAMP:
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08003036 if ((lio->oct_dev->chip_id == OCTEON_CN66XX ||
3037 lio->oct_dev->chip_id == OCTEON_CN68XX) && ptp_enable)
3038 return hwtstamp_ioctl(netdev, ifr);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003039 default:
3040 return -EOPNOTSUPP;
3041 }
3042}
3043
3044/**
3045 * \brief handle a Tx timestamp response
3046 * @param status response status
3047 * @param buf pointer to skb
3048 */
3049static void handle_timestamp(struct octeon_device *oct,
3050 u32 status,
3051 void *buf)
3052{
3053 struct octnet_buf_free_info *finfo;
3054 struct octeon_soft_command *sc;
3055 struct oct_timestamp_resp *resp;
3056 struct lio *lio;
3057 struct sk_buff *skb = (struct sk_buff *)buf;
3058
3059 finfo = (struct octnet_buf_free_info *)skb->cb;
3060 lio = finfo->lio;
3061 sc = finfo->sc;
3062 oct = lio->oct_dev;
3063 resp = (struct oct_timestamp_resp *)sc->virtrptr;
3064
3065 if (status != OCTEON_REQUEST_DONE) {
3066 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
3067 CVM_CAST64(status));
3068 resp->timestamp = 0;
3069 }
3070
3071 octeon_swap_8B_data(&resp->timestamp, 1);
3072
Colin Ian King19a6d152016-02-05 16:30:39 +00003073 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003074 struct skb_shared_hwtstamps ts;
3075 u64 ns = resp->timestamp;
3076
3077 netif_info(lio, tx_done, lio->netdev,
3078 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
3079 skb, (unsigned long long)ns);
3080 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
3081 skb_tstamp_tx(skb, &ts);
3082 }
3083
3084 octeon_free_soft_command(oct, sc);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003085 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003086}
3087
3088/* \brief Send a data packet that will be timestamped
3089 * @param oct octeon device
3090 * @param ndata pointer to network data
3091 * @param finfo pointer to private network data
3092 */
3093static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
3094 struct octnic_data_pkt *ndata,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003095 struct octnet_buf_free_info *finfo)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003096{
3097 int retval;
3098 struct octeon_soft_command *sc;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003099 struct lio *lio;
3100 int ring_doorbell;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003101 u32 len;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003102
3103 lio = finfo->lio;
3104
3105 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
3106 sizeof(struct oct_timestamp_resp));
3107 finfo->sc = sc;
3108
3109 if (!sc) {
3110 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
3111 return IQ_SEND_FAILED;
3112 }
3113
3114 if (ndata->reqtype == REQTYPE_NORESP_NET)
3115 ndata->reqtype = REQTYPE_RESP_NET;
3116 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
3117 ndata->reqtype = REQTYPE_RESP_NET_SG;
3118
3119 sc->callback = handle_timestamp;
3120 sc->callback_arg = finfo->skb;
3121 sc->iq_no = ndata->q_no;
3122
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003123 if (OCTEON_CN23XX_PF(oct))
3124 len = (u32)((struct octeon_instr_ih3 *)
3125 (&sc->cmd.cmd3.ih3))->dlengsz;
3126 else
3127 len = (u32)((struct octeon_instr_ih2 *)
3128 (&sc->cmd.cmd2.ih2))->dlengsz;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003129
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003130 ring_doorbell = 1;
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003131
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003132 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003133 sc, len, ndata->reqtype);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003134
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003135 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003136 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
3137 retval);
3138 octeon_free_soft_command(oct, sc);
3139 } else {
3140 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
3141 }
3142
3143 return retval;
3144}
3145
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003146/** \brief Transmit networks packets to the Octeon interface
3147 * @param skbuff skbuff struct to be passed to network layer.
3148 * @param netdev pointer to network device
3149 * @returns whether the packet was transmitted to the device okay or not
3150 * (NETDEV_TX_OK or NETDEV_TX_BUSY)
3151 */
3152static int liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
3153{
3154 struct lio *lio;
3155 struct octnet_buf_free_info *finfo;
3156 union octnic_cmd_setup cmdsetup;
3157 struct octnic_data_pkt ndata;
3158 struct octeon_device *oct;
3159 struct oct_iq_stats *stats;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003160 struct octeon_instr_irh *irh;
3161 union tx_info *tx_info;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003162 int status = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003163 int q_idx = 0, iq_no = 0;
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003164 int j;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003165 u64 dptr = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003166 u32 tag = 0;
3167
3168 lio = GET_LIO(netdev);
3169 oct = lio->oct_dev;
3170
3171 if (netif_is_multiqueue(netdev)) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003172 q_idx = skb->queue_mapping;
3173 q_idx = (q_idx % (lio->linfo.num_txpciq));
3174 tag = q_idx;
3175 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003176 } else {
3177 iq_no = lio->txq;
3178 }
3179
3180 stats = &oct->instr_queue[iq_no]->stats;
3181
3182 /* Check for all conditions in which the current packet cannot be
3183 * transmitted.
3184 */
3185 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003186 (!lio->linfo.link.s.link_up) ||
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003187 (skb->len <= 0)) {
3188 netif_info(lio, tx_err, lio->netdev,
3189 "Transmit failed link_status : %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003190 lio->linfo.link.s.link_up);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003191 goto lio_xmit_failed;
3192 }
3193
3194 /* Use space in skb->cb to store info used to unmap and
3195 * free the buffers.
3196 */
3197 finfo = (struct octnet_buf_free_info *)skb->cb;
3198 finfo->lio = lio;
3199 finfo->skb = skb;
3200 finfo->sc = NULL;
3201
3202 /* Prepare the attributes for the data to be passed to OSI. */
3203 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
3204
3205 ndata.buf = (void *)finfo;
3206
3207 ndata.q_no = iq_no;
3208
3209 if (netif_is_multiqueue(netdev)) {
3210 if (octnet_iq_is_full(oct, ndata.q_no)) {
3211 /* defer sending if queue is full */
3212 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
3213 ndata.q_no);
3214 stats->tx_iq_busy++;
3215 return NETDEV_TX_BUSY;
3216 }
3217 } else {
3218 if (octnet_iq_is_full(oct, lio->txq)) {
3219 /* defer sending if queue is full */
3220 stats->tx_iq_busy++;
3221 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003222 lio->txq);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003223 return NETDEV_TX_BUSY;
3224 }
3225 }
3226 /* pr_info(" XMIT - valid Qs: %d, 1st Q no: %d, cpu: %d, q_no:%d\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003227 * lio->linfo.num_txpciq, lio->txq, cpu, ndata.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003228 */
3229
3230 ndata.datasize = skb->len;
3231
3232 cmdsetup.u64 = 0;
Raghu Vatsavayi7275ebf2016-06-14 16:54:49 -07003233 cmdsetup.s.iq_no = iq_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003234
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003235 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3236 if (skb->encapsulation) {
3237 cmdsetup.s.tnl_csum = 1;
3238 stats->tx_vxlan++;
3239 } else {
3240 cmdsetup.s.transport_csum = 1;
3241 }
3242 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003243 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
3244 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
3245 cmdsetup.s.timestamp = 1;
3246 }
3247
3248 if (skb_shinfo(skb)->nr_frags == 0) {
3249 cmdsetup.s.u.datasize = skb->len;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003250 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003251
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003252 /* Offload checksum calculation for TCP/UDP packets */
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003253 dptr = dma_map_single(&oct->pci_dev->dev,
3254 skb->data,
3255 skb->len,
3256 DMA_TO_DEVICE);
3257 if (dma_mapping_error(&oct->pci_dev->dev, dptr)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003258 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
3259 __func__);
3260 return NETDEV_TX_BUSY;
3261 }
3262
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003263 if (OCTEON_CN23XX_PF(oct))
3264 ndata.cmd.cmd3.dptr = dptr;
3265 else
3266 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003267 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003268 ndata.reqtype = REQTYPE_NORESP_NET;
3269
3270 } else {
3271 int i, frags;
3272 struct skb_frag_struct *frag;
3273 struct octnic_gather *g;
3274
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003275 spin_lock(&lio->glist_lock[q_idx]);
3276 g = (struct octnic_gather *)
3277 list_delete_head(&lio->glist[q_idx]);
3278 spin_unlock(&lio->glist_lock[q_idx]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003279
3280 if (!g) {
3281 netif_info(lio, tx_err, lio->netdev,
3282 "Transmit scatter gather: glist null!\n");
3283 goto lio_xmit_failed;
3284 }
3285
3286 cmdsetup.s.gather = 1;
3287 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003288 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003289
3290 memset(g->sg, 0, g->sg_size);
3291
3292 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
3293 skb->data,
3294 (skb->len - skb->data_len),
3295 DMA_TO_DEVICE);
3296 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
3297 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
3298 __func__);
3299 return NETDEV_TX_BUSY;
3300 }
3301 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
3302
3303 frags = skb_shinfo(skb)->nr_frags;
3304 i = 1;
3305 while (frags--) {
3306 frag = &skb_shinfo(skb)->frags[i - 1];
3307
3308 g->sg[(i >> 2)].ptr[(i & 3)] =
3309 dma_map_page(&oct->pci_dev->dev,
3310 frag->page.p,
3311 frag->page_offset,
3312 frag->size,
3313 DMA_TO_DEVICE);
3314
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003315 if (dma_mapping_error(&oct->pci_dev->dev,
3316 g->sg[i >> 2].ptr[i & 3])) {
3317 dma_unmap_single(&oct->pci_dev->dev,
3318 g->sg[0].ptr[0],
3319 skb->len - skb->data_len,
3320 DMA_TO_DEVICE);
3321 for (j = 1; j < i; j++) {
3322 frag = &skb_shinfo(skb)->frags[j - 1];
3323 dma_unmap_page(&oct->pci_dev->dev,
3324 g->sg[j >> 2].ptr[j & 3],
3325 frag->size,
3326 DMA_TO_DEVICE);
3327 }
3328 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
3329 __func__);
3330 return NETDEV_TX_BUSY;
3331 }
3332
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003333 add_sg_size(&g->sg[(i >> 2)], frag->size, (i & 3));
3334 i++;
3335 }
3336
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003337 dptr = g->sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003338
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003339 if (OCTEON_CN23XX_PF(oct))
3340 ndata.cmd.cmd3.dptr = dptr;
3341 else
3342 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003343 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003344 finfo->g = g;
3345
3346 ndata.reqtype = REQTYPE_NORESP_NET_SG;
3347 }
3348
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003349 if (OCTEON_CN23XX_PF(oct)) {
3350 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd3.irh;
3351 tx_info = (union tx_info *)&ndata.cmd.cmd3.ossp[0];
3352 } else {
3353 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd2.irh;
3354 tx_info = (union tx_info *)&ndata.cmd.cmd2.ossp[0];
3355 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003356
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003357 if (skb_shinfo(skb)->gso_size) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003358 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
3359 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003360 stats->tx_gso++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003361 }
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003362
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07003363 /* HW insert VLAN tag */
3364 if (skb_vlan_tag_present(skb)) {
3365 irh->priority = skb_vlan_tag_get(skb) >> 13;
3366 irh->vlan = skb_vlan_tag_get(skb) & 0xfff;
3367 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003368
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003369 if (unlikely(cmdsetup.s.timestamp))
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003370 status = send_nic_timestamp_pkt(oct, &ndata, finfo);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003371 else
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003372 status = octnet_send_nic_data_pkt(oct, &ndata);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003373 if (status == IQ_SEND_FAILED)
3374 goto lio_xmit_failed;
3375
3376 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
3377
3378 if (status == IQ_SEND_STOP)
3379 stop_q(lio->netdev, q_idx);
3380
Florian Westphal860e9532016-05-03 16:33:13 +02003381 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003382
Satanand Burla80c8eae2017-01-26 11:52:35 -08003383 if (tx_info->s.gso_segs)
3384 stats->tx_done += tx_info->s.gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003385 else
3386 stats->tx_done++;
Satanand Burla80c8eae2017-01-26 11:52:35 -08003387 stats->tx_tot_bytes += ndata.datasize;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003388
3389 return NETDEV_TX_OK;
3390
3391lio_xmit_failed:
3392 stats->tx_dropped++;
3393 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
3394 iq_no, stats->tx_dropped);
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003395 if (dptr)
3396 dma_unmap_single(&oct->pci_dev->dev, dptr,
3397 ndata.datasize, DMA_TO_DEVICE);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003398 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003399 return NETDEV_TX_OK;
3400}
3401
3402/** \brief Network device Tx timeout
3403 * @param netdev pointer to network device
3404 */
3405static void liquidio_tx_timeout(struct net_device *netdev)
3406{
3407 struct lio *lio;
3408
3409 lio = GET_LIO(netdev);
3410
3411 netif_info(lio, tx_err, lio->netdev,
3412 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
3413 netdev->stats.tx_dropped);
Florian Westphal860e9532016-05-03 16:33:13 +02003414 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003415 txqs_wake(netdev);
3416}
3417
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003418static int liquidio_vlan_rx_add_vid(struct net_device *netdev,
3419 __be16 proto __attribute__((unused)),
3420 u16 vid)
3421{
3422 struct lio *lio = GET_LIO(netdev);
3423 struct octeon_device *oct = lio->oct_dev;
3424 struct octnic_ctrl_pkt nctrl;
3425 int ret = 0;
3426
3427 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3428
3429 nctrl.ncmd.u64 = 0;
3430 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3431 nctrl.ncmd.s.param1 = vid;
3432 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3433 nctrl.wait_time = 100;
3434 nctrl.netpndev = (u64)netdev;
3435 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3436
3437 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3438 if (ret < 0) {
3439 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3440 ret);
3441 }
3442
3443 return ret;
3444}
3445
3446static int liquidio_vlan_rx_kill_vid(struct net_device *netdev,
3447 __be16 proto __attribute__((unused)),
3448 u16 vid)
3449{
3450 struct lio *lio = GET_LIO(netdev);
3451 struct octeon_device *oct = lio->oct_dev;
3452 struct octnic_ctrl_pkt nctrl;
3453 int ret = 0;
3454
3455 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3456
3457 nctrl.ncmd.u64 = 0;
3458 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3459 nctrl.ncmd.s.param1 = vid;
3460 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3461 nctrl.wait_time = 100;
3462 nctrl.netpndev = (u64)netdev;
3463 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3464
3465 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3466 if (ret < 0) {
3467 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3468 ret);
3469 }
3470 return ret;
3471}
3472
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003473/** Sending command to enable/disable RX checksum offload
3474 * @param netdev pointer to network device
3475 * @param command OCTNET_CMD_TNL_RX_CSUM_CTL
3476 * @param rx_cmd_bit OCTNET_CMD_RXCSUM_ENABLE/
3477 * OCTNET_CMD_RXCSUM_DISABLE
3478 * @returns SUCCESS or FAILURE
3479 */
Nicholas Mc Guirec41419b2016-08-22 17:52:00 +02003480static int liquidio_set_rxcsum_command(struct net_device *netdev, int command,
3481 u8 rx_cmd)
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003482{
3483 struct lio *lio = GET_LIO(netdev);
3484 struct octeon_device *oct = lio->oct_dev;
3485 struct octnic_ctrl_pkt nctrl;
3486 int ret = 0;
3487
3488 nctrl.ncmd.u64 = 0;
3489 nctrl.ncmd.s.cmd = command;
3490 nctrl.ncmd.s.param1 = rx_cmd;
3491 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3492 nctrl.wait_time = 100;
3493 nctrl.netpndev = (u64)netdev;
3494 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3495
3496 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3497 if (ret < 0) {
3498 dev_err(&oct->pci_dev->dev,
3499 "DEVFLAGS RXCSUM change failed in core(ret:0x%x)\n",
3500 ret);
3501 }
3502 return ret;
3503}
3504
3505/** Sending command to add/delete VxLAN UDP port to firmware
3506 * @param netdev pointer to network device
3507 * @param command OCTNET_CMD_VXLAN_PORT_CONFIG
3508 * @param vxlan_port VxLAN port to be added or deleted
3509 * @param vxlan_cmd_bit OCTNET_CMD_VXLAN_PORT_ADD,
3510 * OCTNET_CMD_VXLAN_PORT_DEL
3511 * @returns SUCCESS or FAILURE
3512 */
3513static int liquidio_vxlan_port_command(struct net_device *netdev, int command,
3514 u16 vxlan_port, u8 vxlan_cmd_bit)
3515{
3516 struct lio *lio = GET_LIO(netdev);
3517 struct octeon_device *oct = lio->oct_dev;
3518 struct octnic_ctrl_pkt nctrl;
3519 int ret = 0;
3520
3521 nctrl.ncmd.u64 = 0;
3522 nctrl.ncmd.s.cmd = command;
3523 nctrl.ncmd.s.more = vxlan_cmd_bit;
3524 nctrl.ncmd.s.param1 = vxlan_port;
3525 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3526 nctrl.wait_time = 100;
3527 nctrl.netpndev = (u64)netdev;
3528 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3529
3530 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3531 if (ret < 0) {
3532 dev_err(&oct->pci_dev->dev,
3533 "VxLAN port add/delete failed in core (ret:0x%x)\n",
3534 ret);
3535 }
3536 return ret;
3537}
3538
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003539/** \brief Net device fix features
3540 * @param netdev pointer to network device
3541 * @param request features requested
3542 * @returns updated features list
3543 */
3544static netdev_features_t liquidio_fix_features(struct net_device *netdev,
3545 netdev_features_t request)
3546{
3547 struct lio *lio = netdev_priv(netdev);
3548
3549 if ((request & NETIF_F_RXCSUM) &&
3550 !(lio->dev_capability & NETIF_F_RXCSUM))
3551 request &= ~NETIF_F_RXCSUM;
3552
3553 if ((request & NETIF_F_HW_CSUM) &&
3554 !(lio->dev_capability & NETIF_F_HW_CSUM))
3555 request &= ~NETIF_F_HW_CSUM;
3556
3557 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
3558 request &= ~NETIF_F_TSO;
3559
3560 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
3561 request &= ~NETIF_F_TSO6;
3562
3563 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
3564 request &= ~NETIF_F_LRO;
3565
3566 /*Disable LRO if RXCSUM is off */
3567 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
3568 (lio->dev_capability & NETIF_F_LRO))
3569 request &= ~NETIF_F_LRO;
3570
3571 return request;
3572}
3573
3574/** \brief Net device set features
3575 * @param netdev pointer to network device
3576 * @param features features to enable/disable
3577 */
3578static int liquidio_set_features(struct net_device *netdev,
3579 netdev_features_t features)
3580{
3581 struct lio *lio = netdev_priv(netdev);
3582
3583 if (!((netdev->features ^ features) & NETIF_F_LRO))
3584 return 0;
3585
3586 if ((features & NETIF_F_LRO) && (lio->dev_capability & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003587 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3588 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003589 else if (!(features & NETIF_F_LRO) &&
3590 (lio->dev_capability & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003591 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE,
3592 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003593
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003594 /* Sending command to firmware to enable/disable RX checksum
3595 * offload settings using ethtool
3596 */
3597 if (!(netdev->features & NETIF_F_RXCSUM) &&
3598 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3599 (features & NETIF_F_RXCSUM))
3600 liquidio_set_rxcsum_command(netdev,
3601 OCTNET_CMD_TNL_RX_CSUM_CTL,
3602 OCTNET_CMD_RXCSUM_ENABLE);
3603 else if ((netdev->features & NETIF_F_RXCSUM) &&
3604 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3605 !(features & NETIF_F_RXCSUM))
3606 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
3607 OCTNET_CMD_RXCSUM_DISABLE);
3608
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003609 return 0;
3610}
3611
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003612static void liquidio_add_vxlan_port(struct net_device *netdev,
3613 struct udp_tunnel_info *ti)
3614{
3615 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3616 return;
3617
3618 liquidio_vxlan_port_command(netdev,
3619 OCTNET_CMD_VXLAN_PORT_CONFIG,
3620 htons(ti->port),
3621 OCTNET_CMD_VXLAN_PORT_ADD);
3622}
3623
3624static void liquidio_del_vxlan_port(struct net_device *netdev,
3625 struct udp_tunnel_info *ti)
3626{
3627 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3628 return;
3629
3630 liquidio_vxlan_port_command(netdev,
3631 OCTNET_CMD_VXLAN_PORT_CONFIG,
3632 htons(ti->port),
3633 OCTNET_CMD_VXLAN_PORT_DEL);
3634}
3635
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003636static int __liquidio_set_vf_mac(struct net_device *netdev, int vfidx,
3637 u8 *mac, bool is_admin_assigned)
3638{
3639 struct lio *lio = GET_LIO(netdev);
3640 struct octeon_device *oct = lio->oct_dev;
3641 struct octnic_ctrl_pkt nctrl;
3642
3643 if (!is_valid_ether_addr(mac))
3644 return -EINVAL;
3645
3646 if (vfidx < 0 || vfidx >= oct->sriov_info.max_vfs)
3647 return -EINVAL;
3648
3649 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3650
3651 nctrl.ncmd.u64 = 0;
3652 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
3653 /* vfidx is 0 based, but vf_num (param1) is 1 based */
3654 nctrl.ncmd.s.param1 = vfidx + 1;
3655 nctrl.ncmd.s.param2 = (is_admin_assigned ? 1 : 0);
3656 nctrl.ncmd.s.more = 1;
3657 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3658 nctrl.cb_fn = 0;
3659 nctrl.wait_time = LIO_CMD_WAIT_TM;
3660
3661 nctrl.udd[0] = 0;
3662 /* The MAC Address is presented in network byte order. */
3663 ether_addr_copy((u8 *)&nctrl.udd[0] + 2, mac);
3664
3665 oct->sriov_info.vf_macaddr[vfidx] = nctrl.udd[0];
3666
3667 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3668
3669 return 0;
3670}
3671
3672static int liquidio_set_vf_mac(struct net_device *netdev, int vfidx, u8 *mac)
3673{
3674 struct lio *lio = GET_LIO(netdev);
3675 struct octeon_device *oct = lio->oct_dev;
3676 int retval;
3677
3678 retval = __liquidio_set_vf_mac(netdev, vfidx, mac, true);
3679 if (!retval)
3680 cn23xx_tell_vf_its_macaddr_changed(oct, vfidx, mac);
3681
3682 return retval;
3683}
3684
3685static int liquidio_set_vf_vlan(struct net_device *netdev, int vfidx,
3686 u16 vlan, u8 qos, __be16 vlan_proto)
3687{
3688 struct lio *lio = GET_LIO(netdev);
3689 struct octeon_device *oct = lio->oct_dev;
3690 struct octnic_ctrl_pkt nctrl;
3691 u16 vlantci;
3692
3693 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3694 return -EINVAL;
3695
3696 if (vlan_proto != htons(ETH_P_8021Q))
3697 return -EPROTONOSUPPORT;
3698
3699 if (vlan >= VLAN_N_VID || qos > 7)
3700 return -EINVAL;
3701
3702 if (vlan)
3703 vlantci = vlan | (u16)qos << VLAN_PRIO_SHIFT;
3704 else
3705 vlantci = 0;
3706
3707 if (oct->sriov_info.vf_vlantci[vfidx] == vlantci)
3708 return 0;
3709
3710 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3711
3712 if (vlan)
3713 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3714 else
3715 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3716
3717 nctrl.ncmd.s.param1 = vlantci;
3718 nctrl.ncmd.s.param2 =
3719 vfidx + 1; /* vfidx is 0 based, but vf_num (param2) is 1 based */
3720 nctrl.ncmd.s.more = 0;
3721 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3722 nctrl.cb_fn = 0;
3723 nctrl.wait_time = LIO_CMD_WAIT_TM;
3724
3725 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3726
3727 oct->sriov_info.vf_vlantci[vfidx] = vlantci;
3728
3729 return 0;
3730}
3731
3732static int liquidio_get_vf_config(struct net_device *netdev, int vfidx,
3733 struct ifla_vf_info *ivi)
3734{
3735 struct lio *lio = GET_LIO(netdev);
3736 struct octeon_device *oct = lio->oct_dev;
3737 u8 *macaddr;
3738
3739 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3740 return -EINVAL;
3741
3742 ivi->vf = vfidx;
3743 macaddr = 2 + (u8 *)&oct->sriov_info.vf_macaddr[vfidx];
3744 ether_addr_copy(&ivi->mac[0], macaddr);
3745 ivi->vlan = oct->sriov_info.vf_vlantci[vfidx] & VLAN_VID_MASK;
3746 ivi->qos = oct->sriov_info.vf_vlantci[vfidx] >> VLAN_PRIO_SHIFT;
3747 ivi->linkstate = oct->sriov_info.vf_linkstate[vfidx];
3748 return 0;
3749}
3750
3751static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
3752 int linkstate)
3753{
3754 struct lio *lio = GET_LIO(netdev);
3755 struct octeon_device *oct = lio->oct_dev;
3756 struct octnic_ctrl_pkt nctrl;
3757
3758 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3759 return -EINVAL;
3760
3761 if (oct->sriov_info.vf_linkstate[vfidx] == linkstate)
3762 return 0;
3763
3764 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3765 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_VF_LINKSTATE;
3766 nctrl.ncmd.s.param1 =
3767 vfidx + 1; /* vfidx is 0 based, but vf_num (param1) is 1 based */
3768 nctrl.ncmd.s.param2 = linkstate;
3769 nctrl.ncmd.s.more = 0;
3770 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3771 nctrl.cb_fn = 0;
3772 nctrl.wait_time = LIO_CMD_WAIT_TM;
3773
3774 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3775
3776 oct->sriov_info.vf_linkstate[vfidx] = linkstate;
3777
3778 return 0;
3779}
3780
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003781static const struct net_device_ops lionetdevops = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003782 .ndo_open = liquidio_open,
3783 .ndo_stop = liquidio_stop,
3784 .ndo_start_xmit = liquidio_xmit,
3785 .ndo_get_stats = liquidio_get_stats,
3786 .ndo_set_mac_address = liquidio_set_mac,
3787 .ndo_set_rx_mode = liquidio_set_mcast_list,
3788 .ndo_tx_timeout = liquidio_tx_timeout,
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003789
3790 .ndo_vlan_rx_add_vid = liquidio_vlan_rx_add_vid,
3791 .ndo_vlan_rx_kill_vid = liquidio_vlan_rx_kill_vid,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003792 .ndo_change_mtu = liquidio_change_mtu,
3793 .ndo_do_ioctl = liquidio_ioctl,
3794 .ndo_fix_features = liquidio_fix_features,
3795 .ndo_set_features = liquidio_set_features,
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003796 .ndo_udp_tunnel_add = liquidio_add_vxlan_port,
3797 .ndo_udp_tunnel_del = liquidio_del_vxlan_port,
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003798 .ndo_set_vf_mac = liquidio_set_vf_mac,
3799 .ndo_set_vf_vlan = liquidio_set_vf_vlan,
3800 .ndo_get_vf_config = liquidio_get_vf_config,
3801 .ndo_set_vf_link_state = liquidio_set_vf_link_state,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003802};
3803
3804/** \brief Entry point for the liquidio module
3805 */
3806static int __init liquidio_init(void)
3807{
3808 int i;
3809 struct handshake *hs;
3810
3811 init_completion(&first_stage);
3812
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003813 octeon_init_device_list(OCTEON_CONFIG_TYPE_DEFAULT);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003814
3815 if (liquidio_init_pci())
3816 return -EINVAL;
3817
3818 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3819
3820 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3821 hs = &handshake[i];
3822 if (hs->pci_dev) {
3823 wait_for_completion(&hs->init);
3824 if (!hs->init_ok) {
3825 /* init handshake failed */
3826 dev_err(&hs->pci_dev->dev,
3827 "Failed to init device\n");
3828 liquidio_deinit_pci();
3829 return -EIO;
3830 }
3831 }
3832 }
3833
3834 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3835 hs = &handshake[i];
3836 if (hs->pci_dev) {
3837 wait_for_completion_timeout(&hs->started,
3838 msecs_to_jiffies(30000));
3839 if (!hs->started_ok) {
3840 /* starter handshake failed */
3841 dev_err(&hs->pci_dev->dev,
3842 "Firmware failed to start\n");
3843 liquidio_deinit_pci();
3844 return -EIO;
3845 }
3846 }
3847 }
3848
3849 return 0;
3850}
3851
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -07003852static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003853{
3854 struct octeon_device *oct = (struct octeon_device *)buf;
3855 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003856 int gmxport = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003857 union oct_link_status *ls;
3858 int i;
3859
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003860 if (recv_pkt->buffer_size[0] != sizeof(*ls)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003861 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3862 recv_pkt->buffer_size[0],
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003863 recv_pkt->rh.r_nic_info.gmxport);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003864 goto nic_info_err;
3865 }
3866
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003867 gmxport = recv_pkt->rh.r_nic_info.gmxport;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003868 ls = (union oct_link_status *)get_rbd(recv_pkt->buffer_ptr[0]);
3869
3870 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003871 for (i = 0; i < oct->ifcount; i++) {
3872 if (oct->props[i].gmxport == gmxport) {
3873 update_link_status(oct->props[i].netdev, ls);
3874 break;
3875 }
3876 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003877
3878nic_info_err:
3879 for (i = 0; i < recv_pkt->buffer_count; i++)
3880 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3881 octeon_free_recv_info(recv_info);
3882 return 0;
3883}
3884
3885/**
3886 * \brief Setup network interfaces
3887 * @param octeon_dev octeon device
3888 *
3889 * Called during init time for each device. It assumes the NIC
3890 * is already up and running. The link information for each
3891 * interface is passed in link_info.
3892 */
3893static int setup_nic_devices(struct octeon_device *octeon_dev)
3894{
3895 struct lio *lio = NULL;
3896 struct net_device *netdev;
3897 u8 mac[6], i, j;
3898 struct octeon_soft_command *sc;
3899 struct liquidio_if_cfg_context *ctx;
3900 struct liquidio_if_cfg_resp *resp;
3901 struct octdev_props *props;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003902 int retval, num_iqueues, num_oqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003903 union oct_nic_if_cfg if_cfg;
3904 unsigned int base_queue;
3905 unsigned int gmx_port_id;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003906 u32 resp_size, ctx_size, data_size;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003907 u32 ifidx_or_pfnum;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003908 struct lio_version *vdata;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003909
3910 /* This is to handle link status changes */
3911 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3912 OPCODE_NIC_INFO,
3913 lio_nic_info, octeon_dev);
3914
3915 /* REQTYPE_RESP_NET and REQTYPE_SOFT_COMMAND do not have free functions.
3916 * They are handled directly.
3917 */
3918 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
3919 free_netbuf);
3920
3921 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
3922 free_netsgbuf);
3923
3924 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
3925 free_netsgbuf_with_resp);
3926
3927 for (i = 0; i < octeon_dev->ifcount; i++) {
3928 resp_size = sizeof(struct liquidio_if_cfg_resp);
3929 ctx_size = sizeof(struct liquidio_if_cfg_context);
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003930 data_size = sizeof(struct lio_version);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003931 sc = (struct octeon_soft_command *)
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003932 octeon_alloc_soft_command(octeon_dev, data_size,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003933 resp_size, ctx_size);
3934 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
3935 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003936 vdata = (struct lio_version *)sc->virtdptr;
3937
3938 *((u64 *)vdata) = 0;
3939 vdata->major = cpu_to_be16(LIQUIDIO_BASE_MAJOR_VERSION);
3940 vdata->minor = cpu_to_be16(LIQUIDIO_BASE_MINOR_VERSION);
3941 vdata->micro = cpu_to_be16(LIQUIDIO_BASE_MICRO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003942
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07003943 if (OCTEON_CN23XX_PF(octeon_dev)) {
3944 num_iqueues = octeon_dev->sriov_info.num_pf_rings;
3945 num_oqueues = octeon_dev->sriov_info.num_pf_rings;
3946 base_queue = octeon_dev->sriov_info.pf_srn;
3947
3948 gmx_port_id = octeon_dev->pf_num;
3949 ifidx_or_pfnum = octeon_dev->pf_num;
3950 } else {
3951 num_iqueues = CFG_GET_NUM_TXQS_NIC_IF(
3952 octeon_get_conf(octeon_dev), i);
3953 num_oqueues = CFG_GET_NUM_RXQS_NIC_IF(
3954 octeon_get_conf(octeon_dev), i);
3955 base_queue = CFG_GET_BASE_QUE_NIC_IF(
3956 octeon_get_conf(octeon_dev), i);
3957 gmx_port_id = CFG_GET_GMXID_NIC_IF(
3958 octeon_get_conf(octeon_dev), i);
3959 ifidx_or_pfnum = i;
3960 }
Raghu Vatsavayi3dcef2c2016-07-03 13:56:51 -07003961
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003962 dev_dbg(&octeon_dev->pci_dev->dev,
3963 "requesting config for interface %d, iqs %d, oqs %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003964 ifidx_or_pfnum, num_iqueues, num_oqueues);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07003965 WRITE_ONCE(ctx->cond, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003966 ctx->octeon_id = lio_get_device_id(octeon_dev);
3967 init_waitqueue_head(&ctx->wc);
3968
3969 if_cfg.u64 = 0;
3970 if_cfg.s.num_iqueues = num_iqueues;
3971 if_cfg.s.num_oqueues = num_oqueues;
3972 if_cfg.s.base_queue = base_queue;
3973 if_cfg.s.gmx_port_id = gmx_port_id;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003974
3975 sc->iq_no = 0;
3976
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003977 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003978 OPCODE_NIC_IF_CFG, 0,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003979 if_cfg.u64, 0);
3980
3981 sc->callback = if_cfg_callback;
3982 sc->callback_arg = sc;
Raghu Vatsavayi55893a62016-07-03 13:56:50 -07003983 sc->wait_time = 3000;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003984
3985 retval = octeon_send_soft_command(octeon_dev, sc);
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003986 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003987 dev_err(&octeon_dev->pci_dev->dev,
3988 "iq/oq config failed status: %x\n",
3989 retval);
3990 /* Soft instr is freed by driver in case of failure. */
3991 goto setup_nic_dev_fail;
3992 }
3993
3994 /* Sleep on a wait queue till the cond flag indicates that the
3995 * response arrived or timed-out.
3996 */
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07003997 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR) {
3998 dev_err(&octeon_dev->pci_dev->dev, "Wait interrupted\n");
3999 goto setup_nic_wait_intr;
4000 }
4001
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004002 retval = resp->status;
4003 if (retval) {
4004 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
4005 goto setup_nic_dev_fail;
4006 }
4007
4008 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
4009 (sizeof(struct liquidio_if_cfg_info)) >> 3);
4010
4011 num_iqueues = hweight64(resp->cfg_info.iqmask);
4012 num_oqueues = hweight64(resp->cfg_info.oqmask);
4013
4014 if (!(num_iqueues) || !(num_oqueues)) {
4015 dev_err(&octeon_dev->pci_dev->dev,
4016 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
4017 resp->cfg_info.iqmask,
4018 resp->cfg_info.oqmask);
4019 goto setup_nic_dev_fail;
4020 }
4021 dev_dbg(&octeon_dev->pci_dev->dev,
4022 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d\n",
4023 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
4024 num_iqueues, num_oqueues);
4025 netdev = alloc_etherdev_mq(LIO_SIZE, num_iqueues);
4026
4027 if (!netdev) {
4028 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
4029 goto setup_nic_dev_fail;
4030 }
4031
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004032 SET_NETDEV_DEV(netdev, &octeon_dev->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004033
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004034 /* Associate the routines that will handle different
4035 * netdev tasks.
4036 */
4037 netdev->netdev_ops = &lionetdevops;
4038
4039 lio = GET_LIO(netdev);
4040
4041 memset(lio, 0, sizeof(struct lio));
4042
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004043 lio->ifidx = ifidx_or_pfnum;
4044
4045 props = &octeon_dev->props[i];
4046 props->gmxport = resp->cfg_info.linfo.gmxport;
4047 props->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004048
4049 lio->linfo.num_rxpciq = num_oqueues;
4050 lio->linfo.num_txpciq = num_iqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004051 for (j = 0; j < num_oqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004052 lio->linfo.rxpciq[j].u64 =
4053 resp->cfg_info.linfo.rxpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004054 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004055 for (j = 0; j < num_iqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004056 lio->linfo.txpciq[j].u64 =
4057 resp->cfg_info.linfo.txpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004058 }
4059 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
4060 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
4061 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
4062
4063 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
4064
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07004065 if (OCTEON_CN23XX_PF(octeon_dev) ||
4066 OCTEON_CN6XXX(octeon_dev)) {
4067 lio->dev_capability = NETIF_F_HIGHDMA
4068 | NETIF_F_IP_CSUM
4069 | NETIF_F_IPV6_CSUM
4070 | NETIF_F_SG | NETIF_F_RXCSUM
4071 | NETIF_F_GRO
4072 | NETIF_F_TSO | NETIF_F_TSO6
4073 | NETIF_F_LRO;
4074 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004075 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
4076
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004077 /* Copy of transmit encapsulation capabilities:
4078 * TSO, TSO6, Checksums for this device
4079 */
4080 lio->enc_dev_capability = NETIF_F_IP_CSUM
4081 | NETIF_F_IPV6_CSUM
4082 | NETIF_F_GSO_UDP_TUNNEL
4083 | NETIF_F_HW_CSUM | NETIF_F_SG
4084 | NETIF_F_RXCSUM
4085 | NETIF_F_TSO | NETIF_F_TSO6
4086 | NETIF_F_LRO;
4087
4088 netdev->hw_enc_features = (lio->enc_dev_capability &
4089 ~NETIF_F_LRO);
4090
4091 lio->dev_capability |= NETIF_F_GSO_UDP_TUNNEL;
4092
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004093 netdev->vlan_features = lio->dev_capability;
4094 /* Add any unchangeable hw features */
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004095 lio->dev_capability |= NETIF_F_HW_VLAN_CTAG_FILTER |
4096 NETIF_F_HW_VLAN_CTAG_RX |
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004097 NETIF_F_HW_VLAN_CTAG_TX;
4098
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004099 netdev->features = (lio->dev_capability & ~NETIF_F_LRO);
4100
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004101 netdev->hw_features = lio->dev_capability;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004102 /*HW_VLAN_RX and HW_VLAN_FILTER is always on*/
4103 netdev->hw_features = netdev->hw_features &
4104 ~NETIF_F_HW_VLAN_CTAG_RX;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004105
Jarod Wilson109cc162016-10-17 15:54:13 -04004106 /* MTU range: 68 - 16000 */
4107 netdev->min_mtu = LIO_MIN_MTU_SIZE;
4108 netdev->max_mtu = LIO_MAX_MTU_SIZE;
4109
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004110 /* Point to the properties for octeon device to which this
4111 * interface belongs.
4112 */
4113 lio->oct_dev = octeon_dev;
4114 lio->octprops = props;
4115 lio->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004116
4117 dev_dbg(&octeon_dev->pci_dev->dev,
4118 "if%d gmx: %d hw_addr: 0x%llx\n", i,
4119 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
4120
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004121 for (j = 0; j < octeon_dev->sriov_info.max_vfs; j++) {
4122 u8 vfmac[ETH_ALEN];
4123
4124 random_ether_addr(&vfmac[0]);
4125 if (__liquidio_set_vf_mac(netdev, j,
4126 &vfmac[0], false)) {
4127 dev_err(&octeon_dev->pci_dev->dev,
4128 "Error setting VF%d MAC address\n",
4129 j);
4130 goto setup_nic_dev_fail;
4131 }
4132 }
4133
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004134 /* 64-bit swap required on LE machines */
4135 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
4136 for (j = 0; j < 6; j++)
4137 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
4138
4139 /* Copy MAC Address to OS network device structure */
4140
4141 ether_addr_copy(netdev->dev_addr, mac);
4142
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004143 /* By default all interfaces on a single Octeon uses the same
4144 * tx and rx queues
4145 */
4146 lio->txq = lio->linfo.txpciq[0].s.q_no;
4147 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004148 if (setup_io_queues(octeon_dev, i)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004149 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
4150 goto setup_nic_dev_fail;
4151 }
4152
4153 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
4154
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004155 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
4156 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
4157
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07004158 if (setup_glists(octeon_dev, lio, num_iqueues)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004159 dev_err(&octeon_dev->pci_dev->dev,
4160 "Gather list allocation failed\n");
4161 goto setup_nic_dev_fail;
4162 }
4163
4164 /* Register ethtool support */
4165 liquidio_set_ethtool_ops(netdev);
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004166 if (lio->oct_dev->chip_id == OCTEON_CN23XX_PF_VID)
4167 octeon_dev->priv_flags = OCT_PRIV_FLAG_DEFAULT;
4168 else
4169 octeon_dev->priv_flags = 0x0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004170
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004171 if (netdev->features & NETIF_F_LRO)
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07004172 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
4173 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004174
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004175 liquidio_set_feature(netdev, OCTNET_CMD_ENABLE_VLAN_FILTER, 0);
4176
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004177 if ((debug != -1) && (debug & NETIF_MSG_HW))
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004178 liquidio_set_feature(netdev,
4179 OCTNET_CMD_VERBOSE_ENABLE, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004180
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07004181 if (setup_link_status_change_wq(netdev))
4182 goto setup_nic_dev_fail;
4183
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004184 /* Register the network device with the OS */
4185 if (register_netdev(netdev)) {
4186 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
4187 goto setup_nic_dev_fail;
4188 }
4189
4190 dev_dbg(&octeon_dev->pci_dev->dev,
4191 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
4192 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
4193 netif_carrier_off(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004194 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004195
4196 ifstate_set(lio, LIO_IFSTATE_REGISTERED);
4197
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004198 /* Sending command to firmware to enable Rx checksum offload
4199 * by default at the time of setup of Liquidio driver for
4200 * this device
4201 */
4202 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
4203 OCTNET_CMD_RXCSUM_ENABLE);
4204 liquidio_set_feature(netdev, OCTNET_CMD_TNL_TX_CSUM_CTL,
4205 OCTNET_CMD_TXCSUM_ENABLE);
4206
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004207 dev_dbg(&octeon_dev->pci_dev->dev,
4208 "NIC ifidx:%d Setup successful\n", i);
4209
4210 octeon_free_soft_command(octeon_dev, sc);
4211 }
4212
4213 return 0;
4214
4215setup_nic_dev_fail:
4216
4217 octeon_free_soft_command(octeon_dev, sc);
4218
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07004219setup_nic_wait_intr:
4220
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004221 while (i--) {
4222 dev_err(&octeon_dev->pci_dev->dev,
4223 "NIC ifidx:%d Setup failed\n", i);
4224 liquidio_destroy_nic_device(octeon_dev, i);
4225 }
4226 return -ENODEV;
4227}
4228
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08004229#ifdef CONFIG_PCI_IOV
4230static int octeon_enable_sriov(struct octeon_device *oct)
4231{
4232 unsigned int num_vfs_alloced = oct->sriov_info.num_vfs_alloced;
4233 struct pci_dev *vfdev;
4234 int err;
4235 u32 u;
4236
4237 if (OCTEON_CN23XX_PF(oct) && num_vfs_alloced) {
4238 err = pci_enable_sriov(oct->pci_dev,
4239 oct->sriov_info.num_vfs_alloced);
4240 if (err) {
4241 dev_err(&oct->pci_dev->dev,
4242 "OCTEON: Failed to enable PCI sriov: %d\n",
4243 err);
4244 oct->sriov_info.num_vfs_alloced = 0;
4245 return err;
4246 }
4247 oct->sriov_info.sriov_enabled = 1;
4248
4249 /* init lookup table that maps DPI ring number to VF pci_dev
4250 * struct pointer
4251 */
4252 u = 0;
4253 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4254 OCTEON_CN23XX_VF_VID, NULL);
4255 while (vfdev) {
4256 if (vfdev->is_virtfn &&
4257 (vfdev->physfn == oct->pci_dev)) {
4258 oct->sriov_info.dpiring_to_vfpcidev_lut[u] =
4259 vfdev;
4260 u += oct->sriov_info.rings_per_vf;
4261 }
4262 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4263 OCTEON_CN23XX_VF_VID, vfdev);
4264 }
4265 }
4266
4267 return num_vfs_alloced;
4268}
4269
4270static int lio_pci_sriov_disable(struct octeon_device *oct)
4271{
4272 int u;
4273
4274 if (pci_vfs_assigned(oct->pci_dev)) {
4275 dev_err(&oct->pci_dev->dev, "VFs are still assigned to VMs.\n");
4276 return -EPERM;
4277 }
4278
4279 pci_disable_sriov(oct->pci_dev);
4280
4281 u = 0;
4282 while (u < MAX_POSSIBLE_VFS) {
4283 oct->sriov_info.dpiring_to_vfpcidev_lut[u] = NULL;
4284 u += oct->sriov_info.rings_per_vf;
4285 }
4286
4287 oct->sriov_info.num_vfs_alloced = 0;
4288 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d disabled VFs\n",
4289 oct->pf_num);
4290
4291 return 0;
4292}
4293
4294static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs)
4295{
4296 struct octeon_device *oct = pci_get_drvdata(dev);
4297 int ret = 0;
4298
4299 if ((num_vfs == oct->sriov_info.num_vfs_alloced) &&
4300 (oct->sriov_info.sriov_enabled)) {
4301 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d already enabled num_vfs:%d\n",
4302 oct->pf_num, num_vfs);
4303 return 0;
4304 }
4305
4306 if (!num_vfs) {
4307 ret = lio_pci_sriov_disable(oct);
4308 } else if (num_vfs > oct->sriov_info.max_vfs) {
4309 dev_err(&oct->pci_dev->dev,
4310 "OCTEON: Max allowed VFs:%d user requested:%d",
4311 oct->sriov_info.max_vfs, num_vfs);
4312 ret = -EPERM;
4313 } else {
4314 oct->sriov_info.num_vfs_alloced = num_vfs;
4315 ret = octeon_enable_sriov(oct);
4316 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d num_vfs:%d\n",
4317 oct->pf_num, num_vfs);
4318 }
4319
4320 return ret;
4321}
4322#endif
4323
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004324/**
4325 * \brief initialize the NIC
4326 * @param oct octeon device
4327 *
4328 * This initialization routine is called once the Octeon device application is
4329 * up and running
4330 */
4331static int liquidio_init_nic_module(struct octeon_device *oct)
4332{
4333 struct oct_intrmod_cfg *intrmod_cfg;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004334 int i, retval = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004335 int num_nic_ports = CFG_GET_NUM_NIC_PORTS(octeon_get_conf(oct));
4336
4337 dev_dbg(&oct->pci_dev->dev, "Initializing network interfaces\n");
4338
4339 /* only default iq and oq were initialized
4340 * initialize the rest as well
4341 */
4342 /* run port_config command for each port */
4343 oct->ifcount = num_nic_ports;
4344
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004345 memset(oct->props, 0, sizeof(struct octdev_props) * num_nic_ports);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004346
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004347 for (i = 0; i < MAX_OCTEON_LINKS; i++)
4348 oct->props[i].gmxport = -1;
4349
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004350 retval = setup_nic_devices(oct);
4351 if (retval) {
4352 dev_err(&oct->pci_dev->dev, "Setup NIC devices failed\n");
4353 goto octnet_init_failure;
4354 }
4355
4356 liquidio_ptp_init(oct);
4357
4358 /* Initialize interrupt moderation params */
4359 intrmod_cfg = &((struct octeon_device *)oct)->intrmod;
Raghu Vatsavayi78e6a9b2016-06-21 22:53:10 -07004360 intrmod_cfg->rx_enable = 1;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004361 intrmod_cfg->check_intrvl = LIO_INTRMOD_CHECK_INTERVAL;
Raghu Vatsavayi78e6a9b2016-06-21 22:53:10 -07004362 intrmod_cfg->maxpkt_ratethr = LIO_INTRMOD_MAXPKT_RATETHR;
4363 intrmod_cfg->minpkt_ratethr = LIO_INTRMOD_MINPKT_RATETHR;
4364 intrmod_cfg->rx_maxcnt_trigger = LIO_INTRMOD_RXMAXCNT_TRIGGER;
4365 intrmod_cfg->rx_maxtmr_trigger = LIO_INTRMOD_RXMAXTMR_TRIGGER;
4366 intrmod_cfg->rx_mintmr_trigger = LIO_INTRMOD_RXMINTMR_TRIGGER;
4367 intrmod_cfg->rx_mincnt_trigger = LIO_INTRMOD_RXMINCNT_TRIGGER;
4368 intrmod_cfg->tx_enable = 1;
4369 intrmod_cfg->tx_maxcnt_trigger = LIO_INTRMOD_TXMAXCNT_TRIGGER;
4370 intrmod_cfg->tx_mincnt_trigger = LIO_INTRMOD_TXMINCNT_TRIGGER;
4371 intrmod_cfg->rx_frames = CFG_GET_OQ_INTR_PKT(octeon_get_conf(oct));
4372 intrmod_cfg->rx_usecs = CFG_GET_OQ_INTR_TIME(octeon_get_conf(oct));
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07004373 intrmod_cfg->tx_frames = CFG_GET_IQ_INTR_PKT(octeon_get_conf(oct));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004374 dev_dbg(&oct->pci_dev->dev, "Network interfaces ready\n");
4375
4376 return retval;
4377
4378octnet_init_failure:
4379
4380 oct->ifcount = 0;
4381
4382 return retval;
4383}
4384
4385/**
4386 * \brief starter callback that invokes the remaining initialization work after
4387 * the NIC is up and running.
4388 * @param octptr work struct work_struct
4389 */
4390static void nic_starter(struct work_struct *work)
4391{
4392 struct octeon_device *oct;
4393 struct cavium_wk *wk = (struct cavium_wk *)work;
4394
4395 oct = (struct octeon_device *)wk->ctxptr;
4396
4397 if (atomic_read(&oct->status) == OCT_DEV_RUNNING)
4398 return;
4399
4400 /* If the status of the device is CORE_OK, the core
4401 * application has reported its application type. Call
4402 * any registered handlers now and move to the RUNNING
4403 * state.
4404 */
4405 if (atomic_read(&oct->status) != OCT_DEV_CORE_OK) {
4406 schedule_delayed_work(&oct->nic_poll_work.work,
4407 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4408 return;
4409 }
4410
4411 atomic_set(&oct->status, OCT_DEV_RUNNING);
4412
4413 if (oct->app_mode && oct->app_mode == CVM_DRV_NIC_APP) {
4414 dev_dbg(&oct->pci_dev->dev, "Starting NIC module\n");
4415
4416 if (liquidio_init_nic_module(oct))
4417 dev_err(&oct->pci_dev->dev, "NIC initialization failed\n");
4418 else
4419 handshake[oct->octeon_id].started_ok = 1;
4420 } else {
4421 dev_err(&oct->pci_dev->dev,
4422 "Unexpected application running on NIC (%d). Check firmware.\n",
4423 oct->app_mode);
4424 }
4425
4426 complete(&handshake[oct->octeon_id].started);
4427}
4428
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004429static int
4430octeon_recv_vf_drv_notice(struct octeon_recv_info *recv_info, void *buf)
4431{
4432 struct octeon_device *oct = (struct octeon_device *)buf;
4433 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
4434 int i, notice, vf_idx;
4435 u64 *data, vf_num;
4436
4437 notice = recv_pkt->rh.r.ossp;
4438 data = (u64 *)get_rbd(recv_pkt->buffer_ptr[0]);
4439
4440 /* the first 64-bit word of data is the vf_num */
4441 vf_num = data[0];
4442 octeon_swap_8B_data(&vf_num, 1);
4443 vf_idx = (int)vf_num - 1;
4444
4445 if (notice == VF_DRV_LOADED) {
4446 if (!(oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx))) {
4447 oct->sriov_info.vf_drv_loaded_mask |= BIT_ULL(vf_idx);
4448 dev_info(&oct->pci_dev->dev,
4449 "driver for VF%d was loaded\n", vf_idx);
4450 try_module_get(THIS_MODULE);
4451 }
4452 } else if (notice == VF_DRV_REMOVED) {
4453 if (oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx)) {
4454 oct->sriov_info.vf_drv_loaded_mask &= ~BIT_ULL(vf_idx);
4455 dev_info(&oct->pci_dev->dev,
4456 "driver for VF%d was removed\n", vf_idx);
4457 module_put(THIS_MODULE);
4458 }
4459 } else if (notice == VF_DRV_MACADDR_CHANGED) {
4460 u8 *b = (u8 *)&data[1];
4461
4462 oct->sriov_info.vf_macaddr[vf_idx] = data[1];
4463 dev_info(&oct->pci_dev->dev,
4464 "VF driver changed VF%d's MAC address to %pM\n",
4465 vf_idx, b + 2);
4466 }
4467
4468 for (i = 0; i < recv_pkt->buffer_count; i++)
4469 recv_buffer_free(recv_pkt->buffer_ptr[i]);
4470 octeon_free_recv_info(recv_info);
4471
4472 return 0;
4473}
4474
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004475/**
4476 * \brief Device initialization for each Octeon device that is probed
4477 * @param octeon_dev octeon device
4478 */
4479static int octeon_device_init(struct octeon_device *octeon_dev)
4480{
4481 int j, ret;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004482 int fw_loaded = 0;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004483 char bootcmd[] = "\n";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004484 struct octeon_device_priv *oct_priv =
4485 (struct octeon_device_priv *)octeon_dev->priv;
4486 atomic_set(&octeon_dev->status, OCT_DEV_BEGIN_STATE);
4487
4488 /* Enable access to the octeon device and make its DMA capability
4489 * known to the OS.
4490 */
4491 if (octeon_pci_os_setup(octeon_dev))
4492 return 1;
4493
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004494 atomic_set(&octeon_dev->status, OCT_DEV_PCI_ENABLE_DONE);
4495
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004496 /* Identify the Octeon type and map the BAR address space. */
4497 if (octeon_chip_specific_setup(octeon_dev)) {
4498 dev_err(&octeon_dev->pci_dev->dev, "Chip specific setup failed\n");
4499 return 1;
4500 }
4501
4502 atomic_set(&octeon_dev->status, OCT_DEV_PCI_MAP_DONE);
4503
4504 octeon_dev->app_mode = CVM_DRV_INVALID_APP;
4505
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004506 if (OCTEON_CN23XX_PF(octeon_dev)) {
4507 if (!cn23xx_fw_loaded(octeon_dev)) {
4508 fw_loaded = 0;
4509 /* Do a soft reset of the Octeon device. */
4510 if (octeon_dev->fn_list.soft_reset(octeon_dev))
4511 return 1;
4512 /* things might have changed */
4513 if (!cn23xx_fw_loaded(octeon_dev))
4514 fw_loaded = 0;
4515 else
4516 fw_loaded = 1;
4517 } else {
4518 fw_loaded = 1;
4519 }
4520 } else if (octeon_dev->fn_list.soft_reset(octeon_dev)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004521 return 1;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004522 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004523
4524 /* Initialize the dispatch mechanism used to push packets arriving on
4525 * Octeon Output queues.
4526 */
4527 if (octeon_init_dispatch_list(octeon_dev))
4528 return 1;
4529
4530 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4531 OPCODE_NIC_CORE_DRV_ACTIVE,
4532 octeon_core_drv_init,
4533 octeon_dev);
4534
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004535 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4536 OPCODE_NIC_VF_DRV_NOTICE,
4537 octeon_recv_vf_drv_notice, octeon_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004538 INIT_DELAYED_WORK(&octeon_dev->nic_poll_work.work, nic_starter);
4539 octeon_dev->nic_poll_work.ctxptr = (void *)octeon_dev;
4540 schedule_delayed_work(&octeon_dev->nic_poll_work.work,
4541 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4542
4543 atomic_set(&octeon_dev->status, OCT_DEV_DISPATCH_INIT_DONE);
4544
Raghu Vatsavayic865cdf2016-11-28 16:54:36 -08004545 if (octeon_set_io_queues_off(octeon_dev)) {
4546 dev_err(&octeon_dev->pci_dev->dev, "setting io queues off failed\n");
4547 return 1;
4548 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004549
Raghu Vatsavayi3451b972016-08-31 11:03:26 -07004550 if (OCTEON_CN23XX_PF(octeon_dev)) {
4551 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4552 if (ret) {
4553 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Failed to configure device registers\n");
4554 return ret;
4555 }
4556 }
4557
4558 /* Initialize soft command buffer pool
4559 */
4560 if (octeon_setup_sc_buffer_pool(octeon_dev)) {
4561 dev_err(&octeon_dev->pci_dev->dev, "sc buffer pool allocation failed\n");
4562 return 1;
4563 }
4564 atomic_set(&octeon_dev->status, OCT_DEV_SC_BUFF_POOL_INIT_DONE);
4565
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004566 /* Setup the data structures that manage this Octeon's Input queues. */
4567 if (octeon_setup_instr_queues(octeon_dev)) {
4568 dev_err(&octeon_dev->pci_dev->dev,
4569 "instruction queue initialization failed\n");
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004570 return 1;
4571 }
4572 atomic_set(&octeon_dev->status, OCT_DEV_INSTR_QUEUE_INIT_DONE);
4573
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004574 /* Initialize lists to manage the requests of different types that
4575 * arrive from user & kernel applications for this octeon device.
4576 */
4577 if (octeon_setup_response_list(octeon_dev)) {
4578 dev_err(&octeon_dev->pci_dev->dev, "Response list allocation failed\n");
4579 return 1;
4580 }
4581 atomic_set(&octeon_dev->status, OCT_DEV_RESP_LIST_INIT_DONE);
4582
4583 if (octeon_setup_output_queues(octeon_dev)) {
4584 dev_err(&octeon_dev->pci_dev->dev, "Output queue initialization failed\n");
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004585 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004586 }
4587
4588 atomic_set(&octeon_dev->status, OCT_DEV_DROQ_INIT_DONE);
4589
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004590 if (OCTEON_CN23XX_PF(octeon_dev)) {
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08004591 if (octeon_dev->fn_list.setup_mbox(octeon_dev)) {
4592 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Mailbox setup failed\n");
4593 return 1;
4594 }
4595 atomic_set(&octeon_dev->status, OCT_DEV_MBOX_SETUP_DONE);
4596
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004597 if (octeon_allocate_ioq_vector(octeon_dev)) {
4598 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: ioq vector allocation failed\n");
4599 return 1;
4600 }
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004601 atomic_set(&octeon_dev->status, OCT_DEV_MSIX_ALLOC_VECTOR_DONE);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004602
4603 } else {
4604 /* The input and output queue registers were setup earlier (the
4605 * queues were not enabled). Any additional registers
4606 * that need to be programmed should be done now.
4607 */
4608 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4609 if (ret) {
4610 dev_err(&octeon_dev->pci_dev->dev,
4611 "Failed to configure device registers\n");
4612 return ret;
4613 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004614 }
4615
4616 /* Initialize the tasklet that handles output queue packet processing.*/
4617 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing droq tasklet\n");
4618 tasklet_init(&oct_priv->droq_tasklet, octeon_droq_bh,
4619 (unsigned long)octeon_dev);
4620
4621 /* Setup the interrupt handler and record the INT SUM register address
4622 */
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004623 if (octeon_setup_interrupt(octeon_dev))
4624 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004625
4626 /* Enable Octeon device interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004627 octeon_dev->fn_list.enable_interrupt(octeon_dev, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004628
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004629 atomic_set(&octeon_dev->status, OCT_DEV_INTR_SET_DONE);
4630
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004631 /* Enable the input and output queues for this Octeon device */
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07004632 ret = octeon_dev->fn_list.enable_io_queues(octeon_dev);
4633 if (ret) {
4634 dev_err(&octeon_dev->pci_dev->dev, "Failed to enable input/output queues");
4635 return ret;
4636 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004637
4638 atomic_set(&octeon_dev->status, OCT_DEV_IO_QUEUES_DONE);
4639
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004640 if ((!OCTEON_CN23XX_PF(octeon_dev)) || !fw_loaded) {
4641 dev_dbg(&octeon_dev->pci_dev->dev, "Waiting for DDR initialization...\n");
4642 if (!ddr_timeout) {
4643 dev_info(&octeon_dev->pci_dev->dev,
4644 "WAITING. Set ddr_timeout to non-zero value to proceed with initialization.\n");
4645 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004646
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004647 schedule_timeout_uninterruptible(HZ * LIO_RESET_SECS);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004648
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004649 /* Wait for the octeon to initialize DDR after the soft-reset.*/
4650 while (!ddr_timeout) {
4651 set_current_state(TASK_INTERRUPTIBLE);
4652 if (schedule_timeout(HZ / 10)) {
4653 /* user probably pressed Control-C */
4654 return 1;
4655 }
4656 }
4657 ret = octeon_wait_for_ddr_init(octeon_dev, &ddr_timeout);
4658 if (ret) {
4659 dev_err(&octeon_dev->pci_dev->dev,
4660 "DDR not initialized. Please confirm that board is configured to boot from Flash, ret: %d\n",
4661 ret);
Raghu Vatsavayi4b129ae2016-06-21 22:53:15 -07004662 return 1;
4663 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004664
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004665 if (octeon_wait_for_bootloader(octeon_dev, 1000)) {
4666 dev_err(&octeon_dev->pci_dev->dev, "Board not responding\n");
4667 return 1;
4668 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004669
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004670 /* Divert uboot to take commands from host instead. */
4671 ret = octeon_console_send_cmd(octeon_dev, bootcmd, 50);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004672
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004673 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing consoles\n");
4674 ret = octeon_init_consoles(octeon_dev);
4675 if (ret) {
4676 dev_err(&octeon_dev->pci_dev->dev, "Could not access board consoles\n");
4677 return 1;
4678 }
4679 ret = octeon_add_console(octeon_dev, 0);
4680 if (ret) {
4681 dev_err(&octeon_dev->pci_dev->dev, "Could not access board console\n");
4682 return 1;
4683 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004684
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004685 atomic_set(&octeon_dev->status, OCT_DEV_CONSOLE_INIT_DONE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004686
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004687 dev_dbg(&octeon_dev->pci_dev->dev, "Loading firmware\n");
4688 ret = load_firmware(octeon_dev);
4689 if (ret) {
4690 dev_err(&octeon_dev->pci_dev->dev, "Could not load firmware to board\n");
4691 return 1;
4692 }
4693 /* set bit 1 of SLI_SCRATCH_1 to indicate that firmware is
4694 * loaded
4695 */
4696 if (OCTEON_CN23XX_PF(octeon_dev))
4697 octeon_write_csr64(octeon_dev, CN23XX_SLI_SCRATCH1,
4698 2ULL);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004699 }
4700
4701 handshake[octeon_dev->octeon_id].init_ok = 1;
4702 complete(&handshake[octeon_dev->octeon_id].init);
4703
4704 atomic_set(&octeon_dev->status, OCT_DEV_HOST_OK);
4705
4706 /* Send Credit for Octeon Output queues. Credits are always sent after
4707 * the output queue is enabled.
4708 */
4709 for (j = 0; j < octeon_dev->num_oqs; j++)
4710 writel(octeon_dev->droq[j]->max_count,
4711 octeon_dev->droq[j]->pkts_credit_reg);
4712
4713 /* Packets can start arriving on the output queues from this point. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004714 return 0;
4715}
4716
4717/**
4718 * \brief Exits the module
4719 */
4720static void __exit liquidio_exit(void)
4721{
4722 liquidio_deinit_pci();
4723
4724 pr_info("LiquidIO network module is now unloaded\n");
4725}
4726
4727module_init(liquidio_init);
4728module_exit(liquidio_exit);