blob: 795e556d4a3f89d70b088189b28dcaae686e6e3f [file] [log] [blame]
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -05001/*
2 * AMD 10Gb Ethernet driver
3 *
4 * This file is available to you under your choice of the following two
5 * licenses:
6 *
7 * License 1: GPLv2
8 *
Lendacky, Thomasced3fca2016-02-17 11:49:28 -06009 * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -050010 *
11 * This file is free software; you may copy, redistribute and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation, either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This file is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 *
24 * This file incorporates work covered by the following copyright and
25 * permission notice:
26 * The Synopsys DWC ETHER XGMAC Software Driver and documentation
27 * (hereinafter "Software") is an unsupported proprietary work of Synopsys,
28 * Inc. unless otherwise expressly agreed to in writing between Synopsys
29 * and you.
30 *
31 * The Software IS NOT an item of Licensed Software or Licensed Product
32 * under any End User Software License Agreement or Agreement for Licensed
33 * Product with Synopsys or any supplement thereto. Permission is hereby
34 * granted, free of charge, to any person obtaining a copy of this software
35 * annotated with this license and the Software, to deal in the Software
36 * without restriction, including without limitation the rights to use,
37 * copy, modify, merge, publish, distribute, sublicense, and/or sell copies
38 * of the Software, and to permit persons to whom the Software is furnished
39 * to do so, subject to the following conditions:
40 *
41 * The above copyright notice and this permission notice shall be included
42 * in all copies or substantial portions of the Software.
43 *
44 * THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
45 * BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
46 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
47 * PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
48 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
49 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
50 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
51 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
52 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
53 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
54 * THE POSSIBILITY OF SUCH DAMAGE.
55 *
56 *
57 * License 2: Modified BSD
58 *
Lendacky, Thomasced3fca2016-02-17 11:49:28 -060059 * Copyright (c) 2014-2016 Advanced Micro Devices, Inc.
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -050060 * All rights reserved.
61 *
62 * Redistribution and use in source and binary forms, with or without
63 * modification, are permitted provided that the following conditions are met:
64 * * Redistributions of source code must retain the above copyright
65 * notice, this list of conditions and the following disclaimer.
66 * * Redistributions in binary form must reproduce the above copyright
67 * notice, this list of conditions and the following disclaimer in the
68 * documentation and/or other materials provided with the distribution.
69 * * Neither the name of Advanced Micro Devices, Inc. nor the
70 * names of its contributors may be used to endorse or promote products
71 * derived from this software without specific prior written permission.
72 *
73 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
74 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
75 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
76 * ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
77 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
78 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
79 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
80 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
81 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
82 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
83 *
84 * This file incorporates work covered by the following copyright and
85 * permission notice:
86 * The Synopsys DWC ETHER XGMAC Software Driver and documentation
87 * (hereinafter "Software") is an unsupported proprietary work of Synopsys,
88 * Inc. unless otherwise expressly agreed to in writing between Synopsys
89 * and you.
90 *
91 * The Software IS NOT an item of Licensed Software or Licensed Product
92 * under any End User Software License Agreement or Agreement for Licensed
93 * Product with Synopsys or any supplement thereto. Permission is hereby
94 * granted, free of charge, to any person obtaining a copy of this software
95 * annotated with this license and the Software, to deal in the Software
96 * without restriction, including without limitation the rights to use,
97 * copy, modify, merge, publish, distribute, sublicense, and/or sell copies
98 * of the Software, and to permit persons to whom the Software is furnished
99 * to do so, subject to the following conditions:
100 *
101 * The above copyright notice and this permission notice shall be included
102 * in all copies or substantial portions of the Software.
103 *
104 * THIS SOFTWARE IS BEING DISTRIBUTED BY SYNOPSYS SOLELY ON AN "AS IS"
105 * BASIS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
106 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
107 * PARTICULAR PURPOSE ARE HEREBY DISCLAIMED. IN NO EVENT SHALL SYNOPSYS
108 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
109 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
110 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
111 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
112 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
113 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
114 * THE POSSIBILITY OF SUCH DAMAGE.
115 */
116
117#include <linux/module.h>
118#include <linux/device.h>
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500119#include <linux/spinlock.h>
120#include <linux/netdevice.h>
121#include <linux/etherdevice.h>
122#include <linux/io.h>
Lendacky, Thomasefbaa822017-08-18 09:02:57 -0500123#include <linux/notifier.h>
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500124
125#include "xgbe.h"
126#include "xgbe-common.h"
127
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500128MODULE_AUTHOR("Tom Lendacky <thomas.lendacky@amd.com>");
129MODULE_LICENSE("Dual BSD/GPL");
130MODULE_VERSION(XGBE_DRV_VERSION);
131MODULE_DESCRIPTION(XGBE_DRV_DESC);
132
Lendacky, Thomas34bf65d2015-05-14 11:44:03 -0500133static int debug = -1;
Joe Perchesd3757ba2018-03-23 16:34:44 -0700134module_param(debug, int, 0644);
Lendacky, Thomas34bf65d2015-05-14 11:44:03 -0500135MODULE_PARM_DESC(debug, " Network interface message level setting");
136
137static const u32 default_msg_level = (NETIF_MSG_LINK | NETIF_MSG_IFDOWN |
138 NETIF_MSG_IFUP);
139
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500140static void xgbe_default_config(struct xgbe_prv_data *pdata)
141{
142 DBGPR("-->xgbe_default_config\n");
143
Lendacky, Thomas6f595952017-06-28 13:43:26 -0500144 pdata->blen = DMA_SBMR_BLEN_64;
Lendacky, Thomas7e1e6b82017-06-28 13:43:18 -0500145 pdata->pbl = DMA_PBL_128;
Lendacky, Thomas6f595952017-06-28 13:43:26 -0500146 pdata->aal = 1;
147 pdata->rd_osr_limit = 8;
148 pdata->wr_osr_limit = 8;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500149 pdata->tx_sf_mode = MTL_TSF_ENABLE;
150 pdata->tx_threshold = MTL_TX_THRESHOLD_64;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500151 pdata->tx_osp_mode = DMA_OSP_ENABLE;
152 pdata->rx_sf_mode = MTL_RSF_DISABLE;
153 pdata->rx_threshold = MTL_RX_THRESHOLD_64;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500154 pdata->pause_autoneg = 1;
155 pdata->tx_pause = 1;
156 pdata->rx_pause = 1;
Lendacky, Thomas916102c2015-01-16 12:46:45 -0600157 pdata->phy_speed = SPEED_UNKNOWN;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500158 pdata->power_down = 0;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500159
160 DBGPR("<--xgbe_default_config\n");
161}
162
163static void xgbe_init_all_fptrs(struct xgbe_prv_data *pdata)
164{
165 xgbe_init_function_ptrs_dev(&pdata->hw_if);
Lendacky, Thomas7c12aa02015-05-14 11:44:15 -0500166 xgbe_init_function_ptrs_phy(&pdata->phy_if);
Lendacky, Thomas5ab1dcd2016-11-10 17:10:36 -0600167 xgbe_init_function_ptrs_i2c(&pdata->i2c_if);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500168 xgbe_init_function_ptrs_desc(&pdata->desc_if);
Lendacky, Thomase57f7a32016-11-03 13:18:27 -0500169
170 pdata->vdata->init_function_ptrs_phy_impl(&pdata->phy_if);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500171}
172
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500173struct xgbe_prv_data *xgbe_alloc_pdata(struct device *dev)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500174{
175 struct xgbe_prv_data *pdata;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500176 struct net_device *netdev;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500177
178 netdev = alloc_etherdev_mq(sizeof(struct xgbe_prv_data),
Lendacky, Thomasd5c48582014-06-09 09:19:32 -0500179 XGBE_MAX_DMA_CHANNELS);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500180 if (!netdev) {
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500181 dev_err(dev, "alloc_etherdev_mq failed\n");
182 return ERR_PTR(-ENOMEM);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500183 }
184 SET_NETDEV_DEV(netdev, dev);
185 pdata = netdev_priv(netdev);
186 pdata->netdev = netdev;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500187 pdata->dev = dev;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500188
189 spin_lock_init(&pdata->lock);
Lendacky, Thomasced3fca2016-02-17 11:49:28 -0600190 spin_lock_init(&pdata->xpcs_lock);
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -0600191 mutex_init(&pdata->rss_mutex);
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500192 spin_lock_init(&pdata->tstamp_lock);
Lendacky, Thomas5ab1dcd2016-11-10 17:10:36 -0600193 mutex_init(&pdata->i2c_mutex);
194 init_completion(&pdata->i2c_complete);
Lendacky, Thomas732f2ab2016-11-10 17:11:14 -0600195 init_completion(&pdata->mdio_complete);
Lendacky, Thomas1a510cc2017-08-18 09:04:04 -0500196 INIT_LIST_HEAD(&pdata->vxlan_ports);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500197
Lendacky, Thomas34bf65d2015-05-14 11:44:03 -0500198 pdata->msg_enable = netif_msg_init(debug, default_msg_level);
199
Lendacky, Thomas7c12aa02015-05-14 11:44:15 -0500200 set_bit(XGBE_DOWN, &pdata->dev_state);
Lendacky, Thomase78332b2016-11-10 17:10:26 -0600201 set_bit(XGBE_STOPPED, &pdata->dev_state);
Lendacky, Thomas7c12aa02015-05-14 11:44:15 -0500202
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500203 return pdata;
204}
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600205
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500206void xgbe_free_pdata(struct xgbe_prv_data *pdata)
207{
208 struct net_device *netdev = pdata->netdev;
Lendacky, Thomase57f7a32016-11-03 13:18:27 -0500209
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500210 free_netdev(netdev);
211}
212
213void xgbe_set_counts(struct xgbe_prv_data *pdata)
214{
215 /* Set all the function pointers */
216 xgbe_init_all_fptrs(pdata);
217
218 /* Populate the hardware features */
219 xgbe_get_all_hw_features(pdata);
220
221 /* Set default max values if not provided */
222 if (!pdata->tx_max_channel_count)
223 pdata->tx_max_channel_count = pdata->hw_feat.tx_ch_cnt;
224 if (!pdata->rx_max_channel_count)
225 pdata->rx_max_channel_count = pdata->hw_feat.rx_ch_cnt;
226
227 if (!pdata->tx_max_q_count)
228 pdata->tx_max_q_count = pdata->hw_feat.tx_q_cnt;
229 if (!pdata->rx_max_q_count)
230 pdata->rx_max_q_count = pdata->hw_feat.rx_q_cnt;
231
232 /* Calculate the number of Tx and Rx rings to be created
233 * -Tx (DMA) Channels map 1-to-1 to Tx Queues so set
234 * the number of Tx queues to the number of Tx channels
235 * enabled
236 * -Rx (DMA) Channels do not map 1-to-1 so use the actual
237 * number of Rx queues or maximum allowed
238 */
239 pdata->tx_ring_count = min_t(unsigned int, num_online_cpus(),
240 pdata->hw_feat.tx_ch_cnt);
241 pdata->tx_ring_count = min_t(unsigned int, pdata->tx_ring_count,
242 pdata->tx_max_channel_count);
243 pdata->tx_ring_count = min_t(unsigned int, pdata->tx_ring_count,
244 pdata->tx_max_q_count);
245
246 pdata->tx_q_count = pdata->tx_ring_count;
247
Lendacky, Thomas8d6b2e92016-11-10 17:10:05 -0600248 pdata->rx_ring_count = min_t(unsigned int, num_online_cpus(),
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500249 pdata->hw_feat.rx_ch_cnt);
250 pdata->rx_ring_count = min_t(unsigned int, pdata->rx_ring_count,
251 pdata->rx_max_channel_count);
252
253 pdata->rx_q_count = min_t(unsigned int, pdata->hw_feat.rx_q_cnt,
254 pdata->rx_max_q_count);
255
256 if (netif_msg_probe(pdata)) {
257 dev_dbg(pdata->dev, "TX/RX DMA channel count = %u/%u\n",
258 pdata->tx_ring_count, pdata->rx_ring_count);
259 dev_dbg(pdata->dev, "TX/RX hardware queue count = %u/%u\n",
260 pdata->tx_q_count, pdata->rx_q_count);
Lendacky, Thomas7c12aa02015-05-14 11:44:15 -0500261 }
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500262}
Lendacky, Thomas7c12aa02015-05-14 11:44:15 -0500263
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500264int xgbe_config_netdev(struct xgbe_prv_data *pdata)
265{
266 struct net_device *netdev = pdata->netdev;
267 struct device *dev = pdata->dev;
268 unsigned int i;
269 int ret;
Lendacky, Thomas7c12aa02015-05-14 11:44:15 -0500270
Lendacky, Thomas9227dc52014-11-04 16:06:56 -0600271 netdev->irq = pdata->dev_irq;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500272 netdev->base_addr = (unsigned long)pdata->xgmac_regs;
Lendacky, Thomas82a19032015-01-16 12:47:16 -0600273 memcpy(netdev->dev_addr, pdata->mac_addr, netdev->addr_len);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500274
Lendacky, Thomase78332b2016-11-10 17:10:26 -0600275 /* Initialize ECC timestamps */
276 pdata->tx_sec_period = jiffies;
277 pdata->tx_ded_period = jiffies;
278 pdata->rx_sec_period = jiffies;
279 pdata->rx_ded_period = jiffies;
280 pdata->desc_sec_period = jiffies;
281 pdata->desc_ded_period = jiffies;
282
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500283 /* Issue software reset to device */
Lendacky, Thomas42d452d2017-06-28 13:42:16 -0500284 ret = pdata->hw_if.exit(pdata);
285 if (ret) {
286 dev_err(dev, "software reset failed\n");
287 return ret;
288 }
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500289
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500290 /* Set default configuration data */
291 xgbe_default_config(pdata);
292
Lendacky, Thomas386d3252015-03-20 11:50:22 -0500293 /* Set the DMA mask */
Lendacky, Thomas386d3252015-03-20 11:50:22 -0500294 ret = dma_set_mask_and_coherent(dev,
295 DMA_BIT_MASK(pdata->hw_feat.dma_width));
296 if (ret) {
297 dev_err(dev, "dma_set_mask_and_coherent failed\n");
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500298 return ret;
Lendacky, Thomas386d3252015-03-20 11:50:22 -0500299 }
300
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500301 /* Set default max values if not provided */
302 if (!pdata->tx_max_fifo_size)
303 pdata->tx_max_fifo_size = pdata->hw_feat.tx_fifo_size;
304 if (!pdata->rx_max_fifo_size)
305 pdata->rx_max_fifo_size = pdata->hw_feat.rx_fifo_size;
306
307 /* Set and validate the number of descriptors for a ring */
308 BUILD_BUG_ON_NOT_POWER_OF_2(XGBE_TX_DESC_CNT);
309 pdata->tx_desc_count = XGBE_TX_DESC_CNT;
310
311 BUILD_BUG_ON_NOT_POWER_OF_2(XGBE_RX_DESC_CNT);
312 pdata->rx_desc_count = XGBE_RX_DESC_CNT;
313
Lendacky, Thomas47f164d2016-11-10 17:09:55 -0600314 /* Adjust the number of queues based on interrupts assigned */
315 if (pdata->channel_irq_count) {
316 pdata->tx_ring_count = min_t(unsigned int, pdata->tx_ring_count,
317 pdata->channel_irq_count);
318 pdata->rx_ring_count = min_t(unsigned int, pdata->rx_ring_count,
319 pdata->channel_irq_count);
320
321 if (netif_msg_probe(pdata))
322 dev_dbg(pdata->dev,
323 "adjusted TX/RX DMA channel count = %u/%u\n",
324 pdata->tx_ring_count, pdata->rx_ring_count);
325 }
326
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500327 /* Set the number of queues */
Wei Yongjun332cfc82014-07-23 08:59:40 +0800328 ret = netif_set_real_num_tx_queues(netdev, pdata->tx_ring_count);
329 if (ret) {
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500330 dev_err(dev, "error setting real tx queue count\n");
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500331 return ret;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500332 }
333
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500334 ret = netif_set_real_num_rx_queues(netdev, pdata->rx_ring_count);
335 if (ret) {
336 dev_err(dev, "error setting real rx queue count\n");
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500337 return ret;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500338 }
339
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -0600340 /* Initialize RSS hash key and lookup table */
Eric Dumazetb2306302014-11-16 06:23:06 -0800341 netdev_rss_key_fill(pdata->rss_key, sizeof(pdata->rss_key));
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -0600342
343 for (i = 0; i < XGBE_RSS_MAX_TABLE_SIZE; i++)
344 XGMAC_SET_BITS(pdata->rss_table[i], MAC_RSSDR, DMCH,
345 i % pdata->rx_ring_count);
346
347 XGMAC_SET_BITS(pdata->rss_options, MAC_RSSCR, IP2TE, 1);
348 XGMAC_SET_BITS(pdata->rss_options, MAC_RSSCR, TCP4TE, 1);
349 XGMAC_SET_BITS(pdata->rss_options, MAC_RSSCR, UDP4TE, 1);
350
Lendacky, Thomas7c12aa02015-05-14 11:44:15 -0500351 /* Call MDIO/PHY initialization routine */
Lendacky, Thomase57f7a32016-11-03 13:18:27 -0500352 ret = pdata->phy_if.phy_init(pdata);
353 if (ret)
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500354 return ret;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500355
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500356 /* Set device operations */
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500357 netdev->netdev_ops = xgbe_get_netdev_ops();
358 netdev->ethtool_ops = xgbe_get_ethtool_ops();
Lendacky, Thomasfca2d992014-07-29 08:57:55 -0500359#ifdef CONFIG_AMD_XGBE_DCB
360 netdev->dcbnl_ops = xgbe_get_dcbnl_ops();
361#endif
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500362
363 /* Set device features */
364 netdev->hw_features = NETIF_F_SG |
365 NETIF_F_IP_CSUM |
366 NETIF_F_IPV6_CSUM |
367 NETIF_F_RXCSUM |
368 NETIF_F_TSO |
369 NETIF_F_TSO6 |
370 NETIF_F_GRO |
371 NETIF_F_HW_VLAN_CTAG_RX |
Lendacky, Thomas801c62d2014-06-24 16:19:24 -0500372 NETIF_F_HW_VLAN_CTAG_TX |
373 NETIF_F_HW_VLAN_CTAG_FILTER;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500374
Lendacky, Thomas5b9dfe22014-11-04 16:07:02 -0600375 if (pdata->hw_feat.rss)
376 netdev->hw_features |= NETIF_F_RXHASH;
377
Lendacky, Thomas1a510cc2017-08-18 09:04:04 -0500378 if (pdata->hw_feat.vxn) {
379 netdev->hw_enc_features = NETIF_F_SG |
380 NETIF_F_IP_CSUM |
381 NETIF_F_IPV6_CSUM |
382 NETIF_F_RXCSUM |
383 NETIF_F_TSO |
384 NETIF_F_TSO6 |
385 NETIF_F_GRO |
386 NETIF_F_GSO_UDP_TUNNEL |
387 NETIF_F_GSO_UDP_TUNNEL_CSUM |
388 NETIF_F_RX_UDP_TUNNEL_PORT;
389
390 netdev->hw_features |= NETIF_F_GSO_UDP_TUNNEL |
391 NETIF_F_GSO_UDP_TUNNEL_CSUM |
392 NETIF_F_RX_UDP_TUNNEL_PORT;
393
394 pdata->vxlan_offloads_set = 1;
395 pdata->vxlan_features = NETIF_F_GSO_UDP_TUNNEL |
396 NETIF_F_GSO_UDP_TUNNEL_CSUM |
397 NETIF_F_RX_UDP_TUNNEL_PORT;
398 }
399
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500400 netdev->vlan_features |= NETIF_F_SG |
401 NETIF_F_IP_CSUM |
402 NETIF_F_IPV6_CSUM |
403 NETIF_F_TSO |
404 NETIF_F_TSO6;
405
406 netdev->features |= netdev->hw_features;
407 pdata->netdev_features = netdev->features;
408
Lendacky, Thomasb85e4d82014-06-24 16:19:29 -0500409 netdev->priv_flags |= IFF_UNICAST_FLT;
Jarod Wilsond894be52016-10-20 13:55:16 -0400410 netdev->min_mtu = 0;
411 netdev->max_mtu = XGMAC_JUMBO_PACKET_MTU;
Lendacky, Thomasb85e4d82014-06-24 16:19:29 -0500412
Lendacky, Thomasa8373f12015-04-09 12:12:03 -0500413 /* Use default watchdog timeout */
414 netdev->watchdog_timeo = 0;
415
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500416 xgbe_init_rx_coalesce(pdata);
417 xgbe_init_tx_coalesce(pdata);
418
419 netif_carrier_off(netdev);
420 ret = register_netdev(netdev);
421 if (ret) {
422 dev_err(dev, "net device registration failed\n");
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500423 return ret;
Lendacky, Thomas7c12aa02015-05-14 11:44:15 -0500424 }
425
Nicolas Pitred1cbfd72016-11-11 00:10:07 -0500426 if (IS_REACHABLE(CONFIG_PTP_1588_CLOCK))
427 xgbe_ptp_register(pdata);
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500428
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500429 xgbe_debugfs_init(pdata);
430
Lendacky, Thomas47f164d2016-11-10 17:09:55 -0600431 netif_dbg(pdata, drv, pdata->netdev, "%u Tx software queues\n",
432 pdata->tx_ring_count);
433 netif_dbg(pdata, drv, pdata->netdev, "%u Rx software queues\n",
434 pdata->rx_ring_count);
435
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500436 return 0;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500437}
438
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500439void xgbe_deconfig_netdev(struct xgbe_prv_data *pdata)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500440{
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500441 struct net_device *netdev = pdata->netdev;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500442
443 xgbe_debugfs_exit(pdata);
444
Nicolas Pitred1cbfd72016-11-11 00:10:07 -0500445 if (IS_REACHABLE(CONFIG_PTP_1588_CLOCK))
446 xgbe_ptp_unregister(pdata);
Lendacky, Thomas23e4eef2014-07-29 08:57:19 -0500447
Lendacky, Thomas25ff96a2017-08-18 09:02:40 -0500448 unregister_netdev(netdev);
449
Lendacky, Thomase57f7a32016-11-03 13:18:27 -0500450 pdata->phy_if.phy_exit(pdata);
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500451}
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500452
Lendacky, Thomasefbaa822017-08-18 09:02:57 -0500453static int xgbe_netdev_event(struct notifier_block *nb, unsigned long event,
454 void *data)
455{
456 struct net_device *netdev = netdev_notifier_info_to_dev(data);
457 struct xgbe_prv_data *pdata = netdev_priv(netdev);
458
459 if (netdev->netdev_ops != xgbe_get_netdev_ops())
460 goto out;
461
462 switch (event) {
463 case NETDEV_CHANGENAME:
464 xgbe_debugfs_rename(pdata);
465 break;
466
467 default:
468 break;
469 }
470
471out:
472 return NOTIFY_DONE;
473}
474
475static struct notifier_block xgbe_netdev_notifier = {
476 .notifier_call = xgbe_netdev_event,
477};
478
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500479static int __init xgbe_mod_init(void)
480{
481 int ret;
Lendacky, Thomase57f7a32016-11-03 13:18:27 -0500482
Lendacky, Thomasefbaa822017-08-18 09:02:57 -0500483 ret = register_netdevice_notifier(&xgbe_netdev_notifier);
484 if (ret)
485 return ret;
486
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500487 ret = xgbe_platform_init();
488 if (ret)
489 return ret;
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500490
Lendacky, Thomas47f164d2016-11-10 17:09:55 -0600491 ret = xgbe_pci_init();
492 if (ret)
493 return ret;
494
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500495 return 0;
496}
497
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500498static void __exit xgbe_mod_exit(void)
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500499{
Lendacky, Thomas47f164d2016-11-10 17:09:55 -0600500 xgbe_pci_exit();
501
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500502 xgbe_platform_exit();
Lendacky, Thomasefbaa822017-08-18 09:02:57 -0500503
504 unregister_netdevice_notifier(&xgbe_netdev_notifier);
Lendacky, Thomasc5aa9e32014-06-05 09:15:06 -0500505}
506
Lendacky, Thomasbd8255d2016-11-03 13:19:27 -0500507module_init(xgbe_mod_init);
508module_exit(xgbe_mod_exit);