blob: c12cfa4113ccef6e3e3f4a8dfa73de05d132d30a [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 ***********************************************************************/
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070018#include <linux/pci.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070019#include <linux/firmware.h>
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -070020#include <net/vxlan.h>
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -070021#include <linux/kthread.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070022#include "liquidio_common.h"
23#include "octeon_droq.h"
24#include "octeon_iq.h"
25#include "response_manager.h"
26#include "octeon_device.h"
27#include "octeon_nic.h"
28#include "octeon_main.h"
29#include "octeon_network.h"
30#include "cn66xx_regs.h"
31#include "cn66xx_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070032#include "cn68xx_device.h"
Raghu Vatsavayi72c00912016-08-31 11:03:25 -070033#include "cn23xx_pf_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070034#include "liquidio_image.h"
35
36MODULE_AUTHOR("Cavium Networks, <support@cavium.com>");
37MODULE_DESCRIPTION("Cavium LiquidIO Intelligent Server Adapter Driver");
38MODULE_LICENSE("GPL");
39MODULE_VERSION(LIQUIDIO_VERSION);
40MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210SV_NAME LIO_FW_NAME_SUFFIX);
41MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210NV_NAME LIO_FW_NAME_SUFFIX);
42MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_410NV_NAME LIO_FW_NAME_SUFFIX);
Raghu Vatsavayic865cdf2016-11-28 16:54:36 -080043MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_23XX_NAME LIO_FW_NAME_SUFFIX);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070044
45static int ddr_timeout = 10000;
46module_param(ddr_timeout, int, 0644);
47MODULE_PARM_DESC(ddr_timeout,
48 "Number of milliseconds to wait for DDR initialization. 0 waits for ddr_timeout to be set to non-zero value before starting to check");
49
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070050#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
51
52static int debug = -1;
53module_param(debug, int, 0644);
54MODULE_PARM_DESC(debug, "NETIF_MSG debug bits");
55
56static char fw_type[LIO_MAX_FW_TYPE_LEN];
57module_param_string(fw_type, fw_type, sizeof(fw_type), 0000);
58MODULE_PARM_DESC(fw_type, "Type of firmware to be loaded. Default \"nic\"");
59
Raghu Vatsavayia5b37882016-06-14 16:54:48 -070060static int ptp_enable = 1;
61
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070062/* Bit mask values for lio->ifstate */
63#define LIO_IFSTATE_DROQ_OPS 0x01
64#define LIO_IFSTATE_REGISTERED 0x02
65#define LIO_IFSTATE_RUNNING 0x04
66#define LIO_IFSTATE_RX_TIMESTAMP_ENABLED 0x08
67
68/* Polling interval for determining when NIC application is alive */
69#define LIQUIDIO_STARTER_POLL_INTERVAL_MS 100
70
71/* runtime link query interval */
72#define LIQUIDIO_LINK_QUERY_INTERVAL_MS 1000
73
74struct liquidio_if_cfg_context {
75 int octeon_id;
76
77 wait_queue_head_t wc;
78
79 int cond;
80};
81
82struct liquidio_if_cfg_resp {
83 u64 rh;
84 struct liquidio_if_cfg_info cfg_info;
85 u64 status;
86};
87
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -070088struct liquidio_rx_ctl_context {
89 int octeon_id;
90
91 wait_queue_head_t wc;
92
93 int cond;
94};
95
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070096struct oct_link_status_resp {
97 u64 rh;
98 struct oct_link_info link_info;
99 u64 status;
100};
101
102struct oct_timestamp_resp {
103 u64 rh;
104 u64 timestamp;
105 u64 status;
106};
107
108#define OCT_TIMESTAMP_RESP_SIZE (sizeof(struct oct_timestamp_resp))
109
110union tx_info {
111 u64 u64;
112 struct {
113#ifdef __BIG_ENDIAN_BITFIELD
114 u16 gso_size;
115 u16 gso_segs;
116 u32 reserved;
117#else
118 u32 reserved;
119 u16 gso_segs;
120 u16 gso_size;
121#endif
122 } s;
123};
124
125/** Octeon device properties to be used by the NIC module.
126 * Each octeon device in the system will be represented
127 * by this structure in the NIC module.
128 */
129
130#define OCTNIC_MAX_SG (MAX_SKB_FRAGS)
131
132#define OCTNIC_GSO_MAX_HEADER_SIZE 128
Raghu Vatsavayi72c00912016-08-31 11:03:25 -0700133#define OCTNIC_GSO_MAX_SIZE \
134 (CN23XX_DEFAULT_INPUT_JABBER - OCTNIC_GSO_MAX_HEADER_SIZE)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700135
136/** Structure of a node in list of gather components maintained by
137 * NIC driver for each network device.
138 */
139struct octnic_gather {
140 /** List manipulation. Next and prev pointers. */
141 struct list_head list;
142
143 /** Size of the gather component at sg in bytes. */
144 int sg_size;
145
146 /** Number of bytes that sg was adjusted to make it 8B-aligned. */
147 int adjust;
148
149 /** Gather component that can accommodate max sized fragment list
150 * received from the IP layer.
151 */
152 struct octeon_sg_entry *sg;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700153
154 u64 sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700155};
156
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700157struct handshake {
158 struct completion init;
159 struct completion started;
160 struct pci_dev *pci_dev;
161 int init_ok;
162 int started_ok;
163};
164
165struct octeon_device_priv {
166 /** Tasklet structures for this device. */
167 struct tasklet_struct droq_tasklet;
168 unsigned long napi_mask;
169};
170
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800171#ifdef CONFIG_PCI_IOV
172static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs);
173#endif
174
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700175static int octeon_device_init(struct octeon_device *);
Raghu Vatsavayi32581242016-08-31 11:03:20 -0700176static int liquidio_stop(struct net_device *netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700177static void liquidio_remove(struct pci_dev *pdev);
178static int liquidio_probe(struct pci_dev *pdev,
179 const struct pci_device_id *ent);
180
181static struct handshake handshake[MAX_OCTEON_DEVICES];
182static struct completion first_stage;
183
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700184static void octeon_droq_bh(unsigned long pdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700185{
186 int q_no;
187 int reschedule = 0;
188 struct octeon_device *oct = (struct octeon_device *)pdev;
189 struct octeon_device_priv *oct_priv =
190 (struct octeon_device_priv *)oct->priv;
191
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700192 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES(oct); q_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800193 if (!(oct->io_qmask.oq & BIT_ULL(q_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700194 continue;
195 reschedule |= octeon_droq_process_packets(oct, oct->droq[q_no],
196 MAX_PACKET_BUDGET);
Raghu Vatsavayicd8b1eb2016-08-31 11:03:22 -0700197 lio_enable_irq(oct->droq[q_no], NULL);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700198
199 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
200 /* set time and cnt interrupt thresholds for this DROQ
201 * for NAPI
202 */
203 int adjusted_q_no = q_no + oct->sriov_info.pf_srn;
204
205 octeon_write_csr64(
206 oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(adjusted_q_no),
207 0x5700000040ULL);
208 octeon_write_csr64(
209 oct, CN23XX_SLI_OQ_PKTS_SENT(adjusted_q_no), 0);
210 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700211 }
212
213 if (reschedule)
214 tasklet_schedule(&oct_priv->droq_tasklet);
215}
216
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700217static int lio_wait_for_oq_pkts(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700218{
219 struct octeon_device_priv *oct_priv =
220 (struct octeon_device_priv *)oct->priv;
221 int retry = 100, pkt_cnt = 0, pending_pkts = 0;
222 int i;
223
224 do {
225 pending_pkts = 0;
226
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700227 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800228 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700229 continue;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700230 pkt_cnt += octeon_droq_check_hw_for_pkts(oct->droq[i]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700231 }
232 if (pkt_cnt > 0) {
233 pending_pkts += pkt_cnt;
234 tasklet_schedule(&oct_priv->droq_tasklet);
235 }
236 pkt_cnt = 0;
237 schedule_timeout_uninterruptible(1);
238
239 } while (retry-- && pending_pkts);
240
241 return pkt_cnt;
242}
243
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700244/**
245 * \brief Forces all IO queues off on a given device
246 * @param oct Pointer to Octeon device
247 */
248static void force_io_queues_off(struct octeon_device *oct)
249{
250 if ((oct->chip_id == OCTEON_CN66XX) ||
251 (oct->chip_id == OCTEON_CN68XX)) {
252 /* Reset the Enable bits for Input Queues. */
253 octeon_write_csr(oct, CN6XXX_SLI_PKT_INSTR_ENB, 0);
254
255 /* Reset the Enable bits for Output Queues. */
256 octeon_write_csr(oct, CN6XXX_SLI_PKT_OUT_ENB, 0);
257 }
258}
259
260/**
261 * \brief wait for all pending requests to complete
262 * @param oct Pointer to Octeon device
263 *
264 * Called during shutdown sequence
265 */
266static int wait_for_pending_requests(struct octeon_device *oct)
267{
268 int i, pcount = 0;
269
270 for (i = 0; i < 100; i++) {
271 pcount =
272 atomic_read(&oct->response_list
273 [OCTEON_ORDERED_SC_LIST].pending_req_count);
274 if (pcount)
275 schedule_timeout_uninterruptible(HZ / 10);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700276 else
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700277 break;
278 }
279
280 if (pcount)
281 return 1;
282
283 return 0;
284}
285
286/**
287 * \brief Cause device to go quiet so it can be safely removed/reset/etc
288 * @param oct Pointer to Octeon device
289 */
290static inline void pcierror_quiesce_device(struct octeon_device *oct)
291{
292 int i;
293
294 /* Disable the input and output queues now. No more packets will
295 * arrive from Octeon, but we should wait for all packet processing
296 * to finish.
297 */
298 force_io_queues_off(oct);
299
300 /* To allow for in-flight requests */
301 schedule_timeout_uninterruptible(100);
302
303 if (wait_for_pending_requests(oct))
304 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
305
306 /* Force all requests waiting to be fetched by OCTEON to complete. */
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700307 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700308 struct octeon_instr_queue *iq;
309
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800310 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700311 continue;
312 iq = oct->instr_queue[i];
313
314 if (atomic_read(&iq->instr_pending)) {
315 spin_lock_bh(&iq->lock);
316 iq->fill_cnt = 0;
317 iq->octeon_read_index = iq->host_write_index;
318 iq->stats.instr_processed +=
319 atomic_read(&iq->instr_pending);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700320 lio_process_iq_request_list(oct, iq, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700321 spin_unlock_bh(&iq->lock);
322 }
323 }
324
325 /* Force all pending ordered list requests to time out. */
326 lio_process_ordered_list(oct, 1);
327
328 /* We do not need to wait for output queue packets to be processed. */
329}
330
331/**
332 * \brief Cleanup PCI AER uncorrectable error status
333 * @param dev Pointer to PCI device
334 */
335static void cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
336{
337 int pos = 0x100;
338 u32 status, mask;
339
340 pr_info("%s :\n", __func__);
341
342 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
343 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
344 if (dev->error_state == pci_channel_io_normal)
345 status &= ~mask; /* Clear corresponding nonfatal bits */
346 else
347 status &= mask; /* Clear corresponding fatal bits */
348 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
349}
350
351/**
352 * \brief Stop all PCI IO to a given device
353 * @param dev Pointer to Octeon device
354 */
355static void stop_pci_io(struct octeon_device *oct)
356{
357 /* No more instructions will be forwarded. */
358 atomic_set(&oct->status, OCT_DEV_IN_RESET);
359
360 pci_disable_device(oct->pci_dev);
361
362 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700363 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700364
365 pcierror_quiesce_device(oct);
366
367 /* Release the interrupt line */
368 free_irq(oct->pci_dev->irq, oct);
369
370 if (oct->flags & LIO_FLAG_MSI_ENABLED)
371 pci_disable_msi(oct->pci_dev);
372
373 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
374 lio_get_state_string(&oct->status));
375
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700376 /* making it a common function for all OCTEON models */
377 cleanup_aer_uncorrect_error_status(oct->pci_dev);
378}
379
380/**
381 * \brief called when PCI error is detected
382 * @param pdev Pointer to PCI device
383 * @param state The current pci connection state
384 *
385 * This function is called after a PCI bus error affecting
386 * this device has been detected.
387 */
388static pci_ers_result_t liquidio_pcie_error_detected(struct pci_dev *pdev,
389 pci_channel_state_t state)
390{
391 struct octeon_device *oct = pci_get_drvdata(pdev);
392
393 /* Non-correctable Non-fatal errors */
394 if (state == pci_channel_io_normal) {
395 dev_err(&oct->pci_dev->dev, "Non-correctable non-fatal error reported:\n");
396 cleanup_aer_uncorrect_error_status(oct->pci_dev);
397 return PCI_ERS_RESULT_CAN_RECOVER;
398 }
399
400 /* Non-correctable Fatal errors */
401 dev_err(&oct->pci_dev->dev, "Non-correctable FATAL reported by PCI AER driver\n");
402 stop_pci_io(oct);
403
404 /* Always return a DISCONNECT. There is no support for recovery but only
405 * for a clean shutdown.
406 */
407 return PCI_ERS_RESULT_DISCONNECT;
408}
409
410/**
411 * \brief mmio handler
412 * @param pdev Pointer to PCI device
413 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700414static pci_ers_result_t liquidio_pcie_mmio_enabled(
415 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700416{
417 /* We should never hit this since we never ask for a reset for a Fatal
418 * Error. We always return DISCONNECT in io_error above.
419 * But play safe and return RECOVERED for now.
420 */
421 return PCI_ERS_RESULT_RECOVERED;
422}
423
424/**
425 * \brief called after the pci bus has been reset.
426 * @param pdev Pointer to PCI device
427 *
428 * Restart the card from scratch, as if from a cold-boot. Implementation
429 * resembles the first-half of the octeon_resume routine.
430 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700431static pci_ers_result_t liquidio_pcie_slot_reset(
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 when traffic can start flowing again.
443 * @param pdev Pointer to PCI device
444 *
445 * This callback is called when the error recovery driver tells us that
446 * its OK to resume normal operation. Implementation resembles the
447 * second-half of the octeon_resume routine.
448 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700449static void liquidio_pcie_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700450{
451 /* Nothing to be done here. */
452}
453
454#ifdef CONFIG_PM
455/**
456 * \brief called when suspending
457 * @param pdev Pointer to PCI device
458 * @param state state to suspend to
459 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700460static int liquidio_suspend(struct pci_dev *pdev __attribute__((unused)),
461 pm_message_t state __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700462{
463 return 0;
464}
465
466/**
467 * \brief called when resuming
468 * @param pdev Pointer to PCI device
469 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700470static int liquidio_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700471{
472 return 0;
473}
474#endif
475
476/* For PCI-E Advanced Error Recovery (AER) Interface */
Julia Lawall166e2362015-11-14 11:06:53 +0100477static const struct pci_error_handlers liquidio_err_handler = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700478 .error_detected = liquidio_pcie_error_detected,
479 .mmio_enabled = liquidio_pcie_mmio_enabled,
480 .slot_reset = liquidio_pcie_slot_reset,
481 .resume = liquidio_pcie_resume,
482};
483
484static const struct pci_device_id liquidio_pci_tbl[] = {
485 { /* 68xx */
486 PCI_VENDOR_ID_CAVIUM, 0x91, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
487 },
488 { /* 66xx */
489 PCI_VENDOR_ID_CAVIUM, 0x92, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
490 },
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -0700491 { /* 23xx pf */
492 PCI_VENDOR_ID_CAVIUM, 0x9702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
493 },
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700494 {
495 0, 0, 0, 0, 0, 0, 0
496 }
497};
498MODULE_DEVICE_TABLE(pci, liquidio_pci_tbl);
499
500static struct pci_driver liquidio_pci_driver = {
501 .name = "LiquidIO",
502 .id_table = liquidio_pci_tbl,
503 .probe = liquidio_probe,
504 .remove = liquidio_remove,
505 .err_handler = &liquidio_err_handler, /* For AER */
506
507#ifdef CONFIG_PM
508 .suspend = liquidio_suspend,
509 .resume = liquidio_resume,
510#endif
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800511#ifdef CONFIG_PCI_IOV
512 .sriov_configure = liquidio_enable_sriov,
513#endif
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700514};
515
516/**
517 * \brief register PCI driver
518 */
519static int liquidio_init_pci(void)
520{
521 return pci_register_driver(&liquidio_pci_driver);
522}
523
524/**
525 * \brief unregister PCI driver
526 */
527static void liquidio_deinit_pci(void)
528{
529 pci_unregister_driver(&liquidio_pci_driver);
530}
531
532/**
533 * \brief check interface state
534 * @param lio per-network private data
535 * @param state_flag flag state to check
536 */
537static inline int ifstate_check(struct lio *lio, int state_flag)
538{
539 return atomic_read(&lio->ifstate) & state_flag;
540}
541
542/**
543 * \brief set interface state
544 * @param lio per-network private data
545 * @param state_flag flag state to set
546 */
547static inline void ifstate_set(struct lio *lio, int state_flag)
548{
549 atomic_set(&lio->ifstate, (atomic_read(&lio->ifstate) | state_flag));
550}
551
552/**
553 * \brief clear interface state
554 * @param lio per-network private data
555 * @param state_flag flag state to clear
556 */
557static inline void ifstate_reset(struct lio *lio, int state_flag)
558{
559 atomic_set(&lio->ifstate, (atomic_read(&lio->ifstate) & ~(state_flag)));
560}
561
562/**
563 * \brief Stop Tx queues
564 * @param netdev network device
565 */
566static inline void txqs_stop(struct net_device *netdev)
567{
568 if (netif_is_multiqueue(netdev)) {
569 int i;
570
571 for (i = 0; i < netdev->num_tx_queues; i++)
572 netif_stop_subqueue(netdev, i);
573 } else {
574 netif_stop_queue(netdev);
575 }
576}
577
578/**
579 * \brief Start Tx queues
580 * @param netdev network device
581 */
582static inline void txqs_start(struct net_device *netdev)
583{
584 if (netif_is_multiqueue(netdev)) {
585 int i;
586
587 for (i = 0; i < netdev->num_tx_queues; i++)
588 netif_start_subqueue(netdev, i);
589 } else {
590 netif_start_queue(netdev);
591 }
592}
593
594/**
595 * \brief Wake Tx queues
596 * @param netdev network device
597 */
598static inline void txqs_wake(struct net_device *netdev)
599{
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700600 struct lio *lio = GET_LIO(netdev);
601
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700602 if (netif_is_multiqueue(netdev)) {
603 int i;
604
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700605 for (i = 0; i < netdev->num_tx_queues; i++) {
606 int qno = lio->linfo.txpciq[i %
607 (lio->linfo.num_txpciq)].s.q_no;
608
609 if (__netif_subqueue_stopped(netdev, i)) {
610 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, qno,
611 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700612 netif_wake_subqueue(netdev, i);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700613 }
614 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700615 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700616 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
617 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700618 netif_wake_queue(netdev);
619 }
620}
621
622/**
623 * \brief Stop Tx queue
624 * @param netdev network device
625 */
626static void stop_txq(struct net_device *netdev)
627{
628 txqs_stop(netdev);
629}
630
631/**
632 * \brief Start Tx queue
633 * @param netdev network device
634 */
635static void start_txq(struct net_device *netdev)
636{
637 struct lio *lio = GET_LIO(netdev);
638
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700639 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700640 txqs_start(netdev);
641 return;
642 }
643}
644
645/**
646 * \brief Wake a queue
647 * @param netdev network device
648 * @param q which queue to wake
649 */
650static inline void wake_q(struct net_device *netdev, int q)
651{
652 if (netif_is_multiqueue(netdev))
653 netif_wake_subqueue(netdev, q);
654 else
655 netif_wake_queue(netdev);
656}
657
658/**
659 * \brief Stop a queue
660 * @param netdev network device
661 * @param q which queue to stop
662 */
663static inline void stop_q(struct net_device *netdev, int q)
664{
665 if (netif_is_multiqueue(netdev))
666 netif_stop_subqueue(netdev, q);
667 else
668 netif_stop_queue(netdev);
669}
670
671/**
672 * \brief Check Tx queue status, and take appropriate action
673 * @param lio per-network private data
674 * @returns 0 if full, number of queues woken up otherwise
675 */
676static inline int check_txq_status(struct lio *lio)
677{
678 int ret_val = 0;
679
680 if (netif_is_multiqueue(lio->netdev)) {
681 int numqs = lio->netdev->num_tx_queues;
682 int q, iq = 0;
683
684 /* check each sub-queue state */
685 for (q = 0; q < numqs; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700686 iq = lio->linfo.txpciq[q %
687 (lio->linfo.num_txpciq)].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700688 if (octnet_iq_is_full(lio->oct_dev, iq))
689 continue;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700690 if (__netif_subqueue_stopped(lio->netdev, q)) {
691 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700692 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq,
693 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700694 ret_val++;
695 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700696 }
697 } else {
698 if (octnet_iq_is_full(lio->oct_dev, lio->txq))
699 return 0;
700 wake_q(lio->netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700701 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
702 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700703 ret_val = 1;
704 }
705 return ret_val;
706}
707
708/**
709 * Remove the node at the head of the list. The list would be empty at
710 * the end of this call if there are no more nodes in the list.
711 */
712static inline struct list_head *list_delete_head(struct list_head *root)
713{
714 struct list_head *node;
715
716 if ((root->prev == root) && (root->next == root))
717 node = NULL;
718 else
719 node = root->next;
720
721 if (node)
722 list_del(node);
723
724 return node;
725}
726
727/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700728 * \brief Delete gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700729 * @param lio per-network private data
730 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700731static void delete_glists(struct lio *lio)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700732{
733 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700734 int i;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700735
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700736 if (!lio->glist)
737 return;
738
739 for (i = 0; i < lio->linfo.num_txpciq; i++) {
740 do {
741 g = (struct octnic_gather *)
742 list_delete_head(&lio->glist[i]);
743 if (g) {
744 if (g->sg) {
745 dma_unmap_single(&lio->oct_dev->
746 pci_dev->dev,
747 g->sg_dma_ptr,
748 g->sg_size,
749 DMA_TO_DEVICE);
750 kfree((void *)((unsigned long)g->sg -
751 g->adjust));
752 }
753 kfree(g);
754 }
755 } while (g);
756 }
757
758 kfree((void *)lio->glist);
Raghu Vatsavayi515e7522016-11-14 15:54:44 -0800759 kfree((void *)lio->glist_lock);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700760}
761
762/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700763 * \brief Setup gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700764 * @param lio per-network private data
765 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700766static int setup_glists(struct octeon_device *oct, struct lio *lio, int num_iqs)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700767{
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700768 int i, j;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700769 struct octnic_gather *g;
770
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700771 lio->glist_lock = kcalloc(num_iqs, sizeof(*lio->glist_lock),
772 GFP_KERNEL);
773 if (!lio->glist_lock)
774 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700775
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700776 lio->glist = kcalloc(num_iqs, sizeof(*lio->glist),
777 GFP_KERNEL);
778 if (!lio->glist) {
779 kfree((void *)lio->glist_lock);
780 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700781 }
782
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700783 for (i = 0; i < num_iqs; i++) {
784 int numa_node = cpu_to_node(i % num_online_cpus());
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700785
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700786 spin_lock_init(&lio->glist_lock[i]);
787
788 INIT_LIST_HEAD(&lio->glist[i]);
789
790 for (j = 0; j < lio->tx_qsize; j++) {
791 g = kzalloc_node(sizeof(*g), GFP_KERNEL,
792 numa_node);
793 if (!g)
794 g = kzalloc(sizeof(*g), GFP_KERNEL);
795 if (!g)
796 break;
797
798 g->sg_size = ((ROUNDUP4(OCTNIC_MAX_SG) >> 2) *
799 OCT_SG_ENTRY_SIZE);
800
801 g->sg = kmalloc_node(g->sg_size + 8,
802 GFP_KERNEL, numa_node);
803 if (!g->sg)
804 g->sg = kmalloc(g->sg_size + 8, GFP_KERNEL);
805 if (!g->sg) {
806 kfree(g);
807 break;
808 }
809
810 /* The gather component should be aligned on 64-bit
811 * boundary
812 */
813 if (((unsigned long)g->sg) & 7) {
814 g->adjust = 8 - (((unsigned long)g->sg) & 7);
815 g->sg = (struct octeon_sg_entry *)
816 ((unsigned long)g->sg + g->adjust);
817 }
818 g->sg_dma_ptr = dma_map_single(&oct->pci_dev->dev,
819 g->sg, g->sg_size,
820 DMA_TO_DEVICE);
821 if (dma_mapping_error(&oct->pci_dev->dev,
822 g->sg_dma_ptr)) {
823 kfree((void *)((unsigned long)g->sg -
824 g->adjust));
825 kfree(g);
826 break;
827 }
828
829 list_add_tail(&g->list, &lio->glist[i]);
830 }
831
832 if (j != lio->tx_qsize) {
833 delete_glists(lio);
834 return 1;
835 }
836 }
837
838 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700839}
840
841/**
842 * \brief Print link information
843 * @param netdev network device
844 */
845static void print_link_info(struct net_device *netdev)
846{
847 struct lio *lio = GET_LIO(netdev);
848
849 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED) {
850 struct oct_link_info *linfo = &lio->linfo;
851
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700852 if (linfo->link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700853 netif_info(lio, link, lio->netdev, "%d Mbps %s Duplex UP\n",
854 linfo->link.s.speed,
855 (linfo->link.s.duplex) ? "Full" : "Half");
856 } else {
857 netif_info(lio, link, lio->netdev, "Link Down\n");
858 }
859 }
860}
861
862/**
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -0700863 * \brief Routine to notify MTU change
864 * @param work work_struct data structure
865 */
866static void octnet_link_status_change(struct work_struct *work)
867{
868 struct cavium_wk *wk = (struct cavium_wk *)work;
869 struct lio *lio = (struct lio *)wk->ctxptr;
870
871 rtnl_lock();
872 call_netdevice_notifiers(NETDEV_CHANGEMTU, lio->netdev);
873 rtnl_unlock();
874}
875
876/**
877 * \brief Sets up the mtu status change work
878 * @param netdev network device
879 */
880static inline int setup_link_status_change_wq(struct net_device *netdev)
881{
882 struct lio *lio = GET_LIO(netdev);
883 struct octeon_device *oct = lio->oct_dev;
884
885 lio->link_status_wq.wq = alloc_workqueue("link-status",
886 WQ_MEM_RECLAIM, 0);
887 if (!lio->link_status_wq.wq) {
888 dev_err(&oct->pci_dev->dev, "unable to create cavium link status wq\n");
889 return -1;
890 }
891 INIT_DELAYED_WORK(&lio->link_status_wq.wk.work,
892 octnet_link_status_change);
893 lio->link_status_wq.wk.ctxptr = lio;
894
895 return 0;
896}
897
898static inline void cleanup_link_status_change_wq(struct net_device *netdev)
899{
900 struct lio *lio = GET_LIO(netdev);
901
902 if (lio->link_status_wq.wq) {
903 cancel_delayed_work_sync(&lio->link_status_wq.wk.work);
904 destroy_workqueue(lio->link_status_wq.wq);
905 }
906}
907
908/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700909 * \brief Update link status
910 * @param netdev network device
911 * @param ls link status structure
912 *
913 * Called on receipt of a link status response from the core application to
914 * update each interface's link status.
915 */
916static inline void update_link_status(struct net_device *netdev,
917 union oct_link_status *ls)
918{
919 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700920 int changed = (lio->linfo.link.u64 != ls->u64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700921
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700922 lio->linfo.link.u64 = ls->u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700923
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700924 if ((lio->intf_open) && (changed)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700925 print_link_info(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700926 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700927
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700928 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700929 netif_carrier_on(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700930 txqs_wake(netdev);
931 } else {
932 netif_carrier_off(netdev);
933 stop_txq(netdev);
934 }
935 }
936}
937
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700938/* Runs in interrupt context. */
939static void update_txq_status(struct octeon_device *oct, int iq_num)
940{
941 struct net_device *netdev;
942 struct lio *lio;
943 struct octeon_instr_queue *iq = oct->instr_queue[iq_num];
944
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700945 netdev = oct->props[iq->ifidx].netdev;
946
947 /* This is needed because the first IQ does not have
948 * a netdev associated with it.
949 */
950 if (!netdev)
951 return;
952
953 lio = GET_LIO(netdev);
954 if (netif_is_multiqueue(netdev)) {
955 if (__netif_subqueue_stopped(netdev, iq->q_index) &&
956 lio->linfo.link.s.link_up &&
957 (!octnet_iq_is_full(oct, iq_num))) {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700958 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq_num,
959 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700960 netif_wake_subqueue(netdev, iq->q_index);
961 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700962 if (!octnet_iq_is_full(oct, lio->txq)) {
963 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev,
964 lio->txq,
965 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700966 wake_q(netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700967 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700968 }
969 }
970}
971
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700972static
973int liquidio_schedule_msix_droq_pkt_handler(struct octeon_droq *droq, u64 ret)
974{
975 struct octeon_device *oct = droq->oct_dev;
976 struct octeon_device_priv *oct_priv =
977 (struct octeon_device_priv *)oct->priv;
978
979 if (droq->ops.poll_mode) {
980 droq->ops.napi_fn(droq);
981 } else {
982 if (ret & MSIX_PO_INT) {
983 tasklet_schedule(&oct_priv->droq_tasklet);
984 return 1;
985 }
986 /* this will be flushed periodically by check iq db */
987 if (ret & MSIX_PI_INT)
988 return 0;
989 }
990 return 0;
991}
992
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700993/**
994 * \brief Droq packet processor sceduler
995 * @param oct octeon device
996 */
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -0700997static void liquidio_schedule_droq_pkt_handlers(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700998{
999 struct octeon_device_priv *oct_priv =
1000 (struct octeon_device_priv *)oct->priv;
1001 u64 oq_no;
1002 struct octeon_droq *droq;
1003
1004 if (oct->int_status & OCT_DEV_INTR_PKT_DATA) {
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001005 for (oq_no = 0; oq_no < MAX_OCTEON_OUTPUT_QUEUES(oct);
1006 oq_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -08001007 if (!(oct->droq_intr & BIT_ULL(oq_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001008 continue;
1009
1010 droq = oct->droq[oq_no];
1011
1012 if (droq->ops.poll_mode) {
1013 droq->ops.napi_fn(droq);
1014 oct_priv->napi_mask |= (1 << oq_no);
1015 } else {
1016 tasklet_schedule(&oct_priv->droq_tasklet);
1017 }
1018 }
1019 }
1020}
1021
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001022static irqreturn_t
1023liquidio_msix_intr_handler(int irq __attribute__((unused)), void *dev)
1024{
1025 u64 ret;
1026 struct octeon_ioq_vector *ioq_vector = (struct octeon_ioq_vector *)dev;
1027 struct octeon_device *oct = ioq_vector->oct_dev;
1028 struct octeon_droq *droq = oct->droq[ioq_vector->droq_index];
1029
1030 ret = oct->fn_list.msix_interrupt_handler(ioq_vector);
1031
1032 if ((ret & MSIX_PO_INT) || (ret & MSIX_PI_INT))
1033 liquidio_schedule_msix_droq_pkt_handler(droq, ret);
1034
1035 return IRQ_HANDLED;
1036}
1037
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001038/**
1039 * \brief Interrupt handler for octeon
1040 * @param irq unused
1041 * @param dev octeon device
1042 */
1043static
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001044irqreturn_t liquidio_legacy_intr_handler(int irq __attribute__((unused)),
1045 void *dev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001046{
1047 struct octeon_device *oct = (struct octeon_device *)dev;
1048 irqreturn_t ret;
1049
1050 /* Disable our interrupts for the duration of ISR */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001051 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001052
1053 ret = oct->fn_list.process_interrupt_regs(oct);
1054
1055 if (ret == IRQ_HANDLED)
1056 liquidio_schedule_droq_pkt_handlers(oct);
1057
1058 /* Re-enable our interrupts */
1059 if (!(atomic_read(&oct->status) == OCT_DEV_IN_RESET))
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001060 oct->fn_list.enable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001061
1062 return ret;
1063}
1064
1065/**
1066 * \brief Setup interrupt for octeon device
1067 * @param oct octeon device
1068 *
1069 * Enable interrupt in Octeon device as given in the PCI interrupt mask.
1070 */
1071static int octeon_setup_interrupt(struct octeon_device *oct)
1072{
1073 int irqret, err;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001074 struct msix_entry *msix_entries;
1075 int i;
1076 int num_ioq_vectors;
1077 int num_alloc_ioq_vectors;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001078
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001079 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
1080 oct->num_msix_irqs = oct->sriov_info.num_pf_rings;
1081 /* one non ioq interrupt for handling sli_mac_pf_int_sum */
1082 oct->num_msix_irqs += 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001083
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001084 oct->msix_entries = kcalloc(
1085 oct->num_msix_irqs, sizeof(struct msix_entry), GFP_KERNEL);
1086 if (!oct->msix_entries)
1087 return 1;
1088
1089 msix_entries = (struct msix_entry *)oct->msix_entries;
1090 /*Assumption is that pf msix vectors start from pf srn to pf to
1091 * trs and not from 0. if not change this code
1092 */
1093 for (i = 0; i < oct->num_msix_irqs - 1; i++)
1094 msix_entries[i].entry = oct->sriov_info.pf_srn + i;
1095 msix_entries[oct->num_msix_irqs - 1].entry =
1096 oct->sriov_info.trs;
1097 num_alloc_ioq_vectors = pci_enable_msix_range(
1098 oct->pci_dev, msix_entries,
1099 oct->num_msix_irqs,
1100 oct->num_msix_irqs);
1101 if (num_alloc_ioq_vectors < 0) {
1102 dev_err(&oct->pci_dev->dev, "unable to Allocate MSI-X interrupts\n");
1103 kfree(oct->msix_entries);
1104 oct->msix_entries = NULL;
1105 return 1;
1106 }
1107 dev_dbg(&oct->pci_dev->dev, "OCTEON: Enough MSI-X interrupts are allocated...\n");
1108
1109 num_ioq_vectors = oct->num_msix_irqs;
1110
1111 /** For PF, there is one non-ioq interrupt handler */
1112 num_ioq_vectors -= 1;
1113 irqret = request_irq(msix_entries[num_ioq_vectors].vector,
1114 liquidio_legacy_intr_handler, 0, "octeon",
1115 oct);
1116 if (irqret) {
1117 dev_err(&oct->pci_dev->dev,
1118 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1119 irqret);
1120 pci_disable_msix(oct->pci_dev);
1121 kfree(oct->msix_entries);
1122 oct->msix_entries = NULL;
1123 return 1;
1124 }
1125
1126 for (i = 0; i < num_ioq_vectors; i++) {
1127 irqret = request_irq(msix_entries[i].vector,
1128 liquidio_msix_intr_handler, 0,
1129 "octeon", &oct->ioq_vector[i]);
1130 if (irqret) {
1131 dev_err(&oct->pci_dev->dev,
1132 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1133 irqret);
1134 /** Freeing the non-ioq irq vector here . */
1135 free_irq(msix_entries[num_ioq_vectors].vector,
1136 oct);
1137
1138 while (i) {
1139 i--;
1140 /** clearing affinity mask. */
1141 irq_set_affinity_hint(
1142 msix_entries[i].vector, NULL);
1143 free_irq(msix_entries[i].vector,
1144 &oct->ioq_vector[i]);
1145 }
1146 pci_disable_msix(oct->pci_dev);
1147 kfree(oct->msix_entries);
1148 oct->msix_entries = NULL;
1149 return 1;
1150 }
1151 oct->ioq_vector[i].vector = msix_entries[i].vector;
1152 /* assign the cpu mask for this msix interrupt vector */
1153 irq_set_affinity_hint(
1154 msix_entries[i].vector,
1155 (&oct->ioq_vector[i].affinity_mask));
1156 }
1157 dev_dbg(&oct->pci_dev->dev, "OCTEON[%d]: MSI-X enabled\n",
1158 oct->octeon_id);
1159 } else {
1160 err = pci_enable_msi(oct->pci_dev);
1161 if (err)
1162 dev_warn(&oct->pci_dev->dev, "Reverting to legacy interrupts. Error: %d\n",
1163 err);
1164 else
1165 oct->flags |= LIO_FLAG_MSI_ENABLED;
1166
1167 irqret = request_irq(oct->pci_dev->irq,
1168 liquidio_legacy_intr_handler, IRQF_SHARED,
1169 "octeon", oct);
1170 if (irqret) {
1171 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1172 pci_disable_msi(oct->pci_dev);
1173 dev_err(&oct->pci_dev->dev, "Request IRQ failed with code: %d\n",
1174 irqret);
1175 return 1;
1176 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001177 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001178 return 0;
1179}
1180
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001181static int liquidio_watchdog(void *param)
1182{
1183 u64 wdog;
1184 u16 mask_of_stuck_cores = 0;
1185 u16 mask_of_crashed_cores = 0;
1186 int core_num;
1187 u8 core_is_stuck[LIO_MAX_CORES];
1188 u8 core_crashed[LIO_MAX_CORES];
1189 struct octeon_device *oct = param;
1190
1191 memset(core_is_stuck, 0, sizeof(core_is_stuck));
1192 memset(core_crashed, 0, sizeof(core_crashed));
1193
1194 while (!kthread_should_stop()) {
1195 mask_of_crashed_cores =
1196 (u16)octeon_read_csr64(oct, CN23XX_SLI_SCRATCH2);
1197
1198 for (core_num = 0; core_num < LIO_MAX_CORES; core_num++) {
1199 if (!core_is_stuck[core_num]) {
1200 wdog = lio_pci_readq(oct, CIU3_WDOG(core_num));
1201
1202 /* look at watchdog state field */
1203 wdog &= CIU3_WDOG_MASK;
1204 if (wdog) {
1205 /* this watchdog timer has expired */
1206 core_is_stuck[core_num] =
1207 LIO_MONITOR_WDOG_EXPIRE;
1208 mask_of_stuck_cores |= (1 << core_num);
1209 }
1210 }
1211
1212 if (!core_crashed[core_num])
1213 core_crashed[core_num] =
1214 (mask_of_crashed_cores >> core_num) & 1;
1215 }
1216
1217 if (mask_of_stuck_cores) {
1218 for (core_num = 0; core_num < LIO_MAX_CORES;
1219 core_num++) {
1220 if (core_is_stuck[core_num] == 1) {
1221 dev_err(&oct->pci_dev->dev,
1222 "ERROR: Octeon core %d is stuck!\n",
1223 core_num);
1224 /* 2 means we have printk'd an error
1225 * so no need to repeat the same printk
1226 */
1227 core_is_stuck[core_num] =
1228 LIO_MONITOR_CORE_STUCK_MSGD;
1229 }
1230 }
1231 }
1232
1233 if (mask_of_crashed_cores) {
1234 for (core_num = 0; core_num < LIO_MAX_CORES;
1235 core_num++) {
1236 if (core_crashed[core_num] == 1) {
1237 dev_err(&oct->pci_dev->dev,
1238 "ERROR: Octeon core %d crashed! See oct-fwdump for details.\n",
1239 core_num);
1240 /* 2 means we have printk'd an error
1241 * so no need to repeat the same printk
1242 */
1243 core_crashed[core_num] =
1244 LIO_MONITOR_CORE_STUCK_MSGD;
1245 }
1246 }
1247 }
1248#ifdef CONFIG_MODULE_UNLOAD
1249 if (mask_of_stuck_cores || mask_of_crashed_cores) {
1250 /* make module refcount=0 so that rmmod will work */
1251 long refcount;
1252
1253 refcount = module_refcount(THIS_MODULE);
1254
1255 while (refcount > 0) {
1256 module_put(THIS_MODULE);
1257 refcount = module_refcount(THIS_MODULE);
1258 }
1259
1260 /* compensate for and withstand an unlikely (but still
1261 * possible) race condition
1262 */
1263 while (refcount < 0) {
1264 try_module_get(THIS_MODULE);
1265 refcount = module_refcount(THIS_MODULE);
1266 }
1267 }
1268#endif
1269 /* sleep for two seconds */
1270 set_current_state(TASK_INTERRUPTIBLE);
1271 schedule_timeout(2 * HZ);
1272 }
1273
1274 return 0;
1275}
1276
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001277/**
1278 * \brief PCI probe handler
1279 * @param pdev PCI device structure
1280 * @param ent unused
1281 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001282static int
1283liquidio_probe(struct pci_dev *pdev,
1284 const struct pci_device_id *ent __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001285{
1286 struct octeon_device *oct_dev = NULL;
1287 struct handshake *hs;
1288
1289 oct_dev = octeon_allocate_device(pdev->device,
1290 sizeof(struct octeon_device_priv));
1291 if (!oct_dev) {
1292 dev_err(&pdev->dev, "Unable to allocate device\n");
1293 return -ENOMEM;
1294 }
1295
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001296 if (pdev->device == OCTEON_CN23XX_PF_VID)
1297 oct_dev->msix_on = LIO_FLAG_MSIX_ENABLED;
1298
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001299 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
1300 (u32)pdev->vendor, (u32)pdev->device);
1301
1302 /* Assign octeon_device for this device to the private data area. */
1303 pci_set_drvdata(pdev, oct_dev);
1304
1305 /* set linux specific device pointer */
1306 oct_dev->pci_dev = (void *)pdev;
1307
1308 hs = &handshake[oct_dev->octeon_id];
1309 init_completion(&hs->init);
1310 init_completion(&hs->started);
1311 hs->pci_dev = pdev;
1312
1313 if (oct_dev->octeon_id == 0)
1314 /* first LiquidIO NIC is detected */
1315 complete(&first_stage);
1316
1317 if (octeon_device_init(oct_dev)) {
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001318 complete(&hs->init);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001319 liquidio_remove(pdev);
1320 return -ENOMEM;
1321 }
1322
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001323 if (OCTEON_CN23XX_PF(oct_dev)) {
1324 u64 scratch1;
1325 u8 bus, device, function;
1326
1327 scratch1 = octeon_read_csr64(oct_dev, CN23XX_SLI_SCRATCH1);
1328 if (!(scratch1 & 4ULL)) {
1329 /* Bit 2 of SLI_SCRATCH_1 is a flag that indicates that
1330 * the lio watchdog kernel thread is running for this
1331 * NIC. Each NIC gets one watchdog kernel thread.
1332 */
1333 scratch1 |= 4ULL;
1334 octeon_write_csr64(oct_dev, CN23XX_SLI_SCRATCH1,
1335 scratch1);
1336
1337 bus = pdev->bus->number;
1338 device = PCI_SLOT(pdev->devfn);
1339 function = PCI_FUNC(pdev->devfn);
1340 oct_dev->watchdog_task = kthread_create(
1341 liquidio_watchdog, oct_dev,
1342 "liowd/%02hhx:%02hhx.%hhx", bus, device, function);
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001343 if (!IS_ERR(oct_dev->watchdog_task)) {
1344 wake_up_process(oct_dev->watchdog_task);
1345 } else {
1346 oct_dev->watchdog_task = NULL;
1347 dev_err(&oct_dev->pci_dev->dev,
1348 "failed to create kernel_thread\n");
1349 liquidio_remove(pdev);
1350 return -1;
1351 }
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001352 }
1353 }
1354
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001355 oct_dev->rx_pause = 1;
1356 oct_dev->tx_pause = 1;
1357
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001358 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
1359
1360 return 0;
1361}
1362
1363/**
1364 *\brief Destroy resources associated with octeon device
1365 * @param pdev PCI device structure
1366 * @param ent unused
1367 */
1368static void octeon_destroy_resources(struct octeon_device *oct)
1369{
1370 int i;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001371 struct msix_entry *msix_entries;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001372 struct octeon_device_priv *oct_priv =
1373 (struct octeon_device_priv *)oct->priv;
1374
1375 struct handshake *hs;
1376
1377 switch (atomic_read(&oct->status)) {
1378 case OCT_DEV_RUNNING:
1379 case OCT_DEV_CORE_OK:
1380
1381 /* No more instructions will be forwarded. */
1382 atomic_set(&oct->status, OCT_DEV_IN_RESET);
1383
1384 oct->app_mode = CVM_DRV_INVALID_APP;
1385 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
1386 lio_get_state_string(&oct->status));
1387
1388 schedule_timeout_uninterruptible(HZ / 10);
1389
1390 /* fallthrough */
1391 case OCT_DEV_HOST_OK:
1392
1393 /* fallthrough */
1394 case OCT_DEV_CONSOLE_INIT_DONE:
1395 /* Remove any consoles */
1396 octeon_remove_consoles(oct);
1397
1398 /* fallthrough */
1399 case OCT_DEV_IO_QUEUES_DONE:
1400 if (wait_for_pending_requests(oct))
1401 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
1402
1403 if (lio_wait_for_instr_fetch(oct))
1404 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
1405
1406 /* Disable the input and output queues now. No more packets will
1407 * arrive from Octeon, but we should wait for all packet
1408 * processing to finish.
1409 */
1410 oct->fn_list.disable_io_queues(oct);
1411
1412 if (lio_wait_for_oq_pkts(oct))
1413 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1414
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001415 /* fallthrough */
1416 case OCT_DEV_INTR_SET_DONE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001417 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001418 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001419
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001420 if (oct->msix_on) {
1421 msix_entries = (struct msix_entry *)oct->msix_entries;
1422 for (i = 0; i < oct->num_msix_irqs - 1; i++) {
1423 /* clear the affinity_cpumask */
1424 irq_set_affinity_hint(msix_entries[i].vector,
1425 NULL);
1426 free_irq(msix_entries[i].vector,
1427 &oct->ioq_vector[i]);
1428 }
1429 /* non-iov vector's argument is oct struct */
1430 free_irq(msix_entries[i].vector, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001431
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001432 pci_disable_msix(oct->pci_dev);
1433 kfree(oct->msix_entries);
1434 oct->msix_entries = NULL;
1435 } else {
1436 /* Release the interrupt line */
1437 free_irq(oct->pci_dev->irq, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001438
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001439 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1440 pci_disable_msi(oct->pci_dev);
1441 }
1442
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001443 /* fallthrough */
1444 case OCT_DEV_MSIX_ALLOC_VECTOR_DONE:
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001445 if (OCTEON_CN23XX_PF(oct))
1446 octeon_free_ioq_vector(oct);
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08001447
1448 /* fallthrough */
1449 case OCT_DEV_MBOX_SETUP_DONE:
1450 if (OCTEON_CN23XX_PF(oct))
1451 oct->fn_list.free_mbox(oct);
1452
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001453 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001454 case OCT_DEV_IN_RESET:
1455 case OCT_DEV_DROQ_INIT_DONE:
Raghu Vatsavayi763185a2016-11-14 15:54:45 -08001456 /* Wait for any pending operations */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001457 mdelay(100);
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001458 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001459 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001460 continue;
1461 octeon_delete_droq(oct, i);
1462 }
1463
1464 /* Force any pending handshakes to complete */
1465 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1466 hs = &handshake[i];
1467
1468 if (hs->pci_dev) {
1469 handshake[oct->octeon_id].init_ok = 0;
1470 complete(&handshake[oct->octeon_id].init);
1471 handshake[oct->octeon_id].started_ok = 0;
1472 complete(&handshake[oct->octeon_id].started);
1473 }
1474 }
1475
1476 /* fallthrough */
1477 case OCT_DEV_RESP_LIST_INIT_DONE:
1478 octeon_delete_response_list(oct);
1479
1480 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001481 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001482 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001483 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001484 continue;
1485 octeon_delete_instr_queue(oct, i);
1486 }
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08001487#ifdef CONFIG_PCI_IOV
1488 if (oct->sriov_info.sriov_enabled)
1489 pci_disable_sriov(oct->pci_dev);
1490#endif
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001491 /* fallthrough */
1492 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1493 octeon_free_sc_buffer_pool(oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001494
1495 /* fallthrough */
1496 case OCT_DEV_DISPATCH_INIT_DONE:
1497 octeon_delete_dispatch_list(oct);
1498 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1499
1500 /* fallthrough */
1501 case OCT_DEV_PCI_MAP_DONE:
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001502 /* Soft reset the octeon device before exiting */
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07001503 if ((!OCTEON_CN23XX_PF(oct)) || !oct->octeon_id)
1504 oct->fn_list.soft_reset(oct);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001505
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001506 octeon_unmap_pci_barx(oct, 0);
1507 octeon_unmap_pci_barx(oct, 1);
1508
1509 /* fallthrough */
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001510 case OCT_DEV_PCI_ENABLE_DONE:
1511 pci_clear_master(oct->pci_dev);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001512 /* Disable the device, releasing the PCI INT */
1513 pci_disable_device(oct->pci_dev);
1514
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001515 /* fallthrough */
1516 case OCT_DEV_BEGIN_STATE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001517 /* Nothing to be done here either */
1518 break;
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07001519 } /* end switch (oct->status) */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001520
1521 tasklet_kill(&oct_priv->droq_tasklet);
1522}
1523
1524/**
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001525 * \brief Callback for rx ctrl
1526 * @param status status of request
1527 * @param buf pointer to resp structure
1528 */
1529static void rx_ctl_callback(struct octeon_device *oct,
1530 u32 status,
1531 void *buf)
1532{
1533 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1534 struct liquidio_rx_ctl_context *ctx;
1535
1536 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1537
1538 oct = lio_get_device(ctx->octeon_id);
1539 if (status)
1540 dev_err(&oct->pci_dev->dev, "rx ctl instruction failed. Status: %llx\n",
1541 CVM_CAST64(status));
1542 WRITE_ONCE(ctx->cond, 1);
1543
1544 /* This barrier is required to be sure that the response has been
1545 * written fully before waking up the handler
1546 */
1547 wmb();
1548
1549 wake_up_interruptible(&ctx->wc);
1550}
1551
1552/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001553 * \brief Send Rx control command
1554 * @param lio per-network private data
1555 * @param start_stop whether to start or stop
1556 */
1557static void send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1558{
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001559 struct octeon_soft_command *sc;
1560 struct liquidio_rx_ctl_context *ctx;
1561 union octnet_cmd *ncmd;
1562 int ctx_size = sizeof(struct liquidio_rx_ctl_context);
1563 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1564 int retval;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001565
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001566 if (oct->props[lio->ifidx].rx_on == start_stop)
1567 return;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001568
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001569 sc = (struct octeon_soft_command *)
1570 octeon_alloc_soft_command(oct, OCTNET_CMD_SIZE,
1571 16, ctx_size);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001572
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001573 ncmd = (union octnet_cmd *)sc->virtdptr;
1574 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1575
1576 WRITE_ONCE(ctx->cond, 0);
1577 ctx->octeon_id = lio_get_device_id(oct);
1578 init_waitqueue_head(&ctx->wc);
1579
1580 ncmd->u64 = 0;
1581 ncmd->s.cmd = OCTNET_CMD_RX_CTL;
1582 ncmd->s.param1 = start_stop;
1583
1584 octeon_swap_8B_data((u64 *)ncmd, (OCTNET_CMD_SIZE >> 3));
1585
1586 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
1587
1588 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
1589 OPCODE_NIC_CMD, 0, 0, 0);
1590
1591 sc->callback = rx_ctl_callback;
1592 sc->callback_arg = sc;
1593 sc->wait_time = 5000;
1594
1595 retval = octeon_send_soft_command(oct, sc);
1596 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001597 netif_info(lio, rx_err, lio->netdev, "Failed to send RX Control message\n");
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001598 } else {
1599 /* Sleep on a wait queue till the cond flag indicates that the
1600 * response arrived or timed-out.
1601 */
1602 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR)
1603 return;
1604 oct->props[lio->ifidx].rx_on = start_stop;
1605 }
1606
1607 octeon_free_soft_command(oct, sc);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001608}
1609
1610/**
1611 * \brief Destroy NIC device interface
1612 * @param oct octeon device
1613 * @param ifidx which interface to destroy
1614 *
1615 * Cleanup associated with each interface for an Octeon device when NIC
1616 * module is being unloaded or if initialization fails during load.
1617 */
1618static void liquidio_destroy_nic_device(struct octeon_device *oct, int ifidx)
1619{
1620 struct net_device *netdev = oct->props[ifidx].netdev;
1621 struct lio *lio;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001622 struct napi_struct *napi, *n;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001623
1624 if (!netdev) {
1625 dev_err(&oct->pci_dev->dev, "%s No netdevice ptr for index %d\n",
1626 __func__, ifidx);
1627 return;
1628 }
1629
1630 lio = GET_LIO(netdev);
1631
1632 dev_dbg(&oct->pci_dev->dev, "NIC device cleanup\n");
1633
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001634 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING)
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001635 liquidio_stop(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001636
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001637 if (oct->props[lio->ifidx].napi_enabled == 1) {
1638 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1639 napi_disable(napi);
1640
1641 oct->props[lio->ifidx].napi_enabled = 0;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001642
1643 if (OCTEON_CN23XX_PF(oct))
1644 oct->droq[0]->ops.poll_mode = 0;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001645 }
1646
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001647 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
1648 unregister_netdev(netdev);
1649
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001650 cleanup_link_status_change_wq(netdev);
1651
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001652 delete_glists(lio);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001653
1654 free_netdev(netdev);
1655
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07001656 oct->props[ifidx].gmxport = -1;
1657
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001658 oct->props[ifidx].netdev = NULL;
1659}
1660
1661/**
1662 * \brief Stop complete NIC functionality
1663 * @param oct octeon device
1664 */
1665static int liquidio_stop_nic_module(struct octeon_device *oct)
1666{
1667 int i, j;
1668 struct lio *lio;
1669
1670 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1671 if (!oct->ifcount) {
1672 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1673 return 1;
1674 }
1675
Raghu Vatsavayi60441882016-06-21 22:53:08 -07001676 spin_lock_bh(&oct->cmd_resp_wqlock);
1677 oct->cmd_resp_state = OCT_DRV_OFFLINE;
1678 spin_unlock_bh(&oct->cmd_resp_wqlock);
1679
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001680 for (i = 0; i < oct->ifcount; i++) {
1681 lio = GET_LIO(oct->props[i].netdev);
1682 for (j = 0; j < lio->linfo.num_rxpciq; j++)
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001683 octeon_unregister_droq_ops(oct,
1684 lio->linfo.rxpciq[j].s.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001685 }
1686
1687 for (i = 0; i < oct->ifcount; i++)
1688 liquidio_destroy_nic_device(oct, i);
1689
1690 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1691 return 0;
1692}
1693
1694/**
1695 * \brief Cleans up resources at unload time
1696 * @param pdev PCI device structure
1697 */
1698static void liquidio_remove(struct pci_dev *pdev)
1699{
1700 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1701
1702 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1703
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001704 if (oct_dev->watchdog_task)
1705 kthread_stop(oct_dev->watchdog_task);
1706
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001707 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1708 liquidio_stop_nic_module(oct_dev);
1709
1710 /* Reset the octeon device and cleanup all memory allocated for
1711 * the octeon device by driver.
1712 */
1713 octeon_destroy_resources(oct_dev);
1714
1715 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1716
1717 /* This octeon device has been removed. Update the global
1718 * data structure to reflect this. Free the device structure.
1719 */
1720 octeon_free_device_mem(oct_dev);
1721}
1722
1723/**
1724 * \brief Identify the Octeon device and to map the BAR address space
1725 * @param oct octeon device
1726 */
1727static int octeon_chip_specific_setup(struct octeon_device *oct)
1728{
1729 u32 dev_id, rev_id;
1730 int ret = 1;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001731 char *s;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001732
1733 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1734 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1735 oct->rev_id = rev_id & 0xff;
1736
1737 switch (dev_id) {
1738 case OCTEON_CN68XX_PCIID:
1739 oct->chip_id = OCTEON_CN68XX;
1740 ret = lio_setup_cn68xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001741 s = "CN68XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001742 break;
1743
1744 case OCTEON_CN66XX_PCIID:
1745 oct->chip_id = OCTEON_CN66XX;
1746 ret = lio_setup_cn66xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001747 s = "CN66XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001748 break;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001749
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001750 case OCTEON_CN23XX_PCIID_PF:
1751 oct->chip_id = OCTEON_CN23XX_PF_VID;
1752 ret = setup_cn23xx_octeon_pf_device(oct);
1753 s = "CN23XX";
1754 break;
1755
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001756 default:
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001757 s = "?";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001758 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1759 dev_id);
1760 }
1761
1762 if (!ret)
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001763 dev_info(&oct->pci_dev->dev, "%s PASS%d.%d %s Version: %s\n", s,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001764 OCTEON_MAJOR_REV(oct),
1765 OCTEON_MINOR_REV(oct),
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001766 octeon_get_conf(oct)->card_name,
1767 LIQUIDIO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001768
1769 return ret;
1770}
1771
1772/**
1773 * \brief PCI initialization for each Octeon device.
1774 * @param oct octeon device
1775 */
1776static int octeon_pci_os_setup(struct octeon_device *oct)
1777{
1778 /* setup PCI stuff first */
1779 if (pci_enable_device(oct->pci_dev)) {
1780 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1781 return 1;
1782 }
1783
1784 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1785 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001786 pci_disable_device(oct->pci_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001787 return 1;
1788 }
1789
1790 /* Enable PCI DMA Master. */
1791 pci_set_master(oct->pci_dev);
1792
1793 return 0;
1794}
1795
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001796static inline int skb_iq(struct lio *lio, struct sk_buff *skb)
1797{
1798 int q = 0;
1799
1800 if (netif_is_multiqueue(lio->netdev))
1801 q = skb->queue_mapping % lio->linfo.num_txpciq;
1802
1803 return q;
1804}
1805
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001806/**
1807 * \brief Check Tx queue state for a given network buffer
1808 * @param lio per-network private data
1809 * @param skb network buffer
1810 */
1811static inline int check_txq_state(struct lio *lio, struct sk_buff *skb)
1812{
1813 int q = 0, iq = 0;
1814
1815 if (netif_is_multiqueue(lio->netdev)) {
1816 q = skb->queue_mapping;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001817 iq = lio->linfo.txpciq[(q % (lio->linfo.num_txpciq))].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001818 } else {
1819 iq = lio->txq;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001820 q = iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001821 }
1822
1823 if (octnet_iq_is_full(lio->oct_dev, iq))
1824 return 0;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001825
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001826 if (__netif_subqueue_stopped(lio->netdev, q)) {
1827 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq, tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001828 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001829 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001830 return 1;
1831}
1832
1833/**
1834 * \brief Unmap and free network buffer
1835 * @param buf buffer
1836 */
1837static void free_netbuf(void *buf)
1838{
1839 struct sk_buff *skb;
1840 struct octnet_buf_free_info *finfo;
1841 struct lio *lio;
1842
1843 finfo = (struct octnet_buf_free_info *)buf;
1844 skb = finfo->skb;
1845 lio = finfo->lio;
1846
1847 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1848 DMA_TO_DEVICE);
1849
1850 check_txq_state(lio, skb);
1851
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001852 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001853}
1854
1855/**
1856 * \brief Unmap and free gather buffer
1857 * @param buf buffer
1858 */
1859static void free_netsgbuf(void *buf)
1860{
1861 struct octnet_buf_free_info *finfo;
1862 struct sk_buff *skb;
1863 struct lio *lio;
1864 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001865 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001866
1867 finfo = (struct octnet_buf_free_info *)buf;
1868 skb = finfo->skb;
1869 lio = finfo->lio;
1870 g = finfo->g;
1871 frags = skb_shinfo(skb)->nr_frags;
1872
1873 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1874 g->sg[0].ptr[0], (skb->len - skb->data_len),
1875 DMA_TO_DEVICE);
1876
1877 i = 1;
1878 while (frags--) {
1879 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1880
1881 pci_unmap_page((lio->oct_dev)->pci_dev,
1882 g->sg[(i >> 2)].ptr[(i & 3)],
1883 frag->size, DMA_TO_DEVICE);
1884 i++;
1885 }
1886
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001887 dma_sync_single_for_cpu(&lio->oct_dev->pci_dev->dev,
1888 g->sg_dma_ptr, g->sg_size, DMA_TO_DEVICE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001889
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001890 iq = skb_iq(lio, skb);
1891 spin_lock(&lio->glist_lock[iq]);
1892 list_add_tail(&g->list, &lio->glist[iq]);
1893 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001894
1895 check_txq_state(lio, skb); /* mq support: sub-queue state check */
1896
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001897 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001898}
1899
1900/**
1901 * \brief Unmap and free gather buffer with response
1902 * @param buf buffer
1903 */
1904static void free_netsgbuf_with_resp(void *buf)
1905{
1906 struct octeon_soft_command *sc;
1907 struct octnet_buf_free_info *finfo;
1908 struct sk_buff *skb;
1909 struct lio *lio;
1910 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001911 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001912
1913 sc = (struct octeon_soft_command *)buf;
1914 skb = (struct sk_buff *)sc->callback_arg;
1915 finfo = (struct octnet_buf_free_info *)&skb->cb;
1916
1917 lio = finfo->lio;
1918 g = finfo->g;
1919 frags = skb_shinfo(skb)->nr_frags;
1920
1921 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1922 g->sg[0].ptr[0], (skb->len - skb->data_len),
1923 DMA_TO_DEVICE);
1924
1925 i = 1;
1926 while (frags--) {
1927 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1928
1929 pci_unmap_page((lio->oct_dev)->pci_dev,
1930 g->sg[(i >> 2)].ptr[(i & 3)],
1931 frag->size, DMA_TO_DEVICE);
1932 i++;
1933 }
1934
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001935 dma_sync_single_for_cpu(&lio->oct_dev->pci_dev->dev,
1936 g->sg_dma_ptr, g->sg_size, DMA_TO_DEVICE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001937
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001938 iq = skb_iq(lio, skb);
1939
1940 spin_lock(&lio->glist_lock[iq]);
1941 list_add_tail(&g->list, &lio->glist[iq]);
1942 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001943
1944 /* Don't free the skb yet */
1945
1946 check_txq_state(lio, skb);
1947}
1948
1949/**
1950 * \brief Adjust ptp frequency
1951 * @param ptp PTP clock info
1952 * @param ppb how much to adjust by, in parts-per-billion
1953 */
1954static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
1955{
1956 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1957 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1958 u64 comp, delta;
1959 unsigned long flags;
1960 bool neg_adj = false;
1961
1962 if (ppb < 0) {
1963 neg_adj = true;
1964 ppb = -ppb;
1965 }
1966
1967 /* The hardware adds the clock compensation value to the
1968 * PTP clock on every coprocessor clock cycle, so we
1969 * compute the delta in terms of coprocessor clocks.
1970 */
1971 delta = (u64)ppb << 32;
1972 do_div(delta, oct->coproc_clock_rate);
1973
1974 spin_lock_irqsave(&lio->ptp_lock, flags);
1975 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
1976 if (neg_adj)
1977 comp -= delta;
1978 else
1979 comp += delta;
1980 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
1981 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1982
1983 return 0;
1984}
1985
1986/**
1987 * \brief Adjust ptp time
1988 * @param ptp PTP clock info
1989 * @param delta how much to adjust by, in nanosecs
1990 */
1991static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
1992{
1993 unsigned long flags;
1994 struct lio *lio = container_of(ptp, struct lio, ptp_info);
1995
1996 spin_lock_irqsave(&lio->ptp_lock, flags);
1997 lio->ptp_adjust += delta;
1998 spin_unlock_irqrestore(&lio->ptp_lock, flags);
1999
2000 return 0;
2001}
2002
2003/**
2004 * \brief Get hardware clock time, including any adjustment
2005 * @param ptp PTP clock info
2006 * @param ts timespec
2007 */
2008static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
2009 struct timespec64 *ts)
2010{
2011 u64 ns;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002012 unsigned long flags;
2013 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2014 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2015
2016 spin_lock_irqsave(&lio->ptp_lock, flags);
2017 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
2018 ns += lio->ptp_adjust;
2019 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2020
Kefeng Wang286af312016-01-27 17:34:37 +08002021 *ts = ns_to_timespec64(ns);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002022
2023 return 0;
2024}
2025
2026/**
2027 * \brief Set hardware clock time. Reset adjustment
2028 * @param ptp PTP clock info
2029 * @param ts timespec
2030 */
2031static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
2032 const struct timespec64 *ts)
2033{
2034 u64 ns;
2035 unsigned long flags;
2036 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2037 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2038
2039 ns = timespec_to_ns(ts);
2040
2041 spin_lock_irqsave(&lio->ptp_lock, flags);
2042 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
2043 lio->ptp_adjust = 0;
2044 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2045
2046 return 0;
2047}
2048
2049/**
2050 * \brief Check if PTP is enabled
2051 * @param ptp PTP clock info
2052 * @param rq request
2053 * @param on is it on
2054 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002055static int
2056liquidio_ptp_enable(struct ptp_clock_info *ptp __attribute__((unused)),
2057 struct ptp_clock_request *rq __attribute__((unused)),
2058 int on __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002059{
2060 return -EOPNOTSUPP;
2061}
2062
2063/**
2064 * \brief Open PTP clock source
2065 * @param netdev network device
2066 */
2067static void oct_ptp_open(struct net_device *netdev)
2068{
2069 struct lio *lio = GET_LIO(netdev);
2070 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2071
2072 spin_lock_init(&lio->ptp_lock);
2073
2074 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
2075 lio->ptp_info.owner = THIS_MODULE;
2076 lio->ptp_info.max_adj = 250000000;
2077 lio->ptp_info.n_alarm = 0;
2078 lio->ptp_info.n_ext_ts = 0;
2079 lio->ptp_info.n_per_out = 0;
2080 lio->ptp_info.pps = 0;
2081 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
2082 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
2083 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
2084 lio->ptp_info.settime64 = liquidio_ptp_settime;
2085 lio->ptp_info.enable = liquidio_ptp_enable;
2086
2087 lio->ptp_adjust = 0;
2088
2089 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
2090 &oct->pci_dev->dev);
2091
2092 if (IS_ERR(lio->ptp_clock))
2093 lio->ptp_clock = NULL;
2094}
2095
2096/**
2097 * \brief Init PTP clock
2098 * @param oct octeon device
2099 */
2100static void liquidio_ptp_init(struct octeon_device *oct)
2101{
2102 u64 clock_comp, cfg;
2103
2104 clock_comp = (u64)NSEC_PER_SEC << 32;
2105 do_div(clock_comp, oct->coproc_clock_rate);
2106 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
2107
2108 /* Enable */
2109 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
2110 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
2111}
2112
2113/**
2114 * \brief Load firmware to device
2115 * @param oct octeon device
2116 *
2117 * Maps device to firmware filename, requests firmware, and downloads it
2118 */
2119static int load_firmware(struct octeon_device *oct)
2120{
2121 int ret = 0;
2122 const struct firmware *fw;
2123 char fw_name[LIO_MAX_FW_FILENAME_LEN];
2124 char *tmp_fw_type;
2125
2126 if (strncmp(fw_type, LIO_FW_NAME_TYPE_NONE,
2127 sizeof(LIO_FW_NAME_TYPE_NONE)) == 0) {
2128 dev_info(&oct->pci_dev->dev, "Skipping firmware load\n");
2129 return ret;
2130 }
2131
2132 if (fw_type[0] == '\0')
2133 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
2134 else
2135 tmp_fw_type = fw_type;
2136
2137 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
2138 octeon_get_conf(oct)->card_name, tmp_fw_type,
2139 LIO_FW_NAME_SUFFIX);
2140
2141 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
2142 if (ret) {
2143 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n.",
2144 fw_name);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002145 release_firmware(fw);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002146 return ret;
2147 }
2148
2149 ret = octeon_download_firmware(oct, fw->data, fw->size);
2150
2151 release_firmware(fw);
2152
2153 return ret;
2154}
2155
2156/**
2157 * \brief Setup output queue
2158 * @param oct octeon device
2159 * @param q_no which queue
2160 * @param num_descs how many descriptors
2161 * @param desc_size size of each descriptor
2162 * @param app_ctx application context
2163 */
2164static int octeon_setup_droq(struct octeon_device *oct, int q_no, int num_descs,
2165 int desc_size, void *app_ctx)
2166{
2167 int ret_val = 0;
2168
2169 dev_dbg(&oct->pci_dev->dev, "Creating Droq: %d\n", q_no);
2170 /* droq creation and local register settings. */
2171 ret_val = octeon_create_droq(oct, q_no, num_descs, desc_size, app_ctx);
Amitoj Kaur Chawla08a965e2016-02-04 19:25:13 +05302172 if (ret_val < 0)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002173 return ret_val;
2174
2175 if (ret_val == 1) {
2176 dev_dbg(&oct->pci_dev->dev, "Using default droq %d\n", q_no);
2177 return 0;
2178 }
2179 /* tasklet creation for the droq */
2180
2181 /* Enable the droq queues */
2182 octeon_set_droq_pkt_op(oct, q_no, 1);
2183
2184 /* Send Credit for Octeon Output queues. Credits are always
2185 * sent after the output queue is enabled.
2186 */
2187 writel(oct->droq[q_no]->max_count,
2188 oct->droq[q_no]->pkts_credit_reg);
2189
2190 return ret_val;
2191}
2192
2193/**
2194 * \brief Callback for getting interface configuration
2195 * @param status status of request
2196 * @param buf pointer to resp structure
2197 */
2198static void if_cfg_callback(struct octeon_device *oct,
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002199 u32 status __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002200 void *buf)
2201{
2202 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
2203 struct liquidio_if_cfg_resp *resp;
2204 struct liquidio_if_cfg_context *ctx;
2205
2206 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07002207 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002208
2209 oct = lio_get_device(ctx->octeon_id);
2210 if (resp->status)
2211 dev_err(&oct->pci_dev->dev, "nic if cfg instruction failed. Status: %llx\n",
2212 CVM_CAST64(resp->status));
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002213 WRITE_ONCE(ctx->cond, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002214
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002215 snprintf(oct->fw_info.liquidio_firmware_version, 32, "%s",
2216 resp->cfg_info.liquidio_firmware_version);
2217
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002218 /* This barrier is required to be sure that the response has been
2219 * written fully before waking up the handler
2220 */
2221 wmb();
2222
2223 wake_up_interruptible(&ctx->wc);
2224}
2225
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002226/** Routine to push packets arriving on Octeon interface upto network layer.
2227 * @param oct_id - octeon device id.
2228 * @param skbuff - skbuff struct to be passed to network layer.
2229 * @param len - size of total data received.
2230 * @param rh - Control header associated with the packet
2231 * @param param - additional control data with the packet
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002232 * @param arg - farg registered in droq_ops
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002233 */
2234static void
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002235liquidio_push_packet(u32 octeon_id __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002236 void *skbuff,
2237 u32 len,
2238 union octeon_rh *rh,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002239 void *param,
2240 void *arg)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002241{
2242 struct napi_struct *napi = param;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002243 struct sk_buff *skb = (struct sk_buff *)skbuff;
2244 struct skb_shared_hwtstamps *shhwtstamps;
2245 u64 ns;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002246 u16 vtag = 0;
Prasad Kannegantide28c992017-01-09 14:42:40 -08002247 u32 r_dh_off;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002248 struct net_device *netdev = (struct net_device *)arg;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002249 struct octeon_droq *droq = container_of(param, struct octeon_droq,
2250 napi);
2251 if (netdev) {
2252 int packet_was_received;
2253 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002254 struct octeon_device *oct = lio->oct_dev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002255
2256 /* Do not proceed if the interface is not in RUNNING state. */
2257 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING)) {
2258 recv_buffer_free(skb);
2259 droq->stats.rx_dropped++;
2260 return;
2261 }
2262
2263 skb->dev = netdev;
2264
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002265 skb_record_rx_queue(skb, droq->q_no);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07002266 if (likely(len > MIN_SKB_SIZE)) {
2267 struct octeon_skb_page_info *pg_info;
2268 unsigned char *va;
2269
2270 pg_info = ((struct octeon_skb_page_info *)(skb->cb));
2271 if (pg_info->page) {
2272 /* For Paged allocation use the frags */
2273 va = page_address(pg_info->page) +
2274 pg_info->page_offset;
2275 memcpy(skb->data, va, MIN_SKB_SIZE);
2276 skb_put(skb, MIN_SKB_SIZE);
2277 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
2278 pg_info->page,
2279 pg_info->page_offset +
2280 MIN_SKB_SIZE,
2281 len - MIN_SKB_SIZE,
2282 LIO_RXBUFFER_SZ);
2283 }
2284 } else {
2285 struct octeon_skb_page_info *pg_info =
2286 ((struct octeon_skb_page_info *)(skb->cb));
2287 skb_copy_to_linear_data(skb, page_address(pg_info->page)
2288 + pg_info->page_offset, len);
2289 skb_put(skb, len);
2290 put_page(pg_info->page);
2291 }
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002292
Prasad Kannegantide28c992017-01-09 14:42:40 -08002293 r_dh_off = (rh->r_dh.len - 1) * BYTES_PER_DHLEN_UNIT;
2294
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002295 if (((oct->chip_id == OCTEON_CN66XX) ||
2296 (oct->chip_id == OCTEON_CN68XX)) &&
2297 ptp_enable) {
2298 if (rh->r_dh.has_hwtstamp) {
2299 /* timestamp is included from the hardware at
2300 * the beginning of the packet.
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002301 */
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002302 if (ifstate_check
2303 (lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED)) {
2304 /* Nanoseconds are in the first 64-bits
2305 * of the packet.
2306 */
Prasad Kannegantide28c992017-01-09 14:42:40 -08002307 memcpy(&ns, (skb->data + r_dh_off),
2308 sizeof(ns));
2309 r_dh_off -= BYTES_PER_DHLEN_UNIT;
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002310 shhwtstamps = skb_hwtstamps(skb);
2311 shhwtstamps->hwtstamp =
2312 ns_to_ktime(ns +
2313 lio->ptp_adjust);
2314 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002315 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002316 }
2317
Prasad Kannegantide28c992017-01-09 14:42:40 -08002318 if (rh->r_dh.has_hash) {
2319 __be32 *hash_be = (__be32 *)(skb->data + r_dh_off);
2320 u32 hash = be32_to_cpu(*hash_be);
2321
2322 skb_set_hash(skb, hash, PKT_HASH_TYPE_L4);
2323 r_dh_off -= BYTES_PER_DHLEN_UNIT;
2324 }
2325
2326 skb_pull(skb, rh->r_dh.len * BYTES_PER_DHLEN_UNIT);
2327
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002328 skb->protocol = eth_type_trans(skb, skb->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002329 if ((netdev->features & NETIF_F_RXCSUM) &&
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002330 (((rh->r_dh.encap_on) &&
2331 (rh->r_dh.csum_verified & CNNIC_TUN_CSUM_VERIFIED)) ||
2332 (!(rh->r_dh.encap_on) &&
2333 (rh->r_dh.csum_verified & CNNIC_CSUM_VERIFIED))))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002334 /* checksum has already been verified */
2335 skb->ip_summed = CHECKSUM_UNNECESSARY;
2336 else
2337 skb->ip_summed = CHECKSUM_NONE;
2338
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002339 /* Setting Encapsulation field on basis of status received
2340 * from the firmware
2341 */
2342 if (rh->r_dh.encap_on) {
2343 skb->encapsulation = 1;
2344 skb->csum_level = 1;
2345 droq->stats.rx_vxlan++;
2346 }
2347
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002348 /* inbound VLAN tag */
2349 if ((netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
2350 (rh->r_dh.vlan != 0)) {
2351 u16 vid = rh->r_dh.vlan;
2352 u16 priority = rh->r_dh.priority;
2353
2354 vtag = priority << 13 | vid;
2355 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
2356 }
2357
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002358 packet_was_received = napi_gro_receive(napi, skb) != GRO_DROP;
2359
2360 if (packet_was_received) {
2361 droq->stats.rx_bytes_received += len;
2362 droq->stats.rx_pkts_received++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002363 } else {
2364 droq->stats.rx_dropped++;
2365 netif_info(lio, rx_err, lio->netdev,
2366 "droq:%d error rx_dropped:%llu\n",
2367 droq->q_no, droq->stats.rx_dropped);
2368 }
2369
2370 } else {
2371 recv_buffer_free(skb);
2372 }
2373}
2374
2375/**
2376 * \brief wrapper for calling napi_schedule
2377 * @param param parameters to pass to napi_schedule
2378 *
2379 * Used when scheduling on different CPUs
2380 */
2381static void napi_schedule_wrapper(void *param)
2382{
2383 struct napi_struct *napi = param;
2384
2385 napi_schedule(napi);
2386}
2387
2388/**
2389 * \brief callback when receive interrupt occurs and we are in NAPI mode
2390 * @param arg pointer to octeon output queue
2391 */
2392static void liquidio_napi_drv_callback(void *arg)
2393{
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002394 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002395 struct octeon_droq *droq = arg;
2396 int this_cpu = smp_processor_id();
2397
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002398 oct = droq->oct_dev;
2399
2400 if (OCTEON_CN23XX_PF(oct) || droq->cpu_id == this_cpu) {
2401 napi_schedule_irqoff(&droq->napi);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002402 } else {
2403 struct call_single_data *csd = &droq->csd;
2404
2405 csd->func = napi_schedule_wrapper;
2406 csd->info = &droq->napi;
2407 csd->flags = 0;
2408
2409 smp_call_function_single_async(droq->cpu_id, csd);
2410 }
2411}
2412
2413/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002414 * \brief Entry point for NAPI polling
2415 * @param napi NAPI structure
2416 * @param budget maximum number of items to process
2417 */
2418static int liquidio_napi_poll(struct napi_struct *napi, int budget)
2419{
2420 struct octeon_droq *droq;
2421 int work_done;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002422 int tx_done = 0, iq_no;
2423 struct octeon_instr_queue *iq;
2424 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002425
2426 droq = container_of(napi, struct octeon_droq, napi);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002427 oct = droq->oct_dev;
2428 iq_no = droq->q_no;
2429 /* Handle Droq descriptors */
2430 work_done = octeon_process_droq_poll_cmd(oct, droq->q_no,
2431 POLL_EVENT_PROCESS_PKTS,
2432 budget);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002433
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002434 /* Flush the instruction queue */
2435 iq = oct->instr_queue[iq_no];
2436 if (iq) {
2437 /* Process iq buffers with in the budget limits */
Derek Chickles60889862017-01-06 17:16:12 -08002438 tx_done = octeon_flush_iq(oct, iq, budget);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002439 /* Update iq read-index rather than waiting for next interrupt.
2440 * Return back if tx_done is false.
2441 */
2442 update_txq_status(oct, iq_no);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002443 } else {
2444 dev_err(&oct->pci_dev->dev, "%s: iq (%d) num invalid\n",
2445 __func__, iq_no);
2446 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002447
Satanand Burlacdb478e2017-01-31 13:04:42 -08002448 /* force enable interrupt if reg cnts are high to avoid wraparound */
2449 if ((work_done < budget && tx_done) ||
2450 (iq->pkt_in_done >= MAX_REG_CNT) ||
2451 (droq->pkt_count >= MAX_REG_CNT)) {
2452 tx_done = 1;
Eric Dumazet6ad20162017-01-30 08:22:01 -08002453 napi_complete_done(napi, work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002454 octeon_process_droq_poll_cmd(droq->oct_dev, droq->q_no,
2455 POLL_EVENT_ENABLE_INTR, 0);
2456 return 0;
2457 }
2458
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002459 return (!tx_done) ? (budget) : (work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002460}
2461
2462/**
2463 * \brief Setup input and output queues
2464 * @param octeon_dev octeon device
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07002465 * @param ifidx Interface Index
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002466 *
2467 * Note: Queues are with respect to the octeon device. Thus
2468 * an input queue is for egress packets, and output queues
2469 * are for ingress packets.
2470 */
2471static inline int setup_io_queues(struct octeon_device *octeon_dev,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002472 int ifidx)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002473{
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002474 struct octeon_droq_ops droq_ops;
2475 struct net_device *netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002476 static int cpu_id;
2477 static int cpu_id_modulus;
2478 struct octeon_droq *droq;
2479 struct napi_struct *napi;
2480 int q, q_no, retval = 0;
2481 struct lio *lio;
2482 int num_tx_descs;
2483
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002484 netdev = octeon_dev->props[ifidx].netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002485
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002486 lio = GET_LIO(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002487
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002488 memset(&droq_ops, 0, sizeof(struct octeon_droq_ops));
2489
2490 droq_ops.fptr = liquidio_push_packet;
2491 droq_ops.farg = (void *)netdev;
2492
2493 droq_ops.poll_mode = 1;
2494 droq_ops.napi_fn = liquidio_napi_drv_callback;
2495 cpu_id = 0;
2496 cpu_id_modulus = num_present_cpus();
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002497
2498 /* set up DROQs. */
2499 for (q = 0; q < lio->linfo.num_rxpciq; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002500 q_no = lio->linfo.rxpciq[q].s.q_no;
2501 dev_dbg(&octeon_dev->pci_dev->dev,
2502 "setup_io_queues index:%d linfo.rxpciq.s.q_no:%d\n",
2503 q, q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002504 retval = octeon_setup_droq(octeon_dev, q_no,
2505 CFG_GET_NUM_RX_DESCS_NIC_IF
2506 (octeon_get_conf(octeon_dev),
2507 lio->ifidx),
2508 CFG_GET_NUM_RX_BUF_SIZE_NIC_IF
2509 (octeon_get_conf(octeon_dev),
2510 lio->ifidx), NULL);
2511 if (retval) {
2512 dev_err(&octeon_dev->pci_dev->dev,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002513 "%s : Runtime DROQ(RxQ) creation failed.\n",
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002514 __func__);
2515 return 1;
2516 }
2517
2518 droq = octeon_dev->droq[q_no];
2519 napi = &droq->napi;
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07002520 dev_dbg(&octeon_dev->pci_dev->dev, "netif_napi_add netdev:%llx oct:%llx pf_num:%d\n",
2521 (u64)netdev, (u64)octeon_dev, octeon_dev->pf_num);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002522 netif_napi_add(netdev, napi, liquidio_napi_poll, 64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002523
2524 /* designate a CPU for this droq */
2525 droq->cpu_id = cpu_id;
2526 cpu_id++;
2527 if (cpu_id >= cpu_id_modulus)
2528 cpu_id = 0;
2529
2530 octeon_register_droq_ops(octeon_dev, q_no, &droq_ops);
2531 }
2532
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002533 if (OCTEON_CN23XX_PF(octeon_dev)) {
2534 /* 23XX PF can receive control messages (via the first PF-owned
2535 * droq) from the firmware even if the ethX interface is down,
2536 * so that's why poll_mode must be off for the first droq.
2537 */
2538 octeon_dev->droq[0]->ops.poll_mode = 0;
2539 }
2540
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002541 /* set up IQs. */
2542 for (q = 0; q < lio->linfo.num_txpciq; q++) {
2543 num_tx_descs = CFG_GET_NUM_TX_DESCS_NIC_IF(octeon_get_conf
2544 (octeon_dev),
2545 lio->ifidx);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002546 retval = octeon_setup_iq(octeon_dev, ifidx, q,
2547 lio->linfo.txpciq[q], num_tx_descs,
2548 netdev_get_tx_queue(netdev, q));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002549 if (retval) {
2550 dev_err(&octeon_dev->pci_dev->dev,
2551 " %s : Runtime IQ(TxQ) creation failed.\n",
2552 __func__);
2553 return 1;
2554 }
2555 }
2556
2557 return 0;
2558}
2559
2560/**
2561 * \brief Poll routine for checking transmit queue status
2562 * @param work work_struct data structure
2563 */
2564static void octnet_poll_check_txq_status(struct work_struct *work)
2565{
2566 struct cavium_wk *wk = (struct cavium_wk *)work;
2567 struct lio *lio = (struct lio *)wk->ctxptr;
2568
2569 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
2570 return;
2571
2572 check_txq_status(lio);
2573 queue_delayed_work(lio->txq_status_wq.wq,
2574 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2575}
2576
2577/**
2578 * \brief Sets up the txq poll check
2579 * @param netdev network device
2580 */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002581static inline int setup_tx_poll_fn(struct net_device *netdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002582{
2583 struct lio *lio = GET_LIO(netdev);
2584 struct octeon_device *oct = lio->oct_dev;
2585
Bhaktipriya Shridhar292b9da2016-06-08 01:47:59 +05302586 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
2587 WQ_MEM_RECLAIM, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002588 if (!lio->txq_status_wq.wq) {
2589 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002590 return -1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002591 }
2592 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
2593 octnet_poll_check_txq_status);
2594 lio->txq_status_wq.wk.ctxptr = lio;
2595 queue_delayed_work(lio->txq_status_wq.wq,
2596 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002597 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002598}
2599
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002600static inline void cleanup_tx_poll_fn(struct net_device *netdev)
2601{
2602 struct lio *lio = GET_LIO(netdev);
2603
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002604 if (lio->txq_status_wq.wq) {
2605 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
2606 destroy_workqueue(lio->txq_status_wq.wq);
2607 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002608}
2609
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002610/**
2611 * \brief Net device open for LiquidIO
2612 * @param netdev network device
2613 */
2614static int liquidio_open(struct net_device *netdev)
2615{
2616 struct lio *lio = GET_LIO(netdev);
2617 struct octeon_device *oct = lio->oct_dev;
2618 struct napi_struct *napi, *n;
2619
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002620 if (oct->props[lio->ifidx].napi_enabled == 0) {
2621 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2622 napi_enable(napi);
2623
2624 oct->props[lio->ifidx].napi_enabled = 1;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002625
2626 if (OCTEON_CN23XX_PF(oct))
2627 oct->droq[0]->ops.poll_mode = 1;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002628 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002629
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002630 if ((oct->chip_id == OCTEON_CN66XX || oct->chip_id == OCTEON_CN68XX) &&
2631 ptp_enable)
2632 oct_ptp_open(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002633
2634 ifstate_set(lio, LIO_IFSTATE_RUNNING);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002635
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002636 /* Ready for link status updates */
2637 lio->intf_open = 1;
2638
2639 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
2640
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002641 if (OCTEON_CN23XX_PF(oct)) {
2642 if (!oct->msix_on)
2643 if (setup_tx_poll_fn(netdev))
2644 return -1;
2645 } else {
2646 if (setup_tx_poll_fn(netdev))
2647 return -1;
2648 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002649
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002650 start_txq(netdev);
2651
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002652 /* tell Octeon to start forwarding packets to host */
2653 send_rx_ctrl_cmd(lio, 1);
2654
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002655 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
2656 netdev->name);
2657
2658 return 0;
2659}
2660
2661/**
2662 * \brief Net device stop for LiquidIO
2663 * @param netdev network device
2664 */
2665static int liquidio_stop(struct net_device *netdev)
2666{
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002667 struct lio *lio = GET_LIO(netdev);
2668 struct octeon_device *oct = lio->oct_dev;
2669
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002670 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
2671
2672 netif_tx_disable(netdev);
2673
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002674 /* Inform that netif carrier is down */
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002675 netif_carrier_off(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002676 lio->intf_open = 0;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002677 lio->linfo.link.s.link_up = 0;
2678 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002679
Felix Manlunascb2336b2017-01-11 17:09:02 -08002680 /* Tell Octeon that nic interface is down. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002681 send_rx_ctrl_cmd(lio, 0);
2682
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002683 if (OCTEON_CN23XX_PF(oct)) {
2684 if (!oct->msix_on)
2685 cleanup_tx_poll_fn(netdev);
2686 } else {
2687 cleanup_tx_poll_fn(netdev);
2688 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002689
2690 if (lio->ptp_clock) {
2691 ptp_clock_unregister(lio->ptp_clock);
2692 lio->ptp_clock = NULL;
2693 }
2694
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002695 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002696
2697 return 0;
2698}
2699
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002700/**
2701 * \brief Converts a mask based on net device flags
2702 * @param netdev network device
2703 *
2704 * This routine generates a octnet_ifflags mask from the net device flags
2705 * received from the OS.
2706 */
2707static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
2708{
2709 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
2710
2711 if (netdev->flags & IFF_PROMISC)
2712 f |= OCTNET_IFFLAG_PROMISC;
2713
2714 if (netdev->flags & IFF_ALLMULTI)
2715 f |= OCTNET_IFFLAG_ALLMULTI;
2716
2717 if (netdev->flags & IFF_MULTICAST) {
2718 f |= OCTNET_IFFLAG_MULTICAST;
2719
2720 /* Accept all multicast addresses if there are more than we
2721 * can handle
2722 */
2723 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
2724 f |= OCTNET_IFFLAG_ALLMULTI;
2725 }
2726
2727 if (netdev->flags & IFF_BROADCAST)
2728 f |= OCTNET_IFFLAG_BROADCAST;
2729
2730 return f;
2731}
2732
2733/**
2734 * \brief Net device set_multicast_list
2735 * @param netdev network device
2736 */
2737static void liquidio_set_mcast_list(struct net_device *netdev)
2738{
2739 struct lio *lio = GET_LIO(netdev);
2740 struct octeon_device *oct = lio->oct_dev;
2741 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002742 struct netdev_hw_addr *ha;
2743 u64 *mc;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002744 int ret;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002745 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
2746
2747 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2748
2749 /* Create a ctrl pkt command to be sent to core app. */
2750 nctrl.ncmd.u64 = 0;
2751 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002752 nctrl.ncmd.s.param1 = get_new_flags(netdev);
2753 nctrl.ncmd.s.param2 = mc_count;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002754 nctrl.ncmd.s.more = mc_count;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002755 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002756 nctrl.netpndev = (u64)netdev;
2757 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2758
2759 /* copy all the addresses into the udd */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002760 mc = &nctrl.udd[0];
2761 netdev_for_each_mc_addr(ha, netdev) {
2762 *mc = 0;
2763 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
2764 /* no need to swap bytes */
2765
2766 if (++mc > &nctrl.udd[mc_count])
2767 break;
2768 }
2769
2770 /* Apparently, any activity in this call from the kernel has to
2771 * be atomic. So we won't wait for response.
2772 */
2773 nctrl.wait_time = 0;
2774
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002775 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002776 if (ret < 0) {
2777 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
2778 ret);
2779 }
2780}
2781
2782/**
2783 * \brief Net device set_mac_address
2784 * @param netdev network device
2785 */
2786static int liquidio_set_mac(struct net_device *netdev, void *p)
2787{
2788 int ret = 0;
2789 struct lio *lio = GET_LIO(netdev);
2790 struct octeon_device *oct = lio->oct_dev;
2791 struct sockaddr *addr = (struct sockaddr *)p;
2792 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002793
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002794 if (!is_valid_ether_addr(addr->sa_data))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002795 return -EADDRNOTAVAIL;
2796
2797 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2798
2799 nctrl.ncmd.u64 = 0;
2800 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002801 nctrl.ncmd.s.param1 = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002802 nctrl.ncmd.s.more = 1;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002803 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002804 nctrl.netpndev = (u64)netdev;
2805 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2806 nctrl.wait_time = 100;
2807
2808 nctrl.udd[0] = 0;
2809 /* The MAC Address is presented in network byte order. */
2810 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2811
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002812 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002813 if (ret < 0) {
2814 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2815 return -ENOMEM;
2816 }
2817 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2818 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2819
2820 return 0;
2821}
2822
2823/**
2824 * \brief Net device get_stats
2825 * @param netdev network device
2826 */
2827static struct net_device_stats *liquidio_get_stats(struct net_device *netdev)
2828{
2829 struct lio *lio = GET_LIO(netdev);
2830 struct net_device_stats *stats = &netdev->stats;
2831 struct octeon_device *oct;
2832 u64 pkts = 0, drop = 0, bytes = 0;
2833 struct oct_droq_stats *oq_stats;
2834 struct oct_iq_stats *iq_stats;
2835 int i, iq_no, oq_no;
2836
2837 oct = lio->oct_dev;
2838
2839 for (i = 0; i < lio->linfo.num_txpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002840 iq_no = lio->linfo.txpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002841 iq_stats = &oct->instr_queue[iq_no]->stats;
2842 pkts += iq_stats->tx_done;
2843 drop += iq_stats->tx_dropped;
2844 bytes += iq_stats->tx_tot_bytes;
2845 }
2846
2847 stats->tx_packets = pkts;
2848 stats->tx_bytes = bytes;
2849 stats->tx_dropped = drop;
2850
2851 pkts = 0;
2852 drop = 0;
2853 bytes = 0;
2854
2855 for (i = 0; i < lio->linfo.num_rxpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002856 oq_no = lio->linfo.rxpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002857 oq_stats = &oct->droq[oq_no]->stats;
2858 pkts += oq_stats->rx_pkts_received;
2859 drop += (oq_stats->rx_dropped +
2860 oq_stats->dropped_nodispatch +
2861 oq_stats->dropped_toomany +
2862 oq_stats->dropped_nomem);
2863 bytes += oq_stats->rx_bytes_received;
2864 }
2865
2866 stats->rx_bytes = bytes;
2867 stats->rx_packets = pkts;
2868 stats->rx_dropped = drop;
2869
2870 return stats;
2871}
2872
2873/**
2874 * \brief Net device change_mtu
2875 * @param netdev network device
2876 */
2877static int liquidio_change_mtu(struct net_device *netdev, int new_mtu)
2878{
2879 struct lio *lio = GET_LIO(netdev);
2880 struct octeon_device *oct = lio->oct_dev;
2881 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002882 int ret = 0;
2883
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002884 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2885
2886 nctrl.ncmd.u64 = 0;
2887 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MTU;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002888 nctrl.ncmd.s.param1 = new_mtu;
2889 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002890 nctrl.wait_time = 100;
2891 nctrl.netpndev = (u64)netdev;
2892 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
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, "Failed to set MTU\n");
2897 return -1;
2898 }
2899
2900 lio->mtu = new_mtu;
2901
2902 return 0;
2903}
2904
2905/**
2906 * \brief Handler for SIOCSHWTSTAMP ioctl
2907 * @param netdev network device
2908 * @param ifr interface request
2909 * @param cmd command
2910 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002911static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002912{
2913 struct hwtstamp_config conf;
2914 struct lio *lio = GET_LIO(netdev);
2915
2916 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
2917 return -EFAULT;
2918
2919 if (conf.flags)
2920 return -EINVAL;
2921
2922 switch (conf.tx_type) {
2923 case HWTSTAMP_TX_ON:
2924 case HWTSTAMP_TX_OFF:
2925 break;
2926 default:
2927 return -ERANGE;
2928 }
2929
2930 switch (conf.rx_filter) {
2931 case HWTSTAMP_FILTER_NONE:
2932 break;
2933 case HWTSTAMP_FILTER_ALL:
2934 case HWTSTAMP_FILTER_SOME:
2935 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
2936 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
2937 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
2938 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
2939 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
2940 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
2941 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
2942 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
2943 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
2944 case HWTSTAMP_FILTER_PTP_V2_EVENT:
2945 case HWTSTAMP_FILTER_PTP_V2_SYNC:
2946 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
2947 conf.rx_filter = HWTSTAMP_FILTER_ALL;
2948 break;
2949 default:
2950 return -ERANGE;
2951 }
2952
2953 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
2954 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2955
2956 else
2957 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
2958
2959 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
2960}
2961
2962/**
2963 * \brief ioctl handler
2964 * @param netdev network device
2965 * @param ifr interface request
2966 * @param cmd command
2967 */
2968static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
2969{
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002970 struct lio *lio = GET_LIO(netdev);
2971
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002972 switch (cmd) {
2973 case SIOCSHWTSTAMP:
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002974 if ((lio->oct_dev->chip_id == OCTEON_CN66XX ||
2975 lio->oct_dev->chip_id == OCTEON_CN68XX) && ptp_enable)
2976 return hwtstamp_ioctl(netdev, ifr);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002977 default:
2978 return -EOPNOTSUPP;
2979 }
2980}
2981
2982/**
2983 * \brief handle a Tx timestamp response
2984 * @param status response status
2985 * @param buf pointer to skb
2986 */
2987static void handle_timestamp(struct octeon_device *oct,
2988 u32 status,
2989 void *buf)
2990{
2991 struct octnet_buf_free_info *finfo;
2992 struct octeon_soft_command *sc;
2993 struct oct_timestamp_resp *resp;
2994 struct lio *lio;
2995 struct sk_buff *skb = (struct sk_buff *)buf;
2996
2997 finfo = (struct octnet_buf_free_info *)skb->cb;
2998 lio = finfo->lio;
2999 sc = finfo->sc;
3000 oct = lio->oct_dev;
3001 resp = (struct oct_timestamp_resp *)sc->virtrptr;
3002
3003 if (status != OCTEON_REQUEST_DONE) {
3004 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
3005 CVM_CAST64(status));
3006 resp->timestamp = 0;
3007 }
3008
3009 octeon_swap_8B_data(&resp->timestamp, 1);
3010
Colin Ian King19a6d152016-02-05 16:30:39 +00003011 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003012 struct skb_shared_hwtstamps ts;
3013 u64 ns = resp->timestamp;
3014
3015 netif_info(lio, tx_done, lio->netdev,
3016 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
3017 skb, (unsigned long long)ns);
3018 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
3019 skb_tstamp_tx(skb, &ts);
3020 }
3021
3022 octeon_free_soft_command(oct, sc);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003023 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003024}
3025
3026/* \brief Send a data packet that will be timestamped
3027 * @param oct octeon device
3028 * @param ndata pointer to network data
3029 * @param finfo pointer to private network data
3030 */
3031static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
3032 struct octnic_data_pkt *ndata,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003033 struct octnet_buf_free_info *finfo)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003034{
3035 int retval;
3036 struct octeon_soft_command *sc;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003037 struct lio *lio;
3038 int ring_doorbell;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003039 u32 len;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003040
3041 lio = finfo->lio;
3042
3043 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
3044 sizeof(struct oct_timestamp_resp));
3045 finfo->sc = sc;
3046
3047 if (!sc) {
3048 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
3049 return IQ_SEND_FAILED;
3050 }
3051
3052 if (ndata->reqtype == REQTYPE_NORESP_NET)
3053 ndata->reqtype = REQTYPE_RESP_NET;
3054 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
3055 ndata->reqtype = REQTYPE_RESP_NET_SG;
3056
3057 sc->callback = handle_timestamp;
3058 sc->callback_arg = finfo->skb;
3059 sc->iq_no = ndata->q_no;
3060
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003061 if (OCTEON_CN23XX_PF(oct))
3062 len = (u32)((struct octeon_instr_ih3 *)
3063 (&sc->cmd.cmd3.ih3))->dlengsz;
3064 else
3065 len = (u32)((struct octeon_instr_ih2 *)
3066 (&sc->cmd.cmd2.ih2))->dlengsz;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003067
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003068 ring_doorbell = 1;
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003069
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003070 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003071 sc, len, ndata->reqtype);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003072
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003073 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003074 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
3075 retval);
3076 octeon_free_soft_command(oct, sc);
3077 } else {
3078 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
3079 }
3080
3081 return retval;
3082}
3083
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003084/** \brief Transmit networks packets to the Octeon interface
3085 * @param skbuff skbuff struct to be passed to network layer.
3086 * @param netdev pointer to network device
3087 * @returns whether the packet was transmitted to the device okay or not
3088 * (NETDEV_TX_OK or NETDEV_TX_BUSY)
3089 */
3090static int liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
3091{
3092 struct lio *lio;
3093 struct octnet_buf_free_info *finfo;
3094 union octnic_cmd_setup cmdsetup;
3095 struct octnic_data_pkt ndata;
3096 struct octeon_device *oct;
3097 struct oct_iq_stats *stats;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003098 struct octeon_instr_irh *irh;
3099 union tx_info *tx_info;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003100 int status = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003101 int q_idx = 0, iq_no = 0;
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003102 int j;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003103 u64 dptr = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003104 u32 tag = 0;
3105
3106 lio = GET_LIO(netdev);
3107 oct = lio->oct_dev;
3108
3109 if (netif_is_multiqueue(netdev)) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003110 q_idx = skb->queue_mapping;
3111 q_idx = (q_idx % (lio->linfo.num_txpciq));
3112 tag = q_idx;
3113 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003114 } else {
3115 iq_no = lio->txq;
3116 }
3117
3118 stats = &oct->instr_queue[iq_no]->stats;
3119
3120 /* Check for all conditions in which the current packet cannot be
3121 * transmitted.
3122 */
3123 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003124 (!lio->linfo.link.s.link_up) ||
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003125 (skb->len <= 0)) {
3126 netif_info(lio, tx_err, lio->netdev,
3127 "Transmit failed link_status : %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003128 lio->linfo.link.s.link_up);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003129 goto lio_xmit_failed;
3130 }
3131
3132 /* Use space in skb->cb to store info used to unmap and
3133 * free the buffers.
3134 */
3135 finfo = (struct octnet_buf_free_info *)skb->cb;
3136 finfo->lio = lio;
3137 finfo->skb = skb;
3138 finfo->sc = NULL;
3139
3140 /* Prepare the attributes for the data to be passed to OSI. */
3141 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
3142
3143 ndata.buf = (void *)finfo;
3144
3145 ndata.q_no = iq_no;
3146
3147 if (netif_is_multiqueue(netdev)) {
3148 if (octnet_iq_is_full(oct, ndata.q_no)) {
3149 /* defer sending if queue is full */
3150 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
3151 ndata.q_no);
3152 stats->tx_iq_busy++;
3153 return NETDEV_TX_BUSY;
3154 }
3155 } else {
3156 if (octnet_iq_is_full(oct, lio->txq)) {
3157 /* defer sending if queue is full */
3158 stats->tx_iq_busy++;
3159 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003160 lio->txq);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003161 return NETDEV_TX_BUSY;
3162 }
3163 }
3164 /* pr_info(" XMIT - valid Qs: %d, 1st Q no: %d, cpu: %d, q_no:%d\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003165 * lio->linfo.num_txpciq, lio->txq, cpu, ndata.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003166 */
3167
3168 ndata.datasize = skb->len;
3169
3170 cmdsetup.u64 = 0;
Raghu Vatsavayi7275ebf2016-06-14 16:54:49 -07003171 cmdsetup.s.iq_no = iq_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003172
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003173 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3174 if (skb->encapsulation) {
3175 cmdsetup.s.tnl_csum = 1;
3176 stats->tx_vxlan++;
3177 } else {
3178 cmdsetup.s.transport_csum = 1;
3179 }
3180 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003181 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
3182 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
3183 cmdsetup.s.timestamp = 1;
3184 }
3185
3186 if (skb_shinfo(skb)->nr_frags == 0) {
3187 cmdsetup.s.u.datasize = skb->len;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003188 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003189
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003190 /* Offload checksum calculation for TCP/UDP packets */
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003191 dptr = dma_map_single(&oct->pci_dev->dev,
3192 skb->data,
3193 skb->len,
3194 DMA_TO_DEVICE);
3195 if (dma_mapping_error(&oct->pci_dev->dev, dptr)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003196 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
3197 __func__);
3198 return NETDEV_TX_BUSY;
3199 }
3200
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003201 if (OCTEON_CN23XX_PF(oct))
3202 ndata.cmd.cmd3.dptr = dptr;
3203 else
3204 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003205 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003206 ndata.reqtype = REQTYPE_NORESP_NET;
3207
3208 } else {
3209 int i, frags;
3210 struct skb_frag_struct *frag;
3211 struct octnic_gather *g;
3212
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003213 spin_lock(&lio->glist_lock[q_idx]);
3214 g = (struct octnic_gather *)
3215 list_delete_head(&lio->glist[q_idx]);
3216 spin_unlock(&lio->glist_lock[q_idx]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003217
3218 if (!g) {
3219 netif_info(lio, tx_err, lio->netdev,
3220 "Transmit scatter gather: glist null!\n");
3221 goto lio_xmit_failed;
3222 }
3223
3224 cmdsetup.s.gather = 1;
3225 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003226 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003227
3228 memset(g->sg, 0, g->sg_size);
3229
3230 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
3231 skb->data,
3232 (skb->len - skb->data_len),
3233 DMA_TO_DEVICE);
3234 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
3235 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
3236 __func__);
3237 return NETDEV_TX_BUSY;
3238 }
3239 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
3240
3241 frags = skb_shinfo(skb)->nr_frags;
3242 i = 1;
3243 while (frags--) {
3244 frag = &skb_shinfo(skb)->frags[i - 1];
3245
3246 g->sg[(i >> 2)].ptr[(i & 3)] =
3247 dma_map_page(&oct->pci_dev->dev,
3248 frag->page.p,
3249 frag->page_offset,
3250 frag->size,
3251 DMA_TO_DEVICE);
3252
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003253 if (dma_mapping_error(&oct->pci_dev->dev,
3254 g->sg[i >> 2].ptr[i & 3])) {
3255 dma_unmap_single(&oct->pci_dev->dev,
3256 g->sg[0].ptr[0],
3257 skb->len - skb->data_len,
3258 DMA_TO_DEVICE);
3259 for (j = 1; j < i; j++) {
3260 frag = &skb_shinfo(skb)->frags[j - 1];
3261 dma_unmap_page(&oct->pci_dev->dev,
3262 g->sg[j >> 2].ptr[j & 3],
3263 frag->size,
3264 DMA_TO_DEVICE);
3265 }
3266 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
3267 __func__);
3268 return NETDEV_TX_BUSY;
3269 }
3270
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003271 add_sg_size(&g->sg[(i >> 2)], frag->size, (i & 3));
3272 i++;
3273 }
3274
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003275 dma_sync_single_for_device(&oct->pci_dev->dev, g->sg_dma_ptr,
3276 g->sg_size, DMA_TO_DEVICE);
3277 dptr = g->sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003278
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003279 if (OCTEON_CN23XX_PF(oct))
3280 ndata.cmd.cmd3.dptr = dptr;
3281 else
3282 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003283 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003284 finfo->g = g;
3285
3286 ndata.reqtype = REQTYPE_NORESP_NET_SG;
3287 }
3288
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003289 if (OCTEON_CN23XX_PF(oct)) {
3290 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd3.irh;
3291 tx_info = (union tx_info *)&ndata.cmd.cmd3.ossp[0];
3292 } else {
3293 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd2.irh;
3294 tx_info = (union tx_info *)&ndata.cmd.cmd2.ossp[0];
3295 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003296
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003297 if (skb_shinfo(skb)->gso_size) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003298 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
3299 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003300 stats->tx_gso++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003301 }
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003302
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07003303 /* HW insert VLAN tag */
3304 if (skb_vlan_tag_present(skb)) {
3305 irh->priority = skb_vlan_tag_get(skb) >> 13;
3306 irh->vlan = skb_vlan_tag_get(skb) & 0xfff;
3307 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003308
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003309 if (unlikely(cmdsetup.s.timestamp))
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003310 status = send_nic_timestamp_pkt(oct, &ndata, finfo);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003311 else
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003312 status = octnet_send_nic_data_pkt(oct, &ndata);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003313 if (status == IQ_SEND_FAILED)
3314 goto lio_xmit_failed;
3315
3316 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
3317
3318 if (status == IQ_SEND_STOP)
3319 stop_q(lio->netdev, q_idx);
3320
Florian Westphal860e9532016-05-03 16:33:13 +02003321 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003322
Satanand Burla80c8eae2017-01-26 11:52:35 -08003323 if (tx_info->s.gso_segs)
3324 stats->tx_done += tx_info->s.gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003325 else
3326 stats->tx_done++;
Satanand Burla80c8eae2017-01-26 11:52:35 -08003327 stats->tx_tot_bytes += ndata.datasize;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003328
3329 return NETDEV_TX_OK;
3330
3331lio_xmit_failed:
3332 stats->tx_dropped++;
3333 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
3334 iq_no, stats->tx_dropped);
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003335 if (dptr)
3336 dma_unmap_single(&oct->pci_dev->dev, dptr,
3337 ndata.datasize, DMA_TO_DEVICE);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003338 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003339 return NETDEV_TX_OK;
3340}
3341
3342/** \brief Network device Tx timeout
3343 * @param netdev pointer to network device
3344 */
3345static void liquidio_tx_timeout(struct net_device *netdev)
3346{
3347 struct lio *lio;
3348
3349 lio = GET_LIO(netdev);
3350
3351 netif_info(lio, tx_err, lio->netdev,
3352 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
3353 netdev->stats.tx_dropped);
Florian Westphal860e9532016-05-03 16:33:13 +02003354 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003355 txqs_wake(netdev);
3356}
3357
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003358static int liquidio_vlan_rx_add_vid(struct net_device *netdev,
3359 __be16 proto __attribute__((unused)),
3360 u16 vid)
3361{
3362 struct lio *lio = GET_LIO(netdev);
3363 struct octeon_device *oct = lio->oct_dev;
3364 struct octnic_ctrl_pkt nctrl;
3365 int ret = 0;
3366
3367 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3368
3369 nctrl.ncmd.u64 = 0;
3370 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3371 nctrl.ncmd.s.param1 = vid;
3372 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3373 nctrl.wait_time = 100;
3374 nctrl.netpndev = (u64)netdev;
3375 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3376
3377 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3378 if (ret < 0) {
3379 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3380 ret);
3381 }
3382
3383 return ret;
3384}
3385
3386static int liquidio_vlan_rx_kill_vid(struct net_device *netdev,
3387 __be16 proto __attribute__((unused)),
3388 u16 vid)
3389{
3390 struct lio *lio = GET_LIO(netdev);
3391 struct octeon_device *oct = lio->oct_dev;
3392 struct octnic_ctrl_pkt nctrl;
3393 int ret = 0;
3394
3395 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3396
3397 nctrl.ncmd.u64 = 0;
3398 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3399 nctrl.ncmd.s.param1 = vid;
3400 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3401 nctrl.wait_time = 100;
3402 nctrl.netpndev = (u64)netdev;
3403 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3404
3405 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3406 if (ret < 0) {
3407 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3408 ret);
3409 }
3410 return ret;
3411}
3412
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003413/** Sending command to enable/disable RX checksum offload
3414 * @param netdev pointer to network device
3415 * @param command OCTNET_CMD_TNL_RX_CSUM_CTL
3416 * @param rx_cmd_bit OCTNET_CMD_RXCSUM_ENABLE/
3417 * OCTNET_CMD_RXCSUM_DISABLE
3418 * @returns SUCCESS or FAILURE
3419 */
Nicholas Mc Guirec41419b2016-08-22 17:52:00 +02003420static int liquidio_set_rxcsum_command(struct net_device *netdev, int command,
3421 u8 rx_cmd)
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003422{
3423 struct lio *lio = GET_LIO(netdev);
3424 struct octeon_device *oct = lio->oct_dev;
3425 struct octnic_ctrl_pkt nctrl;
3426 int ret = 0;
3427
3428 nctrl.ncmd.u64 = 0;
3429 nctrl.ncmd.s.cmd = command;
3430 nctrl.ncmd.s.param1 = rx_cmd;
3431 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3432 nctrl.wait_time = 100;
3433 nctrl.netpndev = (u64)netdev;
3434 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3435
3436 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3437 if (ret < 0) {
3438 dev_err(&oct->pci_dev->dev,
3439 "DEVFLAGS RXCSUM change failed in core(ret:0x%x)\n",
3440 ret);
3441 }
3442 return ret;
3443}
3444
3445/** Sending command to add/delete VxLAN UDP port to firmware
3446 * @param netdev pointer to network device
3447 * @param command OCTNET_CMD_VXLAN_PORT_CONFIG
3448 * @param vxlan_port VxLAN port to be added or deleted
3449 * @param vxlan_cmd_bit OCTNET_CMD_VXLAN_PORT_ADD,
3450 * OCTNET_CMD_VXLAN_PORT_DEL
3451 * @returns SUCCESS or FAILURE
3452 */
3453static int liquidio_vxlan_port_command(struct net_device *netdev, int command,
3454 u16 vxlan_port, u8 vxlan_cmd_bit)
3455{
3456 struct lio *lio = GET_LIO(netdev);
3457 struct octeon_device *oct = lio->oct_dev;
3458 struct octnic_ctrl_pkt nctrl;
3459 int ret = 0;
3460
3461 nctrl.ncmd.u64 = 0;
3462 nctrl.ncmd.s.cmd = command;
3463 nctrl.ncmd.s.more = vxlan_cmd_bit;
3464 nctrl.ncmd.s.param1 = vxlan_port;
3465 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3466 nctrl.wait_time = 100;
3467 nctrl.netpndev = (u64)netdev;
3468 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3469
3470 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3471 if (ret < 0) {
3472 dev_err(&oct->pci_dev->dev,
3473 "VxLAN port add/delete failed in core (ret:0x%x)\n",
3474 ret);
3475 }
3476 return ret;
3477}
3478
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003479/** \brief Net device fix features
3480 * @param netdev pointer to network device
3481 * @param request features requested
3482 * @returns updated features list
3483 */
3484static netdev_features_t liquidio_fix_features(struct net_device *netdev,
3485 netdev_features_t request)
3486{
3487 struct lio *lio = netdev_priv(netdev);
3488
3489 if ((request & NETIF_F_RXCSUM) &&
3490 !(lio->dev_capability & NETIF_F_RXCSUM))
3491 request &= ~NETIF_F_RXCSUM;
3492
3493 if ((request & NETIF_F_HW_CSUM) &&
3494 !(lio->dev_capability & NETIF_F_HW_CSUM))
3495 request &= ~NETIF_F_HW_CSUM;
3496
3497 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
3498 request &= ~NETIF_F_TSO;
3499
3500 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
3501 request &= ~NETIF_F_TSO6;
3502
3503 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
3504 request &= ~NETIF_F_LRO;
3505
3506 /*Disable LRO if RXCSUM is off */
3507 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
3508 (lio->dev_capability & NETIF_F_LRO))
3509 request &= ~NETIF_F_LRO;
3510
3511 return request;
3512}
3513
3514/** \brief Net device set features
3515 * @param netdev pointer to network device
3516 * @param features features to enable/disable
3517 */
3518static int liquidio_set_features(struct net_device *netdev,
3519 netdev_features_t features)
3520{
3521 struct lio *lio = netdev_priv(netdev);
3522
3523 if (!((netdev->features ^ features) & NETIF_F_LRO))
3524 return 0;
3525
3526 if ((features & NETIF_F_LRO) && (lio->dev_capability & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003527 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3528 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003529 else if (!(features & NETIF_F_LRO) &&
3530 (lio->dev_capability & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003531 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE,
3532 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003533
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003534 /* Sending command to firmware to enable/disable RX checksum
3535 * offload settings using ethtool
3536 */
3537 if (!(netdev->features & NETIF_F_RXCSUM) &&
3538 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3539 (features & NETIF_F_RXCSUM))
3540 liquidio_set_rxcsum_command(netdev,
3541 OCTNET_CMD_TNL_RX_CSUM_CTL,
3542 OCTNET_CMD_RXCSUM_ENABLE);
3543 else if ((netdev->features & NETIF_F_RXCSUM) &&
3544 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3545 !(features & NETIF_F_RXCSUM))
3546 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
3547 OCTNET_CMD_RXCSUM_DISABLE);
3548
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003549 return 0;
3550}
3551
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003552static void liquidio_add_vxlan_port(struct net_device *netdev,
3553 struct udp_tunnel_info *ti)
3554{
3555 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3556 return;
3557
3558 liquidio_vxlan_port_command(netdev,
3559 OCTNET_CMD_VXLAN_PORT_CONFIG,
3560 htons(ti->port),
3561 OCTNET_CMD_VXLAN_PORT_ADD);
3562}
3563
3564static void liquidio_del_vxlan_port(struct net_device *netdev,
3565 struct udp_tunnel_info *ti)
3566{
3567 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3568 return;
3569
3570 liquidio_vxlan_port_command(netdev,
3571 OCTNET_CMD_VXLAN_PORT_CONFIG,
3572 htons(ti->port),
3573 OCTNET_CMD_VXLAN_PORT_DEL);
3574}
3575
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003576static int __liquidio_set_vf_mac(struct net_device *netdev, int vfidx,
3577 u8 *mac, bool is_admin_assigned)
3578{
3579 struct lio *lio = GET_LIO(netdev);
3580 struct octeon_device *oct = lio->oct_dev;
3581 struct octnic_ctrl_pkt nctrl;
3582
3583 if (!is_valid_ether_addr(mac))
3584 return -EINVAL;
3585
3586 if (vfidx < 0 || vfidx >= oct->sriov_info.max_vfs)
3587 return -EINVAL;
3588
3589 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3590
3591 nctrl.ncmd.u64 = 0;
3592 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
3593 /* vfidx is 0 based, but vf_num (param1) is 1 based */
3594 nctrl.ncmd.s.param1 = vfidx + 1;
3595 nctrl.ncmd.s.param2 = (is_admin_assigned ? 1 : 0);
3596 nctrl.ncmd.s.more = 1;
3597 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3598 nctrl.cb_fn = 0;
3599 nctrl.wait_time = LIO_CMD_WAIT_TM;
3600
3601 nctrl.udd[0] = 0;
3602 /* The MAC Address is presented in network byte order. */
3603 ether_addr_copy((u8 *)&nctrl.udd[0] + 2, mac);
3604
3605 oct->sriov_info.vf_macaddr[vfidx] = nctrl.udd[0];
3606
3607 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3608
3609 return 0;
3610}
3611
3612static int liquidio_set_vf_mac(struct net_device *netdev, int vfidx, u8 *mac)
3613{
3614 struct lio *lio = GET_LIO(netdev);
3615 struct octeon_device *oct = lio->oct_dev;
3616 int retval;
3617
3618 retval = __liquidio_set_vf_mac(netdev, vfidx, mac, true);
3619 if (!retval)
3620 cn23xx_tell_vf_its_macaddr_changed(oct, vfidx, mac);
3621
3622 return retval;
3623}
3624
3625static int liquidio_set_vf_vlan(struct net_device *netdev, int vfidx,
3626 u16 vlan, u8 qos, __be16 vlan_proto)
3627{
3628 struct lio *lio = GET_LIO(netdev);
3629 struct octeon_device *oct = lio->oct_dev;
3630 struct octnic_ctrl_pkt nctrl;
3631 u16 vlantci;
3632
3633 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3634 return -EINVAL;
3635
3636 if (vlan_proto != htons(ETH_P_8021Q))
3637 return -EPROTONOSUPPORT;
3638
3639 if (vlan >= VLAN_N_VID || qos > 7)
3640 return -EINVAL;
3641
3642 if (vlan)
3643 vlantci = vlan | (u16)qos << VLAN_PRIO_SHIFT;
3644 else
3645 vlantci = 0;
3646
3647 if (oct->sriov_info.vf_vlantci[vfidx] == vlantci)
3648 return 0;
3649
3650 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3651
3652 if (vlan)
3653 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3654 else
3655 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3656
3657 nctrl.ncmd.s.param1 = vlantci;
3658 nctrl.ncmd.s.param2 =
3659 vfidx + 1; /* vfidx is 0 based, but vf_num (param2) is 1 based */
3660 nctrl.ncmd.s.more = 0;
3661 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3662 nctrl.cb_fn = 0;
3663 nctrl.wait_time = LIO_CMD_WAIT_TM;
3664
3665 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3666
3667 oct->sriov_info.vf_vlantci[vfidx] = vlantci;
3668
3669 return 0;
3670}
3671
3672static int liquidio_get_vf_config(struct net_device *netdev, int vfidx,
3673 struct ifla_vf_info *ivi)
3674{
3675 struct lio *lio = GET_LIO(netdev);
3676 struct octeon_device *oct = lio->oct_dev;
3677 u8 *macaddr;
3678
3679 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3680 return -EINVAL;
3681
3682 ivi->vf = vfidx;
3683 macaddr = 2 + (u8 *)&oct->sriov_info.vf_macaddr[vfidx];
3684 ether_addr_copy(&ivi->mac[0], macaddr);
3685 ivi->vlan = oct->sriov_info.vf_vlantci[vfidx] & VLAN_VID_MASK;
3686 ivi->qos = oct->sriov_info.vf_vlantci[vfidx] >> VLAN_PRIO_SHIFT;
3687 ivi->linkstate = oct->sriov_info.vf_linkstate[vfidx];
3688 return 0;
3689}
3690
3691static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
3692 int linkstate)
3693{
3694 struct lio *lio = GET_LIO(netdev);
3695 struct octeon_device *oct = lio->oct_dev;
3696 struct octnic_ctrl_pkt nctrl;
3697
3698 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3699 return -EINVAL;
3700
3701 if (oct->sriov_info.vf_linkstate[vfidx] == linkstate)
3702 return 0;
3703
3704 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3705 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_VF_LINKSTATE;
3706 nctrl.ncmd.s.param1 =
3707 vfidx + 1; /* vfidx is 0 based, but vf_num (param1) is 1 based */
3708 nctrl.ncmd.s.param2 = linkstate;
3709 nctrl.ncmd.s.more = 0;
3710 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3711 nctrl.cb_fn = 0;
3712 nctrl.wait_time = LIO_CMD_WAIT_TM;
3713
3714 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3715
3716 oct->sriov_info.vf_linkstate[vfidx] = linkstate;
3717
3718 return 0;
3719}
3720
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003721static const struct net_device_ops lionetdevops = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003722 .ndo_open = liquidio_open,
3723 .ndo_stop = liquidio_stop,
3724 .ndo_start_xmit = liquidio_xmit,
3725 .ndo_get_stats = liquidio_get_stats,
3726 .ndo_set_mac_address = liquidio_set_mac,
3727 .ndo_set_rx_mode = liquidio_set_mcast_list,
3728 .ndo_tx_timeout = liquidio_tx_timeout,
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003729
3730 .ndo_vlan_rx_add_vid = liquidio_vlan_rx_add_vid,
3731 .ndo_vlan_rx_kill_vid = liquidio_vlan_rx_kill_vid,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003732 .ndo_change_mtu = liquidio_change_mtu,
3733 .ndo_do_ioctl = liquidio_ioctl,
3734 .ndo_fix_features = liquidio_fix_features,
3735 .ndo_set_features = liquidio_set_features,
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003736 .ndo_udp_tunnel_add = liquidio_add_vxlan_port,
3737 .ndo_udp_tunnel_del = liquidio_del_vxlan_port,
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003738 .ndo_set_vf_mac = liquidio_set_vf_mac,
3739 .ndo_set_vf_vlan = liquidio_set_vf_vlan,
3740 .ndo_get_vf_config = liquidio_get_vf_config,
3741 .ndo_set_vf_link_state = liquidio_set_vf_link_state,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003742};
3743
3744/** \brief Entry point for the liquidio module
3745 */
3746static int __init liquidio_init(void)
3747{
3748 int i;
3749 struct handshake *hs;
3750
3751 init_completion(&first_stage);
3752
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003753 octeon_init_device_list(OCTEON_CONFIG_TYPE_DEFAULT);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003754
3755 if (liquidio_init_pci())
3756 return -EINVAL;
3757
3758 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3759
3760 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3761 hs = &handshake[i];
3762 if (hs->pci_dev) {
3763 wait_for_completion(&hs->init);
3764 if (!hs->init_ok) {
3765 /* init handshake failed */
3766 dev_err(&hs->pci_dev->dev,
3767 "Failed to init device\n");
3768 liquidio_deinit_pci();
3769 return -EIO;
3770 }
3771 }
3772 }
3773
3774 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3775 hs = &handshake[i];
3776 if (hs->pci_dev) {
3777 wait_for_completion_timeout(&hs->started,
3778 msecs_to_jiffies(30000));
3779 if (!hs->started_ok) {
3780 /* starter handshake failed */
3781 dev_err(&hs->pci_dev->dev,
3782 "Firmware failed to start\n");
3783 liquidio_deinit_pci();
3784 return -EIO;
3785 }
3786 }
3787 }
3788
3789 return 0;
3790}
3791
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -07003792static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003793{
3794 struct octeon_device *oct = (struct octeon_device *)buf;
3795 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003796 int gmxport = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003797 union oct_link_status *ls;
3798 int i;
3799
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003800 if (recv_pkt->buffer_size[0] != sizeof(*ls)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003801 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3802 recv_pkt->buffer_size[0],
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003803 recv_pkt->rh.r_nic_info.gmxport);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003804 goto nic_info_err;
3805 }
3806
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003807 gmxport = recv_pkt->rh.r_nic_info.gmxport;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003808 ls = (union oct_link_status *)get_rbd(recv_pkt->buffer_ptr[0]);
3809
3810 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003811 for (i = 0; i < oct->ifcount; i++) {
3812 if (oct->props[i].gmxport == gmxport) {
3813 update_link_status(oct->props[i].netdev, ls);
3814 break;
3815 }
3816 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003817
3818nic_info_err:
3819 for (i = 0; i < recv_pkt->buffer_count; i++)
3820 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3821 octeon_free_recv_info(recv_info);
3822 return 0;
3823}
3824
3825/**
3826 * \brief Setup network interfaces
3827 * @param octeon_dev octeon device
3828 *
3829 * Called during init time for each device. It assumes the NIC
3830 * is already up and running. The link information for each
3831 * interface is passed in link_info.
3832 */
3833static int setup_nic_devices(struct octeon_device *octeon_dev)
3834{
3835 struct lio *lio = NULL;
3836 struct net_device *netdev;
3837 u8 mac[6], i, j;
3838 struct octeon_soft_command *sc;
3839 struct liquidio_if_cfg_context *ctx;
3840 struct liquidio_if_cfg_resp *resp;
3841 struct octdev_props *props;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003842 int retval, num_iqueues, num_oqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003843 union oct_nic_if_cfg if_cfg;
3844 unsigned int base_queue;
3845 unsigned int gmx_port_id;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003846 u32 resp_size, ctx_size, data_size;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003847 u32 ifidx_or_pfnum;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003848 struct lio_version *vdata;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003849
3850 /* This is to handle link status changes */
3851 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3852 OPCODE_NIC_INFO,
3853 lio_nic_info, octeon_dev);
3854
3855 /* REQTYPE_RESP_NET and REQTYPE_SOFT_COMMAND do not have free functions.
3856 * They are handled directly.
3857 */
3858 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
3859 free_netbuf);
3860
3861 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
3862 free_netsgbuf);
3863
3864 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
3865 free_netsgbuf_with_resp);
3866
3867 for (i = 0; i < octeon_dev->ifcount; i++) {
3868 resp_size = sizeof(struct liquidio_if_cfg_resp);
3869 ctx_size = sizeof(struct liquidio_if_cfg_context);
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003870 data_size = sizeof(struct lio_version);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003871 sc = (struct octeon_soft_command *)
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003872 octeon_alloc_soft_command(octeon_dev, data_size,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003873 resp_size, ctx_size);
3874 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
3875 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003876 vdata = (struct lio_version *)sc->virtdptr;
3877
3878 *((u64 *)vdata) = 0;
3879 vdata->major = cpu_to_be16(LIQUIDIO_BASE_MAJOR_VERSION);
3880 vdata->minor = cpu_to_be16(LIQUIDIO_BASE_MINOR_VERSION);
3881 vdata->micro = cpu_to_be16(LIQUIDIO_BASE_MICRO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003882
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07003883 if (OCTEON_CN23XX_PF(octeon_dev)) {
3884 num_iqueues = octeon_dev->sriov_info.num_pf_rings;
3885 num_oqueues = octeon_dev->sriov_info.num_pf_rings;
3886 base_queue = octeon_dev->sriov_info.pf_srn;
3887
3888 gmx_port_id = octeon_dev->pf_num;
3889 ifidx_or_pfnum = octeon_dev->pf_num;
3890 } else {
3891 num_iqueues = CFG_GET_NUM_TXQS_NIC_IF(
3892 octeon_get_conf(octeon_dev), i);
3893 num_oqueues = CFG_GET_NUM_RXQS_NIC_IF(
3894 octeon_get_conf(octeon_dev), i);
3895 base_queue = CFG_GET_BASE_QUE_NIC_IF(
3896 octeon_get_conf(octeon_dev), i);
3897 gmx_port_id = CFG_GET_GMXID_NIC_IF(
3898 octeon_get_conf(octeon_dev), i);
3899 ifidx_or_pfnum = i;
3900 }
Raghu Vatsavayi3dcef2c2016-07-03 13:56:51 -07003901
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003902 dev_dbg(&octeon_dev->pci_dev->dev,
3903 "requesting config for interface %d, iqs %d, oqs %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003904 ifidx_or_pfnum, num_iqueues, num_oqueues);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07003905 WRITE_ONCE(ctx->cond, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003906 ctx->octeon_id = lio_get_device_id(octeon_dev);
3907 init_waitqueue_head(&ctx->wc);
3908
3909 if_cfg.u64 = 0;
3910 if_cfg.s.num_iqueues = num_iqueues;
3911 if_cfg.s.num_oqueues = num_oqueues;
3912 if_cfg.s.base_queue = base_queue;
3913 if_cfg.s.gmx_port_id = gmx_port_id;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003914
3915 sc->iq_no = 0;
3916
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003917 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003918 OPCODE_NIC_IF_CFG, 0,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003919 if_cfg.u64, 0);
3920
3921 sc->callback = if_cfg_callback;
3922 sc->callback_arg = sc;
Raghu Vatsavayi55893a62016-07-03 13:56:50 -07003923 sc->wait_time = 3000;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003924
3925 retval = octeon_send_soft_command(octeon_dev, sc);
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003926 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003927 dev_err(&octeon_dev->pci_dev->dev,
3928 "iq/oq config failed status: %x\n",
3929 retval);
3930 /* Soft instr is freed by driver in case of failure. */
3931 goto setup_nic_dev_fail;
3932 }
3933
3934 /* Sleep on a wait queue till the cond flag indicates that the
3935 * response arrived or timed-out.
3936 */
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07003937 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR) {
3938 dev_err(&octeon_dev->pci_dev->dev, "Wait interrupted\n");
3939 goto setup_nic_wait_intr;
3940 }
3941
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003942 retval = resp->status;
3943 if (retval) {
3944 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
3945 goto setup_nic_dev_fail;
3946 }
3947
3948 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
3949 (sizeof(struct liquidio_if_cfg_info)) >> 3);
3950
3951 num_iqueues = hweight64(resp->cfg_info.iqmask);
3952 num_oqueues = hweight64(resp->cfg_info.oqmask);
3953
3954 if (!(num_iqueues) || !(num_oqueues)) {
3955 dev_err(&octeon_dev->pci_dev->dev,
3956 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
3957 resp->cfg_info.iqmask,
3958 resp->cfg_info.oqmask);
3959 goto setup_nic_dev_fail;
3960 }
3961 dev_dbg(&octeon_dev->pci_dev->dev,
3962 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d\n",
3963 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
3964 num_iqueues, num_oqueues);
3965 netdev = alloc_etherdev_mq(LIO_SIZE, num_iqueues);
3966
3967 if (!netdev) {
3968 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
3969 goto setup_nic_dev_fail;
3970 }
3971
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003972 SET_NETDEV_DEV(netdev, &octeon_dev->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003973
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003974 /* Associate the routines that will handle different
3975 * netdev tasks.
3976 */
3977 netdev->netdev_ops = &lionetdevops;
3978
3979 lio = GET_LIO(netdev);
3980
3981 memset(lio, 0, sizeof(struct lio));
3982
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003983 lio->ifidx = ifidx_or_pfnum;
3984
3985 props = &octeon_dev->props[i];
3986 props->gmxport = resp->cfg_info.linfo.gmxport;
3987 props->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003988
3989 lio->linfo.num_rxpciq = num_oqueues;
3990 lio->linfo.num_txpciq = num_iqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003991 for (j = 0; j < num_oqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003992 lio->linfo.rxpciq[j].u64 =
3993 resp->cfg_info.linfo.rxpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003994 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003995 for (j = 0; j < num_iqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003996 lio->linfo.txpciq[j].u64 =
3997 resp->cfg_info.linfo.txpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003998 }
3999 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
4000 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
4001 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
4002
4003 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
4004
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07004005 if (OCTEON_CN23XX_PF(octeon_dev) ||
4006 OCTEON_CN6XXX(octeon_dev)) {
4007 lio->dev_capability = NETIF_F_HIGHDMA
4008 | NETIF_F_IP_CSUM
4009 | NETIF_F_IPV6_CSUM
4010 | NETIF_F_SG | NETIF_F_RXCSUM
4011 | NETIF_F_GRO
4012 | NETIF_F_TSO | NETIF_F_TSO6
4013 | NETIF_F_LRO;
4014 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004015 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
4016
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004017 /* Copy of transmit encapsulation capabilities:
4018 * TSO, TSO6, Checksums for this device
4019 */
4020 lio->enc_dev_capability = NETIF_F_IP_CSUM
4021 | NETIF_F_IPV6_CSUM
4022 | NETIF_F_GSO_UDP_TUNNEL
4023 | NETIF_F_HW_CSUM | NETIF_F_SG
4024 | NETIF_F_RXCSUM
4025 | NETIF_F_TSO | NETIF_F_TSO6
4026 | NETIF_F_LRO;
4027
4028 netdev->hw_enc_features = (lio->enc_dev_capability &
4029 ~NETIF_F_LRO);
4030
4031 lio->dev_capability |= NETIF_F_GSO_UDP_TUNNEL;
4032
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004033 netdev->vlan_features = lio->dev_capability;
4034 /* Add any unchangeable hw features */
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004035 lio->dev_capability |= NETIF_F_HW_VLAN_CTAG_FILTER |
4036 NETIF_F_HW_VLAN_CTAG_RX |
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004037 NETIF_F_HW_VLAN_CTAG_TX;
4038
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004039 netdev->features = (lio->dev_capability & ~NETIF_F_LRO);
4040
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004041 netdev->hw_features = lio->dev_capability;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004042 /*HW_VLAN_RX and HW_VLAN_FILTER is always on*/
4043 netdev->hw_features = netdev->hw_features &
4044 ~NETIF_F_HW_VLAN_CTAG_RX;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004045
Jarod Wilson109cc162016-10-17 15:54:13 -04004046 /* MTU range: 68 - 16000 */
4047 netdev->min_mtu = LIO_MIN_MTU_SIZE;
4048 netdev->max_mtu = LIO_MAX_MTU_SIZE;
4049
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004050 /* Point to the properties for octeon device to which this
4051 * interface belongs.
4052 */
4053 lio->oct_dev = octeon_dev;
4054 lio->octprops = props;
4055 lio->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004056
4057 dev_dbg(&octeon_dev->pci_dev->dev,
4058 "if%d gmx: %d hw_addr: 0x%llx\n", i,
4059 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
4060
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004061 for (j = 0; j < octeon_dev->sriov_info.max_vfs; j++) {
4062 u8 vfmac[ETH_ALEN];
4063
4064 random_ether_addr(&vfmac[0]);
4065 if (__liquidio_set_vf_mac(netdev, j,
4066 &vfmac[0], false)) {
4067 dev_err(&octeon_dev->pci_dev->dev,
4068 "Error setting VF%d MAC address\n",
4069 j);
4070 goto setup_nic_dev_fail;
4071 }
4072 }
4073
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004074 /* 64-bit swap required on LE machines */
4075 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
4076 for (j = 0; j < 6; j++)
4077 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
4078
4079 /* Copy MAC Address to OS network device structure */
4080
4081 ether_addr_copy(netdev->dev_addr, mac);
4082
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004083 /* By default all interfaces on a single Octeon uses the same
4084 * tx and rx queues
4085 */
4086 lio->txq = lio->linfo.txpciq[0].s.q_no;
4087 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004088 if (setup_io_queues(octeon_dev, i)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004089 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
4090 goto setup_nic_dev_fail;
4091 }
4092
4093 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
4094
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004095 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
4096 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
4097
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07004098 if (setup_glists(octeon_dev, lio, num_iqueues)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004099 dev_err(&octeon_dev->pci_dev->dev,
4100 "Gather list allocation failed\n");
4101 goto setup_nic_dev_fail;
4102 }
4103
4104 /* Register ethtool support */
4105 liquidio_set_ethtool_ops(netdev);
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004106 if (lio->oct_dev->chip_id == OCTEON_CN23XX_PF_VID)
4107 octeon_dev->priv_flags = OCT_PRIV_FLAG_DEFAULT;
4108 else
4109 octeon_dev->priv_flags = 0x0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004110
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004111 if (netdev->features & NETIF_F_LRO)
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07004112 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
4113 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004114
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004115 liquidio_set_feature(netdev, OCTNET_CMD_ENABLE_VLAN_FILTER, 0);
4116
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004117 if ((debug != -1) && (debug & NETIF_MSG_HW))
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004118 liquidio_set_feature(netdev,
4119 OCTNET_CMD_VERBOSE_ENABLE, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004120
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07004121 if (setup_link_status_change_wq(netdev))
4122 goto setup_nic_dev_fail;
4123
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004124 /* Register the network device with the OS */
4125 if (register_netdev(netdev)) {
4126 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
4127 goto setup_nic_dev_fail;
4128 }
4129
4130 dev_dbg(&octeon_dev->pci_dev->dev,
4131 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
4132 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
4133 netif_carrier_off(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004134 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004135
4136 ifstate_set(lio, LIO_IFSTATE_REGISTERED);
4137
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004138 /* Sending command to firmware to enable Rx checksum offload
4139 * by default at the time of setup of Liquidio driver for
4140 * this device
4141 */
4142 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
4143 OCTNET_CMD_RXCSUM_ENABLE);
4144 liquidio_set_feature(netdev, OCTNET_CMD_TNL_TX_CSUM_CTL,
4145 OCTNET_CMD_TXCSUM_ENABLE);
4146
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004147 dev_dbg(&octeon_dev->pci_dev->dev,
4148 "NIC ifidx:%d Setup successful\n", i);
4149
4150 octeon_free_soft_command(octeon_dev, sc);
4151 }
4152
4153 return 0;
4154
4155setup_nic_dev_fail:
4156
4157 octeon_free_soft_command(octeon_dev, sc);
4158
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07004159setup_nic_wait_intr:
4160
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004161 while (i--) {
4162 dev_err(&octeon_dev->pci_dev->dev,
4163 "NIC ifidx:%d Setup failed\n", i);
4164 liquidio_destroy_nic_device(octeon_dev, i);
4165 }
4166 return -ENODEV;
4167}
4168
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08004169#ifdef CONFIG_PCI_IOV
4170static int octeon_enable_sriov(struct octeon_device *oct)
4171{
4172 unsigned int num_vfs_alloced = oct->sriov_info.num_vfs_alloced;
4173 struct pci_dev *vfdev;
4174 int err;
4175 u32 u;
4176
4177 if (OCTEON_CN23XX_PF(oct) && num_vfs_alloced) {
4178 err = pci_enable_sriov(oct->pci_dev,
4179 oct->sriov_info.num_vfs_alloced);
4180 if (err) {
4181 dev_err(&oct->pci_dev->dev,
4182 "OCTEON: Failed to enable PCI sriov: %d\n",
4183 err);
4184 oct->sriov_info.num_vfs_alloced = 0;
4185 return err;
4186 }
4187 oct->sriov_info.sriov_enabled = 1;
4188
4189 /* init lookup table that maps DPI ring number to VF pci_dev
4190 * struct pointer
4191 */
4192 u = 0;
4193 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4194 OCTEON_CN23XX_VF_VID, NULL);
4195 while (vfdev) {
4196 if (vfdev->is_virtfn &&
4197 (vfdev->physfn == oct->pci_dev)) {
4198 oct->sriov_info.dpiring_to_vfpcidev_lut[u] =
4199 vfdev;
4200 u += oct->sriov_info.rings_per_vf;
4201 }
4202 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4203 OCTEON_CN23XX_VF_VID, vfdev);
4204 }
4205 }
4206
4207 return num_vfs_alloced;
4208}
4209
4210static int lio_pci_sriov_disable(struct octeon_device *oct)
4211{
4212 int u;
4213
4214 if (pci_vfs_assigned(oct->pci_dev)) {
4215 dev_err(&oct->pci_dev->dev, "VFs are still assigned to VMs.\n");
4216 return -EPERM;
4217 }
4218
4219 pci_disable_sriov(oct->pci_dev);
4220
4221 u = 0;
4222 while (u < MAX_POSSIBLE_VFS) {
4223 oct->sriov_info.dpiring_to_vfpcidev_lut[u] = NULL;
4224 u += oct->sriov_info.rings_per_vf;
4225 }
4226
4227 oct->sriov_info.num_vfs_alloced = 0;
4228 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d disabled VFs\n",
4229 oct->pf_num);
4230
4231 return 0;
4232}
4233
4234static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs)
4235{
4236 struct octeon_device *oct = pci_get_drvdata(dev);
4237 int ret = 0;
4238
4239 if ((num_vfs == oct->sriov_info.num_vfs_alloced) &&
4240 (oct->sriov_info.sriov_enabled)) {
4241 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d already enabled num_vfs:%d\n",
4242 oct->pf_num, num_vfs);
4243 return 0;
4244 }
4245
4246 if (!num_vfs) {
4247 ret = lio_pci_sriov_disable(oct);
4248 } else if (num_vfs > oct->sriov_info.max_vfs) {
4249 dev_err(&oct->pci_dev->dev,
4250 "OCTEON: Max allowed VFs:%d user requested:%d",
4251 oct->sriov_info.max_vfs, num_vfs);
4252 ret = -EPERM;
4253 } else {
4254 oct->sriov_info.num_vfs_alloced = num_vfs;
4255 ret = octeon_enable_sriov(oct);
4256 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d num_vfs:%d\n",
4257 oct->pf_num, num_vfs);
4258 }
4259
4260 return ret;
4261}
4262#endif
4263
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004264/**
4265 * \brief initialize the NIC
4266 * @param oct octeon device
4267 *
4268 * This initialization routine is called once the Octeon device application is
4269 * up and running
4270 */
4271static int liquidio_init_nic_module(struct octeon_device *oct)
4272{
4273 struct oct_intrmod_cfg *intrmod_cfg;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004274 int i, retval = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004275 int num_nic_ports = CFG_GET_NUM_NIC_PORTS(octeon_get_conf(oct));
4276
4277 dev_dbg(&oct->pci_dev->dev, "Initializing network interfaces\n");
4278
4279 /* only default iq and oq were initialized
4280 * initialize the rest as well
4281 */
4282 /* run port_config command for each port */
4283 oct->ifcount = num_nic_ports;
4284
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004285 memset(oct->props, 0, sizeof(struct octdev_props) * num_nic_ports);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004286
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004287 for (i = 0; i < MAX_OCTEON_LINKS; i++)
4288 oct->props[i].gmxport = -1;
4289
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004290 retval = setup_nic_devices(oct);
4291 if (retval) {
4292 dev_err(&oct->pci_dev->dev, "Setup NIC devices failed\n");
4293 goto octnet_init_failure;
4294 }
4295
4296 liquidio_ptp_init(oct);
4297
4298 /* Initialize interrupt moderation params */
4299 intrmod_cfg = &((struct octeon_device *)oct)->intrmod;
Raghu Vatsavayi78e6a9b2016-06-21 22:53:10 -07004300 intrmod_cfg->rx_enable = 1;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004301 intrmod_cfg->check_intrvl = LIO_INTRMOD_CHECK_INTERVAL;
Raghu Vatsavayi78e6a9b2016-06-21 22:53:10 -07004302 intrmod_cfg->maxpkt_ratethr = LIO_INTRMOD_MAXPKT_RATETHR;
4303 intrmod_cfg->minpkt_ratethr = LIO_INTRMOD_MINPKT_RATETHR;
4304 intrmod_cfg->rx_maxcnt_trigger = LIO_INTRMOD_RXMAXCNT_TRIGGER;
4305 intrmod_cfg->rx_maxtmr_trigger = LIO_INTRMOD_RXMAXTMR_TRIGGER;
4306 intrmod_cfg->rx_mintmr_trigger = LIO_INTRMOD_RXMINTMR_TRIGGER;
4307 intrmod_cfg->rx_mincnt_trigger = LIO_INTRMOD_RXMINCNT_TRIGGER;
4308 intrmod_cfg->tx_enable = 1;
4309 intrmod_cfg->tx_maxcnt_trigger = LIO_INTRMOD_TXMAXCNT_TRIGGER;
4310 intrmod_cfg->tx_mincnt_trigger = LIO_INTRMOD_TXMINCNT_TRIGGER;
4311 intrmod_cfg->rx_frames = CFG_GET_OQ_INTR_PKT(octeon_get_conf(oct));
4312 intrmod_cfg->rx_usecs = CFG_GET_OQ_INTR_TIME(octeon_get_conf(oct));
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07004313 intrmod_cfg->tx_frames = CFG_GET_IQ_INTR_PKT(octeon_get_conf(oct));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004314 dev_dbg(&oct->pci_dev->dev, "Network interfaces ready\n");
4315
4316 return retval;
4317
4318octnet_init_failure:
4319
4320 oct->ifcount = 0;
4321
4322 return retval;
4323}
4324
4325/**
4326 * \brief starter callback that invokes the remaining initialization work after
4327 * the NIC is up and running.
4328 * @param octptr work struct work_struct
4329 */
4330static void nic_starter(struct work_struct *work)
4331{
4332 struct octeon_device *oct;
4333 struct cavium_wk *wk = (struct cavium_wk *)work;
4334
4335 oct = (struct octeon_device *)wk->ctxptr;
4336
4337 if (atomic_read(&oct->status) == OCT_DEV_RUNNING)
4338 return;
4339
4340 /* If the status of the device is CORE_OK, the core
4341 * application has reported its application type. Call
4342 * any registered handlers now and move to the RUNNING
4343 * state.
4344 */
4345 if (atomic_read(&oct->status) != OCT_DEV_CORE_OK) {
4346 schedule_delayed_work(&oct->nic_poll_work.work,
4347 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4348 return;
4349 }
4350
4351 atomic_set(&oct->status, OCT_DEV_RUNNING);
4352
4353 if (oct->app_mode && oct->app_mode == CVM_DRV_NIC_APP) {
4354 dev_dbg(&oct->pci_dev->dev, "Starting NIC module\n");
4355
4356 if (liquidio_init_nic_module(oct))
4357 dev_err(&oct->pci_dev->dev, "NIC initialization failed\n");
4358 else
4359 handshake[oct->octeon_id].started_ok = 1;
4360 } else {
4361 dev_err(&oct->pci_dev->dev,
4362 "Unexpected application running on NIC (%d). Check firmware.\n",
4363 oct->app_mode);
4364 }
4365
4366 complete(&handshake[oct->octeon_id].started);
4367}
4368
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004369static int
4370octeon_recv_vf_drv_notice(struct octeon_recv_info *recv_info, void *buf)
4371{
4372 struct octeon_device *oct = (struct octeon_device *)buf;
4373 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
4374 int i, notice, vf_idx;
4375 u64 *data, vf_num;
4376
4377 notice = recv_pkt->rh.r.ossp;
4378 data = (u64 *)get_rbd(recv_pkt->buffer_ptr[0]);
4379
4380 /* the first 64-bit word of data is the vf_num */
4381 vf_num = data[0];
4382 octeon_swap_8B_data(&vf_num, 1);
4383 vf_idx = (int)vf_num - 1;
4384
4385 if (notice == VF_DRV_LOADED) {
4386 if (!(oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx))) {
4387 oct->sriov_info.vf_drv_loaded_mask |= BIT_ULL(vf_idx);
4388 dev_info(&oct->pci_dev->dev,
4389 "driver for VF%d was loaded\n", vf_idx);
4390 try_module_get(THIS_MODULE);
4391 }
4392 } else if (notice == VF_DRV_REMOVED) {
4393 if (oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx)) {
4394 oct->sriov_info.vf_drv_loaded_mask &= ~BIT_ULL(vf_idx);
4395 dev_info(&oct->pci_dev->dev,
4396 "driver for VF%d was removed\n", vf_idx);
4397 module_put(THIS_MODULE);
4398 }
4399 } else if (notice == VF_DRV_MACADDR_CHANGED) {
4400 u8 *b = (u8 *)&data[1];
4401
4402 oct->sriov_info.vf_macaddr[vf_idx] = data[1];
4403 dev_info(&oct->pci_dev->dev,
4404 "VF driver changed VF%d's MAC address to %pM\n",
4405 vf_idx, b + 2);
4406 }
4407
4408 for (i = 0; i < recv_pkt->buffer_count; i++)
4409 recv_buffer_free(recv_pkt->buffer_ptr[i]);
4410 octeon_free_recv_info(recv_info);
4411
4412 return 0;
4413}
4414
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004415/**
4416 * \brief Device initialization for each Octeon device that is probed
4417 * @param octeon_dev octeon device
4418 */
4419static int octeon_device_init(struct octeon_device *octeon_dev)
4420{
4421 int j, ret;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004422 int fw_loaded = 0;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004423 char bootcmd[] = "\n";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004424 struct octeon_device_priv *oct_priv =
4425 (struct octeon_device_priv *)octeon_dev->priv;
4426 atomic_set(&octeon_dev->status, OCT_DEV_BEGIN_STATE);
4427
4428 /* Enable access to the octeon device and make its DMA capability
4429 * known to the OS.
4430 */
4431 if (octeon_pci_os_setup(octeon_dev))
4432 return 1;
4433
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004434 atomic_set(&octeon_dev->status, OCT_DEV_PCI_ENABLE_DONE);
4435
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004436 /* Identify the Octeon type and map the BAR address space. */
4437 if (octeon_chip_specific_setup(octeon_dev)) {
4438 dev_err(&octeon_dev->pci_dev->dev, "Chip specific setup failed\n");
4439 return 1;
4440 }
4441
4442 atomic_set(&octeon_dev->status, OCT_DEV_PCI_MAP_DONE);
4443
4444 octeon_dev->app_mode = CVM_DRV_INVALID_APP;
4445
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004446 if (OCTEON_CN23XX_PF(octeon_dev)) {
4447 if (!cn23xx_fw_loaded(octeon_dev)) {
4448 fw_loaded = 0;
4449 /* Do a soft reset of the Octeon device. */
4450 if (octeon_dev->fn_list.soft_reset(octeon_dev))
4451 return 1;
4452 /* things might have changed */
4453 if (!cn23xx_fw_loaded(octeon_dev))
4454 fw_loaded = 0;
4455 else
4456 fw_loaded = 1;
4457 } else {
4458 fw_loaded = 1;
4459 }
4460 } else if (octeon_dev->fn_list.soft_reset(octeon_dev)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004461 return 1;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004462 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004463
4464 /* Initialize the dispatch mechanism used to push packets arriving on
4465 * Octeon Output queues.
4466 */
4467 if (octeon_init_dispatch_list(octeon_dev))
4468 return 1;
4469
4470 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4471 OPCODE_NIC_CORE_DRV_ACTIVE,
4472 octeon_core_drv_init,
4473 octeon_dev);
4474
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004475 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4476 OPCODE_NIC_VF_DRV_NOTICE,
4477 octeon_recv_vf_drv_notice, octeon_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004478 INIT_DELAYED_WORK(&octeon_dev->nic_poll_work.work, nic_starter);
4479 octeon_dev->nic_poll_work.ctxptr = (void *)octeon_dev;
4480 schedule_delayed_work(&octeon_dev->nic_poll_work.work,
4481 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4482
4483 atomic_set(&octeon_dev->status, OCT_DEV_DISPATCH_INIT_DONE);
4484
Raghu Vatsavayic865cdf2016-11-28 16:54:36 -08004485 if (octeon_set_io_queues_off(octeon_dev)) {
4486 dev_err(&octeon_dev->pci_dev->dev, "setting io queues off failed\n");
4487 return 1;
4488 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004489
Raghu Vatsavayi3451b972016-08-31 11:03:26 -07004490 if (OCTEON_CN23XX_PF(octeon_dev)) {
4491 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4492 if (ret) {
4493 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Failed to configure device registers\n");
4494 return ret;
4495 }
4496 }
4497
4498 /* Initialize soft command buffer pool
4499 */
4500 if (octeon_setup_sc_buffer_pool(octeon_dev)) {
4501 dev_err(&octeon_dev->pci_dev->dev, "sc buffer pool allocation failed\n");
4502 return 1;
4503 }
4504 atomic_set(&octeon_dev->status, OCT_DEV_SC_BUFF_POOL_INIT_DONE);
4505
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004506 /* Setup the data structures that manage this Octeon's Input queues. */
4507 if (octeon_setup_instr_queues(octeon_dev)) {
4508 dev_err(&octeon_dev->pci_dev->dev,
4509 "instruction queue initialization failed\n");
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004510 return 1;
4511 }
4512 atomic_set(&octeon_dev->status, OCT_DEV_INSTR_QUEUE_INIT_DONE);
4513
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004514 /* Initialize lists to manage the requests of different types that
4515 * arrive from user & kernel applications for this octeon device.
4516 */
4517 if (octeon_setup_response_list(octeon_dev)) {
4518 dev_err(&octeon_dev->pci_dev->dev, "Response list allocation failed\n");
4519 return 1;
4520 }
4521 atomic_set(&octeon_dev->status, OCT_DEV_RESP_LIST_INIT_DONE);
4522
4523 if (octeon_setup_output_queues(octeon_dev)) {
4524 dev_err(&octeon_dev->pci_dev->dev, "Output queue initialization failed\n");
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004525 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004526 }
4527
4528 atomic_set(&octeon_dev->status, OCT_DEV_DROQ_INIT_DONE);
4529
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004530 if (OCTEON_CN23XX_PF(octeon_dev)) {
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08004531 if (octeon_dev->fn_list.setup_mbox(octeon_dev)) {
4532 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Mailbox setup failed\n");
4533 return 1;
4534 }
4535 atomic_set(&octeon_dev->status, OCT_DEV_MBOX_SETUP_DONE);
4536
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004537 if (octeon_allocate_ioq_vector(octeon_dev)) {
4538 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: ioq vector allocation failed\n");
4539 return 1;
4540 }
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004541 atomic_set(&octeon_dev->status, OCT_DEV_MSIX_ALLOC_VECTOR_DONE);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004542
4543 } else {
4544 /* The input and output queue registers were setup earlier (the
4545 * queues were not enabled). Any additional registers
4546 * that need to be programmed should be done now.
4547 */
4548 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4549 if (ret) {
4550 dev_err(&octeon_dev->pci_dev->dev,
4551 "Failed to configure device registers\n");
4552 return ret;
4553 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004554 }
4555
4556 /* Initialize the tasklet that handles output queue packet processing.*/
4557 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing droq tasklet\n");
4558 tasklet_init(&oct_priv->droq_tasklet, octeon_droq_bh,
4559 (unsigned long)octeon_dev);
4560
4561 /* Setup the interrupt handler and record the INT SUM register address
4562 */
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004563 if (octeon_setup_interrupt(octeon_dev))
4564 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004565
4566 /* Enable Octeon device interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004567 octeon_dev->fn_list.enable_interrupt(octeon_dev, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004568
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004569 atomic_set(&octeon_dev->status, OCT_DEV_INTR_SET_DONE);
4570
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004571 /* Enable the input and output queues for this Octeon device */
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07004572 ret = octeon_dev->fn_list.enable_io_queues(octeon_dev);
4573 if (ret) {
4574 dev_err(&octeon_dev->pci_dev->dev, "Failed to enable input/output queues");
4575 return ret;
4576 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004577
4578 atomic_set(&octeon_dev->status, OCT_DEV_IO_QUEUES_DONE);
4579
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004580 if ((!OCTEON_CN23XX_PF(octeon_dev)) || !fw_loaded) {
4581 dev_dbg(&octeon_dev->pci_dev->dev, "Waiting for DDR initialization...\n");
4582 if (!ddr_timeout) {
4583 dev_info(&octeon_dev->pci_dev->dev,
4584 "WAITING. Set ddr_timeout to non-zero value to proceed with initialization.\n");
4585 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004586
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004587 schedule_timeout_uninterruptible(HZ * LIO_RESET_SECS);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004588
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004589 /* Wait for the octeon to initialize DDR after the soft-reset.*/
4590 while (!ddr_timeout) {
4591 set_current_state(TASK_INTERRUPTIBLE);
4592 if (schedule_timeout(HZ / 10)) {
4593 /* user probably pressed Control-C */
4594 return 1;
4595 }
4596 }
4597 ret = octeon_wait_for_ddr_init(octeon_dev, &ddr_timeout);
4598 if (ret) {
4599 dev_err(&octeon_dev->pci_dev->dev,
4600 "DDR not initialized. Please confirm that board is configured to boot from Flash, ret: %d\n",
4601 ret);
Raghu Vatsavayi4b129ae2016-06-21 22:53:15 -07004602 return 1;
4603 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004604
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004605 if (octeon_wait_for_bootloader(octeon_dev, 1000)) {
4606 dev_err(&octeon_dev->pci_dev->dev, "Board not responding\n");
4607 return 1;
4608 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004609
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004610 /* Divert uboot to take commands from host instead. */
4611 ret = octeon_console_send_cmd(octeon_dev, bootcmd, 50);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004612
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004613 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing consoles\n");
4614 ret = octeon_init_consoles(octeon_dev);
4615 if (ret) {
4616 dev_err(&octeon_dev->pci_dev->dev, "Could not access board consoles\n");
4617 return 1;
4618 }
4619 ret = octeon_add_console(octeon_dev, 0);
4620 if (ret) {
4621 dev_err(&octeon_dev->pci_dev->dev, "Could not access board console\n");
4622 return 1;
4623 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004624
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004625 atomic_set(&octeon_dev->status, OCT_DEV_CONSOLE_INIT_DONE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004626
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004627 dev_dbg(&octeon_dev->pci_dev->dev, "Loading firmware\n");
4628 ret = load_firmware(octeon_dev);
4629 if (ret) {
4630 dev_err(&octeon_dev->pci_dev->dev, "Could not load firmware to board\n");
4631 return 1;
4632 }
4633 /* set bit 1 of SLI_SCRATCH_1 to indicate that firmware is
4634 * loaded
4635 */
4636 if (OCTEON_CN23XX_PF(octeon_dev))
4637 octeon_write_csr64(octeon_dev, CN23XX_SLI_SCRATCH1,
4638 2ULL);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004639 }
4640
4641 handshake[octeon_dev->octeon_id].init_ok = 1;
4642 complete(&handshake[octeon_dev->octeon_id].init);
4643
4644 atomic_set(&octeon_dev->status, OCT_DEV_HOST_OK);
4645
4646 /* Send Credit for Octeon Output queues. Credits are always sent after
4647 * the output queue is enabled.
4648 */
4649 for (j = 0; j < octeon_dev->num_oqs; j++)
4650 writel(octeon_dev->droq[j]->max_count,
4651 octeon_dev->droq[j]->pkts_credit_reg);
4652
4653 /* Packets can start arriving on the output queues from this point. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004654 return 0;
4655}
4656
4657/**
4658 * \brief Exits the module
4659 */
4660static void __exit liquidio_exit(void)
4661{
4662 liquidio_deinit_pci();
4663
4664 pr_info("LiquidIO network module is now unloaded\n");
4665}
4666
4667module_init(liquidio_init);
4668module_exit(liquidio_exit);