blob: 39a8dca35ffa455000eaf83bf72455ac1679a1d8 [file] [log] [blame]
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001/**********************************************************************
Raghu Vatsavayi50579d32016-11-14 15:54:46 -08002 * Author: Cavium, Inc.
3 *
4 * Contact: support@cavium.com
5 * Please include "LiquidIO" in the subject.
6 *
7 * Copyright (c) 2003-2016 Cavium, Inc.
8 *
9 * This file is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License, Version 2, as
11 * published by the Free Software Foundation.
12 *
13 * This file is distributed in the hope that it will be useful, but
14 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
15 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
16 * NONINFRINGEMENT. See the GNU General Public License for more details.
17 ***********************************************************************/
Russell Kinge3bfc6e2017-02-07 15:03:03 -080018#include <linux/module.h>
Florian Westphal282ccf62017-03-29 17:17:31 +020019#include <linux/interrupt.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070020#include <linux/pci.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070021#include <linux/firmware.h>
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -070022#include <net/vxlan.h>
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -070023#include <linux/kthread.h>
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070024#include "liquidio_common.h"
25#include "octeon_droq.h"
26#include "octeon_iq.h"
27#include "response_manager.h"
28#include "octeon_device.h"
29#include "octeon_nic.h"
30#include "octeon_main.h"
31#include "octeon_network.h"
32#include "cn66xx_regs.h"
33#include "cn66xx_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070034#include "cn68xx_device.h"
Raghu Vatsavayi72c00912016-08-31 11:03:25 -070035#include "cn23xx_pf_device.h"
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070036#include "liquidio_image.h"
37
38MODULE_AUTHOR("Cavium Networks, <support@cavium.com>");
39MODULE_DESCRIPTION("Cavium LiquidIO Intelligent Server Adapter Driver");
40MODULE_LICENSE("GPL");
41MODULE_VERSION(LIQUIDIO_VERSION);
42MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210SV_NAME LIO_FW_NAME_SUFFIX);
43MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_210NV_NAME LIO_FW_NAME_SUFFIX);
44MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_410NV_NAME LIO_FW_NAME_SUFFIX);
Raghu Vatsavayic865cdf2016-11-28 16:54:36 -080045MODULE_FIRMWARE(LIO_FW_DIR LIO_FW_BASE_NAME LIO_23XX_NAME LIO_FW_NAME_SUFFIX);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070046
47static int ddr_timeout = 10000;
48module_param(ddr_timeout, int, 0644);
49MODULE_PARM_DESC(ddr_timeout,
50 "Number of milliseconds to wait for DDR initialization. 0 waits for ddr_timeout to be set to non-zero value before starting to check");
51
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070052#define DEFAULT_MSG_ENABLE (NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_LINK)
53
54static int debug = -1;
55module_param(debug, int, 0644);
56MODULE_PARM_DESC(debug, "NETIF_MSG debug bits");
57
58static char fw_type[LIO_MAX_FW_TYPE_LEN];
59module_param_string(fw_type, fw_type, sizeof(fw_type), 0000);
60MODULE_PARM_DESC(fw_type, "Type of firmware to be loaded. Default \"nic\"");
61
Raghu Vatsavayia5b37882016-06-14 16:54:48 -070062static int ptp_enable = 1;
63
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070064/* Polling interval for determining when NIC application is alive */
65#define LIQUIDIO_STARTER_POLL_INTERVAL_MS 100
66
67/* runtime link query interval */
68#define LIQUIDIO_LINK_QUERY_INTERVAL_MS 1000
69
70struct liquidio_if_cfg_context {
71 int octeon_id;
72
73 wait_queue_head_t wc;
74
75 int cond;
76};
77
78struct liquidio_if_cfg_resp {
79 u64 rh;
80 struct liquidio_if_cfg_info cfg_info;
81 u64 status;
82};
83
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -070084struct liquidio_rx_ctl_context {
85 int octeon_id;
86
87 wait_queue_head_t wc;
88
89 int cond;
90};
91
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -070092struct oct_link_status_resp {
93 u64 rh;
94 struct oct_link_info link_info;
95 u64 status;
96};
97
98struct oct_timestamp_resp {
99 u64 rh;
100 u64 timestamp;
101 u64 status;
102};
103
104#define OCT_TIMESTAMP_RESP_SIZE (sizeof(struct oct_timestamp_resp))
105
106union tx_info {
107 u64 u64;
108 struct {
109#ifdef __BIG_ENDIAN_BITFIELD
110 u16 gso_size;
111 u16 gso_segs;
112 u32 reserved;
113#else
114 u32 reserved;
115 u16 gso_segs;
116 u16 gso_size;
117#endif
118 } s;
119};
120
121/** Octeon device properties to be used by the NIC module.
122 * Each octeon device in the system will be represented
123 * by this structure in the NIC module.
124 */
125
126#define OCTNIC_MAX_SG (MAX_SKB_FRAGS)
127
128#define OCTNIC_GSO_MAX_HEADER_SIZE 128
Raghu Vatsavayi72c00912016-08-31 11:03:25 -0700129#define OCTNIC_GSO_MAX_SIZE \
130 (CN23XX_DEFAULT_INPUT_JABBER - OCTNIC_GSO_MAX_HEADER_SIZE)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700131
132/** Structure of a node in list of gather components maintained by
133 * NIC driver for each network device.
134 */
135struct octnic_gather {
136 /** List manipulation. Next and prev pointers. */
137 struct list_head list;
138
139 /** Size of the gather component at sg in bytes. */
140 int sg_size;
141
142 /** Number of bytes that sg was adjusted to make it 8B-aligned. */
143 int adjust;
144
145 /** Gather component that can accommodate max sized fragment list
146 * received from the IP layer.
147 */
148 struct octeon_sg_entry *sg;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700149
VSR Burru67e303e2017-03-06 18:45:59 -0800150 dma_addr_t sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700151};
152
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700153struct handshake {
154 struct completion init;
155 struct completion started;
156 struct pci_dev *pci_dev;
157 int init_ok;
158 int started_ok;
159};
160
161struct octeon_device_priv {
162 /** Tasklet structures for this device. */
163 struct tasklet_struct droq_tasklet;
164 unsigned long napi_mask;
165};
166
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800167#ifdef CONFIG_PCI_IOV
168static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs);
169#endif
170
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700171static int octeon_device_init(struct octeon_device *);
Raghu Vatsavayi32581242016-08-31 11:03:20 -0700172static int liquidio_stop(struct net_device *netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700173static void liquidio_remove(struct pci_dev *pdev);
174static int liquidio_probe(struct pci_dev *pdev,
175 const struct pci_device_id *ent);
Felix Manlunasbb54be52017-04-04 19:26:57 -0700176static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
177 int linkstate);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700178
179static struct handshake handshake[MAX_OCTEON_DEVICES];
180static struct completion first_stage;
181
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700182static void octeon_droq_bh(unsigned long pdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700183{
184 int q_no;
185 int reschedule = 0;
186 struct octeon_device *oct = (struct octeon_device *)pdev;
187 struct octeon_device_priv *oct_priv =
188 (struct octeon_device_priv *)oct->priv;
189
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700190 for (q_no = 0; q_no < MAX_OCTEON_OUTPUT_QUEUES(oct); q_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800191 if (!(oct->io_qmask.oq & BIT_ULL(q_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700192 continue;
193 reschedule |= octeon_droq_process_packets(oct, oct->droq[q_no],
194 MAX_PACKET_BUDGET);
Raghu Vatsavayicd8b1eb2016-08-31 11:03:22 -0700195 lio_enable_irq(oct->droq[q_no], NULL);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700196
197 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
198 /* set time and cnt interrupt thresholds for this DROQ
199 * for NAPI
200 */
201 int adjusted_q_no = q_no + oct->sriov_info.pf_srn;
202
203 octeon_write_csr64(
204 oct, CN23XX_SLI_OQ_PKT_INT_LEVELS(adjusted_q_no),
205 0x5700000040ULL);
206 octeon_write_csr64(
207 oct, CN23XX_SLI_OQ_PKTS_SENT(adjusted_q_no), 0);
208 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700209 }
210
211 if (reschedule)
212 tasklet_schedule(&oct_priv->droq_tasklet);
213}
214
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -0700215static int lio_wait_for_oq_pkts(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700216{
217 struct octeon_device_priv *oct_priv =
218 (struct octeon_device_priv *)oct->priv;
219 int retry = 100, pkt_cnt = 0, pending_pkts = 0;
220 int i;
221
222 do {
223 pending_pkts = 0;
224
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700225 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800226 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700227 continue;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700228 pkt_cnt += octeon_droq_check_hw_for_pkts(oct->droq[i]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700229 }
230 if (pkt_cnt > 0) {
231 pending_pkts += pkt_cnt;
232 tasklet_schedule(&oct_priv->droq_tasklet);
233 }
234 pkt_cnt = 0;
235 schedule_timeout_uninterruptible(1);
236
237 } while (retry-- && pending_pkts);
238
239 return pkt_cnt;
240}
241
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700242/**
243 * \brief Forces all IO queues off on a given device
244 * @param oct Pointer to Octeon device
245 */
246static void force_io_queues_off(struct octeon_device *oct)
247{
248 if ((oct->chip_id == OCTEON_CN66XX) ||
249 (oct->chip_id == OCTEON_CN68XX)) {
250 /* Reset the Enable bits for Input Queues. */
251 octeon_write_csr(oct, CN6XXX_SLI_PKT_INSTR_ENB, 0);
252
253 /* Reset the Enable bits for Output Queues. */
254 octeon_write_csr(oct, CN6XXX_SLI_PKT_OUT_ENB, 0);
255 }
256}
257
258/**
259 * \brief wait for all pending requests to complete
260 * @param oct Pointer to Octeon device
261 *
262 * Called during shutdown sequence
263 */
264static int wait_for_pending_requests(struct octeon_device *oct)
265{
266 int i, pcount = 0;
267
268 for (i = 0; i < 100; i++) {
269 pcount =
270 atomic_read(&oct->response_list
271 [OCTEON_ORDERED_SC_LIST].pending_req_count);
272 if (pcount)
273 schedule_timeout_uninterruptible(HZ / 10);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700274 else
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700275 break;
276 }
277
278 if (pcount)
279 return 1;
280
281 return 0;
282}
283
284/**
285 * \brief Cause device to go quiet so it can be safely removed/reset/etc
286 * @param oct Pointer to Octeon device
287 */
288static inline void pcierror_quiesce_device(struct octeon_device *oct)
289{
290 int i;
291
292 /* Disable the input and output queues now. No more packets will
293 * arrive from Octeon, but we should wait for all packet processing
294 * to finish.
295 */
296 force_io_queues_off(oct);
297
298 /* To allow for in-flight requests */
299 schedule_timeout_uninterruptible(100);
300
301 if (wait_for_pending_requests(oct))
302 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
303
304 /* Force all requests waiting to be fetched by OCTEON to complete. */
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700305 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700306 struct octeon_instr_queue *iq;
307
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800308 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700309 continue;
310 iq = oct->instr_queue[i];
311
312 if (atomic_read(&iq->instr_pending)) {
313 spin_lock_bh(&iq->lock);
314 iq->fill_cnt = 0;
315 iq->octeon_read_index = iq->host_write_index;
316 iq->stats.instr_processed +=
317 atomic_read(&iq->instr_pending);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700318 lio_process_iq_request_list(oct, iq, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700319 spin_unlock_bh(&iq->lock);
320 }
321 }
322
323 /* Force all pending ordered list requests to time out. */
324 lio_process_ordered_list(oct, 1);
325
326 /* We do not need to wait for output queue packets to be processed. */
327}
328
329/**
330 * \brief Cleanup PCI AER uncorrectable error status
331 * @param dev Pointer to PCI device
332 */
333static void cleanup_aer_uncorrect_error_status(struct pci_dev *dev)
334{
335 int pos = 0x100;
336 u32 status, mask;
337
338 pr_info("%s :\n", __func__);
339
340 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
341 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
342 if (dev->error_state == pci_channel_io_normal)
343 status &= ~mask; /* Clear corresponding nonfatal bits */
344 else
345 status &= mask; /* Clear corresponding fatal bits */
346 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
347}
348
349/**
350 * \brief Stop all PCI IO to a given device
351 * @param dev Pointer to Octeon device
352 */
353static void stop_pci_io(struct octeon_device *oct)
354{
355 /* No more instructions will be forwarded. */
356 atomic_set(&oct->status, OCT_DEV_IN_RESET);
357
358 pci_disable_device(oct->pci_dev);
359
360 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700361 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700362
363 pcierror_quiesce_device(oct);
364
365 /* Release the interrupt line */
366 free_irq(oct->pci_dev->irq, oct);
367
368 if (oct->flags & LIO_FLAG_MSI_ENABLED)
369 pci_disable_msi(oct->pci_dev);
370
371 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
372 lio_get_state_string(&oct->status));
373
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700374 /* making it a common function for all OCTEON models */
375 cleanup_aer_uncorrect_error_status(oct->pci_dev);
376}
377
378/**
379 * \brief called when PCI error is detected
380 * @param pdev Pointer to PCI device
381 * @param state The current pci connection state
382 *
383 * This function is called after a PCI bus error affecting
384 * this device has been detected.
385 */
386static pci_ers_result_t liquidio_pcie_error_detected(struct pci_dev *pdev,
387 pci_channel_state_t state)
388{
389 struct octeon_device *oct = pci_get_drvdata(pdev);
390
391 /* Non-correctable Non-fatal errors */
392 if (state == pci_channel_io_normal) {
393 dev_err(&oct->pci_dev->dev, "Non-correctable non-fatal error reported:\n");
394 cleanup_aer_uncorrect_error_status(oct->pci_dev);
395 return PCI_ERS_RESULT_CAN_RECOVER;
396 }
397
398 /* Non-correctable Fatal errors */
399 dev_err(&oct->pci_dev->dev, "Non-correctable FATAL reported by PCI AER driver\n");
400 stop_pci_io(oct);
401
402 /* Always return a DISCONNECT. There is no support for recovery but only
403 * for a clean shutdown.
404 */
405 return PCI_ERS_RESULT_DISCONNECT;
406}
407
408/**
409 * \brief mmio handler
410 * @param pdev Pointer to PCI device
411 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700412static pci_ers_result_t liquidio_pcie_mmio_enabled(
413 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700414{
415 /* We should never hit this since we never ask for a reset for a Fatal
416 * Error. We always return DISCONNECT in io_error above.
417 * But play safe and return RECOVERED for now.
418 */
419 return PCI_ERS_RESULT_RECOVERED;
420}
421
422/**
423 * \brief called after the pci bus has been reset.
424 * @param pdev Pointer to PCI device
425 *
426 * Restart the card from scratch, as if from a cold-boot. Implementation
427 * resembles the first-half of the octeon_resume routine.
428 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700429static pci_ers_result_t liquidio_pcie_slot_reset(
430 struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700431{
432 /* We should never hit this since we never ask for a reset for a Fatal
433 * Error. We always return DISCONNECT in io_error above.
434 * But play safe and return RECOVERED for now.
435 */
436 return PCI_ERS_RESULT_RECOVERED;
437}
438
439/**
440 * \brief called when traffic can start flowing again.
441 * @param pdev Pointer to PCI device
442 *
443 * This callback is called when the error recovery driver tells us that
444 * its OK to resume normal operation. Implementation resembles the
445 * second-half of the octeon_resume routine.
446 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700447static void liquidio_pcie_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700448{
449 /* Nothing to be done here. */
450}
451
452#ifdef CONFIG_PM
453/**
454 * \brief called when suspending
455 * @param pdev Pointer to PCI device
456 * @param state state to suspend to
457 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700458static int liquidio_suspend(struct pci_dev *pdev __attribute__((unused)),
459 pm_message_t state __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700460{
461 return 0;
462}
463
464/**
465 * \brief called when resuming
466 * @param pdev Pointer to PCI device
467 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -0700468static int liquidio_resume(struct pci_dev *pdev __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700469{
470 return 0;
471}
472#endif
473
474/* For PCI-E Advanced Error Recovery (AER) Interface */
Julia Lawall166e2362015-11-14 11:06:53 +0100475static const struct pci_error_handlers liquidio_err_handler = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700476 .error_detected = liquidio_pcie_error_detected,
477 .mmio_enabled = liquidio_pcie_mmio_enabled,
478 .slot_reset = liquidio_pcie_slot_reset,
479 .resume = liquidio_pcie_resume,
480};
481
482static const struct pci_device_id liquidio_pci_tbl[] = {
483 { /* 68xx */
484 PCI_VENDOR_ID_CAVIUM, 0x91, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
485 },
486 { /* 66xx */
487 PCI_VENDOR_ID_CAVIUM, 0x92, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
488 },
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -0700489 { /* 23xx pf */
490 PCI_VENDOR_ID_CAVIUM, 0x9702, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0
491 },
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700492 {
493 0, 0, 0, 0, 0, 0, 0
494 }
495};
496MODULE_DEVICE_TABLE(pci, liquidio_pci_tbl);
497
498static struct pci_driver liquidio_pci_driver = {
499 .name = "LiquidIO",
500 .id_table = liquidio_pci_tbl,
501 .probe = liquidio_probe,
502 .remove = liquidio_remove,
503 .err_handler = &liquidio_err_handler, /* For AER */
504
505#ifdef CONFIG_PM
506 .suspend = liquidio_suspend,
507 .resume = liquidio_resume,
508#endif
Raghu Vatsavayica6139f2016-11-14 15:54:40 -0800509#ifdef CONFIG_PCI_IOV
510 .sriov_configure = liquidio_enable_sriov,
511#endif
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700512};
513
514/**
515 * \brief register PCI driver
516 */
517static int liquidio_init_pci(void)
518{
519 return pci_register_driver(&liquidio_pci_driver);
520}
521
522/**
523 * \brief unregister PCI driver
524 */
525static void liquidio_deinit_pci(void)
526{
527 pci_unregister_driver(&liquidio_pci_driver);
528}
529
530/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700531 * \brief Stop Tx queues
532 * @param netdev network device
533 */
534static inline void txqs_stop(struct net_device *netdev)
535{
536 if (netif_is_multiqueue(netdev)) {
537 int i;
538
539 for (i = 0; i < netdev->num_tx_queues; i++)
540 netif_stop_subqueue(netdev, i);
541 } else {
542 netif_stop_queue(netdev);
543 }
544}
545
546/**
547 * \brief Start Tx queues
548 * @param netdev network device
549 */
550static inline void txqs_start(struct net_device *netdev)
551{
552 if (netif_is_multiqueue(netdev)) {
553 int i;
554
555 for (i = 0; i < netdev->num_tx_queues; i++)
556 netif_start_subqueue(netdev, i);
557 } else {
558 netif_start_queue(netdev);
559 }
560}
561
562/**
563 * \brief Wake Tx queues
564 * @param netdev network device
565 */
566static inline void txqs_wake(struct net_device *netdev)
567{
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700568 struct lio *lio = GET_LIO(netdev);
569
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700570 if (netif_is_multiqueue(netdev)) {
571 int i;
572
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700573 for (i = 0; i < netdev->num_tx_queues; i++) {
574 int qno = lio->linfo.txpciq[i %
575 (lio->linfo.num_txpciq)].s.q_no;
576
577 if (__netif_subqueue_stopped(netdev, i)) {
578 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, qno,
579 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700580 netif_wake_subqueue(netdev, i);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700581 }
582 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700583 } else {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700584 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
585 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700586 netif_wake_queue(netdev);
587 }
588}
589
590/**
591 * \brief Stop Tx queue
592 * @param netdev network device
593 */
594static void stop_txq(struct net_device *netdev)
595{
596 txqs_stop(netdev);
597}
598
599/**
600 * \brief Start Tx queue
601 * @param netdev network device
602 */
603static void start_txq(struct net_device *netdev)
604{
605 struct lio *lio = GET_LIO(netdev);
606
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700607 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700608 txqs_start(netdev);
609 return;
610 }
611}
612
613/**
614 * \brief Wake a queue
615 * @param netdev network device
616 * @param q which queue to wake
617 */
618static inline void wake_q(struct net_device *netdev, int q)
619{
620 if (netif_is_multiqueue(netdev))
621 netif_wake_subqueue(netdev, q);
622 else
623 netif_wake_queue(netdev);
624}
625
626/**
627 * \brief Stop a queue
628 * @param netdev network device
629 * @param q which queue to stop
630 */
631static inline void stop_q(struct net_device *netdev, int q)
632{
633 if (netif_is_multiqueue(netdev))
634 netif_stop_subqueue(netdev, q);
635 else
636 netif_stop_queue(netdev);
637}
638
639/**
640 * \brief Check Tx queue status, and take appropriate action
641 * @param lio per-network private data
642 * @returns 0 if full, number of queues woken up otherwise
643 */
644static inline int check_txq_status(struct lio *lio)
645{
646 int ret_val = 0;
647
648 if (netif_is_multiqueue(lio->netdev)) {
649 int numqs = lio->netdev->num_tx_queues;
650 int q, iq = 0;
651
652 /* check each sub-queue state */
653 for (q = 0; q < numqs; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700654 iq = lio->linfo.txpciq[q %
655 (lio->linfo.num_txpciq)].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700656 if (octnet_iq_is_full(lio->oct_dev, iq))
657 continue;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700658 if (__netif_subqueue_stopped(lio->netdev, q)) {
659 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700660 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq,
661 tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -0700662 ret_val++;
663 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700664 }
665 } else {
666 if (octnet_iq_is_full(lio->oct_dev, lio->txq))
667 return 0;
668 wake_q(lio->netdev, lio->txq);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700669 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, lio->txq,
670 tx_restart, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700671 ret_val = 1;
672 }
673 return ret_val;
674}
675
676/**
677 * Remove the node at the head of the list. The list would be empty at
678 * the end of this call if there are no more nodes in the list.
679 */
680static inline struct list_head *list_delete_head(struct list_head *root)
681{
682 struct list_head *node;
683
684 if ((root->prev == root) && (root->next == root))
685 node = NULL;
686 else
687 node = root->next;
688
689 if (node)
690 list_del(node);
691
692 return node;
693}
694
695/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700696 * \brief Delete gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700697 * @param lio per-network private data
698 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700699static void delete_glists(struct lio *lio)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700700{
701 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700702 int i;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700703
VSR Burru67e303e2017-03-06 18:45:59 -0800704 kfree(lio->glist_lock);
705 lio->glist_lock = NULL;
706
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700707 if (!lio->glist)
708 return;
709
710 for (i = 0; i < lio->linfo.num_txpciq; i++) {
711 do {
712 g = (struct octnic_gather *)
713 list_delete_head(&lio->glist[i]);
VSR Burru67e303e2017-03-06 18:45:59 -0800714 if (g)
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700715 kfree(g);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700716 } while (g);
VSR Burru67e303e2017-03-06 18:45:59 -0800717
Felix Manlunas58ad3192017-03-20 19:04:48 -0700718 if (lio->glists_virt_base && lio->glists_virt_base[i] &&
719 lio->glists_dma_base && lio->glists_dma_base[i]) {
VSR Burru67e303e2017-03-06 18:45:59 -0800720 lio_dma_free(lio->oct_dev,
721 lio->glist_entry_size * lio->tx_qsize,
722 lio->glists_virt_base[i],
723 lio->glists_dma_base[i]);
724 }
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700725 }
726
VSR Burru67e303e2017-03-06 18:45:59 -0800727 kfree(lio->glists_virt_base);
728 lio->glists_virt_base = NULL;
729
730 kfree(lio->glists_dma_base);
731 lio->glists_dma_base = NULL;
732
733 kfree(lio->glist);
734 lio->glist = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700735}
736
737/**
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700738 * \brief Setup gather lists
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700739 * @param lio per-network private data
740 */
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700741static int setup_glists(struct octeon_device *oct, struct lio *lio, int num_iqs)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700742{
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700743 int i, j;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700744 struct octnic_gather *g;
745
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700746 lio->glist_lock = kcalloc(num_iqs, sizeof(*lio->glist_lock),
747 GFP_KERNEL);
748 if (!lio->glist_lock)
VSR Burru67e303e2017-03-06 18:45:59 -0800749 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700750
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700751 lio->glist = kcalloc(num_iqs, sizeof(*lio->glist),
752 GFP_KERNEL);
753 if (!lio->glist) {
VSR Burru67e303e2017-03-06 18:45:59 -0800754 kfree(lio->glist_lock);
755 lio->glist_lock = NULL;
756 return -ENOMEM;
757 }
758
759 lio->glist_entry_size =
760 ROUNDUP8((ROUNDUP4(OCTNIC_MAX_SG) >> 2) * OCT_SG_ENTRY_SIZE);
761
762 /* allocate memory to store virtual and dma base address of
763 * per glist consistent memory
764 */
765 lio->glists_virt_base = kcalloc(num_iqs, sizeof(*lio->glists_virt_base),
766 GFP_KERNEL);
767 lio->glists_dma_base = kcalloc(num_iqs, sizeof(*lio->glists_dma_base),
768 GFP_KERNEL);
769
770 if (!lio->glists_virt_base || !lio->glists_dma_base) {
771 delete_glists(lio);
772 return -ENOMEM;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700773 }
774
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700775 for (i = 0; i < num_iqs; i++) {
VSR Burrub3ca9af2017-03-09 17:03:24 -0800776 int numa_node = dev_to_node(&oct->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700777
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700778 spin_lock_init(&lio->glist_lock[i]);
779
780 INIT_LIST_HEAD(&lio->glist[i]);
781
VSR Burru67e303e2017-03-06 18:45:59 -0800782 lio->glists_virt_base[i] =
783 lio_dma_alloc(oct,
784 lio->glist_entry_size * lio->tx_qsize,
785 &lio->glists_dma_base[i]);
786
787 if (!lio->glists_virt_base[i]) {
788 delete_glists(lio);
789 return -ENOMEM;
790 }
791
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700792 for (j = 0; j < lio->tx_qsize; j++) {
793 g = kzalloc_node(sizeof(*g), GFP_KERNEL,
794 numa_node);
795 if (!g)
796 g = kzalloc(sizeof(*g), GFP_KERNEL);
797 if (!g)
798 break;
799
VSR Burru67e303e2017-03-06 18:45:59 -0800800 g->sg = lio->glists_virt_base[i] +
801 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700802
VSR Burru67e303e2017-03-06 18:45:59 -0800803 g->sg_dma_ptr = lio->glists_dma_base[i] +
804 (j * lio->glist_entry_size);
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700805
806 list_add_tail(&g->list, &lio->glist[i]);
807 }
808
809 if (j != lio->tx_qsize) {
810 delete_glists(lio);
VSR Burru67e303e2017-03-06 18:45:59 -0800811 return -ENOMEM;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -0700812 }
813 }
814
815 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700816}
817
818/**
819 * \brief Print link information
820 * @param netdev network device
821 */
822static void print_link_info(struct net_device *netdev)
823{
824 struct lio *lio = GET_LIO(netdev);
825
826 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED) {
827 struct oct_link_info *linfo = &lio->linfo;
828
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700829 if (linfo->link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700830 netif_info(lio, link, lio->netdev, "%d Mbps %s Duplex UP\n",
831 linfo->link.s.speed,
832 (linfo->link.s.duplex) ? "Full" : "Half");
833 } else {
834 netif_info(lio, link, lio->netdev, "Link Down\n");
835 }
836 }
837}
838
839/**
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -0700840 * \brief Routine to notify MTU change
841 * @param work work_struct data structure
842 */
843static void octnet_link_status_change(struct work_struct *work)
844{
845 struct cavium_wk *wk = (struct cavium_wk *)work;
846 struct lio *lio = (struct lio *)wk->ctxptr;
847
848 rtnl_lock();
849 call_netdevice_notifiers(NETDEV_CHANGEMTU, lio->netdev);
850 rtnl_unlock();
851}
852
853/**
854 * \brief Sets up the mtu status change work
855 * @param netdev network device
856 */
857static inline int setup_link_status_change_wq(struct net_device *netdev)
858{
859 struct lio *lio = GET_LIO(netdev);
860 struct octeon_device *oct = lio->oct_dev;
861
862 lio->link_status_wq.wq = alloc_workqueue("link-status",
863 WQ_MEM_RECLAIM, 0);
864 if (!lio->link_status_wq.wq) {
865 dev_err(&oct->pci_dev->dev, "unable to create cavium link status wq\n");
866 return -1;
867 }
868 INIT_DELAYED_WORK(&lio->link_status_wq.wk.work,
869 octnet_link_status_change);
870 lio->link_status_wq.wk.ctxptr = lio;
871
872 return 0;
873}
874
875static inline void cleanup_link_status_change_wq(struct net_device *netdev)
876{
877 struct lio *lio = GET_LIO(netdev);
878
879 if (lio->link_status_wq.wq) {
880 cancel_delayed_work_sync(&lio->link_status_wq.wk.work);
881 destroy_workqueue(lio->link_status_wq.wq);
882 }
883}
884
885/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700886 * \brief Update link status
887 * @param netdev network device
888 * @param ls link status structure
889 *
890 * Called on receipt of a link status response from the core application to
891 * update each interface's link status.
892 */
893static inline void update_link_status(struct net_device *netdev,
894 union oct_link_status *ls)
895{
896 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700897 int changed = (lio->linfo.link.u64 != ls->u64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700898
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700899 lio->linfo.link.u64 = ls->u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700900
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700901 if ((lio->intf_open) && (changed)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700902 print_link_info(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700903 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700904
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -0700905 if (lio->linfo.link.s.link_up) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700906 netif_carrier_on(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700907 txqs_wake(netdev);
908 } else {
909 netif_carrier_off(netdev);
910 stop_txq(netdev);
911 }
912 }
913}
914
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700915/* Runs in interrupt context. */
916static void update_txq_status(struct octeon_device *oct, int iq_num)
917{
918 struct net_device *netdev;
919 struct lio *lio;
920 struct octeon_instr_queue *iq = oct->instr_queue[iq_num];
921
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700922 netdev = oct->props[iq->ifidx].netdev;
923
924 /* This is needed because the first IQ does not have
925 * a netdev associated with it.
926 */
927 if (!netdev)
928 return;
929
930 lio = GET_LIO(netdev);
931 if (netif_is_multiqueue(netdev)) {
932 if (__netif_subqueue_stopped(netdev, iq->q_index) &&
933 lio->linfo.link.s.link_up &&
934 (!octnet_iq_is_full(oct, iq_num))) {
Raghu Vatsavayi1f164712016-06-21 22:53:11 -0700935 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq_num,
936 tx_restart, 1);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700937 netif_wake_subqueue(netdev, iq->q_index);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700938 }
VSR Burru6069f3f2017-03-22 11:54:50 -0700939 } else if (netif_queue_stopped(netdev) &&
940 lio->linfo.link.s.link_up &&
941 (!octnet_iq_is_full(oct, lio->txq))) {
942 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev,
943 lio->txq, tx_restart, 1);
944 netif_wake_queue(netdev);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -0700945 }
946}
947
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700948static
949int liquidio_schedule_msix_droq_pkt_handler(struct octeon_droq *droq, u64 ret)
950{
951 struct octeon_device *oct = droq->oct_dev;
952 struct octeon_device_priv *oct_priv =
953 (struct octeon_device_priv *)oct->priv;
954
955 if (droq->ops.poll_mode) {
956 droq->ops.napi_fn(droq);
957 } else {
958 if (ret & MSIX_PO_INT) {
959 tasklet_schedule(&oct_priv->droq_tasklet);
960 return 1;
961 }
962 /* this will be flushed periodically by check iq db */
963 if (ret & MSIX_PI_INT)
964 return 0;
965 }
966 return 0;
967}
968
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700969/**
970 * \brief Droq packet processor sceduler
971 * @param oct octeon device
972 */
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -0700973static void liquidio_schedule_droq_pkt_handlers(struct octeon_device *oct)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700974{
975 struct octeon_device_priv *oct_priv =
976 (struct octeon_device_priv *)oct->priv;
977 u64 oq_no;
978 struct octeon_droq *droq;
979
980 if (oct->int_status & OCT_DEV_INTR_PKT_DATA) {
Raghu Vatsavayi63da8402016-06-21 22:53:03 -0700981 for (oq_no = 0; oq_no < MAX_OCTEON_OUTPUT_QUEUES(oct);
982 oq_no++) {
Raghu Vatsavayi763185a2016-11-14 15:54:45 -0800983 if (!(oct->droq_intr & BIT_ULL(oq_no)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -0700984 continue;
985
986 droq = oct->droq[oq_no];
987
988 if (droq->ops.poll_mode) {
989 droq->ops.napi_fn(droq);
990 oct_priv->napi_mask |= (1 << oq_no);
991 } else {
992 tasklet_schedule(&oct_priv->droq_tasklet);
993 }
994 }
995 }
996}
997
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -0700998static irqreturn_t
999liquidio_msix_intr_handler(int irq __attribute__((unused)), void *dev)
1000{
1001 u64 ret;
1002 struct octeon_ioq_vector *ioq_vector = (struct octeon_ioq_vector *)dev;
1003 struct octeon_device *oct = ioq_vector->oct_dev;
1004 struct octeon_droq *droq = oct->droq[ioq_vector->droq_index];
1005
1006 ret = oct->fn_list.msix_interrupt_handler(ioq_vector);
1007
1008 if ((ret & MSIX_PO_INT) || (ret & MSIX_PI_INT))
1009 liquidio_schedule_msix_droq_pkt_handler(droq, ret);
1010
1011 return IRQ_HANDLED;
1012}
1013
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001014/**
1015 * \brief Interrupt handler for octeon
1016 * @param irq unused
1017 * @param dev octeon device
1018 */
1019static
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001020irqreturn_t liquidio_legacy_intr_handler(int irq __attribute__((unused)),
1021 void *dev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001022{
1023 struct octeon_device *oct = (struct octeon_device *)dev;
1024 irqreturn_t ret;
1025
1026 /* Disable our interrupts for the duration of ISR */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001027 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001028
1029 ret = oct->fn_list.process_interrupt_regs(oct);
1030
1031 if (ret == IRQ_HANDLED)
1032 liquidio_schedule_droq_pkt_handlers(oct);
1033
1034 /* Re-enable our interrupts */
1035 if (!(atomic_read(&oct->status) == OCT_DEV_IN_RESET))
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001036 oct->fn_list.enable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001037
1038 return ret;
1039}
1040
1041/**
1042 * \brief Setup interrupt for octeon device
1043 * @param oct octeon device
1044 *
1045 * Enable interrupt in Octeon device as given in the PCI interrupt mask.
1046 */
1047static int octeon_setup_interrupt(struct octeon_device *oct)
1048{
1049 int irqret, err;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001050 struct msix_entry *msix_entries;
1051 int i;
1052 int num_ioq_vectors;
1053 int num_alloc_ioq_vectors;
Rick Farrington0c88a762017-03-13 12:58:04 -07001054 char *queue_irq_names = NULL;
1055 char *aux_irq_name = NULL;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001056
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001057 if (OCTEON_CN23XX_PF(oct) && oct->msix_on) {
1058 oct->num_msix_irqs = oct->sriov_info.num_pf_rings;
1059 /* one non ioq interrupt for handling sli_mac_pf_int_sum */
1060 oct->num_msix_irqs += 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001061
Rick Farrington0c88a762017-03-13 12:58:04 -07001062 /* allocate storage for the names assigned to each irq */
1063 oct->irq_name_storage =
1064 kcalloc((MAX_IOQ_INTERRUPTS_PER_PF + 1), INTRNAMSIZ,
1065 GFP_KERNEL);
1066 if (!oct->irq_name_storage) {
1067 dev_err(&oct->pci_dev->dev, "Irq name storage alloc failed...\n");
1068 return -ENOMEM;
1069 }
1070
1071 queue_irq_names = oct->irq_name_storage;
1072 aux_irq_name = &queue_irq_names
1073 [IRQ_NAME_OFF(MAX_IOQ_INTERRUPTS_PER_PF)];
1074
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001075 oct->msix_entries = kcalloc(
1076 oct->num_msix_irqs, sizeof(struct msix_entry), GFP_KERNEL);
Rick Farrington0c88a762017-03-13 12:58:04 -07001077 if (!oct->msix_entries) {
1078 dev_err(&oct->pci_dev->dev, "Memory Alloc failed...\n");
1079 kfree(oct->irq_name_storage);
1080 oct->irq_name_storage = NULL;
1081 return -ENOMEM;
1082 }
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001083
1084 msix_entries = (struct msix_entry *)oct->msix_entries;
1085 /*Assumption is that pf msix vectors start from pf srn to pf to
1086 * trs and not from 0. if not change this code
1087 */
1088 for (i = 0; i < oct->num_msix_irqs - 1; i++)
1089 msix_entries[i].entry = oct->sriov_info.pf_srn + i;
1090 msix_entries[oct->num_msix_irqs - 1].entry =
1091 oct->sriov_info.trs;
1092 num_alloc_ioq_vectors = pci_enable_msix_range(
1093 oct->pci_dev, msix_entries,
1094 oct->num_msix_irqs,
1095 oct->num_msix_irqs);
1096 if (num_alloc_ioq_vectors < 0) {
1097 dev_err(&oct->pci_dev->dev, "unable to Allocate MSI-X interrupts\n");
1098 kfree(oct->msix_entries);
1099 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001100 kfree(oct->irq_name_storage);
1101 oct->irq_name_storage = NULL;
1102 return num_alloc_ioq_vectors;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001103 }
1104 dev_dbg(&oct->pci_dev->dev, "OCTEON: Enough MSI-X interrupts are allocated...\n");
1105
1106 num_ioq_vectors = oct->num_msix_irqs;
1107
1108 /** For PF, there is one non-ioq interrupt handler */
1109 num_ioq_vectors -= 1;
Rick Farrington0c88a762017-03-13 12:58:04 -07001110
1111 snprintf(aux_irq_name, INTRNAMSIZ,
1112 "LiquidIO%u-pf%u-aux", oct->octeon_id, oct->pf_num);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001113 irqret = request_irq(msix_entries[num_ioq_vectors].vector,
Rick Farrington0c88a762017-03-13 12:58:04 -07001114 liquidio_legacy_intr_handler, 0,
1115 aux_irq_name, oct);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001116 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;
Rick Farrington0c88a762017-03-13 12:58:04 -07001123 kfree(oct->irq_name_storage);
1124 oct->irq_name_storage = NULL;
1125 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001126 }
1127
1128 for (i = 0; i < num_ioq_vectors; i++) {
Rick Farrington0c88a762017-03-13 12:58:04 -07001129 snprintf(&queue_irq_names[IRQ_NAME_OFF(i)], INTRNAMSIZ,
1130 "LiquidIO%u-pf%u-rxtx-%u",
1131 oct->octeon_id, oct->pf_num, i);
1132
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001133 irqret = request_irq(msix_entries[i].vector,
1134 liquidio_msix_intr_handler, 0,
Rick Farrington0c88a762017-03-13 12:58:04 -07001135 &queue_irq_names[IRQ_NAME_OFF(i)],
1136 &oct->ioq_vector[i]);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001137 if (irqret) {
1138 dev_err(&oct->pci_dev->dev,
1139 "OCTEON: Request_irq failed for MSIX interrupt Error: %d\n",
1140 irqret);
1141 /** Freeing the non-ioq irq vector here . */
1142 free_irq(msix_entries[num_ioq_vectors].vector,
1143 oct);
1144
1145 while (i) {
1146 i--;
1147 /** clearing affinity mask. */
1148 irq_set_affinity_hint(
1149 msix_entries[i].vector, NULL);
1150 free_irq(msix_entries[i].vector,
1151 &oct->ioq_vector[i]);
1152 }
1153 pci_disable_msix(oct->pci_dev);
1154 kfree(oct->msix_entries);
1155 oct->msix_entries = NULL;
Rick Farrington0c88a762017-03-13 12:58:04 -07001156 kfree(oct->irq_name_storage);
1157 oct->irq_name_storage = NULL;
1158 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001159 }
1160 oct->ioq_vector[i].vector = msix_entries[i].vector;
1161 /* assign the cpu mask for this msix interrupt vector */
1162 irq_set_affinity_hint(
1163 msix_entries[i].vector,
1164 (&oct->ioq_vector[i].affinity_mask));
1165 }
1166 dev_dbg(&oct->pci_dev->dev, "OCTEON[%d]: MSI-X enabled\n",
1167 oct->octeon_id);
1168 } else {
1169 err = pci_enable_msi(oct->pci_dev);
1170 if (err)
1171 dev_warn(&oct->pci_dev->dev, "Reverting to legacy interrupts. Error: %d\n",
1172 err);
1173 else
1174 oct->flags |= LIO_FLAG_MSI_ENABLED;
1175
Rick Farrington0c88a762017-03-13 12:58:04 -07001176 /* allocate storage for the names assigned to the irq */
1177 oct->irq_name_storage = kcalloc(1, INTRNAMSIZ, GFP_KERNEL);
1178 if (!oct->irq_name_storage)
1179 return -ENOMEM;
1180
1181 queue_irq_names = oct->irq_name_storage;
1182
1183 snprintf(&queue_irq_names[IRQ_NAME_OFF(0)], INTRNAMSIZ,
1184 "LiquidIO%u-pf%u-rxtx-%u",
1185 oct->octeon_id, oct->pf_num, 0);
1186
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001187 irqret = request_irq(oct->pci_dev->irq,
Rick Farrington0c88a762017-03-13 12:58:04 -07001188 liquidio_legacy_intr_handler,
1189 IRQF_SHARED,
1190 &queue_irq_names[IRQ_NAME_OFF(0)], oct);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001191 if (irqret) {
1192 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1193 pci_disable_msi(oct->pci_dev);
1194 dev_err(&oct->pci_dev->dev, "Request IRQ failed with code: %d\n",
1195 irqret);
Rick Farrington0c88a762017-03-13 12:58:04 -07001196 kfree(oct->irq_name_storage);
1197 oct->irq_name_storage = NULL;
1198 return irqret;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001199 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001200 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001201 return 0;
1202}
1203
Felix Manlunasbb54be52017-04-04 19:26:57 -07001204static struct octeon_device *get_other_octeon_device(struct octeon_device *oct)
1205{
1206 struct octeon_device *other_oct;
1207
1208 other_oct = lio_get_device(oct->octeon_id + 1);
1209
1210 if (other_oct && other_oct->pci_dev) {
1211 int oct_busnum, other_oct_busnum;
1212
1213 oct_busnum = oct->pci_dev->bus->number;
1214 other_oct_busnum = other_oct->pci_dev->bus->number;
1215
1216 if (oct_busnum == other_oct_busnum) {
1217 int oct_slot, other_oct_slot;
1218
1219 oct_slot = PCI_SLOT(oct->pci_dev->devfn);
1220 other_oct_slot = PCI_SLOT(other_oct->pci_dev->devfn);
1221
1222 if (oct_slot == other_oct_slot)
1223 return other_oct;
1224 }
1225 }
1226
1227 return NULL;
1228}
1229
1230static void disable_all_vf_links(struct octeon_device *oct)
1231{
1232 struct net_device *netdev;
1233 int max_vfs, vf, i;
1234
1235 if (!oct)
1236 return;
1237
1238 max_vfs = oct->sriov_info.max_vfs;
1239
1240 for (i = 0; i < oct->ifcount; i++) {
1241 netdev = oct->props[i].netdev;
1242 if (!netdev)
1243 continue;
1244
1245 for (vf = 0; vf < max_vfs; vf++)
1246 liquidio_set_vf_link_state(netdev, vf,
1247 IFLA_VF_LINK_STATE_DISABLE);
1248 }
1249}
1250
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001251static int liquidio_watchdog(void *param)
1252{
Felix Manlunasbb54be52017-04-04 19:26:57 -07001253 bool err_msg_was_printed[LIO_MAX_CORES];
1254 u16 mask_of_crashed_or_stuck_cores = 0;
1255 bool all_vf_links_are_disabled = false;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001256 struct octeon_device *oct = param;
Felix Manlunasbb54be52017-04-04 19:26:57 -07001257 struct octeon_device *other_oct;
1258#ifdef CONFIG_MODULE_UNLOAD
1259 long refcount, vfs_referencing_pf;
1260 u64 vfs_mask1, vfs_mask2;
1261#endif
1262 int core;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001263
Felix Manlunasbb54be52017-04-04 19:26:57 -07001264 memset(err_msg_was_printed, 0, sizeof(err_msg_was_printed));
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001265
1266 while (!kthread_should_stop()) {
Felix Manlunasbb54be52017-04-04 19:26:57 -07001267 /* sleep for a couple of seconds so that we don't hog the CPU */
1268 set_current_state(TASK_INTERRUPTIBLE);
1269 schedule_timeout(msecs_to_jiffies(2000));
1270
1271 mask_of_crashed_or_stuck_cores =
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001272 (u16)octeon_read_csr64(oct, CN23XX_SLI_SCRATCH2);
1273
Felix Manlunasbb54be52017-04-04 19:26:57 -07001274 if (!mask_of_crashed_or_stuck_cores)
1275 continue;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001276
Felix Manlunasbb54be52017-04-04 19:26:57 -07001277 WRITE_ONCE(oct->cores_crashed, true);
1278 other_oct = get_other_octeon_device(oct);
1279 if (other_oct)
1280 WRITE_ONCE(other_oct->cores_crashed, true);
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001281
Felix Manlunasbb54be52017-04-04 19:26:57 -07001282 for (core = 0; core < LIO_MAX_CORES; core++) {
1283 bool core_crashed_or_got_stuck;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001284
Felix Manlunasbb54be52017-04-04 19:26:57 -07001285 core_crashed_or_got_stuck =
1286 (mask_of_crashed_or_stuck_cores
1287 >> core) & 1;
1288
1289 if (core_crashed_or_got_stuck &&
1290 !err_msg_was_printed[core]) {
1291 dev_err(&oct->pci_dev->dev,
1292 "ERROR: Octeon core %d crashed or got stuck! See oct-fwdump for details.\n",
1293 core);
1294 err_msg_was_printed[core] = true;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001295 }
1296 }
1297
Felix Manlunasbb54be52017-04-04 19:26:57 -07001298 if (all_vf_links_are_disabled)
1299 continue;
1300
1301 disable_all_vf_links(oct);
1302 disable_all_vf_links(other_oct);
1303 all_vf_links_are_disabled = true;
1304
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001305#ifdef CONFIG_MODULE_UNLOAD
Felix Manlunasbb54be52017-04-04 19:26:57 -07001306 vfs_mask1 = READ_ONCE(oct->sriov_info.vf_drv_loaded_mask);
1307 vfs_mask2 = READ_ONCE(other_oct->sriov_info.vf_drv_loaded_mask);
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001308
Felix Manlunasbb54be52017-04-04 19:26:57 -07001309 vfs_referencing_pf = hweight64(vfs_mask1);
1310 vfs_referencing_pf += hweight64(vfs_mask2);
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001311
Felix Manlunasbb54be52017-04-04 19:26:57 -07001312 refcount = module_refcount(THIS_MODULE);
1313 if (refcount >= vfs_referencing_pf) {
1314 while (vfs_referencing_pf) {
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001315 module_put(THIS_MODULE);
Felix Manlunasbb54be52017-04-04 19:26:57 -07001316 vfs_referencing_pf--;
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001317 }
1318 }
1319#endif
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001320 }
1321
1322 return 0;
1323}
1324
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001325/**
1326 * \brief PCI probe handler
1327 * @param pdev PCI device structure
1328 * @param ent unused
1329 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07001330static int
1331liquidio_probe(struct pci_dev *pdev,
1332 const struct pci_device_id *ent __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001333{
1334 struct octeon_device *oct_dev = NULL;
1335 struct handshake *hs;
1336
1337 oct_dev = octeon_allocate_device(pdev->device,
1338 sizeof(struct octeon_device_priv));
1339 if (!oct_dev) {
1340 dev_err(&pdev->dev, "Unable to allocate device\n");
1341 return -ENOMEM;
1342 }
1343
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001344 if (pdev->device == OCTEON_CN23XX_PF_VID)
1345 oct_dev->msix_on = LIO_FLAG_MSIX_ENABLED;
1346
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001347 dev_info(&pdev->dev, "Initializing device %x:%x.\n",
1348 (u32)pdev->vendor, (u32)pdev->device);
1349
1350 /* Assign octeon_device for this device to the private data area. */
1351 pci_set_drvdata(pdev, oct_dev);
1352
1353 /* set linux specific device pointer */
1354 oct_dev->pci_dev = (void *)pdev;
1355
1356 hs = &handshake[oct_dev->octeon_id];
1357 init_completion(&hs->init);
1358 init_completion(&hs->started);
1359 hs->pci_dev = pdev;
1360
1361 if (oct_dev->octeon_id == 0)
1362 /* first LiquidIO NIC is detected */
1363 complete(&first_stage);
1364
1365 if (octeon_device_init(oct_dev)) {
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001366 complete(&hs->init);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001367 liquidio_remove(pdev);
1368 return -ENOMEM;
1369 }
1370
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001371 if (OCTEON_CN23XX_PF(oct_dev)) {
1372 u64 scratch1;
1373 u8 bus, device, function;
1374
1375 scratch1 = octeon_read_csr64(oct_dev, CN23XX_SLI_SCRATCH1);
1376 if (!(scratch1 & 4ULL)) {
1377 /* Bit 2 of SLI_SCRATCH_1 is a flag that indicates that
1378 * the lio watchdog kernel thread is running for this
1379 * NIC. Each NIC gets one watchdog kernel thread.
1380 */
1381 scratch1 |= 4ULL;
1382 octeon_write_csr64(oct_dev, CN23XX_SLI_SCRATCH1,
1383 scratch1);
1384
1385 bus = pdev->bus->number;
1386 device = PCI_SLOT(pdev->devfn);
1387 function = PCI_FUNC(pdev->devfn);
1388 oct_dev->watchdog_task = kthread_create(
1389 liquidio_watchdog, oct_dev,
1390 "liowd/%02hhx:%02hhx.%hhx", bus, device, function);
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001391 if (!IS_ERR(oct_dev->watchdog_task)) {
1392 wake_up_process(oct_dev->watchdog_task);
1393 } else {
1394 oct_dev->watchdog_task = NULL;
1395 dev_err(&oct_dev->pci_dev->dev,
1396 "failed to create kernel_thread\n");
1397 liquidio_remove(pdev);
1398 return -1;
1399 }
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001400 }
1401 }
1402
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001403 oct_dev->rx_pause = 1;
1404 oct_dev->tx_pause = 1;
1405
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001406 dev_dbg(&oct_dev->pci_dev->dev, "Device is ready\n");
1407
1408 return 0;
1409}
1410
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001411static bool fw_type_is_none(void)
1412{
1413 return strncmp(fw_type, LIO_FW_NAME_TYPE_NONE,
1414 sizeof(LIO_FW_NAME_TYPE_NONE)) == 0;
1415}
1416
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001417/**
1418 *\brief Destroy resources associated with octeon device
1419 * @param pdev PCI device structure
1420 * @param ent unused
1421 */
1422static void octeon_destroy_resources(struct octeon_device *oct)
1423{
Rick Farringtone1e3ce62017-05-16 11:14:50 -07001424 int i, refcount;
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001425 struct msix_entry *msix_entries;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001426 struct octeon_device_priv *oct_priv =
1427 (struct octeon_device_priv *)oct->priv;
1428
1429 struct handshake *hs;
1430
1431 switch (atomic_read(&oct->status)) {
1432 case OCT_DEV_RUNNING:
1433 case OCT_DEV_CORE_OK:
1434
1435 /* No more instructions will be forwarded. */
1436 atomic_set(&oct->status, OCT_DEV_IN_RESET);
1437
1438 oct->app_mode = CVM_DRV_INVALID_APP;
1439 dev_dbg(&oct->pci_dev->dev, "Device state is now %s\n",
1440 lio_get_state_string(&oct->status));
1441
1442 schedule_timeout_uninterruptible(HZ / 10);
1443
1444 /* fallthrough */
1445 case OCT_DEV_HOST_OK:
1446
1447 /* fallthrough */
1448 case OCT_DEV_CONSOLE_INIT_DONE:
1449 /* Remove any consoles */
1450 octeon_remove_consoles(oct);
1451
1452 /* fallthrough */
1453 case OCT_DEV_IO_QUEUES_DONE:
1454 if (wait_for_pending_requests(oct))
1455 dev_err(&oct->pci_dev->dev, "There were pending requests\n");
1456
1457 if (lio_wait_for_instr_fetch(oct))
1458 dev_err(&oct->pci_dev->dev, "IQ had pending instructions\n");
1459
1460 /* Disable the input and output queues now. No more packets will
1461 * arrive from Octeon, but we should wait for all packet
1462 * processing to finish.
1463 */
1464 oct->fn_list.disable_io_queues(oct);
1465
1466 if (lio_wait_for_oq_pkts(oct))
1467 dev_err(&oct->pci_dev->dev, "OQ had pending packets\n");
1468
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001469 /* fallthrough */
1470 case OCT_DEV_INTR_SET_DONE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001471 /* Disable interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001472 oct->fn_list.disable_interrupt(oct, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001473
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001474 if (oct->msix_on) {
1475 msix_entries = (struct msix_entry *)oct->msix_entries;
1476 for (i = 0; i < oct->num_msix_irqs - 1; i++) {
1477 /* clear the affinity_cpumask */
1478 irq_set_affinity_hint(msix_entries[i].vector,
1479 NULL);
1480 free_irq(msix_entries[i].vector,
1481 &oct->ioq_vector[i]);
1482 }
1483 /* non-iov vector's argument is oct struct */
1484 free_irq(msix_entries[i].vector, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001485
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001486 pci_disable_msix(oct->pci_dev);
1487 kfree(oct->msix_entries);
1488 oct->msix_entries = NULL;
1489 } else {
1490 /* Release the interrupt line */
1491 free_irq(oct->pci_dev->irq, oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001492
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001493 if (oct->flags & LIO_FLAG_MSI_ENABLED)
1494 pci_disable_msi(oct->pci_dev);
1495 }
1496
Rick Farrington0c88a762017-03-13 12:58:04 -07001497 kfree(oct->irq_name_storage);
1498 oct->irq_name_storage = NULL;
1499
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001500 /* fallthrough */
1501 case OCT_DEV_MSIX_ALLOC_VECTOR_DONE:
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001502 if (OCTEON_CN23XX_PF(oct))
1503 octeon_free_ioq_vector(oct);
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08001504
1505 /* fallthrough */
1506 case OCT_DEV_MBOX_SETUP_DONE:
1507 if (OCTEON_CN23XX_PF(oct))
1508 oct->fn_list.free_mbox(oct);
1509
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001510 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001511 case OCT_DEV_IN_RESET:
1512 case OCT_DEV_DROQ_INIT_DONE:
Raghu Vatsavayi763185a2016-11-14 15:54:45 -08001513 /* Wait for any pending operations */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001514 mdelay(100);
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001515 for (i = 0; i < MAX_OCTEON_OUTPUT_QUEUES(oct); i++) {
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07001516 if (!(oct->io_qmask.oq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001517 continue;
1518 octeon_delete_droq(oct, i);
1519 }
1520
1521 /* Force any pending handshakes to complete */
1522 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
1523 hs = &handshake[i];
1524
1525 if (hs->pci_dev) {
1526 handshake[oct->octeon_id].init_ok = 0;
1527 complete(&handshake[oct->octeon_id].init);
1528 handshake[oct->octeon_id].started_ok = 0;
1529 complete(&handshake[oct->octeon_id].started);
1530 }
1531 }
1532
1533 /* fallthrough */
1534 case OCT_DEV_RESP_LIST_INIT_DONE:
1535 octeon_delete_response_list(oct);
1536
1537 /* fallthrough */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001538 case OCT_DEV_INSTR_QUEUE_INIT_DONE:
Raghu Vatsavayi63da8402016-06-21 22:53:03 -07001539 for (i = 0; i < MAX_OCTEON_INSTR_QUEUES(oct); i++) {
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001540 if (!(oct->io_qmask.iq & BIT_ULL(i)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001541 continue;
1542 octeon_delete_instr_queue(oct, i);
1543 }
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08001544#ifdef CONFIG_PCI_IOV
1545 if (oct->sriov_info.sriov_enabled)
1546 pci_disable_sriov(oct->pci_dev);
1547#endif
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07001548 /* fallthrough */
1549 case OCT_DEV_SC_BUFF_POOL_INIT_DONE:
1550 octeon_free_sc_buffer_pool(oct);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001551
1552 /* fallthrough */
1553 case OCT_DEV_DISPATCH_INIT_DONE:
1554 octeon_delete_dispatch_list(oct);
1555 cancel_delayed_work_sync(&oct->nic_poll_work.work);
1556
1557 /* fallthrough */
1558 case OCT_DEV_PCI_MAP_DONE:
Rick Farringtone1e3ce62017-05-16 11:14:50 -07001559 refcount = octeon_deregister_device(oct);
1560
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001561 if (!fw_type_is_none()) {
Rick Farringtone1e3ce62017-05-16 11:14:50 -07001562 /* Soft reset the octeon device before exiting.
1563 * Implementation note: here, we reset the device
1564 * if it is a CN6XXX OR the last CN23XX device.
1565 */
1566 if (OCTEON_CN6XXX(oct) || !refcount)
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001567 oct->fn_list.soft_reset(oct);
1568 }
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001569
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001570 octeon_unmap_pci_barx(oct, 0);
1571 octeon_unmap_pci_barx(oct, 1);
1572
1573 /* fallthrough */
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001574 case OCT_DEV_PCI_ENABLE_DONE:
1575 pci_clear_master(oct->pci_dev);
Raghu Vatsavayi60b48c52016-06-21 22:53:09 -07001576 /* Disable the device, releasing the PCI INT */
1577 pci_disable_device(oct->pci_dev);
1578
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001579 /* fallthrough */
1580 case OCT_DEV_BEGIN_STATE:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001581 /* Nothing to be done here either */
1582 break;
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07001583 } /* end switch (oct->status) */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001584
1585 tasklet_kill(&oct_priv->droq_tasklet);
1586}
1587
1588/**
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001589 * \brief Callback for rx ctrl
1590 * @param status status of request
1591 * @param buf pointer to resp structure
1592 */
1593static void rx_ctl_callback(struct octeon_device *oct,
1594 u32 status,
1595 void *buf)
1596{
1597 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
1598 struct liquidio_rx_ctl_context *ctx;
1599
1600 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1601
1602 oct = lio_get_device(ctx->octeon_id);
1603 if (status)
1604 dev_err(&oct->pci_dev->dev, "rx ctl instruction failed. Status: %llx\n",
1605 CVM_CAST64(status));
1606 WRITE_ONCE(ctx->cond, 1);
1607
1608 /* This barrier is required to be sure that the response has been
1609 * written fully before waking up the handler
1610 */
1611 wmb();
1612
1613 wake_up_interruptible(&ctx->wc);
1614}
1615
1616/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001617 * \brief Send Rx control command
1618 * @param lio per-network private data
1619 * @param start_stop whether to start or stop
1620 */
1621static void send_rx_ctrl_cmd(struct lio *lio, int start_stop)
1622{
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001623 struct octeon_soft_command *sc;
1624 struct liquidio_rx_ctl_context *ctx;
1625 union octnet_cmd *ncmd;
1626 int ctx_size = sizeof(struct liquidio_rx_ctl_context);
1627 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
1628 int retval;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001629
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001630 if (oct->props[lio->ifidx].rx_on == start_stop)
1631 return;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001632
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001633 sc = (struct octeon_soft_command *)
1634 octeon_alloc_soft_command(oct, OCTNET_CMD_SIZE,
1635 16, ctx_size);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001636
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001637 ncmd = (union octnet_cmd *)sc->virtdptr;
1638 ctx = (struct liquidio_rx_ctl_context *)sc->ctxptr;
1639
1640 WRITE_ONCE(ctx->cond, 0);
1641 ctx->octeon_id = lio_get_device_id(oct);
1642 init_waitqueue_head(&ctx->wc);
1643
1644 ncmd->u64 = 0;
1645 ncmd->s.cmd = OCTNET_CMD_RX_CTL;
1646 ncmd->s.param1 = start_stop;
1647
1648 octeon_swap_8B_data((u64 *)ncmd, (OCTNET_CMD_SIZE >> 3));
1649
1650 sc->iq_no = lio->linfo.txpciq[0].s.q_no;
1651
1652 octeon_prepare_soft_command(oct, sc, OPCODE_NIC,
1653 OPCODE_NIC_CMD, 0, 0, 0);
1654
1655 sc->callback = rx_ctl_callback;
1656 sc->callback_arg = sc;
1657 sc->wait_time = 5000;
1658
1659 retval = octeon_send_soft_command(oct, sc);
1660 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001661 netif_info(lio, rx_err, lio->netdev, "Failed to send RX Control message\n");
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001662 } else {
1663 /* Sleep on a wait queue till the cond flag indicates that the
1664 * response arrived or timed-out.
1665 */
1666 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR)
1667 return;
1668 oct->props[lio->ifidx].rx_on = start_stop;
1669 }
1670
1671 octeon_free_soft_command(oct, sc);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001672}
1673
1674/**
1675 * \brief Destroy NIC device interface
1676 * @param oct octeon device
1677 * @param ifidx which interface to destroy
1678 *
1679 * Cleanup associated with each interface for an Octeon device when NIC
1680 * module is being unloaded or if initialization fails during load.
1681 */
1682static void liquidio_destroy_nic_device(struct octeon_device *oct, int ifidx)
1683{
1684 struct net_device *netdev = oct->props[ifidx].netdev;
1685 struct lio *lio;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001686 struct napi_struct *napi, *n;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001687
1688 if (!netdev) {
1689 dev_err(&oct->pci_dev->dev, "%s No netdevice ptr for index %d\n",
1690 __func__, ifidx);
1691 return;
1692 }
1693
1694 lio = GET_LIO(netdev);
1695
1696 dev_dbg(&oct->pci_dev->dev, "NIC device cleanup\n");
1697
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001698 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING)
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07001699 liquidio_stop(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001700
Felix Manlunas7cc61db2017-03-23 13:26:28 -07001701 if (fw_type_is_none()) {
1702 struct octnic_ctrl_pkt nctrl;
1703
1704 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
1705 nctrl.ncmd.s.cmd = OCTNET_CMD_RESET_PF;
1706 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
1707 octnet_send_nic_ctrl_pkt(oct, &nctrl);
1708 }
1709
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001710 if (oct->props[lio->ifidx].napi_enabled == 1) {
1711 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
1712 napi_disable(napi);
1713
1714 oct->props[lio->ifidx].napi_enabled = 0;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001715
1716 if (OCTEON_CN23XX_PF(oct))
1717 oct->droq[0]->ops.poll_mode = 0;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07001718 }
1719
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001720 if (atomic_read(&lio->ifstate) & LIO_IFSTATE_REGISTERED)
1721 unregister_netdev(netdev);
1722
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07001723 cleanup_link_status_change_wq(netdev);
1724
Satanand Burla031d4f12017-03-22 11:31:13 -07001725 cleanup_rx_oom_poll_fn(netdev);
1726
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001727 delete_glists(lio);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001728
1729 free_netdev(netdev);
1730
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07001731 oct->props[ifidx].gmxport = -1;
1732
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001733 oct->props[ifidx].netdev = NULL;
1734}
1735
1736/**
1737 * \brief Stop complete NIC functionality
1738 * @param oct octeon device
1739 */
1740static int liquidio_stop_nic_module(struct octeon_device *oct)
1741{
1742 int i, j;
1743 struct lio *lio;
1744
1745 dev_dbg(&oct->pci_dev->dev, "Stopping network interfaces\n");
1746 if (!oct->ifcount) {
1747 dev_err(&oct->pci_dev->dev, "Init for Octeon was not completed\n");
1748 return 1;
1749 }
1750
Raghu Vatsavayi60441882016-06-21 22:53:08 -07001751 spin_lock_bh(&oct->cmd_resp_wqlock);
1752 oct->cmd_resp_state = OCT_DRV_OFFLINE;
1753 spin_unlock_bh(&oct->cmd_resp_wqlock);
1754
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001755 for (i = 0; i < oct->ifcount; i++) {
1756 lio = GET_LIO(oct->props[i].netdev);
1757 for (j = 0; j < lio->linfo.num_rxpciq; j++)
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001758 octeon_unregister_droq_ops(oct,
1759 lio->linfo.rxpciq[j].s.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001760 }
1761
1762 for (i = 0; i < oct->ifcount; i++)
1763 liquidio_destroy_nic_device(oct, i);
1764
1765 dev_dbg(&oct->pci_dev->dev, "Network interfaces stopped\n");
1766 return 0;
1767}
1768
1769/**
1770 * \brief Cleans up resources at unload time
1771 * @param pdev PCI device structure
1772 */
1773static void liquidio_remove(struct pci_dev *pdev)
1774{
1775 struct octeon_device *oct_dev = pci_get_drvdata(pdev);
1776
1777 dev_dbg(&oct_dev->pci_dev->dev, "Stopping device\n");
1778
Raghu Vatsavayi9ff1a9b2016-09-01 11:16:09 -07001779 if (oct_dev->watchdog_task)
1780 kthread_stop(oct_dev->watchdog_task);
1781
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001782 if (oct_dev->app_mode && (oct_dev->app_mode == CVM_DRV_NIC_APP))
1783 liquidio_stop_nic_module(oct_dev);
1784
1785 /* Reset the octeon device and cleanup all memory allocated for
1786 * the octeon device by driver.
1787 */
1788 octeon_destroy_resources(oct_dev);
1789
1790 dev_info(&oct_dev->pci_dev->dev, "Device removed\n");
1791
1792 /* This octeon device has been removed. Update the global
1793 * data structure to reflect this. Free the device structure.
1794 */
1795 octeon_free_device_mem(oct_dev);
1796}
1797
1798/**
1799 * \brief Identify the Octeon device and to map the BAR address space
1800 * @param oct octeon device
1801 */
1802static int octeon_chip_specific_setup(struct octeon_device *oct)
1803{
1804 u32 dev_id, rev_id;
1805 int ret = 1;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001806 char *s;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001807
1808 pci_read_config_dword(oct->pci_dev, 0, &dev_id);
1809 pci_read_config_dword(oct->pci_dev, 8, &rev_id);
1810 oct->rev_id = rev_id & 0xff;
1811
1812 switch (dev_id) {
1813 case OCTEON_CN68XX_PCIID:
1814 oct->chip_id = OCTEON_CN68XX;
1815 ret = lio_setup_cn68xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001816 s = "CN68XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001817 break;
1818
1819 case OCTEON_CN66XX_PCIID:
1820 oct->chip_id = OCTEON_CN66XX;
1821 ret = lio_setup_cn66xx_octeon_device(oct);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001822 s = "CN66XX";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001823 break;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001824
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001825 case OCTEON_CN23XX_PCIID_PF:
1826 oct->chip_id = OCTEON_CN23XX_PF_VID;
1827 ret = setup_cn23xx_octeon_pf_device(oct);
Derek Chicklescf19a8c2017-08-01 15:05:07 -07001828#ifdef CONFIG_PCI_IOV
1829 if (!ret)
1830 pci_sriov_set_totalvfs(oct->pci_dev,
1831 oct->sriov_info.max_vfs);
1832#endif
Raghu Vatsavayi72c00912016-08-31 11:03:25 -07001833 s = "CN23XX";
1834 break;
1835
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001836 default:
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001837 s = "?";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001838 dev_err(&oct->pci_dev->dev, "Unknown device found (dev_id: %x)\n",
1839 dev_id);
1840 }
1841
1842 if (!ret)
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001843 dev_info(&oct->pci_dev->dev, "%s PASS%d.%d %s Version: %s\n", s,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001844 OCTEON_MAJOR_REV(oct),
1845 OCTEON_MINOR_REV(oct),
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07001846 octeon_get_conf(oct)->card_name,
1847 LIQUIDIO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001848
1849 return ret;
1850}
1851
1852/**
1853 * \brief PCI initialization for each Octeon device.
1854 * @param oct octeon device
1855 */
1856static int octeon_pci_os_setup(struct octeon_device *oct)
1857{
1858 /* setup PCI stuff first */
1859 if (pci_enable_device(oct->pci_dev)) {
1860 dev_err(&oct->pci_dev->dev, "pci_enable_device failed\n");
1861 return 1;
1862 }
1863
1864 if (dma_set_mask_and_coherent(&oct->pci_dev->dev, DMA_BIT_MASK(64))) {
1865 dev_err(&oct->pci_dev->dev, "Unexpected DMA device capability\n");
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08001866 pci_disable_device(oct->pci_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001867 return 1;
1868 }
1869
1870 /* Enable PCI DMA Master. */
1871 pci_set_master(oct->pci_dev);
1872
1873 return 0;
1874}
1875
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001876static inline int skb_iq(struct lio *lio, struct sk_buff *skb)
1877{
1878 int q = 0;
1879
1880 if (netif_is_multiqueue(lio->netdev))
1881 q = skb->queue_mapping % lio->linfo.num_txpciq;
1882
1883 return q;
1884}
1885
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001886/**
1887 * \brief Check Tx queue state for a given network buffer
1888 * @param lio per-network private data
1889 * @param skb network buffer
1890 */
1891static inline int check_txq_state(struct lio *lio, struct sk_buff *skb)
1892{
1893 int q = 0, iq = 0;
1894
1895 if (netif_is_multiqueue(lio->netdev)) {
1896 q = skb->queue_mapping;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001897 iq = lio->linfo.txpciq[(q % (lio->linfo.num_txpciq))].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001898 } else {
1899 iq = lio->txq;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001900 q = iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001901 }
1902
1903 if (octnet_iq_is_full(lio->oct_dev, iq))
1904 return 0;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001905
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001906 if (__netif_subqueue_stopped(lio->netdev, q)) {
1907 INCR_INSTRQUEUE_PKT_COUNT(lio->oct_dev, iq, tx_restart, 1);
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07001908 wake_q(lio->netdev, q);
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07001909 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001910 return 1;
1911}
1912
1913/**
1914 * \brief Unmap and free network buffer
1915 * @param buf buffer
1916 */
1917static void free_netbuf(void *buf)
1918{
1919 struct sk_buff *skb;
1920 struct octnet_buf_free_info *finfo;
1921 struct lio *lio;
1922
1923 finfo = (struct octnet_buf_free_info *)buf;
1924 skb = finfo->skb;
1925 lio = finfo->lio;
1926
1927 dma_unmap_single(&lio->oct_dev->pci_dev->dev, finfo->dptr, skb->len,
1928 DMA_TO_DEVICE);
1929
1930 check_txq_state(lio, skb);
1931
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001932 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001933}
1934
1935/**
1936 * \brief Unmap and free gather buffer
1937 * @param buf buffer
1938 */
1939static void free_netsgbuf(void *buf)
1940{
1941 struct octnet_buf_free_info *finfo;
1942 struct sk_buff *skb;
1943 struct lio *lio;
1944 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001945 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001946
1947 finfo = (struct octnet_buf_free_info *)buf;
1948 skb = finfo->skb;
1949 lio = finfo->lio;
1950 g = finfo->g;
1951 frags = skb_shinfo(skb)->nr_frags;
1952
1953 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1954 g->sg[0].ptr[0], (skb->len - skb->data_len),
1955 DMA_TO_DEVICE);
1956
1957 i = 1;
1958 while (frags--) {
1959 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
1960
1961 pci_unmap_page((lio->oct_dev)->pci_dev,
1962 g->sg[(i >> 2)].ptr[(i & 3)],
1963 frag->size, DMA_TO_DEVICE);
1964 i++;
1965 }
1966
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001967 iq = skb_iq(lio, skb);
1968 spin_lock(&lio->glist_lock[iq]);
1969 list_add_tail(&g->list, &lio->glist[iq]);
1970 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001971
1972 check_txq_state(lio, skb); /* mq support: sub-queue state check */
1973
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07001974 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001975}
1976
1977/**
1978 * \brief Unmap and free gather buffer with response
1979 * @param buf buffer
1980 */
1981static void free_netsgbuf_with_resp(void *buf)
1982{
1983 struct octeon_soft_command *sc;
1984 struct octnet_buf_free_info *finfo;
1985 struct sk_buff *skb;
1986 struct lio *lio;
1987 struct octnic_gather *g;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07001988 int i, frags, iq;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07001989
1990 sc = (struct octeon_soft_command *)buf;
1991 skb = (struct sk_buff *)sc->callback_arg;
1992 finfo = (struct octnet_buf_free_info *)&skb->cb;
1993
1994 lio = finfo->lio;
1995 g = finfo->g;
1996 frags = skb_shinfo(skb)->nr_frags;
1997
1998 dma_unmap_single(&lio->oct_dev->pci_dev->dev,
1999 g->sg[0].ptr[0], (skb->len - skb->data_len),
2000 DMA_TO_DEVICE);
2001
2002 i = 1;
2003 while (frags--) {
2004 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i - 1];
2005
2006 pci_unmap_page((lio->oct_dev)->pci_dev,
2007 g->sg[(i >> 2)].ptr[(i & 3)],
2008 frag->size, DMA_TO_DEVICE);
2009 i++;
2010 }
2011
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07002012 iq = skb_iq(lio, skb);
2013
2014 spin_lock(&lio->glist_lock[iq]);
2015 list_add_tail(&g->list, &lio->glist[iq]);
2016 spin_unlock(&lio->glist_lock[iq]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002017
2018 /* Don't free the skb yet */
2019
2020 check_txq_state(lio, skb);
2021}
2022
2023/**
2024 * \brief Adjust ptp frequency
2025 * @param ptp PTP clock info
2026 * @param ppb how much to adjust by, in parts-per-billion
2027 */
2028static int liquidio_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
2029{
2030 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2031 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2032 u64 comp, delta;
2033 unsigned long flags;
2034 bool neg_adj = false;
2035
2036 if (ppb < 0) {
2037 neg_adj = true;
2038 ppb = -ppb;
2039 }
2040
2041 /* The hardware adds the clock compensation value to the
2042 * PTP clock on every coprocessor clock cycle, so we
2043 * compute the delta in terms of coprocessor clocks.
2044 */
2045 delta = (u64)ppb << 32;
2046 do_div(delta, oct->coproc_clock_rate);
2047
2048 spin_lock_irqsave(&lio->ptp_lock, flags);
2049 comp = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_COMP);
2050 if (neg_adj)
2051 comp -= delta;
2052 else
2053 comp += delta;
2054 lio_pci_writeq(oct, comp, CN6XXX_MIO_PTP_CLOCK_COMP);
2055 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2056
2057 return 0;
2058}
2059
2060/**
2061 * \brief Adjust ptp time
2062 * @param ptp PTP clock info
2063 * @param delta how much to adjust by, in nanosecs
2064 */
2065static int liquidio_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
2066{
2067 unsigned long flags;
2068 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2069
2070 spin_lock_irqsave(&lio->ptp_lock, flags);
2071 lio->ptp_adjust += delta;
2072 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2073
2074 return 0;
2075}
2076
2077/**
2078 * \brief Get hardware clock time, including any adjustment
2079 * @param ptp PTP clock info
2080 * @param ts timespec
2081 */
2082static int liquidio_ptp_gettime(struct ptp_clock_info *ptp,
2083 struct timespec64 *ts)
2084{
2085 u64 ns;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002086 unsigned long flags;
2087 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2088 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2089
2090 spin_lock_irqsave(&lio->ptp_lock, flags);
2091 ns = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_HI);
2092 ns += lio->ptp_adjust;
2093 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2094
Kefeng Wang286af312016-01-27 17:34:37 +08002095 *ts = ns_to_timespec64(ns);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002096
2097 return 0;
2098}
2099
2100/**
2101 * \brief Set hardware clock time. Reset adjustment
2102 * @param ptp PTP clock info
2103 * @param ts timespec
2104 */
2105static int liquidio_ptp_settime(struct ptp_clock_info *ptp,
2106 const struct timespec64 *ts)
2107{
2108 u64 ns;
2109 unsigned long flags;
2110 struct lio *lio = container_of(ptp, struct lio, ptp_info);
2111 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2112
2113 ns = timespec_to_ns(ts);
2114
2115 spin_lock_irqsave(&lio->ptp_lock, flags);
2116 lio_pci_writeq(oct, ns, CN6XXX_MIO_PTP_CLOCK_HI);
2117 lio->ptp_adjust = 0;
2118 spin_unlock_irqrestore(&lio->ptp_lock, flags);
2119
2120 return 0;
2121}
2122
2123/**
2124 * \brief Check if PTP is enabled
2125 * @param ptp PTP clock info
2126 * @param rq request
2127 * @param on is it on
2128 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002129static int
2130liquidio_ptp_enable(struct ptp_clock_info *ptp __attribute__((unused)),
2131 struct ptp_clock_request *rq __attribute__((unused)),
2132 int on __attribute__((unused)))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002133{
2134 return -EOPNOTSUPP;
2135}
2136
2137/**
2138 * \brief Open PTP clock source
2139 * @param netdev network device
2140 */
2141static void oct_ptp_open(struct net_device *netdev)
2142{
2143 struct lio *lio = GET_LIO(netdev);
2144 struct octeon_device *oct = (struct octeon_device *)lio->oct_dev;
2145
2146 spin_lock_init(&lio->ptp_lock);
2147
2148 snprintf(lio->ptp_info.name, 16, "%s", netdev->name);
2149 lio->ptp_info.owner = THIS_MODULE;
2150 lio->ptp_info.max_adj = 250000000;
2151 lio->ptp_info.n_alarm = 0;
2152 lio->ptp_info.n_ext_ts = 0;
2153 lio->ptp_info.n_per_out = 0;
2154 lio->ptp_info.pps = 0;
2155 lio->ptp_info.adjfreq = liquidio_ptp_adjfreq;
2156 lio->ptp_info.adjtime = liquidio_ptp_adjtime;
2157 lio->ptp_info.gettime64 = liquidio_ptp_gettime;
2158 lio->ptp_info.settime64 = liquidio_ptp_settime;
2159 lio->ptp_info.enable = liquidio_ptp_enable;
2160
2161 lio->ptp_adjust = 0;
2162
2163 lio->ptp_clock = ptp_clock_register(&lio->ptp_info,
2164 &oct->pci_dev->dev);
2165
2166 if (IS_ERR(lio->ptp_clock))
2167 lio->ptp_clock = NULL;
2168}
2169
2170/**
2171 * \brief Init PTP clock
2172 * @param oct octeon device
2173 */
2174static void liquidio_ptp_init(struct octeon_device *oct)
2175{
2176 u64 clock_comp, cfg;
2177
2178 clock_comp = (u64)NSEC_PER_SEC << 32;
2179 do_div(clock_comp, oct->coproc_clock_rate);
2180 lio_pci_writeq(oct, clock_comp, CN6XXX_MIO_PTP_CLOCK_COMP);
2181
2182 /* Enable */
2183 cfg = lio_pci_readq(oct, CN6XXX_MIO_PTP_CLOCK_CFG);
2184 lio_pci_writeq(oct, cfg | 0x01, CN6XXX_MIO_PTP_CLOCK_CFG);
2185}
2186
2187/**
2188 * \brief Load firmware to device
2189 * @param oct octeon device
2190 *
2191 * Maps device to firmware filename, requests firmware, and downloads it
2192 */
2193static int load_firmware(struct octeon_device *oct)
2194{
2195 int ret = 0;
2196 const struct firmware *fw;
2197 char fw_name[LIO_MAX_FW_FILENAME_LEN];
2198 char *tmp_fw_type;
2199
Felix Manlunas7cc61db2017-03-23 13:26:28 -07002200 if (fw_type_is_none()) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002201 dev_info(&oct->pci_dev->dev, "Skipping firmware load\n");
2202 return ret;
2203 }
2204
2205 if (fw_type[0] == '\0')
2206 tmp_fw_type = LIO_FW_NAME_TYPE_NIC;
2207 else
2208 tmp_fw_type = fw_type;
2209
2210 sprintf(fw_name, "%s%s%s_%s%s", LIO_FW_DIR, LIO_FW_BASE_NAME,
2211 octeon_get_conf(oct)->card_name, tmp_fw_type,
2212 LIO_FW_NAME_SUFFIX);
2213
2214 ret = request_firmware(&fw, fw_name, &oct->pci_dev->dev);
2215 if (ret) {
2216 dev_err(&oct->pci_dev->dev, "Request firmware failed. Could not find file %s.\n.",
2217 fw_name);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002218 release_firmware(fw);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002219 return ret;
2220 }
2221
2222 ret = octeon_download_firmware(oct, fw->data, fw->size);
2223
2224 release_firmware(fw);
2225
2226 return ret;
2227}
2228
2229/**
2230 * \brief Setup output queue
2231 * @param oct octeon device
2232 * @param q_no which queue
2233 * @param num_descs how many descriptors
2234 * @param desc_size size of each descriptor
2235 * @param app_ctx application context
2236 */
2237static int octeon_setup_droq(struct octeon_device *oct, int q_no, int num_descs,
2238 int desc_size, void *app_ctx)
2239{
2240 int ret_val = 0;
2241
2242 dev_dbg(&oct->pci_dev->dev, "Creating Droq: %d\n", q_no);
2243 /* droq creation and local register settings. */
2244 ret_val = octeon_create_droq(oct, q_no, num_descs, desc_size, app_ctx);
Amitoj Kaur Chawla08a965e2016-02-04 19:25:13 +05302245 if (ret_val < 0)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002246 return ret_val;
2247
2248 if (ret_val == 1) {
2249 dev_dbg(&oct->pci_dev->dev, "Using default droq %d\n", q_no);
2250 return 0;
2251 }
2252 /* tasklet creation for the droq */
2253
2254 /* Enable the droq queues */
2255 octeon_set_droq_pkt_op(oct, q_no, 1);
2256
2257 /* Send Credit for Octeon Output queues. Credits are always
2258 * sent after the output queue is enabled.
2259 */
2260 writel(oct->droq[q_no]->max_count,
2261 oct->droq[q_no]->pkts_credit_reg);
2262
2263 return ret_val;
2264}
2265
2266/**
2267 * \brief Callback for getting interface configuration
2268 * @param status status of request
2269 * @param buf pointer to resp structure
2270 */
2271static void if_cfg_callback(struct octeon_device *oct,
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002272 u32 status __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002273 void *buf)
2274{
2275 struct octeon_soft_command *sc = (struct octeon_soft_command *)buf;
2276 struct liquidio_if_cfg_resp *resp;
2277 struct liquidio_if_cfg_context *ctx;
2278
2279 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
Raghu Vatsavayi30136392016-09-01 11:16:11 -07002280 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002281
2282 oct = lio_get_device(ctx->octeon_id);
2283 if (resp->status)
Rick Farringtonc5b71e62017-03-17 11:23:08 -07002284 dev_err(&oct->pci_dev->dev, "nic if cfg instruction failed. Status: 0x%llx (0x%08x)\n",
2285 CVM_CAST64(resp->status), status);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002286 WRITE_ONCE(ctx->cond, 1);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002287
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07002288 snprintf(oct->fw_info.liquidio_firmware_version, 32, "%s",
2289 resp->cfg_info.liquidio_firmware_version);
2290
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002291 /* This barrier is required to be sure that the response has been
2292 * written fully before waking up the handler
2293 */
2294 wmb();
2295
2296 wake_up_interruptible(&ctx->wc);
2297}
2298
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002299/** Routine to push packets arriving on Octeon interface upto network layer.
2300 * @param oct_id - octeon device id.
2301 * @param skbuff - skbuff struct to be passed to network layer.
2302 * @param len - size of total data received.
2303 * @param rh - Control header associated with the packet
2304 * @param param - additional control data with the packet
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002305 * @param arg - farg registered in droq_ops
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002306 */
2307static void
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002308liquidio_push_packet(u32 octeon_id __attribute__((unused)),
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002309 void *skbuff,
2310 u32 len,
2311 union octeon_rh *rh,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002312 void *param,
2313 void *arg)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002314{
2315 struct napi_struct *napi = param;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002316 struct sk_buff *skb = (struct sk_buff *)skbuff;
2317 struct skb_shared_hwtstamps *shhwtstamps;
2318 u64 ns;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002319 u16 vtag = 0;
Prasad Kannegantide28c992017-01-09 14:42:40 -08002320 u32 r_dh_off;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002321 struct net_device *netdev = (struct net_device *)arg;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002322 struct octeon_droq *droq = container_of(param, struct octeon_droq,
2323 napi);
2324 if (netdev) {
2325 int packet_was_received;
2326 struct lio *lio = GET_LIO(netdev);
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002327 struct octeon_device *oct = lio->oct_dev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002328
2329 /* Do not proceed if the interface is not in RUNNING state. */
2330 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING)) {
2331 recv_buffer_free(skb);
2332 droq->stats.rx_dropped++;
2333 return;
2334 }
2335
2336 skb->dev = netdev;
2337
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002338 skb_record_rx_queue(skb, droq->q_no);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07002339 if (likely(len > MIN_SKB_SIZE)) {
2340 struct octeon_skb_page_info *pg_info;
2341 unsigned char *va;
2342
2343 pg_info = ((struct octeon_skb_page_info *)(skb->cb));
2344 if (pg_info->page) {
2345 /* For Paged allocation use the frags */
2346 va = page_address(pg_info->page) +
2347 pg_info->page_offset;
2348 memcpy(skb->data, va, MIN_SKB_SIZE);
2349 skb_put(skb, MIN_SKB_SIZE);
2350 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags,
2351 pg_info->page,
2352 pg_info->page_offset +
2353 MIN_SKB_SIZE,
2354 len - MIN_SKB_SIZE,
2355 LIO_RXBUFFER_SZ);
2356 }
2357 } else {
2358 struct octeon_skb_page_info *pg_info =
2359 ((struct octeon_skb_page_info *)(skb->cb));
2360 skb_copy_to_linear_data(skb, page_address(pg_info->page)
2361 + pg_info->page_offset, len);
2362 skb_put(skb, len);
2363 put_page(pg_info->page);
2364 }
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002365
Prasad Kannegantide28c992017-01-09 14:42:40 -08002366 r_dh_off = (rh->r_dh.len - 1) * BYTES_PER_DHLEN_UNIT;
2367
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002368 if (((oct->chip_id == OCTEON_CN66XX) ||
2369 (oct->chip_id == OCTEON_CN68XX)) &&
2370 ptp_enable) {
2371 if (rh->r_dh.has_hwtstamp) {
2372 /* timestamp is included from the hardware at
2373 * the beginning of the packet.
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002374 */
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002375 if (ifstate_check
2376 (lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED)) {
2377 /* Nanoseconds are in the first 64-bits
2378 * of the packet.
2379 */
Prasad Kannegantide28c992017-01-09 14:42:40 -08002380 memcpy(&ns, (skb->data + r_dh_off),
2381 sizeof(ns));
2382 r_dh_off -= BYTES_PER_DHLEN_UNIT;
Raghu Vatsavayia5b37882016-06-14 16:54:48 -07002383 shhwtstamps = skb_hwtstamps(skb);
2384 shhwtstamps->hwtstamp =
2385 ns_to_ktime(ns +
2386 lio->ptp_adjust);
2387 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002388 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002389 }
2390
Prasad Kannegantide28c992017-01-09 14:42:40 -08002391 if (rh->r_dh.has_hash) {
2392 __be32 *hash_be = (__be32 *)(skb->data + r_dh_off);
2393 u32 hash = be32_to_cpu(*hash_be);
2394
2395 skb_set_hash(skb, hash, PKT_HASH_TYPE_L4);
2396 r_dh_off -= BYTES_PER_DHLEN_UNIT;
2397 }
2398
2399 skb_pull(skb, rh->r_dh.len * BYTES_PER_DHLEN_UNIT);
2400
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002401 skb->protocol = eth_type_trans(skb, skb->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002402 if ((netdev->features & NETIF_F_RXCSUM) &&
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002403 (((rh->r_dh.encap_on) &&
2404 (rh->r_dh.csum_verified & CNNIC_TUN_CSUM_VERIFIED)) ||
2405 (!(rh->r_dh.encap_on) &&
2406 (rh->r_dh.csum_verified & CNNIC_CSUM_VERIFIED))))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002407 /* checksum has already been verified */
2408 skb->ip_summed = CHECKSUM_UNNECESSARY;
2409 else
2410 skb->ip_summed = CHECKSUM_NONE;
2411
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07002412 /* Setting Encapsulation field on basis of status received
2413 * from the firmware
2414 */
2415 if (rh->r_dh.encap_on) {
2416 skb->encapsulation = 1;
2417 skb->csum_level = 1;
2418 droq->stats.rx_vxlan++;
2419 }
2420
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07002421 /* inbound VLAN tag */
2422 if ((netdev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
2423 (rh->r_dh.vlan != 0)) {
2424 u16 vid = rh->r_dh.vlan;
2425 u16 priority = rh->r_dh.priority;
2426
2427 vtag = priority << 13 | vid;
2428 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
2429 }
2430
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002431 packet_was_received = napi_gro_receive(napi, skb) != GRO_DROP;
2432
2433 if (packet_was_received) {
2434 droq->stats.rx_bytes_received += len;
2435 droq->stats.rx_pkts_received++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002436 } else {
2437 droq->stats.rx_dropped++;
2438 netif_info(lio, rx_err, lio->netdev,
2439 "droq:%d error rx_dropped:%llu\n",
2440 droq->q_no, droq->stats.rx_dropped);
2441 }
2442
2443 } else {
2444 recv_buffer_free(skb);
2445 }
2446}
2447
2448/**
2449 * \brief wrapper for calling napi_schedule
2450 * @param param parameters to pass to napi_schedule
2451 *
2452 * Used when scheduling on different CPUs
2453 */
2454static void napi_schedule_wrapper(void *param)
2455{
2456 struct napi_struct *napi = param;
2457
2458 napi_schedule(napi);
2459}
2460
2461/**
2462 * \brief callback when receive interrupt occurs and we are in NAPI mode
2463 * @param arg pointer to octeon output queue
2464 */
2465static void liquidio_napi_drv_callback(void *arg)
2466{
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002467 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002468 struct octeon_droq *droq = arg;
2469 int this_cpu = smp_processor_id();
2470
Raghu Vatsavayi9ded1a52016-09-01 11:16:10 -07002471 oct = droq->oct_dev;
2472
2473 if (OCTEON_CN23XX_PF(oct) || droq->cpu_id == this_cpu) {
2474 napi_schedule_irqoff(&droq->napi);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002475 } else {
2476 struct call_single_data *csd = &droq->csd;
2477
2478 csd->func = napi_schedule_wrapper;
2479 csd->info = &droq->napi;
2480 csd->flags = 0;
2481
2482 smp_call_function_single_async(droq->cpu_id, csd);
2483 }
2484}
2485
2486/**
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002487 * \brief Entry point for NAPI polling
2488 * @param napi NAPI structure
2489 * @param budget maximum number of items to process
2490 */
2491static int liquidio_napi_poll(struct napi_struct *napi, int budget)
2492{
2493 struct octeon_droq *droq;
2494 int work_done;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002495 int tx_done = 0, iq_no;
2496 struct octeon_instr_queue *iq;
2497 struct octeon_device *oct;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002498
2499 droq = container_of(napi, struct octeon_droq, napi);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002500 oct = droq->oct_dev;
2501 iq_no = droq->q_no;
2502 /* Handle Droq descriptors */
2503 work_done = octeon_process_droq_poll_cmd(oct, droq->q_no,
2504 POLL_EVENT_PROCESS_PKTS,
2505 budget);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002506
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002507 /* Flush the instruction queue */
2508 iq = oct->instr_queue[iq_no];
2509 if (iq) {
VSR Burru6069f3f2017-03-22 11:54:50 -07002510 if (atomic_read(&iq->instr_pending))
2511 /* Process iq buffers with in the budget limits */
2512 tx_done = octeon_flush_iq(oct, iq, budget);
2513 else
2514 tx_done = 1;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002515 /* Update iq read-index rather than waiting for next interrupt.
2516 * Return back if tx_done is false.
2517 */
2518 update_txq_status(oct, iq_no);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002519 } else {
2520 dev_err(&oct->pci_dev->dev, "%s: iq (%d) num invalid\n",
2521 __func__, iq_no);
2522 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002523
Satanand Burlacdb478e2017-01-31 13:04:42 -08002524 /* force enable interrupt if reg cnts are high to avoid wraparound */
2525 if ((work_done < budget && tx_done) ||
Felix Manlunas76e0e702017-02-07 12:10:58 -08002526 (iq && iq->pkt_in_done >= MAX_REG_CNT) ||
Satanand Burlacdb478e2017-01-31 13:04:42 -08002527 (droq->pkt_count >= MAX_REG_CNT)) {
2528 tx_done = 1;
Eric Dumazet6ad20162017-01-30 08:22:01 -08002529 napi_complete_done(napi, work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002530 octeon_process_droq_poll_cmd(droq->oct_dev, droq->q_no,
2531 POLL_EVENT_ENABLE_INTR, 0);
2532 return 0;
2533 }
2534
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002535 return (!tx_done) ? (budget) : (work_done);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002536}
2537
2538/**
2539 * \brief Setup input and output queues
2540 * @param octeon_dev octeon device
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07002541 * @param ifidx Interface Index
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002542 *
2543 * Note: Queues are with respect to the octeon device. Thus
2544 * an input queue is for egress packets, and output queues
2545 * are for ingress packets.
2546 */
2547static inline int setup_io_queues(struct octeon_device *octeon_dev,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002548 int ifidx)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002549{
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002550 struct octeon_droq_ops droq_ops;
2551 struct net_device *netdev;
Gustavo A. R. Silvaeb2b9872017-07-18 15:53:48 -05002552 int cpu_id;
2553 int cpu_id_modulus;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002554 struct octeon_droq *droq;
2555 struct napi_struct *napi;
2556 int q, q_no, retval = 0;
2557 struct lio *lio;
2558 int num_tx_descs;
2559
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002560 netdev = octeon_dev->props[ifidx].netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002561
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002562 lio = GET_LIO(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002563
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002564 memset(&droq_ops, 0, sizeof(struct octeon_droq_ops));
2565
2566 droq_ops.fptr = liquidio_push_packet;
2567 droq_ops.farg = (void *)netdev;
2568
2569 droq_ops.poll_mode = 1;
2570 droq_ops.napi_fn = liquidio_napi_drv_callback;
2571 cpu_id = 0;
2572 cpu_id_modulus = num_present_cpus();
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002573
2574 /* set up DROQs. */
2575 for (q = 0; q < lio->linfo.num_rxpciq; q++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002576 q_no = lio->linfo.rxpciq[q].s.q_no;
2577 dev_dbg(&octeon_dev->pci_dev->dev,
2578 "setup_io_queues index:%d linfo.rxpciq.s.q_no:%d\n",
2579 q, q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002580 retval = octeon_setup_droq(octeon_dev, q_no,
2581 CFG_GET_NUM_RX_DESCS_NIC_IF
2582 (octeon_get_conf(octeon_dev),
2583 lio->ifidx),
2584 CFG_GET_NUM_RX_BUF_SIZE_NIC_IF
2585 (octeon_get_conf(octeon_dev),
2586 lio->ifidx), NULL);
2587 if (retval) {
2588 dev_err(&octeon_dev->pci_dev->dev,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07002589 "%s : Runtime DROQ(RxQ) creation failed.\n",
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002590 __func__);
2591 return 1;
2592 }
2593
2594 droq = octeon_dev->droq[q_no];
2595 napi = &droq->napi;
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07002596 dev_dbg(&octeon_dev->pci_dev->dev, "netif_napi_add netdev:%llx oct:%llx pf_num:%d\n",
2597 (u64)netdev, (u64)octeon_dev, octeon_dev->pf_num);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002598 netif_napi_add(netdev, napi, liquidio_napi_poll, 64);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002599
2600 /* designate a CPU for this droq */
2601 droq->cpu_id = cpu_id;
2602 cpu_id++;
2603 if (cpu_id >= cpu_id_modulus)
2604 cpu_id = 0;
2605
2606 octeon_register_droq_ops(octeon_dev, q_no, &droq_ops);
2607 }
2608
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002609 if (OCTEON_CN23XX_PF(octeon_dev)) {
2610 /* 23XX PF can receive control messages (via the first PF-owned
2611 * droq) from the firmware even if the ethX interface is down,
2612 * so that's why poll_mode must be off for the first droq.
2613 */
2614 octeon_dev->droq[0]->ops.poll_mode = 0;
2615 }
2616
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002617 /* set up IQs. */
2618 for (q = 0; q < lio->linfo.num_txpciq; q++) {
2619 num_tx_descs = CFG_GET_NUM_TX_DESCS_NIC_IF(octeon_get_conf
2620 (octeon_dev),
2621 lio->ifidx);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002622 retval = octeon_setup_iq(octeon_dev, ifidx, q,
2623 lio->linfo.txpciq[q], num_tx_descs,
2624 netdev_get_tx_queue(netdev, q));
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002625 if (retval) {
2626 dev_err(&octeon_dev->pci_dev->dev,
2627 " %s : Runtime IQ(TxQ) creation failed.\n",
2628 __func__);
2629 return 1;
2630 }
Rick Farrington35ae57e2017-03-07 11:40:41 -08002631
2632 if (octeon_dev->ioq_vector) {
2633 struct octeon_ioq_vector *ioq_vector;
2634
2635 ioq_vector = &octeon_dev->ioq_vector[q];
2636 netif_set_xps_queue(netdev,
2637 &ioq_vector->affinity_mask,
2638 ioq_vector->iq_index);
2639 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002640 }
2641
2642 return 0;
2643}
2644
2645/**
2646 * \brief Poll routine for checking transmit queue status
2647 * @param work work_struct data structure
2648 */
2649static void octnet_poll_check_txq_status(struct work_struct *work)
2650{
2651 struct cavium_wk *wk = (struct cavium_wk *)work;
2652 struct lio *lio = (struct lio *)wk->ctxptr;
2653
2654 if (!ifstate_check(lio, LIO_IFSTATE_RUNNING))
2655 return;
2656
2657 check_txq_status(lio);
2658 queue_delayed_work(lio->txq_status_wq.wq,
2659 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
2660}
2661
2662/**
2663 * \brief Sets up the txq poll check
2664 * @param netdev network device
2665 */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002666static inline int setup_tx_poll_fn(struct net_device *netdev)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002667{
2668 struct lio *lio = GET_LIO(netdev);
2669 struct octeon_device *oct = lio->oct_dev;
2670
Bhaktipriya Shridhar292b9da2016-06-08 01:47:59 +05302671 lio->txq_status_wq.wq = alloc_workqueue("txq-status",
2672 WQ_MEM_RECLAIM, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002673 if (!lio->txq_status_wq.wq) {
2674 dev_err(&oct->pci_dev->dev, "unable to create cavium txq status wq\n");
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002675 return -1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002676 }
2677 INIT_DELAYED_WORK(&lio->txq_status_wq.wk.work,
2678 octnet_poll_check_txq_status);
2679 lio->txq_status_wq.wk.ctxptr = lio;
2680 queue_delayed_work(lio->txq_status_wq.wq,
2681 &lio->txq_status_wq.wk.work, msecs_to_jiffies(1));
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002682 return 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002683}
2684
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002685static inline void cleanup_tx_poll_fn(struct net_device *netdev)
2686{
2687 struct lio *lio = GET_LIO(netdev);
2688
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002689 if (lio->txq_status_wq.wq) {
2690 cancel_delayed_work_sync(&lio->txq_status_wq.wk.work);
2691 destroy_workqueue(lio->txq_status_wq.wq);
2692 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002693}
2694
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002695/**
2696 * \brief Net device open for LiquidIO
2697 * @param netdev network device
2698 */
2699static int liquidio_open(struct net_device *netdev)
2700{
2701 struct lio *lio = GET_LIO(netdev);
2702 struct octeon_device *oct = lio->oct_dev;
2703 struct napi_struct *napi, *n;
2704
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002705 if (oct->props[lio->ifidx].napi_enabled == 0) {
2706 list_for_each_entry_safe(napi, n, &netdev->napi_list, dev_list)
2707 napi_enable(napi);
2708
2709 oct->props[lio->ifidx].napi_enabled = 1;
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002710
2711 if (OCTEON_CN23XX_PF(oct))
2712 oct->droq[0]->ops.poll_mode = 1;
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002713 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002714
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08002715 if ((oct->chip_id == OCTEON_CN66XX || oct->chip_id == OCTEON_CN68XX) &&
2716 ptp_enable)
2717 oct_ptp_open(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002718
2719 ifstate_set(lio, LIO_IFSTATE_RUNNING);
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002720
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07002721 /* Ready for link status updates */
2722 lio->intf_open = 1;
2723
2724 netif_info(lio, ifup, lio->netdev, "Interface Open, ready for traffic\n");
2725
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002726 if (OCTEON_CN23XX_PF(oct)) {
2727 if (!oct->msix_on)
2728 if (setup_tx_poll_fn(netdev))
2729 return -1;
2730 } else {
2731 if (setup_tx_poll_fn(netdev))
2732 return -1;
2733 }
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002734
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002735 start_txq(netdev);
2736
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002737 /* tell Octeon to start forwarding packets to host */
2738 send_rx_ctrl_cmd(lio, 1);
2739
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002740 dev_info(&oct->pci_dev->dev, "%s interface is opened\n",
2741 netdev->name);
2742
2743 return 0;
2744}
2745
2746/**
2747 * \brief Net device stop for LiquidIO
2748 * @param netdev network device
2749 */
2750static int liquidio_stop(struct net_device *netdev)
2751{
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002752 struct lio *lio = GET_LIO(netdev);
2753 struct octeon_device *oct = lio->oct_dev;
2754
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002755 ifstate_reset(lio, LIO_IFSTATE_RUNNING);
2756
2757 netif_tx_disable(netdev);
2758
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002759 /* Inform that netif carrier is down */
Raghu Vatsavayi9a96bde2016-06-21 22:53:06 -07002760 netif_carrier_off(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002761 lio->intf_open = 0;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002762 lio->linfo.link.s.link_up = 0;
2763 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002764
Felix Manlunascb2336b2017-01-11 17:09:02 -08002765 /* Tell Octeon that nic interface is down. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002766 send_rx_ctrl_cmd(lio, 0);
2767
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07002768 if (OCTEON_CN23XX_PF(oct)) {
2769 if (!oct->msix_on)
2770 cleanup_tx_poll_fn(netdev);
2771 } else {
2772 cleanup_tx_poll_fn(netdev);
2773 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002774
2775 if (lio->ptp_clock) {
2776 ptp_clock_unregister(lio->ptp_clock);
2777 lio->ptp_clock = NULL;
2778 }
2779
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002780 dev_info(&oct->pci_dev->dev, "%s interface is stopped\n", netdev->name);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002781
2782 return 0;
2783}
2784
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002785/**
2786 * \brief Converts a mask based on net device flags
2787 * @param netdev network device
2788 *
2789 * This routine generates a octnet_ifflags mask from the net device flags
2790 * received from the OS.
2791 */
2792static inline enum octnet_ifflags get_new_flags(struct net_device *netdev)
2793{
2794 enum octnet_ifflags f = OCTNET_IFFLAG_UNICAST;
2795
2796 if (netdev->flags & IFF_PROMISC)
2797 f |= OCTNET_IFFLAG_PROMISC;
2798
2799 if (netdev->flags & IFF_ALLMULTI)
2800 f |= OCTNET_IFFLAG_ALLMULTI;
2801
2802 if (netdev->flags & IFF_MULTICAST) {
2803 f |= OCTNET_IFFLAG_MULTICAST;
2804
2805 /* Accept all multicast addresses if there are more than we
2806 * can handle
2807 */
2808 if (netdev_mc_count(netdev) > MAX_OCTEON_MULTICAST_ADDR)
2809 f |= OCTNET_IFFLAG_ALLMULTI;
2810 }
2811
2812 if (netdev->flags & IFF_BROADCAST)
2813 f |= OCTNET_IFFLAG_BROADCAST;
2814
2815 return f;
2816}
2817
2818/**
2819 * \brief Net device set_multicast_list
2820 * @param netdev network device
2821 */
2822static void liquidio_set_mcast_list(struct net_device *netdev)
2823{
2824 struct lio *lio = GET_LIO(netdev);
2825 struct octeon_device *oct = lio->oct_dev;
2826 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002827 struct netdev_hw_addr *ha;
2828 u64 *mc;
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002829 int ret;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002830 int mc_count = min(netdev_mc_count(netdev), MAX_OCTEON_MULTICAST_ADDR);
2831
2832 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2833
2834 /* Create a ctrl pkt command to be sent to core app. */
2835 nctrl.ncmd.u64 = 0;
2836 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_MULTI_LIST;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002837 nctrl.ncmd.s.param1 = get_new_flags(netdev);
2838 nctrl.ncmd.s.param2 = mc_count;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002839 nctrl.ncmd.s.more = mc_count;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002840 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002841 nctrl.netpndev = (u64)netdev;
2842 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2843
2844 /* copy all the addresses into the udd */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002845 mc = &nctrl.udd[0];
2846 netdev_for_each_mc_addr(ha, netdev) {
2847 *mc = 0;
2848 memcpy(((u8 *)mc) + 2, ha->addr, ETH_ALEN);
2849 /* no need to swap bytes */
2850
2851 if (++mc > &nctrl.udd[mc_count])
2852 break;
2853 }
2854
2855 /* Apparently, any activity in this call from the kernel has to
2856 * be atomic. So we won't wait for response.
2857 */
2858 nctrl.wait_time = 0;
2859
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002860 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002861 if (ret < 0) {
2862 dev_err(&oct->pci_dev->dev, "DEVFLAGS change failed in core (ret: 0x%x)\n",
2863 ret);
2864 }
2865}
2866
2867/**
2868 * \brief Net device set_mac_address
2869 * @param netdev network device
2870 */
2871static int liquidio_set_mac(struct net_device *netdev, void *p)
2872{
2873 int ret = 0;
2874 struct lio *lio = GET_LIO(netdev);
2875 struct octeon_device *oct = lio->oct_dev;
2876 struct sockaddr *addr = (struct sockaddr *)p;
2877 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002878
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002879 if (!is_valid_ether_addr(addr->sa_data))
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002880 return -EADDRNOTAVAIL;
2881
2882 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2883
2884 nctrl.ncmd.u64 = 0;
2885 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002886 nctrl.ncmd.s.param1 = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002887 nctrl.ncmd.s.more = 1;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002888 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002889 nctrl.netpndev = (u64)netdev;
2890 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2891 nctrl.wait_time = 100;
2892
2893 nctrl.udd[0] = 0;
2894 /* The MAC Address is presented in network byte order. */
2895 memcpy((u8 *)&nctrl.udd[0] + 2, addr->sa_data, ETH_ALEN);
2896
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002897 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002898 if (ret < 0) {
2899 dev_err(&oct->pci_dev->dev, "MAC Address change failed\n");
2900 return -ENOMEM;
2901 }
2902 memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
2903 memcpy(((u8 *)&lio->linfo.hw_addr) + 2, addr->sa_data, ETH_ALEN);
2904
2905 return 0;
2906}
2907
2908/**
2909 * \brief Net device get_stats
2910 * @param netdev network device
2911 */
2912static struct net_device_stats *liquidio_get_stats(struct net_device *netdev)
2913{
2914 struct lio *lio = GET_LIO(netdev);
2915 struct net_device_stats *stats = &netdev->stats;
2916 struct octeon_device *oct;
2917 u64 pkts = 0, drop = 0, bytes = 0;
2918 struct oct_droq_stats *oq_stats;
2919 struct oct_iq_stats *iq_stats;
2920 int i, iq_no, oq_no;
2921
2922 oct = lio->oct_dev;
2923
2924 for (i = 0; i < lio->linfo.num_txpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002925 iq_no = lio->linfo.txpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002926 iq_stats = &oct->instr_queue[iq_no]->stats;
2927 pkts += iq_stats->tx_done;
2928 drop += iq_stats->tx_dropped;
2929 bytes += iq_stats->tx_tot_bytes;
2930 }
2931
2932 stats->tx_packets = pkts;
2933 stats->tx_bytes = bytes;
2934 stats->tx_dropped = drop;
2935
2936 pkts = 0;
2937 drop = 0;
2938 bytes = 0;
2939
2940 for (i = 0; i < lio->linfo.num_rxpciq; i++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07002941 oq_no = lio->linfo.rxpciq[i].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002942 oq_stats = &oct->droq[oq_no]->stats;
2943 pkts += oq_stats->rx_pkts_received;
2944 drop += (oq_stats->rx_dropped +
2945 oq_stats->dropped_nodispatch +
2946 oq_stats->dropped_toomany +
2947 oq_stats->dropped_nomem);
2948 bytes += oq_stats->rx_bytes_received;
2949 }
2950
2951 stats->rx_bytes = bytes;
2952 stats->rx_packets = pkts;
2953 stats->rx_dropped = drop;
2954
2955 return stats;
2956}
2957
2958/**
2959 * \brief Net device change_mtu
2960 * @param netdev network device
2961 */
2962static int liquidio_change_mtu(struct net_device *netdev, int new_mtu)
2963{
2964 struct lio *lio = GET_LIO(netdev);
2965 struct octeon_device *oct = lio->oct_dev;
2966 struct octnic_ctrl_pkt nctrl;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002967 int ret = 0;
2968
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002969 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
2970
2971 nctrl.ncmd.u64 = 0;
2972 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MTU;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002973 nctrl.ncmd.s.param1 = new_mtu;
2974 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002975 nctrl.wait_time = 100;
2976 nctrl.netpndev = (u64)netdev;
2977 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
2978
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07002979 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002980 if (ret < 0) {
2981 dev_err(&oct->pci_dev->dev, "Failed to set MTU\n");
2982 return -1;
2983 }
2984
2985 lio->mtu = new_mtu;
2986
2987 return 0;
2988}
2989
2990/**
2991 * \brief Handler for SIOCSHWTSTAMP ioctl
2992 * @param netdev network device
2993 * @param ifr interface request
2994 * @param cmd command
2995 */
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07002996static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07002997{
2998 struct hwtstamp_config conf;
2999 struct lio *lio = GET_LIO(netdev);
3000
3001 if (copy_from_user(&conf, ifr->ifr_data, sizeof(conf)))
3002 return -EFAULT;
3003
3004 if (conf.flags)
3005 return -EINVAL;
3006
3007 switch (conf.tx_type) {
3008 case HWTSTAMP_TX_ON:
3009 case HWTSTAMP_TX_OFF:
3010 break;
3011 default:
3012 return -ERANGE;
3013 }
3014
3015 switch (conf.rx_filter) {
3016 case HWTSTAMP_FILTER_NONE:
3017 break;
3018 case HWTSTAMP_FILTER_ALL:
3019 case HWTSTAMP_FILTER_SOME:
3020 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
3021 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
3022 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
3023 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
3024 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
3025 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
3026 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
3027 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
3028 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
3029 case HWTSTAMP_FILTER_PTP_V2_EVENT:
3030 case HWTSTAMP_FILTER_PTP_V2_SYNC:
3031 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
Miroslav Lichvare3412572017-05-19 17:52:36 +02003032 case HWTSTAMP_FILTER_NTP_ALL:
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003033 conf.rx_filter = HWTSTAMP_FILTER_ALL;
3034 break;
3035 default:
3036 return -ERANGE;
3037 }
3038
3039 if (conf.rx_filter == HWTSTAMP_FILTER_ALL)
3040 ifstate_set(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
3041
3042 else
3043 ifstate_reset(lio, LIO_IFSTATE_RX_TIMESTAMP_ENABLED);
3044
3045 return copy_to_user(ifr->ifr_data, &conf, sizeof(conf)) ? -EFAULT : 0;
3046}
3047
3048/**
3049 * \brief ioctl handler
3050 * @param netdev network device
3051 * @param ifr interface request
3052 * @param cmd command
3053 */
3054static int liquidio_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
3055{
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08003056 struct lio *lio = GET_LIO(netdev);
3057
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003058 switch (cmd) {
3059 case SIOCSHWTSTAMP:
Prasad Kanneganti9feb16a2017-01-03 11:27:33 -08003060 if ((lio->oct_dev->chip_id == OCTEON_CN66XX ||
3061 lio->oct_dev->chip_id == OCTEON_CN68XX) && ptp_enable)
3062 return hwtstamp_ioctl(netdev, ifr);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003063 default:
3064 return -EOPNOTSUPP;
3065 }
3066}
3067
3068/**
3069 * \brief handle a Tx timestamp response
3070 * @param status response status
3071 * @param buf pointer to skb
3072 */
3073static void handle_timestamp(struct octeon_device *oct,
3074 u32 status,
3075 void *buf)
3076{
3077 struct octnet_buf_free_info *finfo;
3078 struct octeon_soft_command *sc;
3079 struct oct_timestamp_resp *resp;
3080 struct lio *lio;
3081 struct sk_buff *skb = (struct sk_buff *)buf;
3082
3083 finfo = (struct octnet_buf_free_info *)skb->cb;
3084 lio = finfo->lio;
3085 sc = finfo->sc;
3086 oct = lio->oct_dev;
3087 resp = (struct oct_timestamp_resp *)sc->virtrptr;
3088
3089 if (status != OCTEON_REQUEST_DONE) {
3090 dev_err(&oct->pci_dev->dev, "Tx timestamp instruction failed. Status: %llx\n",
3091 CVM_CAST64(status));
3092 resp->timestamp = 0;
3093 }
3094
3095 octeon_swap_8B_data(&resp->timestamp, 1);
3096
Colin Ian King19a6d152016-02-05 16:30:39 +00003097 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS) != 0)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003098 struct skb_shared_hwtstamps ts;
3099 u64 ns = resp->timestamp;
3100
3101 netif_info(lio, tx_done, lio->netdev,
3102 "Got resulting SKBTX_HW_TSTAMP skb=%p ns=%016llu\n",
3103 skb, (unsigned long long)ns);
3104 ts.hwtstamp = ns_to_ktime(ns + lio->ptp_adjust);
3105 skb_tstamp_tx(skb, &ts);
3106 }
3107
3108 octeon_free_soft_command(oct, sc);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003109 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003110}
3111
3112/* \brief Send a data packet that will be timestamped
3113 * @param oct octeon device
3114 * @param ndata pointer to network data
3115 * @param finfo pointer to private network data
3116 */
3117static inline int send_nic_timestamp_pkt(struct octeon_device *oct,
3118 struct octnic_data_pkt *ndata,
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003119 struct octnet_buf_free_info *finfo)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003120{
3121 int retval;
3122 struct octeon_soft_command *sc;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003123 struct lio *lio;
3124 int ring_doorbell;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003125 u32 len;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003126
3127 lio = finfo->lio;
3128
3129 sc = octeon_alloc_soft_command_resp(oct, &ndata->cmd,
3130 sizeof(struct oct_timestamp_resp));
3131 finfo->sc = sc;
3132
3133 if (!sc) {
3134 dev_err(&oct->pci_dev->dev, "No memory for timestamped data packet\n");
3135 return IQ_SEND_FAILED;
3136 }
3137
3138 if (ndata->reqtype == REQTYPE_NORESP_NET)
3139 ndata->reqtype = REQTYPE_RESP_NET;
3140 else if (ndata->reqtype == REQTYPE_NORESP_NET_SG)
3141 ndata->reqtype = REQTYPE_RESP_NET_SG;
3142
3143 sc->callback = handle_timestamp;
3144 sc->callback_arg = finfo->skb;
3145 sc->iq_no = ndata->q_no;
3146
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003147 if (OCTEON_CN23XX_PF(oct))
3148 len = (u32)((struct octeon_instr_ih3 *)
3149 (&sc->cmd.cmd3.ih3))->dlengsz;
3150 else
3151 len = (u32)((struct octeon_instr_ih2 *)
3152 (&sc->cmd.cmd2.ih2))->dlengsz;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003153
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003154 ring_doorbell = 1;
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003155
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003156 retval = octeon_send_command(oct, sc->iq_no, ring_doorbell, &sc->cmd,
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003157 sc, len, ndata->reqtype);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003158
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07003159 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003160 dev_err(&oct->pci_dev->dev, "timestamp data packet failed status: %x\n",
3161 retval);
3162 octeon_free_soft_command(oct, sc);
3163 } else {
3164 netif_info(lio, tx_queued, lio->netdev, "Queued timestamp packet\n");
3165 }
3166
3167 return retval;
3168}
3169
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003170/** \brief Transmit networks packets to the Octeon interface
3171 * @param skbuff skbuff struct to be passed to network layer.
3172 * @param netdev pointer to network device
3173 * @returns whether the packet was transmitted to the device okay or not
3174 * (NETDEV_TX_OK or NETDEV_TX_BUSY)
3175 */
3176static int liquidio_xmit(struct sk_buff *skb, struct net_device *netdev)
3177{
3178 struct lio *lio;
3179 struct octnet_buf_free_info *finfo;
3180 union octnic_cmd_setup cmdsetup;
3181 struct octnic_data_pkt ndata;
3182 struct octeon_device *oct;
3183 struct oct_iq_stats *stats;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003184 struct octeon_instr_irh *irh;
3185 union tx_info *tx_info;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003186 int status = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003187 int q_idx = 0, iq_no = 0;
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003188 int j;
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003189 u64 dptr = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003190 u32 tag = 0;
3191
3192 lio = GET_LIO(netdev);
3193 oct = lio->oct_dev;
3194
3195 if (netif_is_multiqueue(netdev)) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003196 q_idx = skb->queue_mapping;
3197 q_idx = (q_idx % (lio->linfo.num_txpciq));
3198 tag = q_idx;
3199 iq_no = lio->linfo.txpciq[q_idx].s.q_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003200 } else {
3201 iq_no = lio->txq;
3202 }
3203
3204 stats = &oct->instr_queue[iq_no]->stats;
3205
3206 /* Check for all conditions in which the current packet cannot be
3207 * transmitted.
3208 */
3209 if (!(atomic_read(&lio->ifstate) & LIO_IFSTATE_RUNNING) ||
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003210 (!lio->linfo.link.s.link_up) ||
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003211 (skb->len <= 0)) {
3212 netif_info(lio, tx_err, lio->netdev,
3213 "Transmit failed link_status : %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003214 lio->linfo.link.s.link_up);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003215 goto lio_xmit_failed;
3216 }
3217
3218 /* Use space in skb->cb to store info used to unmap and
3219 * free the buffers.
3220 */
3221 finfo = (struct octnet_buf_free_info *)skb->cb;
3222 finfo->lio = lio;
3223 finfo->skb = skb;
3224 finfo->sc = NULL;
3225
3226 /* Prepare the attributes for the data to be passed to OSI. */
3227 memset(&ndata, 0, sizeof(struct octnic_data_pkt));
3228
3229 ndata.buf = (void *)finfo;
3230
3231 ndata.q_no = iq_no;
3232
3233 if (netif_is_multiqueue(netdev)) {
3234 if (octnet_iq_is_full(oct, ndata.q_no)) {
3235 /* defer sending if queue is full */
3236 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
3237 ndata.q_no);
3238 stats->tx_iq_busy++;
3239 return NETDEV_TX_BUSY;
3240 }
3241 } else {
3242 if (octnet_iq_is_full(oct, lio->txq)) {
3243 /* defer sending if queue is full */
3244 stats->tx_iq_busy++;
3245 netif_info(lio, tx_err, lio->netdev, "Transmit failed iq:%d full\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003246 lio->txq);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003247 return NETDEV_TX_BUSY;
3248 }
3249 }
3250 /* pr_info(" XMIT - valid Qs: %d, 1st Q no: %d, cpu: %d, q_no:%d\n",
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003251 * lio->linfo.num_txpciq, lio->txq, cpu, ndata.q_no);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003252 */
3253
3254 ndata.datasize = skb->len;
3255
3256 cmdsetup.u64 = 0;
Raghu Vatsavayi7275ebf2016-06-14 16:54:49 -07003257 cmdsetup.s.iq_no = iq_no;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003258
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003259 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3260 if (skb->encapsulation) {
3261 cmdsetup.s.tnl_csum = 1;
3262 stats->tx_vxlan++;
3263 } else {
3264 cmdsetup.s.transport_csum = 1;
3265 }
3266 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003267 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) {
3268 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
3269 cmdsetup.s.timestamp = 1;
3270 }
3271
3272 if (skb_shinfo(skb)->nr_frags == 0) {
3273 cmdsetup.s.u.datasize = skb->len;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003274 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07003275
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003276 /* Offload checksum calculation for TCP/UDP packets */
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003277 dptr = dma_map_single(&oct->pci_dev->dev,
3278 skb->data,
3279 skb->len,
3280 DMA_TO_DEVICE);
3281 if (dma_mapping_error(&oct->pci_dev->dev, dptr)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003282 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 1\n",
3283 __func__);
3284 return NETDEV_TX_BUSY;
3285 }
3286
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003287 if (OCTEON_CN23XX_PF(oct))
3288 ndata.cmd.cmd3.dptr = dptr;
3289 else
3290 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003291 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003292 ndata.reqtype = REQTYPE_NORESP_NET;
3293
3294 } else {
3295 int i, frags;
3296 struct skb_frag_struct *frag;
3297 struct octnic_gather *g;
3298
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003299 spin_lock(&lio->glist_lock[q_idx]);
3300 g = (struct octnic_gather *)
3301 list_delete_head(&lio->glist[q_idx]);
3302 spin_unlock(&lio->glist_lock[q_idx]);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003303
3304 if (!g) {
3305 netif_info(lio, tx_err, lio->netdev,
3306 "Transmit scatter gather: glist null!\n");
3307 goto lio_xmit_failed;
3308 }
3309
3310 cmdsetup.s.gather = 1;
3311 cmdsetup.s.u.gatherptrs = (skb_shinfo(skb)->nr_frags + 1);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003312 octnet_prepare_pci_cmd(oct, &ndata.cmd, &cmdsetup, tag);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003313
3314 memset(g->sg, 0, g->sg_size);
3315
3316 g->sg[0].ptr[0] = dma_map_single(&oct->pci_dev->dev,
3317 skb->data,
3318 (skb->len - skb->data_len),
3319 DMA_TO_DEVICE);
3320 if (dma_mapping_error(&oct->pci_dev->dev, g->sg[0].ptr[0])) {
3321 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 2\n",
3322 __func__);
3323 return NETDEV_TX_BUSY;
3324 }
3325 add_sg_size(&g->sg[0], (skb->len - skb->data_len), 0);
3326
3327 frags = skb_shinfo(skb)->nr_frags;
3328 i = 1;
3329 while (frags--) {
3330 frag = &skb_shinfo(skb)->frags[i - 1];
3331
3332 g->sg[(i >> 2)].ptr[(i & 3)] =
3333 dma_map_page(&oct->pci_dev->dev,
3334 frag->page.p,
3335 frag->page_offset,
3336 frag->size,
3337 DMA_TO_DEVICE);
3338
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003339 if (dma_mapping_error(&oct->pci_dev->dev,
3340 g->sg[i >> 2].ptr[i & 3])) {
3341 dma_unmap_single(&oct->pci_dev->dev,
3342 g->sg[0].ptr[0],
3343 skb->len - skb->data_len,
3344 DMA_TO_DEVICE);
3345 for (j = 1; j < i; j++) {
3346 frag = &skb_shinfo(skb)->frags[j - 1];
3347 dma_unmap_page(&oct->pci_dev->dev,
3348 g->sg[j >> 2].ptr[j & 3],
3349 frag->size,
3350 DMA_TO_DEVICE);
3351 }
3352 dev_err(&oct->pci_dev->dev, "%s DMA mapping error 3\n",
3353 __func__);
3354 return NETDEV_TX_BUSY;
3355 }
3356
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003357 add_sg_size(&g->sg[(i >> 2)], frag->size, (i & 3));
3358 i++;
3359 }
3360
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07003361 dptr = g->sg_dma_ptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003362
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003363 if (OCTEON_CN23XX_PF(oct))
3364 ndata.cmd.cmd3.dptr = dptr;
3365 else
3366 ndata.cmd.cmd2.dptr = dptr;
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003367 finfo->dptr = dptr;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003368 finfo->g = g;
3369
3370 ndata.reqtype = REQTYPE_NORESP_NET_SG;
3371 }
3372
Raghu Vatsavayi5b823512016-09-01 11:16:07 -07003373 if (OCTEON_CN23XX_PF(oct)) {
3374 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd3.irh;
3375 tx_info = (union tx_info *)&ndata.cmd.cmd3.ossp[0];
3376 } else {
3377 irh = (struct octeon_instr_irh *)&ndata.cmd.cmd2.irh;
3378 tx_info = (union tx_info *)&ndata.cmd.cmd2.ossp[0];
3379 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003380
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003381 if (skb_shinfo(skb)->gso_size) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003382 tx_info->s.gso_size = skb_shinfo(skb)->gso_size;
3383 tx_info->s.gso_segs = skb_shinfo(skb)->gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003384 stats->tx_gso++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003385 }
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003386
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07003387 /* HW insert VLAN tag */
3388 if (skb_vlan_tag_present(skb)) {
3389 irh->priority = skb_vlan_tag_get(skb) >> 13;
3390 irh->vlan = skb_vlan_tag_get(skb) & 0xfff;
3391 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003392
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003393 if (unlikely(cmdsetup.s.timestamp))
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003394 status = send_nic_timestamp_pkt(oct, &ndata, finfo);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003395 else
Raghu Vatsavayi32581242016-08-31 11:03:20 -07003396 status = octnet_send_nic_data_pkt(oct, &ndata);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003397 if (status == IQ_SEND_FAILED)
3398 goto lio_xmit_failed;
3399
3400 netif_info(lio, tx_queued, lio->netdev, "Transmit queued successfully\n");
3401
3402 if (status == IQ_SEND_STOP)
3403 stop_q(lio->netdev, q_idx);
3404
Florian Westphal860e9532016-05-03 16:33:13 +02003405 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003406
Satanand Burla80c8eae2017-01-26 11:52:35 -08003407 if (tx_info->s.gso_segs)
3408 stats->tx_done += tx_info->s.gso_segs;
Raghu Vatsavayi1f164712016-06-21 22:53:11 -07003409 else
3410 stats->tx_done++;
Satanand Burla80c8eae2017-01-26 11:52:35 -08003411 stats->tx_tot_bytes += ndata.datasize;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003412
3413 return NETDEV_TX_OK;
3414
3415lio_xmit_failed:
3416 stats->tx_dropped++;
3417 netif_info(lio, tx_err, lio->netdev, "IQ%d Transmit dropped:%llu\n",
3418 iq_no, stats->tx_dropped);
Raghu Vatsavayi6a885b62016-06-14 16:54:51 -07003419 if (dptr)
3420 dma_unmap_single(&oct->pci_dev->dev, dptr,
3421 ndata.datasize, DMA_TO_DEVICE);
Raghu Vatsavayicabeb132016-06-14 16:54:47 -07003422 tx_buffer_free(skb);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003423 return NETDEV_TX_OK;
3424}
3425
3426/** \brief Network device Tx timeout
3427 * @param netdev pointer to network device
3428 */
3429static void liquidio_tx_timeout(struct net_device *netdev)
3430{
3431 struct lio *lio;
3432
3433 lio = GET_LIO(netdev);
3434
3435 netif_info(lio, tx_err, lio->netdev,
3436 "Transmit timeout tx_dropped:%ld, waking up queues now!!\n",
3437 netdev->stats.tx_dropped);
Florian Westphal860e9532016-05-03 16:33:13 +02003438 netif_trans_update(netdev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003439 txqs_wake(netdev);
3440}
3441
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003442static int liquidio_vlan_rx_add_vid(struct net_device *netdev,
3443 __be16 proto __attribute__((unused)),
3444 u16 vid)
3445{
3446 struct lio *lio = GET_LIO(netdev);
3447 struct octeon_device *oct = lio->oct_dev;
3448 struct octnic_ctrl_pkt nctrl;
3449 int ret = 0;
3450
3451 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3452
3453 nctrl.ncmd.u64 = 0;
3454 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3455 nctrl.ncmd.s.param1 = vid;
3456 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3457 nctrl.wait_time = 100;
3458 nctrl.netpndev = (u64)netdev;
3459 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3460
3461 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3462 if (ret < 0) {
3463 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3464 ret);
3465 }
3466
3467 return ret;
3468}
3469
3470static int liquidio_vlan_rx_kill_vid(struct net_device *netdev,
3471 __be16 proto __attribute__((unused)),
3472 u16 vid)
3473{
3474 struct lio *lio = GET_LIO(netdev);
3475 struct octeon_device *oct = lio->oct_dev;
3476 struct octnic_ctrl_pkt nctrl;
3477 int ret = 0;
3478
3479 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3480
3481 nctrl.ncmd.u64 = 0;
3482 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3483 nctrl.ncmd.s.param1 = vid;
3484 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3485 nctrl.wait_time = 100;
3486 nctrl.netpndev = (u64)netdev;
3487 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3488
3489 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3490 if (ret < 0) {
3491 dev_err(&oct->pci_dev->dev, "Add VLAN filter failed in core (ret: 0x%x)\n",
3492 ret);
3493 }
3494 return ret;
3495}
3496
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003497/** Sending command to enable/disable RX checksum offload
3498 * @param netdev pointer to network device
3499 * @param command OCTNET_CMD_TNL_RX_CSUM_CTL
3500 * @param rx_cmd_bit OCTNET_CMD_RXCSUM_ENABLE/
3501 * OCTNET_CMD_RXCSUM_DISABLE
3502 * @returns SUCCESS or FAILURE
3503 */
Nicholas Mc Guirec41419b2016-08-22 17:52:00 +02003504static int liquidio_set_rxcsum_command(struct net_device *netdev, int command,
3505 u8 rx_cmd)
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003506{
3507 struct lio *lio = GET_LIO(netdev);
3508 struct octeon_device *oct = lio->oct_dev;
3509 struct octnic_ctrl_pkt nctrl;
3510 int ret = 0;
3511
Felix Manlunas0c264582017-04-06 19:22:22 -07003512 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3513
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003514 nctrl.ncmd.u64 = 0;
3515 nctrl.ncmd.s.cmd = command;
3516 nctrl.ncmd.s.param1 = rx_cmd;
3517 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3518 nctrl.wait_time = 100;
3519 nctrl.netpndev = (u64)netdev;
3520 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3521
3522 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3523 if (ret < 0) {
3524 dev_err(&oct->pci_dev->dev,
3525 "DEVFLAGS RXCSUM change failed in core(ret:0x%x)\n",
3526 ret);
3527 }
3528 return ret;
3529}
3530
3531/** Sending command to add/delete VxLAN UDP port to firmware
3532 * @param netdev pointer to network device
3533 * @param command OCTNET_CMD_VXLAN_PORT_CONFIG
3534 * @param vxlan_port VxLAN port to be added or deleted
3535 * @param vxlan_cmd_bit OCTNET_CMD_VXLAN_PORT_ADD,
3536 * OCTNET_CMD_VXLAN_PORT_DEL
3537 * @returns SUCCESS or FAILURE
3538 */
3539static int liquidio_vxlan_port_command(struct net_device *netdev, int command,
3540 u16 vxlan_port, u8 vxlan_cmd_bit)
3541{
3542 struct lio *lio = GET_LIO(netdev);
3543 struct octeon_device *oct = lio->oct_dev;
3544 struct octnic_ctrl_pkt nctrl;
3545 int ret = 0;
3546
Felix Manlunas0c264582017-04-06 19:22:22 -07003547 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3548
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003549 nctrl.ncmd.u64 = 0;
3550 nctrl.ncmd.s.cmd = command;
3551 nctrl.ncmd.s.more = vxlan_cmd_bit;
3552 nctrl.ncmd.s.param1 = vxlan_port;
3553 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3554 nctrl.wait_time = 100;
3555 nctrl.netpndev = (u64)netdev;
3556 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
3557
3558 ret = octnet_send_nic_ctrl_pkt(lio->oct_dev, &nctrl);
3559 if (ret < 0) {
3560 dev_err(&oct->pci_dev->dev,
3561 "VxLAN port add/delete failed in core (ret:0x%x)\n",
3562 ret);
3563 }
3564 return ret;
3565}
3566
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003567/** \brief Net device fix features
3568 * @param netdev pointer to network device
3569 * @param request features requested
3570 * @returns updated features list
3571 */
3572static netdev_features_t liquidio_fix_features(struct net_device *netdev,
3573 netdev_features_t request)
3574{
3575 struct lio *lio = netdev_priv(netdev);
3576
3577 if ((request & NETIF_F_RXCSUM) &&
3578 !(lio->dev_capability & NETIF_F_RXCSUM))
3579 request &= ~NETIF_F_RXCSUM;
3580
3581 if ((request & NETIF_F_HW_CSUM) &&
3582 !(lio->dev_capability & NETIF_F_HW_CSUM))
3583 request &= ~NETIF_F_HW_CSUM;
3584
3585 if ((request & NETIF_F_TSO) && !(lio->dev_capability & NETIF_F_TSO))
3586 request &= ~NETIF_F_TSO;
3587
3588 if ((request & NETIF_F_TSO6) && !(lio->dev_capability & NETIF_F_TSO6))
3589 request &= ~NETIF_F_TSO6;
3590
3591 if ((request & NETIF_F_LRO) && !(lio->dev_capability & NETIF_F_LRO))
3592 request &= ~NETIF_F_LRO;
3593
3594 /*Disable LRO if RXCSUM is off */
3595 if (!(request & NETIF_F_RXCSUM) && (netdev->features & NETIF_F_LRO) &&
3596 (lio->dev_capability & NETIF_F_LRO))
3597 request &= ~NETIF_F_LRO;
3598
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07003599 if ((request & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3600 !(lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER))
3601 request &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
3602
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003603 return request;
3604}
3605
3606/** \brief Net device set features
3607 * @param netdev pointer to network device
3608 * @param features features to enable/disable
3609 */
3610static int liquidio_set_features(struct net_device *netdev,
3611 netdev_features_t features)
3612{
3613 struct lio *lio = netdev_priv(netdev);
3614
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07003615 if ((features & NETIF_F_LRO) &&
3616 (lio->dev_capability & NETIF_F_LRO) &&
3617 !(netdev->features & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003618 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
3619 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003620 else if (!(features & NETIF_F_LRO) &&
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07003621 (lio->dev_capability & NETIF_F_LRO) &&
3622 (netdev->features & NETIF_F_LRO))
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003623 liquidio_set_feature(netdev, OCTNET_CMD_LRO_DISABLE,
3624 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003625
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003626 /* Sending command to firmware to enable/disable RX checksum
3627 * offload settings using ethtool
3628 */
3629 if (!(netdev->features & NETIF_F_RXCSUM) &&
3630 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3631 (features & NETIF_F_RXCSUM))
3632 liquidio_set_rxcsum_command(netdev,
3633 OCTNET_CMD_TNL_RX_CSUM_CTL,
3634 OCTNET_CMD_RXCSUM_ENABLE);
3635 else if ((netdev->features & NETIF_F_RXCSUM) &&
3636 (lio->enc_dev_capability & NETIF_F_RXCSUM) &&
3637 !(features & NETIF_F_RXCSUM))
3638 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
3639 OCTNET_CMD_RXCSUM_DISABLE);
3640
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07003641 if ((features & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3642 (lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3643 !(netdev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
3644 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
3645 OCTNET_CMD_VLAN_FILTER_ENABLE);
3646 else if (!(features & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3647 (lio->dev_capability & NETIF_F_HW_VLAN_CTAG_FILTER) &&
3648 (netdev->features & NETIF_F_HW_VLAN_CTAG_FILTER))
3649 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
3650 OCTNET_CMD_VLAN_FILTER_DISABLE);
3651
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003652 return 0;
3653}
3654
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003655static void liquidio_add_vxlan_port(struct net_device *netdev,
3656 struct udp_tunnel_info *ti)
3657{
3658 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3659 return;
3660
3661 liquidio_vxlan_port_command(netdev,
3662 OCTNET_CMD_VXLAN_PORT_CONFIG,
3663 htons(ti->port),
3664 OCTNET_CMD_VXLAN_PORT_ADD);
3665}
3666
3667static void liquidio_del_vxlan_port(struct net_device *netdev,
3668 struct udp_tunnel_info *ti)
3669{
3670 if (ti->type != UDP_TUNNEL_TYPE_VXLAN)
3671 return;
3672
3673 liquidio_vxlan_port_command(netdev,
3674 OCTNET_CMD_VXLAN_PORT_CONFIG,
3675 htons(ti->port),
3676 OCTNET_CMD_VXLAN_PORT_DEL);
3677}
3678
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003679static int __liquidio_set_vf_mac(struct net_device *netdev, int vfidx,
3680 u8 *mac, bool is_admin_assigned)
3681{
3682 struct lio *lio = GET_LIO(netdev);
3683 struct octeon_device *oct = lio->oct_dev;
3684 struct octnic_ctrl_pkt nctrl;
3685
3686 if (!is_valid_ether_addr(mac))
3687 return -EINVAL;
3688
3689 if (vfidx < 0 || vfidx >= oct->sriov_info.max_vfs)
3690 return -EINVAL;
3691
3692 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3693
3694 nctrl.ncmd.u64 = 0;
3695 nctrl.ncmd.s.cmd = OCTNET_CMD_CHANGE_MACADDR;
3696 /* vfidx is 0 based, but vf_num (param1) is 1 based */
3697 nctrl.ncmd.s.param1 = vfidx + 1;
3698 nctrl.ncmd.s.param2 = (is_admin_assigned ? 1 : 0);
3699 nctrl.ncmd.s.more = 1;
3700 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
Rick Farrington9549c6c2017-03-17 15:43:26 -07003701 nctrl.netpndev = (u64)netdev;
3702 nctrl.cb_fn = liquidio_link_ctrl_cmd_completion;
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003703 nctrl.wait_time = LIO_CMD_WAIT_TM;
3704
3705 nctrl.udd[0] = 0;
3706 /* The MAC Address is presented in network byte order. */
3707 ether_addr_copy((u8 *)&nctrl.udd[0] + 2, mac);
3708
3709 oct->sriov_info.vf_macaddr[vfidx] = nctrl.udd[0];
3710
3711 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3712
3713 return 0;
3714}
3715
3716static int liquidio_set_vf_mac(struct net_device *netdev, int vfidx, u8 *mac)
3717{
3718 struct lio *lio = GET_LIO(netdev);
3719 struct octeon_device *oct = lio->oct_dev;
3720 int retval;
3721
Felix Manlunas0d9a5992017-05-16 11:28:00 -07003722 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3723 return -EINVAL;
3724
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003725 retval = __liquidio_set_vf_mac(netdev, vfidx, mac, true);
3726 if (!retval)
3727 cn23xx_tell_vf_its_macaddr_changed(oct, vfidx, mac);
3728
3729 return retval;
3730}
3731
3732static int liquidio_set_vf_vlan(struct net_device *netdev, int vfidx,
3733 u16 vlan, u8 qos, __be16 vlan_proto)
3734{
3735 struct lio *lio = GET_LIO(netdev);
3736 struct octeon_device *oct = lio->oct_dev;
3737 struct octnic_ctrl_pkt nctrl;
3738 u16 vlantci;
3739
3740 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3741 return -EINVAL;
3742
3743 if (vlan_proto != htons(ETH_P_8021Q))
3744 return -EPROTONOSUPPORT;
3745
3746 if (vlan >= VLAN_N_VID || qos > 7)
3747 return -EINVAL;
3748
3749 if (vlan)
3750 vlantci = vlan | (u16)qos << VLAN_PRIO_SHIFT;
3751 else
3752 vlantci = 0;
3753
3754 if (oct->sriov_info.vf_vlantci[vfidx] == vlantci)
3755 return 0;
3756
3757 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3758
3759 if (vlan)
3760 nctrl.ncmd.s.cmd = OCTNET_CMD_ADD_VLAN_FILTER;
3761 else
3762 nctrl.ncmd.s.cmd = OCTNET_CMD_DEL_VLAN_FILTER;
3763
3764 nctrl.ncmd.s.param1 = vlantci;
3765 nctrl.ncmd.s.param2 =
3766 vfidx + 1; /* vfidx is 0 based, but vf_num (param2) is 1 based */
3767 nctrl.ncmd.s.more = 0;
3768 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3769 nctrl.cb_fn = 0;
3770 nctrl.wait_time = LIO_CMD_WAIT_TM;
3771
3772 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3773
3774 oct->sriov_info.vf_vlantci[vfidx] = vlantci;
3775
3776 return 0;
3777}
3778
3779static int liquidio_get_vf_config(struct net_device *netdev, int vfidx,
3780 struct ifla_vf_info *ivi)
3781{
3782 struct lio *lio = GET_LIO(netdev);
3783 struct octeon_device *oct = lio->oct_dev;
3784 u8 *macaddr;
3785
3786 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3787 return -EINVAL;
3788
3789 ivi->vf = vfidx;
3790 macaddr = 2 + (u8 *)&oct->sriov_info.vf_macaddr[vfidx];
3791 ether_addr_copy(&ivi->mac[0], macaddr);
3792 ivi->vlan = oct->sriov_info.vf_vlantci[vfidx] & VLAN_VID_MASK;
3793 ivi->qos = oct->sriov_info.vf_vlantci[vfidx] >> VLAN_PRIO_SHIFT;
3794 ivi->linkstate = oct->sriov_info.vf_linkstate[vfidx];
3795 return 0;
3796}
3797
3798static int liquidio_set_vf_link_state(struct net_device *netdev, int vfidx,
3799 int linkstate)
3800{
3801 struct lio *lio = GET_LIO(netdev);
3802 struct octeon_device *oct = lio->oct_dev;
3803 struct octnic_ctrl_pkt nctrl;
3804
3805 if (vfidx < 0 || vfidx >= oct->sriov_info.num_vfs_alloced)
3806 return -EINVAL;
3807
3808 if (oct->sriov_info.vf_linkstate[vfidx] == linkstate)
3809 return 0;
3810
3811 memset(&nctrl, 0, sizeof(struct octnic_ctrl_pkt));
3812 nctrl.ncmd.s.cmd = OCTNET_CMD_SET_VF_LINKSTATE;
3813 nctrl.ncmd.s.param1 =
3814 vfidx + 1; /* vfidx is 0 based, but vf_num (param1) is 1 based */
3815 nctrl.ncmd.s.param2 = linkstate;
3816 nctrl.ncmd.s.more = 0;
3817 nctrl.iq_no = lio->linfo.txpciq[0].s.q_no;
3818 nctrl.cb_fn = 0;
3819 nctrl.wait_time = LIO_CMD_WAIT_TM;
3820
3821 octnet_send_nic_ctrl_pkt(oct, &nctrl);
3822
3823 oct->sriov_info.vf_linkstate[vfidx] = linkstate;
3824
3825 return 0;
3826}
3827
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003828static const struct net_device_ops lionetdevops = {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003829 .ndo_open = liquidio_open,
3830 .ndo_stop = liquidio_stop,
3831 .ndo_start_xmit = liquidio_xmit,
3832 .ndo_get_stats = liquidio_get_stats,
3833 .ndo_set_mac_address = liquidio_set_mac,
3834 .ndo_set_rx_mode = liquidio_set_mcast_list,
3835 .ndo_tx_timeout = liquidio_tx_timeout,
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07003836
3837 .ndo_vlan_rx_add_vid = liquidio_vlan_rx_add_vid,
3838 .ndo_vlan_rx_kill_vid = liquidio_vlan_rx_kill_vid,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003839 .ndo_change_mtu = liquidio_change_mtu,
3840 .ndo_do_ioctl = liquidio_ioctl,
3841 .ndo_fix_features = liquidio_fix_features,
3842 .ndo_set_features = liquidio_set_features,
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07003843 .ndo_udp_tunnel_add = liquidio_add_vxlan_port,
3844 .ndo_udp_tunnel_del = liquidio_del_vxlan_port,
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08003845 .ndo_set_vf_mac = liquidio_set_vf_mac,
3846 .ndo_set_vf_vlan = liquidio_set_vf_vlan,
3847 .ndo_get_vf_config = liquidio_get_vf_config,
3848 .ndo_set_vf_link_state = liquidio_set_vf_link_state,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003849};
3850
3851/** \brief Entry point for the liquidio module
3852 */
3853static int __init liquidio_init(void)
3854{
3855 int i;
3856 struct handshake *hs;
3857
3858 init_completion(&first_stage);
3859
Raghu Vatsavayi97a25322016-11-14 15:54:47 -08003860 octeon_init_device_list(OCTEON_CONFIG_TYPE_DEFAULT);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003861
3862 if (liquidio_init_pci())
3863 return -EINVAL;
3864
3865 wait_for_completion_timeout(&first_stage, msecs_to_jiffies(1000));
3866
3867 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3868 hs = &handshake[i];
3869 if (hs->pci_dev) {
3870 wait_for_completion(&hs->init);
3871 if (!hs->init_ok) {
3872 /* init handshake failed */
3873 dev_err(&hs->pci_dev->dev,
3874 "Failed to init device\n");
3875 liquidio_deinit_pci();
3876 return -EIO;
3877 }
3878 }
3879 }
3880
3881 for (i = 0; i < MAX_OCTEON_DEVICES; i++) {
3882 hs = &handshake[i];
3883 if (hs->pci_dev) {
3884 wait_for_completion_timeout(&hs->started,
3885 msecs_to_jiffies(30000));
3886 if (!hs->started_ok) {
3887 /* starter handshake failed */
3888 dev_err(&hs->pci_dev->dev,
3889 "Firmware failed to start\n");
3890 liquidio_deinit_pci();
3891 return -EIO;
3892 }
3893 }
3894 }
3895
3896 return 0;
3897}
3898
Raghu Vatsavayi5b173cf2015-06-12 18:11:50 -07003899static int lio_nic_info(struct octeon_recv_info *recv_info, void *buf)
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003900{
3901 struct octeon_device *oct = (struct octeon_device *)buf;
3902 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003903 int gmxport = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003904 union oct_link_status *ls;
3905 int i;
3906
Prasad Kannegantic4ee5d82017-06-18 05:04:11 -07003907 if (recv_pkt->buffer_size[0] != (sizeof(*ls) + OCT_DROQ_INFO_SIZE)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003908 dev_err(&oct->pci_dev->dev, "Malformed NIC_INFO, len=%d, ifidx=%d\n",
3909 recv_pkt->buffer_size[0],
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003910 recv_pkt->rh.r_nic_info.gmxport);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003911 goto nic_info_err;
3912 }
3913
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003914 gmxport = recv_pkt->rh.r_nic_info.gmxport;
Prasad Kannegantic4ee5d82017-06-18 05:04:11 -07003915 ls = (union oct_link_status *)(get_rbd(recv_pkt->buffer_ptr[0]) +
3916 OCT_DROQ_INFO_SIZE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003917
3918 octeon_swap_8B_data((u64 *)ls, (sizeof(union oct_link_status)) >> 3);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003919 for (i = 0; i < oct->ifcount; i++) {
3920 if (oct->props[i].gmxport == gmxport) {
3921 update_link_status(oct->props[i].netdev, ls);
3922 break;
3923 }
3924 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003925
3926nic_info_err:
3927 for (i = 0; i < recv_pkt->buffer_count; i++)
3928 recv_buffer_free(recv_pkt->buffer_ptr[i]);
3929 octeon_free_recv_info(recv_info);
3930 return 0;
3931}
3932
3933/**
3934 * \brief Setup network interfaces
3935 * @param octeon_dev octeon device
3936 *
3937 * Called during init time for each device. It assumes the NIC
3938 * is already up and running. The link information for each
3939 * interface is passed in link_info.
3940 */
3941static int setup_nic_devices(struct octeon_device *octeon_dev)
3942{
3943 struct lio *lio = NULL;
3944 struct net_device *netdev;
3945 u8 mac[6], i, j;
3946 struct octeon_soft_command *sc;
3947 struct liquidio_if_cfg_context *ctx;
3948 struct liquidio_if_cfg_resp *resp;
3949 struct octdev_props *props;
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07003950 int retval, num_iqueues, num_oqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003951 union oct_nic_if_cfg if_cfg;
3952 unsigned int base_queue;
3953 unsigned int gmx_port_id;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003954 u32 resp_size, ctx_size, data_size;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07003955 u32 ifidx_or_pfnum;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003956 struct lio_version *vdata;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003957
3958 /* This is to handle link status changes */
3959 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
3960 OPCODE_NIC_INFO,
3961 lio_nic_info, octeon_dev);
3962
3963 /* REQTYPE_RESP_NET and REQTYPE_SOFT_COMMAND do not have free functions.
3964 * They are handled directly.
3965 */
3966 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET,
3967 free_netbuf);
3968
3969 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_NORESP_NET_SG,
3970 free_netsgbuf);
3971
3972 octeon_register_reqtype_free_fn(octeon_dev, REQTYPE_RESP_NET_SG,
3973 free_netsgbuf_with_resp);
3974
3975 for (i = 0; i < octeon_dev->ifcount; i++) {
3976 resp_size = sizeof(struct liquidio_if_cfg_resp);
3977 ctx_size = sizeof(struct liquidio_if_cfg_context);
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003978 data_size = sizeof(struct lio_version);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003979 sc = (struct octeon_soft_command *)
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003980 octeon_alloc_soft_command(octeon_dev, data_size,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003981 resp_size, ctx_size);
3982 resp = (struct liquidio_if_cfg_resp *)sc->virtrptr;
3983 ctx = (struct liquidio_if_cfg_context *)sc->ctxptr;
Raghu Vatsavayi83101ce2016-08-31 11:03:21 -07003984 vdata = (struct lio_version *)sc->virtdptr;
3985
3986 *((u64 *)vdata) = 0;
3987 vdata->major = cpu_to_be16(LIQUIDIO_BASE_MAJOR_VERSION);
3988 vdata->minor = cpu_to_be16(LIQUIDIO_BASE_MINOR_VERSION);
3989 vdata->micro = cpu_to_be16(LIQUIDIO_BASE_MICRO_VERSION);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07003990
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07003991 if (OCTEON_CN23XX_PF(octeon_dev)) {
3992 num_iqueues = octeon_dev->sriov_info.num_pf_rings;
3993 num_oqueues = octeon_dev->sriov_info.num_pf_rings;
3994 base_queue = octeon_dev->sriov_info.pf_srn;
3995
3996 gmx_port_id = octeon_dev->pf_num;
3997 ifidx_or_pfnum = octeon_dev->pf_num;
3998 } else {
3999 num_iqueues = CFG_GET_NUM_TXQS_NIC_IF(
4000 octeon_get_conf(octeon_dev), i);
4001 num_oqueues = CFG_GET_NUM_RXQS_NIC_IF(
4002 octeon_get_conf(octeon_dev), i);
4003 base_queue = CFG_GET_BASE_QUE_NIC_IF(
4004 octeon_get_conf(octeon_dev), i);
4005 gmx_port_id = CFG_GET_GMXID_NIC_IF(
4006 octeon_get_conf(octeon_dev), i);
4007 ifidx_or_pfnum = i;
4008 }
Raghu Vatsavayi3dcef2c2016-07-03 13:56:51 -07004009
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004010 dev_dbg(&octeon_dev->pci_dev->dev,
4011 "requesting config for interface %d, iqs %d, oqs %d\n",
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004012 ifidx_or_pfnum, num_iqueues, num_oqueues);
Raghu Vatsavayia7d5a3d2016-07-03 13:56:48 -07004013 WRITE_ONCE(ctx->cond, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004014 ctx->octeon_id = lio_get_device_id(octeon_dev);
4015 init_waitqueue_head(&ctx->wc);
4016
4017 if_cfg.u64 = 0;
4018 if_cfg.s.num_iqueues = num_iqueues;
4019 if_cfg.s.num_oqueues = num_oqueues;
4020 if_cfg.s.base_queue = base_queue;
4021 if_cfg.s.gmx_port_id = gmx_port_id;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004022
4023 sc->iq_no = 0;
4024
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004025 octeon_prepare_soft_command(octeon_dev, sc, OPCODE_NIC,
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004026 OPCODE_NIC_IF_CFG, 0,
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004027 if_cfg.u64, 0);
4028
4029 sc->callback = if_cfg_callback;
4030 sc->callback_arg = sc;
Raghu Vatsavayi55893a62016-07-03 13:56:50 -07004031 sc->wait_time = 3000;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004032
4033 retval = octeon_send_soft_command(octeon_dev, sc);
Raghu Vatsavayiddc173a2016-06-14 16:54:43 -07004034 if (retval == IQ_SEND_FAILED) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004035 dev_err(&octeon_dev->pci_dev->dev,
4036 "iq/oq config failed status: %x\n",
4037 retval);
4038 /* Soft instr is freed by driver in case of failure. */
4039 goto setup_nic_dev_fail;
4040 }
4041
4042 /* Sleep on a wait queue till the cond flag indicates that the
4043 * response arrived or timed-out.
4044 */
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07004045 if (sleep_cond(&ctx->wc, &ctx->cond) == -EINTR) {
4046 dev_err(&octeon_dev->pci_dev->dev, "Wait interrupted\n");
4047 goto setup_nic_wait_intr;
4048 }
4049
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004050 retval = resp->status;
4051 if (retval) {
4052 dev_err(&octeon_dev->pci_dev->dev, "iq/oq config failed\n");
4053 goto setup_nic_dev_fail;
4054 }
4055
4056 octeon_swap_8B_data((u64 *)(&resp->cfg_info),
4057 (sizeof(struct liquidio_if_cfg_info)) >> 3);
4058
4059 num_iqueues = hweight64(resp->cfg_info.iqmask);
4060 num_oqueues = hweight64(resp->cfg_info.oqmask);
4061
4062 if (!(num_iqueues) || !(num_oqueues)) {
4063 dev_err(&octeon_dev->pci_dev->dev,
4064 "Got bad iqueues (%016llx) or oqueues (%016llx) from firmware.\n",
4065 resp->cfg_info.iqmask,
4066 resp->cfg_info.oqmask);
4067 goto setup_nic_dev_fail;
4068 }
4069 dev_dbg(&octeon_dev->pci_dev->dev,
4070 "interface %d, iqmask %016llx, oqmask %016llx, numiqueues %d, numoqueues %d\n",
4071 i, resp->cfg_info.iqmask, resp->cfg_info.oqmask,
4072 num_iqueues, num_oqueues);
4073 netdev = alloc_etherdev_mq(LIO_SIZE, num_iqueues);
4074
4075 if (!netdev) {
4076 dev_err(&octeon_dev->pci_dev->dev, "Device allocation failed\n");
4077 goto setup_nic_dev_fail;
4078 }
4079
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004080 SET_NETDEV_DEV(netdev, &octeon_dev->pci_dev->dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004081
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004082 /* Associate the routines that will handle different
4083 * netdev tasks.
4084 */
4085 netdev->netdev_ops = &lionetdevops;
4086
4087 lio = GET_LIO(netdev);
4088
4089 memset(lio, 0, sizeof(struct lio));
4090
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004091 lio->ifidx = ifidx_or_pfnum;
4092
4093 props = &octeon_dev->props[i];
4094 props->gmxport = resp->cfg_info.linfo.gmxport;
4095 props->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004096
4097 lio->linfo.num_rxpciq = num_oqueues;
4098 lio->linfo.num_txpciq = num_iqueues;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004099 for (j = 0; j < num_oqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004100 lio->linfo.rxpciq[j].u64 =
4101 resp->cfg_info.linfo.rxpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004102 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004103 for (j = 0; j < num_iqueues; j++) {
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004104 lio->linfo.txpciq[j].u64 =
4105 resp->cfg_info.linfo.txpciq[j].u64;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004106 }
4107 lio->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
4108 lio->linfo.gmxport = resp->cfg_info.linfo.gmxport;
4109 lio->linfo.link.u64 = resp->cfg_info.linfo.link.u64;
4110
4111 lio->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
4112
Raghu Vatsavayie86b1ab2016-08-31 11:03:24 -07004113 if (OCTEON_CN23XX_PF(octeon_dev) ||
4114 OCTEON_CN6XXX(octeon_dev)) {
4115 lio->dev_capability = NETIF_F_HIGHDMA
4116 | NETIF_F_IP_CSUM
4117 | NETIF_F_IPV6_CSUM
4118 | NETIF_F_SG | NETIF_F_RXCSUM
4119 | NETIF_F_GRO
4120 | NETIF_F_TSO | NETIF_F_TSO6
4121 | NETIF_F_LRO;
4122 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004123 netif_set_gso_max_size(netdev, OCTNIC_GSO_MAX_SIZE);
4124
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004125 /* Copy of transmit encapsulation capabilities:
4126 * TSO, TSO6, Checksums for this device
4127 */
4128 lio->enc_dev_capability = NETIF_F_IP_CSUM
4129 | NETIF_F_IPV6_CSUM
4130 | NETIF_F_GSO_UDP_TUNNEL
4131 | NETIF_F_HW_CSUM | NETIF_F_SG
4132 | NETIF_F_RXCSUM
4133 | NETIF_F_TSO | NETIF_F_TSO6
4134 | NETIF_F_LRO;
4135
4136 netdev->hw_enc_features = (lio->enc_dev_capability &
4137 ~NETIF_F_LRO);
4138
4139 lio->dev_capability |= NETIF_F_GSO_UDP_TUNNEL;
4140
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004141 netdev->vlan_features = lio->dev_capability;
4142 /* Add any unchangeable hw features */
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004143 lio->dev_capability |= NETIF_F_HW_VLAN_CTAG_FILTER |
4144 NETIF_F_HW_VLAN_CTAG_RX |
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004145 NETIF_F_HW_VLAN_CTAG_TX;
4146
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004147 netdev->features = (lio->dev_capability & ~NETIF_F_LRO);
4148
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004149 netdev->hw_features = lio->dev_capability;
Raghu Vatsavayi0da0b772016-06-21 22:53:04 -07004150 /*HW_VLAN_RX and HW_VLAN_FILTER is always on*/
4151 netdev->hw_features = netdev->hw_features &
4152 ~NETIF_F_HW_VLAN_CTAG_RX;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004153
Jarod Wilson109cc162016-10-17 15:54:13 -04004154 /* MTU range: 68 - 16000 */
4155 netdev->min_mtu = LIO_MIN_MTU_SIZE;
4156 netdev->max_mtu = LIO_MAX_MTU_SIZE;
4157
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004158 /* Point to the properties for octeon device to which this
4159 * interface belongs.
4160 */
4161 lio->oct_dev = octeon_dev;
4162 lio->octprops = props;
4163 lio->netdev = netdev;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004164
4165 dev_dbg(&octeon_dev->pci_dev->dev,
4166 "if%d gmx: %d hw_addr: 0x%llx\n", i,
4167 lio->linfo.gmxport, CVM_CAST64(lio->linfo.hw_addr));
4168
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004169 for (j = 0; j < octeon_dev->sriov_info.max_vfs; j++) {
4170 u8 vfmac[ETH_ALEN];
4171
4172 random_ether_addr(&vfmac[0]);
4173 if (__liquidio_set_vf_mac(netdev, j,
4174 &vfmac[0], false)) {
4175 dev_err(&octeon_dev->pci_dev->dev,
4176 "Error setting VF%d MAC address\n",
4177 j);
4178 goto setup_nic_dev_fail;
4179 }
4180 }
4181
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004182 /* 64-bit swap required on LE machines */
4183 octeon_swap_8B_data(&lio->linfo.hw_addr, 1);
4184 for (j = 0; j < 6; j++)
4185 mac[j] = *((u8 *)(((u8 *)&lio->linfo.hw_addr) + 2 + j));
4186
4187 /* Copy MAC Address to OS network device structure */
4188
4189 ether_addr_copy(netdev->dev_addr, mac);
4190
Raghu Vatsavayi26236fa2016-06-14 16:54:44 -07004191 /* By default all interfaces on a single Octeon uses the same
4192 * tx and rx queues
4193 */
4194 lio->txq = lio->linfo.txpciq[0].s.q_no;
4195 lio->rxq = lio->linfo.rxpciq[0].s.q_no;
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004196 if (setup_io_queues(octeon_dev, i)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004197 dev_err(&octeon_dev->pci_dev->dev, "I/O queues creation failed\n");
4198 goto setup_nic_dev_fail;
4199 }
4200
4201 ifstate_set(lio, LIO_IFSTATE_DROQ_OPS);
4202
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004203 lio->tx_qsize = octeon_get_tx_qsize(octeon_dev, lio->txq);
4204 lio->rx_qsize = octeon_get_rx_qsize(octeon_dev, lio->rxq);
4205
Raghu Vatsavayifcd2b5e2016-06-14 16:54:45 -07004206 if (setup_glists(octeon_dev, lio, num_iqueues)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004207 dev_err(&octeon_dev->pci_dev->dev,
4208 "Gather list allocation failed\n");
4209 goto setup_nic_dev_fail;
4210 }
4211
4212 /* Register ethtool support */
4213 liquidio_set_ethtool_ops(netdev);
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004214 if (lio->oct_dev->chip_id == OCTEON_CN23XX_PF_VID)
4215 octeon_dev->priv_flags = OCT_PRIV_FLAG_DEFAULT;
4216 else
4217 octeon_dev->priv_flags = 0x0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004218
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004219 if (netdev->features & NETIF_F_LRO)
Raghu Vatsavayia2c64b62016-07-03 13:56:55 -07004220 liquidio_set_feature(netdev, OCTNET_CMD_LRO_ENABLE,
4221 OCTNIC_LROIPV4 | OCTNIC_LROIPV6);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004222
Prasad Kanneganti836d57e2017-06-18 12:41:34 -07004223 liquidio_set_feature(netdev, OCTNET_CMD_VLAN_FILTER_CTL,
4224 OCTNET_CMD_VLAN_FILTER_ENABLE);
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004225
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004226 if ((debug != -1) && (debug & NETIF_MSG_HW))
Raghu Vatsavayi63245f22016-06-21 22:53:05 -07004227 liquidio_set_feature(netdev,
4228 OCTNET_CMD_VERBOSE_ENABLE, 0);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004229
Raghu Vatsavayi7b6b6c92016-09-01 11:16:04 -07004230 if (setup_link_status_change_wq(netdev))
4231 goto setup_nic_dev_fail;
4232
Satanand Burla031d4f12017-03-22 11:31:13 -07004233 if (setup_rx_oom_poll_fn(netdev))
4234 goto setup_nic_dev_fail;
4235
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004236 /* Register the network device with the OS */
4237 if (register_netdev(netdev)) {
4238 dev_err(&octeon_dev->pci_dev->dev, "Device registration failed\n");
4239 goto setup_nic_dev_fail;
4240 }
4241
4242 dev_dbg(&octeon_dev->pci_dev->dev,
4243 "Setup NIC ifidx:%d mac:%02x%02x%02x%02x%02x%02x\n",
4244 i, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
4245 netif_carrier_off(netdev);
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004246 lio->link_changes++;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004247
4248 ifstate_set(lio, LIO_IFSTATE_REGISTERED);
4249
Raghu Vatsavayi01fb2372016-07-03 13:56:47 -07004250 /* Sending command to firmware to enable Rx checksum offload
4251 * by default at the time of setup of Liquidio driver for
4252 * this device
4253 */
4254 liquidio_set_rxcsum_command(netdev, OCTNET_CMD_TNL_RX_CSUM_CTL,
4255 OCTNET_CMD_RXCSUM_ENABLE);
4256 liquidio_set_feature(netdev, OCTNET_CMD_TNL_TX_CSUM_CTL,
4257 OCTNET_CMD_TXCSUM_ENABLE);
4258
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004259 dev_dbg(&octeon_dev->pci_dev->dev,
4260 "NIC ifidx:%d Setup successful\n", i);
4261
4262 octeon_free_soft_command(octeon_dev, sc);
4263 }
4264
4265 return 0;
4266
4267setup_nic_dev_fail:
4268
4269 octeon_free_soft_command(octeon_dev, sc);
4270
Raghu Vatsavayiafdf8412016-09-01 11:16:05 -07004271setup_nic_wait_intr:
4272
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004273 while (i--) {
4274 dev_err(&octeon_dev->pci_dev->dev,
4275 "NIC ifidx:%d Setup failed\n", i);
4276 liquidio_destroy_nic_device(octeon_dev, i);
4277 }
4278 return -ENODEV;
4279}
4280
Raghu Vatsavayica6139f2016-11-14 15:54:40 -08004281#ifdef CONFIG_PCI_IOV
4282static int octeon_enable_sriov(struct octeon_device *oct)
4283{
4284 unsigned int num_vfs_alloced = oct->sriov_info.num_vfs_alloced;
4285 struct pci_dev *vfdev;
4286 int err;
4287 u32 u;
4288
4289 if (OCTEON_CN23XX_PF(oct) && num_vfs_alloced) {
4290 err = pci_enable_sriov(oct->pci_dev,
4291 oct->sriov_info.num_vfs_alloced);
4292 if (err) {
4293 dev_err(&oct->pci_dev->dev,
4294 "OCTEON: Failed to enable PCI sriov: %d\n",
4295 err);
4296 oct->sriov_info.num_vfs_alloced = 0;
4297 return err;
4298 }
4299 oct->sriov_info.sriov_enabled = 1;
4300
4301 /* init lookup table that maps DPI ring number to VF pci_dev
4302 * struct pointer
4303 */
4304 u = 0;
4305 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4306 OCTEON_CN23XX_VF_VID, NULL);
4307 while (vfdev) {
4308 if (vfdev->is_virtfn &&
4309 (vfdev->physfn == oct->pci_dev)) {
4310 oct->sriov_info.dpiring_to_vfpcidev_lut[u] =
4311 vfdev;
4312 u += oct->sriov_info.rings_per_vf;
4313 }
4314 vfdev = pci_get_device(PCI_VENDOR_ID_CAVIUM,
4315 OCTEON_CN23XX_VF_VID, vfdev);
4316 }
4317 }
4318
4319 return num_vfs_alloced;
4320}
4321
4322static int lio_pci_sriov_disable(struct octeon_device *oct)
4323{
4324 int u;
4325
4326 if (pci_vfs_assigned(oct->pci_dev)) {
4327 dev_err(&oct->pci_dev->dev, "VFs are still assigned to VMs.\n");
4328 return -EPERM;
4329 }
4330
4331 pci_disable_sriov(oct->pci_dev);
4332
4333 u = 0;
4334 while (u < MAX_POSSIBLE_VFS) {
4335 oct->sriov_info.dpiring_to_vfpcidev_lut[u] = NULL;
4336 u += oct->sriov_info.rings_per_vf;
4337 }
4338
4339 oct->sriov_info.num_vfs_alloced = 0;
4340 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d disabled VFs\n",
4341 oct->pf_num);
4342
4343 return 0;
4344}
4345
4346static int liquidio_enable_sriov(struct pci_dev *dev, int num_vfs)
4347{
4348 struct octeon_device *oct = pci_get_drvdata(dev);
4349 int ret = 0;
4350
4351 if ((num_vfs == oct->sriov_info.num_vfs_alloced) &&
4352 (oct->sriov_info.sriov_enabled)) {
4353 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d already enabled num_vfs:%d\n",
4354 oct->pf_num, num_vfs);
4355 return 0;
4356 }
4357
4358 if (!num_vfs) {
4359 ret = lio_pci_sriov_disable(oct);
4360 } else if (num_vfs > oct->sriov_info.max_vfs) {
4361 dev_err(&oct->pci_dev->dev,
4362 "OCTEON: Max allowed VFs:%d user requested:%d",
4363 oct->sriov_info.max_vfs, num_vfs);
4364 ret = -EPERM;
4365 } else {
4366 oct->sriov_info.num_vfs_alloced = num_vfs;
4367 ret = octeon_enable_sriov(oct);
4368 dev_info(&oct->pci_dev->dev, "oct->pf_num:%d num_vfs:%d\n",
4369 oct->pf_num, num_vfs);
4370 }
4371
4372 return ret;
4373}
4374#endif
4375
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004376/**
4377 * \brief initialize the NIC
4378 * @param oct octeon device
4379 *
4380 * This initialization routine is called once the Octeon device application is
4381 * up and running
4382 */
4383static int liquidio_init_nic_module(struct octeon_device *oct)
4384{
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004385 int i, retval = 0;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004386 int num_nic_ports = CFG_GET_NUM_NIC_PORTS(octeon_get_conf(oct));
4387
4388 dev_dbg(&oct->pci_dev->dev, "Initializing network interfaces\n");
4389
4390 /* only default iq and oq were initialized
4391 * initialize the rest as well
4392 */
4393 /* run port_config command for each port */
4394 oct->ifcount = num_nic_ports;
4395
Raghu Vatsavayi30136392016-09-01 11:16:11 -07004396 memset(oct->props, 0, sizeof(struct octdev_props) * num_nic_ports);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004397
Raghu Vatsavayi0cece6c2016-06-14 16:54:50 -07004398 for (i = 0; i < MAX_OCTEON_LINKS; i++)
4399 oct->props[i].gmxport = -1;
4400
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004401 retval = setup_nic_devices(oct);
4402 if (retval) {
4403 dev_err(&oct->pci_dev->dev, "Setup NIC devices failed\n");
4404 goto octnet_init_failure;
4405 }
4406
4407 liquidio_ptp_init(oct);
4408
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004409 dev_dbg(&oct->pci_dev->dev, "Network interfaces ready\n");
4410
4411 return retval;
4412
4413octnet_init_failure:
4414
4415 oct->ifcount = 0;
4416
4417 return retval;
4418}
4419
4420/**
4421 * \brief starter callback that invokes the remaining initialization work after
4422 * the NIC is up and running.
4423 * @param octptr work struct work_struct
4424 */
4425static void nic_starter(struct work_struct *work)
4426{
4427 struct octeon_device *oct;
4428 struct cavium_wk *wk = (struct cavium_wk *)work;
4429
4430 oct = (struct octeon_device *)wk->ctxptr;
4431
4432 if (atomic_read(&oct->status) == OCT_DEV_RUNNING)
4433 return;
4434
4435 /* If the status of the device is CORE_OK, the core
4436 * application has reported its application type. Call
4437 * any registered handlers now and move to the RUNNING
4438 * state.
4439 */
4440 if (atomic_read(&oct->status) != OCT_DEV_CORE_OK) {
4441 schedule_delayed_work(&oct->nic_poll_work.work,
4442 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4443 return;
4444 }
4445
4446 atomic_set(&oct->status, OCT_DEV_RUNNING);
4447
4448 if (oct->app_mode && oct->app_mode == CVM_DRV_NIC_APP) {
4449 dev_dbg(&oct->pci_dev->dev, "Starting NIC module\n");
4450
4451 if (liquidio_init_nic_module(oct))
4452 dev_err(&oct->pci_dev->dev, "NIC initialization failed\n");
4453 else
4454 handshake[oct->octeon_id].started_ok = 1;
4455 } else {
4456 dev_err(&oct->pci_dev->dev,
4457 "Unexpected application running on NIC (%d). Check firmware.\n",
4458 oct->app_mode);
4459 }
4460
4461 complete(&handshake[oct->octeon_id].started);
4462}
4463
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004464static int
4465octeon_recv_vf_drv_notice(struct octeon_recv_info *recv_info, void *buf)
4466{
4467 struct octeon_device *oct = (struct octeon_device *)buf;
4468 struct octeon_recv_pkt *recv_pkt = recv_info->recv_pkt;
4469 int i, notice, vf_idx;
Felix Manlunasbb54be52017-04-04 19:26:57 -07004470 bool cores_crashed;
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004471 u64 *data, vf_num;
4472
4473 notice = recv_pkt->rh.r.ossp;
Prasad Kannegantic4ee5d82017-06-18 05:04:11 -07004474 data = (u64 *)(get_rbd(recv_pkt->buffer_ptr[0]) + OCT_DROQ_INFO_SIZE);
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004475
4476 /* the first 64-bit word of data is the vf_num */
4477 vf_num = data[0];
4478 octeon_swap_8B_data(&vf_num, 1);
4479 vf_idx = (int)vf_num - 1;
4480
Felix Manlunasbb54be52017-04-04 19:26:57 -07004481 cores_crashed = READ_ONCE(oct->cores_crashed);
4482
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004483 if (notice == VF_DRV_LOADED) {
4484 if (!(oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx))) {
4485 oct->sriov_info.vf_drv_loaded_mask |= BIT_ULL(vf_idx);
4486 dev_info(&oct->pci_dev->dev,
4487 "driver for VF%d was loaded\n", vf_idx);
Felix Manlunasbb54be52017-04-04 19:26:57 -07004488 if (!cores_crashed)
4489 try_module_get(THIS_MODULE);
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004490 }
4491 } else if (notice == VF_DRV_REMOVED) {
4492 if (oct->sriov_info.vf_drv_loaded_mask & BIT_ULL(vf_idx)) {
4493 oct->sriov_info.vf_drv_loaded_mask &= ~BIT_ULL(vf_idx);
4494 dev_info(&oct->pci_dev->dev,
4495 "driver for VF%d was removed\n", vf_idx);
Felix Manlunasbb54be52017-04-04 19:26:57 -07004496 if (!cores_crashed)
4497 module_put(THIS_MODULE);
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004498 }
4499 } else if (notice == VF_DRV_MACADDR_CHANGED) {
4500 u8 *b = (u8 *)&data[1];
4501
4502 oct->sriov_info.vf_macaddr[vf_idx] = data[1];
4503 dev_info(&oct->pci_dev->dev,
4504 "VF driver changed VF%d's MAC address to %pM\n",
4505 vf_idx, b + 2);
4506 }
4507
4508 for (i = 0; i < recv_pkt->buffer_count; i++)
4509 recv_buffer_free(recv_pkt->buffer_ptr[i]);
4510 octeon_free_recv_info(recv_info);
4511
4512 return 0;
4513}
4514
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004515/**
4516 * \brief Device initialization for each Octeon device that is probed
4517 * @param octeon_dev octeon device
4518 */
4519static int octeon_device_init(struct octeon_device *octeon_dev)
4520{
4521 int j, ret;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004522 int fw_loaded = 0;
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004523 char bootcmd[] = "\n";
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004524 struct octeon_device_priv *oct_priv =
4525 (struct octeon_device_priv *)octeon_dev->priv;
4526 atomic_set(&octeon_dev->status, OCT_DEV_BEGIN_STATE);
4527
4528 /* Enable access to the octeon device and make its DMA capability
4529 * known to the OS.
4530 */
4531 if (octeon_pci_os_setup(octeon_dev))
4532 return 1;
4533
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004534 atomic_set(&octeon_dev->status, OCT_DEV_PCI_ENABLE_DONE);
4535
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004536 /* Identify the Octeon type and map the BAR address space. */
4537 if (octeon_chip_specific_setup(octeon_dev)) {
4538 dev_err(&octeon_dev->pci_dev->dev, "Chip specific setup failed\n");
4539 return 1;
4540 }
4541
4542 atomic_set(&octeon_dev->status, OCT_DEV_PCI_MAP_DONE);
4543
Rick Farringtone1e3ce62017-05-16 11:14:50 -07004544 /* Only add a reference after setting status 'OCT_DEV_PCI_MAP_DONE',
4545 * since that is what is required for the reference to be removed
4546 * during de-initialization (see 'octeon_destroy_resources').
4547 */
4548 octeon_register_device(octeon_dev, octeon_dev->pci_dev->bus->number,
4549 PCI_SLOT(octeon_dev->pci_dev->devfn),
4550 PCI_FUNC(octeon_dev->pci_dev->devfn),
4551 true);
4552
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004553 octeon_dev->app_mode = CVM_DRV_INVALID_APP;
4554
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004555 if (OCTEON_CN23XX_PF(octeon_dev)) {
4556 if (!cn23xx_fw_loaded(octeon_dev)) {
4557 fw_loaded = 0;
Felix Manlunas7cc61db2017-03-23 13:26:28 -07004558 if (!fw_type_is_none()) {
4559 /* Do a soft reset of the Octeon device. */
4560 if (octeon_dev->fn_list.soft_reset(octeon_dev))
4561 return 1;
4562 /* things might have changed */
4563 if (!cn23xx_fw_loaded(octeon_dev))
4564 fw_loaded = 0;
4565 else
4566 fw_loaded = 1;
4567 }
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004568 } else {
4569 fw_loaded = 1;
4570 }
4571 } else if (octeon_dev->fn_list.soft_reset(octeon_dev)) {
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004572 return 1;
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004573 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004574
4575 /* Initialize the dispatch mechanism used to push packets arriving on
4576 * Octeon Output queues.
4577 */
4578 if (octeon_init_dispatch_list(octeon_dev))
4579 return 1;
4580
4581 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4582 OPCODE_NIC_CORE_DRV_ACTIVE,
4583 octeon_core_drv_init,
4584 octeon_dev);
4585
Raghu Vatsavayi86dea552016-11-14 15:54:43 -08004586 octeon_register_dispatch_fn(octeon_dev, OPCODE_NIC,
4587 OPCODE_NIC_VF_DRV_NOTICE,
4588 octeon_recv_vf_drv_notice, octeon_dev);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004589 INIT_DELAYED_WORK(&octeon_dev->nic_poll_work.work, nic_starter);
4590 octeon_dev->nic_poll_work.ctxptr = (void *)octeon_dev;
4591 schedule_delayed_work(&octeon_dev->nic_poll_work.work,
4592 LIQUIDIO_STARTER_POLL_INTERVAL_MS);
4593
4594 atomic_set(&octeon_dev->status, OCT_DEV_DISPATCH_INIT_DONE);
4595
Raghu Vatsavayic865cdf2016-11-28 16:54:36 -08004596 if (octeon_set_io_queues_off(octeon_dev)) {
4597 dev_err(&octeon_dev->pci_dev->dev, "setting io queues off failed\n");
4598 return 1;
4599 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004600
Raghu Vatsavayi3451b972016-08-31 11:03:26 -07004601 if (OCTEON_CN23XX_PF(octeon_dev)) {
4602 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4603 if (ret) {
4604 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Failed to configure device registers\n");
4605 return ret;
4606 }
4607 }
4608
4609 /* Initialize soft command buffer pool
4610 */
4611 if (octeon_setup_sc_buffer_pool(octeon_dev)) {
4612 dev_err(&octeon_dev->pci_dev->dev, "sc buffer pool allocation failed\n");
4613 return 1;
4614 }
4615 atomic_set(&octeon_dev->status, OCT_DEV_SC_BUFF_POOL_INIT_DONE);
4616
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004617 /* Setup the data structures that manage this Octeon's Input queues. */
4618 if (octeon_setup_instr_queues(octeon_dev)) {
4619 dev_err(&octeon_dev->pci_dev->dev,
4620 "instruction queue initialization failed\n");
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004621 return 1;
4622 }
4623 atomic_set(&octeon_dev->status, OCT_DEV_INSTR_QUEUE_INIT_DONE);
4624
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004625 /* Initialize lists to manage the requests of different types that
4626 * arrive from user & kernel applications for this octeon device.
4627 */
4628 if (octeon_setup_response_list(octeon_dev)) {
4629 dev_err(&octeon_dev->pci_dev->dev, "Response list allocation failed\n");
4630 return 1;
4631 }
4632 atomic_set(&octeon_dev->status, OCT_DEV_RESP_LIST_INIT_DONE);
4633
4634 if (octeon_setup_output_queues(octeon_dev)) {
4635 dev_err(&octeon_dev->pci_dev->dev, "Output queue initialization failed\n");
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004636 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004637 }
4638
4639 atomic_set(&octeon_dev->status, OCT_DEV_DROQ_INIT_DONE);
4640
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004641 if (OCTEON_CN23XX_PF(octeon_dev)) {
Raghu Vatsavayi5d655562016-11-14 15:54:42 -08004642 if (octeon_dev->fn_list.setup_mbox(octeon_dev)) {
4643 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: Mailbox setup failed\n");
4644 return 1;
4645 }
4646 atomic_set(&octeon_dev->status, OCT_DEV_MBOX_SETUP_DONE);
4647
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004648 if (octeon_allocate_ioq_vector(octeon_dev)) {
4649 dev_err(&octeon_dev->pci_dev->dev, "OCTEON: ioq vector allocation failed\n");
4650 return 1;
4651 }
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004652 atomic_set(&octeon_dev->status, OCT_DEV_MSIX_ALLOC_VECTOR_DONE);
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004653
4654 } else {
4655 /* The input and output queue registers were setup earlier (the
4656 * queues were not enabled). Any additional registers
4657 * that need to be programmed should be done now.
4658 */
4659 ret = octeon_dev->fn_list.setup_device_regs(octeon_dev);
4660 if (ret) {
4661 dev_err(&octeon_dev->pci_dev->dev,
4662 "Failed to configure device registers\n");
4663 return ret;
4664 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004665 }
4666
4667 /* Initialize the tasklet that handles output queue packet processing.*/
4668 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing droq tasklet\n");
4669 tasklet_init(&oct_priv->droq_tasklet, octeon_droq_bh,
4670 (unsigned long)octeon_dev);
4671
4672 /* Setup the interrupt handler and record the INT SUM register address
4673 */
Raghu Vatsavayi1e0d30f2016-07-03 13:56:52 -07004674 if (octeon_setup_interrupt(octeon_dev))
4675 return 1;
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004676
4677 /* Enable Octeon device interrupts */
Raghu Vatsavayi5b07aee2016-08-31 11:03:28 -07004678 octeon_dev->fn_list.enable_interrupt(octeon_dev, OCTEON_ALL_INTR);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004679
Raghu Vatsavayi515e7522016-11-14 15:54:44 -08004680 atomic_set(&octeon_dev->status, OCT_DEV_INTR_SET_DONE);
4681
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004682 /* Enable the input and output queues for this Octeon device */
Raghu Vatsavayi1b7c55c2016-08-31 11:03:27 -07004683 ret = octeon_dev->fn_list.enable_io_queues(octeon_dev);
4684 if (ret) {
4685 dev_err(&octeon_dev->pci_dev->dev, "Failed to enable input/output queues");
4686 return ret;
4687 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004688
4689 atomic_set(&octeon_dev->status, OCT_DEV_IO_QUEUES_DONE);
4690
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004691 if ((!OCTEON_CN23XX_PF(octeon_dev)) || !fw_loaded) {
4692 dev_dbg(&octeon_dev->pci_dev->dev, "Waiting for DDR initialization...\n");
4693 if (!ddr_timeout) {
4694 dev_info(&octeon_dev->pci_dev->dev,
4695 "WAITING. Set ddr_timeout to non-zero value to proceed with initialization.\n");
4696 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004697
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004698 schedule_timeout_uninterruptible(HZ * LIO_RESET_SECS);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004699
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004700 /* Wait for the octeon to initialize DDR after the soft-reset.*/
4701 while (!ddr_timeout) {
4702 set_current_state(TASK_INTERRUPTIBLE);
4703 if (schedule_timeout(HZ / 10)) {
4704 /* user probably pressed Control-C */
4705 return 1;
4706 }
4707 }
4708 ret = octeon_wait_for_ddr_init(octeon_dev, &ddr_timeout);
4709 if (ret) {
4710 dev_err(&octeon_dev->pci_dev->dev,
4711 "DDR not initialized. Please confirm that board is configured to boot from Flash, ret: %d\n",
4712 ret);
Raghu Vatsavayi4b129ae2016-06-21 22:53:15 -07004713 return 1;
4714 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004715
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004716 if (octeon_wait_for_bootloader(octeon_dev, 1000)) {
4717 dev_err(&octeon_dev->pci_dev->dev, "Board not responding\n");
4718 return 1;
4719 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004720
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004721 /* Divert uboot to take commands from host instead. */
4722 ret = octeon_console_send_cmd(octeon_dev, bootcmd, 50);
Raghu Vatsavayid3d7e6c2016-06-21 22:53:07 -07004723
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004724 dev_dbg(&octeon_dev->pci_dev->dev, "Initializing consoles\n");
4725 ret = octeon_init_consoles(octeon_dev);
4726 if (ret) {
4727 dev_err(&octeon_dev->pci_dev->dev, "Could not access board consoles\n");
4728 return 1;
4729 }
4730 ret = octeon_add_console(octeon_dev, 0);
4731 if (ret) {
4732 dev_err(&octeon_dev->pci_dev->dev, "Could not access board console\n");
4733 return 1;
4734 }
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004735
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004736 atomic_set(&octeon_dev->status, OCT_DEV_CONSOLE_INIT_DONE);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004737
Raghu Vatsavayic0eab5b2016-08-31 11:03:29 -07004738 dev_dbg(&octeon_dev->pci_dev->dev, "Loading firmware\n");
4739 ret = load_firmware(octeon_dev);
4740 if (ret) {
4741 dev_err(&octeon_dev->pci_dev->dev, "Could not load firmware to board\n");
4742 return 1;
4743 }
4744 /* set bit 1 of SLI_SCRATCH_1 to indicate that firmware is
4745 * loaded
4746 */
4747 if (OCTEON_CN23XX_PF(octeon_dev))
4748 octeon_write_csr64(octeon_dev, CN23XX_SLI_SCRATCH1,
4749 2ULL);
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004750 }
4751
4752 handshake[octeon_dev->octeon_id].init_ok = 1;
4753 complete(&handshake[octeon_dev->octeon_id].init);
4754
4755 atomic_set(&octeon_dev->status, OCT_DEV_HOST_OK);
4756
4757 /* Send Credit for Octeon Output queues. Credits are always sent after
4758 * the output queue is enabled.
4759 */
4760 for (j = 0; j < octeon_dev->num_oqs; j++)
4761 writel(octeon_dev->droq[j]->max_count,
4762 octeon_dev->droq[j]->pkts_credit_reg);
4763
4764 /* Packets can start arriving on the output queues from this point. */
Raghu Vatsavayif21fb3e2015-06-09 18:15:23 -07004765 return 0;
4766}
4767
4768/**
4769 * \brief Exits the module
4770 */
4771static void __exit liquidio_exit(void)
4772{
4773 liquidio_deinit_pci();
4774
4775 pr_info("LiquidIO network module is now unloaded\n");
4776}
4777
4778module_init(liquidio_init);
4779module_exit(liquidio_exit);