blob: 0bc76ad96a17391bc7a0bfcc2e92e97920165c75 [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/* Polling interval for determining when NIC application is alive */
64#define LIQUIDIO_STARTER_POLL_INTERVAL_MS 100
65
66/* runtime link query interval */
67#define LIQUIDIO_LINK_QUERY_INTERVAL_MS 1000
68
69struct liquidio_if_cfg_context {
70 int octeon_id;
71
72 wait_queue_head_t wc;
73
74 int cond;
75};
76
77struct liquidio_if_cfg_resp {
78 u64 rh;
79 struct liquidio_if_cfg_info cfg_info;
80 u64 status;
81};
82
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -070083struct liquidio_rx_ctl_context {
84 int octeon_id;
85
86 wait_queue_head_t wc;
87
88 int cond;
89};
90
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070091struct oct_link_status_resp {
92 u64 rh;
93 struct oct_link_info link_info;
94 u64 status;
95};
96
97struct oct_timestamp_resp {
98 u64 rh;
99 u64 timestamp;
100 u64 status;
101};
102
103#define OCT_TIMESTAMP_RESP_SIZE (sizeof(struct oct_timestamp_resp))
104
105union tx_info {
106 u64 u64;
107 struct {
108#ifdef __BIG_ENDIAN_BITFIELD
109 u16 gso_size;
110 u16 gso_segs;
111 u32 reserved;
112#else
113 u32 reserved;
114 u16 gso_segs;
115 u16 gso_size;
116#endif
117 } s;
118};
119
120/** Octeon device properties to be used by the NIC module.
121 * Each octeon device in the system will be represented
122 * by this structure in the NIC module.
123 */
124
125#define OCTNIC_MAX_SG (MAX_SKB_FRAGS)
126
127#define OCTNIC_GSO_MAX_HEADER_SIZE 128
Raghu Vatsavayi72c00912016-08-31 11:03:25 -0700128#define OCTNIC_GSO_MAX_SIZE \
129 (CN23XX_DEFAULT_INPUT_JABBER - OCTNIC_GSO_MAX_HEADER_SIZE)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700130
131/** Structure of a node in list of gather components maintained by
132 * NIC driver for each network device.
133 */
134struct octnic_gather {
135 /** List manipulation. Next and prev pointers. */
136 struct list_head list;
137
138 /** Size of the gather component at sg in bytes. */
139 int sg_size;
140
141 /** Number of bytes that sg was adjusted to make it 8B-aligned. */
142 int adjust;
143
144 /** Gather component that can accommodate max sized fragment list
145 * received from the IP layer.
146 */
147 struct octeon_sg_entry *sg;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700148
VSR Burru67e303e2017-03-06 18:45:59 -0800149 dma_addr_t sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700150};
151
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700152struct handshake {
153 struct completion init;
154 struct completion started;
155 struct pci_dev *pci_dev;
156 int init_ok;
157 int started_ok;
158};
159
160struct octeon_device_priv {
161 /** Tasklet structures for this device. */
162 struct tasklet_struct droq_tasklet;
163 unsigned long napi_mask;
164};
165
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800166#ifdef CONFIG_PCI_IOV
167static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs);
168#endif
169
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700170static int octeon_device_init(struct octeon_device *);
Raghu Vatsavayi32581242016-08-31 11:03:20 -0700171static int liquidio_stop(struct net_device *netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700172static void liquidio_remove(struct pci_dev *pdev);
173static int liquidio_probe(struct pci_dev *pdev,
174 const struct pci_device_id *ent);
175
176static struct handshake handshake[MAX_OCTEON_DEVICES];
177static struct completion first_stage;
178
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700179static void octeon_droq_bh(unsigned long pdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700180{
181 int q_no;
182 int reschedule = 0;
183 struct octeon_device *oct = (struct octeon_device *)pdev;
184 struct octeon_device_priv *oct_priv =
185 (struct octeon_device_priv *)oct->priv;
186
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700187 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES(oct); q_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800188 if (!(oct->io_qmask.oq & BIT_ULL(q_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700189 continue;
190 reschedule |= octeon_droq_process_packets(oct, oct->droq[q_no],
191 MAX_PACKET_BUDGET);
Raghu Vatsavayicd8b1eb2016-08-31 11:03:22 -0700192 lio_enable_irq(oct->droq[q_no], NULL);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700193
194 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
195 /* set time and cnt interrupt thresholds for this DROQ
196 * for NAPI
197 */
198 int adjusted_q_no = q_no + oct->sriov_info.pf_srn;
199
200 octeon_write_csr64(
201 oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(adjusted_q_no),
202 0x5700000040ULL);
203 octeon_write_csr64(
204 oct, CN23XX_SLI_OQ_PKTS_SENT(adjusted_q_no), 0);
205 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700206 }
207
208 if (reschedule)
209 tasklet_schedule(&oct_priv->droq_tasklet);
210}
211
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700212static int lio_wait_for_oq_pkts(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700213{
214 struct octeon_device_priv *oct_priv =
215 (struct octeon_device_priv *)oct->priv;
216 int retry = 100, pkt_cnt = 0, pending_pkts = 0;
217 int i;
218
219 do {
220 pending_pkts = 0;
221
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700222 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800223 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700224 continue;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700225 pkt_cnt += octeon_droq_check_hw_for_pkts(oct->droq[i]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700226 }
227 if (pkt_cnt > 0) {
228 pending_pkts += pkt_cnt;
229 tasklet_schedule(&oct_priv->droq_tasklet);
230 }
231 pkt_cnt = 0;
232 schedule_timeout_uninterruptible(1);
233
234 } while (retry-- && pending_pkts);
235
236 return pkt_cnt;
237}
238
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700239/**
240 * \brief Forces all IO queues off on a given device
241 * @param oct Pointer to Octeon device
242 */
243static void force_io_queues_off(struct octeon_device *oct)
244{
245 if ((oct->chip_id == OCTEON_CN66XX) ||
246 (oct->chip_id == OCTEON_CN68XX)) {
247 /* Reset the Enable bits for Input Queues. */
248 octeon_write_csr(oct, CN6XXX_SLI_PKT_INSTR_ENB, 0);
249
250 /* Reset the Enable bits for Output Queues. */
251 octeon_write_csr(oct, CN6XXX_SLI_PKT_OUT_ENB, 0);
252 }
253}
254
255/**
256 * \brief wait for all pending requests to complete
257 * @param oct Pointer to Octeon device
258 *
259 * Called during shutdown sequence
260 */
261static int wait_for_pending_requests(struct octeon_device *oct)
262{
263 int i, pcount = 0;
264
265 for (i = 0; i < 100; i++) {
266 pcount =
267 atomic_read(&oct->response_list
268 [OCTEON_ORDERED_SC_LIST].pending_req_count);
269 if (pcount)
270 schedule_timeout_uninterruptible(HZ / 10);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700271 else
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700272 break;
273 }
274
275 if (pcount)
276 return 1;
277
278 return 0;
279}
280
281/**
282 * \brief Cause device to go quiet so it can be safely removed/reset/etc
283 * @param oct Pointer to Octeon device
284 */
285static inline void pcierror_quiesce_device(struct octeon_device *oct)
286{
287 int i;
288
289 /* Disable the input and output queues now. No more packets will
290 * arrive from Octeon, but we should wait for all packet processing
291 * to finish.
292 */
293 force_io_queues_off(oct);
294
295 /* To allow for in-flight requests */
296 schedule_timeout_uninterruptible(100);
297
298 if (wait_for_pending_requests(oct))
299 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
300
301 /* Force all requests waiting to be fetched by OCTEON to complete. */
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700302 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700303 struct octeon_instr_queue *iq;
304
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800305 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700306 continue;
307 iq = oct->instr_queue[i];
308
309 if (atomic_read(&iq->instr_pending)) {
310 spin_lock_bh(&iq->lock);
311 iq->fill_cnt = 0;
312 iq->octeon_read_index = iq->host_write_index;
313 iq->stats.instr_processed +=
314 atomic_read(&iq->instr_pending);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700315 lio_process_iq_request_list(oct, iq, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700316 spin_unlock_bh(&iq->lock);
317 }
318 }
319
320 /* Force all pending ordered list requests to time out. */
321 lio_process_ordered_list(oct, 1);
322
323 /* We do not need to wait for output queue packets to be processed. */
324}
325
326/**
327 * \brief Cleanup PCI AER uncorrectable error status
328 * @param dev Pointer to PCI device
329 */
330static void cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
331{
332 int pos = 0x100;
333 u32 status, mask;
334
335 pr_info("%s :\n", __func__);
336
337 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
338 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
339 if (dev->error_state == pci_channel_io_normal)
340 status &= ~mask; /* Clear corresponding nonfatal bits */
341 else
342 status &= mask; /* Clear corresponding fatal bits */
343 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
344}
345
346/**
347 * \brief Stop all PCI IO to a given device
348 * @param dev Pointer to Octeon device
349 */
350static void stop_pci_io(struct octeon_device *oct)
351{
352 /* No more instructions will be forwarded. */
353 atomic_set(&oct->status, OCT_DEV_IN_RESET);
354
355 pci_disable_device(oct->pci_dev);
356
357 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700358 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700359
360 pcierror_quiesce_device(oct);
361
362 /* Release the interrupt line */
363 free_irq(oct->pci_dev->irq, oct);
364
365 if (oct->flags & LIO_FLAG_MSI_ENABLED)
366 pci_disable_msi(oct->pci_dev);
367
368 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
369 lio_get_state_string(&oct->status));
370
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700371 /* making it a common function for all OCTEON models */
372 cleanup_aer_uncorrect_error_status(oct->pci_dev);
373}
374
375/**
376 * \brief called when PCI error is detected
377 * @param pdev Pointer to PCI device
378 * @param state The current pci connection state
379 *
380 * This function is called after a PCI bus error affecting
381 * this device has been detected.
382 */
383static pci_ers_result_t liquidio_pcie_error_detected(struct pci_dev *pdev,
384 pci_channel_state_t state)
385{
386 struct octeon_device *oct = pci_get_drvdata(pdev);
387
388 /* Non-correctable Non-fatal errors */
389 if (state == pci_channel_io_normal) {
390 dev_err(&oct->pci_dev->dev, "Non-correctable non-fatal error reported:\n");
391 cleanup_aer_uncorrect_error_status(oct->pci_dev);
392 return PCI_ERS_RESULT_CAN_RECOVER;
393 }
394
395 /* Non-correctable Fatal errors */
396 dev_err(&oct->pci_dev->dev, "Non-correctable FATAL reported by PCI AER driver\n");
397 stop_pci_io(oct);
398
399 /* Always return a DISCONNECT. There is no support for recovery but only
400 * for a clean shutdown.
401 */
402 return PCI_ERS_RESULT_DISCONNECT;
403}
404
405/**
406 * \brief mmio handler
407 * @param pdev Pointer to PCI device
408 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700409static pci_ers_result_t liquidio_pcie_mmio_enabled(
410 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700411{
412 /* We should never hit this since we never ask for a reset for a Fatal
413 * Error. We always return DISCONNECT in io_error above.
414 * But play safe and return RECOVERED for now.
415 */
416 return PCI_ERS_RESULT_RECOVERED;
417}
418
419/**
420 * \brief called after the pci bus has been reset.
421 * @param pdev Pointer to PCI device
422 *
423 * Restart the card from scratch, as if from a cold-boot. Implementation
424 * resembles the first-half of the octeon_resume routine.
425 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700426static pci_ers_result_t liquidio_pcie_slot_reset(
427 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700428{
429 /* We should never hit this since we never ask for a reset for a Fatal
430 * Error. We always return DISCONNECT in io_error above.
431 * But play safe and return RECOVERED for now.
432 */
433 return PCI_ERS_RESULT_RECOVERED;
434}
435
436/**
437 * \brief called when traffic can start flowing again.
438 * @param pdev Pointer to PCI device
439 *
440 * This callback is called when the error recovery driver tells us that
441 * its OK to resume normal operation. Implementation resembles the
442 * second-half of the octeon_resume routine.
443 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700444static void liquidio_pcie_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700445{
446 /* Nothing to be done here. */
447}
448
449#ifdef CONFIG_PM
450/**
451 * \brief called when suspending
452 * @param pdev Pointer to PCI device
453 * @param state state to suspend to
454 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700455static int liquidio_suspend(struct pci_dev *pdev __attribute__((unused)),
456 pm_message_t state __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700457{
458 return 0;
459}
460
461/**
462 * \brief called when resuming
463 * @param pdev Pointer to PCI device
464 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700465static int liquidio_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700466{
467 return 0;
468}
469#endif
470
471/* For PCI-E Advanced Error Recovery (AER) Interface */
Julia Lawall166e2362015-11-14 11:06:53 +0100472static const struct pci_error_handlers liquidio_err_handler = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700473 .error_detected = liquidio_pcie_error_detected,
474 .mmio_enabled = liquidio_pcie_mmio_enabled,
475 .slot_reset = liquidio_pcie_slot_reset,
476 .resume = liquidio_pcie_resume,
477};
478
479static const struct pci_device_id liquidio_pci_tbl[] = {
480 { /* 68xx */
481 PCI_VENDOR_ID_CAVIUM, 0x91, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
482 },
483 { /* 66xx */
484 PCI_VENDOR_ID_CAVIUM, 0x92, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
485 },
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -0700486 { /* 23xx pf */
487 PCI_VENDOR_ID_CAVIUM, 0x9702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
488 },
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700489 {
490 0, 0, 0, 0, 0, 0, 0
491 }
492};
493MODULE_DEVICE_TABLE(pci, liquidio_pci_tbl);
494
495static struct pci_driver liquidio_pci_driver = {
496 .name = "LiquidIO",
497 .id_table = liquidio_pci_tbl,
498 .probe = liquidio_probe,
499 .remove = liquidio_remove,
500 .err_handler = &liquidio_err_handler, /* For AER */
501
502#ifdef CONFIG_PM
503 .suspend = liquidio_suspend,
504 .resume = liquidio_resume,
505#endif
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800506#ifdef CONFIG_PCI_IOV
507 .sriov_configure = liquidio_enable_sriov,
508#endif
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700509};
510
511/**
512 * \brief register PCI driver
513 */
514static int liquidio_init_pci(void)
515{
516 return pci_register_driver(&liquidio_pci_driver);
517}
518
519/**
520 * \brief unregister PCI driver
521 */
522static void liquidio_deinit_pci(void)
523{
524 pci_unregister_driver(&liquidio_pci_driver);
525}
526
527/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700528 * \brief Stop Tx queues
529 * @param netdev network device
530 */
531static inline void txqs_stop(struct net_device *netdev)
532{
533 if (netif_is_multiqueue(netdev)) {
534 int i;
535
536 for (i = 0; i < netdev->num_tx_queues; i++)
537 netif_stop_subqueue(netdev, i);
538 } else {
539 netif_stop_queue(netdev);
540 }
541}
542
543/**
544 * \brief Start Tx queues
545 * @param netdev network device
546 */
547static inline void txqs_start(struct net_device *netdev)
548{
549 if (netif_is_multiqueue(netdev)) {
550 int i;
551
552 for (i = 0; i < netdev->num_tx_queues; i++)
553 netif_start_subqueue(netdev, i);
554 } else {
555 netif_start_queue(netdev);
556 }
557}
558
559/**
560 * \brief Wake Tx queues
561 * @param netdev network device
562 */
563static inline void txqs_wake(struct net_device *netdev)
564{
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700565 struct lio *lio = GET_LIO(netdev);
566
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700567 if (netif_is_multiqueue(netdev)) {
568 int i;
569
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700570 for (i = 0; i < netdev->num_tx_queues; i++) {
571 int qno = lio->linfo.txpciq[i %
572 (lio->linfo.num_txpciq)].s.q_no;
573
574 if (__netif_subqueue_stopped(netdev, i)) {
575 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, qno,
576 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700577 netif_wake_subqueue(netdev, i);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700578 }
579 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700580 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700581 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
582 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700583 netif_wake_queue(netdev);
584 }
585}
586
587/**
588 * \brief Stop Tx queue
589 * @param netdev network device
590 */
591static void stop_txq(struct net_device *netdev)
592{
593 txqs_stop(netdev);
594}
595
596/**
597 * \brief Start Tx queue
598 * @param netdev network device
599 */
600static void start_txq(struct net_device *netdev)
601{
602 struct lio *lio = GET_LIO(netdev);
603
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700604 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700605 txqs_start(netdev);
606 return;
607 }
608}
609
610/**
611 * \brief Wake a queue
612 * @param netdev network device
613 * @param q which queue to wake
614 */
615static inline void wake_q(struct net_device *netdev, int q)
616{
617 if (netif_is_multiqueue(netdev))
618 netif_wake_subqueue(netdev, q);
619 else
620 netif_wake_queue(netdev);
621}
622
623/**
624 * \brief Stop a queue
625 * @param netdev network device
626 * @param q which queue to stop
627 */
628static inline void stop_q(struct net_device *netdev, int q)
629{
630 if (netif_is_multiqueue(netdev))
631 netif_stop_subqueue(netdev, q);
632 else
633 netif_stop_queue(netdev);
634}
635
636/**
637 * \brief Check Tx queue status, and take appropriate action
638 * @param lio per-network private data
639 * @returns 0 if full, number of queues woken up otherwise
640 */
641static inline int check_txq_status(struct lio *lio)
642{
643 int ret_val = 0;
644
645 if (netif_is_multiqueue(lio->netdev)) {
646 int numqs = lio->netdev->num_tx_queues;
647 int q, iq = 0;
648
649 /* check each sub-queue state */
650 for (q = 0; q < numqs; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700651 iq = lio->linfo.txpciq[q %
652 (lio->linfo.num_txpciq)].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700653 if (octnet_iq_is_full(lio->oct_dev, iq))
654 continue;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700655 if (__netif_subqueue_stopped(lio->netdev, q)) {
656 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700657 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq,
658 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700659 ret_val++;
660 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700661 }
662 } else {
663 if (octnet_iq_is_full(lio->oct_dev, lio->txq))
664 return 0;
665 wake_q(lio->netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700666 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
667 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700668 ret_val = 1;
669 }
670 return ret_val;
671}
672
673/**
674 * Remove the node at the head of the list. The list would be empty at
675 * the end of this call if there are no more nodes in the list.
676 */
677static inline struct list_head *list_delete_head(struct list_head *root)
678{
679 struct list_head *node;
680
681 if ((root->prev == root) && (root->next == root))
682 node = NULL;
683 else
684 node = root->next;
685
686 if (node)
687 list_del(node);
688
689 return node;
690}
691
692/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700693 * \brief Delete gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700694 * @param lio per-network private data
695 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700696static void delete_glists(struct lio *lio)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700697{
698 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700699 int i;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700700
VSR Burru67e303e2017-03-06 18:45:59 -0800701 kfree(lio->glist_lock);
702 lio->glist_lock = NULL;
703
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700704 if (!lio->glist)
705 return;
706
707 for (i = 0; i < lio->linfo.num_txpciq; i++) {
708 do {
709 g = (struct octnic_gather *)
710 list_delete_head(&lio->glist[i]);
VSR Burru67e303e2017-03-06 18:45:59 -0800711 if (g)
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700712 kfree(g);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700713 } while (g);
VSR Burru67e303e2017-03-06 18:45:59 -0800714
Felix Manlunas58ad3192017-03-20 19:04:48 -0700715 if (lio->glists_virt_base && lio->glists_virt_base[i] &&
716 lio->glists_dma_base && lio->glists_dma_base[i]) {
VSR Burru67e303e2017-03-06 18:45:59 -0800717 lio_dma_free(lio->oct_dev,
718 lio->glist_entry_size * lio->tx_qsize,
719 lio->glists_virt_base[i],
720 lio->glists_dma_base[i]);
721 }
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700722 }
723
VSR Burru67e303e2017-03-06 18:45:59 -0800724 kfree(lio->glists_virt_base);
725 lio->glists_virt_base = NULL;
726
727 kfree(lio->glists_dma_base);
728 lio->glists_dma_base = NULL;
729
730 kfree(lio->glist);
731 lio->glist = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700732}
733
734/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700735 * \brief Setup gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700736 * @param lio per-network private data
737 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700738static int setup_glists(struct octeon_device *oct, struct lio *lio, int num_iqs)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700739{
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700740 int i, j;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700741 struct octnic_gather *g;
742
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700743 lio->glist_lock = kcalloc(num_iqs, sizeof(*lio->glist_lock),
744 GFP_KERNEL);
745 if (!lio->glist_lock)
VSR Burru67e303e2017-03-06 18:45:59 -0800746 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700747
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700748 lio->glist = kcalloc(num_iqs, sizeof(*lio->glist),
749 GFP_KERNEL);
750 if (!lio->glist) {
VSR Burru67e303e2017-03-06 18:45:59 -0800751 kfree(lio->glist_lock);
752 lio->glist_lock = NULL;
753 return -ENOMEM;
754 }
755
756 lio->glist_entry_size =
757 ROUNDUP8((ROUNDUP4(OCTNIC_MAX_SG) >> 2) * OCT_SG_ENTRY_SIZE);
758
759 /* allocate memory to store virtual and dma base address of
760 * per glist consistent memory
761 */
762 lio->glists_virt_base = kcalloc(num_iqs, sizeof(*lio->glists_virt_base),
763 GFP_KERNEL);
764 lio->glists_dma_base = kcalloc(num_iqs, sizeof(*lio->glists_dma_base),
765 GFP_KERNEL);
766
767 if (!lio->glists_virt_base || !lio->glists_dma_base) {
768 delete_glists(lio);
769 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700770 }
771
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700772 for (i = 0; i < num_iqs; i++) {
VSR Burrub3ca9af2017-03-09 17:03:24 -0800773 int numa_node = dev_to_node(&oct->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700774
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700775 spin_lock_init(&lio->glist_lock[i]);
776
777 INIT_LIST_HEAD(&lio->glist[i]);
778
VSR Burru67e303e2017-03-06 18:45:59 -0800779 lio->glists_virt_base[i] =
780 lio_dma_alloc(oct,
781 lio->glist_entry_size * lio->tx_qsize,
782 &lio->glists_dma_base[i]);
783
784 if (!lio->glists_virt_base[i]) {
785 delete_glists(lio);
786 return -ENOMEM;
787 }
788
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700789 for (j = 0; j < lio->tx_qsize; j++) {
790 g = kzalloc_node(sizeof(*g), GFP_KERNEL,
791 numa_node);
792 if (!g)
793 g = kzalloc(sizeof(*g), GFP_KERNEL);
794 if (!g)
795 break;
796
VSR Burru67e303e2017-03-06 18:45:59 -0800797 g->sg = lio->glists_virt_base[i] +
798 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700799
VSR Burru67e303e2017-03-06 18:45:59 -0800800 g->sg_dma_ptr = lio->glists_dma_base[i] +
801 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700802
803 list_add_tail(&g->list, &lio->glist[i]);
804 }
805
806 if (j != lio->tx_qsize) {
807 delete_glists(lio);
VSR Burru67e303e2017-03-06 18:45:59 -0800808 return -ENOMEM;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700809 }
810 }
811
812 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700813}
814
815/**
816 * \brief Print link information
817 * @param netdev network device
818 */
819static void print_link_info(struct net_device *netdev)
820{
821 struct lio *lio = GET_LIO(netdev);
822
823 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED) {
824 struct oct_link_info *linfo = &lio->linfo;
825
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700826 if (linfo->link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700827 netif_info(lio, link, lio->netdev, "%d Mbps %s Duplex UP\n",
828 linfo->link.s.speed,
829 (linfo->link.s.duplex) ? "Full" : "Half");
830 } else {
831 netif_info(lio, link, lio->netdev, "Link Down\n");
832 }
833 }
834}
835
836/**
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -0700837 * \brief Routine to notify MTU change
838 * @param work work_struct data structure
839 */
840static void octnet_link_status_change(struct work_struct *work)
841{
842 struct cavium_wk *wk = (struct cavium_wk *)work;
843 struct lio *lio = (struct lio *)wk->ctxptr;
844
845 rtnl_lock();
846 call_netdevice_notifiers(NETDEV_CHANGEMTU, lio->netdev);
847 rtnl_unlock();
848}
849
850/**
851 * \brief Sets up the mtu status change work
852 * @param netdev network device
853 */
854static inline int setup_link_status_change_wq(struct net_device *netdev)
855{
856 struct lio *lio = GET_LIO(netdev);
857 struct octeon_device *oct = lio->oct_dev;
858
859 lio->link_status_wq.wq = alloc_workqueue("link-status",
860 WQ_MEM_RECLAIM, 0);
861 if (!lio->link_status_wq.wq) {
862 dev_err(&oct->pci_dev->dev, "unable to create cavium link status wq\n");
863 return -1;
864 }
865 INIT_DELAYED_WORK(&lio->link_status_wq.wk.work,
866 octnet_link_status_change);
867 lio->link_status_wq.wk.ctxptr = lio;
868
869 return 0;
870}
871
872static inline void cleanup_link_status_change_wq(struct net_device *netdev)
873{
874 struct lio *lio = GET_LIO(netdev);
875
876 if (lio->link_status_wq.wq) {
877 cancel_delayed_work_sync(&lio->link_status_wq.wk.work);
878 destroy_workqueue(lio->link_status_wq.wq);
879 }
880}
881
882/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700883 * \brief Update link status
884 * @param netdev network device
885 * @param ls link status structure
886 *
887 * Called on receipt of a link status response from the core application to
888 * update each interface's link status.
889 */
890static inline void update_link_status(struct net_device *netdev,
891 union oct_link_status *ls)
892{
893 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700894 int changed = (lio->linfo.link.u64 != ls->u64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700895
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700896 lio->linfo.link.u64 = ls->u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700897
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700898 if ((lio->intf_open) && (changed)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700899 print_link_info(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700900 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700901
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700902 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700903 netif_carrier_on(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700904 txqs_wake(netdev);
905 } else {
906 netif_carrier_off(netdev);
907 stop_txq(netdev);
908 }
909 }
910}
911
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700912/* Runs in interrupt context. */
913static void update_txq_status(struct octeon_device *oct, int iq_num)
914{
915 struct net_device *netdev;
916 struct lio *lio;
917 struct octeon_instr_queue *iq = oct->instr_queue[iq_num];
918
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700919 netdev = oct->props[iq->ifidx].netdev;
920
921 /* This is needed because the first IQ does not have
922 * a netdev associated with it.
923 */
924 if (!netdev)
925 return;
926
927 lio = GET_LIO(netdev);
928 if (netif_is_multiqueue(netdev)) {
929 if (__netif_subqueue_stopped(netdev, iq->q_index) &&
930 lio->linfo.link.s.link_up &&
931 (!octnet_iq_is_full(oct, iq_num))) {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700932 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq_num,
933 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700934 netif_wake_subqueue(netdev, iq->q_index);
935 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700936 if (!octnet_iq_is_full(oct, lio->txq)) {
937 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev,
938 lio->txq,
939 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700940 wake_q(netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700941 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700942 }
943 }
944}
945
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700946static
947int liquidio_schedule_msix_droq_pkt_handler(struct octeon_droq *droq, u64 ret)
948{
949 struct octeon_device *oct = droq->oct_dev;
950 struct octeon_device_priv *oct_priv =
951 (struct octeon_device_priv *)oct->priv;
952
953 if (droq->ops.poll_mode) {
954 droq->ops.napi_fn(droq);
955 } else {
956 if (ret & MSIX_PO_INT) {
957 tasklet_schedule(&oct_priv->droq_tasklet);
958 return 1;
959 }
960 /* this will be flushed periodically by check iq db */
961 if (ret & MSIX_PI_INT)
962 return 0;
963 }
964 return 0;
965}
966
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700967/**
968 * \brief Droq packet processor sceduler
969 * @param oct octeon device
970 */
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -0700971static void liquidio_schedule_droq_pkt_handlers(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700972{
973 struct octeon_device_priv *oct_priv =
974 (struct octeon_device_priv *)oct->priv;
975 u64 oq_no;
976 struct octeon_droq *droq;
977
978 if (oct->int_status & OCT_DEV_INTR_PKT_DATA) {
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700979 for (oq_no = 0; oq_no < MAX_OCTEON_OUTPUT_QUEUES(oct);
980 oq_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800981 if (!(oct->droq_intr & BIT_ULL(oq_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700982 continue;
983
984 droq = oct->droq[oq_no];
985
986 if (droq->ops.poll_mode) {
987 droq->ops.napi_fn(droq);
988 oct_priv->napi_mask |= (1 << oq_no);
989 } else {
990 tasklet_schedule(&oct_priv->droq_tasklet);
991 }
992 }
993 }
994}
995
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700996static irqreturn_t
997liquidio_msix_intr_handler(int irq __attribute__((unused)), void *dev)
998{
999 u64 ret;
1000 struct octeon_ioq_vector *ioq_vector = (struct octeon_ioq_vector *)dev;
1001 struct octeon_device *oct = ioq_vector->oct_dev;
1002 struct octeon_droq *droq = oct->droq[ioq_vector->droq_index];
1003
1004 ret = oct->fn_list.msix_interrupt_handler(ioq_vector);
1005
1006 if ((ret & MSIX_PO_INT) || (ret & MSIX_PI_INT))
1007 liquidio_schedule_msix_droq_pkt_handler(droq, ret);
1008
1009 return IRQ_HANDLED;
1010}
1011
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001012/**
1013 * \brief Interrupt handler for octeon
1014 * @param irq unused
1015 * @param dev octeon device
1016 */
1017static
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001018irqreturn_t liquidio_legacy_intr_handler(int irq __attribute__((unused)),
1019 void *dev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001020{
1021 struct octeon_device *oct = (struct octeon_device *)dev;
1022 irqreturn_t ret;
1023
1024 /* Disable our interrupts for the duration of ISR */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001025 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001026
1027 ret = oct->fn_list.process_interrupt_regs(oct);
1028
1029 if (ret == IRQ_HANDLED)
1030 liquidio_schedule_droq_pkt_handlers(oct);
1031
1032 /* Re-enable our interrupts */
1033 if (!(atomic_read(&oct->status) == OCT_DEV_IN_RESET))
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001034 oct->fn_list.enable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001035
1036 return ret;
1037}
1038
1039/**
1040 * \brief Setup interrupt for octeon device
1041 * @param oct octeon device
1042 *
1043 * Enable interrupt in Octeon device as given in the PCI interrupt mask.
1044 */
1045static int octeon_setup_interrupt(struct octeon_device *oct)
1046{
1047 int irqret, err;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001048 struct msix_entry *msix_entries;
1049 int i;
1050 int num_ioq_vectors;
1051 int num_alloc_ioq_vectors;
Rick Farrington0c88a762017-03-13 12:58:04 -07001052 char *queue_irq_names = NULL;
1053 char *aux_irq_name = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001054
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001055 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
1056 oct->num_msix_irqs = oct->sriov_info.num_pf_rings;
1057 /* one non ioq interrupt for handling sli_mac_pf_int_sum */
1058 oct->num_msix_irqs += 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001059
Rick Farrington0c88a762017-03-13 12:58:04 -07001060 /* allocate storage for the names assigned to each irq */
1061 oct->irq_name_storage =
1062 kcalloc((MAX_IOQ_INTERRUPTS_PER_PF + 1), INTRNAMSIZ,
1063 GFP_KERNEL);
1064 if (!oct->irq_name_storage) {
1065 dev_err(&oct->pci_dev->dev, "Irq name storage alloc failed...\n");
1066 return -ENOMEM;
1067 }
1068
1069 queue_irq_names = oct->irq_name_storage;
1070 aux_irq_name = &queue_irq_names
1071 [IRQ_NAME_OFF(MAX_IOQ_INTERRUPTS_PER_PF)];
1072
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001073 oct->msix_entries = kcalloc(
1074 oct->num_msix_irqs, sizeof(struct msix_entry), GFP_KERNEL);
Rick Farrington0c88a762017-03-13 12:58:04 -07001075 if (!oct->msix_entries) {
1076 dev_err(&oct->pci_dev->dev, "Memory Alloc failed...\n");
1077 kfree(oct->irq_name_storage);
1078 oct->irq_name_storage = NULL;
1079 return -ENOMEM;
1080 }
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001081
1082 msix_entries = (struct msix_entry *)oct->msix_entries;
1083 /*Assumption is that pf msix vectors start from pf srn to pf to
1084 * trs and not from 0. if not change this code
1085 */
1086 for (i = 0; i < oct->num_msix_irqs - 1; i++)
1087 msix_entries[i].entry = oct->sriov_info.pf_srn + i;
1088 msix_entries[oct->num_msix_irqs - 1].entry =
1089 oct->sriov_info.trs;
1090 num_alloc_ioq_vectors = pci_enable_msix_range(
1091 oct->pci_dev, msix_entries,
1092 oct->num_msix_irqs,
1093 oct->num_msix_irqs);
1094 if (num_alloc_ioq_vectors < 0) {
1095 dev_err(&oct->pci_dev->dev, "unable to Allocate MSI-X interrupts\n");
1096 kfree(oct->msix_entries);
1097 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001098 kfree(oct->irq_name_storage);
1099 oct->irq_name_storage = NULL;
1100 return num_alloc_ioq_vectors;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001101 }
1102 dev_dbg(&oct->pci_dev->dev, "OCTEON: Enough MSI-X interrupts are allocated...\n");
1103
1104 num_ioq_vectors = oct->num_msix_irqs;
1105
1106 /** For PF, there is one non-ioq interrupt handler */
1107 num_ioq_vectors -= 1;
Rick Farrington0c88a762017-03-13 12:58:04 -07001108
1109 snprintf(aux_irq_name, INTRNAMSIZ,
1110 "LiquidIO%u-pf%u-aux", oct->octeon_id, oct->pf_num);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001111 irqret = request_irq(msix_entries[num_ioq_vectors].vector,
Rick Farrington0c88a762017-03-13 12:58:04 -07001112 liquidio_legacy_intr_handler, 0,
1113 aux_irq_name, oct);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001114 if (irqret) {
1115 dev_err(&oct->pci_dev->dev,
1116 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1117 irqret);
1118 pci_disable_msix(oct->pci_dev);
1119 kfree(oct->msix_entries);
1120 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001121 kfree(oct->irq_name_storage);
1122 oct->irq_name_storage = NULL;
1123 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001124 }
1125
1126 for (i = 0; i < num_ioq_vectors; i++) {
Rick Farrington0c88a762017-03-13 12:58:04 -07001127 snprintf(&queue_irq_names[IRQ_NAME_OFF(i)], INTRNAMSIZ,
1128 "LiquidIO%u-pf%u-rxtx-%u",
1129 oct->octeon_id, oct->pf_num, i);
1130
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001131 irqret = request_irq(msix_entries[i].vector,
1132 liquidio_msix_intr_handler, 0,
Rick Farrington0c88a762017-03-13 12:58:04 -07001133 &queue_irq_names[IRQ_NAME_OFF(i)],
1134 &oct->ioq_vector[i]);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001135 if (irqret) {
1136 dev_err(&oct->pci_dev->dev,
1137 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1138 irqret);
1139 /** Freeing the non-ioq irq vector here . */
1140 free_irq(msix_entries[num_ioq_vectors].vector,
1141 oct);
1142
1143 while (i) {
1144 i--;
1145 /** clearing affinity mask. */
1146 irq_set_affinity_hint(
1147 msix_entries[i].vector, NULL);
1148 free_irq(msix_entries[i].vector,
1149 &oct->ioq_vector[i]);
1150 }
1151 pci_disable_msix(oct->pci_dev);
1152 kfree(oct->msix_entries);
1153 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001154 kfree(oct->irq_name_storage);
1155 oct->irq_name_storage = NULL;
1156 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001157 }
1158 oct->ioq_vector[i].vector = msix_entries[i].vector;
1159 /* assign the cpu mask for this msix interrupt vector */
1160 irq_set_affinity_hint(
1161 msix_entries[i].vector,
1162 (&oct->ioq_vector[i].affinity_mask));
1163 }
1164 dev_dbg(&oct->pci_dev->dev, "OCTEON[%d]: MSI-X enabled\n",
1165 oct->octeon_id);
1166 } else {
1167 err = pci_enable_msi(oct->pci_dev);
1168 if (err)
1169 dev_warn(&oct->pci_dev->dev, "Reverting to legacy interrupts. Error: %d\n",
1170 err);
1171 else
1172 oct->flags |= LIO_FLAG_MSI_ENABLED;
1173
Rick Farrington0c88a762017-03-13 12:58:04 -07001174 /* allocate storage for the names assigned to the irq */
1175 oct->irq_name_storage = kcalloc(1, INTRNAMSIZ, GFP_KERNEL);
1176 if (!oct->irq_name_storage)
1177 return -ENOMEM;
1178
1179 queue_irq_names = oct->irq_name_storage;
1180
1181 snprintf(&queue_irq_names[IRQ_NAME_OFF(0)], INTRNAMSIZ,
1182 "LiquidIO%u-pf%u-rxtx-%u",
1183 oct->octeon_id, oct->pf_num, 0);
1184
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001185 irqret = request_irq(oct->pci_dev->irq,
Rick Farrington0c88a762017-03-13 12:58:04 -07001186 liquidio_legacy_intr_handler,
1187 IRQF_SHARED,
1188 &queue_irq_names[IRQ_NAME_OFF(0)], oct);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001189 if (irqret) {
1190 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1191 pci_disable_msi(oct->pci_dev);
1192 dev_err(&oct->pci_dev->dev, "Request IRQ failed with code: %d\n",
1193 irqret);
Rick Farrington0c88a762017-03-13 12:58:04 -07001194 kfree(oct->irq_name_storage);
1195 oct->irq_name_storage = NULL;
1196 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001197 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001198 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001199 return 0;
1200}
1201
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001202static int liquidio_watchdog(void *param)
1203{
1204 u64 wdog;
1205 u16 mask_of_stuck_cores = 0;
1206 u16 mask_of_crashed_cores = 0;
1207 int core_num;
1208 u8 core_is_stuck[LIO_MAX_CORES];
1209 u8 core_crashed[LIO_MAX_CORES];
1210 struct octeon_device *oct = param;
1211
1212 memset(core_is_stuck, 0, sizeof(core_is_stuck));
1213 memset(core_crashed, 0, sizeof(core_crashed));
1214
1215 while (!kthread_should_stop()) {
1216 mask_of_crashed_cores =
1217 (u16)octeon_read_csr64(oct, CN23XX_SLI_SCRATCH2);
1218
1219 for (core_num = 0; core_num < LIO_MAX_CORES; core_num++) {
1220 if (!core_is_stuck[core_num]) {
1221 wdog = lio_pci_readq(oct, CIU3_WDOG(core_num));
1222
1223 /* look at watchdog state field */
1224 wdog &= CIU3_WDOG_MASK;
1225 if (wdog) {
1226 /* this watchdog timer has expired */
1227 core_is_stuck[core_num] =
1228 LIO_MONITOR_WDOG_EXPIRE;
1229 mask_of_stuck_cores |= (1 << core_num);
1230 }
1231 }
1232
1233 if (!core_crashed[core_num])
1234 core_crashed[core_num] =
1235 (mask_of_crashed_cores >> core_num) & 1;
1236 }
1237
1238 if (mask_of_stuck_cores) {
1239 for (core_num = 0; core_num < LIO_MAX_CORES;
1240 core_num++) {
1241 if (core_is_stuck[core_num] == 1) {
1242 dev_err(&oct->pci_dev->dev,
1243 "ERROR: Octeon core %d is stuck!\n",
1244 core_num);
1245 /* 2 means we have printk'd an error
1246 * so no need to repeat the same printk
1247 */
1248 core_is_stuck[core_num] =
1249 LIO_MONITOR_CORE_STUCK_MSGD;
1250 }
1251 }
1252 }
1253
1254 if (mask_of_crashed_cores) {
1255 for (core_num = 0; core_num < LIO_MAX_CORES;
1256 core_num++) {
1257 if (core_crashed[core_num] == 1) {
1258 dev_err(&oct->pci_dev->dev,
1259 "ERROR: Octeon core %d crashed! See oct-fwdump for details.\n",
1260 core_num);
1261 /* 2 means we have printk'd an error
1262 * so no need to repeat the same printk
1263 */
1264 core_crashed[core_num] =
1265 LIO_MONITOR_CORE_STUCK_MSGD;
1266 }
1267 }
1268 }
1269#ifdef CONFIG_MODULE_UNLOAD
1270 if (mask_of_stuck_cores || mask_of_crashed_cores) {
1271 /* make module refcount=0 so that rmmod will work */
1272 long refcount;
1273
1274 refcount = module_refcount(THIS_MODULE);
1275
1276 while (refcount > 0) {
1277 module_put(THIS_MODULE);
1278 refcount = module_refcount(THIS_MODULE);
1279 }
1280
1281 /* compensate for and withstand an unlikely (but still
1282 * possible) race condition
1283 */
1284 while (refcount < 0) {
1285 try_module_get(THIS_MODULE);
1286 refcount = module_refcount(THIS_MODULE);
1287 }
1288 }
1289#endif
1290 /* sleep for two seconds */
1291 set_current_state(TASK_INTERRUPTIBLE);
1292 schedule_timeout(2 * HZ);
1293 }
1294
1295 return 0;
1296}
1297
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001298/**
1299 * \brief PCI probe handler
1300 * @param pdev PCI device structure
1301 * @param ent unused
1302 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001303static int
1304liquidio_probe(struct pci_dev *pdev,
1305 const struct pci_device_id *ent __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001306{
1307 struct octeon_device *oct_dev = NULL;
1308 struct handshake *hs;
1309
1310 oct_dev = octeon_allocate_device(pdev->device,
1311 sizeof(struct octeon_device_priv));
1312 if (!oct_dev) {
1313 dev_err(&pdev->dev, "Unable to allocate device\n");
1314 return -ENOMEM;
1315 }
1316
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001317 if (pdev->device == OCTEON_CN23XX_PF_VID)
1318 oct_dev->msix_on = LIO_FLAG_MSIX_ENABLED;
1319
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001320 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
1321 (u32)pdev->vendor, (u32)pdev->device);
1322
1323 /* Assign octeon_device for this device to the private data area. */
1324 pci_set_drvdata(pdev, oct_dev);
1325
1326 /* set linux specific device pointer */
1327 oct_dev->pci_dev = (void *)pdev;
1328
1329 hs = &handshake[oct_dev->octeon_id];
1330 init_completion(&hs->init);
1331 init_completion(&hs->started);
1332 hs->pci_dev = pdev;
1333
1334 if (oct_dev->octeon_id == 0)
1335 /* first LiquidIO NIC is detected */
1336 complete(&first_stage);
1337
1338 if (octeon_device_init(oct_dev)) {
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001339 complete(&hs->init);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001340 liquidio_remove(pdev);
1341 return -ENOMEM;
1342 }
1343
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001344 if (OCTEON_CN23XX_PF(oct_dev)) {
1345 u64 scratch1;
1346 u8 bus, device, function;
1347
1348 scratch1 = octeon_read_csr64(oct_dev, CN23XX_SLI_SCRATCH1);
1349 if (!(scratch1 & 4ULL)) {
1350 /* Bit 2 of SLI_SCRATCH_1 is a flag that indicates that
1351 * the lio watchdog kernel thread is running for this
1352 * NIC. Each NIC gets one watchdog kernel thread.
1353 */
1354 scratch1 |= 4ULL;
1355 octeon_write_csr64(oct_dev, CN23XX_SLI_SCRATCH1,
1356 scratch1);
1357
1358 bus = pdev->bus->number;
1359 device = PCI_SLOT(pdev->devfn);
1360 function = PCI_FUNC(pdev->devfn);
1361 oct_dev->watchdog_task = kthread_create(
1362 liquidio_watchdog, oct_dev,
1363 "liowd/%02hhx:%02hhx.%hhx", bus, device, function);
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001364 if (!IS_ERR(oct_dev->watchdog_task)) {
1365 wake_up_process(oct_dev->watchdog_task);
1366 } else {
1367 oct_dev->watchdog_task = NULL;
1368 dev_err(&oct_dev->pci_dev->dev,
1369 "failed to create kernel_thread\n");
1370 liquidio_remove(pdev);
1371 return -1;
1372 }
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001373 }
1374 }
1375
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001376 oct_dev->rx_pause = 1;
1377 oct_dev->tx_pause = 1;
1378
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001379 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
1380
1381 return 0;
1382}
1383
1384/**
1385 *\brief Destroy resources associated with octeon device
1386 * @param pdev PCI device structure
1387 * @param ent unused
1388 */
1389static void octeon_destroy_resources(struct octeon_device *oct)
1390{
1391 int i;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001392 struct msix_entry *msix_entries;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001393 struct octeon_device_priv *oct_priv =
1394 (struct octeon_device_priv *)oct->priv;
1395
1396 struct handshake *hs;
1397
1398 switch (atomic_read(&oct->status)) {
1399 case OCT_DEV_RUNNING:
1400 case OCT_DEV_CORE_OK:
1401
1402 /* No more instructions will be forwarded. */
1403 atomic_set(&oct->status, OCT_DEV_IN_RESET);
1404
1405 oct->app_mode = CVM_DRV_INVALID_APP;
1406 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
1407 lio_get_state_string(&oct->status));
1408
1409 schedule_timeout_uninterruptible(HZ / 10);
1410
1411 /* fallthrough */
1412 case OCT_DEV_HOST_OK:
1413
1414 /* fallthrough */
1415 case OCT_DEV_CONSOLE_INIT_DONE:
1416 /* Remove any consoles */
1417 octeon_remove_consoles(oct);
1418
1419 /* fallthrough */
1420 case OCT_DEV_IO_QUEUES_DONE:
1421 if (wait_for_pending_requests(oct))
1422 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
1423
1424 if (lio_wait_for_instr_fetch(oct))
1425 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
1426
1427 /* Disable the input and output queues now. No more packets will
1428 * arrive from Octeon, but we should wait for all packet
1429 * processing to finish.
1430 */
1431 oct->fn_list.disable_io_queues(oct);
1432
1433 if (lio_wait_for_oq_pkts(oct))
1434 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1435
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001436 /* fallthrough */
1437 case OCT_DEV_INTR_SET_DONE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001438 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001439 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001440
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001441 if (oct->msix_on) {
1442 msix_entries = (struct msix_entry *)oct->msix_entries;
1443 for (i = 0; i < oct->num_msix_irqs - 1; i++) {
1444 /* clear the affinity_cpumask */
1445 irq_set_affinity_hint(msix_entries[i].vector,
1446 NULL);
1447 free_irq(msix_entries[i].vector,
1448 &oct->ioq_vector[i]);
1449 }
1450 /* non-iov vector's argument is oct struct */
1451 free_irq(msix_entries[i].vector, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001452
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001453 pci_disable_msix(oct->pci_dev);
1454 kfree(oct->msix_entries);
1455 oct->msix_entries = NULL;
1456 } else {
1457 /* Release the interrupt line */
1458 free_irq(oct->pci_dev->irq, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001459
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001460 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1461 pci_disable_msi(oct->pci_dev);
1462 }
1463
Rick Farrington0c88a762017-03-13 12:58:04 -07001464 kfree(oct->irq_name_storage);
1465 oct->irq_name_storage = NULL;
1466
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001467 /* fallthrough */
1468 case OCT_DEV_MSIX_ALLOC_VECTOR_DONE:
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001469 if (OCTEON_CN23XX_PF(oct))
1470 octeon_free_ioq_vector(oct);
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08001471
1472 /* fallthrough */
1473 case OCT_DEV_MBOX_SETUP_DONE:
1474 if (OCTEON_CN23XX_PF(oct))
1475 oct->fn_list.free_mbox(oct);
1476
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001477 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001478 case OCT_DEV_IN_RESET:
1479 case OCT_DEV_DROQ_INIT_DONE:
Raghu Vatsavayi763185a2016-11-14 15:54:45 -08001480 /* Wait for any pending operations */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001481 mdelay(100);
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001482 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001483 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001484 continue;
1485 octeon_delete_droq(oct, i);
1486 }
1487
1488 /* Force any pending handshakes to complete */
1489 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1490 hs = &handshake[i];
1491
1492 if (hs->pci_dev) {
1493 handshake[oct->octeon_id].init_ok = 0;
1494 complete(&handshake[oct->octeon_id].init);
1495 handshake[oct->octeon_id].started_ok = 0;
1496 complete(&handshake[oct->octeon_id].started);
1497 }
1498 }
1499
1500 /* fallthrough */
1501 case OCT_DEV_RESP_LIST_INIT_DONE:
1502 octeon_delete_response_list(oct);
1503
1504 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001505 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001506 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001507 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001508 continue;
1509 octeon_delete_instr_queue(oct, i);
1510 }
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08001511#ifdef CONFIG_PCI_IOV
1512 if (oct->sriov_info.sriov_enabled)
1513 pci_disable_sriov(oct->pci_dev);
1514#endif
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001515 /* fallthrough */
1516 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1517 octeon_free_sc_buffer_pool(oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001518
1519 /* fallthrough */
1520 case OCT_DEV_DISPATCH_INIT_DONE:
1521 octeon_delete_dispatch_list(oct);
1522 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1523
1524 /* fallthrough */
1525 case OCT_DEV_PCI_MAP_DONE:
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001526 /* Soft reset the octeon device before exiting */
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07001527 if ((!OCTEON_CN23XX_PF(oct)) || !oct->octeon_id)
1528 oct->fn_list.soft_reset(oct);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001529
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001530 octeon_unmap_pci_barx(oct, 0);
1531 octeon_unmap_pci_barx(oct, 1);
1532
1533 /* fallthrough */
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001534 case OCT_DEV_PCI_ENABLE_DONE:
1535 pci_clear_master(oct->pci_dev);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001536 /* Disable the device, releasing the PCI INT */
1537 pci_disable_device(oct->pci_dev);
1538
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001539 /* fallthrough */
1540 case OCT_DEV_BEGIN_STATE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001541 /* Nothing to be done here either */
1542 break;
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07001543 } /* end switch (oct->status) */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001544
1545 tasklet_kill(&oct_priv->droq_tasklet);
1546}
1547
1548/**
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001549 * \brief Callback for rx ctrl
1550 * @param status status of request
1551 * @param buf pointer to resp structure
1552 */
1553static void rx_ctl_callback(struct octeon_device *oct,
1554 u32 status,
1555 void *buf)
1556{
1557 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1558 struct liquidio_rx_ctl_context *ctx;
1559
1560 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1561
1562 oct = lio_get_device(ctx->octeon_id);
1563 if (status)
1564 dev_err(&oct->pci_dev->dev, "rx ctl instruction failed. Status: %llx\n",
1565 CVM_CAST64(status));
1566 WRITE_ONCE(ctx->cond, 1);
1567
1568 /* This barrier is required to be sure that the response has been
1569 * written fully before waking up the handler
1570 */
1571 wmb();
1572
1573 wake_up_interruptible(&ctx->wc);
1574}
1575
1576/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001577 * \brief Send Rx control command
1578 * @param lio per-network private data
1579 * @param start_stop whether to start or stop
1580 */
1581static void send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1582{
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001583 struct octeon_soft_command *sc;
1584 struct liquidio_rx_ctl_context *ctx;
1585 union octnet_cmd *ncmd;
1586 int ctx_size = sizeof(struct liquidio_rx_ctl_context);
1587 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1588 int retval;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001589
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001590 if (oct->props[lio->ifidx].rx_on == start_stop)
1591 return;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001592
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001593 sc = (struct octeon_soft_command *)
1594 octeon_alloc_soft_command(oct, OCTNET_CMD_SIZE,
1595 16, ctx_size);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001596
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001597 ncmd = (union octnet_cmd *)sc->virtdptr;
1598 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1599
1600 WRITE_ONCE(ctx->cond, 0);
1601 ctx->octeon_id = lio_get_device_id(oct);
1602 init_waitqueue_head(&ctx->wc);
1603
1604 ncmd->u64 = 0;
1605 ncmd->s.cmd = OCTNET_CMD_RX_CTL;
1606 ncmd->s.param1 = start_stop;
1607
1608 octeon_swap_8B_data((u64 *)ncmd, (OCTNET_CMD_SIZE >> 3));
1609
1610 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
1611
1612 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
1613 OPCODE_NIC_CMD, 0, 0, 0);
1614
1615 sc->callback = rx_ctl_callback;
1616 sc->callback_arg = sc;
1617 sc->wait_time = 5000;
1618
1619 retval = octeon_send_soft_command(oct, sc);
1620 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001621 netif_info(lio, rx_err, lio->netdev, "Failed to send RX Control message\n");
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001622 } else {
1623 /* Sleep on a wait queue till the cond flag indicates that the
1624 * response arrived or timed-out.
1625 */
1626 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR)
1627 return;
1628 oct->props[lio->ifidx].rx_on = start_stop;
1629 }
1630
1631 octeon_free_soft_command(oct, sc);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001632}
1633
1634/**
1635 * \brief Destroy NIC device interface
1636 * @param oct octeon device
1637 * @param ifidx which interface to destroy
1638 *
1639 * Cleanup associated with each interface for an Octeon device when NIC
1640 * module is being unloaded or if initialization fails during load.
1641 */
1642static void liquidio_destroy_nic_device(struct octeon_device *oct, int ifidx)
1643{
1644 struct net_device *netdev = oct->props[ifidx].netdev;
1645 struct lio *lio;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001646 struct napi_struct *napi, *n;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001647
1648 if (!netdev) {
1649 dev_err(&oct->pci_dev->dev, "%s No netdevice ptr for index %d\n",
1650 __func__, ifidx);
1651 return;
1652 }
1653
1654 lio = GET_LIO(netdev);
1655
1656 dev_dbg(&oct->pci_dev->dev, "NIC device cleanup\n");
1657
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001658 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING)
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001659 liquidio_stop(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001660
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001661 if (oct->props[lio->ifidx].napi_enabled == 1) {
1662 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1663 napi_disable(napi);
1664
1665 oct->props[lio->ifidx].napi_enabled = 0;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001666
1667 if (OCTEON_CN23XX_PF(oct))
1668 oct->droq[0]->ops.poll_mode = 0;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001669 }
1670
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001671 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
1672 unregister_netdev(netdev);
1673
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001674 cleanup_link_status_change_wq(netdev);
1675
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001676 delete_glists(lio);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001677
1678 free_netdev(netdev);
1679
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07001680 oct->props[ifidx].gmxport = -1;
1681
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001682 oct->props[ifidx].netdev = NULL;
1683}
1684
1685/**
1686 * \brief Stop complete NIC functionality
1687 * @param oct octeon device
1688 */
1689static int liquidio_stop_nic_module(struct octeon_device *oct)
1690{
1691 int i, j;
1692 struct lio *lio;
1693
1694 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1695 if (!oct->ifcount) {
1696 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1697 return 1;
1698 }
1699
Raghu Vatsavayi60441882016-06-21 22:53:08 -07001700 spin_lock_bh(&oct->cmd_resp_wqlock);
1701 oct->cmd_resp_state = OCT_DRV_OFFLINE;
1702 spin_unlock_bh(&oct->cmd_resp_wqlock);
1703
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001704 for (i = 0; i < oct->ifcount; i++) {
1705 lio = GET_LIO(oct->props[i].netdev);
1706 for (j = 0; j < lio->linfo.num_rxpciq; j++)
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001707 octeon_unregister_droq_ops(oct,
1708 lio->linfo.rxpciq[j].s.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001709 }
1710
1711 for (i = 0; i < oct->ifcount; i++)
1712 liquidio_destroy_nic_device(oct, i);
1713
1714 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1715 return 0;
1716}
1717
1718/**
1719 * \brief Cleans up resources at unload time
1720 * @param pdev PCI device structure
1721 */
1722static void liquidio_remove(struct pci_dev *pdev)
1723{
1724 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1725
1726 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1727
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001728 if (oct_dev->watchdog_task)
1729 kthread_stop(oct_dev->watchdog_task);
1730
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001731 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1732 liquidio_stop_nic_module(oct_dev);
1733
1734 /* Reset the octeon device and cleanup all memory allocated for
1735 * the octeon device by driver.
1736 */
1737 octeon_destroy_resources(oct_dev);
1738
1739 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1740
1741 /* This octeon device has been removed. Update the global
1742 * data structure to reflect this. Free the device structure.
1743 */
1744 octeon_free_device_mem(oct_dev);
1745}
1746
1747/**
1748 * \brief Identify the Octeon device and to map the BAR address space
1749 * @param oct octeon device
1750 */
1751static int octeon_chip_specific_setup(struct octeon_device *oct)
1752{
1753 u32 dev_id, rev_id;
1754 int ret = 1;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001755 char *s;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001756
1757 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1758 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1759 oct->rev_id = rev_id & 0xff;
1760
1761 switch (dev_id) {
1762 case OCTEON_CN68XX_PCIID:
1763 oct->chip_id = OCTEON_CN68XX;
1764 ret = lio_setup_cn68xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001765 s = "CN68XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001766 break;
1767
1768 case OCTEON_CN66XX_PCIID:
1769 oct->chip_id = OCTEON_CN66XX;
1770 ret = lio_setup_cn66xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001771 s = "CN66XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001772 break;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001773
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001774 case OCTEON_CN23XX_PCIID_PF:
1775 oct->chip_id = OCTEON_CN23XX_PF_VID;
1776 ret = setup_cn23xx_octeon_pf_device(oct);
1777 s = "CN23XX";
1778 break;
1779
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001780 default:
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001781 s = "?";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001782 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1783 dev_id);
1784 }
1785
1786 if (!ret)
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001787 dev_info(&oct->pci_dev->dev, "%s PASS%d.%d %s Version: %s\n", s,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001788 OCTEON_MAJOR_REV(oct),
1789 OCTEON_MINOR_REV(oct),
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001790 octeon_get_conf(oct)->card_name,
1791 LIQUIDIO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001792
1793 return ret;
1794}
1795
1796/**
1797 * \brief PCI initialization for each Octeon device.
1798 * @param oct octeon device
1799 */
1800static int octeon_pci_os_setup(struct octeon_device *oct)
1801{
1802 /* setup PCI stuff first */
1803 if (pci_enable_device(oct->pci_dev)) {
1804 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1805 return 1;
1806 }
1807
1808 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1809 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001810 pci_disable_device(oct->pci_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001811 return 1;
1812 }
1813
1814 /* Enable PCI DMA Master. */
1815 pci_set_master(oct->pci_dev);
1816
1817 return 0;
1818}
1819
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001820static inline int skb_iq(struct lio *lio, struct sk_buff *skb)
1821{
1822 int q = 0;
1823
1824 if (netif_is_multiqueue(lio->netdev))
1825 q = skb->queue_mapping % lio->linfo.num_txpciq;
1826
1827 return q;
1828}
1829
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001830/**
1831 * \brief Check Tx queue state for a given network buffer
1832 * @param lio per-network private data
1833 * @param skb network buffer
1834 */
1835static inline int check_txq_state(struct lio *lio, struct sk_buff *skb)
1836{
1837 int q = 0, iq = 0;
1838
1839 if (netif_is_multiqueue(lio->netdev)) {
1840 q = skb->queue_mapping;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001841 iq = lio->linfo.txpciq[(q % (lio->linfo.num_txpciq))].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001842 } else {
1843 iq = lio->txq;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001844 q = iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001845 }
1846
1847 if (octnet_iq_is_full(lio->oct_dev, iq))
1848 return 0;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001849
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001850 if (__netif_subqueue_stopped(lio->netdev, q)) {
1851 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq, tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001852 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001853 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001854 return 1;
1855}
1856
1857/**
1858 * \brief Unmap and free network buffer
1859 * @param buf buffer
1860 */
1861static void free_netbuf(void *buf)
1862{
1863 struct sk_buff *skb;
1864 struct octnet_buf_free_info *finfo;
1865 struct lio *lio;
1866
1867 finfo = (struct octnet_buf_free_info *)buf;
1868 skb = finfo->skb;
1869 lio = finfo->lio;
1870
1871 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1872 DMA_TO_DEVICE);
1873
1874 check_txq_state(lio, skb);
1875
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001876 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001877}
1878
1879/**
1880 * \brief Unmap and free gather buffer
1881 * @param buf buffer
1882 */
1883static void free_netsgbuf(void *buf)
1884{
1885 struct octnet_buf_free_info *finfo;
1886 struct sk_buff *skb;
1887 struct lio *lio;
1888 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001889 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001890
1891 finfo = (struct octnet_buf_free_info *)buf;
1892 skb = finfo->skb;
1893 lio = finfo->lio;
1894 g = finfo->g;
1895 frags = skb_shinfo(skb)->nr_frags;
1896
1897 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1898 g->sg[0].ptr[0], (skb->len - skb->data_len),
1899 DMA_TO_DEVICE);
1900
1901 i = 1;
1902 while (frags--) {
1903 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1904
1905 pci_unmap_page((lio->oct_dev)->pci_dev,
1906 g->sg[(i >> 2)].ptr[(i & 3)],
1907 frag->size, DMA_TO_DEVICE);
1908 i++;
1909 }
1910
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001911 iq = skb_iq(lio, skb);
1912 spin_lock(&lio->glist_lock[iq]);
1913 list_add_tail(&g->list, &lio->glist[iq]);
1914 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001915
1916 check_txq_state(lio, skb); /* mq support: sub-queue state check */
1917
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001918 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001919}
1920
1921/**
1922 * \brief Unmap and free gather buffer with response
1923 * @param buf buffer
1924 */
1925static void free_netsgbuf_with_resp(void *buf)
1926{
1927 struct octeon_soft_command *sc;
1928 struct octnet_buf_free_info *finfo;
1929 struct sk_buff *skb;
1930 struct lio *lio;
1931 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001932 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001933
1934 sc = (struct octeon_soft_command *)buf;
1935 skb = (struct sk_buff *)sc->callback_arg;
1936 finfo = (struct octnet_buf_free_info *)&skb->cb;
1937
1938 lio = finfo->lio;
1939 g = finfo->g;
1940 frags = skb_shinfo(skb)->nr_frags;
1941
1942 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1943 g->sg[0].ptr[0], (skb->len - skb->data_len),
1944 DMA_TO_DEVICE);
1945
1946 i = 1;
1947 while (frags--) {
1948 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1949
1950 pci_unmap_page((lio->oct_dev)->pci_dev,
1951 g->sg[(i >> 2)].ptr[(i & 3)],
1952 frag->size, DMA_TO_DEVICE);
1953 i++;
1954 }
1955
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001956 iq = skb_iq(lio, skb);
1957
1958 spin_lock(&lio->glist_lock[iq]);
1959 list_add_tail(&g->list, &lio->glist[iq]);
1960 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001961
1962 /* Don't free the skb yet */
1963
1964 check_txq_state(lio, skb);
1965}
1966
1967/**
1968 * \brief Adjust ptp frequency
1969 * @param ptp PTP clock info
1970 * @param ppb how much to adjust by, in parts-per-billion
1971 */
1972static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
1973{
1974 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1975 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1976 u64 comp, delta;
1977 unsigned long flags;
1978 bool neg_adj = false;
1979
1980 if (ppb < 0) {
1981 neg_adj = true;
1982 ppb = -ppb;
1983 }
1984
1985 /* The hardware adds the clock compensation value to the
1986 * PTP clock on every coprocessor clock cycle, so we
1987 * compute the delta in terms of coprocessor clocks.
1988 */
1989 delta = (u64)ppb << 32;
1990 do_div(delta, oct->coproc_clock_rate);
1991
1992 spin_lock_irqsave(&lio->ptp_lock, flags);
1993 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
1994 if (neg_adj)
1995 comp -= delta;
1996 else
1997 comp += delta;
1998 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1999 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2000
2001 return 0;
2002}
2003
2004/**
2005 * \brief Adjust ptp time
2006 * @param ptp PTP clock info
2007 * @param delta how much to adjust by, in nanosecs
2008 */
2009static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
2010{
2011 unsigned long flags;
2012 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2013
2014 spin_lock_irqsave(&lio->ptp_lock, flags);
2015 lio->ptp_adjust += delta;
2016 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2017
2018 return 0;
2019}
2020
2021/**
2022 * \brief Get hardware clock time, including any adjustment
2023 * @param ptp PTP clock info
2024 * @param ts timespec
2025 */
2026static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
2027 struct timespec64 *ts)
2028{
2029 u64 ns;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002030 unsigned long flags;
2031 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2032 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2033
2034 spin_lock_irqsave(&lio->ptp_lock, flags);
2035 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
2036 ns += lio->ptp_adjust;
2037 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2038
Kefeng Wang286af312016-01-27 17:34:37 +08002039 *ts = ns_to_timespec64(ns);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002040
2041 return 0;
2042}
2043
2044/**
2045 * \brief Set hardware clock time. Reset adjustment
2046 * @param ptp PTP clock info
2047 * @param ts timespec
2048 */
2049static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
2050 const struct timespec64 *ts)
2051{
2052 u64 ns;
2053 unsigned long flags;
2054 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2055 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2056
2057 ns = timespec_to_ns(ts);
2058
2059 spin_lock_irqsave(&lio->ptp_lock, flags);
2060 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
2061 lio->ptp_adjust = 0;
2062 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2063
2064 return 0;
2065}
2066
2067/**
2068 * \brief Check if PTP is enabled
2069 * @param ptp PTP clock info
2070 * @param rq request
2071 * @param on is it on
2072 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002073static int
2074liquidio_ptp_enable(struct ptp_clock_info *ptp __attribute__((unused)),
2075 struct ptp_clock_request *rq __attribute__((unused)),
2076 int on __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002077{
2078 return -EOPNOTSUPP;
2079}
2080
2081/**
2082 * \brief Open PTP clock source
2083 * @param netdev network device
2084 */
2085static void oct_ptp_open(struct net_device *netdev)
2086{
2087 struct lio *lio = GET_LIO(netdev);
2088 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2089
2090 spin_lock_init(&lio->ptp_lock);
2091
2092 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
2093 lio->ptp_info.owner = THIS_MODULE;
2094 lio->ptp_info.max_adj = 250000000;
2095 lio->ptp_info.n_alarm = 0;
2096 lio->ptp_info.n_ext_ts = 0;
2097 lio->ptp_info.n_per_out = 0;
2098 lio->ptp_info.pps = 0;
2099 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
2100 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
2101 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
2102 lio->ptp_info.settime64 = liquidio_ptp_settime;
2103 lio->ptp_info.enable = liquidio_ptp_enable;
2104
2105 lio->ptp_adjust = 0;
2106
2107 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
2108 &oct->pci_dev->dev);
2109
2110 if (IS_ERR(lio->ptp_clock))
2111 lio->ptp_clock = NULL;
2112}
2113
2114/**
2115 * \brief Init PTP clock
2116 * @param oct octeon device
2117 */
2118static void liquidio_ptp_init(struct octeon_device *oct)
2119{
2120 u64 clock_comp, cfg;
2121
2122 clock_comp = (u64)NSEC_PER_SEC << 32;
2123 do_div(clock_comp, oct->coproc_clock_rate);
2124 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
2125
2126 /* Enable */
2127 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
2128 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
2129}
2130
2131/**
2132 * \brief Load firmware to device
2133 * @param oct octeon device
2134 *
2135 * Maps device to firmware filename, requests firmware, and downloads it
2136 */
2137static int load_firmware(struct octeon_device *oct)
2138{
2139 int ret = 0;
2140 const struct firmware *fw;
2141 char fw_name[LIO_MAX_FW_FILENAME_LEN];
2142 char *tmp_fw_type;
2143
2144 if (strncmp(fw_type, LIO_FW_NAME_TYPE_NONE,
2145 sizeof(LIO_FW_NAME_TYPE_NONE)) == 0) {
2146 dev_info(&oct->pci_dev->dev, "Skipping firmware load\n");
2147 return ret;
2148 }
2149
2150 if (fw_type[0] == '\0')
2151 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
2152 else
2153 tmp_fw_type = fw_type;
2154
2155 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
2156 octeon_get_conf(oct)->card_name, tmp_fw_type,
2157 LIO_FW_NAME_SUFFIX);
2158
2159 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
2160 if (ret) {
2161 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n.",
2162 fw_name);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002163 release_firmware(fw);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002164 return ret;
2165 }
2166
2167 ret = octeon_download_firmware(oct, fw->data, fw->size);
2168
2169 release_firmware(fw);
2170
2171 return ret;
2172}
2173
2174/**
2175 * \brief Setup output queue
2176 * @param oct octeon device
2177 * @param q_no which queue
2178 * @param num_descs how many descriptors
2179 * @param desc_size size of each descriptor
2180 * @param app_ctx application context
2181 */
2182static int octeon_setup_droq(struct octeon_device *oct, int q_no, int num_descs,
2183 int desc_size, void *app_ctx)
2184{
2185 int ret_val = 0;
2186
2187 dev_dbg(&oct->pci_dev->dev, "Creating Droq: %d\n", q_no);
2188 /* droq creation and local register settings. */
2189 ret_val = octeon_create_droq(oct, q_no, num_descs, desc_size, app_ctx);
Amitoj Kaur Chawla08a965e2016-02-04 19:25:13 +05302190 if (ret_val < 0)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002191 return ret_val;
2192
2193 if (ret_val == 1) {
2194 dev_dbg(&oct->pci_dev->dev, "Using default droq %d\n", q_no);
2195 return 0;
2196 }
2197 /* tasklet creation for the droq */
2198
2199 /* Enable the droq queues */
2200 octeon_set_droq_pkt_op(oct, q_no, 1);
2201
2202 /* Send Credit for Octeon Output queues. Credits are always
2203 * sent after the output queue is enabled.
2204 */
2205 writel(oct->droq[q_no]->max_count,
2206 oct->droq[q_no]->pkts_credit_reg);
2207
2208 return ret_val;
2209}
2210
2211/**
2212 * \brief Callback for getting interface configuration
2213 * @param status status of request
2214 * @param buf pointer to resp structure
2215 */
2216static void if_cfg_callback(struct octeon_device *oct,
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002217 u32 status __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002218 void *buf)
2219{
2220 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
2221 struct liquidio_if_cfg_resp *resp;
2222 struct liquidio_if_cfg_context *ctx;
2223
2224 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07002225 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002226
2227 oct = lio_get_device(ctx->octeon_id);
2228 if (resp->status)
Rick Farringtonc5b71e62017-03-17 11:23:08 -07002229 dev_err(&oct->pci_dev->dev, "nic if cfg instruction failed. Status: 0x%llx (0x%08x)\n",
2230 CVM_CAST64(resp->status), status);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002231 WRITE_ONCE(ctx->cond, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002232
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002233 snprintf(oct->fw_info.liquidio_firmware_version, 32, "%s",
2234 resp->cfg_info.liquidio_firmware_version);
2235
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002236 /* This barrier is required to be sure that the response has been
2237 * written fully before waking up the handler
2238 */
2239 wmb();
2240
2241 wake_up_interruptible(&ctx->wc);
2242}
2243
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002244/** Routine to push packets arriving on Octeon interface upto network layer.
2245 * @param oct_id - octeon device id.
2246 * @param skbuff - skbuff struct to be passed to network layer.
2247 * @param len - size of total data received.
2248 * @param rh - Control header associated with the packet
2249 * @param param - additional control data with the packet
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002250 * @param arg - farg registered in droq_ops
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002251 */
2252static void
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002253liquidio_push_packet(u32 octeon_id __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002254 void *skbuff,
2255 u32 len,
2256 union octeon_rh *rh,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002257 void *param,
2258 void *arg)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002259{
2260 struct napi_struct *napi = param;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002261 struct sk_buff *skb = (struct sk_buff *)skbuff;
2262 struct skb_shared_hwtstamps *shhwtstamps;
2263 u64 ns;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002264 u16 vtag = 0;
Prasad Kannegantide28c992017-01-09 14:42:40 -08002265 u32 r_dh_off;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002266 struct net_device *netdev = (struct net_device *)arg;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002267 struct octeon_droq *droq = container_of(param, struct octeon_droq,
2268 napi);
2269 if (netdev) {
2270 int packet_was_received;
2271 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002272 struct octeon_device *oct = lio->oct_dev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002273
2274 /* Do not proceed if the interface is not in RUNNING state. */
2275 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING)) {
2276 recv_buffer_free(skb);
2277 droq->stats.rx_dropped++;
2278 return;
2279 }
2280
2281 skb->dev = netdev;
2282
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002283 skb_record_rx_queue(skb, droq->q_no);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07002284 if (likely(len > MIN_SKB_SIZE)) {
2285 struct octeon_skb_page_info *pg_info;
2286 unsigned char *va;
2287
2288 pg_info = ((struct octeon_skb_page_info *)(skb->cb));
2289 if (pg_info->page) {
2290 /* For Paged allocation use the frags */
2291 va = page_address(pg_info->page) +
2292 pg_info->page_offset;
2293 memcpy(skb->data, va, MIN_SKB_SIZE);
2294 skb_put(skb, MIN_SKB_SIZE);
2295 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
2296 pg_info->page,
2297 pg_info->page_offset +
2298 MIN_SKB_SIZE,
2299 len - MIN_SKB_SIZE,
2300 LIO_RXBUFFER_SZ);
2301 }
2302 } else {
2303 struct octeon_skb_page_info *pg_info =
2304 ((struct octeon_skb_page_info *)(skb->cb));
2305 skb_copy_to_linear_data(skb, page_address(pg_info->page)
2306 + pg_info->page_offset, len);
2307 skb_put(skb, len);
2308 put_page(pg_info->page);
2309 }
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002310
Prasad Kannegantide28c992017-01-09 14:42:40 -08002311 r_dh_off = (rh->r_dh.len - 1) * BYTES_PER_DHLEN_UNIT;
2312
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002313 if (((oct->chip_id == OCTEON_CN66XX) ||
2314 (oct->chip_id == OCTEON_CN68XX)) &&
2315 ptp_enable) {
2316 if (rh->r_dh.has_hwtstamp) {
2317 /* timestamp is included from the hardware at
2318 * the beginning of the packet.
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002319 */
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002320 if (ifstate_check
2321 (lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED)) {
2322 /* Nanoseconds are in the first 64-bits
2323 * of the packet.
2324 */
Prasad Kannegantide28c992017-01-09 14:42:40 -08002325 memcpy(&ns, (skb->data + r_dh_off),
2326 sizeof(ns));
2327 r_dh_off -= BYTES_PER_DHLEN_UNIT;
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002328 shhwtstamps = skb_hwtstamps(skb);
2329 shhwtstamps->hwtstamp =
2330 ns_to_ktime(ns +
2331 lio->ptp_adjust);
2332 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002333 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002334 }
2335
Prasad Kannegantide28c992017-01-09 14:42:40 -08002336 if (rh->r_dh.has_hash) {
2337 __be32 *hash_be = (__be32 *)(skb->data + r_dh_off);
2338 u32 hash = be32_to_cpu(*hash_be);
2339
2340 skb_set_hash(skb, hash, PKT_HASH_TYPE_L4);
2341 r_dh_off -= BYTES_PER_DHLEN_UNIT;
2342 }
2343
2344 skb_pull(skb, rh->r_dh.len * BYTES_PER_DHLEN_UNIT);
2345
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002346 skb->protocol = eth_type_trans(skb, skb->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002347 if ((netdev->features & NETIF_F_RXCSUM) &&
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002348 (((rh->r_dh.encap_on) &&
2349 (rh->r_dh.csum_verified & CNNIC_TUN_CSUM_VERIFIED)) ||
2350 (!(rh->r_dh.encap_on) &&
2351 (rh->r_dh.csum_verified & CNNIC_CSUM_VERIFIED))))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002352 /* checksum has already been verified */
2353 skb->ip_summed = CHECKSUM_UNNECESSARY;
2354 else
2355 skb->ip_summed = CHECKSUM_NONE;
2356
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002357 /* Setting Encapsulation field on basis of status received
2358 * from the firmware
2359 */
2360 if (rh->r_dh.encap_on) {
2361 skb->encapsulation = 1;
2362 skb->csum_level = 1;
2363 droq->stats.rx_vxlan++;
2364 }
2365
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002366 /* inbound VLAN tag */
2367 if ((netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
2368 (rh->r_dh.vlan != 0)) {
2369 u16 vid = rh->r_dh.vlan;
2370 u16 priority = rh->r_dh.priority;
2371
2372 vtag = priority << 13 | vid;
2373 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
2374 }
2375
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002376 packet_was_received = napi_gro_receive(napi, skb) != GRO_DROP;
2377
2378 if (packet_was_received) {
2379 droq->stats.rx_bytes_received += len;
2380 droq->stats.rx_pkts_received++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002381 } else {
2382 droq->stats.rx_dropped++;
2383 netif_info(lio, rx_err, lio->netdev,
2384 "droq:%d error rx_dropped:%llu\n",
2385 droq->q_no, droq->stats.rx_dropped);
2386 }
2387
2388 } else {
2389 recv_buffer_free(skb);
2390 }
2391}
2392
2393/**
2394 * \brief wrapper for calling napi_schedule
2395 * @param param parameters to pass to napi_schedule
2396 *
2397 * Used when scheduling on different CPUs
2398 */
2399static void napi_schedule_wrapper(void *param)
2400{
2401 struct napi_struct *napi = param;
2402
2403 napi_schedule(napi);
2404}
2405
2406/**
2407 * \brief callback when receive interrupt occurs and we are in NAPI mode
2408 * @param arg pointer to octeon output queue
2409 */
2410static void liquidio_napi_drv_callback(void *arg)
2411{
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002412 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002413 struct octeon_droq *droq = arg;
2414 int this_cpu = smp_processor_id();
2415
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002416 oct = droq->oct_dev;
2417
2418 if (OCTEON_CN23XX_PF(oct) || droq->cpu_id == this_cpu) {
2419 napi_schedule_irqoff(&droq->napi);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002420 } else {
2421 struct call_single_data *csd = &droq->csd;
2422
2423 csd->func = napi_schedule_wrapper;
2424 csd->info = &droq->napi;
2425 csd->flags = 0;
2426
2427 smp_call_function_single_async(droq->cpu_id, csd);
2428 }
2429}
2430
2431/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002432 * \brief Entry point for NAPI polling
2433 * @param napi NAPI structure
2434 * @param budget maximum number of items to process
2435 */
2436static int liquidio_napi_poll(struct napi_struct *napi, int budget)
2437{
2438 struct octeon_droq *droq;
2439 int work_done;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002440 int tx_done = 0, iq_no;
2441 struct octeon_instr_queue *iq;
2442 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002443
2444 droq = container_of(napi, struct octeon_droq, napi);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002445 oct = droq->oct_dev;
2446 iq_no = droq->q_no;
2447 /* Handle Droq descriptors */
2448 work_done = octeon_process_droq_poll_cmd(oct, droq->q_no,
2449 POLL_EVENT_PROCESS_PKTS,
2450 budget);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002451
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002452 /* Flush the instruction queue */
2453 iq = oct->instr_queue[iq_no];
2454 if (iq) {
2455 /* Process iq buffers with in the budget limits */
Derek Chickles60889862017-01-06 17:16:12 -08002456 tx_done = octeon_flush_iq(oct, iq, budget);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002457 /* Update iq read-index rather than waiting for next interrupt.
2458 * Return back if tx_done is false.
2459 */
2460 update_txq_status(oct, iq_no);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002461 } else {
2462 dev_err(&oct->pci_dev->dev, "%s: iq (%d) num invalid\n",
2463 __func__, iq_no);
2464 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002465
Satanand Burlacdb478e2017-01-31 13:04:42 -08002466 /* force enable interrupt if reg cnts are high to avoid wraparound */
2467 if ((work_done < budget && tx_done) ||
Felix Manlunas76e0e702017-02-07 12:10:58 -08002468 (iq && iq->pkt_in_done >= MAX_REG_CNT) ||
Satanand Burlacdb478e2017-01-31 13:04:42 -08002469 (droq->pkt_count >= MAX_REG_CNT)) {
2470 tx_done = 1;
Eric Dumazet6ad20162017-01-30 08:22:01 -08002471 napi_complete_done(napi, work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002472 octeon_process_droq_poll_cmd(droq->oct_dev, droq->q_no,
2473 POLL_EVENT_ENABLE_INTR, 0);
2474 return 0;
2475 }
2476
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002477 return (!tx_done) ? (budget) : (work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002478}
2479
2480/**
2481 * \brief Setup input and output queues
2482 * @param octeon_dev octeon device
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07002483 * @param ifidx Interface Index
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002484 *
2485 * Note: Queues are with respect to the octeon device. Thus
2486 * an input queue is for egress packets, and output queues
2487 * are for ingress packets.
2488 */
2489static inline int setup_io_queues(struct octeon_device *octeon_dev,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002490 int ifidx)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002491{
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002492 struct octeon_droq_ops droq_ops;
2493 struct net_device *netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002494 static int cpu_id;
2495 static int cpu_id_modulus;
2496 struct octeon_droq *droq;
2497 struct napi_struct *napi;
2498 int q, q_no, retval = 0;
2499 struct lio *lio;
2500 int num_tx_descs;
2501
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002502 netdev = octeon_dev->props[ifidx].netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002503
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002504 lio = GET_LIO(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002505
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002506 memset(&droq_ops, 0, sizeof(struct octeon_droq_ops));
2507
2508 droq_ops.fptr = liquidio_push_packet;
2509 droq_ops.farg = (void *)netdev;
2510
2511 droq_ops.poll_mode = 1;
2512 droq_ops.napi_fn = liquidio_napi_drv_callback;
2513 cpu_id = 0;
2514 cpu_id_modulus = num_present_cpus();
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002515
2516 /* set up DROQs. */
2517 for (q = 0; q < lio->linfo.num_rxpciq; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002518 q_no = lio->linfo.rxpciq[q].s.q_no;
2519 dev_dbg(&octeon_dev->pci_dev->dev,
2520 "setup_io_queues index:%d linfo.rxpciq.s.q_no:%d\n",
2521 q, q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002522 retval = octeon_setup_droq(octeon_dev, q_no,
2523 CFG_GET_NUM_RX_DESCS_NIC_IF
2524 (octeon_get_conf(octeon_dev),
2525 lio->ifidx),
2526 CFG_GET_NUM_RX_BUF_SIZE_NIC_IF
2527 (octeon_get_conf(octeon_dev),
2528 lio->ifidx), NULL);
2529 if (retval) {
2530 dev_err(&octeon_dev->pci_dev->dev,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002531 "%s : Runtime DROQ(RxQ) creation failed.\n",
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002532 __func__);
2533 return 1;
2534 }
2535
2536 droq = octeon_dev->droq[q_no];
2537 napi = &droq->napi;
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07002538 dev_dbg(&octeon_dev->pci_dev->dev, "netif_napi_add netdev:%llx oct:%llx pf_num:%d\n",
2539 (u64)netdev, (u64)octeon_dev, octeon_dev->pf_num);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002540 netif_napi_add(netdev, napi, liquidio_napi_poll, 64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002541
2542 /* designate a CPU for this droq */
2543 droq->cpu_id = cpu_id;
2544 cpu_id++;
2545 if (cpu_id >= cpu_id_modulus)
2546 cpu_id = 0;
2547
2548 octeon_register_droq_ops(octeon_dev, q_no, &droq_ops);
2549 }
2550
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002551 if (OCTEON_CN23XX_PF(octeon_dev)) {
2552 /* 23XX PF can receive control messages (via the first PF-owned
2553 * droq) from the firmware even if the ethX interface is down,
2554 * so that's why poll_mode must be off for the first droq.
2555 */
2556 octeon_dev->droq[0]->ops.poll_mode = 0;
2557 }
2558
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002559 /* set up IQs. */
2560 for (q = 0; q < lio->linfo.num_txpciq; q++) {
2561 num_tx_descs = CFG_GET_NUM_TX_DESCS_NIC_IF(octeon_get_conf
2562 (octeon_dev),
2563 lio->ifidx);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002564 retval = octeon_setup_iq(octeon_dev, ifidx, q,
2565 lio->linfo.txpciq[q], num_tx_descs,
2566 netdev_get_tx_queue(netdev, q));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002567 if (retval) {
2568 dev_err(&octeon_dev->pci_dev->dev,
2569 " %s : Runtime IQ(TxQ) creation failed.\n",
2570 __func__);
2571 return 1;
2572 }
Rick Farrington35ae57e2017-03-07 11:40:41 -08002573
2574 if (octeon_dev->ioq_vector) {
2575 struct octeon_ioq_vector *ioq_vector;
2576
2577 ioq_vector = &octeon_dev->ioq_vector[q];
2578 netif_set_xps_queue(netdev,
2579 &ioq_vector->affinity_mask,
2580 ioq_vector->iq_index);
2581 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002582 }
2583
2584 return 0;
2585}
2586
2587/**
2588 * \brief Poll routine for checking transmit queue status
2589 * @param work work_struct data structure
2590 */
2591static void octnet_poll_check_txq_status(struct work_struct *work)
2592{
2593 struct cavium_wk *wk = (struct cavium_wk *)work;
2594 struct lio *lio = (struct lio *)wk->ctxptr;
2595
2596 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
2597 return;
2598
2599 check_txq_status(lio);
2600 queue_delayed_work(lio->txq_status_wq.wq,
2601 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2602}
2603
2604/**
2605 * \brief Sets up the txq poll check
2606 * @param netdev network device
2607 */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002608static inline int setup_tx_poll_fn(struct net_device *netdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002609{
2610 struct lio *lio = GET_LIO(netdev);
2611 struct octeon_device *oct = lio->oct_dev;
2612
Bhaktipriya Shridhar292b9da2016-06-08 01:47:59 +05302613 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
2614 WQ_MEM_RECLAIM, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002615 if (!lio->txq_status_wq.wq) {
2616 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002617 return -1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002618 }
2619 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
2620 octnet_poll_check_txq_status);
2621 lio->txq_status_wq.wk.ctxptr = lio;
2622 queue_delayed_work(lio->txq_status_wq.wq,
2623 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002624 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002625}
2626
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002627static inline void cleanup_tx_poll_fn(struct net_device *netdev)
2628{
2629 struct lio *lio = GET_LIO(netdev);
2630
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002631 if (lio->txq_status_wq.wq) {
2632 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
2633 destroy_workqueue(lio->txq_status_wq.wq);
2634 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002635}
2636
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002637/**
2638 * \brief Net device open for LiquidIO
2639 * @param netdev network device
2640 */
2641static int liquidio_open(struct net_device *netdev)
2642{
2643 struct lio *lio = GET_LIO(netdev);
2644 struct octeon_device *oct = lio->oct_dev;
2645 struct napi_struct *napi, *n;
2646
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002647 if (oct->props[lio->ifidx].napi_enabled == 0) {
2648 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2649 napi_enable(napi);
2650
2651 oct->props[lio->ifidx].napi_enabled = 1;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002652
2653 if (OCTEON_CN23XX_PF(oct))
2654 oct->droq[0]->ops.poll_mode = 1;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002655 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002656
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002657 if ((oct->chip_id == OCTEON_CN66XX || oct->chip_id == OCTEON_CN68XX) &&
2658 ptp_enable)
2659 oct_ptp_open(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002660
2661 ifstate_set(lio, LIO_IFSTATE_RUNNING);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002662
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002663 /* Ready for link status updates */
2664 lio->intf_open = 1;
2665
2666 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
2667
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002668 if (OCTEON_CN23XX_PF(oct)) {
2669 if (!oct->msix_on)
2670 if (setup_tx_poll_fn(netdev))
2671 return -1;
2672 } else {
2673 if (setup_tx_poll_fn(netdev))
2674 return -1;
2675 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002676
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002677 start_txq(netdev);
2678
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002679 /* tell Octeon to start forwarding packets to host */
2680 send_rx_ctrl_cmd(lio, 1);
2681
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002682 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
2683 netdev->name);
2684
2685 return 0;
2686}
2687
2688/**
2689 * \brief Net device stop for LiquidIO
2690 * @param netdev network device
2691 */
2692static int liquidio_stop(struct net_device *netdev)
2693{
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002694 struct lio *lio = GET_LIO(netdev);
2695 struct octeon_device *oct = lio->oct_dev;
2696
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002697 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
2698
2699 netif_tx_disable(netdev);
2700
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002701 /* Inform that netif carrier is down */
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002702 netif_carrier_off(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002703 lio->intf_open = 0;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002704 lio->linfo.link.s.link_up = 0;
2705 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002706
Felix Manlunascb2336b2017-01-11 17:09:02 -08002707 /* Tell Octeon that nic interface is down. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002708 send_rx_ctrl_cmd(lio, 0);
2709
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002710 if (OCTEON_CN23XX_PF(oct)) {
2711 if (!oct->msix_on)
2712 cleanup_tx_poll_fn(netdev);
2713 } else {
2714 cleanup_tx_poll_fn(netdev);
2715 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002716
2717 if (lio->ptp_clock) {
2718 ptp_clock_unregister(lio->ptp_clock);
2719 lio->ptp_clock = NULL;
2720 }
2721
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002722 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002723
2724 return 0;
2725}
2726
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002727/**
2728 * \brief Converts a mask based on net device flags
2729 * @param netdev network device
2730 *
2731 * This routine generates a octnet_ifflags mask from the net device flags
2732 * received from the OS.
2733 */
2734static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
2735{
2736 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
2737
2738 if (netdev->flags & IFF_PROMISC)
2739 f |= OCTNET_IFFLAG_PROMISC;
2740
2741 if (netdev->flags & IFF_ALLMULTI)
2742 f |= OCTNET_IFFLAG_ALLMULTI;
2743
2744 if (netdev->flags & IFF_MULTICAST) {
2745 f |= OCTNET_IFFLAG_MULTICAST;
2746
2747 /* Accept all multicast addresses if there are more than we
2748 * can handle
2749 */
2750 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
2751 f |= OCTNET_IFFLAG_ALLMULTI;
2752 }
2753
2754 if (netdev->flags & IFF_BROADCAST)
2755 f |= OCTNET_IFFLAG_BROADCAST;
2756
2757 return f;
2758}
2759
2760/**
2761 * \brief Net device set_multicast_list
2762 * @param netdev network device
2763 */
2764static void liquidio_set_mcast_list(struct net_device *netdev)
2765{
2766 struct lio *lio = GET_LIO(netdev);
2767 struct octeon_device *oct = lio->oct_dev;
2768 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002769 struct netdev_hw_addr *ha;
2770 u64 *mc;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002771 int ret;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002772 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
2773
2774 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2775
2776 /* Create a ctrl pkt command to be sent to core app. */
2777 nctrl.ncmd.u64 = 0;
2778 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002779 nctrl.ncmd.s.param1 = get_new_flags(netdev);
2780 nctrl.ncmd.s.param2 = mc_count;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002781 nctrl.ncmd.s.more = mc_count;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002782 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002783 nctrl.netpndev = (u64)netdev;
2784 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2785
2786 /* copy all the addresses into the udd */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002787 mc = &nctrl.udd[0];
2788 netdev_for_each_mc_addr(ha, netdev) {
2789 *mc = 0;
2790 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
2791 /* no need to swap bytes */
2792
2793 if (++mc > &nctrl.udd[mc_count])
2794 break;
2795 }
2796
2797 /* Apparently, any activity in this call from the kernel has to
2798 * be atomic. So we won't wait for response.
2799 */
2800 nctrl.wait_time = 0;
2801
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002802 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002803 if (ret < 0) {
2804 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
2805 ret);
2806 }
2807}
2808
2809/**
2810 * \brief Net device set_mac_address
2811 * @param netdev network device
2812 */
2813static int liquidio_set_mac(struct net_device *netdev, void *p)
2814{
2815 int ret = 0;
2816 struct lio *lio = GET_LIO(netdev);
2817 struct octeon_device *oct = lio->oct_dev;
2818 struct sockaddr *addr = (struct sockaddr *)p;
2819 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002820
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002821 if (!is_valid_ether_addr(addr->sa_data))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002822 return -EADDRNOTAVAIL;
2823
2824 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2825
2826 nctrl.ncmd.u64 = 0;
2827 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002828 nctrl.ncmd.s.param1 = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002829 nctrl.ncmd.s.more = 1;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002830 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002831 nctrl.netpndev = (u64)netdev;
2832 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2833 nctrl.wait_time = 100;
2834
2835 nctrl.udd[0] = 0;
2836 /* The MAC Address is presented in network byte order. */
2837 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2838
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002839 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002840 if (ret < 0) {
2841 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2842 return -ENOMEM;
2843 }
2844 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2845 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2846
2847 return 0;
2848}
2849
2850/**
2851 * \brief Net device get_stats
2852 * @param netdev network device
2853 */
2854static struct net_device_stats *liquidio_get_stats(struct net_device *netdev)
2855{
2856 struct lio *lio = GET_LIO(netdev);
2857 struct net_device_stats *stats = &netdev->stats;
2858 struct octeon_device *oct;
2859 u64 pkts = 0, drop = 0, bytes = 0;
2860 struct oct_droq_stats *oq_stats;
2861 struct oct_iq_stats *iq_stats;
2862 int i, iq_no, oq_no;
2863
2864 oct = lio->oct_dev;
2865
2866 for (i = 0; i < lio->linfo.num_txpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002867 iq_no = lio->linfo.txpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002868 iq_stats = &oct->instr_queue[iq_no]->stats;
2869 pkts += iq_stats->tx_done;
2870 drop += iq_stats->tx_dropped;
2871 bytes += iq_stats->tx_tot_bytes;
2872 }
2873
2874 stats->tx_packets = pkts;
2875 stats->tx_bytes = bytes;
2876 stats->tx_dropped = drop;
2877
2878 pkts = 0;
2879 drop = 0;
2880 bytes = 0;
2881
2882 for (i = 0; i < lio->linfo.num_rxpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002883 oq_no = lio->linfo.rxpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002884 oq_stats = &oct->droq[oq_no]->stats;
2885 pkts += oq_stats->rx_pkts_received;
2886 drop += (oq_stats->rx_dropped +
2887 oq_stats->dropped_nodispatch +
2888 oq_stats->dropped_toomany +
2889 oq_stats->dropped_nomem);
2890 bytes += oq_stats->rx_bytes_received;
2891 }
2892
2893 stats->rx_bytes = bytes;
2894 stats->rx_packets = pkts;
2895 stats->rx_dropped = drop;
2896
2897 return stats;
2898}
2899
2900/**
2901 * \brief Net device change_mtu
2902 * @param netdev network device
2903 */
2904static int liquidio_change_mtu(struct net_device *netdev, int new_mtu)
2905{
2906 struct lio *lio = GET_LIO(netdev);
2907 struct octeon_device *oct = lio->oct_dev;
2908 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002909 int ret = 0;
2910
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002911 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2912
2913 nctrl.ncmd.u64 = 0;
2914 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MTU;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002915 nctrl.ncmd.s.param1 = new_mtu;
2916 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002917 nctrl.wait_time = 100;
2918 nctrl.netpndev = (u64)netdev;
2919 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2920
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002921 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002922 if (ret < 0) {
2923 dev_err(&oct->pci_dev->dev, "Failed to set MTU\n");
2924 return -1;
2925 }
2926
2927 lio->mtu = new_mtu;
2928
2929 return 0;
2930}
2931
2932/**
2933 * \brief Handler for SIOCSHWTSTAMP ioctl
2934 * @param netdev network device
2935 * @param ifr interface request
2936 * @param cmd command
2937 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002938static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002939{
2940 struct hwtstamp_config conf;
2941 struct lio *lio = GET_LIO(netdev);
2942
2943 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
2944 return -EFAULT;
2945
2946 if (conf.flags)
2947 return -EINVAL;
2948
2949 switch (conf.tx_type) {
2950 case HWTSTAMP_TX_ON:
2951 case HWTSTAMP_TX_OFF:
2952 break;
2953 default:
2954 return -ERANGE;
2955 }
2956
2957 switch (conf.rx_filter) {
2958 case HWTSTAMP_FILTER_NONE:
2959 break;
2960 case HWTSTAMP_FILTER_ALL:
2961 case HWTSTAMP_FILTER_SOME:
2962 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
2963 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
2964 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
2965 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
2966 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
2967 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
2968 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
2969 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
2970 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
2971 case HWTSTAMP_FILTER_PTP_V2_EVENT:
2972 case HWTSTAMP_FILTER_PTP_V2_SYNC:
2973 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
2974 conf.rx_filter = HWTSTAMP_FILTER_ALL;
2975 break;
2976 default:
2977 return -ERANGE;
2978 }
2979
2980 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
2981 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2982
2983 else
2984 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2985
2986 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
2987}
2988
2989/**
2990 * \brief ioctl handler
2991 * @param netdev network device
2992 * @param ifr interface request
2993 * @param cmd command
2994 */
2995static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2996{
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002997 struct lio *lio = GET_LIO(netdev);
2998
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002999 switch (cmd) {
3000 case SIOCSHWTSTAMP:
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08003001 if ((lio->oct_dev->chip_id == OCTEON_CN66XX ||
3002 lio->oct_dev->chip_id == OCTEON_CN68XX) && ptp_enable)
3003 return hwtstamp_ioctl(netdev, ifr);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003004 default:
3005 return -EOPNOTSUPP;
3006 }
3007}
3008
3009/**
3010 * \brief handle a Tx timestamp response
3011 * @param status response status
3012 * @param buf pointer to skb
3013 */
3014static void handle_timestamp(struct octeon_device *oct,
3015 u32 status,
3016 void *buf)
3017{
3018 struct octnet_buf_free_info *finfo;
3019 struct octeon_soft_command *sc;
3020 struct oct_timestamp_resp *resp;
3021 struct lio *lio;
3022 struct sk_buff *skb = (struct sk_buff *)buf;
3023
3024 finfo = (struct octnet_buf_free_info *)skb->cb;
3025 lio = finfo->lio;
3026 sc = finfo->sc;
3027 oct = lio->oct_dev;
3028 resp = (struct oct_timestamp_resp *)sc->virtrptr;
3029
3030 if (status != OCTEON_REQUEST_DONE) {
3031 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
3032 CVM_CAST64(status));
3033 resp->timestamp = 0;
3034 }
3035
3036 octeon_swap_8B_data(&resp->timestamp, 1);
3037
Colin Ian King19a6d152016-02-05 16:30:39 +00003038 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003039 struct skb_shared_hwtstamps ts;
3040 u64 ns = resp->timestamp;
3041
3042 netif_info(lio, tx_done, lio->netdev,
3043 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
3044 skb, (unsigned long long)ns);
3045 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
3046 skb_tstamp_tx(skb, &ts);
3047 }
3048
3049 octeon_free_soft_command(oct, sc);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003050 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003051}
3052
3053/* \brief Send a data packet that will be timestamped
3054 * @param oct octeon device
3055 * @param ndata pointer to network data
3056 * @param finfo pointer to private network data
3057 */
3058static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
3059 struct octnic_data_pkt *ndata,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003060 struct octnet_buf_free_info *finfo)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003061{
3062 int retval;
3063 struct octeon_soft_command *sc;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003064 struct lio *lio;
3065 int ring_doorbell;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003066 u32 len;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003067
3068 lio = finfo->lio;
3069
3070 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
3071 sizeof(struct oct_timestamp_resp));
3072 finfo->sc = sc;
3073
3074 if (!sc) {
3075 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
3076 return IQ_SEND_FAILED;
3077 }
3078
3079 if (ndata->reqtype == REQTYPE_NORESP_NET)
3080 ndata->reqtype = REQTYPE_RESP_NET;
3081 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
3082 ndata->reqtype = REQTYPE_RESP_NET_SG;
3083
3084 sc->callback = handle_timestamp;
3085 sc->callback_arg = finfo->skb;
3086 sc->iq_no = ndata->q_no;
3087
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003088 if (OCTEON_CN23XX_PF(oct))
3089 len = (u32)((struct octeon_instr_ih3 *)
3090 (&sc->cmd.cmd3.ih3))->dlengsz;
3091 else
3092 len = (u32)((struct octeon_instr_ih2 *)
3093 (&sc->cmd.cmd2.ih2))->dlengsz;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003094
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003095 ring_doorbell = 1;
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003096
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003097 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003098 sc, len, ndata->reqtype);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003099
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003100 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003101 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
3102 retval);
3103 octeon_free_soft_command(oct, sc);
3104 } else {
3105 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
3106 }
3107
3108 return retval;
3109}
3110
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003111/** \brief Transmit networks packets to the Octeon interface
3112 * @param skbuff skbuff struct to be passed to network layer.
3113 * @param netdev pointer to network device
3114 * @returns whether the packet was transmitted to the device okay or not
3115 * (NETDEV_TX_OK or NETDEV_TX_BUSY)
3116 */
3117static int liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
3118{
3119 struct lio *lio;
3120 struct octnet_buf_free_info *finfo;
3121 union octnic_cmd_setup cmdsetup;
3122 struct octnic_data_pkt ndata;
3123 struct octeon_device *oct;
3124 struct oct_iq_stats *stats;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003125 struct octeon_instr_irh *irh;
3126 union tx_info *tx_info;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003127 int status = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003128 int q_idx = 0, iq_no = 0;
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003129 int j;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003130 u64 dptr = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003131 u32 tag = 0;
3132
3133 lio = GET_LIO(netdev);
3134 oct = lio->oct_dev;
3135
3136 if (netif_is_multiqueue(netdev)) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003137 q_idx = skb->queue_mapping;
3138 q_idx = (q_idx % (lio->linfo.num_txpciq));
3139 tag = q_idx;
3140 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003141 } else {
3142 iq_no = lio->txq;
3143 }
3144
3145 stats = &oct->instr_queue[iq_no]->stats;
3146
3147 /* Check for all conditions in which the current packet cannot be
3148 * transmitted.
3149 */
3150 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003151 (!lio->linfo.link.s.link_up) ||
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003152 (skb->len <= 0)) {
3153 netif_info(lio, tx_err, lio->netdev,
3154 "Transmit failed link_status : %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003155 lio->linfo.link.s.link_up);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003156 goto lio_xmit_failed;
3157 }
3158
3159 /* Use space in skb->cb to store info used to unmap and
3160 * free the buffers.
3161 */
3162 finfo = (struct octnet_buf_free_info *)skb->cb;
3163 finfo->lio = lio;
3164 finfo->skb = skb;
3165 finfo->sc = NULL;
3166
3167 /* Prepare the attributes for the data to be passed to OSI. */
3168 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
3169
3170 ndata.buf = (void *)finfo;
3171
3172 ndata.q_no = iq_no;
3173
3174 if (netif_is_multiqueue(netdev)) {
3175 if (octnet_iq_is_full(oct, ndata.q_no)) {
3176 /* defer sending if queue is full */
3177 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
3178 ndata.q_no);
3179 stats->tx_iq_busy++;
3180 return NETDEV_TX_BUSY;
3181 }
3182 } else {
3183 if (octnet_iq_is_full(oct, lio->txq)) {
3184 /* defer sending if queue is full */
3185 stats->tx_iq_busy++;
3186 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003187 lio->txq);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003188 return NETDEV_TX_BUSY;
3189 }
3190 }
3191 /* pr_info(" XMIT - valid Qs: %d, 1st Q no: %d, cpu: %d, q_no:%d\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003192 * lio->linfo.num_txpciq, lio->txq, cpu, ndata.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003193 */
3194
3195 ndata.datasize = skb->len;
3196
3197 cmdsetup.u64 = 0;
Raghu Vatsavayi7275ebf2016-06-14 16:54:49 -07003198 cmdsetup.s.iq_no = iq_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003199
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003200 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3201 if (skb->encapsulation) {
3202 cmdsetup.s.tnl_csum = 1;
3203 stats->tx_vxlan++;
3204 } else {
3205 cmdsetup.s.transport_csum = 1;
3206 }
3207 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003208 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
3209 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
3210 cmdsetup.s.timestamp = 1;
3211 }
3212
3213 if (skb_shinfo(skb)->nr_frags == 0) {
3214 cmdsetup.s.u.datasize = skb->len;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003215 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003216
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003217 /* Offload checksum calculation for TCP/UDP packets */
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003218 dptr = dma_map_single(&oct->pci_dev->dev,
3219 skb->data,
3220 skb->len,
3221 DMA_TO_DEVICE);
3222 if (dma_mapping_error(&oct->pci_dev->dev, dptr)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003223 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
3224 __func__);
3225 return NETDEV_TX_BUSY;
3226 }
3227
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003228 if (OCTEON_CN23XX_PF(oct))
3229 ndata.cmd.cmd3.dptr = dptr;
3230 else
3231 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003232 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003233 ndata.reqtype = REQTYPE_NORESP_NET;
3234
3235 } else {
3236 int i, frags;
3237 struct skb_frag_struct *frag;
3238 struct octnic_gather *g;
3239
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003240 spin_lock(&lio->glist_lock[q_idx]);
3241 g = (struct octnic_gather *)
3242 list_delete_head(&lio->glist[q_idx]);
3243 spin_unlock(&lio->glist_lock[q_idx]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003244
3245 if (!g) {
3246 netif_info(lio, tx_err, lio->netdev,
3247 "Transmit scatter gather: glist null!\n");
3248 goto lio_xmit_failed;
3249 }
3250
3251 cmdsetup.s.gather = 1;
3252 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003253 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003254
3255 memset(g->sg, 0, g->sg_size);
3256
3257 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
3258 skb->data,
3259 (skb->len - skb->data_len),
3260 DMA_TO_DEVICE);
3261 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
3262 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
3263 __func__);
3264 return NETDEV_TX_BUSY;
3265 }
3266 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
3267
3268 frags = skb_shinfo(skb)->nr_frags;
3269 i = 1;
3270 while (frags--) {
3271 frag = &skb_shinfo(skb)->frags[i - 1];
3272
3273 g->sg[(i >> 2)].ptr[(i & 3)] =
3274 dma_map_page(&oct->pci_dev->dev,
3275 frag->page.p,
3276 frag->page_offset,
3277 frag->size,
3278 DMA_TO_DEVICE);
3279
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003280 if (dma_mapping_error(&oct->pci_dev->dev,
3281 g->sg[i >> 2].ptr[i & 3])) {
3282 dma_unmap_single(&oct->pci_dev->dev,
3283 g->sg[0].ptr[0],
3284 skb->len - skb->data_len,
3285 DMA_TO_DEVICE);
3286 for (j = 1; j < i; j++) {
3287 frag = &skb_shinfo(skb)->frags[j - 1];
3288 dma_unmap_page(&oct->pci_dev->dev,
3289 g->sg[j >> 2].ptr[j & 3],
3290 frag->size,
3291 DMA_TO_DEVICE);
3292 }
3293 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
3294 __func__);
3295 return NETDEV_TX_BUSY;
3296 }
3297
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003298 add_sg_size(&g->sg[(i >> 2)], frag->size, (i & 3));
3299 i++;
3300 }
3301
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003302 dptr = g->sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003303
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003304 if (OCTEON_CN23XX_PF(oct))
3305 ndata.cmd.cmd3.dptr = dptr;
3306 else
3307 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003308 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003309 finfo->g = g;
3310
3311 ndata.reqtype = REQTYPE_NORESP_NET_SG;
3312 }
3313
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003314 if (OCTEON_CN23XX_PF(oct)) {
3315 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd3.irh;
3316 tx_info = (union tx_info *)&ndata.cmd.cmd3.ossp[0];
3317 } else {
3318 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd2.irh;
3319 tx_info = (union tx_info *)&ndata.cmd.cmd2.ossp[0];
3320 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003321
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003322 if (skb_shinfo(skb)->gso_size) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003323 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
3324 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003325 stats->tx_gso++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003326 }
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003327
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07003328 /* HW insert VLAN tag */
3329 if (skb_vlan_tag_present(skb)) {
3330 irh->priority = skb_vlan_tag_get(skb) >> 13;
3331 irh->vlan = skb_vlan_tag_get(skb) & 0xfff;
3332 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003333
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003334 if (unlikely(cmdsetup.s.timestamp))
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003335 status = send_nic_timestamp_pkt(oct, &ndata, finfo);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003336 else
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003337 status = octnet_send_nic_data_pkt(oct, &ndata);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003338 if (status == IQ_SEND_FAILED)
3339 goto lio_xmit_failed;
3340
3341 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
3342
3343 if (status == IQ_SEND_STOP)
3344 stop_q(lio->netdev, q_idx);
3345
Florian Westphal860e9532016-05-03 16:33:13 +02003346 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003347
Satanand Burla80c8eae2017-01-26 11:52:35 -08003348 if (tx_info->s.gso_segs)
3349 stats->tx_done += tx_info->s.gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003350 else
3351 stats->tx_done++;
Satanand Burla80c8eae2017-01-26 11:52:35 -08003352 stats->tx_tot_bytes += ndata.datasize;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003353
3354 return NETDEV_TX_OK;
3355
3356lio_xmit_failed:
3357 stats->tx_dropped++;
3358 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
3359 iq_no, stats->tx_dropped);
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003360 if (dptr)
3361 dma_unmap_single(&oct->pci_dev->dev, dptr,
3362 ndata.datasize, DMA_TO_DEVICE);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003363 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003364 return NETDEV_TX_OK;
3365}
3366
3367/** \brief Network device Tx timeout
3368 * @param netdev pointer to network device
3369 */
3370static void liquidio_tx_timeout(struct net_device *netdev)
3371{
3372 struct lio *lio;
3373
3374 lio = GET_LIO(netdev);
3375
3376 netif_info(lio, tx_err, lio->netdev,
3377 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
3378 netdev->stats.tx_dropped);
Florian Westphal860e9532016-05-03 16:33:13 +02003379 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003380 txqs_wake(netdev);
3381}
3382
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003383static int liquidio_vlan_rx_add_vid(struct net_device *netdev,
3384 __be16 proto __attribute__((unused)),
3385 u16 vid)
3386{
3387 struct lio *lio = GET_LIO(netdev);
3388 struct octeon_device *oct = lio->oct_dev;
3389 struct octnic_ctrl_pkt nctrl;
3390 int ret = 0;
3391
3392 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3393
3394 nctrl.ncmd.u64 = 0;
3395 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3396 nctrl.ncmd.s.param1 = vid;
3397 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3398 nctrl.wait_time = 100;
3399 nctrl.netpndev = (u64)netdev;
3400 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3401
3402 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3403 if (ret < 0) {
3404 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3405 ret);
3406 }
3407
3408 return ret;
3409}
3410
3411static int liquidio_vlan_rx_kill_vid(struct net_device *netdev,
3412 __be16 proto __attribute__((unused)),
3413 u16 vid)
3414{
3415 struct lio *lio = GET_LIO(netdev);
3416 struct octeon_device *oct = lio->oct_dev;
3417 struct octnic_ctrl_pkt nctrl;
3418 int ret = 0;
3419
3420 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3421
3422 nctrl.ncmd.u64 = 0;
3423 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3424 nctrl.ncmd.s.param1 = vid;
3425 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3426 nctrl.wait_time = 100;
3427 nctrl.netpndev = (u64)netdev;
3428 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3429
3430 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3431 if (ret < 0) {
3432 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3433 ret);
3434 }
3435 return ret;
3436}
3437
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003438/** Sending command to enable/disable RX checksum offload
3439 * @param netdev pointer to network device
3440 * @param command OCTNET_CMD_TNL_RX_CSUM_CTL
3441 * @param rx_cmd_bit OCTNET_CMD_RXCSUM_ENABLE/
3442 * OCTNET_CMD_RXCSUM_DISABLE
3443 * @returns SUCCESS or FAILURE
3444 */
Nicholas Mc Guirec41419b2016-08-22 17:52:00 +02003445static int liquidio_set_rxcsum_command(struct net_device *netdev, int command,
3446 u8 rx_cmd)
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003447{
3448 struct lio *lio = GET_LIO(netdev);
3449 struct octeon_device *oct = lio->oct_dev;
3450 struct octnic_ctrl_pkt nctrl;
3451 int ret = 0;
3452
3453 nctrl.ncmd.u64 = 0;
3454 nctrl.ncmd.s.cmd = command;
3455 nctrl.ncmd.s.param1 = rx_cmd;
3456 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3457 nctrl.wait_time = 100;
3458 nctrl.netpndev = (u64)netdev;
3459 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3460
3461 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3462 if (ret < 0) {
3463 dev_err(&oct->pci_dev->dev,
3464 "DEVFLAGS RXCSUM change failed in core(ret:0x%x)\n",
3465 ret);
3466 }
3467 return ret;
3468}
3469
3470/** Sending command to add/delete VxLAN UDP port to firmware
3471 * @param netdev pointer to network device
3472 * @param command OCTNET_CMD_VXLAN_PORT_CONFIG
3473 * @param vxlan_port VxLAN port to be added or deleted
3474 * @param vxlan_cmd_bit OCTNET_CMD_VXLAN_PORT_ADD,
3475 * OCTNET_CMD_VXLAN_PORT_DEL
3476 * @returns SUCCESS or FAILURE
3477 */
3478static int liquidio_vxlan_port_command(struct net_device *netdev, int command,
3479 u16 vxlan_port, u8 vxlan_cmd_bit)
3480{
3481 struct lio *lio = GET_LIO(netdev);
3482 struct octeon_device *oct = lio->oct_dev;
3483 struct octnic_ctrl_pkt nctrl;
3484 int ret = 0;
3485
3486 nctrl.ncmd.u64 = 0;
3487 nctrl.ncmd.s.cmd = command;
3488 nctrl.ncmd.s.more = vxlan_cmd_bit;
3489 nctrl.ncmd.s.param1 = vxlan_port;
3490 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3491 nctrl.wait_time = 100;
3492 nctrl.netpndev = (u64)netdev;
3493 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3494
3495 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3496 if (ret < 0) {
3497 dev_err(&oct->pci_dev->dev,
3498 "VxLAN port add/delete failed in core (ret:0x%x)\n",
3499 ret);
3500 }
3501 return ret;
3502}
3503
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003504/** \brief Net device fix features
3505 * @param netdev pointer to network device
3506 * @param request features requested
3507 * @returns updated features list
3508 */
3509static netdev_features_t liquidio_fix_features(struct net_device *netdev,
3510 netdev_features_t request)
3511{
3512 struct lio *lio = netdev_priv(netdev);
3513
3514 if ((request & NETIF_F_RXCSUM) &&
3515 !(lio->dev_capability & NETIF_F_RXCSUM))
3516 request &= ~NETIF_F_RXCSUM;
3517
3518 if ((request & NETIF_F_HW_CSUM) &&
3519 !(lio->dev_capability & NETIF_F_HW_CSUM))
3520 request &= ~NETIF_F_HW_CSUM;
3521
3522 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
3523 request &= ~NETIF_F_TSO;
3524
3525 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
3526 request &= ~NETIF_F_TSO6;
3527
3528 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
3529 request &= ~NETIF_F_LRO;
3530
3531 /*Disable LRO if RXCSUM is off */
3532 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
3533 (lio->dev_capability & NETIF_F_LRO))
3534 request &= ~NETIF_F_LRO;
3535
3536 return request;
3537}
3538
3539/** \brief Net device set features
3540 * @param netdev pointer to network device
3541 * @param features features to enable/disable
3542 */
3543static int liquidio_set_features(struct net_device *netdev,
3544 netdev_features_t features)
3545{
3546 struct lio *lio = netdev_priv(netdev);
3547
3548 if (!((netdev->features ^ features) & NETIF_F_LRO))
3549 return 0;
3550
3551 if ((features & NETIF_F_LRO) && (lio->dev_capability & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003552 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3553 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003554 else if (!(features & NETIF_F_LRO) &&
3555 (lio->dev_capability & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003556 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE,
3557 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003558
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003559 /* Sending command to firmware to enable/disable RX checksum
3560 * offload settings using ethtool
3561 */
3562 if (!(netdev->features & NETIF_F_RXCSUM) &&
3563 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3564 (features & NETIF_F_RXCSUM))
3565 liquidio_set_rxcsum_command(netdev,
3566 OCTNET_CMD_TNL_RX_CSUM_CTL,
3567 OCTNET_CMD_RXCSUM_ENABLE);
3568 else if ((netdev->features & NETIF_F_RXCSUM) &&
3569 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3570 !(features & NETIF_F_RXCSUM))
3571 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
3572 OCTNET_CMD_RXCSUM_DISABLE);
3573
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003574 return 0;
3575}
3576
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003577static void liquidio_add_vxlan_port(struct net_device *netdev,
3578 struct udp_tunnel_info *ti)
3579{
3580 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3581 return;
3582
3583 liquidio_vxlan_port_command(netdev,
3584 OCTNET_CMD_VXLAN_PORT_CONFIG,
3585 htons(ti->port),
3586 OCTNET_CMD_VXLAN_PORT_ADD);
3587}
3588
3589static void liquidio_del_vxlan_port(struct net_device *netdev,
3590 struct udp_tunnel_info *ti)
3591{
3592 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3593 return;
3594
3595 liquidio_vxlan_port_command(netdev,
3596 OCTNET_CMD_VXLAN_PORT_CONFIG,
3597 htons(ti->port),
3598 OCTNET_CMD_VXLAN_PORT_DEL);
3599}
3600
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003601static int __liquidio_set_vf_mac(struct net_device *netdev, int vfidx,
3602 u8 *mac, bool is_admin_assigned)
3603{
3604 struct lio *lio = GET_LIO(netdev);
3605 struct octeon_device *oct = lio->oct_dev;
3606 struct octnic_ctrl_pkt nctrl;
3607
3608 if (!is_valid_ether_addr(mac))
3609 return -EINVAL;
3610
3611 if (vfidx < 0 || vfidx >= oct->sriov_info.max_vfs)
3612 return -EINVAL;
3613
3614 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3615
3616 nctrl.ncmd.u64 = 0;
3617 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
3618 /* vfidx is 0 based, but vf_num (param1) is 1 based */
3619 nctrl.ncmd.s.param1 = vfidx + 1;
3620 nctrl.ncmd.s.param2 = (is_admin_assigned ? 1 : 0);
3621 nctrl.ncmd.s.more = 1;
3622 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Rick Farrington9549c6c2017-03-17 15:43:26 -07003623 nctrl.netpndev = (u64)netdev;
3624 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003625 nctrl.wait_time = LIO_CMD_WAIT_TM;
3626
3627 nctrl.udd[0] = 0;
3628 /* The MAC Address is presented in network byte order. */
3629 ether_addr_copy((u8 *)&nctrl.udd[0] + 2, mac);
3630
3631 oct->sriov_info.vf_macaddr[vfidx] = nctrl.udd[0];
3632
3633 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3634
3635 return 0;
3636}
3637
3638static int liquidio_set_vf_mac(struct net_device *netdev, int vfidx, u8 *mac)
3639{
3640 struct lio *lio = GET_LIO(netdev);
3641 struct octeon_device *oct = lio->oct_dev;
3642 int retval;
3643
3644 retval = __liquidio_set_vf_mac(netdev, vfidx, mac, true);
3645 if (!retval)
3646 cn23xx_tell_vf_its_macaddr_changed(oct, vfidx, mac);
3647
3648 return retval;
3649}
3650
3651static int liquidio_set_vf_vlan(struct net_device *netdev, int vfidx,
3652 u16 vlan, u8 qos, __be16 vlan_proto)
3653{
3654 struct lio *lio = GET_LIO(netdev);
3655 struct octeon_device *oct = lio->oct_dev;
3656 struct octnic_ctrl_pkt nctrl;
3657 u16 vlantci;
3658
3659 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3660 return -EINVAL;
3661
3662 if (vlan_proto != htons(ETH_P_8021Q))
3663 return -EPROTONOSUPPORT;
3664
3665 if (vlan >= VLAN_N_VID || qos > 7)
3666 return -EINVAL;
3667
3668 if (vlan)
3669 vlantci = vlan | (u16)qos << VLAN_PRIO_SHIFT;
3670 else
3671 vlantci = 0;
3672
3673 if (oct->sriov_info.vf_vlantci[vfidx] == vlantci)
3674 return 0;
3675
3676 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3677
3678 if (vlan)
3679 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3680 else
3681 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3682
3683 nctrl.ncmd.s.param1 = vlantci;
3684 nctrl.ncmd.s.param2 =
3685 vfidx + 1; /* vfidx is 0 based, but vf_num (param2) is 1 based */
3686 nctrl.ncmd.s.more = 0;
3687 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3688 nctrl.cb_fn = 0;
3689 nctrl.wait_time = LIO_CMD_WAIT_TM;
3690
3691 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3692
3693 oct->sriov_info.vf_vlantci[vfidx] = vlantci;
3694
3695 return 0;
3696}
3697
3698static int liquidio_get_vf_config(struct net_device *netdev, int vfidx,
3699 struct ifla_vf_info *ivi)
3700{
3701 struct lio *lio = GET_LIO(netdev);
3702 struct octeon_device *oct = lio->oct_dev;
3703 u8 *macaddr;
3704
3705 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3706 return -EINVAL;
3707
3708 ivi->vf = vfidx;
3709 macaddr = 2 + (u8 *)&oct->sriov_info.vf_macaddr[vfidx];
3710 ether_addr_copy(&ivi->mac[0], macaddr);
3711 ivi->vlan = oct->sriov_info.vf_vlantci[vfidx] & VLAN_VID_MASK;
3712 ivi->qos = oct->sriov_info.vf_vlantci[vfidx] >> VLAN_PRIO_SHIFT;
3713 ivi->linkstate = oct->sriov_info.vf_linkstate[vfidx];
3714 return 0;
3715}
3716
3717static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
3718 int linkstate)
3719{
3720 struct lio *lio = GET_LIO(netdev);
3721 struct octeon_device *oct = lio->oct_dev;
3722 struct octnic_ctrl_pkt nctrl;
3723
3724 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3725 return -EINVAL;
3726
3727 if (oct->sriov_info.vf_linkstate[vfidx] == linkstate)
3728 return 0;
3729
3730 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3731 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_VF_LINKSTATE;
3732 nctrl.ncmd.s.param1 =
3733 vfidx + 1; /* vfidx is 0 based, but vf_num (param1) is 1 based */
3734 nctrl.ncmd.s.param2 = linkstate;
3735 nctrl.ncmd.s.more = 0;
3736 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3737 nctrl.cb_fn = 0;
3738 nctrl.wait_time = LIO_CMD_WAIT_TM;
3739
3740 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3741
3742 oct->sriov_info.vf_linkstate[vfidx] = linkstate;
3743
3744 return 0;
3745}
3746
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003747static const struct net_device_ops lionetdevops = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003748 .ndo_open = liquidio_open,
3749 .ndo_stop = liquidio_stop,
3750 .ndo_start_xmit = liquidio_xmit,
3751 .ndo_get_stats = liquidio_get_stats,
3752 .ndo_set_mac_address = liquidio_set_mac,
3753 .ndo_set_rx_mode = liquidio_set_mcast_list,
3754 .ndo_tx_timeout = liquidio_tx_timeout,
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003755
3756 .ndo_vlan_rx_add_vid = liquidio_vlan_rx_add_vid,
3757 .ndo_vlan_rx_kill_vid = liquidio_vlan_rx_kill_vid,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003758 .ndo_change_mtu = liquidio_change_mtu,
3759 .ndo_do_ioctl = liquidio_ioctl,
3760 .ndo_fix_features = liquidio_fix_features,
3761 .ndo_set_features = liquidio_set_features,
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003762 .ndo_udp_tunnel_add = liquidio_add_vxlan_port,
3763 .ndo_udp_tunnel_del = liquidio_del_vxlan_port,
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003764 .ndo_set_vf_mac = liquidio_set_vf_mac,
3765 .ndo_set_vf_vlan = liquidio_set_vf_vlan,
3766 .ndo_get_vf_config = liquidio_get_vf_config,
3767 .ndo_set_vf_link_state = liquidio_set_vf_link_state,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003768};
3769
3770/** \brief Entry point for the liquidio module
3771 */
3772static int __init liquidio_init(void)
3773{
3774 int i;
3775 struct handshake *hs;
3776
3777 init_completion(&first_stage);
3778
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003779 octeon_init_device_list(OCTEON_CONFIG_TYPE_DEFAULT);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003780
3781 if (liquidio_init_pci())
3782 return -EINVAL;
3783
3784 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3785
3786 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3787 hs = &handshake[i];
3788 if (hs->pci_dev) {
3789 wait_for_completion(&hs->init);
3790 if (!hs->init_ok) {
3791 /* init handshake failed */
3792 dev_err(&hs->pci_dev->dev,
3793 "Failed to init device\n");
3794 liquidio_deinit_pci();
3795 return -EIO;
3796 }
3797 }
3798 }
3799
3800 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3801 hs = &handshake[i];
3802 if (hs->pci_dev) {
3803 wait_for_completion_timeout(&hs->started,
3804 msecs_to_jiffies(30000));
3805 if (!hs->started_ok) {
3806 /* starter handshake failed */
3807 dev_err(&hs->pci_dev->dev,
3808 "Firmware failed to start\n");
3809 liquidio_deinit_pci();
3810 return -EIO;
3811 }
3812 }
3813 }
3814
3815 return 0;
3816}
3817
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -07003818static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003819{
3820 struct octeon_device *oct = (struct octeon_device *)buf;
3821 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003822 int gmxport = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003823 union oct_link_status *ls;
3824 int i;
3825
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003826 if (recv_pkt->buffer_size[0] != sizeof(*ls)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003827 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3828 recv_pkt->buffer_size[0],
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003829 recv_pkt->rh.r_nic_info.gmxport);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003830 goto nic_info_err;
3831 }
3832
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003833 gmxport = recv_pkt->rh.r_nic_info.gmxport;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003834 ls = (union oct_link_status *)get_rbd(recv_pkt->buffer_ptr[0]);
3835
3836 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003837 for (i = 0; i < oct->ifcount; i++) {
3838 if (oct->props[i].gmxport == gmxport) {
3839 update_link_status(oct->props[i].netdev, ls);
3840 break;
3841 }
3842 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003843
3844nic_info_err:
3845 for (i = 0; i < recv_pkt->buffer_count; i++)
3846 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3847 octeon_free_recv_info(recv_info);
3848 return 0;
3849}
3850
3851/**
3852 * \brief Setup network interfaces
3853 * @param octeon_dev octeon device
3854 *
3855 * Called during init time for each device. It assumes the NIC
3856 * is already up and running. The link information for each
3857 * interface is passed in link_info.
3858 */
3859static int setup_nic_devices(struct octeon_device *octeon_dev)
3860{
3861 struct lio *lio = NULL;
3862 struct net_device *netdev;
3863 u8 mac[6], i, j;
3864 struct octeon_soft_command *sc;
3865 struct liquidio_if_cfg_context *ctx;
3866 struct liquidio_if_cfg_resp *resp;
3867 struct octdev_props *props;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003868 int retval, num_iqueues, num_oqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003869 union oct_nic_if_cfg if_cfg;
3870 unsigned int base_queue;
3871 unsigned int gmx_port_id;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003872 u32 resp_size, ctx_size, data_size;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003873 u32 ifidx_or_pfnum;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003874 struct lio_version *vdata;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003875
3876 /* This is to handle link status changes */
3877 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3878 OPCODE_NIC_INFO,
3879 lio_nic_info, octeon_dev);
3880
3881 /* REQTYPE_RESP_NET and REQTYPE_SOFT_COMMAND do not have free functions.
3882 * They are handled directly.
3883 */
3884 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
3885 free_netbuf);
3886
3887 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
3888 free_netsgbuf);
3889
3890 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
3891 free_netsgbuf_with_resp);
3892
3893 for (i = 0; i < octeon_dev->ifcount; i++) {
3894 resp_size = sizeof(struct liquidio_if_cfg_resp);
3895 ctx_size = sizeof(struct liquidio_if_cfg_context);
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003896 data_size = sizeof(struct lio_version);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003897 sc = (struct octeon_soft_command *)
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003898 octeon_alloc_soft_command(octeon_dev, data_size,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003899 resp_size, ctx_size);
3900 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
3901 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003902 vdata = (struct lio_version *)sc->virtdptr;
3903
3904 *((u64 *)vdata) = 0;
3905 vdata->major = cpu_to_be16(LIQUIDIO_BASE_MAJOR_VERSION);
3906 vdata->minor = cpu_to_be16(LIQUIDIO_BASE_MINOR_VERSION);
3907 vdata->micro = cpu_to_be16(LIQUIDIO_BASE_MICRO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003908
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07003909 if (OCTEON_CN23XX_PF(octeon_dev)) {
3910 num_iqueues = octeon_dev->sriov_info.num_pf_rings;
3911 num_oqueues = octeon_dev->sriov_info.num_pf_rings;
3912 base_queue = octeon_dev->sriov_info.pf_srn;
3913
3914 gmx_port_id = octeon_dev->pf_num;
3915 ifidx_or_pfnum = octeon_dev->pf_num;
3916 } else {
3917 num_iqueues = CFG_GET_NUM_TXQS_NIC_IF(
3918 octeon_get_conf(octeon_dev), i);
3919 num_oqueues = CFG_GET_NUM_RXQS_NIC_IF(
3920 octeon_get_conf(octeon_dev), i);
3921 base_queue = CFG_GET_BASE_QUE_NIC_IF(
3922 octeon_get_conf(octeon_dev), i);
3923 gmx_port_id = CFG_GET_GMXID_NIC_IF(
3924 octeon_get_conf(octeon_dev), i);
3925 ifidx_or_pfnum = i;
3926 }
Raghu Vatsavayi3dcef2c2016-07-03 13:56:51 -07003927
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003928 dev_dbg(&octeon_dev->pci_dev->dev,
3929 "requesting config for interface %d, iqs %d, oqs %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003930 ifidx_or_pfnum, num_iqueues, num_oqueues);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07003931 WRITE_ONCE(ctx->cond, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003932 ctx->octeon_id = lio_get_device_id(octeon_dev);
3933 init_waitqueue_head(&ctx->wc);
3934
3935 if_cfg.u64 = 0;
3936 if_cfg.s.num_iqueues = num_iqueues;
3937 if_cfg.s.num_oqueues = num_oqueues;
3938 if_cfg.s.base_queue = base_queue;
3939 if_cfg.s.gmx_port_id = gmx_port_id;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003940
3941 sc->iq_no = 0;
3942
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003943 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003944 OPCODE_NIC_IF_CFG, 0,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003945 if_cfg.u64, 0);
3946
3947 sc->callback = if_cfg_callback;
3948 sc->callback_arg = sc;
Raghu Vatsavayi55893a62016-07-03 13:56:50 -07003949 sc->wait_time = 3000;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003950
3951 retval = octeon_send_soft_command(octeon_dev, sc);
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003952 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003953 dev_err(&octeon_dev->pci_dev->dev,
3954 "iq/oq config failed status: %x\n",
3955 retval);
3956 /* Soft instr is freed by driver in case of failure. */
3957 goto setup_nic_dev_fail;
3958 }
3959
3960 /* Sleep on a wait queue till the cond flag indicates that the
3961 * response arrived or timed-out.
3962 */
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07003963 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR) {
3964 dev_err(&octeon_dev->pci_dev->dev, "Wait interrupted\n");
3965 goto setup_nic_wait_intr;
3966 }
3967
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003968 retval = resp->status;
3969 if (retval) {
3970 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
3971 goto setup_nic_dev_fail;
3972 }
3973
3974 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
3975 (sizeof(struct liquidio_if_cfg_info)) >> 3);
3976
3977 num_iqueues = hweight64(resp->cfg_info.iqmask);
3978 num_oqueues = hweight64(resp->cfg_info.oqmask);
3979
3980 if (!(num_iqueues) || !(num_oqueues)) {
3981 dev_err(&octeon_dev->pci_dev->dev,
3982 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
3983 resp->cfg_info.iqmask,
3984 resp->cfg_info.oqmask);
3985 goto setup_nic_dev_fail;
3986 }
3987 dev_dbg(&octeon_dev->pci_dev->dev,
3988 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d\n",
3989 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
3990 num_iqueues, num_oqueues);
3991 netdev = alloc_etherdev_mq(LIO_SIZE, num_iqueues);
3992
3993 if (!netdev) {
3994 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
3995 goto setup_nic_dev_fail;
3996 }
3997
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003998 SET_NETDEV_DEV(netdev, &octeon_dev->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003999
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004000 /* Associate the routines that will handle different
4001 * netdev tasks.
4002 */
4003 netdev->netdev_ops = &lionetdevops;
4004
4005 lio = GET_LIO(netdev);
4006
4007 memset(lio, 0, sizeof(struct lio));
4008
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004009 lio->ifidx = ifidx_or_pfnum;
4010
4011 props = &octeon_dev->props[i];
4012 props->gmxport = resp->cfg_info.linfo.gmxport;
4013 props->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004014
4015 lio->linfo.num_rxpciq = num_oqueues;
4016 lio->linfo.num_txpciq = num_iqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004017 for (j = 0; j < num_oqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004018 lio->linfo.rxpciq[j].u64 =
4019 resp->cfg_info.linfo.rxpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004020 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004021 for (j = 0; j < num_iqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004022 lio->linfo.txpciq[j].u64 =
4023 resp->cfg_info.linfo.txpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004024 }
4025 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
4026 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
4027 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
4028
4029 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
4030
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07004031 if (OCTEON_CN23XX_PF(octeon_dev) ||
4032 OCTEON_CN6XXX(octeon_dev)) {
4033 lio->dev_capability = NETIF_F_HIGHDMA
4034 | NETIF_F_IP_CSUM
4035 | NETIF_F_IPV6_CSUM
4036 | NETIF_F_SG | NETIF_F_RXCSUM
4037 | NETIF_F_GRO
4038 | NETIF_F_TSO | NETIF_F_TSO6
4039 | NETIF_F_LRO;
4040 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004041 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
4042
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004043 /* Copy of transmit encapsulation capabilities:
4044 * TSO, TSO6, Checksums for this device
4045 */
4046 lio->enc_dev_capability = NETIF_F_IP_CSUM
4047 | NETIF_F_IPV6_CSUM
4048 | NETIF_F_GSO_UDP_TUNNEL
4049 | NETIF_F_HW_CSUM | NETIF_F_SG
4050 | NETIF_F_RXCSUM
4051 | NETIF_F_TSO | NETIF_F_TSO6
4052 | NETIF_F_LRO;
4053
4054 netdev->hw_enc_features = (lio->enc_dev_capability &
4055 ~NETIF_F_LRO);
4056
4057 lio->dev_capability |= NETIF_F_GSO_UDP_TUNNEL;
4058
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004059 netdev->vlan_features = lio->dev_capability;
4060 /* Add any unchangeable hw features */
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004061 lio->dev_capability |= NETIF_F_HW_VLAN_CTAG_FILTER |
4062 NETIF_F_HW_VLAN_CTAG_RX |
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004063 NETIF_F_HW_VLAN_CTAG_TX;
4064
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004065 netdev->features = (lio->dev_capability & ~NETIF_F_LRO);
4066
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004067 netdev->hw_features = lio->dev_capability;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004068 /*HW_VLAN_RX and HW_VLAN_FILTER is always on*/
4069 netdev->hw_features = netdev->hw_features &
4070 ~NETIF_F_HW_VLAN_CTAG_RX;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004071
Jarod Wilson109cc162016-10-17 15:54:13 -04004072 /* MTU range: 68 - 16000 */
4073 netdev->min_mtu = LIO_MIN_MTU_SIZE;
4074 netdev->max_mtu = LIO_MAX_MTU_SIZE;
4075
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004076 /* Point to the properties for octeon device to which this
4077 * interface belongs.
4078 */
4079 lio->oct_dev = octeon_dev;
4080 lio->octprops = props;
4081 lio->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004082
4083 dev_dbg(&octeon_dev->pci_dev->dev,
4084 "if%d gmx: %d hw_addr: 0x%llx\n", i,
4085 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
4086
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004087 for (j = 0; j < octeon_dev->sriov_info.max_vfs; j++) {
4088 u8 vfmac[ETH_ALEN];
4089
4090 random_ether_addr(&vfmac[0]);
4091 if (__liquidio_set_vf_mac(netdev, j,
4092 &vfmac[0], false)) {
4093 dev_err(&octeon_dev->pci_dev->dev,
4094 "Error setting VF%d MAC address\n",
4095 j);
4096 goto setup_nic_dev_fail;
4097 }
4098 }
4099
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004100 /* 64-bit swap required on LE machines */
4101 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
4102 for (j = 0; j < 6; j++)
4103 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
4104
4105 /* Copy MAC Address to OS network device structure */
4106
4107 ether_addr_copy(netdev->dev_addr, mac);
4108
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004109 /* By default all interfaces on a single Octeon uses the same
4110 * tx and rx queues
4111 */
4112 lio->txq = lio->linfo.txpciq[0].s.q_no;
4113 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004114 if (setup_io_queues(octeon_dev, i)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004115 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
4116 goto setup_nic_dev_fail;
4117 }
4118
4119 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
4120
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004121 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
4122 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
4123
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07004124 if (setup_glists(octeon_dev, lio, num_iqueues)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004125 dev_err(&octeon_dev->pci_dev->dev,
4126 "Gather list allocation failed\n");
4127 goto setup_nic_dev_fail;
4128 }
4129
4130 /* Register ethtool support */
4131 liquidio_set_ethtool_ops(netdev);
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004132 if (lio->oct_dev->chip_id == OCTEON_CN23XX_PF_VID)
4133 octeon_dev->priv_flags = OCT_PRIV_FLAG_DEFAULT;
4134 else
4135 octeon_dev->priv_flags = 0x0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004136
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004137 if (netdev->features & NETIF_F_LRO)
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07004138 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
4139 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004140
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004141 liquidio_set_feature(netdev, OCTNET_CMD_ENABLE_VLAN_FILTER, 0);
4142
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004143 if ((debug != -1) && (debug & NETIF_MSG_HW))
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004144 liquidio_set_feature(netdev,
4145 OCTNET_CMD_VERBOSE_ENABLE, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004146
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07004147 if (setup_link_status_change_wq(netdev))
4148 goto setup_nic_dev_fail;
4149
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004150 /* Register the network device with the OS */
4151 if (register_netdev(netdev)) {
4152 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
4153 goto setup_nic_dev_fail;
4154 }
4155
4156 dev_dbg(&octeon_dev->pci_dev->dev,
4157 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
4158 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
4159 netif_carrier_off(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004160 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004161
4162 ifstate_set(lio, LIO_IFSTATE_REGISTERED);
4163
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004164 /* Sending command to firmware to enable Rx checksum offload
4165 * by default at the time of setup of Liquidio driver for
4166 * this device
4167 */
4168 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
4169 OCTNET_CMD_RXCSUM_ENABLE);
4170 liquidio_set_feature(netdev, OCTNET_CMD_TNL_TX_CSUM_CTL,
4171 OCTNET_CMD_TXCSUM_ENABLE);
4172
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004173 dev_dbg(&octeon_dev->pci_dev->dev,
4174 "NIC ifidx:%d Setup successful\n", i);
4175
4176 octeon_free_soft_command(octeon_dev, sc);
4177 }
4178
4179 return 0;
4180
4181setup_nic_dev_fail:
4182
4183 octeon_free_soft_command(octeon_dev, sc);
4184
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07004185setup_nic_wait_intr:
4186
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004187 while (i--) {
4188 dev_err(&octeon_dev->pci_dev->dev,
4189 "NIC ifidx:%d Setup failed\n", i);
4190 liquidio_destroy_nic_device(octeon_dev, i);
4191 }
4192 return -ENODEV;
4193}
4194
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08004195#ifdef CONFIG_PCI_IOV
4196static int octeon_enable_sriov(struct octeon_device *oct)
4197{
4198 unsigned int num_vfs_alloced = oct->sriov_info.num_vfs_alloced;
4199 struct pci_dev *vfdev;
4200 int err;
4201 u32 u;
4202
4203 if (OCTEON_CN23XX_PF(oct) && num_vfs_alloced) {
4204 err = pci_enable_sriov(oct->pci_dev,
4205 oct->sriov_info.num_vfs_alloced);
4206 if (err) {
4207 dev_err(&oct->pci_dev->dev,
4208 "OCTEON: Failed to enable PCI sriov: %d\n",
4209 err);
4210 oct->sriov_info.num_vfs_alloced = 0;
4211 return err;
4212 }
4213 oct->sriov_info.sriov_enabled = 1;
4214
4215 /* init lookup table that maps DPI ring number to VF pci_dev
4216 * struct pointer
4217 */
4218 u = 0;
4219 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4220 OCTEON_CN23XX_VF_VID, NULL);
4221 while (vfdev) {
4222 if (vfdev->is_virtfn &&
4223 (vfdev->physfn == oct->pci_dev)) {
4224 oct->sriov_info.dpiring_to_vfpcidev_lut[u] =
4225 vfdev;
4226 u += oct->sriov_info.rings_per_vf;
4227 }
4228 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4229 OCTEON_CN23XX_VF_VID, vfdev);
4230 }
4231 }
4232
4233 return num_vfs_alloced;
4234}
4235
4236static int lio_pci_sriov_disable(struct octeon_device *oct)
4237{
4238 int u;
4239
4240 if (pci_vfs_assigned(oct->pci_dev)) {
4241 dev_err(&oct->pci_dev->dev, "VFs are still assigned to VMs.\n");
4242 return -EPERM;
4243 }
4244
4245 pci_disable_sriov(oct->pci_dev);
4246
4247 u = 0;
4248 while (u < MAX_POSSIBLE_VFS) {
4249 oct->sriov_info.dpiring_to_vfpcidev_lut[u] = NULL;
4250 u += oct->sriov_info.rings_per_vf;
4251 }
4252
4253 oct->sriov_info.num_vfs_alloced = 0;
4254 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d disabled VFs\n",
4255 oct->pf_num);
4256
4257 return 0;
4258}
4259
4260static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs)
4261{
4262 struct octeon_device *oct = pci_get_drvdata(dev);
4263 int ret = 0;
4264
4265 if ((num_vfs == oct->sriov_info.num_vfs_alloced) &&
4266 (oct->sriov_info.sriov_enabled)) {
4267 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d already enabled num_vfs:%d\n",
4268 oct->pf_num, num_vfs);
4269 return 0;
4270 }
4271
4272 if (!num_vfs) {
4273 ret = lio_pci_sriov_disable(oct);
4274 } else if (num_vfs > oct->sriov_info.max_vfs) {
4275 dev_err(&oct->pci_dev->dev,
4276 "OCTEON: Max allowed VFs:%d user requested:%d",
4277 oct->sriov_info.max_vfs, num_vfs);
4278 ret = -EPERM;
4279 } else {
4280 oct->sriov_info.num_vfs_alloced = num_vfs;
4281 ret = octeon_enable_sriov(oct);
4282 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d num_vfs:%d\n",
4283 oct->pf_num, num_vfs);
4284 }
4285
4286 return ret;
4287}
4288#endif
4289
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004290/**
4291 * \brief initialize the NIC
4292 * @param oct octeon device
4293 *
4294 * This initialization routine is called once the Octeon device application is
4295 * up and running
4296 */
4297static int liquidio_init_nic_module(struct octeon_device *oct)
4298{
4299 struct oct_intrmod_cfg *intrmod_cfg;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004300 int i, retval = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004301 int num_nic_ports = CFG_GET_NUM_NIC_PORTS(octeon_get_conf(oct));
4302
4303 dev_dbg(&oct->pci_dev->dev, "Initializing network interfaces\n");
4304
4305 /* only default iq and oq were initialized
4306 * initialize the rest as well
4307 */
4308 /* run port_config command for each port */
4309 oct->ifcount = num_nic_ports;
4310
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004311 memset(oct->props, 0, sizeof(struct octdev_props) * num_nic_ports);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004312
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004313 for (i = 0; i < MAX_OCTEON_LINKS; i++)
4314 oct->props[i].gmxport = -1;
4315
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004316 retval = setup_nic_devices(oct);
4317 if (retval) {
4318 dev_err(&oct->pci_dev->dev, "Setup NIC devices failed\n");
4319 goto octnet_init_failure;
4320 }
4321
4322 liquidio_ptp_init(oct);
4323
4324 /* Initialize interrupt moderation params */
4325 intrmod_cfg = &((struct octeon_device *)oct)->intrmod;
Raghu Vatsavayi78e6a9b2016-06-21 22:53:10 -07004326 intrmod_cfg->rx_enable = 1;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004327 intrmod_cfg->check_intrvl = LIO_INTRMOD_CHECK_INTERVAL;
Raghu Vatsavayi78e6a9b2016-06-21 22:53:10 -07004328 intrmod_cfg->maxpkt_ratethr = LIO_INTRMOD_MAXPKT_RATETHR;
4329 intrmod_cfg->minpkt_ratethr = LIO_INTRMOD_MINPKT_RATETHR;
4330 intrmod_cfg->rx_maxcnt_trigger = LIO_INTRMOD_RXMAXCNT_TRIGGER;
4331 intrmod_cfg->rx_maxtmr_trigger = LIO_INTRMOD_RXMAXTMR_TRIGGER;
4332 intrmod_cfg->rx_mintmr_trigger = LIO_INTRMOD_RXMINTMR_TRIGGER;
4333 intrmod_cfg->rx_mincnt_trigger = LIO_INTRMOD_RXMINCNT_TRIGGER;
4334 intrmod_cfg->tx_enable = 1;
4335 intrmod_cfg->tx_maxcnt_trigger = LIO_INTRMOD_TXMAXCNT_TRIGGER;
4336 intrmod_cfg->tx_mincnt_trigger = LIO_INTRMOD_TXMINCNT_TRIGGER;
4337 intrmod_cfg->rx_frames = CFG_GET_OQ_INTR_PKT(octeon_get_conf(oct));
4338 intrmod_cfg->rx_usecs = CFG_GET_OQ_INTR_TIME(octeon_get_conf(oct));
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07004339 intrmod_cfg->tx_frames = CFG_GET_IQ_INTR_PKT(octeon_get_conf(oct));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004340 dev_dbg(&oct->pci_dev->dev, "Network interfaces ready\n");
4341
4342 return retval;
4343
4344octnet_init_failure:
4345
4346 oct->ifcount = 0;
4347
4348 return retval;
4349}
4350
4351/**
4352 * \brief starter callback that invokes the remaining initialization work after
4353 * the NIC is up and running.
4354 * @param octptr work struct work_struct
4355 */
4356static void nic_starter(struct work_struct *work)
4357{
4358 struct octeon_device *oct;
4359 struct cavium_wk *wk = (struct cavium_wk *)work;
4360
4361 oct = (struct octeon_device *)wk->ctxptr;
4362
4363 if (atomic_read(&oct->status) == OCT_DEV_RUNNING)
4364 return;
4365
4366 /* If the status of the device is CORE_OK, the core
4367 * application has reported its application type. Call
4368 * any registered handlers now and move to the RUNNING
4369 * state.
4370 */
4371 if (atomic_read(&oct->status) != OCT_DEV_CORE_OK) {
4372 schedule_delayed_work(&oct->nic_poll_work.work,
4373 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4374 return;
4375 }
4376
4377 atomic_set(&oct->status, OCT_DEV_RUNNING);
4378
4379 if (oct->app_mode && oct->app_mode == CVM_DRV_NIC_APP) {
4380 dev_dbg(&oct->pci_dev->dev, "Starting NIC module\n");
4381
4382 if (liquidio_init_nic_module(oct))
4383 dev_err(&oct->pci_dev->dev, "NIC initialization failed\n");
4384 else
4385 handshake[oct->octeon_id].started_ok = 1;
4386 } else {
4387 dev_err(&oct->pci_dev->dev,
4388 "Unexpected application running on NIC (%d). Check firmware.\n",
4389 oct->app_mode);
4390 }
4391
4392 complete(&handshake[oct->octeon_id].started);
4393}
4394
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004395static int
4396octeon_recv_vf_drv_notice(struct octeon_recv_info *recv_info, void *buf)
4397{
4398 struct octeon_device *oct = (struct octeon_device *)buf;
4399 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
4400 int i, notice, vf_idx;
4401 u64 *data, vf_num;
4402
4403 notice = recv_pkt->rh.r.ossp;
4404 data = (u64 *)get_rbd(recv_pkt->buffer_ptr[0]);
4405
4406 /* the first 64-bit word of data is the vf_num */
4407 vf_num = data[0];
4408 octeon_swap_8B_data(&vf_num, 1);
4409 vf_idx = (int)vf_num - 1;
4410
4411 if (notice == VF_DRV_LOADED) {
4412 if (!(oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx))) {
4413 oct->sriov_info.vf_drv_loaded_mask |= BIT_ULL(vf_idx);
4414 dev_info(&oct->pci_dev->dev,
4415 "driver for VF%d was loaded\n", vf_idx);
4416 try_module_get(THIS_MODULE);
4417 }
4418 } else if (notice == VF_DRV_REMOVED) {
4419 if (oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx)) {
4420 oct->sriov_info.vf_drv_loaded_mask &= ~BIT_ULL(vf_idx);
4421 dev_info(&oct->pci_dev->dev,
4422 "driver for VF%d was removed\n", vf_idx);
4423 module_put(THIS_MODULE);
4424 }
4425 } else if (notice == VF_DRV_MACADDR_CHANGED) {
4426 u8 *b = (u8 *)&data[1];
4427
4428 oct->sriov_info.vf_macaddr[vf_idx] = data[1];
4429 dev_info(&oct->pci_dev->dev,
4430 "VF driver changed VF%d's MAC address to %pM\n",
4431 vf_idx, b + 2);
4432 }
4433
4434 for (i = 0; i < recv_pkt->buffer_count; i++)
4435 recv_buffer_free(recv_pkt->buffer_ptr[i]);
4436 octeon_free_recv_info(recv_info);
4437
4438 return 0;
4439}
4440
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004441/**
4442 * \brief Device initialization for each Octeon device that is probed
4443 * @param octeon_dev octeon device
4444 */
4445static int octeon_device_init(struct octeon_device *octeon_dev)
4446{
4447 int j, ret;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004448 int fw_loaded = 0;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004449 char bootcmd[] = "\n";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004450 struct octeon_device_priv *oct_priv =
4451 (struct octeon_device_priv *)octeon_dev->priv;
4452 atomic_set(&octeon_dev->status, OCT_DEV_BEGIN_STATE);
4453
4454 /* Enable access to the octeon device and make its DMA capability
4455 * known to the OS.
4456 */
4457 if (octeon_pci_os_setup(octeon_dev))
4458 return 1;
4459
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004460 atomic_set(&octeon_dev->status, OCT_DEV_PCI_ENABLE_DONE);
4461
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004462 /* Identify the Octeon type and map the BAR address space. */
4463 if (octeon_chip_specific_setup(octeon_dev)) {
4464 dev_err(&octeon_dev->pci_dev->dev, "Chip specific setup failed\n");
4465 return 1;
4466 }
4467
4468 atomic_set(&octeon_dev->status, OCT_DEV_PCI_MAP_DONE);
4469
4470 octeon_dev->app_mode = CVM_DRV_INVALID_APP;
4471
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004472 if (OCTEON_CN23XX_PF(octeon_dev)) {
4473 if (!cn23xx_fw_loaded(octeon_dev)) {
4474 fw_loaded = 0;
4475 /* Do a soft reset of the Octeon device. */
4476 if (octeon_dev->fn_list.soft_reset(octeon_dev))
4477 return 1;
4478 /* things might have changed */
4479 if (!cn23xx_fw_loaded(octeon_dev))
4480 fw_loaded = 0;
4481 else
4482 fw_loaded = 1;
4483 } else {
4484 fw_loaded = 1;
4485 }
4486 } else if (octeon_dev->fn_list.soft_reset(octeon_dev)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004487 return 1;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004488 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004489
4490 /* Initialize the dispatch mechanism used to push packets arriving on
4491 * Octeon Output queues.
4492 */
4493 if (octeon_init_dispatch_list(octeon_dev))
4494 return 1;
4495
4496 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4497 OPCODE_NIC_CORE_DRV_ACTIVE,
4498 octeon_core_drv_init,
4499 octeon_dev);
4500
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004501 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4502 OPCODE_NIC_VF_DRV_NOTICE,
4503 octeon_recv_vf_drv_notice, octeon_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004504 INIT_DELAYED_WORK(&octeon_dev->nic_poll_work.work, nic_starter);
4505 octeon_dev->nic_poll_work.ctxptr = (void *)octeon_dev;
4506 schedule_delayed_work(&octeon_dev->nic_poll_work.work,
4507 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4508
4509 atomic_set(&octeon_dev->status, OCT_DEV_DISPATCH_INIT_DONE);
4510
Raghu Vatsavayic865cdf2016-11-28 16:54:36 -08004511 if (octeon_set_io_queues_off(octeon_dev)) {
4512 dev_err(&octeon_dev->pci_dev->dev, "setting io queues off failed\n");
4513 return 1;
4514 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004515
Raghu Vatsavayi3451b972016-08-31 11:03:26 -07004516 if (OCTEON_CN23XX_PF(octeon_dev)) {
4517 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4518 if (ret) {
4519 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Failed to configure device registers\n");
4520 return ret;
4521 }
4522 }
4523
4524 /* Initialize soft command buffer pool
4525 */
4526 if (octeon_setup_sc_buffer_pool(octeon_dev)) {
4527 dev_err(&octeon_dev->pci_dev->dev, "sc buffer pool allocation failed\n");
4528 return 1;
4529 }
4530 atomic_set(&octeon_dev->status, OCT_DEV_SC_BUFF_POOL_INIT_DONE);
4531
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004532 /* Setup the data structures that manage this Octeon's Input queues. */
4533 if (octeon_setup_instr_queues(octeon_dev)) {
4534 dev_err(&octeon_dev->pci_dev->dev,
4535 "instruction queue initialization failed\n");
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004536 return 1;
4537 }
4538 atomic_set(&octeon_dev->status, OCT_DEV_INSTR_QUEUE_INIT_DONE);
4539
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004540 /* Initialize lists to manage the requests of different types that
4541 * arrive from user & kernel applications for this octeon device.
4542 */
4543 if (octeon_setup_response_list(octeon_dev)) {
4544 dev_err(&octeon_dev->pci_dev->dev, "Response list allocation failed\n");
4545 return 1;
4546 }
4547 atomic_set(&octeon_dev->status, OCT_DEV_RESP_LIST_INIT_DONE);
4548
4549 if (octeon_setup_output_queues(octeon_dev)) {
4550 dev_err(&octeon_dev->pci_dev->dev, "Output queue initialization failed\n");
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004551 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004552 }
4553
4554 atomic_set(&octeon_dev->status, OCT_DEV_DROQ_INIT_DONE);
4555
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004556 if (OCTEON_CN23XX_PF(octeon_dev)) {
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08004557 if (octeon_dev->fn_list.setup_mbox(octeon_dev)) {
4558 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Mailbox setup failed\n");
4559 return 1;
4560 }
4561 atomic_set(&octeon_dev->status, OCT_DEV_MBOX_SETUP_DONE);
4562
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004563 if (octeon_allocate_ioq_vector(octeon_dev)) {
4564 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: ioq vector allocation failed\n");
4565 return 1;
4566 }
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004567 atomic_set(&octeon_dev->status, OCT_DEV_MSIX_ALLOC_VECTOR_DONE);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004568
4569 } else {
4570 /* The input and output queue registers were setup earlier (the
4571 * queues were not enabled). Any additional registers
4572 * that need to be programmed should be done now.
4573 */
4574 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4575 if (ret) {
4576 dev_err(&octeon_dev->pci_dev->dev,
4577 "Failed to configure device registers\n");
4578 return ret;
4579 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004580 }
4581
4582 /* Initialize the tasklet that handles output queue packet processing.*/
4583 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing droq tasklet\n");
4584 tasklet_init(&oct_priv->droq_tasklet, octeon_droq_bh,
4585 (unsigned long)octeon_dev);
4586
4587 /* Setup the interrupt handler and record the INT SUM register address
4588 */
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004589 if (octeon_setup_interrupt(octeon_dev))
4590 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004591
4592 /* Enable Octeon device interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004593 octeon_dev->fn_list.enable_interrupt(octeon_dev, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004594
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004595 atomic_set(&octeon_dev->status, OCT_DEV_INTR_SET_DONE);
4596
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004597 /* Enable the input and output queues for this Octeon device */
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07004598 ret = octeon_dev->fn_list.enable_io_queues(octeon_dev);
4599 if (ret) {
4600 dev_err(&octeon_dev->pci_dev->dev, "Failed to enable input/output queues");
4601 return ret;
4602 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004603
4604 atomic_set(&octeon_dev->status, OCT_DEV_IO_QUEUES_DONE);
4605
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004606 if ((!OCTEON_CN23XX_PF(octeon_dev)) || !fw_loaded) {
4607 dev_dbg(&octeon_dev->pci_dev->dev, "Waiting for DDR initialization...\n");
4608 if (!ddr_timeout) {
4609 dev_info(&octeon_dev->pci_dev->dev,
4610 "WAITING. Set ddr_timeout to non-zero value to proceed with initialization.\n");
4611 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004612
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004613 schedule_timeout_uninterruptible(HZ * LIO_RESET_SECS);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004614
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004615 /* Wait for the octeon to initialize DDR after the soft-reset.*/
4616 while (!ddr_timeout) {
4617 set_current_state(TASK_INTERRUPTIBLE);
4618 if (schedule_timeout(HZ / 10)) {
4619 /* user probably pressed Control-C */
4620 return 1;
4621 }
4622 }
4623 ret = octeon_wait_for_ddr_init(octeon_dev, &ddr_timeout);
4624 if (ret) {
4625 dev_err(&octeon_dev->pci_dev->dev,
4626 "DDR not initialized. Please confirm that board is configured to boot from Flash, ret: %d\n",
4627 ret);
Raghu Vatsavayi4b129ae2016-06-21 22:53:15 -07004628 return 1;
4629 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004630
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004631 if (octeon_wait_for_bootloader(octeon_dev, 1000)) {
4632 dev_err(&octeon_dev->pci_dev->dev, "Board not responding\n");
4633 return 1;
4634 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004635
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004636 /* Divert uboot to take commands from host instead. */
4637 ret = octeon_console_send_cmd(octeon_dev, bootcmd, 50);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004638
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004639 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing consoles\n");
4640 ret = octeon_init_consoles(octeon_dev);
4641 if (ret) {
4642 dev_err(&octeon_dev->pci_dev->dev, "Could not access board consoles\n");
4643 return 1;
4644 }
4645 ret = octeon_add_console(octeon_dev, 0);
4646 if (ret) {
4647 dev_err(&octeon_dev->pci_dev->dev, "Could not access board console\n");
4648 return 1;
4649 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004650
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004651 atomic_set(&octeon_dev->status, OCT_DEV_CONSOLE_INIT_DONE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004652
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004653 dev_dbg(&octeon_dev->pci_dev->dev, "Loading firmware\n");
4654 ret = load_firmware(octeon_dev);
4655 if (ret) {
4656 dev_err(&octeon_dev->pci_dev->dev, "Could not load firmware to board\n");
4657 return 1;
4658 }
4659 /* set bit 1 of SLI_SCRATCH_1 to indicate that firmware is
4660 * loaded
4661 */
4662 if (OCTEON_CN23XX_PF(octeon_dev))
4663 octeon_write_csr64(octeon_dev, CN23XX_SLI_SCRATCH1,
4664 2ULL);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004665 }
4666
4667 handshake[octeon_dev->octeon_id].init_ok = 1;
4668 complete(&handshake[octeon_dev->octeon_id].init);
4669
4670 atomic_set(&octeon_dev->status, OCT_DEV_HOST_OK);
4671
4672 /* Send Credit for Octeon Output queues. Credits are always sent after
4673 * the output queue is enabled.
4674 */
4675 for (j = 0; j < octeon_dev->num_oqs; j++)
4676 writel(octeon_dev->droq[j]->max_count,
4677 octeon_dev->droq[j]->pkts_credit_reg);
4678
4679 /* Packets can start arriving on the output queues from this point. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004680 return 0;
4681}
4682
4683/**
4684 * \brief Exits the module
4685 */
4686static void __exit liquidio_exit(void)
4687{
4688 liquidio_deinit_pci();
4689
4690 pr_info("LiquidIO network module is now unloaded\n");
4691}
4692
4693module_init(liquidio_init);
4694module_exit(liquidio_exit);