blob: cbd6287e578e2ad206fd94d2833cf1e5782e4077 [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
62static char fw_type[LIO_MAX_FW_TYPE_LEN];
63module_param_string(fw_type, fw_type, sizeof(fw_type), 0000);
64MODULE_PARM_DESC(fw_type, "Type of firmware to be loaded. Default \"nic\"");
65
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 */
76int octeon_console_debug_enabled(u32 console)
77{
78 return (console_bitmask >> (console)) & 0x1;
79}
80
Raghu Vatsavayia5b37882016-06-14 16:54:48 -070081static int ptp_enable = 1;
82
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070083/* Polling interval for determining when NIC application is alive */
84#define LIQUIDIO_STARTER_POLL_INTERVAL_MS 100
85
86/* runtime link query interval */
87#define LIQUIDIO_LINK_QUERY_INTERVAL_MS 1000
88
89struct liquidio_if_cfg_context {
90 int octeon_id;
91
92 wait_queue_head_t wc;
93
94 int cond;
95};
96
97struct liquidio_if_cfg_resp {
98 u64 rh;
99 struct liquidio_if_cfg_info cfg_info;
100 u64 status;
101};
102
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -0700103struct liquidio_rx_ctl_context {
104 int octeon_id;
105
106 wait_queue_head_t wc;
107
108 int cond;
109};
110
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700111struct oct_link_status_resp {
112 u64 rh;
113 struct oct_link_info link_info;
114 u64 status;
115};
116
117struct oct_timestamp_resp {
118 u64 rh;
119 u64 timestamp;
120 u64 status;
121};
122
123#define OCT_TIMESTAMP_RESP_SIZE (sizeof(struct oct_timestamp_resp))
124
125union tx_info {
126 u64 u64;
127 struct {
128#ifdef __BIG_ENDIAN_BITFIELD
129 u16 gso_size;
130 u16 gso_segs;
131 u32 reserved;
132#else
133 u32 reserved;
134 u16 gso_segs;
135 u16 gso_size;
136#endif
137 } s;
138};
139
140/** Octeon device properties to be used by the NIC module.
141 * Each octeon device in the system will be represented
142 * by this structure in the NIC module.
143 */
144
145#define OCTNIC_MAX_SG (MAX_SKB_FRAGS)
146
147#define OCTNIC_GSO_MAX_HEADER_SIZE 128
Raghu Vatsavayi72c00912016-08-31 11:03:25 -0700148#define OCTNIC_GSO_MAX_SIZE \
149 (CN23XX_DEFAULT_INPUT_JABBER - OCTNIC_GSO_MAX_HEADER_SIZE)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700150
151/** Structure of a node in list of gather components maintained by
152 * NIC driver for each network device.
153 */
154struct octnic_gather {
155 /** List manipulation. Next and prev pointers. */
156 struct list_head list;
157
158 /** Size of the gather component at sg in bytes. */
159 int sg_size;
160
161 /** Number of bytes that sg was adjusted to make it 8B-aligned. */
162 int adjust;
163
164 /** Gather component that can accommodate max sized fragment list
165 * received from the IP layer.
166 */
167 struct octeon_sg_entry *sg;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700168
VSR Burru67e303e2017-03-06 18:45:59 -0800169 dma_addr_t sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700170};
171
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700172struct handshake {
173 struct completion init;
174 struct completion started;
175 struct pci_dev *pci_dev;
176 int init_ok;
177 int started_ok;
178};
179
180struct octeon_device_priv {
181 /** Tasklet structures for this device. */
182 struct tasklet_struct droq_tasklet;
183 unsigned long napi_mask;
184};
185
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800186#ifdef CONFIG_PCI_IOV
187static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs);
188#endif
189
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700190static int octeon_device_init(struct octeon_device *);
Raghu Vatsavayi32581242016-08-31 11:03:20 -0700191static int liquidio_stop(struct net_device *netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700192static void liquidio_remove(struct pci_dev *pdev);
193static int liquidio_probe(struct pci_dev *pdev,
194 const struct pci_device_id *ent);
Felix Manlunasbb54be52017-04-04 19:26:57 -0700195static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
196 int linkstate);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700197
198static struct handshake handshake[MAX_OCTEON_DEVICES];
199static struct completion first_stage;
200
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700201static void octeon_droq_bh(unsigned long pdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700202{
203 int q_no;
204 int reschedule = 0;
205 struct octeon_device *oct = (struct octeon_device *)pdev;
206 struct octeon_device_priv *oct_priv =
207 (struct octeon_device_priv *)oct->priv;
208
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700209 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES(oct); q_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800210 if (!(oct->io_qmask.oq & BIT_ULL(q_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700211 continue;
212 reschedule |= octeon_droq_process_packets(oct, oct->droq[q_no],
213 MAX_PACKET_BUDGET);
Raghu Vatsavayicd8b1eb2016-08-31 11:03:22 -0700214 lio_enable_irq(oct->droq[q_no], NULL);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700215
216 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
217 /* set time and cnt interrupt thresholds for this DROQ
218 * for NAPI
219 */
220 int adjusted_q_no = q_no + oct->sriov_info.pf_srn;
221
222 octeon_write_csr64(
223 oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(adjusted_q_no),
224 0x5700000040ULL);
225 octeon_write_csr64(
226 oct, CN23XX_SLI_OQ_PKTS_SENT(adjusted_q_no), 0);
227 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700228 }
229
230 if (reschedule)
231 tasklet_schedule(&oct_priv->droq_tasklet);
232}
233
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700234static int lio_wait_for_oq_pkts(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700235{
236 struct octeon_device_priv *oct_priv =
237 (struct octeon_device_priv *)oct->priv;
238 int retry = 100, pkt_cnt = 0, pending_pkts = 0;
239 int i;
240
241 do {
242 pending_pkts = 0;
243
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700244 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800245 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700246 continue;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700247 pkt_cnt += octeon_droq_check_hw_for_pkts(oct->droq[i]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700248 }
249 if (pkt_cnt > 0) {
250 pending_pkts += pkt_cnt;
251 tasklet_schedule(&oct_priv->droq_tasklet);
252 }
253 pkt_cnt = 0;
254 schedule_timeout_uninterruptible(1);
255
256 } while (retry-- && pending_pkts);
257
258 return pkt_cnt;
259}
260
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700261/**
262 * \brief Forces all IO queues off on a given device
263 * @param oct Pointer to Octeon device
264 */
265static void force_io_queues_off(struct octeon_device *oct)
266{
267 if ((oct->chip_id == OCTEON_CN66XX) ||
268 (oct->chip_id == OCTEON_CN68XX)) {
269 /* Reset the Enable bits for Input Queues. */
270 octeon_write_csr(oct, CN6XXX_SLI_PKT_INSTR_ENB, 0);
271
272 /* Reset the Enable bits for Output Queues. */
273 octeon_write_csr(oct, CN6XXX_SLI_PKT_OUT_ENB, 0);
274 }
275}
276
277/**
278 * \brief wait for all pending requests to complete
279 * @param oct Pointer to Octeon device
280 *
281 * Called during shutdown sequence
282 */
283static int wait_for_pending_requests(struct octeon_device *oct)
284{
285 int i, pcount = 0;
286
287 for (i = 0; i < 100; i++) {
288 pcount =
289 atomic_read(&oct->response_list
290 [OCTEON_ORDERED_SC_LIST].pending_req_count);
291 if (pcount)
292 schedule_timeout_uninterruptible(HZ / 10);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700293 else
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700294 break;
295 }
296
297 if (pcount)
298 return 1;
299
300 return 0;
301}
302
303/**
304 * \brief Cause device to go quiet so it can be safely removed/reset/etc
305 * @param oct Pointer to Octeon device
306 */
307static inline void pcierror_quiesce_device(struct octeon_device *oct)
308{
309 int i;
310
311 /* Disable the input and output queues now. No more packets will
312 * arrive from Octeon, but we should wait for all packet processing
313 * to finish.
314 */
315 force_io_queues_off(oct);
316
317 /* To allow for in-flight requests */
318 schedule_timeout_uninterruptible(100);
319
320 if (wait_for_pending_requests(oct))
321 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
322
323 /* Force all requests waiting to be fetched by OCTEON to complete. */
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700324 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700325 struct octeon_instr_queue *iq;
326
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800327 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700328 continue;
329 iq = oct->instr_queue[i];
330
331 if (atomic_read(&iq->instr_pending)) {
332 spin_lock_bh(&iq->lock);
333 iq->fill_cnt = 0;
334 iq->octeon_read_index = iq->host_write_index;
335 iq->stats.instr_processed +=
336 atomic_read(&iq->instr_pending);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700337 lio_process_iq_request_list(oct, iq, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700338 spin_unlock_bh(&iq->lock);
339 }
340 }
341
342 /* Force all pending ordered list requests to time out. */
343 lio_process_ordered_list(oct, 1);
344
345 /* We do not need to wait for output queue packets to be processed. */
346}
347
348/**
349 * \brief Cleanup PCI AER uncorrectable error status
350 * @param dev Pointer to PCI device
351 */
352static void cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
353{
354 int pos = 0x100;
355 u32 status, mask;
356
357 pr_info("%s :\n", __func__);
358
359 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
360 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
361 if (dev->error_state == pci_channel_io_normal)
362 status &= ~mask; /* Clear corresponding nonfatal bits */
363 else
364 status &= mask; /* Clear corresponding fatal bits */
365 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
366}
367
368/**
369 * \brief Stop all PCI IO to a given device
370 * @param dev Pointer to Octeon device
371 */
372static void stop_pci_io(struct octeon_device *oct)
373{
374 /* No more instructions will be forwarded. */
375 atomic_set(&oct->status, OCT_DEV_IN_RESET);
376
377 pci_disable_device(oct->pci_dev);
378
379 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700380 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700381
382 pcierror_quiesce_device(oct);
383
384 /* Release the interrupt line */
385 free_irq(oct->pci_dev->irq, oct);
386
387 if (oct->flags & LIO_FLAG_MSI_ENABLED)
388 pci_disable_msi(oct->pci_dev);
389
390 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
391 lio_get_state_string(&oct->status));
392
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700393 /* making it a common function for all OCTEON models */
394 cleanup_aer_uncorrect_error_status(oct->pci_dev);
395}
396
397/**
398 * \brief called when PCI error is detected
399 * @param pdev Pointer to PCI device
400 * @param state The current pci connection state
401 *
402 * This function is called after a PCI bus error affecting
403 * this device has been detected.
404 */
405static pci_ers_result_t liquidio_pcie_error_detected(struct pci_dev *pdev,
406 pci_channel_state_t state)
407{
408 struct octeon_device *oct = pci_get_drvdata(pdev);
409
410 /* Non-correctable Non-fatal errors */
411 if (state == pci_channel_io_normal) {
412 dev_err(&oct->pci_dev->dev, "Non-correctable non-fatal error reported:\n");
413 cleanup_aer_uncorrect_error_status(oct->pci_dev);
414 return PCI_ERS_RESULT_CAN_RECOVER;
415 }
416
417 /* Non-correctable Fatal errors */
418 dev_err(&oct->pci_dev->dev, "Non-correctable FATAL reported by PCI AER driver\n");
419 stop_pci_io(oct);
420
421 /* Always return a DISCONNECT. There is no support for recovery but only
422 * for a clean shutdown.
423 */
424 return PCI_ERS_RESULT_DISCONNECT;
425}
426
427/**
428 * \brief mmio handler
429 * @param pdev Pointer to PCI device
430 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700431static pci_ers_result_t liquidio_pcie_mmio_enabled(
432 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700433{
434 /* We should never hit this since we never ask for a reset for a Fatal
435 * Error. We always return DISCONNECT in io_error above.
436 * But play safe and return RECOVERED for now.
437 */
438 return PCI_ERS_RESULT_RECOVERED;
439}
440
441/**
442 * \brief called after the pci bus has been reset.
443 * @param pdev Pointer to PCI device
444 *
445 * Restart the card from scratch, as if from a cold-boot. Implementation
446 * resembles the first-half of the octeon_resume routine.
447 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700448static pci_ers_result_t liquidio_pcie_slot_reset(
449 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700450{
451 /* We should never hit this since we never ask for a reset for a Fatal
452 * Error. We always return DISCONNECT in io_error above.
453 * But play safe and return RECOVERED for now.
454 */
455 return PCI_ERS_RESULT_RECOVERED;
456}
457
458/**
459 * \brief called when traffic can start flowing again.
460 * @param pdev Pointer to PCI device
461 *
462 * This callback is called when the error recovery driver tells us that
463 * its OK to resume normal operation. Implementation resembles the
464 * second-half of the octeon_resume routine.
465 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700466static void liquidio_pcie_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700467{
468 /* Nothing to be done here. */
469}
470
471#ifdef CONFIG_PM
472/**
473 * \brief called when suspending
474 * @param pdev Pointer to PCI device
475 * @param state state to suspend to
476 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700477static int liquidio_suspend(struct pci_dev *pdev __attribute__((unused)),
478 pm_message_t state __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700479{
480 return 0;
481}
482
483/**
484 * \brief called when resuming
485 * @param pdev Pointer to PCI device
486 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700487static int liquidio_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700488{
489 return 0;
490}
491#endif
492
493/* For PCI-E Advanced Error Recovery (AER) Interface */
Julia Lawall166e2362015-11-14 11:06:53 +0100494static const struct pci_error_handlers liquidio_err_handler = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700495 .error_detected = liquidio_pcie_error_detected,
496 .mmio_enabled = liquidio_pcie_mmio_enabled,
497 .slot_reset = liquidio_pcie_slot_reset,
498 .resume = liquidio_pcie_resume,
499};
500
501static const struct pci_device_id liquidio_pci_tbl[] = {
502 { /* 68xx */
503 PCI_VENDOR_ID_CAVIUM, 0x91, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
504 },
505 { /* 66xx */
506 PCI_VENDOR_ID_CAVIUM, 0x92, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
507 },
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -0700508 { /* 23xx pf */
509 PCI_VENDOR_ID_CAVIUM, 0x9702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
510 },
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700511 {
512 0, 0, 0, 0, 0, 0, 0
513 }
514};
515MODULE_DEVICE_TABLE(pci, liquidio_pci_tbl);
516
517static struct pci_driver liquidio_pci_driver = {
518 .name = "LiquidIO",
519 .id_table = liquidio_pci_tbl,
520 .probe = liquidio_probe,
521 .remove = liquidio_remove,
522 .err_handler = &liquidio_err_handler, /* For AER */
523
524#ifdef CONFIG_PM
525 .suspend = liquidio_suspend,
526 .resume = liquidio_resume,
527#endif
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800528#ifdef CONFIG_PCI_IOV
529 .sriov_configure = liquidio_enable_sriov,
530#endif
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700531};
532
533/**
534 * \brief register PCI driver
535 */
536static int liquidio_init_pci(void)
537{
538 return pci_register_driver(&liquidio_pci_driver);
539}
540
541/**
542 * \brief unregister PCI driver
543 */
544static void liquidio_deinit_pci(void)
545{
546 pci_unregister_driver(&liquidio_pci_driver);
547}
548
549/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700550 * \brief Stop Tx queues
551 * @param netdev network device
552 */
553static inline void txqs_stop(struct net_device *netdev)
554{
555 if (netif_is_multiqueue(netdev)) {
556 int i;
557
558 for (i = 0; i < netdev->num_tx_queues; i++)
559 netif_stop_subqueue(netdev, i);
560 } else {
561 netif_stop_queue(netdev);
562 }
563}
564
565/**
566 * \brief Start Tx queues
567 * @param netdev network device
568 */
569static inline void txqs_start(struct net_device *netdev)
570{
571 if (netif_is_multiqueue(netdev)) {
572 int i;
573
574 for (i = 0; i < netdev->num_tx_queues; i++)
575 netif_start_subqueue(netdev, i);
576 } else {
577 netif_start_queue(netdev);
578 }
579}
580
581/**
582 * \brief Wake Tx queues
583 * @param netdev network device
584 */
585static inline void txqs_wake(struct net_device *netdev)
586{
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700587 struct lio *lio = GET_LIO(netdev);
588
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700589 if (netif_is_multiqueue(netdev)) {
590 int i;
591
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700592 for (i = 0; i < netdev->num_tx_queues; i++) {
593 int qno = lio->linfo.txpciq[i %
594 (lio->linfo.num_txpciq)].s.q_no;
595
596 if (__netif_subqueue_stopped(netdev, i)) {
597 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, qno,
598 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700599 netif_wake_subqueue(netdev, i);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700600 }
601 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700602 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700603 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
604 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700605 netif_wake_queue(netdev);
606 }
607}
608
609/**
610 * \brief Stop Tx queue
611 * @param netdev network device
612 */
613static void stop_txq(struct net_device *netdev)
614{
615 txqs_stop(netdev);
616}
617
618/**
619 * \brief Start Tx queue
620 * @param netdev network device
621 */
622static void start_txq(struct net_device *netdev)
623{
624 struct lio *lio = GET_LIO(netdev);
625
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700626 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700627 txqs_start(netdev);
628 return;
629 }
630}
631
632/**
633 * \brief Wake a queue
634 * @param netdev network device
635 * @param q which queue to wake
636 */
637static inline void wake_q(struct net_device *netdev, int q)
638{
639 if (netif_is_multiqueue(netdev))
640 netif_wake_subqueue(netdev, q);
641 else
642 netif_wake_queue(netdev);
643}
644
645/**
646 * \brief Stop a queue
647 * @param netdev network device
648 * @param q which queue to stop
649 */
650static inline void stop_q(struct net_device *netdev, int q)
651{
652 if (netif_is_multiqueue(netdev))
653 netif_stop_subqueue(netdev, q);
654 else
655 netif_stop_queue(netdev);
656}
657
658/**
659 * \brief Check Tx queue status, and take appropriate action
660 * @param lio per-network private data
661 * @returns 0 if full, number of queues woken up otherwise
662 */
663static inline int check_txq_status(struct lio *lio)
664{
665 int ret_val = 0;
666
667 if (netif_is_multiqueue(lio->netdev)) {
668 int numqs = lio->netdev->num_tx_queues;
669 int q, iq = 0;
670
671 /* check each sub-queue state */
672 for (q = 0; q < numqs; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700673 iq = lio->linfo.txpciq[q %
674 (lio->linfo.num_txpciq)].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700675 if (octnet_iq_is_full(lio->oct_dev, iq))
676 continue;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700677 if (__netif_subqueue_stopped(lio->netdev, q)) {
678 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700679 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq,
680 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700681 ret_val++;
682 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700683 }
684 } else {
685 if (octnet_iq_is_full(lio->oct_dev, lio->txq))
686 return 0;
687 wake_q(lio->netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700688 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
689 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700690 ret_val = 1;
691 }
692 return ret_val;
693}
694
695/**
696 * Remove the node at the head of the list. The list would be empty at
697 * the end of this call if there are no more nodes in the list.
698 */
699static inline struct list_head *list_delete_head(struct list_head *root)
700{
701 struct list_head *node;
702
703 if ((root->prev == root) && (root->next == root))
704 node = NULL;
705 else
706 node = root->next;
707
708 if (node)
709 list_del(node);
710
711 return node;
712}
713
714/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700715 * \brief Delete gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700716 * @param lio per-network private data
717 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700718static void delete_glists(struct lio *lio)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700719{
720 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700721 int i;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700722
VSR Burru67e303e2017-03-06 18:45:59 -0800723 kfree(lio->glist_lock);
724 lio->glist_lock = NULL;
725
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700726 if (!lio->glist)
727 return;
728
729 for (i = 0; i < lio->linfo.num_txpciq; i++) {
730 do {
731 g = (struct octnic_gather *)
732 list_delete_head(&lio->glist[i]);
VSR Burru67e303e2017-03-06 18:45:59 -0800733 if (g)
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700734 kfree(g);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700735 } while (g);
VSR Burru67e303e2017-03-06 18:45:59 -0800736
Felix Manlunas58ad3192017-03-20 19:04:48 -0700737 if (lio->glists_virt_base && lio->glists_virt_base[i] &&
738 lio->glists_dma_base && lio->glists_dma_base[i]) {
VSR Burru67e303e2017-03-06 18:45:59 -0800739 lio_dma_free(lio->oct_dev,
740 lio->glist_entry_size * lio->tx_qsize,
741 lio->glists_virt_base[i],
742 lio->glists_dma_base[i]);
743 }
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700744 }
745
VSR Burru67e303e2017-03-06 18:45:59 -0800746 kfree(lio->glists_virt_base);
747 lio->glists_virt_base = NULL;
748
749 kfree(lio->glists_dma_base);
750 lio->glists_dma_base = NULL;
751
752 kfree(lio->glist);
753 lio->glist = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700754}
755
756/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700757 * \brief Setup gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700758 * @param lio per-network private data
759 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700760static int setup_glists(struct octeon_device *oct, struct lio *lio, int num_iqs)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700761{
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700762 int i, j;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700763 struct octnic_gather *g;
764
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700765 lio->glist_lock = kcalloc(num_iqs, sizeof(*lio->glist_lock),
766 GFP_KERNEL);
767 if (!lio->glist_lock)
VSR Burru67e303e2017-03-06 18:45:59 -0800768 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700769
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700770 lio->glist = kcalloc(num_iqs, sizeof(*lio->glist),
771 GFP_KERNEL);
772 if (!lio->glist) {
VSR Burru67e303e2017-03-06 18:45:59 -0800773 kfree(lio->glist_lock);
774 lio->glist_lock = NULL;
775 return -ENOMEM;
776 }
777
778 lio->glist_entry_size =
779 ROUNDUP8((ROUNDUP4(OCTNIC_MAX_SG) >> 2) * OCT_SG_ENTRY_SIZE);
780
781 /* allocate memory to store virtual and dma base address of
782 * per glist consistent memory
783 */
784 lio->glists_virt_base = kcalloc(num_iqs, sizeof(*lio->glists_virt_base),
785 GFP_KERNEL);
786 lio->glists_dma_base = kcalloc(num_iqs, sizeof(*lio->glists_dma_base),
787 GFP_KERNEL);
788
789 if (!lio->glists_virt_base || !lio->glists_dma_base) {
790 delete_glists(lio);
791 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700792 }
793
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700794 for (i = 0; i < num_iqs; i++) {
VSR Burrub3ca9af2017-03-09 17:03:24 -0800795 int numa_node = dev_to_node(&oct->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700796
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700797 spin_lock_init(&lio->glist_lock[i]);
798
799 INIT_LIST_HEAD(&lio->glist[i]);
800
VSR Burru67e303e2017-03-06 18:45:59 -0800801 lio->glists_virt_base[i] =
802 lio_dma_alloc(oct,
803 lio->glist_entry_size * lio->tx_qsize,
804 &lio->glists_dma_base[i]);
805
806 if (!lio->glists_virt_base[i]) {
807 delete_glists(lio);
808 return -ENOMEM;
809 }
810
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700811 for (j = 0; j < lio->tx_qsize; j++) {
812 g = kzalloc_node(sizeof(*g), GFP_KERNEL,
813 numa_node);
814 if (!g)
815 g = kzalloc(sizeof(*g), GFP_KERNEL);
816 if (!g)
817 break;
818
VSR Burru67e303e2017-03-06 18:45:59 -0800819 g->sg = lio->glists_virt_base[i] +
820 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700821
VSR Burru67e303e2017-03-06 18:45:59 -0800822 g->sg_dma_ptr = lio->glists_dma_base[i] +
823 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700824
825 list_add_tail(&g->list, &lio->glist[i]);
826 }
827
828 if (j != lio->tx_qsize) {
829 delete_glists(lio);
VSR Burru67e303e2017-03-06 18:45:59 -0800830 return -ENOMEM;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700831 }
832 }
833
834 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700835}
836
837/**
838 * \brief Print link information
839 * @param netdev network device
840 */
841static void print_link_info(struct net_device *netdev)
842{
843 struct lio *lio = GET_LIO(netdev);
844
845 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED) {
846 struct oct_link_info *linfo = &lio->linfo;
847
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700848 if (linfo->link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700849 netif_info(lio, link, lio->netdev, "%d Mbps %s Duplex UP\n",
850 linfo->link.s.speed,
851 (linfo->link.s.duplex) ? "Full" : "Half");
852 } else {
853 netif_info(lio, link, lio->netdev, "Link Down\n");
854 }
855 }
856}
857
858/**
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -0700859 * \brief Routine to notify MTU change
860 * @param work work_struct data structure
861 */
862static void octnet_link_status_change(struct work_struct *work)
863{
864 struct cavium_wk *wk = (struct cavium_wk *)work;
865 struct lio *lio = (struct lio *)wk->ctxptr;
866
867 rtnl_lock();
868 call_netdevice_notifiers(NETDEV_CHANGEMTU, lio->netdev);
869 rtnl_unlock();
870}
871
872/**
873 * \brief Sets up the mtu status change work
874 * @param netdev network device
875 */
876static inline int setup_link_status_change_wq(struct net_device *netdev)
877{
878 struct lio *lio = GET_LIO(netdev);
879 struct octeon_device *oct = lio->oct_dev;
880
881 lio->link_status_wq.wq = alloc_workqueue("link-status",
882 WQ_MEM_RECLAIM, 0);
883 if (!lio->link_status_wq.wq) {
884 dev_err(&oct->pci_dev->dev, "unable to create cavium link status wq\n");
885 return -1;
886 }
887 INIT_DELAYED_WORK(&lio->link_status_wq.wk.work,
888 octnet_link_status_change);
889 lio->link_status_wq.wk.ctxptr = lio;
890
891 return 0;
892}
893
894static inline void cleanup_link_status_change_wq(struct net_device *netdev)
895{
896 struct lio *lio = GET_LIO(netdev);
897
898 if (lio->link_status_wq.wq) {
899 cancel_delayed_work_sync(&lio->link_status_wq.wk.work);
900 destroy_workqueue(lio->link_status_wq.wq);
901 }
902}
903
904/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700905 * \brief Update link status
906 * @param netdev network device
907 * @param ls link status structure
908 *
909 * Called on receipt of a link status response from the core application to
910 * update each interface's link status.
911 */
912static inline void update_link_status(struct net_device *netdev,
913 union oct_link_status *ls)
914{
915 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700916 int changed = (lio->linfo.link.u64 != ls->u64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700917
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700918 lio->linfo.link.u64 = ls->u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700919
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700920 if ((lio->intf_open) && (changed)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700921 print_link_info(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700922 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700923
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700924 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700925 netif_carrier_on(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700926 txqs_wake(netdev);
927 } else {
928 netif_carrier_off(netdev);
929 stop_txq(netdev);
930 }
931 }
932}
933
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700934/* Runs in interrupt context. */
935static void update_txq_status(struct octeon_device *oct, int iq_num)
936{
937 struct net_device *netdev;
938 struct lio *lio;
939 struct octeon_instr_queue *iq = oct->instr_queue[iq_num];
940
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700941 netdev = oct->props[iq->ifidx].netdev;
942
943 /* This is needed because the first IQ does not have
944 * a netdev associated with it.
945 */
946 if (!netdev)
947 return;
948
949 lio = GET_LIO(netdev);
950 if (netif_is_multiqueue(netdev)) {
951 if (__netif_subqueue_stopped(netdev, iq->q_index) &&
952 lio->linfo.link.s.link_up &&
953 (!octnet_iq_is_full(oct, iq_num))) {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700954 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq_num,
955 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700956 netif_wake_subqueue(netdev, iq->q_index);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700957 }
VSR Burru6069f3f2017-03-22 11:54:50 -0700958 } else if (netif_queue_stopped(netdev) &&
959 lio->linfo.link.s.link_up &&
960 (!octnet_iq_is_full(oct, lio->txq))) {
961 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev,
962 lio->txq, tx_restart, 1);
963 netif_wake_queue(netdev);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700964 }
965}
966
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700967static
968int liquidio_schedule_msix_droq_pkt_handler(struct octeon_droq *droq, u64 ret)
969{
970 struct octeon_device *oct = droq->oct_dev;
971 struct octeon_device_priv *oct_priv =
972 (struct octeon_device_priv *)oct->priv;
973
974 if (droq->ops.poll_mode) {
975 droq->ops.napi_fn(droq);
976 } else {
977 if (ret & MSIX_PO_INT) {
978 tasklet_schedule(&oct_priv->droq_tasklet);
979 return 1;
980 }
981 /* this will be flushed periodically by check iq db */
982 if (ret & MSIX_PI_INT)
983 return 0;
984 }
985 return 0;
986}
987
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700988/**
989 * \brief Droq packet processor sceduler
990 * @param oct octeon device
991 */
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -0700992static void liquidio_schedule_droq_pkt_handlers(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700993{
994 struct octeon_device_priv *oct_priv =
995 (struct octeon_device_priv *)oct->priv;
996 u64 oq_no;
997 struct octeon_droq *droq;
998
999 if (oct->int_status & OCT_DEV_INTR_PKT_DATA) {
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001000 for (oq_no = 0; oq_no < MAX_OCTEON_OUTPUT_QUEUES(oct);
1001 oq_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -08001002 if (!(oct->droq_intr & BIT_ULL(oq_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001003 continue;
1004
1005 droq = oct->droq[oq_no];
1006
1007 if (droq->ops.poll_mode) {
1008 droq->ops.napi_fn(droq);
1009 oct_priv->napi_mask |= (1 << oq_no);
1010 } else {
1011 tasklet_schedule(&oct_priv->droq_tasklet);
1012 }
1013 }
1014 }
1015}
1016
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001017static irqreturn_t
1018liquidio_msix_intr_handler(int irq __attribute__((unused)), void *dev)
1019{
1020 u64 ret;
1021 struct octeon_ioq_vector *ioq_vector = (struct octeon_ioq_vector *)dev;
1022 struct octeon_device *oct = ioq_vector->oct_dev;
1023 struct octeon_droq *droq = oct->droq[ioq_vector->droq_index];
1024
1025 ret = oct->fn_list.msix_interrupt_handler(ioq_vector);
1026
1027 if ((ret & MSIX_PO_INT) || (ret & MSIX_PI_INT))
1028 liquidio_schedule_msix_droq_pkt_handler(droq, ret);
1029
1030 return IRQ_HANDLED;
1031}
1032
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001033/**
1034 * \brief Interrupt handler for octeon
1035 * @param irq unused
1036 * @param dev octeon device
1037 */
1038static
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001039irqreturn_t liquidio_legacy_intr_handler(int irq __attribute__((unused)),
1040 void *dev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001041{
1042 struct octeon_device *oct = (struct octeon_device *)dev;
1043 irqreturn_t ret;
1044
1045 /* Disable our interrupts for the duration of ISR */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001046 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001047
1048 ret = oct->fn_list.process_interrupt_regs(oct);
1049
1050 if (ret == IRQ_HANDLED)
1051 liquidio_schedule_droq_pkt_handlers(oct);
1052
1053 /* Re-enable our interrupts */
1054 if (!(atomic_read(&oct->status) == OCT_DEV_IN_RESET))
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001055 oct->fn_list.enable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001056
1057 return ret;
1058}
1059
1060/**
1061 * \brief Setup interrupt for octeon device
1062 * @param oct octeon device
1063 *
1064 * Enable interrupt in Octeon device as given in the PCI interrupt mask.
1065 */
1066static int octeon_setup_interrupt(struct octeon_device *oct)
1067{
1068 int irqret, err;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001069 struct msix_entry *msix_entries;
1070 int i;
1071 int num_ioq_vectors;
1072 int num_alloc_ioq_vectors;
Rick Farrington0c88a762017-03-13 12:58:04 -07001073 char *queue_irq_names = NULL;
1074 char *aux_irq_name = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001075
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001076 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
1077 oct->num_msix_irqs = oct->sriov_info.num_pf_rings;
1078 /* one non ioq interrupt for handling sli_mac_pf_int_sum */
1079 oct->num_msix_irqs += 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001080
Rick Farrington0c88a762017-03-13 12:58:04 -07001081 /* allocate storage for the names assigned to each irq */
1082 oct->irq_name_storage =
1083 kcalloc((MAX_IOQ_INTERRUPTS_PER_PF + 1), INTRNAMSIZ,
1084 GFP_KERNEL);
1085 if (!oct->irq_name_storage) {
1086 dev_err(&oct->pci_dev->dev, "Irq name storage alloc failed...\n");
1087 return -ENOMEM;
1088 }
1089
1090 queue_irq_names = oct->irq_name_storage;
1091 aux_irq_name = &queue_irq_names
1092 [IRQ_NAME_OFF(MAX_IOQ_INTERRUPTS_PER_PF)];
1093
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001094 oct->msix_entries = kcalloc(
1095 oct->num_msix_irqs, sizeof(struct msix_entry), GFP_KERNEL);
Rick Farrington0c88a762017-03-13 12:58:04 -07001096 if (!oct->msix_entries) {
1097 dev_err(&oct->pci_dev->dev, "Memory Alloc failed...\n");
1098 kfree(oct->irq_name_storage);
1099 oct->irq_name_storage = NULL;
1100 return -ENOMEM;
1101 }
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001102
1103 msix_entries = (struct msix_entry *)oct->msix_entries;
1104 /*Assumption is that pf msix vectors start from pf srn to pf to
1105 * trs and not from 0. if not change this code
1106 */
1107 for (i = 0; i < oct->num_msix_irqs - 1; i++)
1108 msix_entries[i].entry = oct->sriov_info.pf_srn + i;
1109 msix_entries[oct->num_msix_irqs - 1].entry =
1110 oct->sriov_info.trs;
1111 num_alloc_ioq_vectors = pci_enable_msix_range(
1112 oct->pci_dev, msix_entries,
1113 oct->num_msix_irqs,
1114 oct->num_msix_irqs);
1115 if (num_alloc_ioq_vectors < 0) {
1116 dev_err(&oct->pci_dev->dev, "unable to Allocate MSI-X interrupts\n");
1117 kfree(oct->msix_entries);
1118 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001119 kfree(oct->irq_name_storage);
1120 oct->irq_name_storage = NULL;
1121 return num_alloc_ioq_vectors;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001122 }
1123 dev_dbg(&oct->pci_dev->dev, "OCTEON: Enough MSI-X interrupts are allocated...\n");
1124
1125 num_ioq_vectors = oct->num_msix_irqs;
1126
1127 /** For PF, there is one non-ioq interrupt handler */
1128 num_ioq_vectors -= 1;
Rick Farrington0c88a762017-03-13 12:58:04 -07001129
1130 snprintf(aux_irq_name, INTRNAMSIZ,
1131 "LiquidIO%u-pf%u-aux", oct->octeon_id, oct->pf_num);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001132 irqret = request_irq(msix_entries[num_ioq_vectors].vector,
Rick Farrington0c88a762017-03-13 12:58:04 -07001133 liquidio_legacy_intr_handler, 0,
1134 aux_irq_name, oct);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001135 if (irqret) {
1136 dev_err(&oct->pci_dev->dev,
1137 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1138 irqret);
1139 pci_disable_msix(oct->pci_dev);
1140 kfree(oct->msix_entries);
1141 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001142 kfree(oct->irq_name_storage);
1143 oct->irq_name_storage = NULL;
1144 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001145 }
1146
1147 for (i = 0; i < num_ioq_vectors; i++) {
Rick Farrington0c88a762017-03-13 12:58:04 -07001148 snprintf(&queue_irq_names[IRQ_NAME_OFF(i)], INTRNAMSIZ,
1149 "LiquidIO%u-pf%u-rxtx-%u",
1150 oct->octeon_id, oct->pf_num, i);
1151
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001152 irqret = request_irq(msix_entries[i].vector,
1153 liquidio_msix_intr_handler, 0,
Rick Farrington0c88a762017-03-13 12:58:04 -07001154 &queue_irq_names[IRQ_NAME_OFF(i)],
1155 &oct->ioq_vector[i]);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001156 if (irqret) {
1157 dev_err(&oct->pci_dev->dev,
1158 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1159 irqret);
1160 /** Freeing the non-ioq irq vector here . */
1161 free_irq(msix_entries[num_ioq_vectors].vector,
1162 oct);
1163
1164 while (i) {
1165 i--;
1166 /** clearing affinity mask. */
1167 irq_set_affinity_hint(
1168 msix_entries[i].vector, NULL);
1169 free_irq(msix_entries[i].vector,
1170 &oct->ioq_vector[i]);
1171 }
1172 pci_disable_msix(oct->pci_dev);
1173 kfree(oct->msix_entries);
1174 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001175 kfree(oct->irq_name_storage);
1176 oct->irq_name_storage = NULL;
1177 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001178 }
1179 oct->ioq_vector[i].vector = msix_entries[i].vector;
1180 /* assign the cpu mask for this msix interrupt vector */
1181 irq_set_affinity_hint(
1182 msix_entries[i].vector,
1183 (&oct->ioq_vector[i].affinity_mask));
1184 }
1185 dev_dbg(&oct->pci_dev->dev, "OCTEON[%d]: MSI-X enabled\n",
1186 oct->octeon_id);
1187 } else {
1188 err = pci_enable_msi(oct->pci_dev);
1189 if (err)
1190 dev_warn(&oct->pci_dev->dev, "Reverting to legacy interrupts. Error: %d\n",
1191 err);
1192 else
1193 oct->flags |= LIO_FLAG_MSI_ENABLED;
1194
Rick Farrington0c88a762017-03-13 12:58:04 -07001195 /* allocate storage for the names assigned to the irq */
1196 oct->irq_name_storage = kcalloc(1, INTRNAMSIZ, GFP_KERNEL);
1197 if (!oct->irq_name_storage)
1198 return -ENOMEM;
1199
1200 queue_irq_names = oct->irq_name_storage;
1201
1202 snprintf(&queue_irq_names[IRQ_NAME_OFF(0)], INTRNAMSIZ,
1203 "LiquidIO%u-pf%u-rxtx-%u",
1204 oct->octeon_id, oct->pf_num, 0);
1205
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001206 irqret = request_irq(oct->pci_dev->irq,
Rick Farrington0c88a762017-03-13 12:58:04 -07001207 liquidio_legacy_intr_handler,
1208 IRQF_SHARED,
1209 &queue_irq_names[IRQ_NAME_OFF(0)], oct);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001210 if (irqret) {
1211 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1212 pci_disable_msi(oct->pci_dev);
1213 dev_err(&oct->pci_dev->dev, "Request IRQ failed with code: %d\n",
1214 irqret);
Rick Farrington0c88a762017-03-13 12:58:04 -07001215 kfree(oct->irq_name_storage);
1216 oct->irq_name_storage = NULL;
1217 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001218 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001219 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001220 return 0;
1221}
1222
Felix Manlunasbb54be52017-04-04 19:26:57 -07001223static struct octeon_device *get_other_octeon_device(struct octeon_device *oct)
1224{
1225 struct octeon_device *other_oct;
1226
1227 other_oct = lio_get_device(oct->octeon_id + 1);
1228
1229 if (other_oct && other_oct->pci_dev) {
1230 int oct_busnum, other_oct_busnum;
1231
1232 oct_busnum = oct->pci_dev->bus->number;
1233 other_oct_busnum = other_oct->pci_dev->bus->number;
1234
1235 if (oct_busnum == other_oct_busnum) {
1236 int oct_slot, other_oct_slot;
1237
1238 oct_slot = PCI_SLOT(oct->pci_dev->devfn);
1239 other_oct_slot = PCI_SLOT(other_oct->pci_dev->devfn);
1240
1241 if (oct_slot == other_oct_slot)
1242 return other_oct;
1243 }
1244 }
1245
1246 return NULL;
1247}
1248
1249static void disable_all_vf_links(struct octeon_device *oct)
1250{
1251 struct net_device *netdev;
1252 int max_vfs, vf, i;
1253
1254 if (!oct)
1255 return;
1256
1257 max_vfs = oct->sriov_info.max_vfs;
1258
1259 for (i = 0; i < oct->ifcount; i++) {
1260 netdev = oct->props[i].netdev;
1261 if (!netdev)
1262 continue;
1263
1264 for (vf = 0; vf < max_vfs; vf++)
1265 liquidio_set_vf_link_state(netdev, vf,
1266 IFLA_VF_LINK_STATE_DISABLE);
1267 }
1268}
1269
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001270static int liquidio_watchdog(void *param)
1271{
Felix Manlunasbb54be52017-04-04 19:26:57 -07001272 bool err_msg_was_printed[LIO_MAX_CORES];
1273 u16 mask_of_crashed_or_stuck_cores = 0;
1274 bool all_vf_links_are_disabled = false;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001275 struct octeon_device *oct = param;
Felix Manlunasbb54be52017-04-04 19:26:57 -07001276 struct octeon_device *other_oct;
1277#ifdef CONFIG_MODULE_UNLOAD
1278 long refcount, vfs_referencing_pf;
1279 u64 vfs_mask1, vfs_mask2;
1280#endif
1281 int core;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001282
Felix Manlunasbb54be52017-04-04 19:26:57 -07001283 memset(err_msg_was_printed, 0, sizeof(err_msg_was_printed));
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001284
1285 while (!kthread_should_stop()) {
Felix Manlunasbb54be52017-04-04 19:26:57 -07001286 /* sleep for a couple of seconds so that we don't hog the CPU */
1287 set_current_state(TASK_INTERRUPTIBLE);
1288 schedule_timeout(msecs_to_jiffies(2000));
1289
1290 mask_of_crashed_or_stuck_cores =
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001291 (u16)octeon_read_csr64(oct, CN23XX_SLI_SCRATCH2);
1292
Felix Manlunasbb54be52017-04-04 19:26:57 -07001293 if (!mask_of_crashed_or_stuck_cores)
1294 continue;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001295
Felix Manlunasbb54be52017-04-04 19:26:57 -07001296 WRITE_ONCE(oct->cores_crashed, true);
1297 other_oct = get_other_octeon_device(oct);
1298 if (other_oct)
1299 WRITE_ONCE(other_oct->cores_crashed, true);
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001300
Felix Manlunasbb54be52017-04-04 19:26:57 -07001301 for (core = 0; core < LIO_MAX_CORES; core++) {
1302 bool core_crashed_or_got_stuck;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001303
Felix Manlunasbb54be52017-04-04 19:26:57 -07001304 core_crashed_or_got_stuck =
1305 (mask_of_crashed_or_stuck_cores
1306 >> core) & 1;
1307
1308 if (core_crashed_or_got_stuck &&
1309 !err_msg_was_printed[core]) {
1310 dev_err(&oct->pci_dev->dev,
1311 "ERROR: Octeon core %d crashed or got stuck! See oct-fwdump for details.\n",
1312 core);
1313 err_msg_was_printed[core] = true;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001314 }
1315 }
1316
Felix Manlunasbb54be52017-04-04 19:26:57 -07001317 if (all_vf_links_are_disabled)
1318 continue;
1319
1320 disable_all_vf_links(oct);
1321 disable_all_vf_links(other_oct);
1322 all_vf_links_are_disabled = true;
1323
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001324#ifdef CONFIG_MODULE_UNLOAD
Felix Manlunasbb54be52017-04-04 19:26:57 -07001325 vfs_mask1 = READ_ONCE(oct->sriov_info.vf_drv_loaded_mask);
1326 vfs_mask2 = READ_ONCE(other_oct->sriov_info.vf_drv_loaded_mask);
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001327
Felix Manlunasbb54be52017-04-04 19:26:57 -07001328 vfs_referencing_pf = hweight64(vfs_mask1);
1329 vfs_referencing_pf += hweight64(vfs_mask2);
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001330
Felix Manlunasbb54be52017-04-04 19:26:57 -07001331 refcount = module_refcount(THIS_MODULE);
1332 if (refcount >= vfs_referencing_pf) {
1333 while (vfs_referencing_pf) {
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001334 module_put(THIS_MODULE);
Felix Manlunasbb54be52017-04-04 19:26:57 -07001335 vfs_referencing_pf--;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001336 }
1337 }
1338#endif
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001339 }
1340
1341 return 0;
1342}
1343
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001344/**
1345 * \brief PCI probe handler
1346 * @param pdev PCI device structure
1347 * @param ent unused
1348 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001349static int
1350liquidio_probe(struct pci_dev *pdev,
1351 const struct pci_device_id *ent __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001352{
1353 struct octeon_device *oct_dev = NULL;
1354 struct handshake *hs;
1355
1356 oct_dev = octeon_allocate_device(pdev->device,
1357 sizeof(struct octeon_device_priv));
1358 if (!oct_dev) {
1359 dev_err(&pdev->dev, "Unable to allocate device\n");
1360 return -ENOMEM;
1361 }
1362
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001363 if (pdev->device == OCTEON_CN23XX_PF_VID)
1364 oct_dev->msix_on = LIO_FLAG_MSIX_ENABLED;
1365
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001366 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
1367 (u32)pdev->vendor, (u32)pdev->device);
1368
1369 /* Assign octeon_device for this device to the private data area. */
1370 pci_set_drvdata(pdev, oct_dev);
1371
1372 /* set linux specific device pointer */
1373 oct_dev->pci_dev = (void *)pdev;
1374
1375 hs = &handshake[oct_dev->octeon_id];
1376 init_completion(&hs->init);
1377 init_completion(&hs->started);
1378 hs->pci_dev = pdev;
1379
1380 if (oct_dev->octeon_id == 0)
1381 /* first LiquidIO NIC is detected */
1382 complete(&first_stage);
1383
1384 if (octeon_device_init(oct_dev)) {
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001385 complete(&hs->init);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001386 liquidio_remove(pdev);
1387 return -ENOMEM;
1388 }
1389
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001390 if (OCTEON_CN23XX_PF(oct_dev)) {
1391 u64 scratch1;
1392 u8 bus, device, function;
1393
1394 scratch1 = octeon_read_csr64(oct_dev, CN23XX_SLI_SCRATCH1);
1395 if (!(scratch1 & 4ULL)) {
1396 /* Bit 2 of SLI_SCRATCH_1 is a flag that indicates that
1397 * the lio watchdog kernel thread is running for this
1398 * NIC. Each NIC gets one watchdog kernel thread.
1399 */
1400 scratch1 |= 4ULL;
1401 octeon_write_csr64(oct_dev, CN23XX_SLI_SCRATCH1,
1402 scratch1);
1403
1404 bus = pdev->bus->number;
1405 device = PCI_SLOT(pdev->devfn);
1406 function = PCI_FUNC(pdev->devfn);
1407 oct_dev->watchdog_task = kthread_create(
1408 liquidio_watchdog, oct_dev,
1409 "liowd/%02hhx:%02hhx.%hhx", bus, device, function);
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001410 if (!IS_ERR(oct_dev->watchdog_task)) {
1411 wake_up_process(oct_dev->watchdog_task);
1412 } else {
1413 oct_dev->watchdog_task = NULL;
1414 dev_err(&oct_dev->pci_dev->dev,
1415 "failed to create kernel_thread\n");
1416 liquidio_remove(pdev);
1417 return -1;
1418 }
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001419 }
1420 }
1421
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001422 oct_dev->rx_pause = 1;
1423 oct_dev->tx_pause = 1;
1424
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001425 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
1426
1427 return 0;
1428}
1429
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001430static bool fw_type_is_none(void)
1431{
1432 return strncmp(fw_type, LIO_FW_NAME_TYPE_NONE,
1433 sizeof(LIO_FW_NAME_TYPE_NONE)) == 0;
1434}
1435
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001436/**
1437 *\brief Destroy resources associated with octeon device
1438 * @param pdev PCI device structure
1439 * @param ent unused
1440 */
1441static void octeon_destroy_resources(struct octeon_device *oct)
1442{
Rick Farringtone1e3ce62017-05-16 11:14:50 -07001443 int i, refcount;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001444 struct msix_entry *msix_entries;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001445 struct octeon_device_priv *oct_priv =
1446 (struct octeon_device_priv *)oct->priv;
1447
1448 struct handshake *hs;
1449
1450 switch (atomic_read(&oct->status)) {
1451 case OCT_DEV_RUNNING:
1452 case OCT_DEV_CORE_OK:
1453
1454 /* No more instructions will be forwarded. */
1455 atomic_set(&oct->status, OCT_DEV_IN_RESET);
1456
1457 oct->app_mode = CVM_DRV_INVALID_APP;
1458 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
1459 lio_get_state_string(&oct->status));
1460
1461 schedule_timeout_uninterruptible(HZ / 10);
1462
1463 /* fallthrough */
1464 case OCT_DEV_HOST_OK:
1465
1466 /* fallthrough */
1467 case OCT_DEV_CONSOLE_INIT_DONE:
1468 /* Remove any consoles */
1469 octeon_remove_consoles(oct);
1470
1471 /* fallthrough */
1472 case OCT_DEV_IO_QUEUES_DONE:
1473 if (wait_for_pending_requests(oct))
1474 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
1475
1476 if (lio_wait_for_instr_fetch(oct))
1477 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
1478
1479 /* Disable the input and output queues now. No more packets will
1480 * arrive from Octeon, but we should wait for all packet
1481 * processing to finish.
1482 */
1483 oct->fn_list.disable_io_queues(oct);
1484
1485 if (lio_wait_for_oq_pkts(oct))
1486 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1487
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001488 /* fallthrough */
1489 case OCT_DEV_INTR_SET_DONE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001490 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001491 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001492
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001493 if (oct->msix_on) {
1494 msix_entries = (struct msix_entry *)oct->msix_entries;
1495 for (i = 0; i < oct->num_msix_irqs - 1; i++) {
1496 /* clear the affinity_cpumask */
1497 irq_set_affinity_hint(msix_entries[i].vector,
1498 NULL);
1499 free_irq(msix_entries[i].vector,
1500 &oct->ioq_vector[i]);
1501 }
1502 /* non-iov vector's argument is oct struct */
1503 free_irq(msix_entries[i].vector, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001504
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001505 pci_disable_msix(oct->pci_dev);
1506 kfree(oct->msix_entries);
1507 oct->msix_entries = NULL;
1508 } else {
1509 /* Release the interrupt line */
1510 free_irq(oct->pci_dev->irq, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001511
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001512 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1513 pci_disable_msi(oct->pci_dev);
1514 }
1515
Rick Farrington0c88a762017-03-13 12:58:04 -07001516 kfree(oct->irq_name_storage);
1517 oct->irq_name_storage = NULL;
1518
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001519 /* fallthrough */
1520 case OCT_DEV_MSIX_ALLOC_VECTOR_DONE:
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001521 if (OCTEON_CN23XX_PF(oct))
1522 octeon_free_ioq_vector(oct);
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08001523
1524 /* fallthrough */
1525 case OCT_DEV_MBOX_SETUP_DONE:
1526 if (OCTEON_CN23XX_PF(oct))
1527 oct->fn_list.free_mbox(oct);
1528
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001529 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001530 case OCT_DEV_IN_RESET:
1531 case OCT_DEV_DROQ_INIT_DONE:
Raghu Vatsavayi763185a2016-11-14 15:54:45 -08001532 /* Wait for any pending operations */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001533 mdelay(100);
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001534 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001535 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001536 continue;
1537 octeon_delete_droq(oct, i);
1538 }
1539
1540 /* Force any pending handshakes to complete */
1541 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1542 hs = &handshake[i];
1543
1544 if (hs->pci_dev) {
1545 handshake[oct->octeon_id].init_ok = 0;
1546 complete(&handshake[oct->octeon_id].init);
1547 handshake[oct->octeon_id].started_ok = 0;
1548 complete(&handshake[oct->octeon_id].started);
1549 }
1550 }
1551
1552 /* fallthrough */
1553 case OCT_DEV_RESP_LIST_INIT_DONE:
1554 octeon_delete_response_list(oct);
1555
1556 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001557 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001558 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001559 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001560 continue;
1561 octeon_delete_instr_queue(oct, i);
1562 }
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08001563#ifdef CONFIG_PCI_IOV
1564 if (oct->sriov_info.sriov_enabled)
1565 pci_disable_sriov(oct->pci_dev);
1566#endif
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001567 /* fallthrough */
1568 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1569 octeon_free_sc_buffer_pool(oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001570
1571 /* fallthrough */
1572 case OCT_DEV_DISPATCH_INIT_DONE:
1573 octeon_delete_dispatch_list(oct);
1574 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1575
1576 /* fallthrough */
1577 case OCT_DEV_PCI_MAP_DONE:
Rick Farringtone1e3ce62017-05-16 11:14:50 -07001578 refcount = octeon_deregister_device(oct);
1579
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001580 if (!fw_type_is_none()) {
Rick Farringtone1e3ce62017-05-16 11:14:50 -07001581 /* Soft reset the octeon device before exiting.
1582 * Implementation note: here, we reset the device
1583 * if it is a CN6XXX OR the last CN23XX device.
1584 */
1585 if (OCTEON_CN6XXX(oct) || !refcount)
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001586 oct->fn_list.soft_reset(oct);
1587 }
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001588
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001589 octeon_unmap_pci_barx(oct, 0);
1590 octeon_unmap_pci_barx(oct, 1);
1591
1592 /* fallthrough */
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001593 case OCT_DEV_PCI_ENABLE_DONE:
1594 pci_clear_master(oct->pci_dev);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001595 /* Disable the device, releasing the PCI INT */
1596 pci_disable_device(oct->pci_dev);
1597
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001598 /* fallthrough */
1599 case OCT_DEV_BEGIN_STATE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001600 /* Nothing to be done here either */
1601 break;
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07001602 } /* end switch (oct->status) */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001603
1604 tasklet_kill(&oct_priv->droq_tasklet);
1605}
1606
1607/**
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001608 * \brief Callback for rx ctrl
1609 * @param status status of request
1610 * @param buf pointer to resp structure
1611 */
1612static void rx_ctl_callback(struct octeon_device *oct,
1613 u32 status,
1614 void *buf)
1615{
1616 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1617 struct liquidio_rx_ctl_context *ctx;
1618
1619 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1620
1621 oct = lio_get_device(ctx->octeon_id);
1622 if (status)
1623 dev_err(&oct->pci_dev->dev, "rx ctl instruction failed. Status: %llx\n",
1624 CVM_CAST64(status));
1625 WRITE_ONCE(ctx->cond, 1);
1626
1627 /* This barrier is required to be sure that the response has been
1628 * written fully before waking up the handler
1629 */
1630 wmb();
1631
1632 wake_up_interruptible(&ctx->wc);
1633}
1634
1635/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001636 * \brief Send Rx control command
1637 * @param lio per-network private data
1638 * @param start_stop whether to start or stop
1639 */
1640static void send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1641{
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001642 struct octeon_soft_command *sc;
1643 struct liquidio_rx_ctl_context *ctx;
1644 union octnet_cmd *ncmd;
1645 int ctx_size = sizeof(struct liquidio_rx_ctl_context);
1646 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1647 int retval;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001648
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001649 if (oct->props[lio->ifidx].rx_on == start_stop)
1650 return;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001651
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001652 sc = (struct octeon_soft_command *)
1653 octeon_alloc_soft_command(oct, OCTNET_CMD_SIZE,
1654 16, ctx_size);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001655
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001656 ncmd = (union octnet_cmd *)sc->virtdptr;
1657 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1658
1659 WRITE_ONCE(ctx->cond, 0);
1660 ctx->octeon_id = lio_get_device_id(oct);
1661 init_waitqueue_head(&ctx->wc);
1662
1663 ncmd->u64 = 0;
1664 ncmd->s.cmd = OCTNET_CMD_RX_CTL;
1665 ncmd->s.param1 = start_stop;
1666
1667 octeon_swap_8B_data((u64 *)ncmd, (OCTNET_CMD_SIZE >> 3));
1668
1669 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
1670
1671 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
1672 OPCODE_NIC_CMD, 0, 0, 0);
1673
1674 sc->callback = rx_ctl_callback;
1675 sc->callback_arg = sc;
1676 sc->wait_time = 5000;
1677
1678 retval = octeon_send_soft_command(oct, sc);
1679 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001680 netif_info(lio, rx_err, lio->netdev, "Failed to send RX Control message\n");
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001681 } else {
1682 /* Sleep on a wait queue till the cond flag indicates that the
1683 * response arrived or timed-out.
1684 */
1685 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR)
1686 return;
1687 oct->props[lio->ifidx].rx_on = start_stop;
1688 }
1689
1690 octeon_free_soft_command(oct, sc);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001691}
1692
1693/**
1694 * \brief Destroy NIC device interface
1695 * @param oct octeon device
1696 * @param ifidx which interface to destroy
1697 *
1698 * Cleanup associated with each interface for an Octeon device when NIC
1699 * module is being unloaded or if initialization fails during load.
1700 */
1701static void liquidio_destroy_nic_device(struct octeon_device *oct, int ifidx)
1702{
1703 struct net_device *netdev = oct->props[ifidx].netdev;
1704 struct lio *lio;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001705 struct napi_struct *napi, *n;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001706
1707 if (!netdev) {
1708 dev_err(&oct->pci_dev->dev, "%s No netdevice ptr for index %d\n",
1709 __func__, ifidx);
1710 return;
1711 }
1712
1713 lio = GET_LIO(netdev);
1714
1715 dev_dbg(&oct->pci_dev->dev, "NIC device cleanup\n");
1716
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001717 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING)
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001718 liquidio_stop(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001719
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001720 if (fw_type_is_none()) {
1721 struct octnic_ctrl_pkt nctrl;
1722
1723 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
1724 nctrl.ncmd.s.cmd = OCTNET_CMD_RESET_PF;
1725 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
1726 octnet_send_nic_ctrl_pkt(oct, &nctrl);
1727 }
1728
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001729 if (oct->props[lio->ifidx].napi_enabled == 1) {
1730 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1731 napi_disable(napi);
1732
1733 oct->props[lio->ifidx].napi_enabled = 0;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001734
1735 if (OCTEON_CN23XX_PF(oct))
1736 oct->droq[0]->ops.poll_mode = 0;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001737 }
1738
Intiyaz Basha42013e92017-08-08 19:34:28 -07001739 /* Delete NAPI */
1740 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1741 netif_napi_del(napi);
1742
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001743 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
1744 unregister_netdev(netdev);
1745
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001746 cleanup_link_status_change_wq(netdev);
1747
Satanand Burla031d4f12017-03-22 11:31:13 -07001748 cleanup_rx_oom_poll_fn(netdev);
1749
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001750 delete_glists(lio);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001751
1752 free_netdev(netdev);
1753
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07001754 oct->props[ifidx].gmxport = -1;
1755
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001756 oct->props[ifidx].netdev = NULL;
1757}
1758
1759/**
1760 * \brief Stop complete NIC functionality
1761 * @param oct octeon device
1762 */
1763static int liquidio_stop_nic_module(struct octeon_device *oct)
1764{
1765 int i, j;
1766 struct lio *lio;
1767
1768 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1769 if (!oct->ifcount) {
1770 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1771 return 1;
1772 }
1773
Raghu Vatsavayi60441882016-06-21 22:53:08 -07001774 spin_lock_bh(&oct->cmd_resp_wqlock);
1775 oct->cmd_resp_state = OCT_DRV_OFFLINE;
1776 spin_unlock_bh(&oct->cmd_resp_wqlock);
1777
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001778 for (i = 0; i < oct->ifcount; i++) {
1779 lio = GET_LIO(oct->props[i].netdev);
1780 for (j = 0; j < lio->linfo.num_rxpciq; j++)
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001781 octeon_unregister_droq_ops(oct,
1782 lio->linfo.rxpciq[j].s.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001783 }
1784
1785 for (i = 0; i < oct->ifcount; i++)
1786 liquidio_destroy_nic_device(oct, i);
1787
1788 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1789 return 0;
1790}
1791
1792/**
1793 * \brief Cleans up resources at unload time
1794 * @param pdev PCI device structure
1795 */
1796static void liquidio_remove(struct pci_dev *pdev)
1797{
1798 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1799
1800 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1801
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001802 if (oct_dev->watchdog_task)
1803 kthread_stop(oct_dev->watchdog_task);
1804
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001805 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1806 liquidio_stop_nic_module(oct_dev);
1807
1808 /* Reset the octeon device and cleanup all memory allocated for
1809 * the octeon device by driver.
1810 */
1811 octeon_destroy_resources(oct_dev);
1812
1813 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1814
1815 /* This octeon device has been removed. Update the global
1816 * data structure to reflect this. Free the device structure.
1817 */
1818 octeon_free_device_mem(oct_dev);
1819}
1820
1821/**
1822 * \brief Identify the Octeon device and to map the BAR address space
1823 * @param oct octeon device
1824 */
1825static int octeon_chip_specific_setup(struct octeon_device *oct)
1826{
1827 u32 dev_id, rev_id;
1828 int ret = 1;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001829 char *s;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001830
1831 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1832 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1833 oct->rev_id = rev_id & 0xff;
1834
1835 switch (dev_id) {
1836 case OCTEON_CN68XX_PCIID:
1837 oct->chip_id = OCTEON_CN68XX;
1838 ret = lio_setup_cn68xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001839 s = "CN68XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001840 break;
1841
1842 case OCTEON_CN66XX_PCIID:
1843 oct->chip_id = OCTEON_CN66XX;
1844 ret = lio_setup_cn66xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001845 s = "CN66XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001846 break;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001847
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001848 case OCTEON_CN23XX_PCIID_PF:
1849 oct->chip_id = OCTEON_CN23XX_PF_VID;
1850 ret = setup_cn23xx_octeon_pf_device(oct);
Derek Chicklescf19a8c2017-08-01 15:05:07 -07001851#ifdef CONFIG_PCI_IOV
1852 if (!ret)
1853 pci_sriov_set_totalvfs(oct->pci_dev,
1854 oct->sriov_info.max_vfs);
1855#endif
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001856 s = "CN23XX";
1857 break;
1858
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001859 default:
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001860 s = "?";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001861 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1862 dev_id);
1863 }
1864
1865 if (!ret)
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001866 dev_info(&oct->pci_dev->dev, "%s PASS%d.%d %s Version: %s\n", s,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001867 OCTEON_MAJOR_REV(oct),
1868 OCTEON_MINOR_REV(oct),
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001869 octeon_get_conf(oct)->card_name,
1870 LIQUIDIO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001871
1872 return ret;
1873}
1874
1875/**
1876 * \brief PCI initialization for each Octeon device.
1877 * @param oct octeon device
1878 */
1879static int octeon_pci_os_setup(struct octeon_device *oct)
1880{
1881 /* setup PCI stuff first */
1882 if (pci_enable_device(oct->pci_dev)) {
1883 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1884 return 1;
1885 }
1886
1887 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1888 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001889 pci_disable_device(oct->pci_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001890 return 1;
1891 }
1892
1893 /* Enable PCI DMA Master. */
1894 pci_set_master(oct->pci_dev);
1895
1896 return 0;
1897}
1898
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001899static inline int skb_iq(struct lio *lio, struct sk_buff *skb)
1900{
1901 int q = 0;
1902
1903 if (netif_is_multiqueue(lio->netdev))
1904 q = skb->queue_mapping % lio->linfo.num_txpciq;
1905
1906 return q;
1907}
1908
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001909/**
1910 * \brief Check Tx queue state for a given network buffer
1911 * @param lio per-network private data
1912 * @param skb network buffer
1913 */
1914static inline int check_txq_state(struct lio *lio, struct sk_buff *skb)
1915{
1916 int q = 0, iq = 0;
1917
1918 if (netif_is_multiqueue(lio->netdev)) {
1919 q = skb->queue_mapping;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001920 iq = lio->linfo.txpciq[(q % (lio->linfo.num_txpciq))].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001921 } else {
1922 iq = lio->txq;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001923 q = iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001924 }
1925
1926 if (octnet_iq_is_full(lio->oct_dev, iq))
1927 return 0;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001928
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001929 if (__netif_subqueue_stopped(lio->netdev, q)) {
1930 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq, tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001931 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001932 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001933 return 1;
1934}
1935
1936/**
1937 * \brief Unmap and free network buffer
1938 * @param buf buffer
1939 */
1940static void free_netbuf(void *buf)
1941{
1942 struct sk_buff *skb;
1943 struct octnet_buf_free_info *finfo;
1944 struct lio *lio;
1945
1946 finfo = (struct octnet_buf_free_info *)buf;
1947 skb = finfo->skb;
1948 lio = finfo->lio;
1949
1950 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1951 DMA_TO_DEVICE);
1952
1953 check_txq_state(lio, skb);
1954
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001955 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001956}
1957
1958/**
1959 * \brief Unmap and free gather buffer
1960 * @param buf buffer
1961 */
1962static void free_netsgbuf(void *buf)
1963{
1964 struct octnet_buf_free_info *finfo;
1965 struct sk_buff *skb;
1966 struct lio *lio;
1967 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001968 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001969
1970 finfo = (struct octnet_buf_free_info *)buf;
1971 skb = finfo->skb;
1972 lio = finfo->lio;
1973 g = finfo->g;
1974 frags = skb_shinfo(skb)->nr_frags;
1975
1976 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1977 g->sg[0].ptr[0], (skb->len - skb->data_len),
1978 DMA_TO_DEVICE);
1979
1980 i = 1;
1981 while (frags--) {
1982 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1983
1984 pci_unmap_page((lio->oct_dev)->pci_dev,
1985 g->sg[(i >> 2)].ptr[(i & 3)],
1986 frag->size, DMA_TO_DEVICE);
1987 i++;
1988 }
1989
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001990 iq = skb_iq(lio, skb);
1991 spin_lock(&lio->glist_lock[iq]);
1992 list_add_tail(&g->list, &lio->glist[iq]);
1993 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001994
1995 check_txq_state(lio, skb); /* mq support: sub-queue state check */
1996
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001997 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001998}
1999
2000/**
2001 * \brief Unmap and free gather buffer with response
2002 * @param buf buffer
2003 */
2004static void free_netsgbuf_with_resp(void *buf)
2005{
2006 struct octeon_soft_command *sc;
2007 struct octnet_buf_free_info *finfo;
2008 struct sk_buff *skb;
2009 struct lio *lio;
2010 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002011 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002012
2013 sc = (struct octeon_soft_command *)buf;
2014 skb = (struct sk_buff *)sc->callback_arg;
2015 finfo = (struct octnet_buf_free_info *)&skb->cb;
2016
2017 lio = finfo->lio;
2018 g = finfo->g;
2019 frags = skb_shinfo(skb)->nr_frags;
2020
2021 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
2022 g->sg[0].ptr[0], (skb->len - skb->data_len),
2023 DMA_TO_DEVICE);
2024
2025 i = 1;
2026 while (frags--) {
2027 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
2028
2029 pci_unmap_page((lio->oct_dev)->pci_dev,
2030 g->sg[(i >> 2)].ptr[(i & 3)],
2031 frag->size, DMA_TO_DEVICE);
2032 i++;
2033 }
2034
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002035 iq = skb_iq(lio, skb);
2036
2037 spin_lock(&lio->glist_lock[iq]);
2038 list_add_tail(&g->list, &lio->glist[iq]);
2039 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002040
2041 /* Don't free the skb yet */
2042
2043 check_txq_state(lio, skb);
2044}
2045
2046/**
2047 * \brief Adjust ptp frequency
2048 * @param ptp PTP clock info
2049 * @param ppb how much to adjust by, in parts-per-billion
2050 */
2051static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
2052{
2053 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2054 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2055 u64 comp, delta;
2056 unsigned long flags;
2057 bool neg_adj = false;
2058
2059 if (ppb < 0) {
2060 neg_adj = true;
2061 ppb = -ppb;
2062 }
2063
2064 /* The hardware adds the clock compensation value to the
2065 * PTP clock on every coprocessor clock cycle, so we
2066 * compute the delta in terms of coprocessor clocks.
2067 */
2068 delta = (u64)ppb << 32;
2069 do_div(delta, oct->coproc_clock_rate);
2070
2071 spin_lock_irqsave(&lio->ptp_lock, flags);
2072 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
2073 if (neg_adj)
2074 comp -= delta;
2075 else
2076 comp += delta;
2077 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
2078 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2079
2080 return 0;
2081}
2082
2083/**
2084 * \brief Adjust ptp time
2085 * @param ptp PTP clock info
2086 * @param delta how much to adjust by, in nanosecs
2087 */
2088static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
2089{
2090 unsigned long flags;
2091 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2092
2093 spin_lock_irqsave(&lio->ptp_lock, flags);
2094 lio->ptp_adjust += delta;
2095 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2096
2097 return 0;
2098}
2099
2100/**
2101 * \brief Get hardware clock time, including any adjustment
2102 * @param ptp PTP clock info
2103 * @param ts timespec
2104 */
2105static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
2106 struct timespec64 *ts)
2107{
2108 u64 ns;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002109 unsigned long flags;
2110 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2111 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2112
2113 spin_lock_irqsave(&lio->ptp_lock, flags);
2114 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
2115 ns += lio->ptp_adjust;
2116 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2117
Kefeng Wang286af312016-01-27 17:34:37 +08002118 *ts = ns_to_timespec64(ns);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002119
2120 return 0;
2121}
2122
2123/**
2124 * \brief Set hardware clock time. Reset adjustment
2125 * @param ptp PTP clock info
2126 * @param ts timespec
2127 */
2128static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
2129 const struct timespec64 *ts)
2130{
2131 u64 ns;
2132 unsigned long flags;
2133 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2134 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2135
2136 ns = timespec_to_ns(ts);
2137
2138 spin_lock_irqsave(&lio->ptp_lock, flags);
2139 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
2140 lio->ptp_adjust = 0;
2141 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2142
2143 return 0;
2144}
2145
2146/**
2147 * \brief Check if PTP is enabled
2148 * @param ptp PTP clock info
2149 * @param rq request
2150 * @param on is it on
2151 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002152static int
2153liquidio_ptp_enable(struct ptp_clock_info *ptp __attribute__((unused)),
2154 struct ptp_clock_request *rq __attribute__((unused)),
2155 int on __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002156{
2157 return -EOPNOTSUPP;
2158}
2159
2160/**
2161 * \brief Open PTP clock source
2162 * @param netdev network device
2163 */
2164static void oct_ptp_open(struct net_device *netdev)
2165{
2166 struct lio *lio = GET_LIO(netdev);
2167 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2168
2169 spin_lock_init(&lio->ptp_lock);
2170
2171 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
2172 lio->ptp_info.owner = THIS_MODULE;
2173 lio->ptp_info.max_adj = 250000000;
2174 lio->ptp_info.n_alarm = 0;
2175 lio->ptp_info.n_ext_ts = 0;
2176 lio->ptp_info.n_per_out = 0;
2177 lio->ptp_info.pps = 0;
2178 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
2179 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
2180 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
2181 lio->ptp_info.settime64 = liquidio_ptp_settime;
2182 lio->ptp_info.enable = liquidio_ptp_enable;
2183
2184 lio->ptp_adjust = 0;
2185
2186 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
2187 &oct->pci_dev->dev);
2188
2189 if (IS_ERR(lio->ptp_clock))
2190 lio->ptp_clock = NULL;
2191}
2192
2193/**
2194 * \brief Init PTP clock
2195 * @param oct octeon device
2196 */
2197static void liquidio_ptp_init(struct octeon_device *oct)
2198{
2199 u64 clock_comp, cfg;
2200
2201 clock_comp = (u64)NSEC_PER_SEC << 32;
2202 do_div(clock_comp, oct->coproc_clock_rate);
2203 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
2204
2205 /* Enable */
2206 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
2207 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
2208}
2209
2210/**
2211 * \brief Load firmware to device
2212 * @param oct octeon device
2213 *
2214 * Maps device to firmware filename, requests firmware, and downloads it
2215 */
2216static int load_firmware(struct octeon_device *oct)
2217{
2218 int ret = 0;
2219 const struct firmware *fw;
2220 char fw_name[LIO_MAX_FW_FILENAME_LEN];
2221 char *tmp_fw_type;
2222
Felix Manlunas7cc61db2017-03-23 13:26:28 -07002223 if (fw_type_is_none()) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002224 dev_info(&oct->pci_dev->dev, "Skipping firmware load\n");
2225 return ret;
2226 }
2227
2228 if (fw_type[0] == '\0')
2229 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
2230 else
2231 tmp_fw_type = fw_type;
2232
2233 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
2234 octeon_get_conf(oct)->card_name, tmp_fw_type,
2235 LIO_FW_NAME_SUFFIX);
2236
2237 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
2238 if (ret) {
2239 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n.",
2240 fw_name);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002241 release_firmware(fw);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002242 return ret;
2243 }
2244
2245 ret = octeon_download_firmware(oct, fw->data, fw->size);
2246
2247 release_firmware(fw);
2248
2249 return ret;
2250}
2251
2252/**
2253 * \brief Setup output queue
2254 * @param oct octeon device
2255 * @param q_no which queue
2256 * @param num_descs how many descriptors
2257 * @param desc_size size of each descriptor
2258 * @param app_ctx application context
2259 */
2260static int octeon_setup_droq(struct octeon_device *oct, int q_no, int num_descs,
2261 int desc_size, void *app_ctx)
2262{
2263 int ret_val = 0;
2264
2265 dev_dbg(&oct->pci_dev->dev, "Creating Droq: %d\n", q_no);
2266 /* droq creation and local register settings. */
2267 ret_val = octeon_create_droq(oct, q_no, num_descs, desc_size, app_ctx);
Amitoj Kaur Chawla08a965e2016-02-04 19:25:13 +05302268 if (ret_val < 0)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002269 return ret_val;
2270
2271 if (ret_val == 1) {
2272 dev_dbg(&oct->pci_dev->dev, "Using default droq %d\n", q_no);
2273 return 0;
2274 }
2275 /* tasklet creation for the droq */
2276
2277 /* Enable the droq queues */
2278 octeon_set_droq_pkt_op(oct, q_no, 1);
2279
2280 /* Send Credit for Octeon Output queues. Credits are always
2281 * sent after the output queue is enabled.
2282 */
2283 writel(oct->droq[q_no]->max_count,
2284 oct->droq[q_no]->pkts_credit_reg);
2285
2286 return ret_val;
2287}
2288
2289/**
2290 * \brief Callback for getting interface configuration
2291 * @param status status of request
2292 * @param buf pointer to resp structure
2293 */
2294static void if_cfg_callback(struct octeon_device *oct,
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002295 u32 status __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002296 void *buf)
2297{
2298 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
2299 struct liquidio_if_cfg_resp *resp;
2300 struct liquidio_if_cfg_context *ctx;
2301
2302 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07002303 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002304
2305 oct = lio_get_device(ctx->octeon_id);
2306 if (resp->status)
Rick Farringtonc5b71e62017-03-17 11:23:08 -07002307 dev_err(&oct->pci_dev->dev, "nic if cfg instruction failed. Status: 0x%llx (0x%08x)\n",
2308 CVM_CAST64(resp->status), status);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002309 WRITE_ONCE(ctx->cond, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002310
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002311 snprintf(oct->fw_info.liquidio_firmware_version, 32, "%s",
2312 resp->cfg_info.liquidio_firmware_version);
2313
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002314 /* This barrier is required to be sure that the response has been
2315 * written fully before waking up the handler
2316 */
2317 wmb();
2318
2319 wake_up_interruptible(&ctx->wc);
2320}
2321
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002322/** Routine to push packets arriving on Octeon interface upto network layer.
2323 * @param oct_id - octeon device id.
2324 * @param skbuff - skbuff struct to be passed to network layer.
2325 * @param len - size of total data received.
2326 * @param rh - Control header associated with the packet
2327 * @param param - additional control data with the packet
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002328 * @param arg - farg registered in droq_ops
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002329 */
2330static void
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002331liquidio_push_packet(u32 octeon_id __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002332 void *skbuff,
2333 u32 len,
2334 union octeon_rh *rh,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002335 void *param,
2336 void *arg)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002337{
2338 struct napi_struct *napi = param;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002339 struct sk_buff *skb = (struct sk_buff *)skbuff;
2340 struct skb_shared_hwtstamps *shhwtstamps;
2341 u64 ns;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002342 u16 vtag = 0;
Prasad Kannegantide28c992017-01-09 14:42:40 -08002343 u32 r_dh_off;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002344 struct net_device *netdev = (struct net_device *)arg;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002345 struct octeon_droq *droq = container_of(param, struct octeon_droq,
2346 napi);
2347 if (netdev) {
2348 int packet_was_received;
2349 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002350 struct octeon_device *oct = lio->oct_dev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002351
2352 /* Do not proceed if the interface is not in RUNNING state. */
2353 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING)) {
2354 recv_buffer_free(skb);
2355 droq->stats.rx_dropped++;
2356 return;
2357 }
2358
2359 skb->dev = netdev;
2360
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002361 skb_record_rx_queue(skb, droq->q_no);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07002362 if (likely(len > MIN_SKB_SIZE)) {
2363 struct octeon_skb_page_info *pg_info;
2364 unsigned char *va;
2365
2366 pg_info = ((struct octeon_skb_page_info *)(skb->cb));
2367 if (pg_info->page) {
2368 /* For Paged allocation use the frags */
2369 va = page_address(pg_info->page) +
2370 pg_info->page_offset;
2371 memcpy(skb->data, va, MIN_SKB_SIZE);
2372 skb_put(skb, MIN_SKB_SIZE);
2373 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
2374 pg_info->page,
2375 pg_info->page_offset +
2376 MIN_SKB_SIZE,
2377 len - MIN_SKB_SIZE,
2378 LIO_RXBUFFER_SZ);
2379 }
2380 } else {
2381 struct octeon_skb_page_info *pg_info =
2382 ((struct octeon_skb_page_info *)(skb->cb));
2383 skb_copy_to_linear_data(skb, page_address(pg_info->page)
2384 + pg_info->page_offset, len);
2385 skb_put(skb, len);
2386 put_page(pg_info->page);
2387 }
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002388
Prasad Kannegantide28c992017-01-09 14:42:40 -08002389 r_dh_off = (rh->r_dh.len - 1) * BYTES_PER_DHLEN_UNIT;
2390
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002391 if (((oct->chip_id == OCTEON_CN66XX) ||
2392 (oct->chip_id == OCTEON_CN68XX)) &&
2393 ptp_enable) {
2394 if (rh->r_dh.has_hwtstamp) {
2395 /* timestamp is included from the hardware at
2396 * the beginning of the packet.
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002397 */
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002398 if (ifstate_check
2399 (lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED)) {
2400 /* Nanoseconds are in the first 64-bits
2401 * of the packet.
2402 */
Prasad Kannegantide28c992017-01-09 14:42:40 -08002403 memcpy(&ns, (skb->data + r_dh_off),
2404 sizeof(ns));
2405 r_dh_off -= BYTES_PER_DHLEN_UNIT;
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002406 shhwtstamps = skb_hwtstamps(skb);
2407 shhwtstamps->hwtstamp =
2408 ns_to_ktime(ns +
2409 lio->ptp_adjust);
2410 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002411 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002412 }
2413
Prasad Kannegantide28c992017-01-09 14:42:40 -08002414 if (rh->r_dh.has_hash) {
2415 __be32 *hash_be = (__be32 *)(skb->data + r_dh_off);
2416 u32 hash = be32_to_cpu(*hash_be);
2417
2418 skb_set_hash(skb, hash, PKT_HASH_TYPE_L4);
2419 r_dh_off -= BYTES_PER_DHLEN_UNIT;
2420 }
2421
2422 skb_pull(skb, rh->r_dh.len * BYTES_PER_DHLEN_UNIT);
2423
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002424 skb->protocol = eth_type_trans(skb, skb->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002425 if ((netdev->features & NETIF_F_RXCSUM) &&
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002426 (((rh->r_dh.encap_on) &&
2427 (rh->r_dh.csum_verified & CNNIC_TUN_CSUM_VERIFIED)) ||
2428 (!(rh->r_dh.encap_on) &&
2429 (rh->r_dh.csum_verified & CNNIC_CSUM_VERIFIED))))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002430 /* checksum has already been verified */
2431 skb->ip_summed = CHECKSUM_UNNECESSARY;
2432 else
2433 skb->ip_summed = CHECKSUM_NONE;
2434
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002435 /* Setting Encapsulation field on basis of status received
2436 * from the firmware
2437 */
2438 if (rh->r_dh.encap_on) {
2439 skb->encapsulation = 1;
2440 skb->csum_level = 1;
2441 droq->stats.rx_vxlan++;
2442 }
2443
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002444 /* inbound VLAN tag */
2445 if ((netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
2446 (rh->r_dh.vlan != 0)) {
2447 u16 vid = rh->r_dh.vlan;
2448 u16 priority = rh->r_dh.priority;
2449
2450 vtag = priority << 13 | vid;
2451 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
2452 }
2453
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002454 packet_was_received = napi_gro_receive(napi, skb) != GRO_DROP;
2455
2456 if (packet_was_received) {
2457 droq->stats.rx_bytes_received += len;
2458 droq->stats.rx_pkts_received++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002459 } else {
2460 droq->stats.rx_dropped++;
2461 netif_info(lio, rx_err, lio->netdev,
2462 "droq:%d error rx_dropped:%llu\n",
2463 droq->q_no, droq->stats.rx_dropped);
2464 }
2465
2466 } else {
2467 recv_buffer_free(skb);
2468 }
2469}
2470
2471/**
2472 * \brief wrapper for calling napi_schedule
2473 * @param param parameters to pass to napi_schedule
2474 *
2475 * Used when scheduling on different CPUs
2476 */
2477static void napi_schedule_wrapper(void *param)
2478{
2479 struct napi_struct *napi = param;
2480
2481 napi_schedule(napi);
2482}
2483
2484/**
2485 * \brief callback when receive interrupt occurs and we are in NAPI mode
2486 * @param arg pointer to octeon output queue
2487 */
2488static void liquidio_napi_drv_callback(void *arg)
2489{
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002490 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002491 struct octeon_droq *droq = arg;
2492 int this_cpu = smp_processor_id();
2493
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002494 oct = droq->oct_dev;
2495
2496 if (OCTEON_CN23XX_PF(oct) || droq->cpu_id == this_cpu) {
2497 napi_schedule_irqoff(&droq->napi);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002498 } else {
2499 struct call_single_data *csd = &droq->csd;
2500
2501 csd->func = napi_schedule_wrapper;
2502 csd->info = &droq->napi;
2503 csd->flags = 0;
2504
2505 smp_call_function_single_async(droq->cpu_id, csd);
2506 }
2507}
2508
2509/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002510 * \brief Entry point for NAPI polling
2511 * @param napi NAPI structure
2512 * @param budget maximum number of items to process
2513 */
2514static int liquidio_napi_poll(struct napi_struct *napi, int budget)
2515{
2516 struct octeon_droq *droq;
2517 int work_done;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002518 int tx_done = 0, iq_no;
2519 struct octeon_instr_queue *iq;
2520 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002521
2522 droq = container_of(napi, struct octeon_droq, napi);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002523 oct = droq->oct_dev;
2524 iq_no = droq->q_no;
2525 /* Handle Droq descriptors */
2526 work_done = octeon_process_droq_poll_cmd(oct, droq->q_no,
2527 POLL_EVENT_PROCESS_PKTS,
2528 budget);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002529
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002530 /* Flush the instruction queue */
2531 iq = oct->instr_queue[iq_no];
2532 if (iq) {
VSR Burru6069f3f2017-03-22 11:54:50 -07002533 if (atomic_read(&iq->instr_pending))
2534 /* Process iq buffers with in the budget limits */
2535 tx_done = octeon_flush_iq(oct, iq, budget);
2536 else
2537 tx_done = 1;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002538 /* Update iq read-index rather than waiting for next interrupt.
2539 * Return back if tx_done is false.
2540 */
2541 update_txq_status(oct, iq_no);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002542 } else {
2543 dev_err(&oct->pci_dev->dev, "%s: iq (%d) num invalid\n",
2544 __func__, iq_no);
2545 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002546
Satanand Burlacdb478e2017-01-31 13:04:42 -08002547 /* force enable interrupt if reg cnts are high to avoid wraparound */
2548 if ((work_done < budget && tx_done) ||
Felix Manlunas76e0e702017-02-07 12:10:58 -08002549 (iq && iq->pkt_in_done >= MAX_REG_CNT) ||
Satanand Burlacdb478e2017-01-31 13:04:42 -08002550 (droq->pkt_count >= MAX_REG_CNT)) {
2551 tx_done = 1;
Eric Dumazet6ad20162017-01-30 08:22:01 -08002552 napi_complete_done(napi, work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002553 octeon_process_droq_poll_cmd(droq->oct_dev, droq->q_no,
2554 POLL_EVENT_ENABLE_INTR, 0);
2555 return 0;
2556 }
2557
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002558 return (!tx_done) ? (budget) : (work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002559}
2560
2561/**
2562 * \brief Setup input and output queues
2563 * @param octeon_dev octeon device
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07002564 * @param ifidx Interface Index
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002565 *
2566 * Note: Queues are with respect to the octeon device. Thus
2567 * an input queue is for egress packets, and output queues
2568 * are for ingress packets.
2569 */
2570static inline int setup_io_queues(struct octeon_device *octeon_dev,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002571 int ifidx)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002572{
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002573 struct octeon_droq_ops droq_ops;
2574 struct net_device *netdev;
Gustavo A. R. Silvaeb2b9872017-07-18 15:53:48 -05002575 int cpu_id;
2576 int cpu_id_modulus;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002577 struct octeon_droq *droq;
2578 struct napi_struct *napi;
2579 int q, q_no, retval = 0;
2580 struct lio *lio;
2581 int num_tx_descs;
2582
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002583 netdev = octeon_dev->props[ifidx].netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002584
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002585 lio = GET_LIO(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002586
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002587 memset(&droq_ops, 0, sizeof(struct octeon_droq_ops));
2588
2589 droq_ops.fptr = liquidio_push_packet;
2590 droq_ops.farg = (void *)netdev;
2591
2592 droq_ops.poll_mode = 1;
2593 droq_ops.napi_fn = liquidio_napi_drv_callback;
2594 cpu_id = 0;
2595 cpu_id_modulus = num_present_cpus();
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002596
2597 /* set up DROQs. */
2598 for (q = 0; q < lio->linfo.num_rxpciq; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002599 q_no = lio->linfo.rxpciq[q].s.q_no;
2600 dev_dbg(&octeon_dev->pci_dev->dev,
2601 "setup_io_queues index:%d linfo.rxpciq.s.q_no:%d\n",
2602 q, q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002603 retval = octeon_setup_droq(octeon_dev, q_no,
2604 CFG_GET_NUM_RX_DESCS_NIC_IF
2605 (octeon_get_conf(octeon_dev),
2606 lio->ifidx),
2607 CFG_GET_NUM_RX_BUF_SIZE_NIC_IF
2608 (octeon_get_conf(octeon_dev),
2609 lio->ifidx), NULL);
2610 if (retval) {
2611 dev_err(&octeon_dev->pci_dev->dev,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002612 "%s : Runtime DROQ(RxQ) creation failed.\n",
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002613 __func__);
2614 return 1;
2615 }
2616
2617 droq = octeon_dev->droq[q_no];
2618 napi = &droq->napi;
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07002619 dev_dbg(&octeon_dev->pci_dev->dev, "netif_napi_add netdev:%llx oct:%llx pf_num:%d\n",
2620 (u64)netdev, (u64)octeon_dev, octeon_dev->pf_num);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002621 netif_napi_add(netdev, napi, liquidio_napi_poll, 64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002622
2623 /* designate a CPU for this droq */
2624 droq->cpu_id = cpu_id;
2625 cpu_id++;
2626 if (cpu_id >= cpu_id_modulus)
2627 cpu_id = 0;
2628
2629 octeon_register_droq_ops(octeon_dev, q_no, &droq_ops);
2630 }
2631
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002632 if (OCTEON_CN23XX_PF(octeon_dev)) {
2633 /* 23XX PF can receive control messages (via the first PF-owned
2634 * droq) from the firmware even if the ethX interface is down,
2635 * so that's why poll_mode must be off for the first droq.
2636 */
2637 octeon_dev->droq[0]->ops.poll_mode = 0;
2638 }
2639
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002640 /* set up IQs. */
2641 for (q = 0; q < lio->linfo.num_txpciq; q++) {
2642 num_tx_descs = CFG_GET_NUM_TX_DESCS_NIC_IF(octeon_get_conf
2643 (octeon_dev),
2644 lio->ifidx);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002645 retval = octeon_setup_iq(octeon_dev, ifidx, q,
2646 lio->linfo.txpciq[q], num_tx_descs,
2647 netdev_get_tx_queue(netdev, q));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002648 if (retval) {
2649 dev_err(&octeon_dev->pci_dev->dev,
2650 " %s : Runtime IQ(TxQ) creation failed.\n",
2651 __func__);
2652 return 1;
2653 }
Rick Farrington35ae57e2017-03-07 11:40:41 -08002654
2655 if (octeon_dev->ioq_vector) {
2656 struct octeon_ioq_vector *ioq_vector;
2657
2658 ioq_vector = &octeon_dev->ioq_vector[q];
2659 netif_set_xps_queue(netdev,
2660 &ioq_vector->affinity_mask,
2661 ioq_vector->iq_index);
2662 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002663 }
2664
2665 return 0;
2666}
2667
2668/**
2669 * \brief Poll routine for checking transmit queue status
2670 * @param work work_struct data structure
2671 */
2672static void octnet_poll_check_txq_status(struct work_struct *work)
2673{
2674 struct cavium_wk *wk = (struct cavium_wk *)work;
2675 struct lio *lio = (struct lio *)wk->ctxptr;
2676
2677 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
2678 return;
2679
2680 check_txq_status(lio);
2681 queue_delayed_work(lio->txq_status_wq.wq,
2682 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2683}
2684
2685/**
2686 * \brief Sets up the txq poll check
2687 * @param netdev network device
2688 */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002689static inline int setup_tx_poll_fn(struct net_device *netdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002690{
2691 struct lio *lio = GET_LIO(netdev);
2692 struct octeon_device *oct = lio->oct_dev;
2693
Bhaktipriya Shridhar292b9da2016-06-08 01:47:59 +05302694 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
2695 WQ_MEM_RECLAIM, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002696 if (!lio->txq_status_wq.wq) {
2697 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002698 return -1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002699 }
2700 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
2701 octnet_poll_check_txq_status);
2702 lio->txq_status_wq.wk.ctxptr = lio;
2703 queue_delayed_work(lio->txq_status_wq.wq,
2704 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002705 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002706}
2707
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002708static inline void cleanup_tx_poll_fn(struct net_device *netdev)
2709{
2710 struct lio *lio = GET_LIO(netdev);
2711
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002712 if (lio->txq_status_wq.wq) {
2713 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
2714 destroy_workqueue(lio->txq_status_wq.wq);
2715 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002716}
2717
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002718/**
2719 * \brief Net device open for LiquidIO
2720 * @param netdev network device
2721 */
2722static int liquidio_open(struct net_device *netdev)
2723{
2724 struct lio *lio = GET_LIO(netdev);
2725 struct octeon_device *oct = lio->oct_dev;
2726 struct napi_struct *napi, *n;
2727
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002728 if (oct->props[lio->ifidx].napi_enabled == 0) {
2729 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2730 napi_enable(napi);
2731
2732 oct->props[lio->ifidx].napi_enabled = 1;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002733
2734 if (OCTEON_CN23XX_PF(oct))
2735 oct->droq[0]->ops.poll_mode = 1;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002736 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002737
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002738 if ((oct->chip_id == OCTEON_CN66XX || oct->chip_id == OCTEON_CN68XX) &&
2739 ptp_enable)
2740 oct_ptp_open(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002741
2742 ifstate_set(lio, LIO_IFSTATE_RUNNING);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002743
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002744 /* Ready for link status updates */
2745 lio->intf_open = 1;
2746
2747 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
2748
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002749 if (OCTEON_CN23XX_PF(oct)) {
2750 if (!oct->msix_on)
2751 if (setup_tx_poll_fn(netdev))
2752 return -1;
2753 } else {
2754 if (setup_tx_poll_fn(netdev))
2755 return -1;
2756 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002757
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002758 start_txq(netdev);
2759
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002760 /* tell Octeon to start forwarding packets to host */
2761 send_rx_ctrl_cmd(lio, 1);
2762
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002763 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
2764 netdev->name);
2765
2766 return 0;
2767}
2768
2769/**
2770 * \brief Net device stop for LiquidIO
2771 * @param netdev network device
2772 */
2773static int liquidio_stop(struct net_device *netdev)
2774{
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002775 struct lio *lio = GET_LIO(netdev);
2776 struct octeon_device *oct = lio->oct_dev;
Intiyaz Basha42013e92017-08-08 19:34:28 -07002777 struct napi_struct *napi, *n;
2778
2779 if (oct->props[lio->ifidx].napi_enabled) {
2780 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2781 napi_disable(napi);
2782
2783 oct->props[lio->ifidx].napi_enabled = 0;
2784
2785 if (OCTEON_CN23XX_PF(oct))
2786 oct->droq[0]->ops.poll_mode = 0;
2787 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002788
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002789 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
2790
2791 netif_tx_disable(netdev);
2792
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002793 /* Inform that netif carrier is down */
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002794 netif_carrier_off(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002795 lio->intf_open = 0;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002796 lio->linfo.link.s.link_up = 0;
2797 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002798
Felix Manlunascb2336b2017-01-11 17:09:02 -08002799 /* Tell Octeon that nic interface is down. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002800 send_rx_ctrl_cmd(lio, 0);
2801
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002802 if (OCTEON_CN23XX_PF(oct)) {
2803 if (!oct->msix_on)
2804 cleanup_tx_poll_fn(netdev);
2805 } else {
2806 cleanup_tx_poll_fn(netdev);
2807 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002808
2809 if (lio->ptp_clock) {
2810 ptp_clock_unregister(lio->ptp_clock);
2811 lio->ptp_clock = NULL;
2812 }
2813
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002814 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002815
2816 return 0;
2817}
2818
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002819/**
2820 * \brief Converts a mask based on net device flags
2821 * @param netdev network device
2822 *
2823 * This routine generates a octnet_ifflags mask from the net device flags
2824 * received from the OS.
2825 */
2826static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
2827{
2828 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
2829
2830 if (netdev->flags & IFF_PROMISC)
2831 f |= OCTNET_IFFLAG_PROMISC;
2832
2833 if (netdev->flags & IFF_ALLMULTI)
2834 f |= OCTNET_IFFLAG_ALLMULTI;
2835
2836 if (netdev->flags & IFF_MULTICAST) {
2837 f |= OCTNET_IFFLAG_MULTICAST;
2838
2839 /* Accept all multicast addresses if there are more than we
2840 * can handle
2841 */
2842 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
2843 f |= OCTNET_IFFLAG_ALLMULTI;
2844 }
2845
2846 if (netdev->flags & IFF_BROADCAST)
2847 f |= OCTNET_IFFLAG_BROADCAST;
2848
2849 return f;
2850}
2851
2852/**
2853 * \brief Net device set_multicast_list
2854 * @param netdev network device
2855 */
2856static void liquidio_set_mcast_list(struct net_device *netdev)
2857{
2858 struct lio *lio = GET_LIO(netdev);
2859 struct octeon_device *oct = lio->oct_dev;
2860 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002861 struct netdev_hw_addr *ha;
2862 u64 *mc;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002863 int ret;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002864 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
2865
2866 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2867
2868 /* Create a ctrl pkt command to be sent to core app. */
2869 nctrl.ncmd.u64 = 0;
2870 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002871 nctrl.ncmd.s.param1 = get_new_flags(netdev);
2872 nctrl.ncmd.s.param2 = mc_count;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002873 nctrl.ncmd.s.more = mc_count;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002874 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002875 nctrl.netpndev = (u64)netdev;
2876 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2877
2878 /* copy all the addresses into the udd */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002879 mc = &nctrl.udd[0];
2880 netdev_for_each_mc_addr(ha, netdev) {
2881 *mc = 0;
2882 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
2883 /* no need to swap bytes */
2884
2885 if (++mc > &nctrl.udd[mc_count])
2886 break;
2887 }
2888
2889 /* Apparently, any activity in this call from the kernel has to
2890 * be atomic. So we won't wait for response.
2891 */
2892 nctrl.wait_time = 0;
2893
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002894 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002895 if (ret < 0) {
2896 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
2897 ret);
2898 }
2899}
2900
2901/**
2902 * \brief Net device set_mac_address
2903 * @param netdev network device
2904 */
2905static int liquidio_set_mac(struct net_device *netdev, void *p)
2906{
2907 int ret = 0;
2908 struct lio *lio = GET_LIO(netdev);
2909 struct octeon_device *oct = lio->oct_dev;
2910 struct sockaddr *addr = (struct sockaddr *)p;
2911 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002912
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002913 if (!is_valid_ether_addr(addr->sa_data))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002914 return -EADDRNOTAVAIL;
2915
2916 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2917
2918 nctrl.ncmd.u64 = 0;
2919 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002920 nctrl.ncmd.s.param1 = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002921 nctrl.ncmd.s.more = 1;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002922 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002923 nctrl.netpndev = (u64)netdev;
2924 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2925 nctrl.wait_time = 100;
2926
2927 nctrl.udd[0] = 0;
2928 /* The MAC Address is presented in network byte order. */
2929 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2930
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002931 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002932 if (ret < 0) {
2933 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2934 return -ENOMEM;
2935 }
2936 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2937 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2938
2939 return 0;
2940}
2941
2942/**
2943 * \brief Net device get_stats
2944 * @param netdev network device
2945 */
2946static struct net_device_stats *liquidio_get_stats(struct net_device *netdev)
2947{
2948 struct lio *lio = GET_LIO(netdev);
2949 struct net_device_stats *stats = &netdev->stats;
2950 struct octeon_device *oct;
2951 u64 pkts = 0, drop = 0, bytes = 0;
2952 struct oct_droq_stats *oq_stats;
2953 struct oct_iq_stats *iq_stats;
2954 int i, iq_no, oq_no;
2955
2956 oct = lio->oct_dev;
2957
2958 for (i = 0; i < lio->linfo.num_txpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002959 iq_no = lio->linfo.txpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002960 iq_stats = &oct->instr_queue[iq_no]->stats;
2961 pkts += iq_stats->tx_done;
2962 drop += iq_stats->tx_dropped;
2963 bytes += iq_stats->tx_tot_bytes;
2964 }
2965
2966 stats->tx_packets = pkts;
2967 stats->tx_bytes = bytes;
2968 stats->tx_dropped = drop;
2969
2970 pkts = 0;
2971 drop = 0;
2972 bytes = 0;
2973
2974 for (i = 0; i < lio->linfo.num_rxpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002975 oq_no = lio->linfo.rxpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002976 oq_stats = &oct->droq[oq_no]->stats;
2977 pkts += oq_stats->rx_pkts_received;
2978 drop += (oq_stats->rx_dropped +
2979 oq_stats->dropped_nodispatch +
2980 oq_stats->dropped_toomany +
2981 oq_stats->dropped_nomem);
2982 bytes += oq_stats->rx_bytes_received;
2983 }
2984
2985 stats->rx_bytes = bytes;
2986 stats->rx_packets = pkts;
2987 stats->rx_dropped = drop;
2988
2989 return stats;
2990}
2991
2992/**
2993 * \brief Net device change_mtu
2994 * @param netdev network device
2995 */
2996static int liquidio_change_mtu(struct net_device *netdev, int new_mtu)
2997{
2998 struct lio *lio = GET_LIO(netdev);
2999 struct octeon_device *oct = lio->oct_dev;
3000 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003001 int ret = 0;
3002
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003003 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3004
3005 nctrl.ncmd.u64 = 0;
3006 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MTU;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003007 nctrl.ncmd.s.param1 = new_mtu;
3008 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003009 nctrl.wait_time = 100;
3010 nctrl.netpndev = (u64)netdev;
3011 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3012
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003013 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003014 if (ret < 0) {
3015 dev_err(&oct->pci_dev->dev, "Failed to set MTU\n");
3016 return -1;
3017 }
3018
3019 lio->mtu = new_mtu;
3020
3021 return 0;
3022}
3023
3024/**
3025 * \brief Handler for SIOCSHWTSTAMP ioctl
3026 * @param netdev network device
3027 * @param ifr interface request
3028 * @param cmd command
3029 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07003030static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003031{
3032 struct hwtstamp_config conf;
3033 struct lio *lio = GET_LIO(netdev);
3034
3035 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
3036 return -EFAULT;
3037
3038 if (conf.flags)
3039 return -EINVAL;
3040
3041 switch (conf.tx_type) {
3042 case HWTSTAMP_TX_ON:
3043 case HWTSTAMP_TX_OFF:
3044 break;
3045 default:
3046 return -ERANGE;
3047 }
3048
3049 switch (conf.rx_filter) {
3050 case HWTSTAMP_FILTER_NONE:
3051 break;
3052 case HWTSTAMP_FILTER_ALL:
3053 case HWTSTAMP_FILTER_SOME:
3054 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
3055 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
3056 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
3057 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
3058 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
3059 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
3060 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
3061 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
3062 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
3063 case HWTSTAMP_FILTER_PTP_V2_EVENT:
3064 case HWTSTAMP_FILTER_PTP_V2_SYNC:
3065 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
Miroslav Lichvare3412572017-05-19 17:52:36 +02003066 case HWTSTAMP_FILTER_NTP_ALL:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003067 conf.rx_filter = HWTSTAMP_FILTER_ALL;
3068 break;
3069 default:
3070 return -ERANGE;
3071 }
3072
3073 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
3074 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
3075
3076 else
3077 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
3078
3079 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
3080}
3081
3082/**
3083 * \brief ioctl handler
3084 * @param netdev network device
3085 * @param ifr interface request
3086 * @param cmd command
3087 */
3088static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
3089{
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08003090 struct lio *lio = GET_LIO(netdev);
3091
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003092 switch (cmd) {
3093 case SIOCSHWTSTAMP:
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08003094 if ((lio->oct_dev->chip_id == OCTEON_CN66XX ||
3095 lio->oct_dev->chip_id == OCTEON_CN68XX) && ptp_enable)
3096 return hwtstamp_ioctl(netdev, ifr);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003097 default:
3098 return -EOPNOTSUPP;
3099 }
3100}
3101
3102/**
3103 * \brief handle a Tx timestamp response
3104 * @param status response status
3105 * @param buf pointer to skb
3106 */
3107static void handle_timestamp(struct octeon_device *oct,
3108 u32 status,
3109 void *buf)
3110{
3111 struct octnet_buf_free_info *finfo;
3112 struct octeon_soft_command *sc;
3113 struct oct_timestamp_resp *resp;
3114 struct lio *lio;
3115 struct sk_buff *skb = (struct sk_buff *)buf;
3116
3117 finfo = (struct octnet_buf_free_info *)skb->cb;
3118 lio = finfo->lio;
3119 sc = finfo->sc;
3120 oct = lio->oct_dev;
3121 resp = (struct oct_timestamp_resp *)sc->virtrptr;
3122
3123 if (status != OCTEON_REQUEST_DONE) {
3124 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
3125 CVM_CAST64(status));
3126 resp->timestamp = 0;
3127 }
3128
3129 octeon_swap_8B_data(&resp->timestamp, 1);
3130
Colin Ian King19a6d152016-02-05 16:30:39 +00003131 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003132 struct skb_shared_hwtstamps ts;
3133 u64 ns = resp->timestamp;
3134
3135 netif_info(lio, tx_done, lio->netdev,
3136 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
3137 skb, (unsigned long long)ns);
3138 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
3139 skb_tstamp_tx(skb, &ts);
3140 }
3141
3142 octeon_free_soft_command(oct, sc);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003143 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003144}
3145
3146/* \brief Send a data packet that will be timestamped
3147 * @param oct octeon device
3148 * @param ndata pointer to network data
3149 * @param finfo pointer to private network data
3150 */
3151static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
3152 struct octnic_data_pkt *ndata,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003153 struct octnet_buf_free_info *finfo)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003154{
3155 int retval;
3156 struct octeon_soft_command *sc;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003157 struct lio *lio;
3158 int ring_doorbell;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003159 u32 len;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003160
3161 lio = finfo->lio;
3162
3163 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
3164 sizeof(struct oct_timestamp_resp));
3165 finfo->sc = sc;
3166
3167 if (!sc) {
3168 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
3169 return IQ_SEND_FAILED;
3170 }
3171
3172 if (ndata->reqtype == REQTYPE_NORESP_NET)
3173 ndata->reqtype = REQTYPE_RESP_NET;
3174 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
3175 ndata->reqtype = REQTYPE_RESP_NET_SG;
3176
3177 sc->callback = handle_timestamp;
3178 sc->callback_arg = finfo->skb;
3179 sc->iq_no = ndata->q_no;
3180
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003181 if (OCTEON_CN23XX_PF(oct))
3182 len = (u32)((struct octeon_instr_ih3 *)
3183 (&sc->cmd.cmd3.ih3))->dlengsz;
3184 else
3185 len = (u32)((struct octeon_instr_ih2 *)
3186 (&sc->cmd.cmd2.ih2))->dlengsz;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003187
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003188 ring_doorbell = 1;
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003189
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003190 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003191 sc, len, ndata->reqtype);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003192
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003193 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003194 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
3195 retval);
3196 octeon_free_soft_command(oct, sc);
3197 } else {
3198 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
3199 }
3200
3201 return retval;
3202}
3203
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003204/** \brief Transmit networks packets to the Octeon interface
3205 * @param skbuff skbuff struct to be passed to network layer.
3206 * @param netdev pointer to network device
3207 * @returns whether the packet was transmitted to the device okay or not
3208 * (NETDEV_TX_OK or NETDEV_TX_BUSY)
3209 */
3210static int liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
3211{
3212 struct lio *lio;
3213 struct octnet_buf_free_info *finfo;
3214 union octnic_cmd_setup cmdsetup;
3215 struct octnic_data_pkt ndata;
3216 struct octeon_device *oct;
3217 struct oct_iq_stats *stats;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003218 struct octeon_instr_irh *irh;
3219 union tx_info *tx_info;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003220 int status = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003221 int q_idx = 0, iq_no = 0;
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003222 int j;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003223 u64 dptr = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003224 u32 tag = 0;
3225
3226 lio = GET_LIO(netdev);
3227 oct = lio->oct_dev;
3228
3229 if (netif_is_multiqueue(netdev)) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003230 q_idx = skb->queue_mapping;
3231 q_idx = (q_idx % (lio->linfo.num_txpciq));
3232 tag = q_idx;
3233 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003234 } else {
3235 iq_no = lio->txq;
3236 }
3237
3238 stats = &oct->instr_queue[iq_no]->stats;
3239
3240 /* Check for all conditions in which the current packet cannot be
3241 * transmitted.
3242 */
3243 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003244 (!lio->linfo.link.s.link_up) ||
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003245 (skb->len <= 0)) {
3246 netif_info(lio, tx_err, lio->netdev,
3247 "Transmit failed link_status : %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003248 lio->linfo.link.s.link_up);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003249 goto lio_xmit_failed;
3250 }
3251
3252 /* Use space in skb->cb to store info used to unmap and
3253 * free the buffers.
3254 */
3255 finfo = (struct octnet_buf_free_info *)skb->cb;
3256 finfo->lio = lio;
3257 finfo->skb = skb;
3258 finfo->sc = NULL;
3259
3260 /* Prepare the attributes for the data to be passed to OSI. */
3261 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
3262
3263 ndata.buf = (void *)finfo;
3264
3265 ndata.q_no = iq_no;
3266
3267 if (netif_is_multiqueue(netdev)) {
3268 if (octnet_iq_is_full(oct, ndata.q_no)) {
3269 /* defer sending if queue is full */
3270 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
3271 ndata.q_no);
3272 stats->tx_iq_busy++;
3273 return NETDEV_TX_BUSY;
3274 }
3275 } else {
3276 if (octnet_iq_is_full(oct, lio->txq)) {
3277 /* defer sending if queue is full */
3278 stats->tx_iq_busy++;
3279 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003280 lio->txq);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003281 return NETDEV_TX_BUSY;
3282 }
3283 }
3284 /* pr_info(" XMIT - valid Qs: %d, 1st Q no: %d, cpu: %d, q_no:%d\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003285 * lio->linfo.num_txpciq, lio->txq, cpu, ndata.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003286 */
3287
3288 ndata.datasize = skb->len;
3289
3290 cmdsetup.u64 = 0;
Raghu Vatsavayi7275ebf2016-06-14 16:54:49 -07003291 cmdsetup.s.iq_no = iq_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003292
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003293 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3294 if (skb->encapsulation) {
3295 cmdsetup.s.tnl_csum = 1;
3296 stats->tx_vxlan++;
3297 } else {
3298 cmdsetup.s.transport_csum = 1;
3299 }
3300 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003301 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
3302 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
3303 cmdsetup.s.timestamp = 1;
3304 }
3305
3306 if (skb_shinfo(skb)->nr_frags == 0) {
3307 cmdsetup.s.u.datasize = skb->len;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003308 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003309
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003310 /* Offload checksum calculation for TCP/UDP packets */
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003311 dptr = dma_map_single(&oct->pci_dev->dev,
3312 skb->data,
3313 skb->len,
3314 DMA_TO_DEVICE);
3315 if (dma_mapping_error(&oct->pci_dev->dev, dptr)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003316 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
3317 __func__);
3318 return NETDEV_TX_BUSY;
3319 }
3320
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003321 if (OCTEON_CN23XX_PF(oct))
3322 ndata.cmd.cmd3.dptr = dptr;
3323 else
3324 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003325 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003326 ndata.reqtype = REQTYPE_NORESP_NET;
3327
3328 } else {
3329 int i, frags;
3330 struct skb_frag_struct *frag;
3331 struct octnic_gather *g;
3332
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003333 spin_lock(&lio->glist_lock[q_idx]);
3334 g = (struct octnic_gather *)
3335 list_delete_head(&lio->glist[q_idx]);
3336 spin_unlock(&lio->glist_lock[q_idx]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003337
3338 if (!g) {
3339 netif_info(lio, tx_err, lio->netdev,
3340 "Transmit scatter gather: glist null!\n");
3341 goto lio_xmit_failed;
3342 }
3343
3344 cmdsetup.s.gather = 1;
3345 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003346 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003347
3348 memset(g->sg, 0, g->sg_size);
3349
3350 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
3351 skb->data,
3352 (skb->len - skb->data_len),
3353 DMA_TO_DEVICE);
3354 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
3355 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
3356 __func__);
3357 return NETDEV_TX_BUSY;
3358 }
3359 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
3360
3361 frags = skb_shinfo(skb)->nr_frags;
3362 i = 1;
3363 while (frags--) {
3364 frag = &skb_shinfo(skb)->frags[i - 1];
3365
3366 g->sg[(i >> 2)].ptr[(i & 3)] =
3367 dma_map_page(&oct->pci_dev->dev,
3368 frag->page.p,
3369 frag->page_offset,
3370 frag->size,
3371 DMA_TO_DEVICE);
3372
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003373 if (dma_mapping_error(&oct->pci_dev->dev,
3374 g->sg[i >> 2].ptr[i & 3])) {
3375 dma_unmap_single(&oct->pci_dev->dev,
3376 g->sg[0].ptr[0],
3377 skb->len - skb->data_len,
3378 DMA_TO_DEVICE);
3379 for (j = 1; j < i; j++) {
3380 frag = &skb_shinfo(skb)->frags[j - 1];
3381 dma_unmap_page(&oct->pci_dev->dev,
3382 g->sg[j >> 2].ptr[j & 3],
3383 frag->size,
3384 DMA_TO_DEVICE);
3385 }
3386 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
3387 __func__);
3388 return NETDEV_TX_BUSY;
3389 }
3390
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003391 add_sg_size(&g->sg[(i >> 2)], frag->size, (i & 3));
3392 i++;
3393 }
3394
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003395 dptr = g->sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003396
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003397 if (OCTEON_CN23XX_PF(oct))
3398 ndata.cmd.cmd3.dptr = dptr;
3399 else
3400 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003401 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003402 finfo->g = g;
3403
3404 ndata.reqtype = REQTYPE_NORESP_NET_SG;
3405 }
3406
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003407 if (OCTEON_CN23XX_PF(oct)) {
3408 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd3.irh;
3409 tx_info = (union tx_info *)&ndata.cmd.cmd3.ossp[0];
3410 } else {
3411 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd2.irh;
3412 tx_info = (union tx_info *)&ndata.cmd.cmd2.ossp[0];
3413 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003414
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003415 if (skb_shinfo(skb)->gso_size) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003416 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
3417 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003418 stats->tx_gso++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003419 }
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003420
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07003421 /* HW insert VLAN tag */
3422 if (skb_vlan_tag_present(skb)) {
3423 irh->priority = skb_vlan_tag_get(skb) >> 13;
3424 irh->vlan = skb_vlan_tag_get(skb) & 0xfff;
3425 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003426
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003427 if (unlikely(cmdsetup.s.timestamp))
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003428 status = send_nic_timestamp_pkt(oct, &ndata, finfo);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003429 else
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003430 status = octnet_send_nic_data_pkt(oct, &ndata);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003431 if (status == IQ_SEND_FAILED)
3432 goto lio_xmit_failed;
3433
3434 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
3435
3436 if (status == IQ_SEND_STOP)
3437 stop_q(lio->netdev, q_idx);
3438
Florian Westphal860e9532016-05-03 16:33:13 +02003439 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003440
Satanand Burla80c8eae2017-01-26 11:52:35 -08003441 if (tx_info->s.gso_segs)
3442 stats->tx_done += tx_info->s.gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003443 else
3444 stats->tx_done++;
Satanand Burla80c8eae2017-01-26 11:52:35 -08003445 stats->tx_tot_bytes += ndata.datasize;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003446
3447 return NETDEV_TX_OK;
3448
3449lio_xmit_failed:
3450 stats->tx_dropped++;
3451 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
3452 iq_no, stats->tx_dropped);
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003453 if (dptr)
3454 dma_unmap_single(&oct->pci_dev->dev, dptr,
3455 ndata.datasize, DMA_TO_DEVICE);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003456 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003457 return NETDEV_TX_OK;
3458}
3459
3460/** \brief Network device Tx timeout
3461 * @param netdev pointer to network device
3462 */
3463static void liquidio_tx_timeout(struct net_device *netdev)
3464{
3465 struct lio *lio;
3466
3467 lio = GET_LIO(netdev);
3468
3469 netif_info(lio, tx_err, lio->netdev,
3470 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
3471 netdev->stats.tx_dropped);
Florian Westphal860e9532016-05-03 16:33:13 +02003472 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003473 txqs_wake(netdev);
3474}
3475
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003476static int liquidio_vlan_rx_add_vid(struct net_device *netdev,
3477 __be16 proto __attribute__((unused)),
3478 u16 vid)
3479{
3480 struct lio *lio = GET_LIO(netdev);
3481 struct octeon_device *oct = lio->oct_dev;
3482 struct octnic_ctrl_pkt nctrl;
3483 int ret = 0;
3484
3485 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3486
3487 nctrl.ncmd.u64 = 0;
3488 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3489 nctrl.ncmd.s.param1 = vid;
3490 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3491 nctrl.wait_time = 100;
3492 nctrl.netpndev = (u64)netdev;
3493 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3494
3495 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3496 if (ret < 0) {
3497 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3498 ret);
3499 }
3500
3501 return ret;
3502}
3503
3504static int liquidio_vlan_rx_kill_vid(struct net_device *netdev,
3505 __be16 proto __attribute__((unused)),
3506 u16 vid)
3507{
3508 struct lio *lio = GET_LIO(netdev);
3509 struct octeon_device *oct = lio->oct_dev;
3510 struct octnic_ctrl_pkt nctrl;
3511 int ret = 0;
3512
3513 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3514
3515 nctrl.ncmd.u64 = 0;
3516 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3517 nctrl.ncmd.s.param1 = vid;
3518 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3519 nctrl.wait_time = 100;
3520 nctrl.netpndev = (u64)netdev;
3521 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3522
3523 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3524 if (ret < 0) {
3525 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3526 ret);
3527 }
3528 return ret;
3529}
3530
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003531/** Sending command to enable/disable RX checksum offload
3532 * @param netdev pointer to network device
3533 * @param command OCTNET_CMD_TNL_RX_CSUM_CTL
3534 * @param rx_cmd_bit OCTNET_CMD_RXCSUM_ENABLE/
3535 * OCTNET_CMD_RXCSUM_DISABLE
3536 * @returns SUCCESS or FAILURE
3537 */
Nicholas Mc Guirec41419b2016-08-22 17:52:00 +02003538static int liquidio_set_rxcsum_command(struct net_device *netdev, int command,
3539 u8 rx_cmd)
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003540{
3541 struct lio *lio = GET_LIO(netdev);
3542 struct octeon_device *oct = lio->oct_dev;
3543 struct octnic_ctrl_pkt nctrl;
3544 int ret = 0;
3545
Felix Manlunas0c264582017-04-06 19:22:22 -07003546 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3547
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003548 nctrl.ncmd.u64 = 0;
3549 nctrl.ncmd.s.cmd = command;
3550 nctrl.ncmd.s.param1 = rx_cmd;
3551 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3552 nctrl.wait_time = 100;
3553 nctrl.netpndev = (u64)netdev;
3554 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3555
3556 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3557 if (ret < 0) {
3558 dev_err(&oct->pci_dev->dev,
3559 "DEVFLAGS RXCSUM change failed in core(ret:0x%x)\n",
3560 ret);
3561 }
3562 return ret;
3563}
3564
3565/** Sending command to add/delete VxLAN UDP port to firmware
3566 * @param netdev pointer to network device
3567 * @param command OCTNET_CMD_VXLAN_PORT_CONFIG
3568 * @param vxlan_port VxLAN port to be added or deleted
3569 * @param vxlan_cmd_bit OCTNET_CMD_VXLAN_PORT_ADD,
3570 * OCTNET_CMD_VXLAN_PORT_DEL
3571 * @returns SUCCESS or FAILURE
3572 */
3573static int liquidio_vxlan_port_command(struct net_device *netdev, int command,
3574 u16 vxlan_port, u8 vxlan_cmd_bit)
3575{
3576 struct lio *lio = GET_LIO(netdev);
3577 struct octeon_device *oct = lio->oct_dev;
3578 struct octnic_ctrl_pkt nctrl;
3579 int ret = 0;
3580
Felix Manlunas0c264582017-04-06 19:22:22 -07003581 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3582
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003583 nctrl.ncmd.u64 = 0;
3584 nctrl.ncmd.s.cmd = command;
3585 nctrl.ncmd.s.more = vxlan_cmd_bit;
3586 nctrl.ncmd.s.param1 = vxlan_port;
3587 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3588 nctrl.wait_time = 100;
3589 nctrl.netpndev = (u64)netdev;
3590 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3591
3592 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3593 if (ret < 0) {
3594 dev_err(&oct->pci_dev->dev,
3595 "VxLAN port add/delete failed in core (ret:0x%x)\n",
3596 ret);
3597 }
3598 return ret;
3599}
3600
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003601/** \brief Net device fix features
3602 * @param netdev pointer to network device
3603 * @param request features requested
3604 * @returns updated features list
3605 */
3606static netdev_features_t liquidio_fix_features(struct net_device *netdev,
3607 netdev_features_t request)
3608{
3609 struct lio *lio = netdev_priv(netdev);
3610
3611 if ((request & NETIF_F_RXCSUM) &&
3612 !(lio->dev_capability & NETIF_F_RXCSUM))
3613 request &= ~NETIF_F_RXCSUM;
3614
3615 if ((request & NETIF_F_HW_CSUM) &&
3616 !(lio->dev_capability & NETIF_F_HW_CSUM))
3617 request &= ~NETIF_F_HW_CSUM;
3618
3619 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
3620 request &= ~NETIF_F_TSO;
3621
3622 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
3623 request &= ~NETIF_F_TSO6;
3624
3625 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
3626 request &= ~NETIF_F_LRO;
3627
3628 /*Disable LRO if RXCSUM is off */
3629 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
3630 (lio->dev_capability & NETIF_F_LRO))
3631 request &= ~NETIF_F_LRO;
3632
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07003633 if ((request & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3634 !(lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER))
3635 request &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
3636
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003637 return request;
3638}
3639
3640/** \brief Net device set features
3641 * @param netdev pointer to network device
3642 * @param features features to enable/disable
3643 */
3644static int liquidio_set_features(struct net_device *netdev,
3645 netdev_features_t features)
3646{
3647 struct lio *lio = netdev_priv(netdev);
3648
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07003649 if ((features & NETIF_F_LRO) &&
3650 (lio->dev_capability & NETIF_F_LRO) &&
3651 !(netdev->features & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003652 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3653 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003654 else if (!(features & NETIF_F_LRO) &&
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07003655 (lio->dev_capability & NETIF_F_LRO) &&
3656 (netdev->features & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003657 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE,
3658 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003659
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003660 /* Sending command to firmware to enable/disable RX checksum
3661 * offload settings using ethtool
3662 */
3663 if (!(netdev->features & NETIF_F_RXCSUM) &&
3664 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3665 (features & NETIF_F_RXCSUM))
3666 liquidio_set_rxcsum_command(netdev,
3667 OCTNET_CMD_TNL_RX_CSUM_CTL,
3668 OCTNET_CMD_RXCSUM_ENABLE);
3669 else if ((netdev->features & NETIF_F_RXCSUM) &&
3670 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3671 !(features & NETIF_F_RXCSUM))
3672 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
3673 OCTNET_CMD_RXCSUM_DISABLE);
3674
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07003675 if ((features & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3676 (lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3677 !(netdev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
3678 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
3679 OCTNET_CMD_VLAN_FILTER_ENABLE);
3680 else if (!(features & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3681 (lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3682 (netdev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
3683 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
3684 OCTNET_CMD_VLAN_FILTER_DISABLE);
3685
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003686 return 0;
3687}
3688
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003689static void liquidio_add_vxlan_port(struct net_device *netdev,
3690 struct udp_tunnel_info *ti)
3691{
3692 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3693 return;
3694
3695 liquidio_vxlan_port_command(netdev,
3696 OCTNET_CMD_VXLAN_PORT_CONFIG,
3697 htons(ti->port),
3698 OCTNET_CMD_VXLAN_PORT_ADD);
3699}
3700
3701static void liquidio_del_vxlan_port(struct net_device *netdev,
3702 struct udp_tunnel_info *ti)
3703{
3704 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3705 return;
3706
3707 liquidio_vxlan_port_command(netdev,
3708 OCTNET_CMD_VXLAN_PORT_CONFIG,
3709 htons(ti->port),
3710 OCTNET_CMD_VXLAN_PORT_DEL);
3711}
3712
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003713static int __liquidio_set_vf_mac(struct net_device *netdev, int vfidx,
3714 u8 *mac, bool is_admin_assigned)
3715{
3716 struct lio *lio = GET_LIO(netdev);
3717 struct octeon_device *oct = lio->oct_dev;
3718 struct octnic_ctrl_pkt nctrl;
3719
3720 if (!is_valid_ether_addr(mac))
3721 return -EINVAL;
3722
3723 if (vfidx < 0 || vfidx >= oct->sriov_info.max_vfs)
3724 return -EINVAL;
3725
3726 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3727
3728 nctrl.ncmd.u64 = 0;
3729 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
3730 /* vfidx is 0 based, but vf_num (param1) is 1 based */
3731 nctrl.ncmd.s.param1 = vfidx + 1;
3732 nctrl.ncmd.s.param2 = (is_admin_assigned ? 1 : 0);
3733 nctrl.ncmd.s.more = 1;
3734 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Rick Farrington9549c6c2017-03-17 15:43:26 -07003735 nctrl.netpndev = (u64)netdev;
3736 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003737 nctrl.wait_time = LIO_CMD_WAIT_TM;
3738
3739 nctrl.udd[0] = 0;
3740 /* The MAC Address is presented in network byte order. */
3741 ether_addr_copy((u8 *)&nctrl.udd[0] + 2, mac);
3742
3743 oct->sriov_info.vf_macaddr[vfidx] = nctrl.udd[0];
3744
3745 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3746
3747 return 0;
3748}
3749
3750static int liquidio_set_vf_mac(struct net_device *netdev, int vfidx, u8 *mac)
3751{
3752 struct lio *lio = GET_LIO(netdev);
3753 struct octeon_device *oct = lio->oct_dev;
3754 int retval;
3755
Felix Manlunas0d9a5992017-05-16 11:28:00 -07003756 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3757 return -EINVAL;
3758
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003759 retval = __liquidio_set_vf_mac(netdev, vfidx, mac, true);
3760 if (!retval)
3761 cn23xx_tell_vf_its_macaddr_changed(oct, vfidx, mac);
3762
3763 return retval;
3764}
3765
3766static int liquidio_set_vf_vlan(struct net_device *netdev, int vfidx,
3767 u16 vlan, u8 qos, __be16 vlan_proto)
3768{
3769 struct lio *lio = GET_LIO(netdev);
3770 struct octeon_device *oct = lio->oct_dev;
3771 struct octnic_ctrl_pkt nctrl;
3772 u16 vlantci;
3773
3774 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3775 return -EINVAL;
3776
3777 if (vlan_proto != htons(ETH_P_8021Q))
3778 return -EPROTONOSUPPORT;
3779
3780 if (vlan >= VLAN_N_VID || qos > 7)
3781 return -EINVAL;
3782
3783 if (vlan)
3784 vlantci = vlan | (u16)qos << VLAN_PRIO_SHIFT;
3785 else
3786 vlantci = 0;
3787
3788 if (oct->sriov_info.vf_vlantci[vfidx] == vlantci)
3789 return 0;
3790
3791 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3792
3793 if (vlan)
3794 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3795 else
3796 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3797
3798 nctrl.ncmd.s.param1 = vlantci;
3799 nctrl.ncmd.s.param2 =
3800 vfidx + 1; /* vfidx is 0 based, but vf_num (param2) is 1 based */
3801 nctrl.ncmd.s.more = 0;
3802 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3803 nctrl.cb_fn = 0;
3804 nctrl.wait_time = LIO_CMD_WAIT_TM;
3805
3806 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3807
3808 oct->sriov_info.vf_vlantci[vfidx] = vlantci;
3809
3810 return 0;
3811}
3812
3813static int liquidio_get_vf_config(struct net_device *netdev, int vfidx,
3814 struct ifla_vf_info *ivi)
3815{
3816 struct lio *lio = GET_LIO(netdev);
3817 struct octeon_device *oct = lio->oct_dev;
3818 u8 *macaddr;
3819
3820 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3821 return -EINVAL;
3822
3823 ivi->vf = vfidx;
3824 macaddr = 2 + (u8 *)&oct->sriov_info.vf_macaddr[vfidx];
3825 ether_addr_copy(&ivi->mac[0], macaddr);
3826 ivi->vlan = oct->sriov_info.vf_vlantci[vfidx] & VLAN_VID_MASK;
3827 ivi->qos = oct->sriov_info.vf_vlantci[vfidx] >> VLAN_PRIO_SHIFT;
3828 ivi->linkstate = oct->sriov_info.vf_linkstate[vfidx];
3829 return 0;
3830}
3831
3832static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
3833 int linkstate)
3834{
3835 struct lio *lio = GET_LIO(netdev);
3836 struct octeon_device *oct = lio->oct_dev;
3837 struct octnic_ctrl_pkt nctrl;
3838
3839 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3840 return -EINVAL;
3841
3842 if (oct->sriov_info.vf_linkstate[vfidx] == linkstate)
3843 return 0;
3844
3845 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3846 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_VF_LINKSTATE;
3847 nctrl.ncmd.s.param1 =
3848 vfidx + 1; /* vfidx is 0 based, but vf_num (param1) is 1 based */
3849 nctrl.ncmd.s.param2 = linkstate;
3850 nctrl.ncmd.s.more = 0;
3851 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3852 nctrl.cb_fn = 0;
3853 nctrl.wait_time = LIO_CMD_WAIT_TM;
3854
3855 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3856
3857 oct->sriov_info.vf_linkstate[vfidx] = linkstate;
3858
3859 return 0;
3860}
3861
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003862static const struct net_device_ops lionetdevops = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003863 .ndo_open = liquidio_open,
3864 .ndo_stop = liquidio_stop,
3865 .ndo_start_xmit = liquidio_xmit,
3866 .ndo_get_stats = liquidio_get_stats,
3867 .ndo_set_mac_address = liquidio_set_mac,
3868 .ndo_set_rx_mode = liquidio_set_mcast_list,
3869 .ndo_tx_timeout = liquidio_tx_timeout,
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003870
3871 .ndo_vlan_rx_add_vid = liquidio_vlan_rx_add_vid,
3872 .ndo_vlan_rx_kill_vid = liquidio_vlan_rx_kill_vid,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003873 .ndo_change_mtu = liquidio_change_mtu,
3874 .ndo_do_ioctl = liquidio_ioctl,
3875 .ndo_fix_features = liquidio_fix_features,
3876 .ndo_set_features = liquidio_set_features,
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003877 .ndo_udp_tunnel_add = liquidio_add_vxlan_port,
3878 .ndo_udp_tunnel_del = liquidio_del_vxlan_port,
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003879 .ndo_set_vf_mac = liquidio_set_vf_mac,
3880 .ndo_set_vf_vlan = liquidio_set_vf_vlan,
3881 .ndo_get_vf_config = liquidio_get_vf_config,
3882 .ndo_set_vf_link_state = liquidio_set_vf_link_state,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003883};
3884
3885/** \brief Entry point for the liquidio module
3886 */
3887static int __init liquidio_init(void)
3888{
3889 int i;
3890 struct handshake *hs;
3891
3892 init_completion(&first_stage);
3893
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003894 octeon_init_device_list(OCTEON_CONFIG_TYPE_DEFAULT);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003895
3896 if (liquidio_init_pci())
3897 return -EINVAL;
3898
3899 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3900
3901 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3902 hs = &handshake[i];
3903 if (hs->pci_dev) {
3904 wait_for_completion(&hs->init);
3905 if (!hs->init_ok) {
3906 /* init handshake failed */
3907 dev_err(&hs->pci_dev->dev,
3908 "Failed to init device\n");
3909 liquidio_deinit_pci();
3910 return -EIO;
3911 }
3912 }
3913 }
3914
3915 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3916 hs = &handshake[i];
3917 if (hs->pci_dev) {
3918 wait_for_completion_timeout(&hs->started,
3919 msecs_to_jiffies(30000));
3920 if (!hs->started_ok) {
3921 /* starter handshake failed */
3922 dev_err(&hs->pci_dev->dev,
3923 "Firmware failed to start\n");
3924 liquidio_deinit_pci();
3925 return -EIO;
3926 }
3927 }
3928 }
3929
3930 return 0;
3931}
3932
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -07003933static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003934{
3935 struct octeon_device *oct = (struct octeon_device *)buf;
3936 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003937 int gmxport = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003938 union oct_link_status *ls;
3939 int i;
3940
Prasad Kannegantic4ee5d82017-06-18 05:04:11 -07003941 if (recv_pkt->buffer_size[0] != (sizeof(*ls) + OCT_DROQ_INFO_SIZE)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003942 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3943 recv_pkt->buffer_size[0],
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003944 recv_pkt->rh.r_nic_info.gmxport);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003945 goto nic_info_err;
3946 }
3947
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003948 gmxport = recv_pkt->rh.r_nic_info.gmxport;
Prasad Kannegantic4ee5d82017-06-18 05:04:11 -07003949 ls = (union oct_link_status *)(get_rbd(recv_pkt->buffer_ptr[0]) +
3950 OCT_DROQ_INFO_SIZE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003951
3952 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003953 for (i = 0; i < oct->ifcount; i++) {
3954 if (oct->props[i].gmxport == gmxport) {
3955 update_link_status(oct->props[i].netdev, ls);
3956 break;
3957 }
3958 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003959
3960nic_info_err:
3961 for (i = 0; i < recv_pkt->buffer_count; i++)
3962 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3963 octeon_free_recv_info(recv_info);
3964 return 0;
3965}
3966
3967/**
3968 * \brief Setup network interfaces
3969 * @param octeon_dev octeon device
3970 *
3971 * Called during init time for each device. It assumes the NIC
3972 * is already up and running. The link information for each
3973 * interface is passed in link_info.
3974 */
3975static int setup_nic_devices(struct octeon_device *octeon_dev)
3976{
3977 struct lio *lio = NULL;
3978 struct net_device *netdev;
3979 u8 mac[6], i, j;
3980 struct octeon_soft_command *sc;
3981 struct liquidio_if_cfg_context *ctx;
3982 struct liquidio_if_cfg_resp *resp;
3983 struct octdev_props *props;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003984 int retval, num_iqueues, num_oqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003985 union oct_nic_if_cfg if_cfg;
3986 unsigned int base_queue;
3987 unsigned int gmx_port_id;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003988 u32 resp_size, ctx_size, data_size;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003989 u32 ifidx_or_pfnum;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003990 struct lio_version *vdata;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003991
3992 /* This is to handle link status changes */
3993 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3994 OPCODE_NIC_INFO,
3995 lio_nic_info, octeon_dev);
3996
3997 /* REQTYPE_RESP_NET and REQTYPE_SOFT_COMMAND do not have free functions.
3998 * They are handled directly.
3999 */
4000 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
4001 free_netbuf);
4002
4003 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
4004 free_netsgbuf);
4005
4006 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
4007 free_netsgbuf_with_resp);
4008
4009 for (i = 0; i < octeon_dev->ifcount; i++) {
4010 resp_size = sizeof(struct liquidio_if_cfg_resp);
4011 ctx_size = sizeof(struct liquidio_if_cfg_context);
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07004012 data_size = sizeof(struct lio_version);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004013 sc = (struct octeon_soft_command *)
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07004014 octeon_alloc_soft_command(octeon_dev, data_size,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004015 resp_size, ctx_size);
4016 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
4017 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07004018 vdata = (struct lio_version *)sc->virtdptr;
4019
4020 *((u64 *)vdata) = 0;
4021 vdata->major = cpu_to_be16(LIQUIDIO_BASE_MAJOR_VERSION);
4022 vdata->minor = cpu_to_be16(LIQUIDIO_BASE_MINOR_VERSION);
4023 vdata->micro = cpu_to_be16(LIQUIDIO_BASE_MICRO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004024
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07004025 if (OCTEON_CN23XX_PF(octeon_dev)) {
4026 num_iqueues = octeon_dev->sriov_info.num_pf_rings;
4027 num_oqueues = octeon_dev->sriov_info.num_pf_rings;
4028 base_queue = octeon_dev->sriov_info.pf_srn;
4029
4030 gmx_port_id = octeon_dev->pf_num;
4031 ifidx_or_pfnum = octeon_dev->pf_num;
4032 } else {
4033 num_iqueues = CFG_GET_NUM_TXQS_NIC_IF(
4034 octeon_get_conf(octeon_dev), i);
4035 num_oqueues = CFG_GET_NUM_RXQS_NIC_IF(
4036 octeon_get_conf(octeon_dev), i);
4037 base_queue = CFG_GET_BASE_QUE_NIC_IF(
4038 octeon_get_conf(octeon_dev), i);
4039 gmx_port_id = CFG_GET_GMXID_NIC_IF(
4040 octeon_get_conf(octeon_dev), i);
4041 ifidx_or_pfnum = i;
4042 }
Raghu Vatsavayi3dcef2c2016-07-03 13:56:51 -07004043
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004044 dev_dbg(&octeon_dev->pci_dev->dev,
4045 "requesting config for interface %d, iqs %d, oqs %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004046 ifidx_or_pfnum, num_iqueues, num_oqueues);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07004047 WRITE_ONCE(ctx->cond, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004048 ctx->octeon_id = lio_get_device_id(octeon_dev);
4049 init_waitqueue_head(&ctx->wc);
4050
4051 if_cfg.u64 = 0;
4052 if_cfg.s.num_iqueues = num_iqueues;
4053 if_cfg.s.num_oqueues = num_oqueues;
4054 if_cfg.s.base_queue = base_queue;
4055 if_cfg.s.gmx_port_id = gmx_port_id;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004056
4057 sc->iq_no = 0;
4058
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004059 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004060 OPCODE_NIC_IF_CFG, 0,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004061 if_cfg.u64, 0);
4062
4063 sc->callback = if_cfg_callback;
4064 sc->callback_arg = sc;
Raghu Vatsavayi55893a62016-07-03 13:56:50 -07004065 sc->wait_time = 3000;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004066
4067 retval = octeon_send_soft_command(octeon_dev, sc);
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07004068 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004069 dev_err(&octeon_dev->pci_dev->dev,
4070 "iq/oq config failed status: %x\n",
4071 retval);
4072 /* Soft instr is freed by driver in case of failure. */
4073 goto setup_nic_dev_fail;
4074 }
4075
4076 /* Sleep on a wait queue till the cond flag indicates that the
4077 * response arrived or timed-out.
4078 */
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07004079 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR) {
4080 dev_err(&octeon_dev->pci_dev->dev, "Wait interrupted\n");
4081 goto setup_nic_wait_intr;
4082 }
4083
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004084 retval = resp->status;
4085 if (retval) {
4086 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
4087 goto setup_nic_dev_fail;
4088 }
4089
4090 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
4091 (sizeof(struct liquidio_if_cfg_info)) >> 3);
4092
4093 num_iqueues = hweight64(resp->cfg_info.iqmask);
4094 num_oqueues = hweight64(resp->cfg_info.oqmask);
4095
4096 if (!(num_iqueues) || !(num_oqueues)) {
4097 dev_err(&octeon_dev->pci_dev->dev,
4098 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
4099 resp->cfg_info.iqmask,
4100 resp->cfg_info.oqmask);
4101 goto setup_nic_dev_fail;
4102 }
4103 dev_dbg(&octeon_dev->pci_dev->dev,
4104 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d\n",
4105 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
4106 num_iqueues, num_oqueues);
4107 netdev = alloc_etherdev_mq(LIO_SIZE, num_iqueues);
4108
4109 if (!netdev) {
4110 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
4111 goto setup_nic_dev_fail;
4112 }
4113
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004114 SET_NETDEV_DEV(netdev, &octeon_dev->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004115
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004116 /* Associate the routines that will handle different
4117 * netdev tasks.
4118 */
4119 netdev->netdev_ops = &lionetdevops;
4120
4121 lio = GET_LIO(netdev);
4122
4123 memset(lio, 0, sizeof(struct lio));
4124
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004125 lio->ifidx = ifidx_or_pfnum;
4126
4127 props = &octeon_dev->props[i];
4128 props->gmxport = resp->cfg_info.linfo.gmxport;
4129 props->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004130
4131 lio->linfo.num_rxpciq = num_oqueues;
4132 lio->linfo.num_txpciq = num_iqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004133 for (j = 0; j < num_oqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004134 lio->linfo.rxpciq[j].u64 =
4135 resp->cfg_info.linfo.rxpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004136 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004137 for (j = 0; j < num_iqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004138 lio->linfo.txpciq[j].u64 =
4139 resp->cfg_info.linfo.txpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004140 }
4141 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
4142 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
4143 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
4144
4145 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
4146
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07004147 if (OCTEON_CN23XX_PF(octeon_dev) ||
4148 OCTEON_CN6XXX(octeon_dev)) {
4149 lio->dev_capability = NETIF_F_HIGHDMA
4150 | NETIF_F_IP_CSUM
4151 | NETIF_F_IPV6_CSUM
4152 | NETIF_F_SG | NETIF_F_RXCSUM
4153 | NETIF_F_GRO
4154 | NETIF_F_TSO | NETIF_F_TSO6
4155 | NETIF_F_LRO;
4156 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004157 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
4158
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004159 /* Copy of transmit encapsulation capabilities:
4160 * TSO, TSO6, Checksums for this device
4161 */
4162 lio->enc_dev_capability = NETIF_F_IP_CSUM
4163 | NETIF_F_IPV6_CSUM
4164 | NETIF_F_GSO_UDP_TUNNEL
4165 | NETIF_F_HW_CSUM | NETIF_F_SG
4166 | NETIF_F_RXCSUM
4167 | NETIF_F_TSO | NETIF_F_TSO6
4168 | NETIF_F_LRO;
4169
4170 netdev->hw_enc_features = (lio->enc_dev_capability &
4171 ~NETIF_F_LRO);
4172
4173 lio->dev_capability |= NETIF_F_GSO_UDP_TUNNEL;
4174
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004175 netdev->vlan_features = lio->dev_capability;
4176 /* Add any unchangeable hw features */
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004177 lio->dev_capability |= NETIF_F_HW_VLAN_CTAG_FILTER |
4178 NETIF_F_HW_VLAN_CTAG_RX |
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004179 NETIF_F_HW_VLAN_CTAG_TX;
4180
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004181 netdev->features = (lio->dev_capability & ~NETIF_F_LRO);
4182
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004183 netdev->hw_features = lio->dev_capability;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004184 /*HW_VLAN_RX and HW_VLAN_FILTER is always on*/
4185 netdev->hw_features = netdev->hw_features &
4186 ~NETIF_F_HW_VLAN_CTAG_RX;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004187
Jarod Wilson109cc162016-10-17 15:54:13 -04004188 /* MTU range: 68 - 16000 */
4189 netdev->min_mtu = LIO_MIN_MTU_SIZE;
4190 netdev->max_mtu = LIO_MAX_MTU_SIZE;
4191
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004192 /* Point to the properties for octeon device to which this
4193 * interface belongs.
4194 */
4195 lio->oct_dev = octeon_dev;
4196 lio->octprops = props;
4197 lio->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004198
4199 dev_dbg(&octeon_dev->pci_dev->dev,
4200 "if%d gmx: %d hw_addr: 0x%llx\n", i,
4201 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
4202
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004203 for (j = 0; j < octeon_dev->sriov_info.max_vfs; j++) {
4204 u8 vfmac[ETH_ALEN];
4205
4206 random_ether_addr(&vfmac[0]);
4207 if (__liquidio_set_vf_mac(netdev, j,
4208 &vfmac[0], false)) {
4209 dev_err(&octeon_dev->pci_dev->dev,
4210 "Error setting VF%d MAC address\n",
4211 j);
4212 goto setup_nic_dev_fail;
4213 }
4214 }
4215
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004216 /* 64-bit swap required on LE machines */
4217 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
4218 for (j = 0; j < 6; j++)
4219 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
4220
4221 /* Copy MAC Address to OS network device structure */
4222
4223 ether_addr_copy(netdev->dev_addr, mac);
4224
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004225 /* By default all interfaces on a single Octeon uses the same
4226 * tx and rx queues
4227 */
4228 lio->txq = lio->linfo.txpciq[0].s.q_no;
4229 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004230 if (setup_io_queues(octeon_dev, i)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004231 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
4232 goto setup_nic_dev_fail;
4233 }
4234
4235 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
4236
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004237 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
4238 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
4239
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07004240 if (setup_glists(octeon_dev, lio, num_iqueues)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004241 dev_err(&octeon_dev->pci_dev->dev,
4242 "Gather list allocation failed\n");
4243 goto setup_nic_dev_fail;
4244 }
4245
4246 /* Register ethtool support */
4247 liquidio_set_ethtool_ops(netdev);
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004248 if (lio->oct_dev->chip_id == OCTEON_CN23XX_PF_VID)
4249 octeon_dev->priv_flags = OCT_PRIV_FLAG_DEFAULT;
4250 else
4251 octeon_dev->priv_flags = 0x0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004252
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004253 if (netdev->features & NETIF_F_LRO)
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07004254 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
4255 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004256
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07004257 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
4258 OCTNET_CMD_VLAN_FILTER_ENABLE);
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004259
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004260 if ((debug != -1) && (debug & NETIF_MSG_HW))
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004261 liquidio_set_feature(netdev,
4262 OCTNET_CMD_VERBOSE_ENABLE, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004263
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07004264 if (setup_link_status_change_wq(netdev))
4265 goto setup_nic_dev_fail;
4266
Satanand Burla031d4f12017-03-22 11:31:13 -07004267 if (setup_rx_oom_poll_fn(netdev))
4268 goto setup_nic_dev_fail;
4269
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004270 /* Register the network device with the OS */
4271 if (register_netdev(netdev)) {
4272 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
4273 goto setup_nic_dev_fail;
4274 }
4275
4276 dev_dbg(&octeon_dev->pci_dev->dev,
4277 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
4278 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
4279 netif_carrier_off(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004280 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004281
4282 ifstate_set(lio, LIO_IFSTATE_REGISTERED);
4283
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004284 /* Sending command to firmware to enable Rx checksum offload
4285 * by default at the time of setup of Liquidio driver for
4286 * this device
4287 */
4288 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
4289 OCTNET_CMD_RXCSUM_ENABLE);
4290 liquidio_set_feature(netdev, OCTNET_CMD_TNL_TX_CSUM_CTL,
4291 OCTNET_CMD_TXCSUM_ENABLE);
4292
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004293 dev_dbg(&octeon_dev->pci_dev->dev,
4294 "NIC ifidx:%d Setup successful\n", i);
4295
4296 octeon_free_soft_command(octeon_dev, sc);
4297 }
4298
4299 return 0;
4300
4301setup_nic_dev_fail:
4302
4303 octeon_free_soft_command(octeon_dev, sc);
4304
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07004305setup_nic_wait_intr:
4306
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004307 while (i--) {
4308 dev_err(&octeon_dev->pci_dev->dev,
4309 "NIC ifidx:%d Setup failed\n", i);
4310 liquidio_destroy_nic_device(octeon_dev, i);
4311 }
4312 return -ENODEV;
4313}
4314
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08004315#ifdef CONFIG_PCI_IOV
4316static int octeon_enable_sriov(struct octeon_device *oct)
4317{
4318 unsigned int num_vfs_alloced = oct->sriov_info.num_vfs_alloced;
4319 struct pci_dev *vfdev;
4320 int err;
4321 u32 u;
4322
4323 if (OCTEON_CN23XX_PF(oct) && num_vfs_alloced) {
4324 err = pci_enable_sriov(oct->pci_dev,
4325 oct->sriov_info.num_vfs_alloced);
4326 if (err) {
4327 dev_err(&oct->pci_dev->dev,
4328 "OCTEON: Failed to enable PCI sriov: %d\n",
4329 err);
4330 oct->sriov_info.num_vfs_alloced = 0;
4331 return err;
4332 }
4333 oct->sriov_info.sriov_enabled = 1;
4334
4335 /* init lookup table that maps DPI ring number to VF pci_dev
4336 * struct pointer
4337 */
4338 u = 0;
4339 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4340 OCTEON_CN23XX_VF_VID, NULL);
4341 while (vfdev) {
4342 if (vfdev->is_virtfn &&
4343 (vfdev->physfn == oct->pci_dev)) {
4344 oct->sriov_info.dpiring_to_vfpcidev_lut[u] =
4345 vfdev;
4346 u += oct->sriov_info.rings_per_vf;
4347 }
4348 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4349 OCTEON_CN23XX_VF_VID, vfdev);
4350 }
4351 }
4352
4353 return num_vfs_alloced;
4354}
4355
4356static int lio_pci_sriov_disable(struct octeon_device *oct)
4357{
4358 int u;
4359
4360 if (pci_vfs_assigned(oct->pci_dev)) {
4361 dev_err(&oct->pci_dev->dev, "VFs are still assigned to VMs.\n");
4362 return -EPERM;
4363 }
4364
4365 pci_disable_sriov(oct->pci_dev);
4366
4367 u = 0;
4368 while (u < MAX_POSSIBLE_VFS) {
4369 oct->sriov_info.dpiring_to_vfpcidev_lut[u] = NULL;
4370 u += oct->sriov_info.rings_per_vf;
4371 }
4372
4373 oct->sriov_info.num_vfs_alloced = 0;
4374 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d disabled VFs\n",
4375 oct->pf_num);
4376
4377 return 0;
4378}
4379
4380static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs)
4381{
4382 struct octeon_device *oct = pci_get_drvdata(dev);
4383 int ret = 0;
4384
4385 if ((num_vfs == oct->sriov_info.num_vfs_alloced) &&
4386 (oct->sriov_info.sriov_enabled)) {
4387 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d already enabled num_vfs:%d\n",
4388 oct->pf_num, num_vfs);
4389 return 0;
4390 }
4391
4392 if (!num_vfs) {
4393 ret = lio_pci_sriov_disable(oct);
4394 } else if (num_vfs > oct->sriov_info.max_vfs) {
4395 dev_err(&oct->pci_dev->dev,
4396 "OCTEON: Max allowed VFs:%d user requested:%d",
4397 oct->sriov_info.max_vfs, num_vfs);
4398 ret = -EPERM;
4399 } else {
4400 oct->sriov_info.num_vfs_alloced = num_vfs;
4401 ret = octeon_enable_sriov(oct);
4402 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d num_vfs:%d\n",
4403 oct->pf_num, num_vfs);
4404 }
4405
4406 return ret;
4407}
4408#endif
4409
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004410/**
4411 * \brief initialize the NIC
4412 * @param oct octeon device
4413 *
4414 * This initialization routine is called once the Octeon device application is
4415 * up and running
4416 */
4417static int liquidio_init_nic_module(struct octeon_device *oct)
4418{
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004419 int i, retval = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004420 int num_nic_ports = CFG_GET_NUM_NIC_PORTS(octeon_get_conf(oct));
4421
4422 dev_dbg(&oct->pci_dev->dev, "Initializing network interfaces\n");
4423
4424 /* only default iq and oq were initialized
4425 * initialize the rest as well
4426 */
4427 /* run port_config command for each port */
4428 oct->ifcount = num_nic_ports;
4429
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004430 memset(oct->props, 0, sizeof(struct octdev_props) * num_nic_ports);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004431
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004432 for (i = 0; i < MAX_OCTEON_LINKS; i++)
4433 oct->props[i].gmxport = -1;
4434
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004435 retval = setup_nic_devices(oct);
4436 if (retval) {
4437 dev_err(&oct->pci_dev->dev, "Setup NIC devices failed\n");
4438 goto octnet_init_failure;
4439 }
4440
4441 liquidio_ptp_init(oct);
4442
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004443 dev_dbg(&oct->pci_dev->dev, "Network interfaces ready\n");
4444
4445 return retval;
4446
4447octnet_init_failure:
4448
4449 oct->ifcount = 0;
4450
4451 return retval;
4452}
4453
4454/**
4455 * \brief starter callback that invokes the remaining initialization work after
4456 * the NIC is up and running.
4457 * @param octptr work struct work_struct
4458 */
4459static void nic_starter(struct work_struct *work)
4460{
4461 struct octeon_device *oct;
4462 struct cavium_wk *wk = (struct cavium_wk *)work;
4463
4464 oct = (struct octeon_device *)wk->ctxptr;
4465
4466 if (atomic_read(&oct->status) == OCT_DEV_RUNNING)
4467 return;
4468
4469 /* If the status of the device is CORE_OK, the core
4470 * application has reported its application type. Call
4471 * any registered handlers now and move to the RUNNING
4472 * state.
4473 */
4474 if (atomic_read(&oct->status) != OCT_DEV_CORE_OK) {
4475 schedule_delayed_work(&oct->nic_poll_work.work,
4476 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4477 return;
4478 }
4479
4480 atomic_set(&oct->status, OCT_DEV_RUNNING);
4481
4482 if (oct->app_mode && oct->app_mode == CVM_DRV_NIC_APP) {
4483 dev_dbg(&oct->pci_dev->dev, "Starting NIC module\n");
4484
4485 if (liquidio_init_nic_module(oct))
4486 dev_err(&oct->pci_dev->dev, "NIC initialization failed\n");
4487 else
4488 handshake[oct->octeon_id].started_ok = 1;
4489 } else {
4490 dev_err(&oct->pci_dev->dev,
4491 "Unexpected application running on NIC (%d). Check firmware.\n",
4492 oct->app_mode);
4493 }
4494
4495 complete(&handshake[oct->octeon_id].started);
4496}
4497
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004498static int
4499octeon_recv_vf_drv_notice(struct octeon_recv_info *recv_info, void *buf)
4500{
4501 struct octeon_device *oct = (struct octeon_device *)buf;
4502 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
4503 int i, notice, vf_idx;
Felix Manlunasbb54be52017-04-04 19:26:57 -07004504 bool cores_crashed;
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004505 u64 *data, vf_num;
4506
4507 notice = recv_pkt->rh.r.ossp;
Prasad Kannegantic4ee5d82017-06-18 05:04:11 -07004508 data = (u64 *)(get_rbd(recv_pkt->buffer_ptr[0]) + OCT_DROQ_INFO_SIZE);
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004509
4510 /* the first 64-bit word of data is the vf_num */
4511 vf_num = data[0];
4512 octeon_swap_8B_data(&vf_num, 1);
4513 vf_idx = (int)vf_num - 1;
4514
Felix Manlunasbb54be52017-04-04 19:26:57 -07004515 cores_crashed = READ_ONCE(oct->cores_crashed);
4516
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004517 if (notice == VF_DRV_LOADED) {
4518 if (!(oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx))) {
4519 oct->sriov_info.vf_drv_loaded_mask |= BIT_ULL(vf_idx);
4520 dev_info(&oct->pci_dev->dev,
4521 "driver for VF%d was loaded\n", vf_idx);
Felix Manlunasbb54be52017-04-04 19:26:57 -07004522 if (!cores_crashed)
4523 try_module_get(THIS_MODULE);
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004524 }
4525 } else if (notice == VF_DRV_REMOVED) {
4526 if (oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx)) {
4527 oct->sriov_info.vf_drv_loaded_mask &= ~BIT_ULL(vf_idx);
4528 dev_info(&oct->pci_dev->dev,
4529 "driver for VF%d was removed\n", vf_idx);
Felix Manlunasbb54be52017-04-04 19:26:57 -07004530 if (!cores_crashed)
4531 module_put(THIS_MODULE);
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004532 }
4533 } else if (notice == VF_DRV_MACADDR_CHANGED) {
4534 u8 *b = (u8 *)&data[1];
4535
4536 oct->sriov_info.vf_macaddr[vf_idx] = data[1];
4537 dev_info(&oct->pci_dev->dev,
4538 "VF driver changed VF%d's MAC address to %pM\n",
4539 vf_idx, b + 2);
4540 }
4541
4542 for (i = 0; i < recv_pkt->buffer_count; i++)
4543 recv_buffer_free(recv_pkt->buffer_ptr[i]);
4544 octeon_free_recv_info(recv_info);
4545
4546 return 0;
4547}
4548
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004549/**
4550 * \brief Device initialization for each Octeon device that is probed
4551 * @param octeon_dev octeon device
4552 */
4553static int octeon_device_init(struct octeon_device *octeon_dev)
4554{
4555 int j, ret;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004556 int fw_loaded = 0;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004557 char bootcmd[] = "\n";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004558 struct octeon_device_priv *oct_priv =
4559 (struct octeon_device_priv *)octeon_dev->priv;
4560 atomic_set(&octeon_dev->status, OCT_DEV_BEGIN_STATE);
4561
4562 /* Enable access to the octeon device and make its DMA capability
4563 * known to the OS.
4564 */
4565 if (octeon_pci_os_setup(octeon_dev))
4566 return 1;
4567
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004568 atomic_set(&octeon_dev->status, OCT_DEV_PCI_ENABLE_DONE);
4569
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004570 /* Identify the Octeon type and map the BAR address space. */
4571 if (octeon_chip_specific_setup(octeon_dev)) {
4572 dev_err(&octeon_dev->pci_dev->dev, "Chip specific setup failed\n");
4573 return 1;
4574 }
4575
4576 atomic_set(&octeon_dev->status, OCT_DEV_PCI_MAP_DONE);
4577
Rick Farringtone1e3ce62017-05-16 11:14:50 -07004578 /* Only add a reference after setting status 'OCT_DEV_PCI_MAP_DONE',
4579 * since that is what is required for the reference to be removed
4580 * during de-initialization (see 'octeon_destroy_resources').
4581 */
4582 octeon_register_device(octeon_dev, octeon_dev->pci_dev->bus->number,
4583 PCI_SLOT(octeon_dev->pci_dev->devfn),
4584 PCI_FUNC(octeon_dev->pci_dev->devfn),
4585 true);
4586
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004587 octeon_dev->app_mode = CVM_DRV_INVALID_APP;
4588
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004589 if (OCTEON_CN23XX_PF(octeon_dev)) {
4590 if (!cn23xx_fw_loaded(octeon_dev)) {
4591 fw_loaded = 0;
Felix Manlunas7cc61db2017-03-23 13:26:28 -07004592 if (!fw_type_is_none()) {
4593 /* Do a soft reset of the Octeon device. */
4594 if (octeon_dev->fn_list.soft_reset(octeon_dev))
4595 return 1;
4596 /* things might have changed */
4597 if (!cn23xx_fw_loaded(octeon_dev))
4598 fw_loaded = 0;
4599 else
4600 fw_loaded = 1;
4601 }
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004602 } else {
4603 fw_loaded = 1;
4604 }
4605 } else if (octeon_dev->fn_list.soft_reset(octeon_dev)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004606 return 1;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004607 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004608
4609 /* Initialize the dispatch mechanism used to push packets arriving on
4610 * Octeon Output queues.
4611 */
4612 if (octeon_init_dispatch_list(octeon_dev))
4613 return 1;
4614
4615 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4616 OPCODE_NIC_CORE_DRV_ACTIVE,
4617 octeon_core_drv_init,
4618 octeon_dev);
4619
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004620 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4621 OPCODE_NIC_VF_DRV_NOTICE,
4622 octeon_recv_vf_drv_notice, octeon_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004623 INIT_DELAYED_WORK(&octeon_dev->nic_poll_work.work, nic_starter);
4624 octeon_dev->nic_poll_work.ctxptr = (void *)octeon_dev;
4625 schedule_delayed_work(&octeon_dev->nic_poll_work.work,
4626 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4627
4628 atomic_set(&octeon_dev->status, OCT_DEV_DISPATCH_INIT_DONE);
4629
Raghu Vatsavayic865cdf2016-11-28 16:54:36 -08004630 if (octeon_set_io_queues_off(octeon_dev)) {
4631 dev_err(&octeon_dev->pci_dev->dev, "setting io queues off failed\n");
4632 return 1;
4633 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004634
Raghu Vatsavayi3451b972016-08-31 11:03:26 -07004635 if (OCTEON_CN23XX_PF(octeon_dev)) {
4636 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4637 if (ret) {
4638 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Failed to configure device registers\n");
4639 return ret;
4640 }
4641 }
4642
4643 /* Initialize soft command buffer pool
4644 */
4645 if (octeon_setup_sc_buffer_pool(octeon_dev)) {
4646 dev_err(&octeon_dev->pci_dev->dev, "sc buffer pool allocation failed\n");
4647 return 1;
4648 }
4649 atomic_set(&octeon_dev->status, OCT_DEV_SC_BUFF_POOL_INIT_DONE);
4650
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004651 /* Setup the data structures that manage this Octeon's Input queues. */
4652 if (octeon_setup_instr_queues(octeon_dev)) {
4653 dev_err(&octeon_dev->pci_dev->dev,
4654 "instruction queue initialization failed\n");
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004655 return 1;
4656 }
4657 atomic_set(&octeon_dev->status, OCT_DEV_INSTR_QUEUE_INIT_DONE);
4658
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004659 /* Initialize lists to manage the requests of different types that
4660 * arrive from user & kernel applications for this octeon device.
4661 */
4662 if (octeon_setup_response_list(octeon_dev)) {
4663 dev_err(&octeon_dev->pci_dev->dev, "Response list allocation failed\n");
4664 return 1;
4665 }
4666 atomic_set(&octeon_dev->status, OCT_DEV_RESP_LIST_INIT_DONE);
4667
4668 if (octeon_setup_output_queues(octeon_dev)) {
4669 dev_err(&octeon_dev->pci_dev->dev, "Output queue initialization failed\n");
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004670 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004671 }
4672
4673 atomic_set(&octeon_dev->status, OCT_DEV_DROQ_INIT_DONE);
4674
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004675 if (OCTEON_CN23XX_PF(octeon_dev)) {
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08004676 if (octeon_dev->fn_list.setup_mbox(octeon_dev)) {
4677 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Mailbox setup failed\n");
4678 return 1;
4679 }
4680 atomic_set(&octeon_dev->status, OCT_DEV_MBOX_SETUP_DONE);
4681
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004682 if (octeon_allocate_ioq_vector(octeon_dev)) {
4683 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: ioq vector allocation failed\n");
4684 return 1;
4685 }
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004686 atomic_set(&octeon_dev->status, OCT_DEV_MSIX_ALLOC_VECTOR_DONE);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004687
4688 } else {
4689 /* The input and output queue registers were setup earlier (the
4690 * queues were not enabled). Any additional registers
4691 * that need to be programmed should be done now.
4692 */
4693 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4694 if (ret) {
4695 dev_err(&octeon_dev->pci_dev->dev,
4696 "Failed to configure device registers\n");
4697 return ret;
4698 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004699 }
4700
4701 /* Initialize the tasklet that handles output queue packet processing.*/
4702 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing droq tasklet\n");
4703 tasklet_init(&oct_priv->droq_tasklet, octeon_droq_bh,
4704 (unsigned long)octeon_dev);
4705
4706 /* Setup the interrupt handler and record the INT SUM register address
4707 */
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004708 if (octeon_setup_interrupt(octeon_dev))
4709 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004710
4711 /* Enable Octeon device interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004712 octeon_dev->fn_list.enable_interrupt(octeon_dev, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004713
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004714 atomic_set(&octeon_dev->status, OCT_DEV_INTR_SET_DONE);
4715
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004716 /* Enable the input and output queues for this Octeon device */
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07004717 ret = octeon_dev->fn_list.enable_io_queues(octeon_dev);
4718 if (ret) {
4719 dev_err(&octeon_dev->pci_dev->dev, "Failed to enable input/output queues");
4720 return ret;
4721 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004722
4723 atomic_set(&octeon_dev->status, OCT_DEV_IO_QUEUES_DONE);
4724
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004725 if ((!OCTEON_CN23XX_PF(octeon_dev)) || !fw_loaded) {
4726 dev_dbg(&octeon_dev->pci_dev->dev, "Waiting for DDR initialization...\n");
4727 if (!ddr_timeout) {
4728 dev_info(&octeon_dev->pci_dev->dev,
4729 "WAITING. Set ddr_timeout to non-zero value to proceed with initialization.\n");
4730 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004731
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004732 schedule_timeout_uninterruptible(HZ * LIO_RESET_SECS);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004733
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004734 /* Wait for the octeon to initialize DDR after the soft-reset.*/
4735 while (!ddr_timeout) {
4736 set_current_state(TASK_INTERRUPTIBLE);
4737 if (schedule_timeout(HZ / 10)) {
4738 /* user probably pressed Control-C */
4739 return 1;
4740 }
4741 }
4742 ret = octeon_wait_for_ddr_init(octeon_dev, &ddr_timeout);
4743 if (ret) {
4744 dev_err(&octeon_dev->pci_dev->dev,
4745 "DDR not initialized. Please confirm that board is configured to boot from Flash, ret: %d\n",
4746 ret);
Raghu Vatsavayi4b129ae2016-06-21 22:53:15 -07004747 return 1;
4748 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004749
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004750 if (octeon_wait_for_bootloader(octeon_dev, 1000)) {
4751 dev_err(&octeon_dev->pci_dev->dev, "Board not responding\n");
4752 return 1;
4753 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004754
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004755 /* Divert uboot to take commands from host instead. */
4756 ret = octeon_console_send_cmd(octeon_dev, bootcmd, 50);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004757
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004758 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing consoles\n");
4759 ret = octeon_init_consoles(octeon_dev);
4760 if (ret) {
4761 dev_err(&octeon_dev->pci_dev->dev, "Could not access board consoles\n");
4762 return 1;
4763 }
4764 ret = octeon_add_console(octeon_dev, 0);
4765 if (ret) {
4766 dev_err(&octeon_dev->pci_dev->dev, "Could not access board console\n");
4767 return 1;
4768 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004769
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004770 atomic_set(&octeon_dev->status, OCT_DEV_CONSOLE_INIT_DONE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004771
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004772 dev_dbg(&octeon_dev->pci_dev->dev, "Loading firmware\n");
4773 ret = load_firmware(octeon_dev);
4774 if (ret) {
4775 dev_err(&octeon_dev->pci_dev->dev, "Could not load firmware to board\n");
4776 return 1;
4777 }
4778 /* set bit 1 of SLI_SCRATCH_1 to indicate that firmware is
4779 * loaded
4780 */
4781 if (OCTEON_CN23XX_PF(octeon_dev))
4782 octeon_write_csr64(octeon_dev, CN23XX_SLI_SCRATCH1,
4783 2ULL);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004784 }
4785
4786 handshake[octeon_dev->octeon_id].init_ok = 1;
4787 complete(&handshake[octeon_dev->octeon_id].init);
4788
4789 atomic_set(&octeon_dev->status, OCT_DEV_HOST_OK);
4790
4791 /* Send Credit for Octeon Output queues. Credits are always sent after
4792 * the output queue is enabled.
4793 */
4794 for (j = 0; j < octeon_dev->num_oqs; j++)
4795 writel(octeon_dev->droq[j]->max_count,
4796 octeon_dev->droq[j]->pkts_credit_reg);
4797
4798 /* Packets can start arriving on the output queues from this point. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004799 return 0;
4800}
4801
4802/**
4803 * \brief Exits the module
4804 */
4805static void __exit liquidio_exit(void)
4806{
4807 liquidio_deinit_pci();
4808
4809 pr_info("LiquidIO network module is now unloaded\n");
4810}
4811
4812module_init(liquidio_init);
4813module_exit(liquidio_exit);