blob: 292e2dc3f8aed601c5d2291b71b8a6b7242a5844 [file] [log] [blame]
Yuval Mintze712d522015-10-26 11:02:27 +02001/* QLogic qede NIC Driver
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02002 * Copyright (c) 2015-2017 QLogic Corporation
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and /or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
Yuval Mintze712d522015-10-26 11:02:27 +020032#include <linux/module.h>
33#include <linux/pci.h>
34#include <linux/version.h>
35#include <linux/device.h>
36#include <linux/netdevice.h>
37#include <linux/etherdevice.h>
38#include <linux/skbuff.h>
39#include <linux/errno.h>
40#include <linux/list.h>
41#include <linux/string.h>
42#include <linux/dma-mapping.h>
43#include <linux/interrupt.h>
44#include <asm/byteorder.h>
45#include <asm/param.h>
46#include <linux/io.h>
47#include <linux/netdev_features.h>
48#include <linux/udp.h>
49#include <linux/tcp.h>
Alexander Duyckf9f082a2016-06-16 12:22:57 -070050#include <net/udp_tunnel.h>
Yuval Mintze712d522015-10-26 11:02:27 +020051#include <linux/ip.h>
52#include <net/ipv6.h>
53#include <net/tcp.h>
54#include <linux/if_ether.h>
55#include <linux/if_vlan.h>
56#include <linux/pkt_sched.h>
57#include <linux/ethtool.h>
58#include <linux/in.h>
59#include <linux/random.h>
60#include <net/ip6_checksum.h>
61#include <linux/bitops.h>
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +020062#include <linux/vmalloc.h>
Ram Amranicee9fbd2016-10-01 21:59:56 +030063#include <linux/qed/qede_roce.h>
Yuval Mintze712d522015-10-26 11:02:27 +020064#include "qede.h"
Sudarsana Reddy Kalluru4c552152017-02-15 10:24:11 +020065#include "qede_ptp.h"
Yuval Mintze712d522015-10-26 11:02:27 +020066
Yuval Mintz5abd7e922016-02-24 16:52:50 +020067static char version[] =
68 "QLogic FastLinQ 4xxxx Ethernet Driver qede " DRV_MODULE_VERSION "\n";
Yuval Mintze712d522015-10-26 11:02:27 +020069
Yuval Mintz5abd7e922016-02-24 16:52:50 +020070MODULE_DESCRIPTION("QLogic FastLinQ 4xxxx Ethernet Driver");
Yuval Mintze712d522015-10-26 11:02:27 +020071MODULE_LICENSE("GPL");
72MODULE_VERSION(DRV_MODULE_VERSION);
73
74static uint debug;
75module_param(debug, uint, 0);
76MODULE_PARM_DESC(debug, " Default debug msglevel");
77
78static const struct qed_eth_ops *qed_ops;
79
80#define CHIP_NUM_57980S_40 0x1634
Yuval Mintz0e7441d2016-02-24 16:52:45 +020081#define CHIP_NUM_57980S_10 0x1666
Yuval Mintze712d522015-10-26 11:02:27 +020082#define CHIP_NUM_57980S_MF 0x1636
83#define CHIP_NUM_57980S_100 0x1644
84#define CHIP_NUM_57980S_50 0x1654
85#define CHIP_NUM_57980S_25 0x1656
Yuval Mintzfefb0202016-05-11 16:36:19 +030086#define CHIP_NUM_57980S_IOV 0x1664
Mintz, Yuval9c79dda2017-03-14 16:23:54 +020087#define CHIP_NUM_AH 0x8070
88#define CHIP_NUM_AH_IOV 0x8090
Yuval Mintze712d522015-10-26 11:02:27 +020089
90#ifndef PCI_DEVICE_ID_NX2_57980E
91#define PCI_DEVICE_ID_57980S_40 CHIP_NUM_57980S_40
92#define PCI_DEVICE_ID_57980S_10 CHIP_NUM_57980S_10
93#define PCI_DEVICE_ID_57980S_MF CHIP_NUM_57980S_MF
94#define PCI_DEVICE_ID_57980S_100 CHIP_NUM_57980S_100
95#define PCI_DEVICE_ID_57980S_50 CHIP_NUM_57980S_50
96#define PCI_DEVICE_ID_57980S_25 CHIP_NUM_57980S_25
Yuval Mintzfefb0202016-05-11 16:36:19 +030097#define PCI_DEVICE_ID_57980S_IOV CHIP_NUM_57980S_IOV
Mintz, Yuval9c79dda2017-03-14 16:23:54 +020098#define PCI_DEVICE_ID_AH CHIP_NUM_AH
99#define PCI_DEVICE_ID_AH_IOV CHIP_NUM_AH_IOV
100
Yuval Mintze712d522015-10-26 11:02:27 +0200101#endif
102
Yuval Mintzfefb0202016-05-11 16:36:19 +0300103enum qede_pci_private {
104 QEDE_PRIVATE_PF,
105 QEDE_PRIVATE_VF
106};
107
Yuval Mintze712d522015-10-26 11:02:27 +0200108static const struct pci_device_id qede_pci_tbl[] = {
Yuval Mintzfefb0202016-05-11 16:36:19 +0300109 {PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_40), QEDE_PRIVATE_PF},
110 {PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_10), QEDE_PRIVATE_PF},
111 {PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_MF), QEDE_PRIVATE_PF},
112 {PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_100), QEDE_PRIVATE_PF},
113 {PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_50), QEDE_PRIVATE_PF},
114 {PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_25), QEDE_PRIVATE_PF},
Arnd Bergmann14b84e82016-06-01 15:29:13 +0200115#ifdef CONFIG_QED_SRIOV
Yuval Mintzfefb0202016-05-11 16:36:19 +0300116 {PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_57980S_IOV), QEDE_PRIVATE_VF},
Arnd Bergmann14b84e82016-06-01 15:29:13 +0200117#endif
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200118 {PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_AH), QEDE_PRIVATE_PF},
119#ifdef CONFIG_QED_SRIOV
120 {PCI_VDEVICE(QLOGIC, PCI_DEVICE_ID_AH_IOV), QEDE_PRIVATE_VF},
121#endif
Yuval Mintze712d522015-10-26 11:02:27 +0200122 { 0 }
123};
124
125MODULE_DEVICE_TABLE(pci, qede_pci_tbl);
126
127static int qede_probe(struct pci_dev *pdev, const struct pci_device_id *id);
128
129#define TX_TIMEOUT (5 * HZ)
130
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +0200131/* Utilize last protocol index for XDP */
132#define XDP_PI 11
133
Yuval Mintze712d522015-10-26 11:02:27 +0200134static void qede_remove(struct pci_dev *pdev);
Mintz, Yuval14d39642016-10-31 07:14:23 +0200135static void qede_shutdown(struct pci_dev *pdev);
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +0200136static void qede_link_update(void *dev, struct qed_link_output *link);
Yuval Mintze712d522015-10-26 11:02:27 +0200137
Mintz, Yuval567b3c12016-11-29 16:47:05 +0200138/* The qede lock is used to protect driver state change and driver flows that
139 * are not reentrant.
140 */
141void __qede_lock(struct qede_dev *edev)
142{
143 mutex_lock(&edev->qede_lock);
144}
145
146void __qede_unlock(struct qede_dev *edev)
147{
148 mutex_unlock(&edev->qede_lock);
149}
150
Yuval Mintzfefb0202016-05-11 16:36:19 +0300151#ifdef CONFIG_QED_SRIOV
Moshe Shemesh79aab092016-09-22 12:11:15 +0300152static int qede_set_vf_vlan(struct net_device *ndev, int vf, u16 vlan, u8 qos,
153 __be16 vlan_proto)
Yuval Mintz08feecd2016-05-11 16:36:20 +0300154{
155 struct qede_dev *edev = netdev_priv(ndev);
156
157 if (vlan > 4095) {
158 DP_NOTICE(edev, "Illegal vlan value %d\n", vlan);
159 return -EINVAL;
160 }
161
Moshe Shemesh79aab092016-09-22 12:11:15 +0300162 if (vlan_proto != htons(ETH_P_8021Q))
163 return -EPROTONOSUPPORT;
164
Yuval Mintz08feecd2016-05-11 16:36:20 +0300165 DP_VERBOSE(edev, QED_MSG_IOV, "Setting Vlan 0x%04x to VF [%d]\n",
166 vlan, vf);
167
168 return edev->ops->iov->set_vlan(edev->cdev, vlan, vf);
169}
170
Yuval Mintzeff16962016-05-11 16:36:21 +0300171static int qede_set_vf_mac(struct net_device *ndev, int vfidx, u8 *mac)
172{
173 struct qede_dev *edev = netdev_priv(ndev);
174
175 DP_VERBOSE(edev, QED_MSG_IOV,
176 "Setting MAC %02x:%02x:%02x:%02x:%02x:%02x to VF [%d]\n",
177 mac[0], mac[1], mac[2], mac[3], mac[4], mac[5], vfidx);
178
179 if (!is_valid_ether_addr(mac)) {
180 DP_VERBOSE(edev, QED_MSG_IOV, "MAC address isn't valid\n");
181 return -EINVAL;
182 }
183
184 return edev->ops->iov->set_mac(edev->cdev, mac, vfidx);
185}
186
Yuval Mintzfefb0202016-05-11 16:36:19 +0300187static int qede_sriov_configure(struct pci_dev *pdev, int num_vfs_param)
188{
189 struct qede_dev *edev = netdev_priv(pci_get_drvdata(pdev));
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300190 struct qed_dev_info *qed_info = &edev->dev_info.common;
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200191 struct qed_update_vport_params *vport_params;
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300192 int rc;
Yuval Mintzfefb0202016-05-11 16:36:19 +0300193
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200194 vport_params = vzalloc(sizeof(*vport_params));
195 if (!vport_params)
196 return -ENOMEM;
Yuval Mintzfefb0202016-05-11 16:36:19 +0300197 DP_VERBOSE(edev, QED_MSG_IOV, "Requested %d VFs\n", num_vfs_param);
198
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300199 rc = edev->ops->iov->configure(edev->cdev, num_vfs_param);
200
201 /* Enable/Disable Tx switching for PF */
202 if ((rc == num_vfs_param) && netif_running(edev->ndev) &&
203 qed_info->mf_mode != QED_MF_NPAR && qed_info->tx_switching) {
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200204 vport_params->vport_id = 0;
205 vport_params->update_tx_switching_flg = 1;
206 vport_params->tx_switching_flg = num_vfs_param ? 1 : 0;
207 edev->ops->vport_update(edev->cdev, vport_params);
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300208 }
209
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200210 vfree(vport_params);
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300211 return rc;
Yuval Mintzfefb0202016-05-11 16:36:19 +0300212}
213#endif
214
Yuval Mintze712d522015-10-26 11:02:27 +0200215static struct pci_driver qede_pci_driver = {
216 .name = "qede",
217 .id_table = qede_pci_tbl,
218 .probe = qede_probe,
219 .remove = qede_remove,
Mintz, Yuval14d39642016-10-31 07:14:23 +0200220 .shutdown = qede_shutdown,
Yuval Mintzfefb0202016-05-11 16:36:19 +0300221#ifdef CONFIG_QED_SRIOV
222 .sriov_configure = qede_sriov_configure,
223#endif
Yuval Mintze712d522015-10-26 11:02:27 +0200224};
225
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +0200226static struct qed_eth_cb_ops qede_ll_ops = {
227 {
Chopra, Manishe4917d42017-04-13 04:54:45 -0700228#ifdef CONFIG_RFS_ACCEL
229 .arfs_filter_op = qede_arfs_filter_op,
230#endif
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +0200231 .link_update = qede_link_update,
232 },
Yuval Mintzeff16962016-05-11 16:36:21 +0300233 .force_mac = qede_force_mac,
Chopra, Manish97379f12017-04-24 10:00:48 -0700234 .ports_update = qede_udp_ports_update,
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +0200235};
236
Yuval Mintz29502192015-10-26 11:02:29 +0200237static int qede_netdev_event(struct notifier_block *this, unsigned long event,
238 void *ptr)
239{
240 struct net_device *ndev = netdev_notifier_info_to_dev(ptr);
241 struct ethtool_drvinfo drvinfo;
242 struct qede_dev *edev;
243
Ram Amranicee9fbd2016-10-01 21:59:56 +0300244 if (event != NETDEV_CHANGENAME && event != NETDEV_CHANGEADDR)
Yuval Mintz29502192015-10-26 11:02:29 +0200245 goto done;
246
247 /* Check whether this is a qede device */
248 if (!ndev || !ndev->ethtool_ops || !ndev->ethtool_ops->get_drvinfo)
249 goto done;
250
251 memset(&drvinfo, 0, sizeof(drvinfo));
252 ndev->ethtool_ops->get_drvinfo(ndev, &drvinfo);
253 if (strcmp(drvinfo.driver, "qede"))
254 goto done;
255 edev = netdev_priv(ndev);
256
Ram Amranicee9fbd2016-10-01 21:59:56 +0300257 switch (event) {
258 case NETDEV_CHANGENAME:
259 /* Notify qed of the name change */
260 if (!edev->ops || !edev->ops->common)
261 goto done;
262 edev->ops->common->set_id(edev->cdev, edev->ndev->name, "qede");
263 break;
264 case NETDEV_CHANGEADDR:
265 edev = netdev_priv(ndev);
266 qede_roce_event_changeaddr(edev);
267 break;
268 }
Yuval Mintz29502192015-10-26 11:02:29 +0200269
270done:
271 return NOTIFY_DONE;
272}
273
274static struct notifier_block qede_netdev_notifier = {
275 .notifier_call = qede_netdev_event,
276};
277
Yuval Mintze712d522015-10-26 11:02:27 +0200278static
279int __init qede_init(void)
280{
281 int ret;
Yuval Mintze712d522015-10-26 11:02:27 +0200282
Yuval Mintz525ef5c2016-08-15 10:42:45 +0300283 pr_info("qede_init: %s\n", version);
Yuval Mintze712d522015-10-26 11:02:27 +0200284
Rahul Verma95114342016-04-10 12:42:59 +0300285 qed_ops = qed_get_eth_ops();
Yuval Mintze712d522015-10-26 11:02:27 +0200286 if (!qed_ops) {
287 pr_notice("Failed to get qed ethtool operations\n");
288 return -EINVAL;
289 }
290
Yuval Mintz29502192015-10-26 11:02:29 +0200291 /* Must register notifier before pci ops, since we might miss
292 * interface rename after pci probe and netdev registeration.
293 */
294 ret = register_netdevice_notifier(&qede_netdev_notifier);
295 if (ret) {
296 pr_notice("Failed to register netdevice_notifier\n");
297 qed_put_eth_ops();
298 return -EINVAL;
299 }
300
Yuval Mintze712d522015-10-26 11:02:27 +0200301 ret = pci_register_driver(&qede_pci_driver);
302 if (ret) {
303 pr_notice("Failed to register driver\n");
Yuval Mintz29502192015-10-26 11:02:29 +0200304 unregister_netdevice_notifier(&qede_netdev_notifier);
Yuval Mintze712d522015-10-26 11:02:27 +0200305 qed_put_eth_ops();
306 return -EINVAL;
307 }
308
309 return 0;
310}
311
312static void __exit qede_cleanup(void)
313{
Yuval Mintz525ef5c2016-08-15 10:42:45 +0300314 if (debug & QED_LOG_INFO_MASK)
315 pr_info("qede_cleanup called\n");
Yuval Mintze712d522015-10-26 11:02:27 +0200316
Yuval Mintz29502192015-10-26 11:02:29 +0200317 unregister_netdevice_notifier(&qede_netdev_notifier);
Yuval Mintze712d522015-10-26 11:02:27 +0200318 pci_unregister_driver(&qede_pci_driver);
319 qed_put_eth_ops();
320}
321
322module_init(qede_init);
323module_exit(qede_cleanup);
324
Yuval Mintz29502192015-10-26 11:02:29 +0200325static int qede_open(struct net_device *ndev);
326static int qede_close(struct net_device *ndev);
Sudarsana Reddy Kalluru7c1bfca2016-02-18 17:00:40 +0200327
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200328void qede_fill_by_demand_stats(struct qede_dev *edev)
329{
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200330 struct qede_stats_common *p_common = &edev->stats.common;
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200331 struct qed_eth_stats stats;
332
333 edev->ops->get_vport_stats(edev->cdev, &stats);
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200334
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200335 p_common->no_buff_discards = stats.common.no_buff_discards;
336 p_common->packet_too_big_discard = stats.common.packet_too_big_discard;
337 p_common->ttl0_discard = stats.common.ttl0_discard;
338 p_common->rx_ucast_bytes = stats.common.rx_ucast_bytes;
339 p_common->rx_mcast_bytes = stats.common.rx_mcast_bytes;
340 p_common->rx_bcast_bytes = stats.common.rx_bcast_bytes;
341 p_common->rx_ucast_pkts = stats.common.rx_ucast_pkts;
342 p_common->rx_mcast_pkts = stats.common.rx_mcast_pkts;
343 p_common->rx_bcast_pkts = stats.common.rx_bcast_pkts;
344 p_common->mftag_filter_discards = stats.common.mftag_filter_discards;
345 p_common->mac_filter_discards = stats.common.mac_filter_discards;
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200346
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200347 p_common->tx_ucast_bytes = stats.common.tx_ucast_bytes;
348 p_common->tx_mcast_bytes = stats.common.tx_mcast_bytes;
349 p_common->tx_bcast_bytes = stats.common.tx_bcast_bytes;
350 p_common->tx_ucast_pkts = stats.common.tx_ucast_pkts;
351 p_common->tx_mcast_pkts = stats.common.tx_mcast_pkts;
352 p_common->tx_bcast_pkts = stats.common.tx_bcast_pkts;
353 p_common->tx_err_drop_pkts = stats.common.tx_err_drop_pkts;
354 p_common->coalesced_pkts = stats.common.tpa_coalesced_pkts;
355 p_common->coalesced_events = stats.common.tpa_coalesced_events;
356 p_common->coalesced_aborts_num = stats.common.tpa_aborts_num;
357 p_common->non_coalesced_pkts = stats.common.tpa_not_coalesced_pkts;
358 p_common->coalesced_bytes = stats.common.tpa_coalesced_bytes;
359
360 p_common->rx_64_byte_packets = stats.common.rx_64_byte_packets;
361 p_common->rx_65_to_127_byte_packets =
362 stats.common.rx_65_to_127_byte_packets;
363 p_common->rx_128_to_255_byte_packets =
364 stats.common.rx_128_to_255_byte_packets;
365 p_common->rx_256_to_511_byte_packets =
366 stats.common.rx_256_to_511_byte_packets;
367 p_common->rx_512_to_1023_byte_packets =
368 stats.common.rx_512_to_1023_byte_packets;
369 p_common->rx_1024_to_1518_byte_packets =
370 stats.common.rx_1024_to_1518_byte_packets;
371 p_common->rx_crc_errors = stats.common.rx_crc_errors;
372 p_common->rx_mac_crtl_frames = stats.common.rx_mac_crtl_frames;
373 p_common->rx_pause_frames = stats.common.rx_pause_frames;
374 p_common->rx_pfc_frames = stats.common.rx_pfc_frames;
375 p_common->rx_align_errors = stats.common.rx_align_errors;
376 p_common->rx_carrier_errors = stats.common.rx_carrier_errors;
377 p_common->rx_oversize_packets = stats.common.rx_oversize_packets;
378 p_common->rx_jabbers = stats.common.rx_jabbers;
379 p_common->rx_undersize_packets = stats.common.rx_undersize_packets;
380 p_common->rx_fragments = stats.common.rx_fragments;
381 p_common->tx_64_byte_packets = stats.common.tx_64_byte_packets;
382 p_common->tx_65_to_127_byte_packets =
383 stats.common.tx_65_to_127_byte_packets;
384 p_common->tx_128_to_255_byte_packets =
385 stats.common.tx_128_to_255_byte_packets;
386 p_common->tx_256_to_511_byte_packets =
387 stats.common.tx_256_to_511_byte_packets;
388 p_common->tx_512_to_1023_byte_packets =
389 stats.common.tx_512_to_1023_byte_packets;
390 p_common->tx_1024_to_1518_byte_packets =
391 stats.common.tx_1024_to_1518_byte_packets;
392 p_common->tx_pause_frames = stats.common.tx_pause_frames;
393 p_common->tx_pfc_frames = stats.common.tx_pfc_frames;
394 p_common->brb_truncates = stats.common.brb_truncates;
395 p_common->brb_discards = stats.common.brb_discards;
396 p_common->tx_mac_ctrl_frames = stats.common.tx_mac_ctrl_frames;
397
398 if (QEDE_IS_BB(edev)) {
399 struct qede_stats_bb *p_bb = &edev->stats.bb;
400
401 p_bb->rx_1519_to_1522_byte_packets =
402 stats.bb.rx_1519_to_1522_byte_packets;
403 p_bb->rx_1519_to_2047_byte_packets =
404 stats.bb.rx_1519_to_2047_byte_packets;
405 p_bb->rx_2048_to_4095_byte_packets =
406 stats.bb.rx_2048_to_4095_byte_packets;
407 p_bb->rx_4096_to_9216_byte_packets =
408 stats.bb.rx_4096_to_9216_byte_packets;
409 p_bb->rx_9217_to_16383_byte_packets =
410 stats.bb.rx_9217_to_16383_byte_packets;
411 p_bb->tx_1519_to_2047_byte_packets =
412 stats.bb.tx_1519_to_2047_byte_packets;
413 p_bb->tx_2048_to_4095_byte_packets =
414 stats.bb.tx_2048_to_4095_byte_packets;
415 p_bb->tx_4096_to_9216_byte_packets =
416 stats.bb.tx_4096_to_9216_byte_packets;
417 p_bb->tx_9217_to_16383_byte_packets =
418 stats.bb.tx_9217_to_16383_byte_packets;
419 p_bb->tx_lpi_entry_count = stats.bb.tx_lpi_entry_count;
420 p_bb->tx_total_collisions = stats.bb.tx_total_collisions;
421 } else {
422 struct qede_stats_ah *p_ah = &edev->stats.ah;
423
424 p_ah->rx_1519_to_max_byte_packets =
425 stats.ah.rx_1519_to_max_byte_packets;
426 p_ah->tx_1519_to_max_byte_packets =
427 stats.ah.tx_1519_to_max_byte_packets;
428 }
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200429}
430
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800431static void qede_get_stats64(struct net_device *dev,
432 struct rtnl_link_stats64 *stats)
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200433{
434 struct qede_dev *edev = netdev_priv(dev);
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200435 struct qede_stats_common *p_common;
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200436
437 qede_fill_by_demand_stats(edev);
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200438 p_common = &edev->stats.common;
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200439
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200440 stats->rx_packets = p_common->rx_ucast_pkts + p_common->rx_mcast_pkts +
441 p_common->rx_bcast_pkts;
442 stats->tx_packets = p_common->tx_ucast_pkts + p_common->tx_mcast_pkts +
443 p_common->tx_bcast_pkts;
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200444
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200445 stats->rx_bytes = p_common->rx_ucast_bytes + p_common->rx_mcast_bytes +
446 p_common->rx_bcast_bytes;
447 stats->tx_bytes = p_common->tx_ucast_bytes + p_common->tx_mcast_bytes +
448 p_common->tx_bcast_bytes;
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200449
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200450 stats->tx_errors = p_common->tx_err_drop_pkts;
451 stats->multicast = p_common->rx_mcast_pkts + p_common->rx_bcast_pkts;
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200452
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200453 stats->rx_fifo_errors = p_common->no_buff_discards;
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200454
Mintz, Yuval9c79dda2017-03-14 16:23:54 +0200455 if (QEDE_IS_BB(edev))
456 stats->collisions = edev->stats.bb.tx_total_collisions;
457 stats->rx_crc_errors = p_common->rx_crc_errors;
458 stats->rx_frame_errors = p_common->rx_align_errors;
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200459}
460
Yuval Mintz733def62016-05-11 16:36:22 +0300461#ifdef CONFIG_QED_SRIOV
Yuval Mintz73390ac2016-05-11 16:36:24 +0300462static int qede_get_vf_config(struct net_device *dev, int vfidx,
463 struct ifla_vf_info *ivi)
464{
465 struct qede_dev *edev = netdev_priv(dev);
466
467 if (!edev->ops)
468 return -EINVAL;
469
470 return edev->ops->iov->get_config(edev->cdev, vfidx, ivi);
471}
472
Yuval Mintz733def62016-05-11 16:36:22 +0300473static int qede_set_vf_rate(struct net_device *dev, int vfidx,
474 int min_tx_rate, int max_tx_rate)
475{
476 struct qede_dev *edev = netdev_priv(dev);
477
Yuval Mintzbe7b6d62016-05-26 11:01:17 +0300478 return edev->ops->iov->set_rate(edev->cdev, vfidx, min_tx_rate,
Yuval Mintz733def62016-05-11 16:36:22 +0300479 max_tx_rate);
480}
481
Yuval Mintz6ddc7602016-05-11 16:36:23 +0300482static int qede_set_vf_spoofchk(struct net_device *dev, int vfidx, bool val)
483{
484 struct qede_dev *edev = netdev_priv(dev);
485
486 if (!edev->ops)
487 return -EINVAL;
488
489 return edev->ops->iov->set_spoof(edev->cdev, vfidx, val);
490}
491
Yuval Mintz733def62016-05-11 16:36:22 +0300492static int qede_set_vf_link_state(struct net_device *dev, int vfidx,
493 int link_state)
494{
495 struct qede_dev *edev = netdev_priv(dev);
496
497 if (!edev->ops)
498 return -EINVAL;
499
500 return edev->ops->iov->set_link_state(edev->cdev, vfidx, link_state);
501}
Mintz, Yuvalf990c822017-01-01 13:57:08 +0200502
503static int qede_set_vf_trust(struct net_device *dev, int vfidx, bool setting)
504{
505 struct qede_dev *edev = netdev_priv(dev);
506
507 if (!edev->ops)
508 return -EINVAL;
509
510 return edev->ops->iov->set_trust(edev->cdev, vfidx, setting);
511}
Yuval Mintz733def62016-05-11 16:36:22 +0300512#endif
513
Sudarsana Reddy Kalluru4c552152017-02-15 10:24:11 +0200514static int qede_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
515{
516 struct qede_dev *edev = netdev_priv(dev);
517
518 if (!netif_running(dev))
519 return -EAGAIN;
520
521 switch (cmd) {
522 case SIOCSHWTSTAMP:
523 return qede_ptp_hw_ts(edev, ifr);
524 default:
525 DP_VERBOSE(edev, QED_MSG_DEBUG,
526 "default IOCTL cmd 0x%x\n", cmd);
527 return -EOPNOTSUPP;
528 }
529
530 return 0;
531}
532
Yuval Mintz29502192015-10-26 11:02:29 +0200533static const struct net_device_ops qede_netdev_ops = {
534 .ndo_open = qede_open,
535 .ndo_stop = qede_close,
536 .ndo_start_xmit = qede_start_xmit,
Sudarsana Kalluru0d8e0aa2015-10-26 11:02:30 +0200537 .ndo_set_rx_mode = qede_set_rx_mode,
538 .ndo_set_mac_address = qede_set_mac_addr,
Yuval Mintz29502192015-10-26 11:02:29 +0200539 .ndo_validate_addr = eth_validate_addr,
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200540 .ndo_change_mtu = qede_change_mtu,
Sudarsana Reddy Kalluru4c552152017-02-15 10:24:11 +0200541 .ndo_do_ioctl = qede_ioctl,
Yuval Mintz08feecd2016-05-11 16:36:20 +0300542#ifdef CONFIG_QED_SRIOV
Yuval Mintzeff16962016-05-11 16:36:21 +0300543 .ndo_set_vf_mac = qede_set_vf_mac,
Yuval Mintz08feecd2016-05-11 16:36:20 +0300544 .ndo_set_vf_vlan = qede_set_vf_vlan,
Mintz, Yuvalf990c822017-01-01 13:57:08 +0200545 .ndo_set_vf_trust = qede_set_vf_trust,
Yuval Mintz08feecd2016-05-11 16:36:20 +0300546#endif
Sudarsana Reddy Kalluru7c1bfca2016-02-18 17:00:40 +0200547 .ndo_vlan_rx_add_vid = qede_vlan_rx_add_vid,
548 .ndo_vlan_rx_kill_vid = qede_vlan_rx_kill_vid,
Yuval Mintzce2b8852016-05-26 11:01:18 +0300549 .ndo_set_features = qede_set_features,
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200550 .ndo_get_stats64 = qede_get_stats64,
Yuval Mintz733def62016-05-11 16:36:22 +0300551#ifdef CONFIG_QED_SRIOV
552 .ndo_set_vf_link_state = qede_set_vf_link_state,
Yuval Mintz6ddc7602016-05-11 16:36:23 +0300553 .ndo_set_vf_spoofchk = qede_set_vf_spoofchk,
Yuval Mintz73390ac2016-05-11 16:36:24 +0300554 .ndo_get_vf_config = qede_get_vf_config,
Yuval Mintz733def62016-05-11 16:36:22 +0300555 .ndo_set_vf_rate = qede_set_vf_rate,
556#endif
Alexander Duyckf9f082a2016-06-16 12:22:57 -0700557 .ndo_udp_tunnel_add = qede_udp_tunnel_add,
558 .ndo_udp_tunnel_del = qede_udp_tunnel_del,
Manish Chopra25695852016-10-14 05:19:19 -0400559 .ndo_features_check = qede_features_check,
Mintz, Yuval496e0512016-11-29 16:47:09 +0200560 .ndo_xdp = qede_xdp,
Chopra, Manishe4917d42017-04-13 04:54:45 -0700561#ifdef CONFIG_RFS_ACCEL
562 .ndo_rx_flow_steer = qede_rx_flow_steer,
563#endif
Yuval Mintz29502192015-10-26 11:02:29 +0200564};
565
566/* -------------------------------------------------------------------------
Yuval Mintze712d522015-10-26 11:02:27 +0200567 * START OF PROBE / REMOVE
568 * -------------------------------------------------------------------------
569 */
570
571static struct qede_dev *qede_alloc_etherdev(struct qed_dev *cdev,
572 struct pci_dev *pdev,
573 struct qed_dev_eth_info *info,
Yuval Mintz1a635e42016-08-15 10:42:43 +0300574 u32 dp_module, u8 dp_level)
Yuval Mintze712d522015-10-26 11:02:27 +0200575{
576 struct net_device *ndev;
577 struct qede_dev *edev;
578
579 ndev = alloc_etherdev_mqs(sizeof(*edev),
Yuval Mintz1a635e42016-08-15 10:42:43 +0300580 info->num_queues, info->num_queues);
Yuval Mintze712d522015-10-26 11:02:27 +0200581 if (!ndev) {
582 pr_err("etherdev allocation failed\n");
583 return NULL;
584 }
585
586 edev = netdev_priv(ndev);
587 edev->ndev = ndev;
588 edev->cdev = cdev;
589 edev->pdev = pdev;
590 edev->dp_module = dp_module;
591 edev->dp_level = dp_level;
592 edev->ops = qed_ops;
Yuval Mintz29502192015-10-26 11:02:29 +0200593 edev->q_num_rx_buffers = NUM_RX_BDS_DEF;
594 edev->q_num_tx_buffers = NUM_TX_BDS_DEF;
Yuval Mintze712d522015-10-26 11:02:27 +0200595
Yuval Mintz525ef5c2016-08-15 10:42:45 +0300596 DP_INFO(edev, "Allocated netdev with %d tx queues and %d rx queues\n",
597 info->num_queues, info->num_queues);
598
Yuval Mintze712d522015-10-26 11:02:27 +0200599 SET_NETDEV_DEV(ndev, &pdev->dev);
600
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200601 memset(&edev->stats, 0, sizeof(edev->stats));
Yuval Mintze712d522015-10-26 11:02:27 +0200602 memcpy(&edev->dev_info, info, sizeof(*info));
603
Sudarsana Reddy Kalluru7c1bfca2016-02-18 17:00:40 +0200604 INIT_LIST_HEAD(&edev->vlan_list);
605
Yuval Mintze712d522015-10-26 11:02:27 +0200606 return edev;
607}
608
609static void qede_init_ndev(struct qede_dev *edev)
610{
611 struct net_device *ndev = edev->ndev;
612 struct pci_dev *pdev = edev->pdev;
Chopra, Manish19489c72017-04-24 10:00:45 -0700613 bool udp_tunnel_enable = false;
Chopra, Manishe4917d42017-04-13 04:54:45 -0700614 netdev_features_t hw_features;
Yuval Mintze712d522015-10-26 11:02:27 +0200615
616 pci_set_drvdata(pdev, ndev);
617
618 ndev->mem_start = edev->dev_info.common.pci_mem_start;
619 ndev->base_addr = ndev->mem_start;
620 ndev->mem_end = edev->dev_info.common.pci_mem_end;
621 ndev->irq = edev->dev_info.common.pci_irq;
622
623 ndev->watchdog_timeo = TX_TIMEOUT;
624
Yuval Mintz29502192015-10-26 11:02:29 +0200625 ndev->netdev_ops = &qede_netdev_ops;
626
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200627 qede_set_ethtool_ops(ndev);
628
Mintz, Yuval0183eb12016-10-31 22:26:53 +0200629 ndev->priv_flags |= IFF_UNICAST_FLT;
Yuval Mintz7b7e70f2016-10-14 05:19:20 -0400630
Yuval Mintze712d522015-10-26 11:02:27 +0200631 /* user-changeble features */
632 hw_features = NETIF_F_GRO | NETIF_F_SG |
633 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
634 NETIF_F_TSO | NETIF_F_TSO6;
635
Chopra, Manishe4917d42017-04-13 04:54:45 -0700636 if (!IS_VF(edev) && edev->dev_info.common.num_hwfns == 1)
637 hw_features |= NETIF_F_NTUPLE;
638
Chopra, Manish19489c72017-04-24 10:00:45 -0700639 if (edev->dev_info.common.vxlan_enable ||
640 edev->dev_info.common.geneve_enable)
641 udp_tunnel_enable = true;
642
643 if (udp_tunnel_enable || edev->dev_info.common.gre_enable) {
644 hw_features |= NETIF_F_TSO_ECN;
645 ndev->hw_enc_features = NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
646 NETIF_F_SG | NETIF_F_TSO |
647 NETIF_F_TSO_ECN | NETIF_F_TSO6 |
648 NETIF_F_RXCSUM;
649 }
650
651 if (udp_tunnel_enable) {
652 hw_features |= (NETIF_F_GSO_UDP_TUNNEL |
653 NETIF_F_GSO_UDP_TUNNEL_CSUM);
654 ndev->hw_enc_features |= (NETIF_F_GSO_UDP_TUNNEL |
655 NETIF_F_GSO_UDP_TUNNEL_CSUM);
656 }
657
658 if (edev->dev_info.common.gre_enable) {
659 hw_features |= (NETIF_F_GSO_GRE | NETIF_F_GSO_GRE_CSUM);
660 ndev->hw_enc_features |= (NETIF_F_GSO_GRE |
661 NETIF_F_GSO_GRE_CSUM);
662 }
Manish Chopra14db81d2016-04-14 01:38:33 -0400663
Yuval Mintze712d522015-10-26 11:02:27 +0200664 ndev->vlan_features = hw_features | NETIF_F_RXHASH | NETIF_F_RXCSUM |
665 NETIF_F_HIGHDMA;
666 ndev->features = hw_features | NETIF_F_RXHASH | NETIF_F_RXCSUM |
667 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_HIGHDMA |
Sudarsana Reddy Kalluru7c1bfca2016-02-18 17:00:40 +0200668 NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_TX;
Yuval Mintze712d522015-10-26 11:02:27 +0200669
670 ndev->hw_features = hw_features;
671
Jarod Wilsoncaff2a82016-10-17 15:54:08 -0400672 /* MTU range: 46 - 9600 */
673 ndev->min_mtu = ETH_ZLEN - ETH_HLEN;
674 ndev->max_mtu = QEDE_MAX_JUMBO_PACKET_SIZE;
675
Yuval Mintze712d522015-10-26 11:02:27 +0200676 /* Set network device HW mac */
677 ether_addr_copy(edev->ndev->dev_addr, edev->dev_info.common.hw_mac);
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +0200678
679 ndev->mtu = edev->dev_info.common.mtu;
Yuval Mintze712d522015-10-26 11:02:27 +0200680}
681
682/* This function converts from 32b param to two params of level and module
683 * Input 32b decoding:
684 * b31 - enable all NOTICE prints. NOTICE prints are for deviation from the
685 * 'happy' flow, e.g. memory allocation failed.
686 * b30 - enable all INFO prints. INFO prints are for major steps in the flow
687 * and provide important parameters.
688 * b29-b0 - per-module bitmap, where each bit enables VERBOSE prints of that
689 * module. VERBOSE prints are for tracking the specific flow in low level.
690 *
691 * Notice that the level should be that of the lowest required logs.
692 */
Sudarsana Kalluru133fac02015-10-26 11:02:34 +0200693void qede_config_debug(uint debug, u32 *p_dp_module, u8 *p_dp_level)
Yuval Mintze712d522015-10-26 11:02:27 +0200694{
695 *p_dp_level = QED_LEVEL_NOTICE;
696 *p_dp_module = 0;
697
698 if (debug & QED_LOG_VERBOSE_MASK) {
699 *p_dp_level = QED_LEVEL_VERBOSE;
700 *p_dp_module = (debug & 0x3FFFFFFF);
701 } else if (debug & QED_LOG_INFO_MASK) {
702 *p_dp_level = QED_LEVEL_INFO;
703 } else if (debug & QED_LOG_NOTICE_MASK) {
704 *p_dp_level = QED_LEVEL_NOTICE;
705 }
706}
707
Yuval Mintz29502192015-10-26 11:02:29 +0200708static void qede_free_fp_array(struct qede_dev *edev)
709{
710 if (edev->fp_array) {
711 struct qede_fastpath *fp;
712 int i;
713
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400714 for_each_queue(i) {
Yuval Mintz29502192015-10-26 11:02:29 +0200715 fp = &edev->fp_array[i];
716
717 kfree(fp->sb_info);
718 kfree(fp->rxq);
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +0200719 kfree(fp->xdp_tx);
Mintz, Yuval80439a12016-11-29 16:47:02 +0200720 kfree(fp->txq);
Yuval Mintz29502192015-10-26 11:02:29 +0200721 }
722 kfree(edev->fp_array);
723 }
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400724
725 edev->num_queues = 0;
726 edev->fp_num_tx = 0;
727 edev->fp_num_rx = 0;
Yuval Mintz29502192015-10-26 11:02:29 +0200728}
729
730static int qede_alloc_fp_array(struct qede_dev *edev)
731{
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400732 u8 fp_combined, fp_rx = edev->fp_num_rx;
Yuval Mintz29502192015-10-26 11:02:29 +0200733 struct qede_fastpath *fp;
734 int i;
735
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400736 edev->fp_array = kcalloc(QEDE_QUEUE_CNT(edev),
Yuval Mintz29502192015-10-26 11:02:29 +0200737 sizeof(*edev->fp_array), GFP_KERNEL);
738 if (!edev->fp_array) {
739 DP_NOTICE(edev, "fp array allocation failed\n");
740 goto err;
741 }
742
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400743 fp_combined = QEDE_QUEUE_CNT(edev) - fp_rx - edev->fp_num_tx;
744
745 /* Allocate the FP elements for Rx queues followed by combined and then
746 * the Tx. This ordering should be maintained so that the respective
747 * queues (Rx or Tx) will be together in the fastpath array and the
748 * associated ids will be sequential.
749 */
750 for_each_queue(i) {
Yuval Mintz29502192015-10-26 11:02:29 +0200751 fp = &edev->fp_array[i];
752
Mintz, Yuval80439a12016-11-29 16:47:02 +0200753 fp->sb_info = kzalloc(sizeof(*fp->sb_info), GFP_KERNEL);
Yuval Mintz29502192015-10-26 11:02:29 +0200754 if (!fp->sb_info) {
755 DP_NOTICE(edev, "sb info struct allocation failed\n");
756 goto err;
757 }
758
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400759 if (fp_rx) {
760 fp->type = QEDE_FASTPATH_RX;
761 fp_rx--;
762 } else if (fp_combined) {
763 fp->type = QEDE_FASTPATH_COMBINED;
764 fp_combined--;
765 } else {
766 fp->type = QEDE_FASTPATH_TX;
Yuval Mintz29502192015-10-26 11:02:29 +0200767 }
768
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400769 if (fp->type & QEDE_FASTPATH_TX) {
Mintz, Yuval80439a12016-11-29 16:47:02 +0200770 fp->txq = kzalloc(sizeof(*fp->txq), GFP_KERNEL);
771 if (!fp->txq)
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400772 goto err;
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400773 }
774
775 if (fp->type & QEDE_FASTPATH_RX) {
Mintz, Yuval80439a12016-11-29 16:47:02 +0200776 fp->rxq = kzalloc(sizeof(*fp->rxq), GFP_KERNEL);
777 if (!fp->rxq)
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -0400778 goto err;
Mintz, Yuval496e0512016-11-29 16:47:09 +0200779
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +0200780 if (edev->xdp_prog) {
781 fp->xdp_tx = kzalloc(sizeof(*fp->xdp_tx),
782 GFP_KERNEL);
783 if (!fp->xdp_tx)
784 goto err;
Mintz, Yuval496e0512016-11-29 16:47:09 +0200785 fp->type |= QEDE_FASTPATH_XDP;
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +0200786 }
Yuval Mintz29502192015-10-26 11:02:29 +0200787 }
788 }
789
790 return 0;
791err:
792 qede_free_fp_array(edev);
793 return -ENOMEM;
794}
795
Sudarsana Kalluru0d8e0aa2015-10-26 11:02:30 +0200796static void qede_sp_task(struct work_struct *work)
797{
798 struct qede_dev *edev = container_of(work, struct qede_dev,
799 sp_task.work);
Manish Choprab18e1702016-04-14 01:38:30 -0400800
Mintz, Yuval567b3c12016-11-29 16:47:05 +0200801 __qede_lock(edev);
Sudarsana Kalluru0d8e0aa2015-10-26 11:02:30 +0200802
Mintz, Yuval567b3c12016-11-29 16:47:05 +0200803 if (test_and_clear_bit(QEDE_SP_RX_MODE, &edev->sp_flags))
804 if (edev->state == QEDE_STATE_OPEN)
Sudarsana Kalluru0d8e0aa2015-10-26 11:02:30 +0200805 qede_config_rx_mode(edev->ndev);
Sudarsana Kalluru0d8e0aa2015-10-26 11:02:30 +0200806
Chopra, Manishe4917d42017-04-13 04:54:45 -0700807#ifdef CONFIG_RFS_ACCEL
808 if (test_and_clear_bit(QEDE_SP_ARFS_CONFIG, &edev->sp_flags)) {
809 if (edev->state == QEDE_STATE_OPEN)
810 qede_process_arfs_filters(edev, false);
811 }
812#endif
Mintz, Yuval567b3c12016-11-29 16:47:05 +0200813 __qede_unlock(edev);
Sudarsana Kalluru0d8e0aa2015-10-26 11:02:30 +0200814}
815
Yuval Mintze712d522015-10-26 11:02:27 +0200816static void qede_update_pf_params(struct qed_dev *cdev)
817{
818 struct qed_pf_params pf_params;
819
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +0200820 /* 64 rx + 64 tx + 64 XDP */
Yuval Mintze712d522015-10-26 11:02:27 +0200821 memset(&pf_params, 0, sizeof(struct qed_pf_params));
Mintz, Yuvale1d32ac2017-01-01 13:57:03 +0200822 pf_params.eth_pf_params.num_cons = (MAX_SB_PER_PF_MIMD - 1) * 3;
Chopra, Manishe4917d42017-04-13 04:54:45 -0700823#ifdef CONFIG_RFS_ACCEL
824 pf_params.eth_pf_params.num_arfs_filters = QEDE_RFS_MAX_FLTR;
825#endif
Yuval Mintze712d522015-10-26 11:02:27 +0200826 qed_ops->common->update_pf_params(cdev, &pf_params);
827}
828
829enum qede_probe_mode {
830 QEDE_PROBE_NORMAL,
831};
832
833static int __qede_probe(struct pci_dev *pdev, u32 dp_module, u8 dp_level,
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300834 bool is_vf, enum qede_probe_mode mode)
Yuval Mintze712d522015-10-26 11:02:27 +0200835{
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300836 struct qed_probe_params probe_params;
Yuval Mintz1a635e42016-08-15 10:42:43 +0300837 struct qed_slowpath_params sp_params;
Yuval Mintze712d522015-10-26 11:02:27 +0200838 struct qed_dev_eth_info dev_info;
839 struct qede_dev *edev;
840 struct qed_dev *cdev;
841 int rc;
842
843 if (unlikely(dp_level & QED_LEVEL_INFO))
844 pr_notice("Starting qede probe\n");
845
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300846 memset(&probe_params, 0, sizeof(probe_params));
847 probe_params.protocol = QED_PROTOCOL_ETH;
848 probe_params.dp_module = dp_module;
849 probe_params.dp_level = dp_level;
850 probe_params.is_vf = is_vf;
851 cdev = qed_ops->common->probe(pdev, &probe_params);
Yuval Mintze712d522015-10-26 11:02:27 +0200852 if (!cdev) {
853 rc = -ENODEV;
854 goto err0;
855 }
856
857 qede_update_pf_params(cdev);
858
859 /* Start the Slowpath-process */
Yuval Mintz1a635e42016-08-15 10:42:43 +0300860 memset(&sp_params, 0, sizeof(sp_params));
861 sp_params.int_mode = QED_INT_MODE_MSIX;
862 sp_params.drv_major = QEDE_MAJOR_VERSION;
863 sp_params.drv_minor = QEDE_MINOR_VERSION;
864 sp_params.drv_rev = QEDE_REVISION_VERSION;
865 sp_params.drv_eng = QEDE_ENGINEERING_VERSION;
866 strlcpy(sp_params.name, "qede LAN", QED_DRV_VER_STR_SIZE);
867 rc = qed_ops->common->slowpath_start(cdev, &sp_params);
Yuval Mintze712d522015-10-26 11:02:27 +0200868 if (rc) {
869 pr_notice("Cannot start slowpath\n");
870 goto err1;
871 }
872
873 /* Learn information crucial for qede to progress */
874 rc = qed_ops->fill_dev_info(cdev, &dev_info);
875 if (rc)
876 goto err2;
877
878 edev = qede_alloc_etherdev(cdev, pdev, &dev_info, dp_module,
879 dp_level);
880 if (!edev) {
881 rc = -ENOMEM;
882 goto err2;
883 }
884
Yuval Mintzfefb0202016-05-11 16:36:19 +0300885 if (is_vf)
886 edev->flags |= QEDE_FLAG_IS_VF;
887
Yuval Mintze712d522015-10-26 11:02:27 +0200888 qede_init_ndev(edev);
889
Ram Amranicee9fbd2016-10-01 21:59:56 +0300890 rc = qede_roce_dev_add(edev);
891 if (rc)
892 goto err3;
893
Mintz, Yuval0e0b80a2017-02-20 22:43:34 +0200894 /* Prepare the lock prior to the registeration of the netdev,
895 * as once it's registered we might reach flows requiring it
896 * [it's even possible to reach a flow needing it directly
897 * from there, although it's unlikely].
898 */
899 INIT_DELAYED_WORK(&edev->sp_task, qede_sp_task);
900 mutex_init(&edev->qede_lock);
Yuval Mintz29502192015-10-26 11:02:29 +0200901 rc = register_netdev(edev->ndev);
902 if (rc) {
903 DP_NOTICE(edev, "Cannot register net-device\n");
Ram Amranicee9fbd2016-10-01 21:59:56 +0300904 goto err4;
Yuval Mintz29502192015-10-26 11:02:29 +0200905 }
906
Yuval Mintze712d522015-10-26 11:02:27 +0200907 edev->ops->common->set_id(cdev, edev->ndev->name, DRV_MODULE_VERSION);
908
Sudarsana Reddy Kalluru4c552152017-02-15 10:24:11 +0200909 /* PTP not supported on VFs */
910 if (!is_vf) {
911 rc = qede_ptp_register_phc(edev);
912 if (rc) {
913 DP_NOTICE(edev, "Cannot register PHC\n");
914 goto err5;
915 }
916 }
917
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +0200918 edev->ops->register_ops(cdev, &qede_ll_ops, edev);
919
Sudarsana Reddy Kalluru489e45a2016-06-08 06:22:12 -0400920#ifdef CONFIG_DCB
Sudarsana Reddy Kalluru5fe118c2016-08-29 08:29:52 -0400921 if (!IS_VF(edev))
922 qede_set_dcbnl_ops(edev->ndev);
Sudarsana Reddy Kalluru489e45a2016-06-08 06:22:12 -0400923#endif
924
Manish Chopra3d789992016-06-30 02:35:21 -0400925 edev->rx_copybreak = QEDE_RX_HDR_SIZE;
Sudarsana Kalluru0d8e0aa2015-10-26 11:02:30 +0200926
Yuval Mintze712d522015-10-26 11:02:27 +0200927 DP_INFO(edev, "Ending successfully qede probe\n");
928
929 return 0;
930
Sudarsana Reddy Kalluru4c552152017-02-15 10:24:11 +0200931err5:
932 unregister_netdev(edev->ndev);
Ram Amranicee9fbd2016-10-01 21:59:56 +0300933err4:
934 qede_roce_dev_remove(edev);
Yuval Mintz29502192015-10-26 11:02:29 +0200935err3:
936 free_netdev(edev->ndev);
Yuval Mintze712d522015-10-26 11:02:27 +0200937err2:
938 qed_ops->common->slowpath_stop(cdev);
939err1:
940 qed_ops->common->remove(cdev);
941err0:
942 return rc;
943}
944
945static int qede_probe(struct pci_dev *pdev, const struct pci_device_id *id)
946{
Yuval Mintzfefb0202016-05-11 16:36:19 +0300947 bool is_vf = false;
Yuval Mintze712d522015-10-26 11:02:27 +0200948 u32 dp_module = 0;
949 u8 dp_level = 0;
950
Yuval Mintzfefb0202016-05-11 16:36:19 +0300951 switch ((enum qede_pci_private)id->driver_data) {
952 case QEDE_PRIVATE_VF:
953 if (debug & QED_LOG_VERBOSE_MASK)
954 dev_err(&pdev->dev, "Probing a VF\n");
955 is_vf = true;
956 break;
957 default:
958 if (debug & QED_LOG_VERBOSE_MASK)
959 dev_err(&pdev->dev, "Probing a PF\n");
960 }
961
Yuval Mintze712d522015-10-26 11:02:27 +0200962 qede_config_debug(debug, &dp_module, &dp_level);
963
Yuval Mintzfefb0202016-05-11 16:36:19 +0300964 return __qede_probe(pdev, dp_module, dp_level, is_vf,
Yuval Mintze712d522015-10-26 11:02:27 +0200965 QEDE_PROBE_NORMAL);
966}
967
968enum qede_remove_mode {
969 QEDE_REMOVE_NORMAL,
970};
971
972static void __qede_remove(struct pci_dev *pdev, enum qede_remove_mode mode)
973{
974 struct net_device *ndev = pci_get_drvdata(pdev);
975 struct qede_dev *edev = netdev_priv(ndev);
976 struct qed_dev *cdev = edev->cdev;
977
978 DP_INFO(edev, "Starting qede_remove\n");
979
Yuval Mintz29502192015-10-26 11:02:29 +0200980 unregister_netdev(ndev);
Chopra, Manishe4917d42017-04-13 04:54:45 -0700981 cancel_delayed_work_sync(&edev->sp_task);
Yuval Mintz29502192015-10-26 11:02:29 +0200982
Sudarsana Reddy Kalluru4c552152017-02-15 10:24:11 +0200983 qede_ptp_remove(edev);
984
Ram Amranicee9fbd2016-10-01 21:59:56 +0300985 qede_roce_dev_remove(edev);
986
Yuval Mintze712d522015-10-26 11:02:27 +0200987 edev->ops->common->set_power_state(cdev, PCI_D0);
988
989 pci_set_drvdata(pdev, NULL);
990
Mintz, Yuval496e0512016-11-29 16:47:09 +0200991 /* Release edev's reference to XDP's bpf if such exist */
992 if (edev->xdp_prog)
993 bpf_prog_put(edev->xdp_prog);
994
Yuval Mintze712d522015-10-26 11:02:27 +0200995 /* Use global ops since we've freed edev */
996 qed_ops->common->slowpath_stop(cdev);
Mintz, Yuval14d39642016-10-31 07:14:23 +0200997 if (system_state == SYSTEM_POWER_OFF)
998 return;
Yuval Mintze712d522015-10-26 11:02:27 +0200999 qed_ops->common->remove(cdev);
1000
Mintz, Yuval885185d2017-02-20 22:43:35 +02001001 /* Since this can happen out-of-sync with other flows,
1002 * don't release the netdevice until after slowpath stop
1003 * has been called to guarantee various other contexts
1004 * [e.g., QED register callbacks] won't break anything when
1005 * accessing the netdevice.
1006 */
1007 free_netdev(ndev);
1008
Yuval Mintz525ef5c2016-08-15 10:42:45 +03001009 dev_info(&pdev->dev, "Ending qede_remove successfully\n");
Yuval Mintze712d522015-10-26 11:02:27 +02001010}
1011
1012static void qede_remove(struct pci_dev *pdev)
1013{
1014 __qede_remove(pdev, QEDE_REMOVE_NORMAL);
1015}
Yuval Mintz29502192015-10-26 11:02:29 +02001016
Mintz, Yuval14d39642016-10-31 07:14:23 +02001017static void qede_shutdown(struct pci_dev *pdev)
1018{
1019 __qede_remove(pdev, QEDE_REMOVE_NORMAL);
1020}
1021
Yuval Mintz29502192015-10-26 11:02:29 +02001022/* -------------------------------------------------------------------------
1023 * START OF LOAD / UNLOAD
1024 * -------------------------------------------------------------------------
1025 */
1026
1027static int qede_set_num_queues(struct qede_dev *edev)
1028{
1029 int rc;
1030 u16 rss_num;
1031
1032 /* Setup queues according to possible resources*/
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001033 if (edev->req_queues)
1034 rss_num = edev->req_queues;
Sudarsana Kalluru8edf0492015-11-30 12:25:01 +02001035 else
1036 rss_num = netif_get_num_default_rss_queues() *
1037 edev->dev_info.common.num_hwfns;
Yuval Mintz29502192015-10-26 11:02:29 +02001038
1039 rss_num = min_t(u16, QEDE_MAX_RSS_CNT(edev), rss_num);
1040
1041 rc = edev->ops->common->set_fp_int(edev->cdev, rss_num);
1042 if (rc > 0) {
1043 /* Managed to request interrupts for our queues */
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001044 edev->num_queues = rc;
Yuval Mintz29502192015-10-26 11:02:29 +02001045 DP_INFO(edev, "Managed %d [of %d] RSS queues\n",
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001046 QEDE_QUEUE_CNT(edev), rss_num);
Yuval Mintz29502192015-10-26 11:02:29 +02001047 rc = 0;
1048 }
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001049
1050 edev->fp_num_tx = edev->req_num_tx;
1051 edev->fp_num_rx = edev->req_num_rx;
1052
Yuval Mintz29502192015-10-26 11:02:29 +02001053 return rc;
1054}
1055
1056static void qede_free_mem_sb(struct qede_dev *edev,
1057 struct qed_sb_info *sb_info)
1058{
1059 if (sb_info->sb_virt)
1060 dma_free_coherent(&edev->pdev->dev, sizeof(*sb_info->sb_virt),
1061 (void *)sb_info->sb_virt, sb_info->sb_phys);
1062}
1063
1064/* This function allocates fast-path status block memory */
1065static int qede_alloc_mem_sb(struct qede_dev *edev,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001066 struct qed_sb_info *sb_info, u16 sb_id)
Yuval Mintz29502192015-10-26 11:02:29 +02001067{
1068 struct status_block *sb_virt;
1069 dma_addr_t sb_phys;
1070 int rc;
1071
1072 sb_virt = dma_alloc_coherent(&edev->pdev->dev,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001073 sizeof(*sb_virt), &sb_phys, GFP_KERNEL);
Yuval Mintz29502192015-10-26 11:02:29 +02001074 if (!sb_virt) {
1075 DP_ERR(edev, "Status block allocation failed\n");
1076 return -ENOMEM;
1077 }
1078
1079 rc = edev->ops->common->sb_init(edev->cdev, sb_info,
1080 sb_virt, sb_phys, sb_id,
1081 QED_SB_TYPE_L2_QUEUE);
1082 if (rc) {
1083 DP_ERR(edev, "Status block initialization failed\n");
1084 dma_free_coherent(&edev->pdev->dev, sizeof(*sb_virt),
1085 sb_virt, sb_phys);
1086 return rc;
1087 }
1088
1089 return 0;
1090}
1091
1092static void qede_free_rx_buffers(struct qede_dev *edev,
1093 struct qede_rx_queue *rxq)
1094{
1095 u16 i;
1096
1097 for (i = rxq->sw_rx_cons; i != rxq->sw_rx_prod; i++) {
1098 struct sw_rx_data *rx_buf;
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001099 struct page *data;
Yuval Mintz29502192015-10-26 11:02:29 +02001100
1101 rx_buf = &rxq->sw_rx_ring[i & NUM_RX_BDS_MAX];
1102 data = rx_buf->data;
1103
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001104 dma_unmap_page(&edev->pdev->dev,
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001105 rx_buf->mapping, PAGE_SIZE, rxq->data_direction);
Yuval Mintz29502192015-10-26 11:02:29 +02001106
1107 rx_buf->data = NULL;
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001108 __free_page(data);
Yuval Mintz29502192015-10-26 11:02:29 +02001109 }
1110}
1111
Yuval Mintz1a635e42016-08-15 10:42:43 +03001112static void qede_free_sge_mem(struct qede_dev *edev, struct qede_rx_queue *rxq)
1113{
Manish Chopra55482ed2016-03-04 12:35:06 -05001114 int i;
1115
1116 if (edev->gro_disable)
1117 return;
1118
1119 for (i = 0; i < ETH_TPA_MAX_AGGS_NUM; i++) {
1120 struct qede_agg_info *tpa_info = &rxq->tpa_info[i];
Mintz, Yuval01e23012016-11-29 16:47:00 +02001121 struct sw_rx_data *replace_buf = &tpa_info->buffer;
Manish Chopra55482ed2016-03-04 12:35:06 -05001122
Manish Chopraf86af2d2016-04-20 03:03:27 -04001123 if (replace_buf->data) {
Manish Chopra55482ed2016-03-04 12:35:06 -05001124 dma_unmap_page(&edev->pdev->dev,
Manish Chopra09ec8e72016-05-18 07:43:57 -04001125 replace_buf->mapping,
Manish Chopra55482ed2016-03-04 12:35:06 -05001126 PAGE_SIZE, DMA_FROM_DEVICE);
1127 __free_page(replace_buf->data);
1128 }
1129 }
1130}
1131
Yuval Mintz1a635e42016-08-15 10:42:43 +03001132static void qede_free_mem_rxq(struct qede_dev *edev, struct qede_rx_queue *rxq)
Yuval Mintz29502192015-10-26 11:02:29 +02001133{
Manish Chopra55482ed2016-03-04 12:35:06 -05001134 qede_free_sge_mem(edev, rxq);
1135
Yuval Mintz29502192015-10-26 11:02:29 +02001136 /* Free rx buffers */
1137 qede_free_rx_buffers(edev, rxq);
1138
1139 /* Free the parallel SW ring */
1140 kfree(rxq->sw_rx_ring);
1141
1142 /* Free the real RQ ring used by FW */
1143 edev->ops->common->chain_free(edev->cdev, &rxq->rx_bd_ring);
1144 edev->ops->common->chain_free(edev->cdev, &rxq->rx_comp_ring);
1145}
1146
Yuval Mintz1a635e42016-08-15 10:42:43 +03001147static int qede_alloc_sge_mem(struct qede_dev *edev, struct qede_rx_queue *rxq)
Manish Chopra55482ed2016-03-04 12:35:06 -05001148{
1149 dma_addr_t mapping;
1150 int i;
1151
Mintz, Yuval496e0512016-11-29 16:47:09 +02001152 /* Don't perform FW aggregations in case of XDP */
1153 if (edev->xdp_prog)
1154 edev->gro_disable = 1;
1155
Manish Chopra55482ed2016-03-04 12:35:06 -05001156 if (edev->gro_disable)
1157 return 0;
1158
1159 if (edev->ndev->mtu > PAGE_SIZE) {
1160 edev->gro_disable = 1;
1161 return 0;
1162 }
1163
1164 for (i = 0; i < ETH_TPA_MAX_AGGS_NUM; i++) {
1165 struct qede_agg_info *tpa_info = &rxq->tpa_info[i];
Mintz, Yuval01e23012016-11-29 16:47:00 +02001166 struct sw_rx_data *replace_buf = &tpa_info->buffer;
Manish Chopra55482ed2016-03-04 12:35:06 -05001167
1168 replace_buf->data = alloc_pages(GFP_ATOMIC, 0);
1169 if (unlikely(!replace_buf->data)) {
1170 DP_NOTICE(edev,
1171 "Failed to allocate TPA skb pool [replacement buffer]\n");
1172 goto err;
1173 }
1174
1175 mapping = dma_map_page(&edev->pdev->dev, replace_buf->data, 0,
Mintz, Yuval95129252016-11-02 16:36:46 +02001176 PAGE_SIZE, DMA_FROM_DEVICE);
Manish Chopra55482ed2016-03-04 12:35:06 -05001177 if (unlikely(dma_mapping_error(&edev->pdev->dev, mapping))) {
1178 DP_NOTICE(edev,
1179 "Failed to map TPA replacement buffer\n");
1180 goto err;
1181 }
1182
Manish Chopra09ec8e72016-05-18 07:43:57 -04001183 replace_buf->mapping = mapping;
Mintz, Yuval01e23012016-11-29 16:47:00 +02001184 tpa_info->buffer.page_offset = 0;
1185 tpa_info->buffer_mapping = mapping;
1186 tpa_info->state = QEDE_AGG_STATE_NONE;
Manish Chopra55482ed2016-03-04 12:35:06 -05001187 }
1188
1189 return 0;
1190err:
1191 qede_free_sge_mem(edev, rxq);
1192 edev->gro_disable = 1;
1193 return -ENOMEM;
1194}
1195
Yuval Mintz29502192015-10-26 11:02:29 +02001196/* This function allocates all memory needed per Rx queue */
Yuval Mintz1a635e42016-08-15 10:42:43 +03001197static int qede_alloc_mem_rxq(struct qede_dev *edev, struct qede_rx_queue *rxq)
Yuval Mintz29502192015-10-26 11:02:29 +02001198{
Manish Chopraf86af2d2016-04-20 03:03:27 -04001199 int i, rc, size;
Yuval Mintz29502192015-10-26 11:02:29 +02001200
1201 rxq->num_rx_buffers = edev->q_num_rx_buffers;
1202
Yuval Mintz1a635e42016-08-15 10:42:43 +03001203 rxq->rx_buf_size = NET_IP_ALIGN + ETH_OVERHEAD + edev->ndev->mtu;
Mintz, Yuval059eeb02017-04-07 11:05:01 +03001204 rxq->rx_headroom = edev->xdp_prog ? XDP_PACKET_HEADROOM : 0;
Yuval Mintz1a635e42016-08-15 10:42:43 +03001205
Mintz, Yuval15ed8a42017-04-07 11:05:00 +03001206 /* Make sure that the headroom and payload fit in a single page */
1207 if (rxq->rx_buf_size + rxq->rx_headroom > PAGE_SIZE)
1208 rxq->rx_buf_size = PAGE_SIZE - rxq->rx_headroom;
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001209
Mintz, Yuval496e0512016-11-29 16:47:09 +02001210 /* Segment size to spilt a page in multiple equal parts,
1211 * unless XDP is used in which case we'd use the entire page.
1212 */
1213 if (!edev->xdp_prog)
1214 rxq->rx_buf_seg_size = roundup_pow_of_two(rxq->rx_buf_size);
1215 else
1216 rxq->rx_buf_seg_size = PAGE_SIZE;
Yuval Mintz29502192015-10-26 11:02:29 +02001217
1218 /* Allocate the parallel driver ring for Rx buffers */
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001219 size = sizeof(*rxq->sw_rx_ring) * RX_RING_SIZE;
Yuval Mintz29502192015-10-26 11:02:29 +02001220 rxq->sw_rx_ring = kzalloc(size, GFP_KERNEL);
1221 if (!rxq->sw_rx_ring) {
1222 DP_ERR(edev, "Rx buffers ring allocation failed\n");
Manish Chopraf86af2d2016-04-20 03:03:27 -04001223 rc = -ENOMEM;
Yuval Mintz29502192015-10-26 11:02:29 +02001224 goto err;
1225 }
1226
1227 /* Allocate FW Rx ring */
1228 rc = edev->ops->common->chain_alloc(edev->cdev,
1229 QED_CHAIN_USE_TO_CONSUME_PRODUCE,
1230 QED_CHAIN_MODE_NEXT_PTR,
Yuval Mintza91eb522016-06-03 14:35:32 +03001231 QED_CHAIN_CNT_TYPE_U16,
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001232 RX_RING_SIZE,
Yuval Mintz29502192015-10-26 11:02:29 +02001233 sizeof(struct eth_rx_bd),
1234 &rxq->rx_bd_ring);
1235
1236 if (rc)
1237 goto err;
1238
1239 /* Allocate FW completion ring */
1240 rc = edev->ops->common->chain_alloc(edev->cdev,
1241 QED_CHAIN_USE_TO_CONSUME,
1242 QED_CHAIN_MODE_PBL,
Yuval Mintza91eb522016-06-03 14:35:32 +03001243 QED_CHAIN_CNT_TYPE_U16,
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001244 RX_RING_SIZE,
Yuval Mintz29502192015-10-26 11:02:29 +02001245 sizeof(union eth_rx_cqe),
1246 &rxq->rx_comp_ring);
1247 if (rc)
1248 goto err;
1249
1250 /* Allocate buffers for the Rx ring */
Mintz, Yuvale3eef7e2017-01-01 13:57:04 +02001251 rxq->filled_buffers = 0;
Yuval Mintz29502192015-10-26 11:02:29 +02001252 for (i = 0; i < rxq->num_rx_buffers; i++) {
Mintz, Yuvale3eef7e2017-01-01 13:57:04 +02001253 rc = qede_alloc_rx_buffer(rxq, false);
Manish Chopraf86af2d2016-04-20 03:03:27 -04001254 if (rc) {
1255 DP_ERR(edev,
1256 "Rx buffers allocation failed at index %d\n", i);
1257 goto err;
1258 }
Yuval Mintz29502192015-10-26 11:02:29 +02001259 }
1260
Manish Chopraf86af2d2016-04-20 03:03:27 -04001261 rc = qede_alloc_sge_mem(edev, rxq);
Yuval Mintz29502192015-10-26 11:02:29 +02001262err:
Manish Chopraf86af2d2016-04-20 03:03:27 -04001263 return rc;
Yuval Mintz29502192015-10-26 11:02:29 +02001264}
1265
Yuval Mintz1a635e42016-08-15 10:42:43 +03001266static void qede_free_mem_txq(struct qede_dev *edev, struct qede_tx_queue *txq)
Yuval Mintz29502192015-10-26 11:02:29 +02001267{
1268 /* Free the parallel SW ring */
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001269 if (txq->is_xdp)
Mintz, Yuval89e1afc2017-04-07 11:04:58 +03001270 kfree(txq->sw_tx_ring.xdp);
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001271 else
1272 kfree(txq->sw_tx_ring.skbs);
Yuval Mintz29502192015-10-26 11:02:29 +02001273
1274 /* Free the real RQ ring used by FW */
1275 edev->ops->common->chain_free(edev->cdev, &txq->tx_pbl);
1276}
1277
1278/* This function allocates all memory needed per Tx queue */
Yuval Mintz1a635e42016-08-15 10:42:43 +03001279static int qede_alloc_mem_txq(struct qede_dev *edev, struct qede_tx_queue *txq)
Yuval Mintz29502192015-10-26 11:02:29 +02001280{
Yuval Mintz29502192015-10-26 11:02:29 +02001281 union eth_tx_bd_types *p_virt;
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001282 int size, rc;
Yuval Mintz29502192015-10-26 11:02:29 +02001283
1284 txq->num_tx_buffers = edev->q_num_tx_buffers;
1285
1286 /* Allocate the parallel driver ring for Tx buffers */
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001287 if (txq->is_xdp) {
Mintz, Yuval89e1afc2017-04-07 11:04:58 +03001288 size = sizeof(*txq->sw_tx_ring.xdp) * TX_RING_SIZE;
1289 txq->sw_tx_ring.xdp = kzalloc(size, GFP_KERNEL);
1290 if (!txq->sw_tx_ring.xdp)
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001291 goto err;
1292 } else {
1293 size = sizeof(*txq->sw_tx_ring.skbs) * TX_RING_SIZE;
1294 txq->sw_tx_ring.skbs = kzalloc(size, GFP_KERNEL);
1295 if (!txq->sw_tx_ring.skbs)
1296 goto err;
Yuval Mintz29502192015-10-26 11:02:29 +02001297 }
1298
1299 rc = edev->ops->common->chain_alloc(edev->cdev,
1300 QED_CHAIN_USE_TO_CONSUME_PRODUCE,
1301 QED_CHAIN_MODE_PBL,
Yuval Mintza91eb522016-06-03 14:35:32 +03001302 QED_CHAIN_CNT_TYPE_U16,
Mintz, Yuval087892d2016-10-29 17:04:35 +03001303 TX_RING_SIZE,
Yuval Mintza91eb522016-06-03 14:35:32 +03001304 sizeof(*p_virt), &txq->tx_pbl);
Yuval Mintz29502192015-10-26 11:02:29 +02001305 if (rc)
1306 goto err;
1307
1308 return 0;
1309
1310err:
1311 qede_free_mem_txq(edev, txq);
1312 return -ENOMEM;
1313}
1314
1315/* This function frees all memory of a single fp */
Yuval Mintz1a635e42016-08-15 10:42:43 +03001316static void qede_free_mem_fp(struct qede_dev *edev, struct qede_fastpath *fp)
Yuval Mintz29502192015-10-26 11:02:29 +02001317{
Yuval Mintz29502192015-10-26 11:02:29 +02001318 qede_free_mem_sb(edev, fp->sb_info);
1319
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001320 if (fp->type & QEDE_FASTPATH_RX)
1321 qede_free_mem_rxq(edev, fp->rxq);
Yuval Mintz29502192015-10-26 11:02:29 +02001322
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001323 if (fp->type & QEDE_FASTPATH_TX)
Mintz, Yuval80439a12016-11-29 16:47:02 +02001324 qede_free_mem_txq(edev, fp->txq);
Yuval Mintz29502192015-10-26 11:02:29 +02001325}
1326
1327/* This function allocates all memory needed for a single fp (i.e. an entity
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001328 * which contains status block, one rx queue and/or multiple per-TC tx queues.
Yuval Mintz29502192015-10-26 11:02:29 +02001329 */
Yuval Mintz1a635e42016-08-15 10:42:43 +03001330static int qede_alloc_mem_fp(struct qede_dev *edev, struct qede_fastpath *fp)
Yuval Mintz29502192015-10-26 11:02:29 +02001331{
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001332 int rc = 0;
Yuval Mintz29502192015-10-26 11:02:29 +02001333
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001334 rc = qede_alloc_mem_sb(edev, fp->sb_info, fp->id);
Yuval Mintz29502192015-10-26 11:02:29 +02001335 if (rc)
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001336 goto out;
Yuval Mintz29502192015-10-26 11:02:29 +02001337
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001338 if (fp->type & QEDE_FASTPATH_RX) {
1339 rc = qede_alloc_mem_rxq(edev, fp->rxq);
Yuval Mintz29502192015-10-26 11:02:29 +02001340 if (rc)
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001341 goto out;
1342 }
1343
1344 if (fp->type & QEDE_FASTPATH_XDP) {
1345 rc = qede_alloc_mem_txq(edev, fp->xdp_tx);
1346 if (rc)
1347 goto out;
Yuval Mintz29502192015-10-26 11:02:29 +02001348 }
1349
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001350 if (fp->type & QEDE_FASTPATH_TX) {
Mintz, Yuval80439a12016-11-29 16:47:02 +02001351 rc = qede_alloc_mem_txq(edev, fp->txq);
1352 if (rc)
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001353 goto out;
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001354 }
1355
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001356out:
Manish Chopraf86af2d2016-04-20 03:03:27 -04001357 return rc;
Yuval Mintz29502192015-10-26 11:02:29 +02001358}
1359
1360static void qede_free_mem_load(struct qede_dev *edev)
1361{
1362 int i;
1363
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001364 for_each_queue(i) {
Yuval Mintz29502192015-10-26 11:02:29 +02001365 struct qede_fastpath *fp = &edev->fp_array[i];
1366
1367 qede_free_mem_fp(edev, fp);
1368 }
1369}
1370
1371/* This function allocates all qede memory at NIC load. */
1372static int qede_alloc_mem_load(struct qede_dev *edev)
1373{
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001374 int rc = 0, queue_id;
Yuval Mintz29502192015-10-26 11:02:29 +02001375
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001376 for (queue_id = 0; queue_id < QEDE_QUEUE_CNT(edev); queue_id++) {
1377 struct qede_fastpath *fp = &edev->fp_array[queue_id];
Yuval Mintz29502192015-10-26 11:02:29 +02001378
1379 rc = qede_alloc_mem_fp(edev, fp);
Manish Chopraf86af2d2016-04-20 03:03:27 -04001380 if (rc) {
Yuval Mintz29502192015-10-26 11:02:29 +02001381 DP_ERR(edev,
Manish Chopraf86af2d2016-04-20 03:03:27 -04001382 "Failed to allocate memory for fastpath - rss id = %d\n",
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001383 queue_id);
Manish Chopraf86af2d2016-04-20 03:03:27 -04001384 qede_free_mem_load(edev);
1385 return rc;
Yuval Mintz29502192015-10-26 11:02:29 +02001386 }
Yuval Mintz29502192015-10-26 11:02:29 +02001387 }
1388
1389 return 0;
1390}
1391
1392/* This function inits fp content and resets the SB, RXQ and TXQ structures */
1393static void qede_init_fp(struct qede_dev *edev)
1394{
Mintz, Yuval80439a12016-11-29 16:47:02 +02001395 int queue_id, rxq_index = 0, txq_index = 0;
Yuval Mintz29502192015-10-26 11:02:29 +02001396 struct qede_fastpath *fp;
1397
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001398 for_each_queue(queue_id) {
1399 fp = &edev->fp_array[queue_id];
Yuval Mintz29502192015-10-26 11:02:29 +02001400
1401 fp->edev = edev;
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001402 fp->id = queue_id;
Yuval Mintz29502192015-10-26 11:02:29 +02001403
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001404 if (fp->type & QEDE_FASTPATH_XDP) {
1405 fp->xdp_tx->index = QEDE_TXQ_IDX_TO_XDP(edev,
1406 rxq_index);
1407 fp->xdp_tx->is_xdp = 1;
1408 }
Yuval Mintz29502192015-10-26 11:02:29 +02001409
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001410 if (fp->type & QEDE_FASTPATH_RX) {
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001411 fp->rxq->rxq_id = rxq_index++;
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001412
1413 /* Determine how to map buffers for this queue */
1414 if (fp->type & QEDE_FASTPATH_XDP)
1415 fp->rxq->data_direction = DMA_BIDIRECTIONAL;
1416 else
1417 fp->rxq->data_direction = DMA_FROM_DEVICE;
Mintz, Yuval9eb22352016-11-29 16:47:08 +02001418 fp->rxq->dev = &edev->pdev->dev;
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001419 }
Yuval Mintz29502192015-10-26 11:02:29 +02001420
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001421 if (fp->type & QEDE_FASTPATH_TX) {
Mintz, Yuval80439a12016-11-29 16:47:02 +02001422 fp->txq->index = txq_index++;
1423 if (edev->dev_info.is_legacy)
1424 fp->txq->is_legacy = 1;
Mintz, Yuval9eb22352016-11-29 16:47:08 +02001425 fp->txq->dev = &edev->pdev->dev;
Yuval Mintz29502192015-10-26 11:02:29 +02001426 }
1427
1428 snprintf(fp->name, sizeof(fp->name), "%s-fp-%d",
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001429 edev->ndev->name, queue_id);
Yuval Mintz29502192015-10-26 11:02:29 +02001430 }
Manish Chopra55482ed2016-03-04 12:35:06 -05001431
1432 edev->gro_disable = !(edev->ndev->features & NETIF_F_GRO);
Yuval Mintz29502192015-10-26 11:02:29 +02001433}
1434
1435static int qede_set_real_num_queues(struct qede_dev *edev)
1436{
1437 int rc = 0;
1438
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001439 rc = netif_set_real_num_tx_queues(edev->ndev, QEDE_TSS_COUNT(edev));
Yuval Mintz29502192015-10-26 11:02:29 +02001440 if (rc) {
1441 DP_NOTICE(edev, "Failed to set real number of Tx queues\n");
1442 return rc;
1443 }
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001444
1445 rc = netif_set_real_num_rx_queues(edev->ndev, QEDE_RSS_COUNT(edev));
Yuval Mintz29502192015-10-26 11:02:29 +02001446 if (rc) {
1447 DP_NOTICE(edev, "Failed to set real number of Rx queues\n");
1448 return rc;
1449 }
1450
1451 return 0;
1452}
1453
1454static void qede_napi_disable_remove(struct qede_dev *edev)
1455{
1456 int i;
1457
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001458 for_each_queue(i) {
Yuval Mintz29502192015-10-26 11:02:29 +02001459 napi_disable(&edev->fp_array[i].napi);
1460
1461 netif_napi_del(&edev->fp_array[i].napi);
1462 }
1463}
1464
1465static void qede_napi_add_enable(struct qede_dev *edev)
1466{
1467 int i;
1468
1469 /* Add NAPI objects */
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001470 for_each_queue(i) {
Yuval Mintz29502192015-10-26 11:02:29 +02001471 netif_napi_add(edev->ndev, &edev->fp_array[i].napi,
1472 qede_poll, NAPI_POLL_WEIGHT);
1473 napi_enable(&edev->fp_array[i].napi);
1474 }
1475}
1476
1477static void qede_sync_free_irqs(struct qede_dev *edev)
1478{
1479 int i;
1480
1481 for (i = 0; i < edev->int_info.used_cnt; i++) {
1482 if (edev->int_info.msix_cnt) {
1483 synchronize_irq(edev->int_info.msix[i].vector);
1484 free_irq(edev->int_info.msix[i].vector,
1485 &edev->fp_array[i]);
1486 } else {
1487 edev->ops->common->simd_handler_clean(edev->cdev, i);
1488 }
1489 }
1490
1491 edev->int_info.used_cnt = 0;
1492}
1493
1494static int qede_req_msix_irqs(struct qede_dev *edev)
1495{
1496 int i, rc;
1497
1498 /* Sanitize number of interrupts == number of prepared RSS queues */
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001499 if (QEDE_QUEUE_CNT(edev) > edev->int_info.msix_cnt) {
Yuval Mintz29502192015-10-26 11:02:29 +02001500 DP_ERR(edev,
1501 "Interrupt mismatch: %d RSS queues > %d MSI-x vectors\n",
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001502 QEDE_QUEUE_CNT(edev), edev->int_info.msix_cnt);
Yuval Mintz29502192015-10-26 11:02:29 +02001503 return -EINVAL;
1504 }
1505
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001506 for (i = 0; i < QEDE_QUEUE_CNT(edev); i++) {
Chopra, Manishe4917d42017-04-13 04:54:45 -07001507#ifdef CONFIG_RFS_ACCEL
1508 struct qede_fastpath *fp = &edev->fp_array[i];
1509
1510 if (edev->ndev->rx_cpu_rmap && (fp->type & QEDE_FASTPATH_RX)) {
1511 rc = irq_cpu_rmap_add(edev->ndev->rx_cpu_rmap,
1512 edev->int_info.msix[i].vector);
1513 if (rc) {
1514 DP_ERR(edev, "Failed to add CPU rmap\n");
1515 qede_free_arfs(edev);
1516 }
1517 }
1518#endif
Yuval Mintz29502192015-10-26 11:02:29 +02001519 rc = request_irq(edev->int_info.msix[i].vector,
1520 qede_msix_fp_int, 0, edev->fp_array[i].name,
1521 &edev->fp_array[i]);
1522 if (rc) {
1523 DP_ERR(edev, "Request fp %d irq failed\n", i);
1524 qede_sync_free_irqs(edev);
1525 return rc;
1526 }
1527 DP_VERBOSE(edev, NETIF_MSG_INTR,
1528 "Requested fp irq for %s [entry %d]. Cookie is at %p\n",
1529 edev->fp_array[i].name, i,
1530 &edev->fp_array[i]);
1531 edev->int_info.used_cnt++;
1532 }
1533
1534 return 0;
1535}
1536
1537static void qede_simd_fp_handler(void *cookie)
1538{
1539 struct qede_fastpath *fp = (struct qede_fastpath *)cookie;
1540
1541 napi_schedule_irqoff(&fp->napi);
1542}
1543
1544static int qede_setup_irqs(struct qede_dev *edev)
1545{
1546 int i, rc = 0;
1547
1548 /* Learn Interrupt configuration */
1549 rc = edev->ops->common->get_fp_int(edev->cdev, &edev->int_info);
1550 if (rc)
1551 return rc;
1552
1553 if (edev->int_info.msix_cnt) {
1554 rc = qede_req_msix_irqs(edev);
1555 if (rc)
1556 return rc;
1557 edev->ndev->irq = edev->int_info.msix[0].vector;
1558 } else {
1559 const struct qed_common_ops *ops;
1560
1561 /* qed should learn receive the RSS ids and callbacks */
1562 ops = edev->ops->common;
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001563 for (i = 0; i < QEDE_QUEUE_CNT(edev); i++)
Yuval Mintz29502192015-10-26 11:02:29 +02001564 ops->simd_handler_config(edev->cdev,
1565 &edev->fp_array[i], i,
1566 qede_simd_fp_handler);
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001567 edev->int_info.used_cnt = QEDE_QUEUE_CNT(edev);
Yuval Mintz29502192015-10-26 11:02:29 +02001568 }
1569 return 0;
1570}
1571
1572static int qede_drain_txq(struct qede_dev *edev,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001573 struct qede_tx_queue *txq, bool allow_drain)
Yuval Mintz29502192015-10-26 11:02:29 +02001574{
1575 int rc, cnt = 1000;
1576
1577 while (txq->sw_tx_cons != txq->sw_tx_prod) {
1578 if (!cnt) {
1579 if (allow_drain) {
1580 DP_NOTICE(edev,
1581 "Tx queue[%d] is stuck, requesting MCP to drain\n",
1582 txq->index);
1583 rc = edev->ops->common->drain(edev->cdev);
1584 if (rc)
1585 return rc;
1586 return qede_drain_txq(edev, txq, false);
1587 }
1588 DP_NOTICE(edev,
1589 "Timeout waiting for tx queue[%d]: PROD=%d, CONS=%d\n",
1590 txq->index, txq->sw_tx_prod,
1591 txq->sw_tx_cons);
1592 return -ENODEV;
1593 }
1594 cnt--;
1595 usleep_range(1000, 2000);
1596 barrier();
1597 }
1598
1599 /* FW finished processing, wait for HW to transmit all tx packets */
1600 usleep_range(1000, 2000);
1601
1602 return 0;
1603}
1604
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001605static int qede_stop_txq(struct qede_dev *edev,
1606 struct qede_tx_queue *txq, int rss_id)
1607{
1608 return edev->ops->q_tx_stop(edev->cdev, rss_id, txq->handle);
1609}
1610
Yuval Mintz29502192015-10-26 11:02:29 +02001611static int qede_stop_queues(struct qede_dev *edev)
1612{
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001613 struct qed_update_vport_params *vport_update_params;
Yuval Mintz29502192015-10-26 11:02:29 +02001614 struct qed_dev *cdev = edev->cdev;
Mintz, Yuval80439a12016-11-29 16:47:02 +02001615 struct qede_fastpath *fp;
1616 int rc, i;
Yuval Mintz29502192015-10-26 11:02:29 +02001617
1618 /* Disable the vport */
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001619 vport_update_params = vzalloc(sizeof(*vport_update_params));
1620 if (!vport_update_params)
1621 return -ENOMEM;
Yuval Mintz29502192015-10-26 11:02:29 +02001622
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001623 vport_update_params->vport_id = 0;
1624 vport_update_params->update_vport_active_flg = 1;
1625 vport_update_params->vport_active_flg = 0;
1626 vport_update_params->update_rss_flg = 0;
1627
1628 rc = edev->ops->vport_update(cdev, vport_update_params);
1629 vfree(vport_update_params);
1630
Yuval Mintz29502192015-10-26 11:02:29 +02001631 if (rc) {
1632 DP_ERR(edev, "Failed to update vport\n");
1633 return rc;
1634 }
1635
1636 /* Flush Tx queues. If needed, request drain from MCP */
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001637 for_each_queue(i) {
Mintz, Yuval80439a12016-11-29 16:47:02 +02001638 fp = &edev->fp_array[i];
Yuval Mintz29502192015-10-26 11:02:29 +02001639
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001640 if (fp->type & QEDE_FASTPATH_TX) {
Mintz, Yuval80439a12016-11-29 16:47:02 +02001641 rc = qede_drain_txq(edev, fp->txq, true);
1642 if (rc)
1643 return rc;
Yuval Mintz29502192015-10-26 11:02:29 +02001644 }
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001645
1646 if (fp->type & QEDE_FASTPATH_XDP) {
1647 rc = qede_drain_txq(edev, fp->xdp_tx, true);
1648 if (rc)
1649 return rc;
1650 }
Yuval Mintz29502192015-10-26 11:02:29 +02001651 }
1652
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001653 /* Stop all Queues in reverse order */
1654 for (i = QEDE_QUEUE_CNT(edev) - 1; i >= 0; i--) {
Mintz, Yuval80439a12016-11-29 16:47:02 +02001655 fp = &edev->fp_array[i];
Yuval Mintz29502192015-10-26 11:02:29 +02001656
Mintz, Yuval80439a12016-11-29 16:47:02 +02001657 /* Stop the Tx Queue(s) */
1658 if (fp->type & QEDE_FASTPATH_TX) {
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001659 rc = qede_stop_txq(edev, fp->txq, i);
1660 if (rc)
1661 return rc;
Yuval Mintz29502192015-10-26 11:02:29 +02001662 }
1663
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001664 /* Stop the Rx Queue */
Mintz, Yuval80439a12016-11-29 16:47:02 +02001665 if (fp->type & QEDE_FASTPATH_RX) {
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001666 rc = edev->ops->q_rx_stop(cdev, i, fp->rxq->handle);
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001667 if (rc) {
1668 DP_ERR(edev, "Failed to stop RXQ #%d\n", i);
1669 return rc;
1670 }
Yuval Mintz29502192015-10-26 11:02:29 +02001671 }
Mintz, Yuval496e0512016-11-29 16:47:09 +02001672
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001673 /* Stop the XDP forwarding queue */
1674 if (fp->type & QEDE_FASTPATH_XDP) {
1675 rc = qede_stop_txq(edev, fp->xdp_tx, i);
1676 if (rc)
1677 return rc;
1678
Mintz, Yuval496e0512016-11-29 16:47:09 +02001679 bpf_prog_put(fp->rxq->xdp_prog);
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001680 }
Yuval Mintz29502192015-10-26 11:02:29 +02001681 }
1682
1683 /* Stop the vport */
1684 rc = edev->ops->vport_stop(cdev, 0);
1685 if (rc)
1686 DP_ERR(edev, "Failed to stop VPORT\n");
1687
1688 return rc;
1689}
1690
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001691static int qede_start_txq(struct qede_dev *edev,
1692 struct qede_fastpath *fp,
1693 struct qede_tx_queue *txq, u8 rss_id, u16 sb_idx)
1694{
1695 dma_addr_t phys_table = qed_chain_get_pbl_phys(&txq->tx_pbl);
1696 u32 page_cnt = qed_chain_get_page_cnt(&txq->tx_pbl);
1697 struct qed_queue_start_common_params params;
1698 struct qed_txq_start_ret_params ret_params;
1699 int rc;
1700
1701 memset(&params, 0, sizeof(params));
1702 memset(&ret_params, 0, sizeof(ret_params));
1703
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001704 /* Let the XDP queue share the queue-zone with one of the regular txq.
1705 * We don't really care about its coalescing.
1706 */
1707 if (txq->is_xdp)
1708 params.queue_id = QEDE_TXQ_XDP_TO_IDX(edev, txq);
1709 else
1710 params.queue_id = txq->index;
1711
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001712 params.sb = fp->sb_info->igu_sb_id;
1713 params.sb_idx = sb_idx;
1714
1715 rc = edev->ops->q_tx_start(edev->cdev, rss_id, &params, phys_table,
1716 page_cnt, &ret_params);
1717 if (rc) {
1718 DP_ERR(edev, "Start TXQ #%d failed %d\n", txq->index, rc);
1719 return rc;
1720 }
1721
1722 txq->doorbell_addr = ret_params.p_doorbell;
1723 txq->handle = ret_params.p_handle;
1724
1725 /* Determine the FW consumer address associated */
1726 txq->hw_cons_ptr = &fp->sb_info->sb_virt->pi_array[sb_idx];
1727
1728 /* Prepare the doorbell parameters */
1729 SET_FIELD(txq->tx_db.data.params, ETH_DB_DATA_DEST, DB_DEST_XCM);
1730 SET_FIELD(txq->tx_db.data.params, ETH_DB_DATA_AGG_CMD, DB_AGG_CMD_SET);
1731 SET_FIELD(txq->tx_db.data.params, ETH_DB_DATA_AGG_VAL_SEL,
1732 DQ_XCM_ETH_TX_BD_PROD_CMD);
1733 txq->tx_db.data.agg_flags = DQ_XCM_ETH_DQ_CF_CMD;
1734
1735 return rc;
1736}
1737
Yuval Mintza0d26d52016-06-19 15:18:13 +03001738static int qede_start_queues(struct qede_dev *edev, bool clear_stats)
Yuval Mintz29502192015-10-26 11:02:29 +02001739{
Manish Chopra088c8612016-03-04 12:35:05 -05001740 int vlan_removal_en = 1;
Yuval Mintz29502192015-10-26 11:02:29 +02001741 struct qed_dev *cdev = edev->cdev;
Yuval Mintzfefb0202016-05-11 16:36:19 +03001742 struct qed_dev_info *qed_info = &edev->dev_info.common;
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001743 struct qed_update_vport_params *vport_update_params;
1744 struct qed_queue_start_common_params q_params;
Manish Chopra088c8612016-03-04 12:35:05 -05001745 struct qed_start_vport_params start = {0};
Mintz, Yuval80439a12016-11-29 16:47:02 +02001746 int rc, i;
Yuval Mintz29502192015-10-26 11:02:29 +02001747
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001748 if (!edev->num_queues) {
Yuval Mintz29502192015-10-26 11:02:29 +02001749 DP_ERR(edev,
1750 "Cannot update V-VPORT as active as there are no Rx queues\n");
1751 return -EINVAL;
1752 }
1753
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001754 vport_update_params = vzalloc(sizeof(*vport_update_params));
1755 if (!vport_update_params)
1756 return -ENOMEM;
1757
Sudarsana Reddy Kalluru4c552152017-02-15 10:24:11 +02001758 start.handle_ptp_pkts = !!(edev->ptp);
Manish Chopra55482ed2016-03-04 12:35:06 -05001759 start.gro_enable = !edev->gro_disable;
Manish Chopra088c8612016-03-04 12:35:05 -05001760 start.mtu = edev->ndev->mtu;
1761 start.vport_id = 0;
1762 start.drop_ttl0 = true;
1763 start.remove_inner_vlan = vlan_removal_en;
Yuval Mintz7f7a1442016-07-27 14:45:22 +03001764 start.clear_stats = clear_stats;
Manish Chopra088c8612016-03-04 12:35:05 -05001765
1766 rc = edev->ops->vport_start(cdev, &start);
Yuval Mintz29502192015-10-26 11:02:29 +02001767
1768 if (rc) {
1769 DP_ERR(edev, "Start V-PORT failed %d\n", rc);
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001770 goto out;
Yuval Mintz29502192015-10-26 11:02:29 +02001771 }
1772
1773 DP_VERBOSE(edev, NETIF_MSG_IFUP,
1774 "Start vport ramrod passed, vport_id = %d, MTU = %d, vlan_removal_en = %d\n",
Manish Chopra088c8612016-03-04 12:35:05 -05001775 start.vport_id, edev->ndev->mtu + 0xe, vlan_removal_en);
Yuval Mintz29502192015-10-26 11:02:29 +02001776
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001777 for_each_queue(i) {
Yuval Mintz29502192015-10-26 11:02:29 +02001778 struct qede_fastpath *fp = &edev->fp_array[i];
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001779 dma_addr_t p_phys_table;
1780 u32 page_cnt;
Yuval Mintz29502192015-10-26 11:02:29 +02001781
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001782 if (fp->type & QEDE_FASTPATH_RX) {
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001783 struct qed_rxq_start_ret_params ret_params;
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001784 struct qede_rx_queue *rxq = fp->rxq;
1785 __le16 *val;
Yuval Mintz29502192015-10-26 11:02:29 +02001786
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001787 memset(&ret_params, 0, sizeof(ret_params));
Yuval Mintz29502192015-10-26 11:02:29 +02001788 memset(&q_params, 0, sizeof(q_params));
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001789 q_params.queue_id = rxq->rxq_id;
1790 q_params.vport_id = 0;
1791 q_params.sb = fp->sb_info->igu_sb_id;
1792 q_params.sb_idx = RX_PI;
1793
1794 p_phys_table =
1795 qed_chain_get_pbl_phys(&rxq->rx_comp_ring);
1796 page_cnt = qed_chain_get_page_cnt(&rxq->rx_comp_ring);
1797
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001798 rc = edev->ops->q_rx_start(cdev, i, &q_params,
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001799 rxq->rx_buf_size,
1800 rxq->rx_bd_ring.p_phys_addr,
1801 p_phys_table,
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001802 page_cnt, &ret_params);
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001803 if (rc) {
1804 DP_ERR(edev, "Start RXQ #%d failed %d\n", i,
1805 rc);
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001806 goto out;
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001807 }
1808
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001809 /* Use the return parameters */
1810 rxq->hw_rxq_prod_addr = ret_params.p_prod;
1811 rxq->handle = ret_params.p_handle;
1812
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04001813 val = &fp->sb_info->sb_virt->pi_array[RX_PI];
1814 rxq->hw_cons_ptr = val;
1815
1816 qede_update_rx_prod(edev, rxq);
1817 }
1818
Mintz, Yuval496e0512016-11-29 16:47:09 +02001819 if (fp->type & QEDE_FASTPATH_XDP) {
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001820 rc = qede_start_txq(edev, fp, fp->xdp_tx, i, XDP_PI);
1821 if (rc)
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001822 goto out;
Mintz, Yuvalcb6aeb02016-11-29 16:47:10 +02001823
Mintz, Yuval496e0512016-11-29 16:47:09 +02001824 fp->rxq->xdp_prog = bpf_prog_add(edev->xdp_prog, 1);
1825 if (IS_ERR(fp->rxq->xdp_prog)) {
1826 rc = PTR_ERR(fp->rxq->xdp_prog);
1827 fp->rxq->xdp_prog = NULL;
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001828 goto out;
Mintz, Yuval496e0512016-11-29 16:47:09 +02001829 }
1830 }
1831
Mintz, Yuval80439a12016-11-29 16:47:02 +02001832 if (fp->type & QEDE_FASTPATH_TX) {
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001833 rc = qede_start_txq(edev, fp, fp->txq, i, TX_PI(0));
1834 if (rc)
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001835 goto out;
Yuval Mintz29502192015-10-26 11:02:29 +02001836 }
1837 }
1838
1839 /* Prepare and send the vport enable */
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001840 vport_update_params->vport_id = start.vport_id;
1841 vport_update_params->update_vport_active_flg = 1;
1842 vport_update_params->vport_active_flg = 1;
Yuval Mintz29502192015-10-26 11:02:29 +02001843
Yuval Mintz831bfb0e2016-05-11 16:36:25 +03001844 if ((qed_info->mf_mode == QED_MF_NPAR || pci_num_vf(edev->pdev)) &&
1845 qed_info->tx_switching) {
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001846 vport_update_params->update_tx_switching_flg = 1;
1847 vport_update_params->tx_switching_flg = 1;
Yuval Mintz831bfb0e2016-05-11 16:36:25 +03001848 }
1849
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001850 qede_fill_rss_params(edev, &vport_update_params->rss_params,
1851 &vport_update_params->update_rss_flg);
Sudarsana Reddy Kalluru961acde2016-04-10 12:43:01 +03001852
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001853 rc = edev->ops->vport_update(cdev, vport_update_params);
1854 if (rc)
Yuval Mintz29502192015-10-26 11:02:29 +02001855 DP_ERR(edev, "Update V-PORT failed %d\n", rc);
Yuval Mintz29502192015-10-26 11:02:29 +02001856
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02001857out:
1858 vfree(vport_update_params);
1859 return rc;
Yuval Mintz29502192015-10-26 11:02:29 +02001860}
1861
1862enum qede_unload_mode {
1863 QEDE_UNLOAD_NORMAL,
1864};
1865
Mintz, Yuval567b3c12016-11-29 16:47:05 +02001866static void qede_unload(struct qede_dev *edev, enum qede_unload_mode mode,
1867 bool is_locked)
Yuval Mintz29502192015-10-26 11:02:29 +02001868{
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +02001869 struct qed_link_params link_params;
Yuval Mintz29502192015-10-26 11:02:29 +02001870 int rc;
1871
1872 DP_INFO(edev, "Starting qede unload\n");
1873
Mintz, Yuval567b3c12016-11-29 16:47:05 +02001874 if (!is_locked)
1875 __qede_lock(edev);
1876
Ram Amranicee9fbd2016-10-01 21:59:56 +03001877 qede_roce_dev_event_close(edev);
Sudarsana Kalluru0d8e0aa2015-10-26 11:02:30 +02001878 edev->state = QEDE_STATE_CLOSED;
1879
Sudarsana Reddy Kalluru4c552152017-02-15 10:24:11 +02001880 qede_ptp_stop(edev);
1881
Yuval Mintz29502192015-10-26 11:02:29 +02001882 /* Close OS Tx */
1883 netif_tx_disable(edev->ndev);
1884 netif_carrier_off(edev->ndev);
1885
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +02001886 /* Reset the link */
1887 memset(&link_params, 0, sizeof(link_params));
1888 link_params.link_up = false;
1889 edev->ops->common->set_link(edev->cdev, &link_params);
Yuval Mintz29502192015-10-26 11:02:29 +02001890 rc = qede_stop_queues(edev);
1891 if (rc) {
1892 qede_sync_free_irqs(edev);
1893 goto out;
1894 }
1895
1896 DP_INFO(edev, "Stopped Queues\n");
1897
Sudarsana Reddy Kalluru7c1bfca2016-02-18 17:00:40 +02001898 qede_vlan_mark_nonconfigured(edev);
Yuval Mintz29502192015-10-26 11:02:29 +02001899 edev->ops->fastpath_stop(edev->cdev);
Chopra, Manishe4917d42017-04-13 04:54:45 -07001900#ifdef CONFIG_RFS_ACCEL
1901 if (!IS_VF(edev) && edev->dev_info.common.num_hwfns == 1) {
1902 qede_poll_for_freeing_arfs_filters(edev);
1903 qede_free_arfs(edev);
1904 }
1905#endif
Yuval Mintz29502192015-10-26 11:02:29 +02001906 /* Release the interrupts */
1907 qede_sync_free_irqs(edev);
1908 edev->ops->common->set_fp_int(edev->cdev, 0);
1909
1910 qede_napi_disable_remove(edev);
1911
1912 qede_free_mem_load(edev);
1913 qede_free_fp_array(edev);
1914
1915out:
Mintz, Yuval567b3c12016-11-29 16:47:05 +02001916 if (!is_locked)
1917 __qede_unlock(edev);
Yuval Mintz29502192015-10-26 11:02:29 +02001918 DP_INFO(edev, "Ending qede unload\n");
1919}
1920
1921enum qede_load_mode {
1922 QEDE_LOAD_NORMAL,
Yuval Mintza0d26d52016-06-19 15:18:13 +03001923 QEDE_LOAD_RELOAD,
Yuval Mintz29502192015-10-26 11:02:29 +02001924};
1925
Mintz, Yuval567b3c12016-11-29 16:47:05 +02001926static int qede_load(struct qede_dev *edev, enum qede_load_mode mode,
1927 bool is_locked)
Yuval Mintz29502192015-10-26 11:02:29 +02001928{
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +02001929 struct qed_link_params link_params;
Yuval Mintz29502192015-10-26 11:02:29 +02001930 int rc;
1931
1932 DP_INFO(edev, "Starting qede load\n");
1933
Mintz, Yuval567b3c12016-11-29 16:47:05 +02001934 if (!is_locked)
1935 __qede_lock(edev);
1936
Yuval Mintz29502192015-10-26 11:02:29 +02001937 rc = qede_set_num_queues(edev);
1938 if (rc)
Mintz, Yuval567b3c12016-11-29 16:47:05 +02001939 goto out;
Yuval Mintz29502192015-10-26 11:02:29 +02001940
1941 rc = qede_alloc_fp_array(edev);
1942 if (rc)
Mintz, Yuval567b3c12016-11-29 16:47:05 +02001943 goto out;
Yuval Mintz29502192015-10-26 11:02:29 +02001944
1945 qede_init_fp(edev);
1946
1947 rc = qede_alloc_mem_load(edev);
1948 if (rc)
1949 goto err1;
Mintz, Yuval80439a12016-11-29 16:47:02 +02001950 DP_INFO(edev, "Allocated %d Rx, %d Tx queues\n",
1951 QEDE_RSS_COUNT(edev), QEDE_TSS_COUNT(edev));
Yuval Mintz29502192015-10-26 11:02:29 +02001952
1953 rc = qede_set_real_num_queues(edev);
1954 if (rc)
1955 goto err2;
1956
Chopra, Manishe4917d42017-04-13 04:54:45 -07001957#ifdef CONFIG_RFS_ACCEL
1958 if (!IS_VF(edev) && edev->dev_info.common.num_hwfns == 1) {
1959 rc = qede_alloc_arfs(edev);
1960 if (rc)
1961 DP_NOTICE(edev, "aRFS memory allocation failed\n");
1962 }
1963#endif
Yuval Mintz29502192015-10-26 11:02:29 +02001964 qede_napi_add_enable(edev);
1965 DP_INFO(edev, "Napi added and enabled\n");
1966
1967 rc = qede_setup_irqs(edev);
1968 if (rc)
1969 goto err3;
1970 DP_INFO(edev, "Setup IRQs succeeded\n");
1971
Yuval Mintza0d26d52016-06-19 15:18:13 +03001972 rc = qede_start_queues(edev, mode != QEDE_LOAD_RELOAD);
Yuval Mintz29502192015-10-26 11:02:29 +02001973 if (rc)
1974 goto err4;
1975 DP_INFO(edev, "Start VPORT, RXQ and TXQ succeeded\n");
1976
1977 /* Add primary mac and set Rx filters */
1978 ether_addr_copy(edev->primary_mac, edev->ndev->dev_addr);
1979
Sudarsana Reddy Kalluru7c1bfca2016-02-18 17:00:40 +02001980 /* Program un-configured VLANs */
1981 qede_configure_vlan_filters(edev);
1982
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +02001983 /* Ask for link-up using current configuration */
1984 memset(&link_params, 0, sizeof(link_params));
1985 link_params.link_up = true;
1986 edev->ops->common->set_link(edev->cdev, &link_params);
1987
Ram Amranicee9fbd2016-10-01 21:59:56 +03001988 qede_roce_dev_event_open(edev);
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +02001989
Sudarsana Reddy Kalluru4c552152017-02-15 10:24:11 +02001990 qede_ptp_start(edev, (mode == QEDE_LOAD_NORMAL));
1991
Mintz, Yuval567b3c12016-11-29 16:47:05 +02001992 edev->state = QEDE_STATE_OPEN;
1993
Yuval Mintz29502192015-10-26 11:02:29 +02001994 DP_INFO(edev, "Ending successfully qede load\n");
1995
Yuval Mintz29502192015-10-26 11:02:29 +02001996
Mintz, Yuval567b3c12016-11-29 16:47:05 +02001997 goto out;
Yuval Mintz29502192015-10-26 11:02:29 +02001998err4:
1999 qede_sync_free_irqs(edev);
2000 memset(&edev->int_info.msix_cnt, 0, sizeof(struct qed_int_info));
2001err3:
2002 qede_napi_disable_remove(edev);
2003err2:
2004 qede_free_mem_load(edev);
2005err1:
2006 edev->ops->common->set_fp_int(edev->cdev, 0);
2007 qede_free_fp_array(edev);
Sudarsana Reddy Kalluru9a4d7e82016-08-23 10:56:55 -04002008 edev->num_queues = 0;
2009 edev->fp_num_tx = 0;
2010 edev->fp_num_rx = 0;
Mintz, Yuval567b3c12016-11-29 16:47:05 +02002011out:
2012 if (!is_locked)
2013 __qede_unlock(edev);
2014
Yuval Mintz29502192015-10-26 11:02:29 +02002015 return rc;
2016}
2017
Mintz, Yuval567b3c12016-11-29 16:47:05 +02002018/* 'func' should be able to run between unload and reload assuming interface
2019 * is actually running, or afterwards in case it's currently DOWN.
2020 */
Sudarsana Kalluru133fac02015-10-26 11:02:34 +02002021void qede_reload(struct qede_dev *edev,
Mintz, Yuval567b3c12016-11-29 16:47:05 +02002022 struct qede_reload_args *args, bool is_locked)
Sudarsana Kalluru133fac02015-10-26 11:02:34 +02002023{
Mintz, Yuval567b3c12016-11-29 16:47:05 +02002024 if (!is_locked)
2025 __qede_lock(edev);
2026
2027 /* Since qede_lock is held, internal state wouldn't change even
2028 * if netdev state would start transitioning. Check whether current
2029 * internal configuration indicates device is up, then reload.
Sudarsana Kalluru133fac02015-10-26 11:02:34 +02002030 */
Mintz, Yuval567b3c12016-11-29 16:47:05 +02002031 if (edev->state == QEDE_STATE_OPEN) {
2032 qede_unload(edev, QEDE_UNLOAD_NORMAL, true);
2033 if (args)
2034 args->func(edev, args);
2035 qede_load(edev, QEDE_LOAD_RELOAD, true);
Sudarsana Kalluru133fac02015-10-26 11:02:34 +02002036
Mintz, Yuval567b3c12016-11-29 16:47:05 +02002037 /* Since no one is going to do it for us, re-configure */
2038 qede_config_rx_mode(edev->ndev);
2039 } else if (args) {
2040 args->func(edev, args);
2041 }
Sudarsana Kalluru133fac02015-10-26 11:02:34 +02002042
Mintz, Yuval567b3c12016-11-29 16:47:05 +02002043 if (!is_locked)
2044 __qede_unlock(edev);
Sudarsana Kalluru133fac02015-10-26 11:02:34 +02002045}
2046
Yuval Mintz29502192015-10-26 11:02:29 +02002047/* called with rtnl_lock */
2048static int qede_open(struct net_device *ndev)
2049{
2050 struct qede_dev *edev = netdev_priv(ndev);
Manish Choprab18e1702016-04-14 01:38:30 -04002051 int rc;
Yuval Mintz29502192015-10-26 11:02:29 +02002052
2053 netif_carrier_off(ndev);
2054
2055 edev->ops->common->set_power_state(edev->cdev, PCI_D0);
2056
Mintz, Yuval567b3c12016-11-29 16:47:05 +02002057 rc = qede_load(edev, QEDE_LOAD_NORMAL, false);
Manish Choprab18e1702016-04-14 01:38:30 -04002058 if (rc)
2059 return rc;
2060
Alexander Duyckf9f082a2016-06-16 12:22:57 -07002061 udp_tunnel_get_rx_info(ndev);
2062
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +02002063 edev->ops->common->update_drv_state(edev->cdev, true);
2064
Manish Choprab18e1702016-04-14 01:38:30 -04002065 return 0;
Yuval Mintz29502192015-10-26 11:02:29 +02002066}
2067
2068static int qede_close(struct net_device *ndev)
2069{
2070 struct qede_dev *edev = netdev_priv(ndev);
2071
Mintz, Yuval567b3c12016-11-29 16:47:05 +02002072 qede_unload(edev, QEDE_UNLOAD_NORMAL, false);
Yuval Mintz29502192015-10-26 11:02:29 +02002073
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +02002074 edev->ops->common->update_drv_state(edev->cdev, false);
2075
Yuval Mintz29502192015-10-26 11:02:29 +02002076 return 0;
2077}
Sudarsana Kalluru0d8e0aa2015-10-26 11:02:30 +02002078
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +02002079static void qede_link_update(void *dev, struct qed_link_output *link)
2080{
2081 struct qede_dev *edev = dev;
2082
2083 if (!netif_running(edev->ndev)) {
2084 DP_VERBOSE(edev, NETIF_MSG_LINK, "Interface is not running\n");
2085 return;
2086 }
2087
2088 if (link->link_up) {
Yuval Mintz8e025ae2016-02-24 16:52:47 +02002089 if (!netif_carrier_ok(edev->ndev)) {
2090 DP_NOTICE(edev, "Link is up\n");
2091 netif_tx_start_all_queues(edev->ndev);
2092 netif_carrier_on(edev->ndev);
2093 }
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +02002094 } else {
Yuval Mintz8e025ae2016-02-24 16:52:47 +02002095 if (netif_carrier_ok(edev->ndev)) {
2096 DP_NOTICE(edev, "Link is down\n");
2097 netif_tx_disable(edev->ndev);
2098 netif_carrier_off(edev->ndev);
2099 }
Sudarsana Kallurua2ec6172015-10-26 11:02:32 +02002100 }
2101}