blob: 0eea6a2d0200901d72013172d50ca41fd18c66c4 [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>
Florian Westphal282ccf62017-03-29 17:17:31 +020019#include <linux/interrupt.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070020#include <linux/pci.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070021#include <linux/firmware.h>
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -070022#include <net/vxlan.h>
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -070023#include <linux/kthread.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070024#include "liquidio_common.h"
25#include "octeon_droq.h"
26#include "octeon_iq.h"
27#include "response_manager.h"
28#include "octeon_device.h"
29#include "octeon_nic.h"
30#include "octeon_main.h"
31#include "octeon_network.h"
32#include "cn66xx_regs.h"
33#include "cn66xx_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070034#include "cn68xx_device.h"
Raghu Vatsavayi72c00912016-08-31 11:03:25 -070035#include "cn23xx_pf_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070036#include "liquidio_image.h"
37
38MODULE_AUTHOR("Cavium Networks, <support@cavium.com>");
39MODULE_DESCRIPTION("Cavium LiquidIO Intelligent Server Adapter Driver");
40MODULE_LICENSE("GPL");
41MODULE_VERSION(LIQUIDIO_VERSION);
Derek Chicklesea6404c82017-08-07 12:22:15 -070042MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210SV_NAME
43 "_" LIO_FW_NAME_TYPE_NIC LIO_FW_NAME_SUFFIX);
44MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210NV_NAME
45 "_" LIO_FW_NAME_TYPE_NIC LIO_FW_NAME_SUFFIX);
46MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_410NV_NAME
47 "_" LIO_FW_NAME_TYPE_NIC LIO_FW_NAME_SUFFIX);
48MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_23XX_NAME
49 "_" LIO_FW_NAME_TYPE_NIC LIO_FW_NAME_SUFFIX);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070050
51static int ddr_timeout = 10000;
52module_param(ddr_timeout, int, 0644);
53MODULE_PARM_DESC(ddr_timeout,
54 "Number of milliseconds to wait for DDR initialization. 0 waits for ddr_timeout to be set to non-zero value before starting to check");
55
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070056#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
57
58static int debug = -1;
59module_param(debug, int, 0644);
60MODULE_PARM_DESC(debug, "NETIF_MSG debug bits");
61
Derek Chicklesd3961792017-08-14 12:17:56 -070062static char fw_type[LIO_MAX_FW_TYPE_LEN] = LIO_FW_NAME_TYPE_NIC;
63module_param_string(fw_type, fw_type, sizeof(fw_type), 0444);
64MODULE_PARM_DESC(fw_type, "Type of firmware to be loaded. Default \"nic\". Use \"none\" to load firmware from flash.");
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070065
Intiyaz Basha2470f3a2017-08-03 15:10:17 -070066static u32 console_bitmask;
67module_param(console_bitmask, int, 0644);
68MODULE_PARM_DESC(console_bitmask,
69 "Bitmask indicating which consoles have debug output redirected to syslog.");
70
71/**
72 * \brief determines if a given console has debug enabled.
73 * @param console console to check
74 * @returns 1 = enabled. 0 otherwise
75 */
Rick Farringtonda1542b2017-08-11 18:43:14 -070076static int octeon_console_debug_enabled(u32 console)
Intiyaz Basha2470f3a2017-08-03 15:10:17 -070077{
78 return (console_bitmask >> (console)) & 0x1;
79}
80
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070081/* Polling interval for determining when NIC application is alive */
82#define LIQUIDIO_STARTER_POLL_INTERVAL_MS 100
83
84/* runtime link query interval */
85#define LIQUIDIO_LINK_QUERY_INTERVAL_MS 1000
86
87struct liquidio_if_cfg_context {
88 int octeon_id;
89
90 wait_queue_head_t wc;
91
92 int cond;
93};
94
95struct liquidio_if_cfg_resp {
96 u64 rh;
97 struct liquidio_if_cfg_info cfg_info;
98 u64 status;
99};
100
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -0700101struct liquidio_rx_ctl_context {
102 int octeon_id;
103
104 wait_queue_head_t wc;
105
106 int cond;
107};
108
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700109struct oct_link_status_resp {
110 u64 rh;
111 struct oct_link_info link_info;
112 u64 status;
113};
114
115struct oct_timestamp_resp {
116 u64 rh;
117 u64 timestamp;
118 u64 status;
119};
120
121#define OCT_TIMESTAMP_RESP_SIZE (sizeof(struct oct_timestamp_resp))
122
123union tx_info {
124 u64 u64;
125 struct {
126#ifdef __BIG_ENDIAN_BITFIELD
127 u16 gso_size;
128 u16 gso_segs;
129 u32 reserved;
130#else
131 u32 reserved;
132 u16 gso_segs;
133 u16 gso_size;
134#endif
135 } s;
136};
137
138/** Octeon device properties to be used by the NIC module.
139 * Each octeon device in the system will be represented
140 * by this structure in the NIC module.
141 */
142
143#define OCTNIC_MAX_SG (MAX_SKB_FRAGS)
144
145#define OCTNIC_GSO_MAX_HEADER_SIZE 128
Raghu Vatsavayi72c00912016-08-31 11:03:25 -0700146#define OCTNIC_GSO_MAX_SIZE \
147 (CN23XX_DEFAULT_INPUT_JABBER - OCTNIC_GSO_MAX_HEADER_SIZE)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700148
149/** Structure of a node in list of gather components maintained by
150 * NIC driver for each network device.
151 */
152struct octnic_gather {
153 /** List manipulation. Next and prev pointers. */
154 struct list_head list;
155
156 /** Size of the gather component at sg in bytes. */
157 int sg_size;
158
159 /** Number of bytes that sg was adjusted to make it 8B-aligned. */
160 int adjust;
161
162 /** Gather component that can accommodate max sized fragment list
163 * received from the IP layer.
164 */
165 struct octeon_sg_entry *sg;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700166
VSR Burru67e303e2017-03-06 18:45:59 -0800167 dma_addr_t sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700168};
169
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700170struct handshake {
171 struct completion init;
172 struct completion started;
173 struct pci_dev *pci_dev;
174 int init_ok;
175 int started_ok;
176};
177
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800178#ifdef CONFIG_PCI_IOV
179static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs);
180#endif
181
Rick Farringtonda1542b2017-08-11 18:43:14 -0700182static int octeon_dbg_console_print(struct octeon_device *oct, u32 console_num,
183 char *prefix, char *suffix);
184
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700185static int octeon_device_init(struct octeon_device *);
Raghu Vatsavayi32581242016-08-31 11:03:20 -0700186static int liquidio_stop(struct net_device *netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700187static void liquidio_remove(struct pci_dev *pdev);
188static int liquidio_probe(struct pci_dev *pdev,
189 const struct pci_device_id *ent);
Felix Manlunasbb54be52017-04-04 19:26:57 -0700190static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
191 int linkstate);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700192
193static struct handshake handshake[MAX_OCTEON_DEVICES];
194static struct completion first_stage;
195
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700196static void octeon_droq_bh(unsigned long pdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700197{
198 int q_no;
199 int reschedule = 0;
200 struct octeon_device *oct = (struct octeon_device *)pdev;
201 struct octeon_device_priv *oct_priv =
202 (struct octeon_device_priv *)oct->priv;
203
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700204 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES(oct); q_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800205 if (!(oct->io_qmask.oq & BIT_ULL(q_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700206 continue;
207 reschedule |= octeon_droq_process_packets(oct, oct->droq[q_no],
208 MAX_PACKET_BUDGET);
Raghu Vatsavayicd8b1eb2016-08-31 11:03:22 -0700209 lio_enable_irq(oct->droq[q_no], NULL);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700210
211 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
212 /* set time and cnt interrupt thresholds for this DROQ
213 * for NAPI
214 */
215 int adjusted_q_no = q_no + oct->sriov_info.pf_srn;
216
217 octeon_write_csr64(
218 oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(adjusted_q_no),
219 0x5700000040ULL);
220 octeon_write_csr64(
221 oct, CN23XX_SLI_OQ_PKTS_SENT(adjusted_q_no), 0);
222 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700223 }
224
225 if (reschedule)
226 tasklet_schedule(&oct_priv->droq_tasklet);
227}
228
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700229static int lio_wait_for_oq_pkts(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700230{
231 struct octeon_device_priv *oct_priv =
232 (struct octeon_device_priv *)oct->priv;
233 int retry = 100, pkt_cnt = 0, pending_pkts = 0;
234 int i;
235
236 do {
237 pending_pkts = 0;
238
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700239 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800240 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700241 continue;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700242 pkt_cnt += octeon_droq_check_hw_for_pkts(oct->droq[i]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700243 }
244 if (pkt_cnt > 0) {
245 pending_pkts += pkt_cnt;
246 tasklet_schedule(&oct_priv->droq_tasklet);
247 }
248 pkt_cnt = 0;
249 schedule_timeout_uninterruptible(1);
250
251 } while (retry-- && pending_pkts);
252
253 return pkt_cnt;
254}
255
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700256/**
257 * \brief Forces all IO queues off on a given device
258 * @param oct Pointer to Octeon device
259 */
260static void force_io_queues_off(struct octeon_device *oct)
261{
262 if ((oct->chip_id == OCTEON_CN66XX) ||
263 (oct->chip_id == OCTEON_CN68XX)) {
264 /* Reset the Enable bits for Input Queues. */
265 octeon_write_csr(oct, CN6XXX_SLI_PKT_INSTR_ENB, 0);
266
267 /* Reset the Enable bits for Output Queues. */
268 octeon_write_csr(oct, CN6XXX_SLI_PKT_OUT_ENB, 0);
269 }
270}
271
272/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700273 * \brief Cause device to go quiet so it can be safely removed/reset/etc
274 * @param oct Pointer to Octeon device
275 */
276static inline void pcierror_quiesce_device(struct octeon_device *oct)
277{
278 int i;
279
280 /* Disable the input and output queues now. No more packets will
281 * arrive from Octeon, but we should wait for all packet processing
282 * to finish.
283 */
284 force_io_queues_off(oct);
285
286 /* To allow for in-flight requests */
287 schedule_timeout_uninterruptible(100);
288
289 if (wait_for_pending_requests(oct))
290 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
291
292 /* Force all requests waiting to be fetched by OCTEON to complete. */
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700293 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700294 struct octeon_instr_queue *iq;
295
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800296 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700297 continue;
298 iq = oct->instr_queue[i];
299
300 if (atomic_read(&iq->instr_pending)) {
301 spin_lock_bh(&iq->lock);
302 iq->fill_cnt = 0;
303 iq->octeon_read_index = iq->host_write_index;
304 iq->stats.instr_processed +=
305 atomic_read(&iq->instr_pending);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700306 lio_process_iq_request_list(oct, iq, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700307 spin_unlock_bh(&iq->lock);
308 }
309 }
310
311 /* Force all pending ordered list requests to time out. */
312 lio_process_ordered_list(oct, 1);
313
314 /* We do not need to wait for output queue packets to be processed. */
315}
316
317/**
318 * \brief Cleanup PCI AER uncorrectable error status
319 * @param dev Pointer to PCI device
320 */
321static void cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
322{
323 int pos = 0x100;
324 u32 status, mask;
325
326 pr_info("%s :\n", __func__);
327
328 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
329 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
330 if (dev->error_state == pci_channel_io_normal)
331 status &= ~mask; /* Clear corresponding nonfatal bits */
332 else
333 status &= mask; /* Clear corresponding fatal bits */
334 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
335}
336
337/**
338 * \brief Stop all PCI IO to a given device
339 * @param dev Pointer to Octeon device
340 */
341static void stop_pci_io(struct octeon_device *oct)
342{
343 /* No more instructions will be forwarded. */
344 atomic_set(&oct->status, OCT_DEV_IN_RESET);
345
346 pci_disable_device(oct->pci_dev);
347
348 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700349 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700350
351 pcierror_quiesce_device(oct);
352
353 /* Release the interrupt line */
354 free_irq(oct->pci_dev->irq, oct);
355
356 if (oct->flags & LIO_FLAG_MSI_ENABLED)
357 pci_disable_msi(oct->pci_dev);
358
359 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
360 lio_get_state_string(&oct->status));
361
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700362 /* making it a common function for all OCTEON models */
363 cleanup_aer_uncorrect_error_status(oct->pci_dev);
364}
365
366/**
367 * \brief called when PCI error is detected
368 * @param pdev Pointer to PCI device
369 * @param state The current pci connection state
370 *
371 * This function is called after a PCI bus error affecting
372 * this device has been detected.
373 */
374static pci_ers_result_t liquidio_pcie_error_detected(struct pci_dev *pdev,
375 pci_channel_state_t state)
376{
377 struct octeon_device *oct = pci_get_drvdata(pdev);
378
379 /* Non-correctable Non-fatal errors */
380 if (state == pci_channel_io_normal) {
381 dev_err(&oct->pci_dev->dev, "Non-correctable non-fatal error reported:\n");
382 cleanup_aer_uncorrect_error_status(oct->pci_dev);
383 return PCI_ERS_RESULT_CAN_RECOVER;
384 }
385
386 /* Non-correctable Fatal errors */
387 dev_err(&oct->pci_dev->dev, "Non-correctable FATAL reported by PCI AER driver\n");
388 stop_pci_io(oct);
389
390 /* Always return a DISCONNECT. There is no support for recovery but only
391 * for a clean shutdown.
392 */
393 return PCI_ERS_RESULT_DISCONNECT;
394}
395
396/**
397 * \brief mmio handler
398 * @param pdev Pointer to PCI device
399 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700400static pci_ers_result_t liquidio_pcie_mmio_enabled(
401 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700402{
403 /* We should never hit this since we never ask for a reset for a Fatal
404 * Error. We always return DISCONNECT in io_error above.
405 * But play safe and return RECOVERED for now.
406 */
407 return PCI_ERS_RESULT_RECOVERED;
408}
409
410/**
411 * \brief called after the pci bus has been reset.
412 * @param pdev Pointer to PCI device
413 *
414 * Restart the card from scratch, as if from a cold-boot. Implementation
415 * resembles the first-half of the octeon_resume routine.
416 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700417static pci_ers_result_t liquidio_pcie_slot_reset(
418 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700419{
420 /* We should never hit this since we never ask for a reset for a Fatal
421 * Error. We always return DISCONNECT in io_error above.
422 * But play safe and return RECOVERED for now.
423 */
424 return PCI_ERS_RESULT_RECOVERED;
425}
426
427/**
428 * \brief called when traffic can start flowing again.
429 * @param pdev Pointer to PCI device
430 *
431 * This callback is called when the error recovery driver tells us that
432 * its OK to resume normal operation. Implementation resembles the
433 * second-half of the octeon_resume routine.
434 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700435static void liquidio_pcie_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700436{
437 /* Nothing to be done here. */
438}
439
440#ifdef CONFIG_PM
441/**
442 * \brief called when suspending
443 * @param pdev Pointer to PCI device
444 * @param state state to suspend to
445 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700446static int liquidio_suspend(struct pci_dev *pdev __attribute__((unused)),
447 pm_message_t state __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700448{
449 return 0;
450}
451
452/**
453 * \brief called when resuming
454 * @param pdev Pointer to PCI device
455 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700456static int liquidio_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700457{
458 return 0;
459}
460#endif
461
462/* For PCI-E Advanced Error Recovery (AER) Interface */
Julia Lawall166e2362015-11-14 11:06:53 +0100463static const struct pci_error_handlers liquidio_err_handler = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700464 .error_detected = liquidio_pcie_error_detected,
465 .mmio_enabled = liquidio_pcie_mmio_enabled,
466 .slot_reset = liquidio_pcie_slot_reset,
467 .resume = liquidio_pcie_resume,
468};
469
470static const struct pci_device_id liquidio_pci_tbl[] = {
471 { /* 68xx */
472 PCI_VENDOR_ID_CAVIUM, 0x91, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
473 },
474 { /* 66xx */
475 PCI_VENDOR_ID_CAVIUM, 0x92, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
476 },
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -0700477 { /* 23xx pf */
478 PCI_VENDOR_ID_CAVIUM, 0x9702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
479 },
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700480 {
481 0, 0, 0, 0, 0, 0, 0
482 }
483};
484MODULE_DEVICE_TABLE(pci, liquidio_pci_tbl);
485
486static struct pci_driver liquidio_pci_driver = {
487 .name = "LiquidIO",
488 .id_table = liquidio_pci_tbl,
489 .probe = liquidio_probe,
490 .remove = liquidio_remove,
491 .err_handler = &liquidio_err_handler, /* For AER */
492
493#ifdef CONFIG_PM
494 .suspend = liquidio_suspend,
495 .resume = liquidio_resume,
496#endif
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800497#ifdef CONFIG_PCI_IOV
498 .sriov_configure = liquidio_enable_sriov,
499#endif
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700500};
501
502/**
503 * \brief register PCI driver
504 */
505static int liquidio_init_pci(void)
506{
507 return pci_register_driver(&liquidio_pci_driver);
508}
509
510/**
511 * \brief unregister PCI driver
512 */
513static void liquidio_deinit_pci(void)
514{
515 pci_unregister_driver(&liquidio_pci_driver);
516}
517
518/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700519 * \brief Stop Tx queues
520 * @param netdev network device
521 */
522static inline void txqs_stop(struct net_device *netdev)
523{
524 if (netif_is_multiqueue(netdev)) {
525 int i;
526
527 for (i = 0; i < netdev->num_tx_queues; i++)
528 netif_stop_subqueue(netdev, i);
529 } else {
530 netif_stop_queue(netdev);
531 }
532}
533
534/**
535 * \brief Start Tx queues
536 * @param netdev network device
537 */
538static inline void txqs_start(struct net_device *netdev)
539{
540 if (netif_is_multiqueue(netdev)) {
541 int i;
542
543 for (i = 0; i < netdev->num_tx_queues; i++)
544 netif_start_subqueue(netdev, i);
545 } else {
546 netif_start_queue(netdev);
547 }
548}
549
550/**
551 * \brief Wake Tx queues
552 * @param netdev network device
553 */
554static inline void txqs_wake(struct net_device *netdev)
555{
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700556 struct lio *lio = GET_LIO(netdev);
557
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700558 if (netif_is_multiqueue(netdev)) {
559 int i;
560
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700561 for (i = 0; i < netdev->num_tx_queues; i++) {
562 int qno = lio->linfo.txpciq[i %
Intiyaz Bashaa82457f2017-08-15 12:46:18 -0700563 lio->oct_dev->num_iqs].s.q_no;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700564
565 if (__netif_subqueue_stopped(netdev, i)) {
566 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, qno,
567 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700568 netif_wake_subqueue(netdev, i);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700569 }
570 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700571 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700572 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
573 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700574 netif_wake_queue(netdev);
575 }
576}
577
578/**
579 * \brief Stop Tx queue
580 * @param netdev network device
581 */
582static void stop_txq(struct net_device *netdev)
583{
584 txqs_stop(netdev);
585}
586
587/**
588 * \brief Start Tx queue
589 * @param netdev network device
590 */
591static void start_txq(struct net_device *netdev)
592{
593 struct lio *lio = GET_LIO(netdev);
594
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700595 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700596 txqs_start(netdev);
597 return;
598 }
599}
600
601/**
602 * \brief Wake a queue
603 * @param netdev network device
604 * @param q which queue to wake
605 */
606static inline void wake_q(struct net_device *netdev, int q)
607{
608 if (netif_is_multiqueue(netdev))
609 netif_wake_subqueue(netdev, q);
610 else
611 netif_wake_queue(netdev);
612}
613
614/**
615 * \brief Stop a queue
616 * @param netdev network device
617 * @param q which queue to stop
618 */
619static inline void stop_q(struct net_device *netdev, int q)
620{
621 if (netif_is_multiqueue(netdev))
622 netif_stop_subqueue(netdev, q);
623 else
624 netif_stop_queue(netdev);
625}
626
627/**
628 * \brief Check Tx queue status, and take appropriate action
629 * @param lio per-network private data
630 * @returns 0 if full, number of queues woken up otherwise
631 */
632static inline int check_txq_status(struct lio *lio)
633{
634 int ret_val = 0;
635
636 if (netif_is_multiqueue(lio->netdev)) {
637 int numqs = lio->netdev->num_tx_queues;
638 int q, iq = 0;
639
640 /* check each sub-queue state */
641 for (q = 0; q < numqs; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700642 iq = lio->linfo.txpciq[q %
Intiyaz Bashaa82457f2017-08-15 12:46:18 -0700643 lio->oct_dev->num_iqs].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700644 if (octnet_iq_is_full(lio->oct_dev, iq))
645 continue;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700646 if (__netif_subqueue_stopped(lio->netdev, q)) {
647 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700648 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq,
649 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700650 ret_val++;
651 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700652 }
653 } else {
654 if (octnet_iq_is_full(lio->oct_dev, lio->txq))
655 return 0;
656 wake_q(lio->netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700657 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
658 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700659 ret_val = 1;
660 }
661 return ret_val;
662}
663
664/**
665 * Remove the node at the head of the list. The list would be empty at
666 * the end of this call if there are no more nodes in the list.
667 */
668static inline struct list_head *list_delete_head(struct list_head *root)
669{
670 struct list_head *node;
671
672 if ((root->prev == root) && (root->next == root))
673 node = NULL;
674 else
675 node = root->next;
676
677 if (node)
678 list_del(node);
679
680 return node;
681}
682
683/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700684 * \brief Delete gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700685 * @param lio per-network private data
686 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700687static void delete_glists(struct lio *lio)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700688{
689 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700690 int i;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700691
VSR Burru67e303e2017-03-06 18:45:59 -0800692 kfree(lio->glist_lock);
693 lio->glist_lock = NULL;
694
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700695 if (!lio->glist)
696 return;
697
698 for (i = 0; i < lio->linfo.num_txpciq; i++) {
699 do {
700 g = (struct octnic_gather *)
701 list_delete_head(&lio->glist[i]);
VSR Burru67e303e2017-03-06 18:45:59 -0800702 if (g)
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700703 kfree(g);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700704 } while (g);
VSR Burru67e303e2017-03-06 18:45:59 -0800705
Felix Manlunas58ad3192017-03-20 19:04:48 -0700706 if (lio->glists_virt_base && lio->glists_virt_base[i] &&
707 lio->glists_dma_base && lio->glists_dma_base[i]) {
VSR Burru67e303e2017-03-06 18:45:59 -0800708 lio_dma_free(lio->oct_dev,
709 lio->glist_entry_size * lio->tx_qsize,
710 lio->glists_virt_base[i],
711 lio->glists_dma_base[i]);
712 }
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700713 }
714
VSR Burru67e303e2017-03-06 18:45:59 -0800715 kfree(lio->glists_virt_base);
716 lio->glists_virt_base = NULL;
717
718 kfree(lio->glists_dma_base);
719 lio->glists_dma_base = NULL;
720
721 kfree(lio->glist);
722 lio->glist = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700723}
724
725/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700726 * \brief Setup gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700727 * @param lio per-network private data
728 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700729static int setup_glists(struct octeon_device *oct, struct lio *lio, int num_iqs)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700730{
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700731 int i, j;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700732 struct octnic_gather *g;
733
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700734 lio->glist_lock = kcalloc(num_iqs, sizeof(*lio->glist_lock),
735 GFP_KERNEL);
736 if (!lio->glist_lock)
VSR Burru67e303e2017-03-06 18:45:59 -0800737 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700738
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700739 lio->glist = kcalloc(num_iqs, sizeof(*lio->glist),
740 GFP_KERNEL);
741 if (!lio->glist) {
VSR Burru67e303e2017-03-06 18:45:59 -0800742 kfree(lio->glist_lock);
743 lio->glist_lock = NULL;
744 return -ENOMEM;
745 }
746
747 lio->glist_entry_size =
748 ROUNDUP8((ROUNDUP4(OCTNIC_MAX_SG) >> 2) * OCT_SG_ENTRY_SIZE);
749
750 /* allocate memory to store virtual and dma base address of
751 * per glist consistent memory
752 */
753 lio->glists_virt_base = kcalloc(num_iqs, sizeof(*lio->glists_virt_base),
754 GFP_KERNEL);
755 lio->glists_dma_base = kcalloc(num_iqs, sizeof(*lio->glists_dma_base),
756 GFP_KERNEL);
757
758 if (!lio->glists_virt_base || !lio->glists_dma_base) {
759 delete_glists(lio);
760 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700761 }
762
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700763 for (i = 0; i < num_iqs; i++) {
VSR Burrub3ca9af2017-03-09 17:03:24 -0800764 int numa_node = dev_to_node(&oct->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700765
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700766 spin_lock_init(&lio->glist_lock[i]);
767
768 INIT_LIST_HEAD(&lio->glist[i]);
769
VSR Burru67e303e2017-03-06 18:45:59 -0800770 lio->glists_virt_base[i] =
771 lio_dma_alloc(oct,
772 lio->glist_entry_size * lio->tx_qsize,
773 &lio->glists_dma_base[i]);
774
775 if (!lio->glists_virt_base[i]) {
776 delete_glists(lio);
777 return -ENOMEM;
778 }
779
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700780 for (j = 0; j < lio->tx_qsize; j++) {
781 g = kzalloc_node(sizeof(*g), GFP_KERNEL,
782 numa_node);
783 if (!g)
784 g = kzalloc(sizeof(*g), GFP_KERNEL);
785 if (!g)
786 break;
787
VSR Burru67e303e2017-03-06 18:45:59 -0800788 g->sg = lio->glists_virt_base[i] +
789 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700790
VSR Burru67e303e2017-03-06 18:45:59 -0800791 g->sg_dma_ptr = lio->glists_dma_base[i] +
792 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700793
794 list_add_tail(&g->list, &lio->glist[i]);
795 }
796
797 if (j != lio->tx_qsize) {
798 delete_glists(lio);
VSR Burru67e303e2017-03-06 18:45:59 -0800799 return -ENOMEM;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700800 }
801 }
802
803 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700804}
805
806/**
807 * \brief Print link information
808 * @param netdev network device
809 */
810static void print_link_info(struct net_device *netdev)
811{
812 struct lio *lio = GET_LIO(netdev);
813
Intiyaz Bashad18ca7d2017-08-14 12:01:56 -0700814 if (!ifstate_check(lio, LIO_IFSTATE_RESETTING) &&
815 ifstate_check(lio, LIO_IFSTATE_REGISTERED)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700816 struct oct_link_info *linfo = &lio->linfo;
817
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700818 if (linfo->link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700819 netif_info(lio, link, lio->netdev, "%d Mbps %s Duplex UP\n",
820 linfo->link.s.speed,
821 (linfo->link.s.duplex) ? "Full" : "Half");
822 } else {
823 netif_info(lio, link, lio->netdev, "Link Down\n");
824 }
825 }
826}
827
828/**
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -0700829 * \brief Routine to notify MTU change
830 * @param work work_struct data structure
831 */
832static void octnet_link_status_change(struct work_struct *work)
833{
834 struct cavium_wk *wk = (struct cavium_wk *)work;
835 struct lio *lio = (struct lio *)wk->ctxptr;
836
837 rtnl_lock();
838 call_netdevice_notifiers(NETDEV_CHANGEMTU, lio->netdev);
839 rtnl_unlock();
840}
841
842/**
843 * \brief Sets up the mtu status change work
844 * @param netdev network device
845 */
846static inline int setup_link_status_change_wq(struct net_device *netdev)
847{
848 struct lio *lio = GET_LIO(netdev);
849 struct octeon_device *oct = lio->oct_dev;
850
851 lio->link_status_wq.wq = alloc_workqueue("link-status",
852 WQ_MEM_RECLAIM, 0);
853 if (!lio->link_status_wq.wq) {
854 dev_err(&oct->pci_dev->dev, "unable to create cavium link status wq\n");
855 return -1;
856 }
857 INIT_DELAYED_WORK(&lio->link_status_wq.wk.work,
858 octnet_link_status_change);
859 lio->link_status_wq.wk.ctxptr = lio;
860
861 return 0;
862}
863
864static inline void cleanup_link_status_change_wq(struct net_device *netdev)
865{
866 struct lio *lio = GET_LIO(netdev);
867
868 if (lio->link_status_wq.wq) {
869 cancel_delayed_work_sync(&lio->link_status_wq.wk.work);
870 destroy_workqueue(lio->link_status_wq.wq);
871 }
872}
873
874/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700875 * \brief Update link status
876 * @param netdev network device
877 * @param ls link status structure
878 *
879 * Called on receipt of a link status response from the core application to
880 * update each interface's link status.
881 */
882static inline void update_link_status(struct net_device *netdev,
883 union oct_link_status *ls)
884{
885 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700886 int changed = (lio->linfo.link.u64 != ls->u64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700887
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700888 lio->linfo.link.u64 = ls->u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700889
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700890 if ((lio->intf_open) && (changed)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700891 print_link_info(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700892 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700893
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700894 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700895 netif_carrier_on(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700896 txqs_wake(netdev);
897 } else {
898 netif_carrier_off(netdev);
899 stop_txq(netdev);
900 }
901 }
902}
903
Felix Manlunasbb54be52017-04-04 19:26:57 -0700904static struct octeon_device *get_other_octeon_device(struct octeon_device *oct)
905{
906 struct octeon_device *other_oct;
907
908 other_oct = lio_get_device(oct->octeon_id + 1);
909
910 if (other_oct && other_oct->pci_dev) {
911 int oct_busnum, other_oct_busnum;
912
913 oct_busnum = oct->pci_dev->bus->number;
914 other_oct_busnum = other_oct->pci_dev->bus->number;
915
916 if (oct_busnum == other_oct_busnum) {
917 int oct_slot, other_oct_slot;
918
919 oct_slot = PCI_SLOT(oct->pci_dev->devfn);
920 other_oct_slot = PCI_SLOT(other_oct->pci_dev->devfn);
921
922 if (oct_slot == other_oct_slot)
923 return other_oct;
924 }
925 }
926
927 return NULL;
928}
929
930static void disable_all_vf_links(struct octeon_device *oct)
931{
932 struct net_device *netdev;
933 int max_vfs, vf, i;
934
935 if (!oct)
936 return;
937
938 max_vfs = oct->sriov_info.max_vfs;
939
940 for (i = 0; i < oct->ifcount; i++) {
941 netdev = oct->props[i].netdev;
942 if (!netdev)
943 continue;
944
945 for (vf = 0; vf < max_vfs; vf++)
946 liquidio_set_vf_link_state(netdev, vf,
947 IFLA_VF_LINK_STATE_DISABLE);
948 }
949}
950
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -0700951static int liquidio_watchdog(void *param)
952{
Felix Manlunasbb54be52017-04-04 19:26:57 -0700953 bool err_msg_was_printed[LIO_MAX_CORES];
954 u16 mask_of_crashed_or_stuck_cores = 0;
955 bool all_vf_links_are_disabled = false;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -0700956 struct octeon_device *oct = param;
Felix Manlunasbb54be52017-04-04 19:26:57 -0700957 struct octeon_device *other_oct;
958#ifdef CONFIG_MODULE_UNLOAD
959 long refcount, vfs_referencing_pf;
960 u64 vfs_mask1, vfs_mask2;
961#endif
962 int core;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -0700963
Felix Manlunasbb54be52017-04-04 19:26:57 -0700964 memset(err_msg_was_printed, 0, sizeof(err_msg_was_printed));
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -0700965
966 while (!kthread_should_stop()) {
Felix Manlunasbb54be52017-04-04 19:26:57 -0700967 /* sleep for a couple of seconds so that we don't hog the CPU */
968 set_current_state(TASK_INTERRUPTIBLE);
969 schedule_timeout(msecs_to_jiffies(2000));
970
971 mask_of_crashed_or_stuck_cores =
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -0700972 (u16)octeon_read_csr64(oct, CN23XX_SLI_SCRATCH2);
973
Felix Manlunasbb54be52017-04-04 19:26:57 -0700974 if (!mask_of_crashed_or_stuck_cores)
975 continue;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -0700976
Felix Manlunasbb54be52017-04-04 19:26:57 -0700977 WRITE_ONCE(oct->cores_crashed, true);
978 other_oct = get_other_octeon_device(oct);
979 if (other_oct)
980 WRITE_ONCE(other_oct->cores_crashed, true);
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -0700981
Felix Manlunasbb54be52017-04-04 19:26:57 -0700982 for (core = 0; core < LIO_MAX_CORES; core++) {
983 bool core_crashed_or_got_stuck;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -0700984
Felix Manlunasbb54be52017-04-04 19:26:57 -0700985 core_crashed_or_got_stuck =
986 (mask_of_crashed_or_stuck_cores
987 >> core) & 1;
988
989 if (core_crashed_or_got_stuck &&
990 !err_msg_was_printed[core]) {
991 dev_err(&oct->pci_dev->dev,
992 "ERROR: Octeon core %d crashed or got stuck! See oct-fwdump for details.\n",
993 core);
994 err_msg_was_printed[core] = true;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -0700995 }
996 }
997
Felix Manlunasbb54be52017-04-04 19:26:57 -0700998 if (all_vf_links_are_disabled)
999 continue;
1000
1001 disable_all_vf_links(oct);
1002 disable_all_vf_links(other_oct);
1003 all_vf_links_are_disabled = true;
1004
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001005#ifdef CONFIG_MODULE_UNLOAD
Felix Manlunasbb54be52017-04-04 19:26:57 -07001006 vfs_mask1 = READ_ONCE(oct->sriov_info.vf_drv_loaded_mask);
1007 vfs_mask2 = READ_ONCE(other_oct->sriov_info.vf_drv_loaded_mask);
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001008
Felix Manlunasbb54be52017-04-04 19:26:57 -07001009 vfs_referencing_pf = hweight64(vfs_mask1);
1010 vfs_referencing_pf += hweight64(vfs_mask2);
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001011
Felix Manlunasbb54be52017-04-04 19:26:57 -07001012 refcount = module_refcount(THIS_MODULE);
1013 if (refcount >= vfs_referencing_pf) {
1014 while (vfs_referencing_pf) {
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001015 module_put(THIS_MODULE);
Felix Manlunasbb54be52017-04-04 19:26:57 -07001016 vfs_referencing_pf--;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001017 }
1018 }
1019#endif
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001020 }
1021
1022 return 0;
1023}
1024
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001025/**
1026 * \brief PCI probe handler
1027 * @param pdev PCI device structure
1028 * @param ent unused
1029 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001030static int
1031liquidio_probe(struct pci_dev *pdev,
1032 const struct pci_device_id *ent __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001033{
1034 struct octeon_device *oct_dev = NULL;
1035 struct handshake *hs;
1036
1037 oct_dev = octeon_allocate_device(pdev->device,
1038 sizeof(struct octeon_device_priv));
1039 if (!oct_dev) {
1040 dev_err(&pdev->dev, "Unable to allocate device\n");
1041 return -ENOMEM;
1042 }
1043
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001044 if (pdev->device == OCTEON_CN23XX_PF_VID)
1045 oct_dev->msix_on = LIO_FLAG_MSIX_ENABLED;
1046
Intiyaz Bashaaa69ff92017-08-11 11:22:09 -07001047 /* Enable PTP for 6XXX Device */
1048 if (((pdev->device == OCTEON_CN66XX) ||
1049 (pdev->device == OCTEON_CN68XX)))
1050 oct_dev->ptp_enable = true;
1051 else
1052 oct_dev->ptp_enable = false;
1053
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001054 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
1055 (u32)pdev->vendor, (u32)pdev->device);
1056
1057 /* Assign octeon_device for this device to the private data area. */
1058 pci_set_drvdata(pdev, oct_dev);
1059
1060 /* set linux specific device pointer */
1061 oct_dev->pci_dev = (void *)pdev;
1062
1063 hs = &handshake[oct_dev->octeon_id];
1064 init_completion(&hs->init);
1065 init_completion(&hs->started);
1066 hs->pci_dev = pdev;
1067
1068 if (oct_dev->octeon_id == 0)
1069 /* first LiquidIO NIC is detected */
1070 complete(&first_stage);
1071
1072 if (octeon_device_init(oct_dev)) {
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001073 complete(&hs->init);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001074 liquidio_remove(pdev);
1075 return -ENOMEM;
1076 }
1077
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001078 if (OCTEON_CN23XX_PF(oct_dev)) {
1079 u64 scratch1;
1080 u8 bus, device, function;
1081
1082 scratch1 = octeon_read_csr64(oct_dev, CN23XX_SLI_SCRATCH1);
1083 if (!(scratch1 & 4ULL)) {
1084 /* Bit 2 of SLI_SCRATCH_1 is a flag that indicates that
1085 * the lio watchdog kernel thread is running for this
1086 * NIC. Each NIC gets one watchdog kernel thread.
1087 */
1088 scratch1 |= 4ULL;
1089 octeon_write_csr64(oct_dev, CN23XX_SLI_SCRATCH1,
1090 scratch1);
1091
1092 bus = pdev->bus->number;
1093 device = PCI_SLOT(pdev->devfn);
1094 function = PCI_FUNC(pdev->devfn);
1095 oct_dev->watchdog_task = kthread_create(
1096 liquidio_watchdog, oct_dev,
1097 "liowd/%02hhx:%02hhx.%hhx", bus, device, function);
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001098 if (!IS_ERR(oct_dev->watchdog_task)) {
1099 wake_up_process(oct_dev->watchdog_task);
1100 } else {
1101 oct_dev->watchdog_task = NULL;
1102 dev_err(&oct_dev->pci_dev->dev,
1103 "failed to create kernel_thread\n");
1104 liquidio_remove(pdev);
1105 return -1;
1106 }
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001107 }
1108 }
1109
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001110 oct_dev->rx_pause = 1;
1111 oct_dev->tx_pause = 1;
1112
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001113 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
1114
1115 return 0;
1116}
1117
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001118static bool fw_type_is_none(void)
1119{
1120 return strncmp(fw_type, LIO_FW_NAME_TYPE_NONE,
1121 sizeof(LIO_FW_NAME_TYPE_NONE)) == 0;
1122}
1123
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001124/**
1125 *\brief Destroy resources associated with octeon device
1126 * @param pdev PCI device structure
1127 * @param ent unused
1128 */
1129static void octeon_destroy_resources(struct octeon_device *oct)
1130{
Rick Farringtone1e3ce62017-05-16 11:14:50 -07001131 int i, refcount;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001132 struct msix_entry *msix_entries;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001133 struct octeon_device_priv *oct_priv =
1134 (struct octeon_device_priv *)oct->priv;
1135
1136 struct handshake *hs;
1137
1138 switch (atomic_read(&oct->status)) {
1139 case OCT_DEV_RUNNING:
1140 case OCT_DEV_CORE_OK:
1141
1142 /* No more instructions will be forwarded. */
1143 atomic_set(&oct->status, OCT_DEV_IN_RESET);
1144
1145 oct->app_mode = CVM_DRV_INVALID_APP;
1146 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
1147 lio_get_state_string(&oct->status));
1148
1149 schedule_timeout_uninterruptible(HZ / 10);
1150
1151 /* fallthrough */
1152 case OCT_DEV_HOST_OK:
1153
1154 /* fallthrough */
1155 case OCT_DEV_CONSOLE_INIT_DONE:
1156 /* Remove any consoles */
1157 octeon_remove_consoles(oct);
1158
1159 /* fallthrough */
1160 case OCT_DEV_IO_QUEUES_DONE:
1161 if (wait_for_pending_requests(oct))
1162 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
1163
1164 if (lio_wait_for_instr_fetch(oct))
1165 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
1166
1167 /* Disable the input and output queues now. No more packets will
1168 * arrive from Octeon, but we should wait for all packet
1169 * processing to finish.
1170 */
1171 oct->fn_list.disable_io_queues(oct);
1172
1173 if (lio_wait_for_oq_pkts(oct))
1174 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1175
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001176 /* fallthrough */
1177 case OCT_DEV_INTR_SET_DONE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001178 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001179 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001180
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001181 if (oct->msix_on) {
1182 msix_entries = (struct msix_entry *)oct->msix_entries;
1183 for (i = 0; i < oct->num_msix_irqs - 1; i++) {
Intiyaz Bashaa82457f2017-08-15 12:46:18 -07001184 if (oct->ioq_vector[i].vector) {
1185 /* clear the affinity_cpumask */
1186 irq_set_affinity_hint(
1187 msix_entries[i].vector,
1188 NULL);
1189 free_irq(msix_entries[i].vector,
1190 &oct->ioq_vector[i]);
1191 oct->ioq_vector[i].vector = 0;
1192 }
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001193 }
1194 /* non-iov vector's argument is oct struct */
1195 free_irq(msix_entries[i].vector, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001196
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001197 pci_disable_msix(oct->pci_dev);
1198 kfree(oct->msix_entries);
1199 oct->msix_entries = NULL;
1200 } else {
1201 /* Release the interrupt line */
1202 free_irq(oct->pci_dev->irq, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001203
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001204 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1205 pci_disable_msi(oct->pci_dev);
1206 }
1207
Rick Farrington0c88a762017-03-13 12:58:04 -07001208 kfree(oct->irq_name_storage);
1209 oct->irq_name_storage = NULL;
1210
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001211 /* fallthrough */
1212 case OCT_DEV_MSIX_ALLOC_VECTOR_DONE:
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001213 if (OCTEON_CN23XX_PF(oct))
1214 octeon_free_ioq_vector(oct);
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08001215
1216 /* fallthrough */
1217 case OCT_DEV_MBOX_SETUP_DONE:
1218 if (OCTEON_CN23XX_PF(oct))
1219 oct->fn_list.free_mbox(oct);
1220
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001221 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001222 case OCT_DEV_IN_RESET:
1223 case OCT_DEV_DROQ_INIT_DONE:
Raghu Vatsavayi763185a2016-11-14 15:54:45 -08001224 /* Wait for any pending operations */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001225 mdelay(100);
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001226 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001227 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001228 continue;
1229 octeon_delete_droq(oct, i);
1230 }
1231
1232 /* Force any pending handshakes to complete */
1233 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1234 hs = &handshake[i];
1235
1236 if (hs->pci_dev) {
1237 handshake[oct->octeon_id].init_ok = 0;
1238 complete(&handshake[oct->octeon_id].init);
1239 handshake[oct->octeon_id].started_ok = 0;
1240 complete(&handshake[oct->octeon_id].started);
1241 }
1242 }
1243
1244 /* fallthrough */
1245 case OCT_DEV_RESP_LIST_INIT_DONE:
1246 octeon_delete_response_list(oct);
1247
1248 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001249 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001250 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001251 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001252 continue;
1253 octeon_delete_instr_queue(oct, i);
1254 }
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08001255#ifdef CONFIG_PCI_IOV
1256 if (oct->sriov_info.sriov_enabled)
1257 pci_disable_sriov(oct->pci_dev);
1258#endif
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001259 /* fallthrough */
1260 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1261 octeon_free_sc_buffer_pool(oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001262
1263 /* fallthrough */
1264 case OCT_DEV_DISPATCH_INIT_DONE:
1265 octeon_delete_dispatch_list(oct);
1266 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1267
1268 /* fallthrough */
1269 case OCT_DEV_PCI_MAP_DONE:
Rick Farringtone1e3ce62017-05-16 11:14:50 -07001270 refcount = octeon_deregister_device(oct);
1271
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001272 if (!fw_type_is_none()) {
Rick Farringtone1e3ce62017-05-16 11:14:50 -07001273 /* Soft reset the octeon device before exiting.
1274 * Implementation note: here, we reset the device
1275 * if it is a CN6XXX OR the last CN23XX device.
1276 */
1277 if (OCTEON_CN6XXX(oct) || !refcount)
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001278 oct->fn_list.soft_reset(oct);
1279 }
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001280
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001281 octeon_unmap_pci_barx(oct, 0);
1282 octeon_unmap_pci_barx(oct, 1);
1283
1284 /* fallthrough */
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001285 case OCT_DEV_PCI_ENABLE_DONE:
1286 pci_clear_master(oct->pci_dev);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001287 /* Disable the device, releasing the PCI INT */
1288 pci_disable_device(oct->pci_dev);
1289
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001290 /* fallthrough */
1291 case OCT_DEV_BEGIN_STATE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001292 /* Nothing to be done here either */
1293 break;
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07001294 } /* end switch (oct->status) */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001295
1296 tasklet_kill(&oct_priv->droq_tasklet);
1297}
1298
1299/**
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001300 * \brief Callback for rx ctrl
1301 * @param status status of request
1302 * @param buf pointer to resp structure
1303 */
1304static void rx_ctl_callback(struct octeon_device *oct,
1305 u32 status,
1306 void *buf)
1307{
1308 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1309 struct liquidio_rx_ctl_context *ctx;
1310
1311 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1312
1313 oct = lio_get_device(ctx->octeon_id);
1314 if (status)
1315 dev_err(&oct->pci_dev->dev, "rx ctl instruction failed. Status: %llx\n",
1316 CVM_CAST64(status));
1317 WRITE_ONCE(ctx->cond, 1);
1318
1319 /* This barrier is required to be sure that the response has been
1320 * written fully before waking up the handler
1321 */
1322 wmb();
1323
1324 wake_up_interruptible(&ctx->wc);
1325}
1326
1327/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001328 * \brief Send Rx control command
1329 * @param lio per-network private data
1330 * @param start_stop whether to start or stop
1331 */
1332static void send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1333{
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001334 struct octeon_soft_command *sc;
1335 struct liquidio_rx_ctl_context *ctx;
1336 union octnet_cmd *ncmd;
1337 int ctx_size = sizeof(struct liquidio_rx_ctl_context);
1338 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1339 int retval;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001340
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001341 if (oct->props[lio->ifidx].rx_on == start_stop)
1342 return;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001343
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001344 sc = (struct octeon_soft_command *)
1345 octeon_alloc_soft_command(oct, OCTNET_CMD_SIZE,
1346 16, ctx_size);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001347
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001348 ncmd = (union octnet_cmd *)sc->virtdptr;
1349 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1350
1351 WRITE_ONCE(ctx->cond, 0);
1352 ctx->octeon_id = lio_get_device_id(oct);
1353 init_waitqueue_head(&ctx->wc);
1354
1355 ncmd->u64 = 0;
1356 ncmd->s.cmd = OCTNET_CMD_RX_CTL;
1357 ncmd->s.param1 = start_stop;
1358
1359 octeon_swap_8B_data((u64 *)ncmd, (OCTNET_CMD_SIZE >> 3));
1360
1361 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
1362
1363 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
1364 OPCODE_NIC_CMD, 0, 0, 0);
1365
1366 sc->callback = rx_ctl_callback;
1367 sc->callback_arg = sc;
1368 sc->wait_time = 5000;
1369
1370 retval = octeon_send_soft_command(oct, sc);
1371 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001372 netif_info(lio, rx_err, lio->netdev, "Failed to send RX Control message\n");
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001373 } else {
1374 /* Sleep on a wait queue till the cond flag indicates that the
1375 * response arrived or timed-out.
1376 */
1377 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR)
1378 return;
1379 oct->props[lio->ifidx].rx_on = start_stop;
1380 }
1381
1382 octeon_free_soft_command(oct, sc);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001383}
1384
1385/**
1386 * \brief Destroy NIC device interface
1387 * @param oct octeon device
1388 * @param ifidx which interface to destroy
1389 *
1390 * Cleanup associated with each interface for an Octeon device when NIC
1391 * module is being unloaded or if initialization fails during load.
1392 */
1393static void liquidio_destroy_nic_device(struct octeon_device *oct, int ifidx)
1394{
1395 struct net_device *netdev = oct->props[ifidx].netdev;
1396 struct lio *lio;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001397 struct napi_struct *napi, *n;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001398
1399 if (!netdev) {
1400 dev_err(&oct->pci_dev->dev, "%s No netdevice ptr for index %d\n",
1401 __func__, ifidx);
1402 return;
1403 }
1404
1405 lio = GET_LIO(netdev);
1406
1407 dev_dbg(&oct->pci_dev->dev, "NIC device cleanup\n");
1408
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001409 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING)
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001410 liquidio_stop(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001411
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001412 if (fw_type_is_none()) {
1413 struct octnic_ctrl_pkt nctrl;
1414
1415 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
1416 nctrl.ncmd.s.cmd = OCTNET_CMD_RESET_PF;
1417 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
1418 octnet_send_nic_ctrl_pkt(oct, &nctrl);
1419 }
1420
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001421 if (oct->props[lio->ifidx].napi_enabled == 1) {
1422 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1423 napi_disable(napi);
1424
1425 oct->props[lio->ifidx].napi_enabled = 0;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001426
1427 if (OCTEON_CN23XX_PF(oct))
1428 oct->droq[0]->ops.poll_mode = 0;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001429 }
1430
Intiyaz Basha42013e92017-08-08 19:34:28 -07001431 /* Delete NAPI */
1432 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1433 netif_napi_del(napi);
1434
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001435 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
1436 unregister_netdev(netdev);
1437
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001438 cleanup_link_status_change_wq(netdev);
1439
Satanand Burla031d4f12017-03-22 11:31:13 -07001440 cleanup_rx_oom_poll_fn(netdev);
1441
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001442 delete_glists(lio);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001443
1444 free_netdev(netdev);
1445
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07001446 oct->props[ifidx].gmxport = -1;
1447
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001448 oct->props[ifidx].netdev = NULL;
1449}
1450
1451/**
1452 * \brief Stop complete NIC functionality
1453 * @param oct octeon device
1454 */
1455static int liquidio_stop_nic_module(struct octeon_device *oct)
1456{
1457 int i, j;
1458 struct lio *lio;
1459
1460 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1461 if (!oct->ifcount) {
1462 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1463 return 1;
1464 }
1465
Raghu Vatsavayi60441882016-06-21 22:53:08 -07001466 spin_lock_bh(&oct->cmd_resp_wqlock);
1467 oct->cmd_resp_state = OCT_DRV_OFFLINE;
1468 spin_unlock_bh(&oct->cmd_resp_wqlock);
1469
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001470 for (i = 0; i < oct->ifcount; i++) {
1471 lio = GET_LIO(oct->props[i].netdev);
Intiyaz Bashaa82457f2017-08-15 12:46:18 -07001472 for (j = 0; j < oct->num_oqs; j++)
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001473 octeon_unregister_droq_ops(oct,
1474 lio->linfo.rxpciq[j].s.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001475 }
1476
1477 for (i = 0; i < oct->ifcount; i++)
1478 liquidio_destroy_nic_device(oct, i);
1479
1480 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1481 return 0;
1482}
1483
1484/**
1485 * \brief Cleans up resources at unload time
1486 * @param pdev PCI device structure
1487 */
1488static void liquidio_remove(struct pci_dev *pdev)
1489{
1490 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1491
1492 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1493
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001494 if (oct_dev->watchdog_task)
1495 kthread_stop(oct_dev->watchdog_task);
1496
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001497 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1498 liquidio_stop_nic_module(oct_dev);
1499
1500 /* Reset the octeon device and cleanup all memory allocated for
1501 * the octeon device by driver.
1502 */
1503 octeon_destroy_resources(oct_dev);
1504
1505 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1506
1507 /* This octeon device has been removed. Update the global
1508 * data structure to reflect this. Free the device structure.
1509 */
1510 octeon_free_device_mem(oct_dev);
1511}
1512
1513/**
1514 * \brief Identify the Octeon device and to map the BAR address space
1515 * @param oct octeon device
1516 */
1517static int octeon_chip_specific_setup(struct octeon_device *oct)
1518{
1519 u32 dev_id, rev_id;
1520 int ret = 1;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001521 char *s;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001522
1523 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1524 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1525 oct->rev_id = rev_id & 0xff;
1526
1527 switch (dev_id) {
1528 case OCTEON_CN68XX_PCIID:
1529 oct->chip_id = OCTEON_CN68XX;
1530 ret = lio_setup_cn68xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001531 s = "CN68XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001532 break;
1533
1534 case OCTEON_CN66XX_PCIID:
1535 oct->chip_id = OCTEON_CN66XX;
1536 ret = lio_setup_cn66xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001537 s = "CN66XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001538 break;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001539
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001540 case OCTEON_CN23XX_PCIID_PF:
1541 oct->chip_id = OCTEON_CN23XX_PF_VID;
1542 ret = setup_cn23xx_octeon_pf_device(oct);
Derek Chicklescf19a8c2017-08-01 15:05:07 -07001543#ifdef CONFIG_PCI_IOV
1544 if (!ret)
1545 pci_sriov_set_totalvfs(oct->pci_dev,
1546 oct->sriov_info.max_vfs);
1547#endif
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001548 s = "CN23XX";
1549 break;
1550
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001551 default:
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001552 s = "?";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001553 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1554 dev_id);
1555 }
1556
1557 if (!ret)
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001558 dev_info(&oct->pci_dev->dev, "%s PASS%d.%d %s Version: %s\n", s,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001559 OCTEON_MAJOR_REV(oct),
1560 OCTEON_MINOR_REV(oct),
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001561 octeon_get_conf(oct)->card_name,
1562 LIQUIDIO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001563
1564 return ret;
1565}
1566
1567/**
1568 * \brief PCI initialization for each Octeon device.
1569 * @param oct octeon device
1570 */
1571static int octeon_pci_os_setup(struct octeon_device *oct)
1572{
1573 /* setup PCI stuff first */
1574 if (pci_enable_device(oct->pci_dev)) {
1575 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1576 return 1;
1577 }
1578
1579 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1580 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001581 pci_disable_device(oct->pci_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001582 return 1;
1583 }
1584
1585 /* Enable PCI DMA Master. */
1586 pci_set_master(oct->pci_dev);
1587
1588 return 0;
1589}
1590
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001591static inline int skb_iq(struct lio *lio, struct sk_buff *skb)
1592{
1593 int q = 0;
1594
1595 if (netif_is_multiqueue(lio->netdev))
1596 q = skb->queue_mapping % lio->linfo.num_txpciq;
1597
1598 return q;
1599}
1600
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001601/**
1602 * \brief Check Tx queue state for a given network buffer
1603 * @param lio per-network private data
1604 * @param skb network buffer
1605 */
1606static inline int check_txq_state(struct lio *lio, struct sk_buff *skb)
1607{
1608 int q = 0, iq = 0;
1609
1610 if (netif_is_multiqueue(lio->netdev)) {
1611 q = skb->queue_mapping;
Intiyaz Bashaa82457f2017-08-15 12:46:18 -07001612 iq = lio->linfo.txpciq[(q % lio->oct_dev->num_iqs)].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001613 } else {
1614 iq = lio->txq;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001615 q = iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001616 }
1617
1618 if (octnet_iq_is_full(lio->oct_dev, iq))
1619 return 0;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001620
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001621 if (__netif_subqueue_stopped(lio->netdev, q)) {
1622 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq, tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001623 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001624 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001625 return 1;
1626}
1627
1628/**
1629 * \brief Unmap and free network buffer
1630 * @param buf buffer
1631 */
1632static void free_netbuf(void *buf)
1633{
1634 struct sk_buff *skb;
1635 struct octnet_buf_free_info *finfo;
1636 struct lio *lio;
1637
1638 finfo = (struct octnet_buf_free_info *)buf;
1639 skb = finfo->skb;
1640 lio = finfo->lio;
1641
1642 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1643 DMA_TO_DEVICE);
1644
1645 check_txq_state(lio, skb);
1646
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001647 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001648}
1649
1650/**
1651 * \brief Unmap and free gather buffer
1652 * @param buf buffer
1653 */
1654static void free_netsgbuf(void *buf)
1655{
1656 struct octnet_buf_free_info *finfo;
1657 struct sk_buff *skb;
1658 struct lio *lio;
1659 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001660 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001661
1662 finfo = (struct octnet_buf_free_info *)buf;
1663 skb = finfo->skb;
1664 lio = finfo->lio;
1665 g = finfo->g;
1666 frags = skb_shinfo(skb)->nr_frags;
1667
1668 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1669 g->sg[0].ptr[0], (skb->len - skb->data_len),
1670 DMA_TO_DEVICE);
1671
1672 i = 1;
1673 while (frags--) {
1674 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1675
1676 pci_unmap_page((lio->oct_dev)->pci_dev,
1677 g->sg[(i >> 2)].ptr[(i & 3)],
1678 frag->size, DMA_TO_DEVICE);
1679 i++;
1680 }
1681
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001682 iq = skb_iq(lio, skb);
1683 spin_lock(&lio->glist_lock[iq]);
1684 list_add_tail(&g->list, &lio->glist[iq]);
1685 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001686
1687 check_txq_state(lio, skb); /* mq support: sub-queue state check */
1688
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001689 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001690}
1691
1692/**
1693 * \brief Unmap and free gather buffer with response
1694 * @param buf buffer
1695 */
1696static void free_netsgbuf_with_resp(void *buf)
1697{
1698 struct octeon_soft_command *sc;
1699 struct octnet_buf_free_info *finfo;
1700 struct sk_buff *skb;
1701 struct lio *lio;
1702 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001703 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001704
1705 sc = (struct octeon_soft_command *)buf;
1706 skb = (struct sk_buff *)sc->callback_arg;
1707 finfo = (struct octnet_buf_free_info *)&skb->cb;
1708
1709 lio = finfo->lio;
1710 g = finfo->g;
1711 frags = skb_shinfo(skb)->nr_frags;
1712
1713 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1714 g->sg[0].ptr[0], (skb->len - skb->data_len),
1715 DMA_TO_DEVICE);
1716
1717 i = 1;
1718 while (frags--) {
1719 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1720
1721 pci_unmap_page((lio->oct_dev)->pci_dev,
1722 g->sg[(i >> 2)].ptr[(i & 3)],
1723 frag->size, DMA_TO_DEVICE);
1724 i++;
1725 }
1726
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001727 iq = skb_iq(lio, skb);
1728
1729 spin_lock(&lio->glist_lock[iq]);
1730 list_add_tail(&g->list, &lio->glist[iq]);
1731 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001732
1733 /* Don't free the skb yet */
1734
1735 check_txq_state(lio, skb);
1736}
1737
1738/**
1739 * \brief Adjust ptp frequency
1740 * @param ptp PTP clock info
1741 * @param ppb how much to adjust by, in parts-per-billion
1742 */
1743static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
1744{
1745 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1746 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1747 u64 comp, delta;
1748 unsigned long flags;
1749 bool neg_adj = false;
1750
1751 if (ppb < 0) {
1752 neg_adj = true;
1753 ppb = -ppb;
1754 }
1755
1756 /* The hardware adds the clock compensation value to the
1757 * PTP clock on every coprocessor clock cycle, so we
1758 * compute the delta in terms of coprocessor clocks.
1759 */
1760 delta = (u64)ppb << 32;
1761 do_div(delta, oct->coproc_clock_rate);
1762
1763 spin_lock_irqsave(&lio->ptp_lock, flags);
1764 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
1765 if (neg_adj)
1766 comp -= delta;
1767 else
1768 comp += delta;
1769 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1770 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1771
1772 return 0;
1773}
1774
1775/**
1776 * \brief Adjust ptp time
1777 * @param ptp PTP clock info
1778 * @param delta how much to adjust by, in nanosecs
1779 */
1780static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
1781{
1782 unsigned long flags;
1783 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1784
1785 spin_lock_irqsave(&lio->ptp_lock, flags);
1786 lio->ptp_adjust += delta;
1787 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1788
1789 return 0;
1790}
1791
1792/**
1793 * \brief Get hardware clock time, including any adjustment
1794 * @param ptp PTP clock info
1795 * @param ts timespec
1796 */
1797static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
1798 struct timespec64 *ts)
1799{
1800 u64 ns;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001801 unsigned long flags;
1802 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1803 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1804
1805 spin_lock_irqsave(&lio->ptp_lock, flags);
1806 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
1807 ns += lio->ptp_adjust;
1808 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1809
Kefeng Wang286af312016-01-27 17:34:37 +08001810 *ts = ns_to_timespec64(ns);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001811
1812 return 0;
1813}
1814
1815/**
1816 * \brief Set hardware clock time. Reset adjustment
1817 * @param ptp PTP clock info
1818 * @param ts timespec
1819 */
1820static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
1821 const struct timespec64 *ts)
1822{
1823 u64 ns;
1824 unsigned long flags;
1825 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1826 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1827
1828 ns = timespec_to_ns(ts);
1829
1830 spin_lock_irqsave(&lio->ptp_lock, flags);
1831 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
1832 lio->ptp_adjust = 0;
1833 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1834
1835 return 0;
1836}
1837
1838/**
1839 * \brief Check if PTP is enabled
1840 * @param ptp PTP clock info
1841 * @param rq request
1842 * @param on is it on
1843 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001844static int
1845liquidio_ptp_enable(struct ptp_clock_info *ptp __attribute__((unused)),
1846 struct ptp_clock_request *rq __attribute__((unused)),
1847 int on __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001848{
1849 return -EOPNOTSUPP;
1850}
1851
1852/**
1853 * \brief Open PTP clock source
1854 * @param netdev network device
1855 */
1856static void oct_ptp_open(struct net_device *netdev)
1857{
1858 struct lio *lio = GET_LIO(netdev);
1859 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1860
1861 spin_lock_init(&lio->ptp_lock);
1862
1863 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
1864 lio->ptp_info.owner = THIS_MODULE;
1865 lio->ptp_info.max_adj = 250000000;
1866 lio->ptp_info.n_alarm = 0;
1867 lio->ptp_info.n_ext_ts = 0;
1868 lio->ptp_info.n_per_out = 0;
1869 lio->ptp_info.pps = 0;
1870 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
1871 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
1872 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
1873 lio->ptp_info.settime64 = liquidio_ptp_settime;
1874 lio->ptp_info.enable = liquidio_ptp_enable;
1875
1876 lio->ptp_adjust = 0;
1877
1878 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
1879 &oct->pci_dev->dev);
1880
1881 if (IS_ERR(lio->ptp_clock))
1882 lio->ptp_clock = NULL;
1883}
1884
1885/**
1886 * \brief Init PTP clock
1887 * @param oct octeon device
1888 */
1889static void liquidio_ptp_init(struct octeon_device *oct)
1890{
1891 u64 clock_comp, cfg;
1892
1893 clock_comp = (u64)NSEC_PER_SEC << 32;
1894 do_div(clock_comp, oct->coproc_clock_rate);
1895 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1896
1897 /* Enable */
1898 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
1899 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
1900}
1901
1902/**
1903 * \brief Load firmware to device
1904 * @param oct octeon device
1905 *
1906 * Maps device to firmware filename, requests firmware, and downloads it
1907 */
1908static int load_firmware(struct octeon_device *oct)
1909{
1910 int ret = 0;
1911 const struct firmware *fw;
1912 char fw_name[LIO_MAX_FW_FILENAME_LEN];
1913 char *tmp_fw_type;
1914
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001915 if (fw_type_is_none()) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001916 dev_info(&oct->pci_dev->dev, "Skipping firmware load\n");
1917 return ret;
1918 }
1919
1920 if (fw_type[0] == '\0')
1921 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
1922 else
1923 tmp_fw_type = fw_type;
1924
1925 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
1926 octeon_get_conf(oct)->card_name, tmp_fw_type,
1927 LIO_FW_NAME_SUFFIX);
1928
1929 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
1930 if (ret) {
1931 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n.",
1932 fw_name);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001933 release_firmware(fw);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001934 return ret;
1935 }
1936
1937 ret = octeon_download_firmware(oct, fw->data, fw->size);
1938
1939 release_firmware(fw);
1940
1941 return ret;
1942}
1943
1944/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001945 * \brief Callback for getting interface configuration
1946 * @param status status of request
1947 * @param buf pointer to resp structure
1948 */
1949static void if_cfg_callback(struct octeon_device *oct,
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001950 u32 status __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001951 void *buf)
1952{
1953 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1954 struct liquidio_if_cfg_resp *resp;
1955 struct liquidio_if_cfg_context *ctx;
1956
1957 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07001958 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001959
1960 oct = lio_get_device(ctx->octeon_id);
1961 if (resp->status)
Rick Farringtonc5b71e62017-03-17 11:23:08 -07001962 dev_err(&oct->pci_dev->dev, "nic if cfg instruction failed. Status: 0x%llx (0x%08x)\n",
1963 CVM_CAST64(resp->status), status);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001964 WRITE_ONCE(ctx->cond, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001965
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001966 snprintf(oct->fw_info.liquidio_firmware_version, 32, "%s",
1967 resp->cfg_info.liquidio_firmware_version);
1968
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001969 /* This barrier is required to be sure that the response has been
1970 * written fully before waking up the handler
1971 */
1972 wmb();
1973
1974 wake_up_interruptible(&ctx->wc);
1975}
1976
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001977/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001978 * \brief Poll routine for checking transmit queue status
1979 * @param work work_struct data structure
1980 */
1981static void octnet_poll_check_txq_status(struct work_struct *work)
1982{
1983 struct cavium_wk *wk = (struct cavium_wk *)work;
1984 struct lio *lio = (struct lio *)wk->ctxptr;
1985
1986 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
1987 return;
1988
1989 check_txq_status(lio);
1990 queue_delayed_work(lio->txq_status_wq.wq,
1991 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
1992}
1993
1994/**
1995 * \brief Sets up the txq poll check
1996 * @param netdev network device
1997 */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001998static inline int setup_tx_poll_fn(struct net_device *netdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001999{
2000 struct lio *lio = GET_LIO(netdev);
2001 struct octeon_device *oct = lio->oct_dev;
2002
Bhaktipriya Shridhar292b9da2016-06-08 01:47:59 +05302003 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
2004 WQ_MEM_RECLAIM, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002005 if (!lio->txq_status_wq.wq) {
2006 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002007 return -1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002008 }
2009 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
2010 octnet_poll_check_txq_status);
2011 lio->txq_status_wq.wk.ctxptr = lio;
2012 queue_delayed_work(lio->txq_status_wq.wq,
2013 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002014 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002015}
2016
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002017static inline void cleanup_tx_poll_fn(struct net_device *netdev)
2018{
2019 struct lio *lio = GET_LIO(netdev);
2020
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002021 if (lio->txq_status_wq.wq) {
2022 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
2023 destroy_workqueue(lio->txq_status_wq.wq);
2024 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002025}
2026
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002027/**
2028 * \brief Net device open for LiquidIO
2029 * @param netdev network device
2030 */
2031static int liquidio_open(struct net_device *netdev)
2032{
2033 struct lio *lio = GET_LIO(netdev);
2034 struct octeon_device *oct = lio->oct_dev;
2035 struct napi_struct *napi, *n;
2036
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002037 if (oct->props[lio->ifidx].napi_enabled == 0) {
2038 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2039 napi_enable(napi);
2040
2041 oct->props[lio->ifidx].napi_enabled = 1;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002042
2043 if (OCTEON_CN23XX_PF(oct))
2044 oct->droq[0]->ops.poll_mode = 1;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002045 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002046
Intiyaz Bashaaa69ff92017-08-11 11:22:09 -07002047 if (oct->ptp_enable)
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002048 oct_ptp_open(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002049
2050 ifstate_set(lio, LIO_IFSTATE_RUNNING);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002051
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002052 /* Ready for link status updates */
2053 lio->intf_open = 1;
2054
2055 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
2056
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002057 if (OCTEON_CN23XX_PF(oct)) {
2058 if (!oct->msix_on)
2059 if (setup_tx_poll_fn(netdev))
2060 return -1;
2061 } else {
2062 if (setup_tx_poll_fn(netdev))
2063 return -1;
2064 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002065
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002066 start_txq(netdev);
2067
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002068 /* tell Octeon to start forwarding packets to host */
2069 send_rx_ctrl_cmd(lio, 1);
2070
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002071 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
2072 netdev->name);
2073
2074 return 0;
2075}
2076
2077/**
2078 * \brief Net device stop for LiquidIO
2079 * @param netdev network device
2080 */
2081static int liquidio_stop(struct net_device *netdev)
2082{
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002083 struct lio *lio = GET_LIO(netdev);
2084 struct octeon_device *oct = lio->oct_dev;
Intiyaz Basha42013e92017-08-08 19:34:28 -07002085 struct napi_struct *napi, *n;
2086
2087 if (oct->props[lio->ifidx].napi_enabled) {
2088 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2089 napi_disable(napi);
2090
2091 oct->props[lio->ifidx].napi_enabled = 0;
2092
2093 if (OCTEON_CN23XX_PF(oct))
2094 oct->droq[0]->ops.poll_mode = 0;
2095 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002096
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002097 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
2098
2099 netif_tx_disable(netdev);
2100
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002101 /* Inform that netif carrier is down */
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002102 netif_carrier_off(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002103 lio->intf_open = 0;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002104 lio->linfo.link.s.link_up = 0;
2105 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002106
Felix Manlunascb2336b2017-01-11 17:09:02 -08002107 /* Tell Octeon that nic interface is down. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002108 send_rx_ctrl_cmd(lio, 0);
2109
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002110 if (OCTEON_CN23XX_PF(oct)) {
2111 if (!oct->msix_on)
2112 cleanup_tx_poll_fn(netdev);
2113 } else {
2114 cleanup_tx_poll_fn(netdev);
2115 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002116
2117 if (lio->ptp_clock) {
2118 ptp_clock_unregister(lio->ptp_clock);
2119 lio->ptp_clock = NULL;
2120 }
2121
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002122 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002123
2124 return 0;
2125}
2126
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002127/**
2128 * \brief Converts a mask based on net device flags
2129 * @param netdev network device
2130 *
2131 * This routine generates a octnet_ifflags mask from the net device flags
2132 * received from the OS.
2133 */
2134static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
2135{
2136 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
2137
2138 if (netdev->flags & IFF_PROMISC)
2139 f |= OCTNET_IFFLAG_PROMISC;
2140
2141 if (netdev->flags & IFF_ALLMULTI)
2142 f |= OCTNET_IFFLAG_ALLMULTI;
2143
2144 if (netdev->flags & IFF_MULTICAST) {
2145 f |= OCTNET_IFFLAG_MULTICAST;
2146
2147 /* Accept all multicast addresses if there are more than we
2148 * can handle
2149 */
2150 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
2151 f |= OCTNET_IFFLAG_ALLMULTI;
2152 }
2153
2154 if (netdev->flags & IFF_BROADCAST)
2155 f |= OCTNET_IFFLAG_BROADCAST;
2156
2157 return f;
2158}
2159
2160/**
2161 * \brief Net device set_multicast_list
2162 * @param netdev network device
2163 */
2164static void liquidio_set_mcast_list(struct net_device *netdev)
2165{
2166 struct lio *lio = GET_LIO(netdev);
2167 struct octeon_device *oct = lio->oct_dev;
2168 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002169 struct netdev_hw_addr *ha;
2170 u64 *mc;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002171 int ret;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002172 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
2173
2174 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2175
2176 /* Create a ctrl pkt command to be sent to core app. */
2177 nctrl.ncmd.u64 = 0;
2178 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002179 nctrl.ncmd.s.param1 = get_new_flags(netdev);
2180 nctrl.ncmd.s.param2 = mc_count;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002181 nctrl.ncmd.s.more = mc_count;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002182 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002183 nctrl.netpndev = (u64)netdev;
2184 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2185
2186 /* copy all the addresses into the udd */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002187 mc = &nctrl.udd[0];
2188 netdev_for_each_mc_addr(ha, netdev) {
2189 *mc = 0;
2190 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
2191 /* no need to swap bytes */
2192
2193 if (++mc > &nctrl.udd[mc_count])
2194 break;
2195 }
2196
2197 /* Apparently, any activity in this call from the kernel has to
2198 * be atomic. So we won't wait for response.
2199 */
2200 nctrl.wait_time = 0;
2201
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002202 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002203 if (ret < 0) {
2204 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
2205 ret);
2206 }
2207}
2208
2209/**
2210 * \brief Net device set_mac_address
2211 * @param netdev network device
2212 */
2213static int liquidio_set_mac(struct net_device *netdev, void *p)
2214{
2215 int ret = 0;
2216 struct lio *lio = GET_LIO(netdev);
2217 struct octeon_device *oct = lio->oct_dev;
2218 struct sockaddr *addr = (struct sockaddr *)p;
2219 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002220
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002221 if (!is_valid_ether_addr(addr->sa_data))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002222 return -EADDRNOTAVAIL;
2223
2224 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2225
2226 nctrl.ncmd.u64 = 0;
2227 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002228 nctrl.ncmd.s.param1 = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002229 nctrl.ncmd.s.more = 1;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002230 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002231 nctrl.netpndev = (u64)netdev;
2232 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2233 nctrl.wait_time = 100;
2234
2235 nctrl.udd[0] = 0;
2236 /* The MAC Address is presented in network byte order. */
2237 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2238
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002239 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002240 if (ret < 0) {
2241 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2242 return -ENOMEM;
2243 }
2244 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2245 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2246
2247 return 0;
2248}
2249
2250/**
2251 * \brief Net device get_stats
2252 * @param netdev network device
2253 */
2254static struct net_device_stats *liquidio_get_stats(struct net_device *netdev)
2255{
2256 struct lio *lio = GET_LIO(netdev);
2257 struct net_device_stats *stats = &netdev->stats;
2258 struct octeon_device *oct;
2259 u64 pkts = 0, drop = 0, bytes = 0;
2260 struct oct_droq_stats *oq_stats;
2261 struct oct_iq_stats *iq_stats;
2262 int i, iq_no, oq_no;
2263
2264 oct = lio->oct_dev;
2265
Intiyaz Bashad18ca7d2017-08-14 12:01:56 -07002266 if (ifstate_check(lio, LIO_IFSTATE_RESETTING))
2267 return stats;
2268
Intiyaz Bashaa82457f2017-08-15 12:46:18 -07002269 for (i = 0; i < oct->num_iqs; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002270 iq_no = lio->linfo.txpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002271 iq_stats = &oct->instr_queue[iq_no]->stats;
2272 pkts += iq_stats->tx_done;
2273 drop += iq_stats->tx_dropped;
2274 bytes += iq_stats->tx_tot_bytes;
2275 }
2276
2277 stats->tx_packets = pkts;
2278 stats->tx_bytes = bytes;
2279 stats->tx_dropped = drop;
2280
2281 pkts = 0;
2282 drop = 0;
2283 bytes = 0;
2284
Intiyaz Bashaa82457f2017-08-15 12:46:18 -07002285 for (i = 0; i < oct->num_oqs; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002286 oq_no = lio->linfo.rxpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002287 oq_stats = &oct->droq[oq_no]->stats;
2288 pkts += oq_stats->rx_pkts_received;
2289 drop += (oq_stats->rx_dropped +
2290 oq_stats->dropped_nodispatch +
2291 oq_stats->dropped_toomany +
2292 oq_stats->dropped_nomem);
2293 bytes += oq_stats->rx_bytes_received;
2294 }
2295
2296 stats->rx_bytes = bytes;
2297 stats->rx_packets = pkts;
2298 stats->rx_dropped = drop;
2299
2300 return stats;
2301}
2302
2303/**
2304 * \brief Net device change_mtu
2305 * @param netdev network device
2306 */
2307static int liquidio_change_mtu(struct net_device *netdev, int new_mtu)
2308{
2309 struct lio *lio = GET_LIO(netdev);
2310 struct octeon_device *oct = lio->oct_dev;
2311 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002312 int ret = 0;
2313
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002314 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2315
2316 nctrl.ncmd.u64 = 0;
2317 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MTU;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002318 nctrl.ncmd.s.param1 = new_mtu;
2319 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002320 nctrl.wait_time = 100;
2321 nctrl.netpndev = (u64)netdev;
2322 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2323
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002324 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002325 if (ret < 0) {
2326 dev_err(&oct->pci_dev->dev, "Failed to set MTU\n");
2327 return -1;
2328 }
2329
2330 lio->mtu = new_mtu;
2331
2332 return 0;
2333}
2334
2335/**
2336 * \brief Handler for SIOCSHWTSTAMP ioctl
2337 * @param netdev network device
2338 * @param ifr interface request
2339 * @param cmd command
2340 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002341static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002342{
2343 struct hwtstamp_config conf;
2344 struct lio *lio = GET_LIO(netdev);
2345
2346 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
2347 return -EFAULT;
2348
2349 if (conf.flags)
2350 return -EINVAL;
2351
2352 switch (conf.tx_type) {
2353 case HWTSTAMP_TX_ON:
2354 case HWTSTAMP_TX_OFF:
2355 break;
2356 default:
2357 return -ERANGE;
2358 }
2359
2360 switch (conf.rx_filter) {
2361 case HWTSTAMP_FILTER_NONE:
2362 break;
2363 case HWTSTAMP_FILTER_ALL:
2364 case HWTSTAMP_FILTER_SOME:
2365 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
2366 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
2367 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
2368 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
2369 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
2370 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
2371 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
2372 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
2373 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
2374 case HWTSTAMP_FILTER_PTP_V2_EVENT:
2375 case HWTSTAMP_FILTER_PTP_V2_SYNC:
2376 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
Miroslav Lichvare3412572017-05-19 17:52:36 +02002377 case HWTSTAMP_FILTER_NTP_ALL:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002378 conf.rx_filter = HWTSTAMP_FILTER_ALL;
2379 break;
2380 default:
2381 return -ERANGE;
2382 }
2383
2384 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
2385 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2386
2387 else
2388 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2389
2390 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
2391}
2392
2393/**
2394 * \brief ioctl handler
2395 * @param netdev network device
2396 * @param ifr interface request
2397 * @param cmd command
2398 */
2399static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2400{
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002401 struct lio *lio = GET_LIO(netdev);
2402
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002403 switch (cmd) {
2404 case SIOCSHWTSTAMP:
Intiyaz Bashaaa69ff92017-08-11 11:22:09 -07002405 if (lio->oct_dev->ptp_enable)
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002406 return hwtstamp_ioctl(netdev, ifr);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002407 default:
2408 return -EOPNOTSUPP;
2409 }
2410}
2411
2412/**
2413 * \brief handle a Tx timestamp response
2414 * @param status response status
2415 * @param buf pointer to skb
2416 */
2417static void handle_timestamp(struct octeon_device *oct,
2418 u32 status,
2419 void *buf)
2420{
2421 struct octnet_buf_free_info *finfo;
2422 struct octeon_soft_command *sc;
2423 struct oct_timestamp_resp *resp;
2424 struct lio *lio;
2425 struct sk_buff *skb = (struct sk_buff *)buf;
2426
2427 finfo = (struct octnet_buf_free_info *)skb->cb;
2428 lio = finfo->lio;
2429 sc = finfo->sc;
2430 oct = lio->oct_dev;
2431 resp = (struct oct_timestamp_resp *)sc->virtrptr;
2432
2433 if (status != OCTEON_REQUEST_DONE) {
2434 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
2435 CVM_CAST64(status));
2436 resp->timestamp = 0;
2437 }
2438
2439 octeon_swap_8B_data(&resp->timestamp, 1);
2440
Colin Ian King19a6d152016-02-05 16:30:39 +00002441 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002442 struct skb_shared_hwtstamps ts;
2443 u64 ns = resp->timestamp;
2444
2445 netif_info(lio, tx_done, lio->netdev,
2446 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
2447 skb, (unsigned long long)ns);
2448 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
2449 skb_tstamp_tx(skb, &ts);
2450 }
2451
2452 octeon_free_soft_command(oct, sc);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07002453 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002454}
2455
2456/* \brief Send a data packet that will be timestamped
2457 * @param oct octeon device
2458 * @param ndata pointer to network data
2459 * @param finfo pointer to private network data
2460 */
2461static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
2462 struct octnic_data_pkt *ndata,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002463 struct octnet_buf_free_info *finfo)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002464{
2465 int retval;
2466 struct octeon_soft_command *sc;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002467 struct lio *lio;
2468 int ring_doorbell;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07002469 u32 len;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002470
2471 lio = finfo->lio;
2472
2473 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
2474 sizeof(struct oct_timestamp_resp));
2475 finfo->sc = sc;
2476
2477 if (!sc) {
2478 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
2479 return IQ_SEND_FAILED;
2480 }
2481
2482 if (ndata->reqtype == REQTYPE_NORESP_NET)
2483 ndata->reqtype = REQTYPE_RESP_NET;
2484 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
2485 ndata->reqtype = REQTYPE_RESP_NET_SG;
2486
2487 sc->callback = handle_timestamp;
2488 sc->callback_arg = finfo->skb;
2489 sc->iq_no = ndata->q_no;
2490
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07002491 if (OCTEON_CN23XX_PF(oct))
2492 len = (u32)((struct octeon_instr_ih3 *)
2493 (&sc->cmd.cmd3.ih3))->dlengsz;
2494 else
2495 len = (u32)((struct octeon_instr_ih2 *)
2496 (&sc->cmd.cmd2.ih2))->dlengsz;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002497
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002498 ring_doorbell = 1;
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07002499
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002500 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07002501 sc, len, ndata->reqtype);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002502
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07002503 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002504 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
2505 retval);
2506 octeon_free_soft_command(oct, sc);
2507 } else {
2508 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
2509 }
2510
2511 return retval;
2512}
2513
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002514/** \brief Transmit networks packets to the Octeon interface
2515 * @param skbuff skbuff struct to be passed to network layer.
2516 * @param netdev pointer to network device
2517 * @returns whether the packet was transmitted to the device okay or not
2518 * (NETDEV_TX_OK or NETDEV_TX_BUSY)
2519 */
2520static int liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
2521{
2522 struct lio *lio;
2523 struct octnet_buf_free_info *finfo;
2524 union octnic_cmd_setup cmdsetup;
2525 struct octnic_data_pkt ndata;
2526 struct octeon_device *oct;
2527 struct oct_iq_stats *stats;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07002528 struct octeon_instr_irh *irh;
2529 union tx_info *tx_info;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002530 int status = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002531 int q_idx = 0, iq_no = 0;
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002532 int j;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002533 u64 dptr = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002534 u32 tag = 0;
2535
2536 lio = GET_LIO(netdev);
2537 oct = lio->oct_dev;
2538
2539 if (netif_is_multiqueue(netdev)) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002540 q_idx = skb->queue_mapping;
2541 q_idx = (q_idx % (lio->linfo.num_txpciq));
2542 tag = q_idx;
2543 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002544 } else {
2545 iq_no = lio->txq;
2546 }
2547
2548 stats = &oct->instr_queue[iq_no]->stats;
2549
2550 /* Check for all conditions in which the current packet cannot be
2551 * transmitted.
2552 */
2553 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002554 (!lio->linfo.link.s.link_up) ||
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002555 (skb->len <= 0)) {
2556 netif_info(lio, tx_err, lio->netdev,
2557 "Transmit failed link_status : %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002558 lio->linfo.link.s.link_up);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002559 goto lio_xmit_failed;
2560 }
2561
2562 /* Use space in skb->cb to store info used to unmap and
2563 * free the buffers.
2564 */
2565 finfo = (struct octnet_buf_free_info *)skb->cb;
2566 finfo->lio = lio;
2567 finfo->skb = skb;
2568 finfo->sc = NULL;
2569
2570 /* Prepare the attributes for the data to be passed to OSI. */
2571 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
2572
2573 ndata.buf = (void *)finfo;
2574
2575 ndata.q_no = iq_no;
2576
2577 if (netif_is_multiqueue(netdev)) {
2578 if (octnet_iq_is_full(oct, ndata.q_no)) {
2579 /* defer sending if queue is full */
2580 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
2581 ndata.q_no);
2582 stats->tx_iq_busy++;
2583 return NETDEV_TX_BUSY;
2584 }
2585 } else {
2586 if (octnet_iq_is_full(oct, lio->txq)) {
2587 /* defer sending if queue is full */
2588 stats->tx_iq_busy++;
2589 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07002590 lio->txq);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002591 return NETDEV_TX_BUSY;
2592 }
2593 }
2594 /* pr_info(" XMIT - valid Qs: %d, 1st Q no: %d, cpu: %d, q_no:%d\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07002595 * lio->linfo.num_txpciq, lio->txq, cpu, ndata.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002596 */
2597
2598 ndata.datasize = skb->len;
2599
2600 cmdsetup.u64 = 0;
Raghu Vatsavayi7275ebf2016-06-14 16:54:49 -07002601 cmdsetup.s.iq_no = iq_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002602
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002603 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2604 if (skb->encapsulation) {
2605 cmdsetup.s.tnl_csum = 1;
2606 stats->tx_vxlan++;
2607 } else {
2608 cmdsetup.s.transport_csum = 1;
2609 }
2610 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002611 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
2612 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
2613 cmdsetup.s.timestamp = 1;
2614 }
2615
2616 if (skb_shinfo(skb)->nr_frags == 0) {
2617 cmdsetup.s.u.datasize = skb->len;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002618 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07002619
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002620 /* Offload checksum calculation for TCP/UDP packets */
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07002621 dptr = dma_map_single(&oct->pci_dev->dev,
2622 skb->data,
2623 skb->len,
2624 DMA_TO_DEVICE);
2625 if (dma_mapping_error(&oct->pci_dev->dev, dptr)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002626 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
2627 __func__);
2628 return NETDEV_TX_BUSY;
2629 }
2630
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07002631 if (OCTEON_CN23XX_PF(oct))
2632 ndata.cmd.cmd3.dptr = dptr;
2633 else
2634 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07002635 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002636 ndata.reqtype = REQTYPE_NORESP_NET;
2637
2638 } else {
2639 int i, frags;
2640 struct skb_frag_struct *frag;
2641 struct octnic_gather *g;
2642
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002643 spin_lock(&lio->glist_lock[q_idx]);
2644 g = (struct octnic_gather *)
2645 list_delete_head(&lio->glist[q_idx]);
2646 spin_unlock(&lio->glist_lock[q_idx]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002647
2648 if (!g) {
2649 netif_info(lio, tx_err, lio->netdev,
2650 "Transmit scatter gather: glist null!\n");
2651 goto lio_xmit_failed;
2652 }
2653
2654 cmdsetup.s.gather = 1;
2655 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002656 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002657
2658 memset(g->sg, 0, g->sg_size);
2659
2660 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
2661 skb->data,
2662 (skb->len - skb->data_len),
2663 DMA_TO_DEVICE);
2664 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
2665 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
2666 __func__);
2667 return NETDEV_TX_BUSY;
2668 }
2669 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
2670
2671 frags = skb_shinfo(skb)->nr_frags;
2672 i = 1;
2673 while (frags--) {
2674 frag = &skb_shinfo(skb)->frags[i - 1];
2675
2676 g->sg[(i >> 2)].ptr[(i & 3)] =
2677 dma_map_page(&oct->pci_dev->dev,
2678 frag->page.p,
2679 frag->page_offset,
2680 frag->size,
2681 DMA_TO_DEVICE);
2682
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002683 if (dma_mapping_error(&oct->pci_dev->dev,
2684 g->sg[i >> 2].ptr[i & 3])) {
2685 dma_unmap_single(&oct->pci_dev->dev,
2686 g->sg[0].ptr[0],
2687 skb->len - skb->data_len,
2688 DMA_TO_DEVICE);
2689 for (j = 1; j < i; j++) {
2690 frag = &skb_shinfo(skb)->frags[j - 1];
2691 dma_unmap_page(&oct->pci_dev->dev,
2692 g->sg[j >> 2].ptr[j & 3],
2693 frag->size,
2694 DMA_TO_DEVICE);
2695 }
2696 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
2697 __func__);
2698 return NETDEV_TX_BUSY;
2699 }
2700
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002701 add_sg_size(&g->sg[(i >> 2)], frag->size, (i & 3));
2702 i++;
2703 }
2704
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002705 dptr = g->sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002706
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07002707 if (OCTEON_CN23XX_PF(oct))
2708 ndata.cmd.cmd3.dptr = dptr;
2709 else
2710 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07002711 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002712 finfo->g = g;
2713
2714 ndata.reqtype = REQTYPE_NORESP_NET_SG;
2715 }
2716
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07002717 if (OCTEON_CN23XX_PF(oct)) {
2718 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd3.irh;
2719 tx_info = (union tx_info *)&ndata.cmd.cmd3.ossp[0];
2720 } else {
2721 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd2.irh;
2722 tx_info = (union tx_info *)&ndata.cmd.cmd2.ossp[0];
2723 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002724
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07002725 if (skb_shinfo(skb)->gso_size) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002726 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
2727 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07002728 stats->tx_gso++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002729 }
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07002730
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002731 /* HW insert VLAN tag */
2732 if (skb_vlan_tag_present(skb)) {
2733 irh->priority = skb_vlan_tag_get(skb) >> 13;
2734 irh->vlan = skb_vlan_tag_get(skb) & 0xfff;
2735 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002736
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002737 if (unlikely(cmdsetup.s.timestamp))
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002738 status = send_nic_timestamp_pkt(oct, &ndata, finfo);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002739 else
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002740 status = octnet_send_nic_data_pkt(oct, &ndata);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002741 if (status == IQ_SEND_FAILED)
2742 goto lio_xmit_failed;
2743
2744 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
2745
2746 if (status == IQ_SEND_STOP)
2747 stop_q(lio->netdev, q_idx);
2748
Florian Westphal860e9532016-05-03 16:33:13 +02002749 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002750
Satanand Burla80c8eae2017-01-26 11:52:35 -08002751 if (tx_info->s.gso_segs)
2752 stats->tx_done += tx_info->s.gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07002753 else
2754 stats->tx_done++;
Satanand Burla80c8eae2017-01-26 11:52:35 -08002755 stats->tx_tot_bytes += ndata.datasize;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002756
2757 return NETDEV_TX_OK;
2758
2759lio_xmit_failed:
2760 stats->tx_dropped++;
2761 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
2762 iq_no, stats->tx_dropped);
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07002763 if (dptr)
2764 dma_unmap_single(&oct->pci_dev->dev, dptr,
2765 ndata.datasize, DMA_TO_DEVICE);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07002766 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002767 return NETDEV_TX_OK;
2768}
2769
2770/** \brief Network device Tx timeout
2771 * @param netdev pointer to network device
2772 */
2773static void liquidio_tx_timeout(struct net_device *netdev)
2774{
2775 struct lio *lio;
2776
2777 lio = GET_LIO(netdev);
2778
2779 netif_info(lio, tx_err, lio->netdev,
2780 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
2781 netdev->stats.tx_dropped);
Florian Westphal860e9532016-05-03 16:33:13 +02002782 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002783 txqs_wake(netdev);
2784}
2785
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07002786static int liquidio_vlan_rx_add_vid(struct net_device *netdev,
2787 __be16 proto __attribute__((unused)),
2788 u16 vid)
2789{
2790 struct lio *lio = GET_LIO(netdev);
2791 struct octeon_device *oct = lio->oct_dev;
2792 struct octnic_ctrl_pkt nctrl;
2793 int ret = 0;
2794
2795 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2796
2797 nctrl.ncmd.u64 = 0;
2798 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
2799 nctrl.ncmd.s.param1 = vid;
2800 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2801 nctrl.wait_time = 100;
2802 nctrl.netpndev = (u64)netdev;
2803 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2804
2805 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
2806 if (ret < 0) {
2807 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
2808 ret);
2809 }
2810
2811 return ret;
2812}
2813
2814static int liquidio_vlan_rx_kill_vid(struct net_device *netdev,
2815 __be16 proto __attribute__((unused)),
2816 u16 vid)
2817{
2818 struct lio *lio = GET_LIO(netdev);
2819 struct octeon_device *oct = lio->oct_dev;
2820 struct octnic_ctrl_pkt nctrl;
2821 int ret = 0;
2822
2823 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2824
2825 nctrl.ncmd.u64 = 0;
2826 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
2827 nctrl.ncmd.s.param1 = vid;
2828 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2829 nctrl.wait_time = 100;
2830 nctrl.netpndev = (u64)netdev;
2831 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2832
2833 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
2834 if (ret < 0) {
2835 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
2836 ret);
2837 }
2838 return ret;
2839}
2840
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002841/** Sending command to enable/disable RX checksum offload
2842 * @param netdev pointer to network device
2843 * @param command OCTNET_CMD_TNL_RX_CSUM_CTL
2844 * @param rx_cmd_bit OCTNET_CMD_RXCSUM_ENABLE/
2845 * OCTNET_CMD_RXCSUM_DISABLE
2846 * @returns SUCCESS or FAILURE
2847 */
Nicholas Mc Guirec41419b2016-08-22 17:52:00 +02002848static int liquidio_set_rxcsum_command(struct net_device *netdev, int command,
2849 u8 rx_cmd)
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002850{
2851 struct lio *lio = GET_LIO(netdev);
2852 struct octeon_device *oct = lio->oct_dev;
2853 struct octnic_ctrl_pkt nctrl;
2854 int ret = 0;
2855
Felix Manlunas0c264582017-04-06 19:22:22 -07002856 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2857
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002858 nctrl.ncmd.u64 = 0;
2859 nctrl.ncmd.s.cmd = command;
2860 nctrl.ncmd.s.param1 = rx_cmd;
2861 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2862 nctrl.wait_time = 100;
2863 nctrl.netpndev = (u64)netdev;
2864 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2865
2866 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
2867 if (ret < 0) {
2868 dev_err(&oct->pci_dev->dev,
2869 "DEVFLAGS RXCSUM change failed in core(ret:0x%x)\n",
2870 ret);
2871 }
2872 return ret;
2873}
2874
2875/** Sending command to add/delete VxLAN UDP port to firmware
2876 * @param netdev pointer to network device
2877 * @param command OCTNET_CMD_VXLAN_PORT_CONFIG
2878 * @param vxlan_port VxLAN port to be added or deleted
2879 * @param vxlan_cmd_bit OCTNET_CMD_VXLAN_PORT_ADD,
2880 * OCTNET_CMD_VXLAN_PORT_DEL
2881 * @returns SUCCESS or FAILURE
2882 */
2883static int liquidio_vxlan_port_command(struct net_device *netdev, int command,
2884 u16 vxlan_port, u8 vxlan_cmd_bit)
2885{
2886 struct lio *lio = GET_LIO(netdev);
2887 struct octeon_device *oct = lio->oct_dev;
2888 struct octnic_ctrl_pkt nctrl;
2889 int ret = 0;
2890
Felix Manlunas0c264582017-04-06 19:22:22 -07002891 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2892
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002893 nctrl.ncmd.u64 = 0;
2894 nctrl.ncmd.s.cmd = command;
2895 nctrl.ncmd.s.more = vxlan_cmd_bit;
2896 nctrl.ncmd.s.param1 = vxlan_port;
2897 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
2898 nctrl.wait_time = 100;
2899 nctrl.netpndev = (u64)netdev;
2900 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2901
2902 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
2903 if (ret < 0) {
2904 dev_err(&oct->pci_dev->dev,
2905 "VxLAN port add/delete failed in core (ret:0x%x)\n",
2906 ret);
2907 }
2908 return ret;
2909}
2910
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002911/** \brief Net device fix features
2912 * @param netdev pointer to network device
2913 * @param request features requested
2914 * @returns updated features list
2915 */
2916static netdev_features_t liquidio_fix_features(struct net_device *netdev,
2917 netdev_features_t request)
2918{
2919 struct lio *lio = netdev_priv(netdev);
2920
2921 if ((request & NETIF_F_RXCSUM) &&
2922 !(lio->dev_capability & NETIF_F_RXCSUM))
2923 request &= ~NETIF_F_RXCSUM;
2924
2925 if ((request & NETIF_F_HW_CSUM) &&
2926 !(lio->dev_capability & NETIF_F_HW_CSUM))
2927 request &= ~NETIF_F_HW_CSUM;
2928
2929 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
2930 request &= ~NETIF_F_TSO;
2931
2932 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
2933 request &= ~NETIF_F_TSO6;
2934
2935 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
2936 request &= ~NETIF_F_LRO;
2937
2938 /*Disable LRO if RXCSUM is off */
2939 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
2940 (lio->dev_capability & NETIF_F_LRO))
2941 request &= ~NETIF_F_LRO;
2942
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07002943 if ((request & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2944 !(lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER))
2945 request &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
2946
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002947 return request;
2948}
2949
2950/** \brief Net device set features
2951 * @param netdev pointer to network device
2952 * @param features features to enable/disable
2953 */
2954static int liquidio_set_features(struct net_device *netdev,
2955 netdev_features_t features)
2956{
2957 struct lio *lio = netdev_priv(netdev);
2958
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07002959 if ((features & NETIF_F_LRO) &&
2960 (lio->dev_capability & NETIF_F_LRO) &&
2961 !(netdev->features & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002962 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
2963 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002964 else if (!(features & NETIF_F_LRO) &&
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07002965 (lio->dev_capability & NETIF_F_LRO) &&
2966 (netdev->features & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002967 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE,
2968 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002969
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002970 /* Sending command to firmware to enable/disable RX checksum
2971 * offload settings using ethtool
2972 */
2973 if (!(netdev->features & NETIF_F_RXCSUM) &&
2974 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
2975 (features & NETIF_F_RXCSUM))
2976 liquidio_set_rxcsum_command(netdev,
2977 OCTNET_CMD_TNL_RX_CSUM_CTL,
2978 OCTNET_CMD_RXCSUM_ENABLE);
2979 else if ((netdev->features & NETIF_F_RXCSUM) &&
2980 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
2981 !(features & NETIF_F_RXCSUM))
2982 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
2983 OCTNET_CMD_RXCSUM_DISABLE);
2984
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07002985 if ((features & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2986 (lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2987 !(netdev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
2988 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
2989 OCTNET_CMD_VLAN_FILTER_ENABLE);
2990 else if (!(features & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2991 (lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER) &&
2992 (netdev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
2993 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
2994 OCTNET_CMD_VLAN_FILTER_DISABLE);
2995
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002996 return 0;
2997}
2998
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002999static void liquidio_add_vxlan_port(struct net_device *netdev,
3000 struct udp_tunnel_info *ti)
3001{
3002 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3003 return;
3004
3005 liquidio_vxlan_port_command(netdev,
3006 OCTNET_CMD_VXLAN_PORT_CONFIG,
3007 htons(ti->port),
3008 OCTNET_CMD_VXLAN_PORT_ADD);
3009}
3010
3011static void liquidio_del_vxlan_port(struct net_device *netdev,
3012 struct udp_tunnel_info *ti)
3013{
3014 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3015 return;
3016
3017 liquidio_vxlan_port_command(netdev,
3018 OCTNET_CMD_VXLAN_PORT_CONFIG,
3019 htons(ti->port),
3020 OCTNET_CMD_VXLAN_PORT_DEL);
3021}
3022
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003023static int __liquidio_set_vf_mac(struct net_device *netdev, int vfidx,
3024 u8 *mac, bool is_admin_assigned)
3025{
3026 struct lio *lio = GET_LIO(netdev);
3027 struct octeon_device *oct = lio->oct_dev;
3028 struct octnic_ctrl_pkt nctrl;
3029
3030 if (!is_valid_ether_addr(mac))
3031 return -EINVAL;
3032
3033 if (vfidx < 0 || vfidx >= oct->sriov_info.max_vfs)
3034 return -EINVAL;
3035
3036 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3037
3038 nctrl.ncmd.u64 = 0;
3039 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
3040 /* vfidx is 0 based, but vf_num (param1) is 1 based */
3041 nctrl.ncmd.s.param1 = vfidx + 1;
3042 nctrl.ncmd.s.param2 = (is_admin_assigned ? 1 : 0);
3043 nctrl.ncmd.s.more = 1;
3044 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Rick Farrington9549c6c2017-03-17 15:43:26 -07003045 nctrl.netpndev = (u64)netdev;
3046 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003047 nctrl.wait_time = LIO_CMD_WAIT_TM;
3048
3049 nctrl.udd[0] = 0;
3050 /* The MAC Address is presented in network byte order. */
3051 ether_addr_copy((u8 *)&nctrl.udd[0] + 2, mac);
3052
3053 oct->sriov_info.vf_macaddr[vfidx] = nctrl.udd[0];
3054
3055 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3056
3057 return 0;
3058}
3059
3060static int liquidio_set_vf_mac(struct net_device *netdev, int vfidx, u8 *mac)
3061{
3062 struct lio *lio = GET_LIO(netdev);
3063 struct octeon_device *oct = lio->oct_dev;
3064 int retval;
3065
Felix Manlunas0d9a5992017-05-16 11:28:00 -07003066 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3067 return -EINVAL;
3068
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003069 retval = __liquidio_set_vf_mac(netdev, vfidx, mac, true);
3070 if (!retval)
3071 cn23xx_tell_vf_its_macaddr_changed(oct, vfidx, mac);
3072
3073 return retval;
3074}
3075
3076static int liquidio_set_vf_vlan(struct net_device *netdev, int vfidx,
3077 u16 vlan, u8 qos, __be16 vlan_proto)
3078{
3079 struct lio *lio = GET_LIO(netdev);
3080 struct octeon_device *oct = lio->oct_dev;
3081 struct octnic_ctrl_pkt nctrl;
3082 u16 vlantci;
3083
3084 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3085 return -EINVAL;
3086
3087 if (vlan_proto != htons(ETH_P_8021Q))
3088 return -EPROTONOSUPPORT;
3089
3090 if (vlan >= VLAN_N_VID || qos > 7)
3091 return -EINVAL;
3092
3093 if (vlan)
3094 vlantci = vlan | (u16)qos << VLAN_PRIO_SHIFT;
3095 else
3096 vlantci = 0;
3097
3098 if (oct->sriov_info.vf_vlantci[vfidx] == vlantci)
3099 return 0;
3100
3101 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3102
3103 if (vlan)
3104 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3105 else
3106 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3107
3108 nctrl.ncmd.s.param1 = vlantci;
3109 nctrl.ncmd.s.param2 =
3110 vfidx + 1; /* vfidx is 0 based, but vf_num (param2) is 1 based */
3111 nctrl.ncmd.s.more = 0;
3112 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3113 nctrl.cb_fn = 0;
3114 nctrl.wait_time = LIO_CMD_WAIT_TM;
3115
3116 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3117
3118 oct->sriov_info.vf_vlantci[vfidx] = vlantci;
3119
3120 return 0;
3121}
3122
3123static int liquidio_get_vf_config(struct net_device *netdev, int vfidx,
3124 struct ifla_vf_info *ivi)
3125{
3126 struct lio *lio = GET_LIO(netdev);
3127 struct octeon_device *oct = lio->oct_dev;
3128 u8 *macaddr;
3129
3130 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3131 return -EINVAL;
3132
3133 ivi->vf = vfidx;
3134 macaddr = 2 + (u8 *)&oct->sriov_info.vf_macaddr[vfidx];
3135 ether_addr_copy(&ivi->mac[0], macaddr);
3136 ivi->vlan = oct->sriov_info.vf_vlantci[vfidx] & VLAN_VID_MASK;
3137 ivi->qos = oct->sriov_info.vf_vlantci[vfidx] >> VLAN_PRIO_SHIFT;
3138 ivi->linkstate = oct->sriov_info.vf_linkstate[vfidx];
3139 return 0;
3140}
3141
3142static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
3143 int linkstate)
3144{
3145 struct lio *lio = GET_LIO(netdev);
3146 struct octeon_device *oct = lio->oct_dev;
3147 struct octnic_ctrl_pkt nctrl;
3148
3149 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3150 return -EINVAL;
3151
3152 if (oct->sriov_info.vf_linkstate[vfidx] == linkstate)
3153 return 0;
3154
3155 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3156 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_VF_LINKSTATE;
3157 nctrl.ncmd.s.param1 =
3158 vfidx + 1; /* vfidx is 0 based, but vf_num (param1) is 1 based */
3159 nctrl.ncmd.s.param2 = linkstate;
3160 nctrl.ncmd.s.more = 0;
3161 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3162 nctrl.cb_fn = 0;
3163 nctrl.wait_time = LIO_CMD_WAIT_TM;
3164
3165 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3166
3167 oct->sriov_info.vf_linkstate[vfidx] = linkstate;
3168
3169 return 0;
3170}
3171
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003172static const struct net_device_ops lionetdevops = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003173 .ndo_open = liquidio_open,
3174 .ndo_stop = liquidio_stop,
3175 .ndo_start_xmit = liquidio_xmit,
3176 .ndo_get_stats = liquidio_get_stats,
3177 .ndo_set_mac_address = liquidio_set_mac,
3178 .ndo_set_rx_mode = liquidio_set_mcast_list,
3179 .ndo_tx_timeout = liquidio_tx_timeout,
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003180
3181 .ndo_vlan_rx_add_vid = liquidio_vlan_rx_add_vid,
3182 .ndo_vlan_rx_kill_vid = liquidio_vlan_rx_kill_vid,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003183 .ndo_change_mtu = liquidio_change_mtu,
3184 .ndo_do_ioctl = liquidio_ioctl,
3185 .ndo_fix_features = liquidio_fix_features,
3186 .ndo_set_features = liquidio_set_features,
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003187 .ndo_udp_tunnel_add = liquidio_add_vxlan_port,
3188 .ndo_udp_tunnel_del = liquidio_del_vxlan_port,
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003189 .ndo_set_vf_mac = liquidio_set_vf_mac,
3190 .ndo_set_vf_vlan = liquidio_set_vf_vlan,
3191 .ndo_get_vf_config = liquidio_get_vf_config,
3192 .ndo_set_vf_link_state = liquidio_set_vf_link_state,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003193};
3194
3195/** \brief Entry point for the liquidio module
3196 */
3197static int __init liquidio_init(void)
3198{
3199 int i;
3200 struct handshake *hs;
3201
3202 init_completion(&first_stage);
3203
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003204 octeon_init_device_list(OCTEON_CONFIG_TYPE_DEFAULT);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003205
3206 if (liquidio_init_pci())
3207 return -EINVAL;
3208
3209 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3210
3211 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3212 hs = &handshake[i];
3213 if (hs->pci_dev) {
3214 wait_for_completion(&hs->init);
3215 if (!hs->init_ok) {
3216 /* init handshake failed */
3217 dev_err(&hs->pci_dev->dev,
3218 "Failed to init device\n");
3219 liquidio_deinit_pci();
3220 return -EIO;
3221 }
3222 }
3223 }
3224
3225 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3226 hs = &handshake[i];
3227 if (hs->pci_dev) {
3228 wait_for_completion_timeout(&hs->started,
3229 msecs_to_jiffies(30000));
3230 if (!hs->started_ok) {
3231 /* starter handshake failed */
3232 dev_err(&hs->pci_dev->dev,
3233 "Firmware failed to start\n");
3234 liquidio_deinit_pci();
3235 return -EIO;
3236 }
3237 }
3238 }
3239
3240 return 0;
3241}
3242
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -07003243static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003244{
3245 struct octeon_device *oct = (struct octeon_device *)buf;
3246 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003247 int gmxport = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003248 union oct_link_status *ls;
3249 int i;
3250
Prasad Kannegantic4ee5d82017-06-18 05:04:11 -07003251 if (recv_pkt->buffer_size[0] != (sizeof(*ls) + OCT_DROQ_INFO_SIZE)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003252 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3253 recv_pkt->buffer_size[0],
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003254 recv_pkt->rh.r_nic_info.gmxport);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003255 goto nic_info_err;
3256 }
3257
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003258 gmxport = recv_pkt->rh.r_nic_info.gmxport;
Prasad Kannegantic4ee5d82017-06-18 05:04:11 -07003259 ls = (union oct_link_status *)(get_rbd(recv_pkt->buffer_ptr[0]) +
3260 OCT_DROQ_INFO_SIZE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003261
3262 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003263 for (i = 0; i < oct->ifcount; i++) {
3264 if (oct->props[i].gmxport == gmxport) {
3265 update_link_status(oct->props[i].netdev, ls);
3266 break;
3267 }
3268 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003269
3270nic_info_err:
3271 for (i = 0; i < recv_pkt->buffer_count; i++)
3272 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3273 octeon_free_recv_info(recv_info);
3274 return 0;
3275}
3276
3277/**
3278 * \brief Setup network interfaces
3279 * @param octeon_dev octeon device
3280 *
3281 * Called during init time for each device. It assumes the NIC
3282 * is already up and running. The link information for each
3283 * interface is passed in link_info.
3284 */
3285static int setup_nic_devices(struct octeon_device *octeon_dev)
3286{
3287 struct lio *lio = NULL;
3288 struct net_device *netdev;
3289 u8 mac[6], i, j;
3290 struct octeon_soft_command *sc;
3291 struct liquidio_if_cfg_context *ctx;
3292 struct liquidio_if_cfg_resp *resp;
3293 struct octdev_props *props;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003294 int retval, num_iqueues, num_oqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003295 union oct_nic_if_cfg if_cfg;
3296 unsigned int base_queue;
3297 unsigned int gmx_port_id;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003298 u32 resp_size, ctx_size, data_size;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003299 u32 ifidx_or_pfnum;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003300 struct lio_version *vdata;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003301
3302 /* This is to handle link status changes */
3303 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3304 OPCODE_NIC_INFO,
3305 lio_nic_info, octeon_dev);
3306
3307 /* REQTYPE_RESP_NET and REQTYPE_SOFT_COMMAND do not have free functions.
3308 * They are handled directly.
3309 */
3310 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
3311 free_netbuf);
3312
3313 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
3314 free_netsgbuf);
3315
3316 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
3317 free_netsgbuf_with_resp);
3318
3319 for (i = 0; i < octeon_dev->ifcount; i++) {
3320 resp_size = sizeof(struct liquidio_if_cfg_resp);
3321 ctx_size = sizeof(struct liquidio_if_cfg_context);
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003322 data_size = sizeof(struct lio_version);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003323 sc = (struct octeon_soft_command *)
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003324 octeon_alloc_soft_command(octeon_dev, data_size,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003325 resp_size, ctx_size);
3326 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
3327 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003328 vdata = (struct lio_version *)sc->virtdptr;
3329
3330 *((u64 *)vdata) = 0;
3331 vdata->major = cpu_to_be16(LIQUIDIO_BASE_MAJOR_VERSION);
3332 vdata->minor = cpu_to_be16(LIQUIDIO_BASE_MINOR_VERSION);
3333 vdata->micro = cpu_to_be16(LIQUIDIO_BASE_MICRO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003334
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07003335 if (OCTEON_CN23XX_PF(octeon_dev)) {
3336 num_iqueues = octeon_dev->sriov_info.num_pf_rings;
3337 num_oqueues = octeon_dev->sriov_info.num_pf_rings;
3338 base_queue = octeon_dev->sriov_info.pf_srn;
3339
3340 gmx_port_id = octeon_dev->pf_num;
3341 ifidx_or_pfnum = octeon_dev->pf_num;
3342 } else {
3343 num_iqueues = CFG_GET_NUM_TXQS_NIC_IF(
3344 octeon_get_conf(octeon_dev), i);
3345 num_oqueues = CFG_GET_NUM_RXQS_NIC_IF(
3346 octeon_get_conf(octeon_dev), i);
3347 base_queue = CFG_GET_BASE_QUE_NIC_IF(
3348 octeon_get_conf(octeon_dev), i);
3349 gmx_port_id = CFG_GET_GMXID_NIC_IF(
3350 octeon_get_conf(octeon_dev), i);
3351 ifidx_or_pfnum = i;
3352 }
Raghu Vatsavayi3dcef2c2016-07-03 13:56:51 -07003353
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003354 dev_dbg(&octeon_dev->pci_dev->dev,
3355 "requesting config for interface %d, iqs %d, oqs %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003356 ifidx_or_pfnum, num_iqueues, num_oqueues);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07003357 WRITE_ONCE(ctx->cond, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003358 ctx->octeon_id = lio_get_device_id(octeon_dev);
3359 init_waitqueue_head(&ctx->wc);
3360
3361 if_cfg.u64 = 0;
3362 if_cfg.s.num_iqueues = num_iqueues;
3363 if_cfg.s.num_oqueues = num_oqueues;
3364 if_cfg.s.base_queue = base_queue;
3365 if_cfg.s.gmx_port_id = gmx_port_id;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003366
3367 sc->iq_no = 0;
3368
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003369 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003370 OPCODE_NIC_IF_CFG, 0,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003371 if_cfg.u64, 0);
3372
3373 sc->callback = if_cfg_callback;
3374 sc->callback_arg = sc;
Raghu Vatsavayi55893a62016-07-03 13:56:50 -07003375 sc->wait_time = 3000;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003376
3377 retval = octeon_send_soft_command(octeon_dev, sc);
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003378 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003379 dev_err(&octeon_dev->pci_dev->dev,
3380 "iq/oq config failed status: %x\n",
3381 retval);
3382 /* Soft instr is freed by driver in case of failure. */
3383 goto setup_nic_dev_fail;
3384 }
3385
3386 /* Sleep on a wait queue till the cond flag indicates that the
3387 * response arrived or timed-out.
3388 */
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07003389 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR) {
3390 dev_err(&octeon_dev->pci_dev->dev, "Wait interrupted\n");
3391 goto setup_nic_wait_intr;
3392 }
3393
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003394 retval = resp->status;
3395 if (retval) {
3396 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
3397 goto setup_nic_dev_fail;
3398 }
3399
3400 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
3401 (sizeof(struct liquidio_if_cfg_info)) >> 3);
3402
3403 num_iqueues = hweight64(resp->cfg_info.iqmask);
3404 num_oqueues = hweight64(resp->cfg_info.oqmask);
3405
3406 if (!(num_iqueues) || !(num_oqueues)) {
3407 dev_err(&octeon_dev->pci_dev->dev,
3408 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
3409 resp->cfg_info.iqmask,
3410 resp->cfg_info.oqmask);
3411 goto setup_nic_dev_fail;
3412 }
3413 dev_dbg(&octeon_dev->pci_dev->dev,
3414 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d\n",
3415 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
3416 num_iqueues, num_oqueues);
3417 netdev = alloc_etherdev_mq(LIO_SIZE, num_iqueues);
3418
3419 if (!netdev) {
3420 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
3421 goto setup_nic_dev_fail;
3422 }
3423
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003424 SET_NETDEV_DEV(netdev, &octeon_dev->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003425
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003426 /* Associate the routines that will handle different
3427 * netdev tasks.
3428 */
3429 netdev->netdev_ops = &lionetdevops;
3430
3431 lio = GET_LIO(netdev);
3432
3433 memset(lio, 0, sizeof(struct lio));
3434
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003435 lio->ifidx = ifidx_or_pfnum;
3436
3437 props = &octeon_dev->props[i];
3438 props->gmxport = resp->cfg_info.linfo.gmxport;
3439 props->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003440
3441 lio->linfo.num_rxpciq = num_oqueues;
3442 lio->linfo.num_txpciq = num_iqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003443 for (j = 0; j < num_oqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003444 lio->linfo.rxpciq[j].u64 =
3445 resp->cfg_info.linfo.rxpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003446 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003447 for (j = 0; j < num_iqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003448 lio->linfo.txpciq[j].u64 =
3449 resp->cfg_info.linfo.txpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003450 }
3451 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
3452 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
3453 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
3454
3455 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
3456
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07003457 if (OCTEON_CN23XX_PF(octeon_dev) ||
3458 OCTEON_CN6XXX(octeon_dev)) {
3459 lio->dev_capability = NETIF_F_HIGHDMA
3460 | NETIF_F_IP_CSUM
3461 | NETIF_F_IPV6_CSUM
3462 | NETIF_F_SG | NETIF_F_RXCSUM
3463 | NETIF_F_GRO
3464 | NETIF_F_TSO | NETIF_F_TSO6
3465 | NETIF_F_LRO;
3466 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003467 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
3468
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003469 /* Copy of transmit encapsulation capabilities:
3470 * TSO, TSO6, Checksums for this device
3471 */
3472 lio->enc_dev_capability = NETIF_F_IP_CSUM
3473 | NETIF_F_IPV6_CSUM
3474 | NETIF_F_GSO_UDP_TUNNEL
3475 | NETIF_F_HW_CSUM | NETIF_F_SG
3476 | NETIF_F_RXCSUM
3477 | NETIF_F_TSO | NETIF_F_TSO6
3478 | NETIF_F_LRO;
3479
3480 netdev->hw_enc_features = (lio->enc_dev_capability &
3481 ~NETIF_F_LRO);
3482
3483 lio->dev_capability |= NETIF_F_GSO_UDP_TUNNEL;
3484
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07003485 netdev->vlan_features = lio->dev_capability;
3486 /* Add any unchangeable hw features */
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003487 lio->dev_capability |= NETIF_F_HW_VLAN_CTAG_FILTER |
3488 NETIF_F_HW_VLAN_CTAG_RX |
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07003489 NETIF_F_HW_VLAN_CTAG_TX;
3490
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003491 netdev->features = (lio->dev_capability & ~NETIF_F_LRO);
3492
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003493 netdev->hw_features = lio->dev_capability;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07003494 /*HW_VLAN_RX and HW_VLAN_FILTER is always on*/
3495 netdev->hw_features = netdev->hw_features &
3496 ~NETIF_F_HW_VLAN_CTAG_RX;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003497
Jarod Wilson109cc162016-10-17 15:54:13 -04003498 /* MTU range: 68 - 16000 */
3499 netdev->min_mtu = LIO_MIN_MTU_SIZE;
3500 netdev->max_mtu = LIO_MAX_MTU_SIZE;
3501
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003502 /* Point to the properties for octeon device to which this
3503 * interface belongs.
3504 */
3505 lio->oct_dev = octeon_dev;
3506 lio->octprops = props;
3507 lio->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003508
3509 dev_dbg(&octeon_dev->pci_dev->dev,
3510 "if%d gmx: %d hw_addr: 0x%llx\n", i,
3511 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
3512
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003513 for (j = 0; j < octeon_dev->sriov_info.max_vfs; j++) {
3514 u8 vfmac[ETH_ALEN];
3515
3516 random_ether_addr(&vfmac[0]);
3517 if (__liquidio_set_vf_mac(netdev, j,
3518 &vfmac[0], false)) {
3519 dev_err(&octeon_dev->pci_dev->dev,
3520 "Error setting VF%d MAC address\n",
3521 j);
3522 goto setup_nic_dev_fail;
3523 }
3524 }
3525
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003526 /* 64-bit swap required on LE machines */
3527 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
3528 for (j = 0; j < 6; j++)
3529 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
3530
3531 /* Copy MAC Address to OS network device structure */
3532
3533 ether_addr_copy(netdev->dev_addr, mac);
3534
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003535 /* By default all interfaces on a single Octeon uses the same
3536 * tx and rx queues
3537 */
3538 lio->txq = lio->linfo.txpciq[0].s.q_no;
3539 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
Intiyaz Bashaa82457f2017-08-15 12:46:18 -07003540 if (liquidio_setup_io_queues(octeon_dev, i,
3541 lio->linfo.num_txpciq,
3542 lio->linfo.num_rxpciq)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003543 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
3544 goto setup_nic_dev_fail;
3545 }
3546
3547 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
3548
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003549 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
3550 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
3551
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003552 if (setup_glists(octeon_dev, lio, num_iqueues)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003553 dev_err(&octeon_dev->pci_dev->dev,
3554 "Gather list allocation failed\n");
3555 goto setup_nic_dev_fail;
3556 }
3557
3558 /* Register ethtool support */
3559 liquidio_set_ethtool_ops(netdev);
Raghu Vatsavayi30136392016-09-01 11:16:11 -07003560 if (lio->oct_dev->chip_id == OCTEON_CN23XX_PF_VID)
3561 octeon_dev->priv_flags = OCT_PRIV_FLAG_DEFAULT;
3562 else
3563 octeon_dev->priv_flags = 0x0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003564
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003565 if (netdev->features & NETIF_F_LRO)
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003566 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3567 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003568
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07003569 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
3570 OCTNET_CMD_VLAN_FILTER_ENABLE);
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003571
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003572 if ((debug != -1) && (debug & NETIF_MSG_HW))
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003573 liquidio_set_feature(netdev,
3574 OCTNET_CMD_VERBOSE_ENABLE, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003575
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07003576 if (setup_link_status_change_wq(netdev))
3577 goto setup_nic_dev_fail;
3578
Satanand Burla031d4f12017-03-22 11:31:13 -07003579 if (setup_rx_oom_poll_fn(netdev))
3580 goto setup_nic_dev_fail;
3581
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003582 /* Register the network device with the OS */
3583 if (register_netdev(netdev)) {
3584 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
3585 goto setup_nic_dev_fail;
3586 }
3587
3588 dev_dbg(&octeon_dev->pci_dev->dev,
3589 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
3590 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
3591 netif_carrier_off(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003592 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003593
3594 ifstate_set(lio, LIO_IFSTATE_REGISTERED);
3595
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003596 /* Sending command to firmware to enable Rx checksum offload
3597 * by default at the time of setup of Liquidio driver for
3598 * this device
3599 */
3600 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
3601 OCTNET_CMD_RXCSUM_ENABLE);
3602 liquidio_set_feature(netdev, OCTNET_CMD_TNL_TX_CSUM_CTL,
3603 OCTNET_CMD_TXCSUM_ENABLE);
3604
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003605 dev_dbg(&octeon_dev->pci_dev->dev,
3606 "NIC ifidx:%d Setup successful\n", i);
3607
3608 octeon_free_soft_command(octeon_dev, sc);
3609 }
3610
3611 return 0;
3612
3613setup_nic_dev_fail:
3614
3615 octeon_free_soft_command(octeon_dev, sc);
3616
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07003617setup_nic_wait_intr:
3618
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003619 while (i--) {
3620 dev_err(&octeon_dev->pci_dev->dev,
3621 "NIC ifidx:%d Setup failed\n", i);
3622 liquidio_destroy_nic_device(octeon_dev, i);
3623 }
3624 return -ENODEV;
3625}
3626
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08003627#ifdef CONFIG_PCI_IOV
3628static int octeon_enable_sriov(struct octeon_device *oct)
3629{
3630 unsigned int num_vfs_alloced = oct->sriov_info.num_vfs_alloced;
3631 struct pci_dev *vfdev;
3632 int err;
3633 u32 u;
3634
3635 if (OCTEON_CN23XX_PF(oct) && num_vfs_alloced) {
3636 err = pci_enable_sriov(oct->pci_dev,
3637 oct->sriov_info.num_vfs_alloced);
3638 if (err) {
3639 dev_err(&oct->pci_dev->dev,
3640 "OCTEON: Failed to enable PCI sriov: %d\n",
3641 err);
3642 oct->sriov_info.num_vfs_alloced = 0;
3643 return err;
3644 }
3645 oct->sriov_info.sriov_enabled = 1;
3646
3647 /* init lookup table that maps DPI ring number to VF pci_dev
3648 * struct pointer
3649 */
3650 u = 0;
3651 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
3652 OCTEON_CN23XX_VF_VID, NULL);
3653 while (vfdev) {
3654 if (vfdev->is_virtfn &&
3655 (vfdev->physfn == oct->pci_dev)) {
3656 oct->sriov_info.dpiring_to_vfpcidev_lut[u] =
3657 vfdev;
3658 u += oct->sriov_info.rings_per_vf;
3659 }
3660 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
3661 OCTEON_CN23XX_VF_VID, vfdev);
3662 }
3663 }
3664
3665 return num_vfs_alloced;
3666}
3667
3668static int lio_pci_sriov_disable(struct octeon_device *oct)
3669{
3670 int u;
3671
3672 if (pci_vfs_assigned(oct->pci_dev)) {
3673 dev_err(&oct->pci_dev->dev, "VFs are still assigned to VMs.\n");
3674 return -EPERM;
3675 }
3676
3677 pci_disable_sriov(oct->pci_dev);
3678
3679 u = 0;
3680 while (u < MAX_POSSIBLE_VFS) {
3681 oct->sriov_info.dpiring_to_vfpcidev_lut[u] = NULL;
3682 u += oct->sriov_info.rings_per_vf;
3683 }
3684
3685 oct->sriov_info.num_vfs_alloced = 0;
3686 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d disabled VFs\n",
3687 oct->pf_num);
3688
3689 return 0;
3690}
3691
3692static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs)
3693{
3694 struct octeon_device *oct = pci_get_drvdata(dev);
3695 int ret = 0;
3696
3697 if ((num_vfs == oct->sriov_info.num_vfs_alloced) &&
3698 (oct->sriov_info.sriov_enabled)) {
3699 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d already enabled num_vfs:%d\n",
3700 oct->pf_num, num_vfs);
3701 return 0;
3702 }
3703
3704 if (!num_vfs) {
3705 ret = lio_pci_sriov_disable(oct);
3706 } else if (num_vfs > oct->sriov_info.max_vfs) {
3707 dev_err(&oct->pci_dev->dev,
3708 "OCTEON: Max allowed VFs:%d user requested:%d",
3709 oct->sriov_info.max_vfs, num_vfs);
3710 ret = -EPERM;
3711 } else {
3712 oct->sriov_info.num_vfs_alloced = num_vfs;
3713 ret = octeon_enable_sriov(oct);
3714 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d num_vfs:%d\n",
3715 oct->pf_num, num_vfs);
3716 }
3717
3718 return ret;
3719}
3720#endif
3721
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003722/**
3723 * \brief initialize the NIC
3724 * @param oct octeon device
3725 *
3726 * This initialization routine is called once the Octeon device application is
3727 * up and running
3728 */
3729static int liquidio_init_nic_module(struct octeon_device *oct)
3730{
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003731 int i, retval = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003732 int num_nic_ports = CFG_GET_NUM_NIC_PORTS(octeon_get_conf(oct));
3733
3734 dev_dbg(&oct->pci_dev->dev, "Initializing network interfaces\n");
3735
3736 /* only default iq and oq were initialized
3737 * initialize the rest as well
3738 */
3739 /* run port_config command for each port */
3740 oct->ifcount = num_nic_ports;
3741
Raghu Vatsavayi30136392016-09-01 11:16:11 -07003742 memset(oct->props, 0, sizeof(struct octdev_props) * num_nic_ports);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003743
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003744 for (i = 0; i < MAX_OCTEON_LINKS; i++)
3745 oct->props[i].gmxport = -1;
3746
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003747 retval = setup_nic_devices(oct);
3748 if (retval) {
3749 dev_err(&oct->pci_dev->dev, "Setup NIC devices failed\n");
3750 goto octnet_init_failure;
3751 }
3752
3753 liquidio_ptp_init(oct);
3754
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003755 dev_dbg(&oct->pci_dev->dev, "Network interfaces ready\n");
3756
3757 return retval;
3758
3759octnet_init_failure:
3760
3761 oct->ifcount = 0;
3762
3763 return retval;
3764}
3765
3766/**
3767 * \brief starter callback that invokes the remaining initialization work after
3768 * the NIC is up and running.
3769 * @param octptr work struct work_struct
3770 */
3771static void nic_starter(struct work_struct *work)
3772{
3773 struct octeon_device *oct;
3774 struct cavium_wk *wk = (struct cavium_wk *)work;
3775
3776 oct = (struct octeon_device *)wk->ctxptr;
3777
3778 if (atomic_read(&oct->status) == OCT_DEV_RUNNING)
3779 return;
3780
3781 /* If the status of the device is CORE_OK, the core
3782 * application has reported its application type. Call
3783 * any registered handlers now and move to the RUNNING
3784 * state.
3785 */
3786 if (atomic_read(&oct->status) != OCT_DEV_CORE_OK) {
3787 schedule_delayed_work(&oct->nic_poll_work.work,
3788 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
3789 return;
3790 }
3791
3792 atomic_set(&oct->status, OCT_DEV_RUNNING);
3793
3794 if (oct->app_mode && oct->app_mode == CVM_DRV_NIC_APP) {
3795 dev_dbg(&oct->pci_dev->dev, "Starting NIC module\n");
3796
3797 if (liquidio_init_nic_module(oct))
3798 dev_err(&oct->pci_dev->dev, "NIC initialization failed\n");
3799 else
3800 handshake[oct->octeon_id].started_ok = 1;
3801 } else {
3802 dev_err(&oct->pci_dev->dev,
3803 "Unexpected application running on NIC (%d). Check firmware.\n",
3804 oct->app_mode);
3805 }
3806
3807 complete(&handshake[oct->octeon_id].started);
3808}
3809
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003810static int
3811octeon_recv_vf_drv_notice(struct octeon_recv_info *recv_info, void *buf)
3812{
3813 struct octeon_device *oct = (struct octeon_device *)buf;
3814 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
3815 int i, notice, vf_idx;
Felix Manlunasbb54be52017-04-04 19:26:57 -07003816 bool cores_crashed;
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003817 u64 *data, vf_num;
3818
3819 notice = recv_pkt->rh.r.ossp;
Prasad Kannegantic4ee5d82017-06-18 05:04:11 -07003820 data = (u64 *)(get_rbd(recv_pkt->buffer_ptr[0]) + OCT_DROQ_INFO_SIZE);
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003821
3822 /* the first 64-bit word of data is the vf_num */
3823 vf_num = data[0];
3824 octeon_swap_8B_data(&vf_num, 1);
3825 vf_idx = (int)vf_num - 1;
3826
Felix Manlunasbb54be52017-04-04 19:26:57 -07003827 cores_crashed = READ_ONCE(oct->cores_crashed);
3828
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003829 if (notice == VF_DRV_LOADED) {
3830 if (!(oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx))) {
3831 oct->sriov_info.vf_drv_loaded_mask |= BIT_ULL(vf_idx);
3832 dev_info(&oct->pci_dev->dev,
3833 "driver for VF%d was loaded\n", vf_idx);
Felix Manlunasbb54be52017-04-04 19:26:57 -07003834 if (!cores_crashed)
3835 try_module_get(THIS_MODULE);
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003836 }
3837 } else if (notice == VF_DRV_REMOVED) {
3838 if (oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx)) {
3839 oct->sriov_info.vf_drv_loaded_mask &= ~BIT_ULL(vf_idx);
3840 dev_info(&oct->pci_dev->dev,
3841 "driver for VF%d was removed\n", vf_idx);
Felix Manlunasbb54be52017-04-04 19:26:57 -07003842 if (!cores_crashed)
3843 module_put(THIS_MODULE);
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003844 }
3845 } else if (notice == VF_DRV_MACADDR_CHANGED) {
3846 u8 *b = (u8 *)&data[1];
3847
3848 oct->sriov_info.vf_macaddr[vf_idx] = data[1];
3849 dev_info(&oct->pci_dev->dev,
3850 "VF driver changed VF%d's MAC address to %pM\n",
3851 vf_idx, b + 2);
3852 }
3853
3854 for (i = 0; i < recv_pkt->buffer_count; i++)
3855 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3856 octeon_free_recv_info(recv_info);
3857
3858 return 0;
3859}
3860
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003861/**
3862 * \brief Device initialization for each Octeon device that is probed
3863 * @param octeon_dev octeon device
3864 */
3865static int octeon_device_init(struct octeon_device *octeon_dev)
3866{
3867 int j, ret;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07003868 int fw_loaded = 0;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07003869 char bootcmd[] = "\n";
Rick Farringtonda1542b2017-08-11 18:43:14 -07003870 char *dbg_enb = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003871 struct octeon_device_priv *oct_priv =
3872 (struct octeon_device_priv *)octeon_dev->priv;
3873 atomic_set(&octeon_dev->status, OCT_DEV_BEGIN_STATE);
3874
3875 /* Enable access to the octeon device and make its DMA capability
3876 * known to the OS.
3877 */
3878 if (octeon_pci_os_setup(octeon_dev))
3879 return 1;
3880
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08003881 atomic_set(&octeon_dev->status, OCT_DEV_PCI_ENABLE_DONE);
3882
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003883 /* Identify the Octeon type and map the BAR address space. */
3884 if (octeon_chip_specific_setup(octeon_dev)) {
3885 dev_err(&octeon_dev->pci_dev->dev, "Chip specific setup failed\n");
3886 return 1;
3887 }
3888
3889 atomic_set(&octeon_dev->status, OCT_DEV_PCI_MAP_DONE);
3890
Rick Farringtone1e3ce62017-05-16 11:14:50 -07003891 /* Only add a reference after setting status 'OCT_DEV_PCI_MAP_DONE',
3892 * since that is what is required for the reference to be removed
3893 * during de-initialization (see 'octeon_destroy_resources').
3894 */
3895 octeon_register_device(octeon_dev, octeon_dev->pci_dev->bus->number,
3896 PCI_SLOT(octeon_dev->pci_dev->devfn),
3897 PCI_FUNC(octeon_dev->pci_dev->devfn),
3898 true);
3899
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003900 octeon_dev->app_mode = CVM_DRV_INVALID_APP;
3901
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07003902 if (OCTEON_CN23XX_PF(octeon_dev)) {
3903 if (!cn23xx_fw_loaded(octeon_dev)) {
3904 fw_loaded = 0;
Felix Manlunas7cc61db2017-03-23 13:26:28 -07003905 if (!fw_type_is_none()) {
3906 /* Do a soft reset of the Octeon device. */
3907 if (octeon_dev->fn_list.soft_reset(octeon_dev))
3908 return 1;
3909 /* things might have changed */
3910 if (!cn23xx_fw_loaded(octeon_dev))
3911 fw_loaded = 0;
3912 else
3913 fw_loaded = 1;
3914 }
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07003915 } else {
3916 fw_loaded = 1;
3917 }
3918 } else if (octeon_dev->fn_list.soft_reset(octeon_dev)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003919 return 1;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07003920 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003921
3922 /* Initialize the dispatch mechanism used to push packets arriving on
3923 * Octeon Output queues.
3924 */
3925 if (octeon_init_dispatch_list(octeon_dev))
3926 return 1;
3927
3928 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3929 OPCODE_NIC_CORE_DRV_ACTIVE,
3930 octeon_core_drv_init,
3931 octeon_dev);
3932
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003933 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3934 OPCODE_NIC_VF_DRV_NOTICE,
3935 octeon_recv_vf_drv_notice, octeon_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003936 INIT_DELAYED_WORK(&octeon_dev->nic_poll_work.work, nic_starter);
3937 octeon_dev->nic_poll_work.ctxptr = (void *)octeon_dev;
3938 schedule_delayed_work(&octeon_dev->nic_poll_work.work,
3939 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
3940
3941 atomic_set(&octeon_dev->status, OCT_DEV_DISPATCH_INIT_DONE);
3942
Raghu Vatsavayic865cdf2016-11-28 16:54:36 -08003943 if (octeon_set_io_queues_off(octeon_dev)) {
3944 dev_err(&octeon_dev->pci_dev->dev, "setting io queues off failed\n");
3945 return 1;
3946 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003947
Raghu Vatsavayi3451b972016-08-31 11:03:26 -07003948 if (OCTEON_CN23XX_PF(octeon_dev)) {
3949 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
3950 if (ret) {
3951 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Failed to configure device registers\n");
3952 return ret;
3953 }
3954 }
3955
3956 /* Initialize soft command buffer pool
3957 */
3958 if (octeon_setup_sc_buffer_pool(octeon_dev)) {
3959 dev_err(&octeon_dev->pci_dev->dev, "sc buffer pool allocation failed\n");
3960 return 1;
3961 }
3962 atomic_set(&octeon_dev->status, OCT_DEV_SC_BUFF_POOL_INIT_DONE);
3963
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003964 /* Setup the data structures that manage this Octeon's Input queues. */
3965 if (octeon_setup_instr_queues(octeon_dev)) {
3966 dev_err(&octeon_dev->pci_dev->dev,
3967 "instruction queue initialization failed\n");
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003968 return 1;
3969 }
3970 atomic_set(&octeon_dev->status, OCT_DEV_INSTR_QUEUE_INIT_DONE);
3971
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003972 /* Initialize lists to manage the requests of different types that
3973 * arrive from user & kernel applications for this octeon device.
3974 */
3975 if (octeon_setup_response_list(octeon_dev)) {
3976 dev_err(&octeon_dev->pci_dev->dev, "Response list allocation failed\n");
3977 return 1;
3978 }
3979 atomic_set(&octeon_dev->status, OCT_DEV_RESP_LIST_INIT_DONE);
3980
3981 if (octeon_setup_output_queues(octeon_dev)) {
3982 dev_err(&octeon_dev->pci_dev->dev, "Output queue initialization failed\n");
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07003983 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003984 }
3985
3986 atomic_set(&octeon_dev->status, OCT_DEV_DROQ_INIT_DONE);
3987
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07003988 if (OCTEON_CN23XX_PF(octeon_dev)) {
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08003989 if (octeon_dev->fn_list.setup_mbox(octeon_dev)) {
3990 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Mailbox setup failed\n");
3991 return 1;
3992 }
3993 atomic_set(&octeon_dev->status, OCT_DEV_MBOX_SETUP_DONE);
3994
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07003995 if (octeon_allocate_ioq_vector(octeon_dev)) {
3996 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: ioq vector allocation failed\n");
3997 return 1;
3998 }
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08003999 atomic_set(&octeon_dev->status, OCT_DEV_MSIX_ALLOC_VECTOR_DONE);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004000
4001 } else {
4002 /* The input and output queue registers were setup earlier (the
4003 * queues were not enabled). Any additional registers
4004 * that need to be programmed should be done now.
4005 */
4006 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4007 if (ret) {
4008 dev_err(&octeon_dev->pci_dev->dev,
4009 "Failed to configure device registers\n");
4010 return ret;
4011 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004012 }
4013
4014 /* Initialize the tasklet that handles output queue packet processing.*/
4015 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing droq tasklet\n");
4016 tasklet_init(&oct_priv->droq_tasklet, octeon_droq_bh,
4017 (unsigned long)octeon_dev);
4018
4019 /* Setup the interrupt handler and record the INT SUM register address
4020 */
Intiyaz Bashaa82457f2017-08-15 12:46:18 -07004021 if (octeon_setup_interrupt(octeon_dev,
4022 octeon_dev->sriov_info.num_pf_rings))
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004023 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004024
4025 /* Enable Octeon device interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004026 octeon_dev->fn_list.enable_interrupt(octeon_dev, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004027
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004028 atomic_set(&octeon_dev->status, OCT_DEV_INTR_SET_DONE);
4029
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004030 /* Enable the input and output queues for this Octeon device */
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07004031 ret = octeon_dev->fn_list.enable_io_queues(octeon_dev);
4032 if (ret) {
4033 dev_err(&octeon_dev->pci_dev->dev, "Failed to enable input/output queues");
4034 return ret;
4035 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004036
4037 atomic_set(&octeon_dev->status, OCT_DEV_IO_QUEUES_DONE);
4038
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004039 if ((!OCTEON_CN23XX_PF(octeon_dev)) || !fw_loaded) {
4040 dev_dbg(&octeon_dev->pci_dev->dev, "Waiting for DDR initialization...\n");
4041 if (!ddr_timeout) {
4042 dev_info(&octeon_dev->pci_dev->dev,
4043 "WAITING. Set ddr_timeout to non-zero value to proceed with initialization.\n");
4044 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004045
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004046 schedule_timeout_uninterruptible(HZ * LIO_RESET_SECS);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004047
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004048 /* Wait for the octeon to initialize DDR after the soft-reset.*/
4049 while (!ddr_timeout) {
4050 set_current_state(TASK_INTERRUPTIBLE);
4051 if (schedule_timeout(HZ / 10)) {
4052 /* user probably pressed Control-C */
4053 return 1;
4054 }
4055 }
4056 ret = octeon_wait_for_ddr_init(octeon_dev, &ddr_timeout);
4057 if (ret) {
4058 dev_err(&octeon_dev->pci_dev->dev,
4059 "DDR not initialized. Please confirm that board is configured to boot from Flash, ret: %d\n",
4060 ret);
Raghu Vatsavayi4b129ae2016-06-21 22:53:15 -07004061 return 1;
4062 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004063
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004064 if (octeon_wait_for_bootloader(octeon_dev, 1000)) {
4065 dev_err(&octeon_dev->pci_dev->dev, "Board not responding\n");
4066 return 1;
4067 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004068
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004069 /* Divert uboot to take commands from host instead. */
4070 ret = octeon_console_send_cmd(octeon_dev, bootcmd, 50);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004071
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004072 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing consoles\n");
4073 ret = octeon_init_consoles(octeon_dev);
4074 if (ret) {
4075 dev_err(&octeon_dev->pci_dev->dev, "Could not access board consoles\n");
4076 return 1;
4077 }
Rick Farringtonda1542b2017-08-11 18:43:14 -07004078 /* If console debug enabled, specify empty string to use default
4079 * enablement ELSE specify NULL string for 'disabled'.
4080 */
4081 dbg_enb = octeon_console_debug_enabled(0) ? "" : NULL;
4082 ret = octeon_add_console(octeon_dev, 0, dbg_enb);
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004083 if (ret) {
4084 dev_err(&octeon_dev->pci_dev->dev, "Could not access board console\n");
4085 return 1;
Rick Farringtonda1542b2017-08-11 18:43:14 -07004086 } else if (octeon_console_debug_enabled(0)) {
4087 /* If console was added AND we're logging console output
4088 * then set our console print function.
4089 */
4090 octeon_dev->console[0].print = octeon_dbg_console_print;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004091 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004092
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004093 atomic_set(&octeon_dev->status, OCT_DEV_CONSOLE_INIT_DONE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004094
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004095 dev_dbg(&octeon_dev->pci_dev->dev, "Loading firmware\n");
4096 ret = load_firmware(octeon_dev);
4097 if (ret) {
4098 dev_err(&octeon_dev->pci_dev->dev, "Could not load firmware to board\n");
4099 return 1;
4100 }
4101 /* set bit 1 of SLI_SCRATCH_1 to indicate that firmware is
4102 * loaded
4103 */
4104 if (OCTEON_CN23XX_PF(octeon_dev))
4105 octeon_write_csr64(octeon_dev, CN23XX_SLI_SCRATCH1,
4106 2ULL);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004107 }
4108
4109 handshake[octeon_dev->octeon_id].init_ok = 1;
4110 complete(&handshake[octeon_dev->octeon_id].init);
4111
4112 atomic_set(&octeon_dev->status, OCT_DEV_HOST_OK);
4113
4114 /* Send Credit for Octeon Output queues. Credits are always sent after
4115 * the output queue is enabled.
4116 */
4117 for (j = 0; j < octeon_dev->num_oqs; j++)
4118 writel(octeon_dev->droq[j]->max_count,
4119 octeon_dev->droq[j]->pkts_credit_reg);
4120
4121 /* Packets can start arriving on the output queues from this point. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004122 return 0;
4123}
4124
4125/**
Rick Farringtonda1542b2017-08-11 18:43:14 -07004126 * \brief Debug console print function
4127 * @param octeon_dev octeon device
4128 * @param console_num console number
4129 * @param prefix first portion of line to display
4130 * @param suffix second portion of line to display
4131 *
4132 * The OCTEON debug console outputs entire lines (excluding '\n').
4133 * Normally, the line will be passed in the 'prefix' parameter.
4134 * However, due to buffering, it is possible for a line to be split into two
4135 * parts, in which case they will be passed as the 'prefix' parameter and
4136 * 'suffix' parameter.
4137 */
4138static int octeon_dbg_console_print(struct octeon_device *oct, u32 console_num,
4139 char *prefix, char *suffix)
4140{
4141 if (prefix && suffix)
4142 dev_info(&oct->pci_dev->dev, "%u: %s%s\n", console_num, prefix,
4143 suffix);
4144 else if (prefix)
4145 dev_info(&oct->pci_dev->dev, "%u: %s\n", console_num, prefix);
4146 else if (suffix)
4147 dev_info(&oct->pci_dev->dev, "%u: %s\n", console_num, suffix);
4148
4149 return 0;
4150}
4151
4152/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004153 * \brief Exits the module
4154 */
4155static void __exit liquidio_exit(void)
4156{
4157 liquidio_deinit_pci();
4158
4159 pr_info("LiquidIO network module is now unloaded\n");
4160}
4161
4162module_init(liquidio_init);
4163module_exit(liquidio_exit);