1 // SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause
2
3 /* Gigabit Ethernet driver for Mellanox BlueField SoC
4 *
5 * Copyright (C) 2020-2021 NVIDIA CORPORATION & AFFILIATES
6 */
7
8 #include <linux/acpi.h>
9 #include <linux/device.h>
10 #include <linux/dma-mapping.h>
11 #include <linux/etherdevice.h>
12 #include <linux/interrupt.h>
13 #include <linux/iopoll.h>
14 #include <linux/module.h>
15 #include <linux/phy.h>
16 #include <linux/platform_device.h>
17 #include <linux/skbuff.h>
18
19 #include "mlxbf_gige.h"
20 #include "mlxbf_gige_regs.h"
21
22 /* Allocate SKB whose payload pointer aligns with the Bluefield
23 * hardware DMA limitation, i.e. DMA operation can't cross
24 * a 4KB boundary. A maximum packet size of 2KB is assumed in the
25 * alignment formula. The alignment logic overallocates an SKB,
26 * and then adjusts the headroom so that the SKB data pointer is
27 * naturally aligned to a 2KB boundary.
28 */
mlxbf_gige_alloc_skb(struct mlxbf_gige * priv,unsigned int map_len,dma_addr_t * buf_dma,enum dma_data_direction dir)29 struct sk_buff *mlxbf_gige_alloc_skb(struct mlxbf_gige *priv,
30 unsigned int map_len,
31 dma_addr_t *buf_dma,
32 enum dma_data_direction dir)
33 {
34 struct sk_buff *skb;
35 u64 addr, offset;
36
37 /* Overallocate the SKB so that any headroom adjustment (to
38 * provide 2KB natural alignment) does not exceed payload area
39 */
40 skb = netdev_alloc_skb(priv->netdev, MLXBF_GIGE_DEFAULT_BUF_SZ * 2);
41 if (!skb)
42 return NULL;
43
44 /* Adjust the headroom so that skb->data is naturally aligned to
45 * a 2KB boundary, which is the maximum packet size supported.
46 */
47 addr = (long)skb->data;
48 offset = (addr + MLXBF_GIGE_DEFAULT_BUF_SZ - 1) &
49 ~(MLXBF_GIGE_DEFAULT_BUF_SZ - 1);
50 offset -= addr;
51 if (offset)
52 skb_reserve(skb, offset);
53
54 /* Return streaming DMA mapping to caller */
55 *buf_dma = dma_map_single(priv->dev, skb->data, map_len, dir);
56 if (dma_mapping_error(priv->dev, *buf_dma)) {
57 dev_kfree_skb(skb);
58 *buf_dma = (dma_addr_t)0;
59 return NULL;
60 }
61
62 return skb;
63 }
64
mlxbf_gige_initial_mac(struct mlxbf_gige * priv)65 static void mlxbf_gige_initial_mac(struct mlxbf_gige *priv)
66 {
67 u8 mac[ETH_ALEN];
68 u64 local_mac;
69
70 eth_zero_addr(mac);
71 mlxbf_gige_get_mac_rx_filter(priv, MLXBF_GIGE_LOCAL_MAC_FILTER_IDX,
72 &local_mac);
73 u64_to_ether_addr(local_mac, mac);
74
75 if (is_valid_ether_addr(mac)) {
76 eth_hw_addr_set(priv->netdev, mac);
77 } else {
78 /* Provide a random MAC if for some reason the device has
79 * not been configured with a valid MAC address already.
80 */
81 eth_hw_addr_random(priv->netdev);
82 }
83
84 local_mac = ether_addr_to_u64(priv->netdev->dev_addr);
85 mlxbf_gige_set_mac_rx_filter(priv, MLXBF_GIGE_LOCAL_MAC_FILTER_IDX,
86 local_mac);
87 }
88
mlxbf_gige_cache_stats(struct mlxbf_gige * priv)89 static void mlxbf_gige_cache_stats(struct mlxbf_gige *priv)
90 {
91 struct mlxbf_gige_stats *p;
92
93 /* Cache stats that will be cleared by clean port operation */
94 p = &priv->stats;
95 p->rx_din_dropped_pkts += readq(priv->base +
96 MLXBF_GIGE_RX_DIN_DROP_COUNTER);
97 p->rx_filter_passed_pkts += readq(priv->base +
98 MLXBF_GIGE_RX_PASS_COUNTER_ALL);
99 p->rx_filter_discard_pkts += readq(priv->base +
100 MLXBF_GIGE_RX_DISC_COUNTER_ALL);
101 }
102
mlxbf_gige_clean_port(struct mlxbf_gige * priv)103 static int mlxbf_gige_clean_port(struct mlxbf_gige *priv)
104 {
105 u64 control;
106 u64 temp;
107 int err;
108
109 /* Set the CLEAN_PORT_EN bit to trigger SW reset */
110 control = readq(priv->base + MLXBF_GIGE_CONTROL);
111 control |= MLXBF_GIGE_CONTROL_CLEAN_PORT_EN;
112 writeq(control, priv->base + MLXBF_GIGE_CONTROL);
113
114 /* Ensure completion of "clean port" write before polling status */
115 mb();
116
117 err = readq_poll_timeout_atomic(priv->base + MLXBF_GIGE_STATUS, temp,
118 (temp & MLXBF_GIGE_STATUS_READY),
119 100, 100000);
120
121 /* Clear the CLEAN_PORT_EN bit at end of this loop */
122 control = readq(priv->base + MLXBF_GIGE_CONTROL);
123 control &= ~MLXBF_GIGE_CONTROL_CLEAN_PORT_EN;
124 writeq(control, priv->base + MLXBF_GIGE_CONTROL);
125
126 return err;
127 }
128
mlxbf_gige_open(struct net_device * netdev)129 static int mlxbf_gige_open(struct net_device *netdev)
130 {
131 struct mlxbf_gige *priv = netdev_priv(netdev);
132 struct phy_device *phydev = netdev->phydev;
133 u64 int_en;
134 int err;
135
136 err = mlxbf_gige_request_irqs(priv);
137 if (err)
138 return err;
139 mlxbf_gige_cache_stats(priv);
140 err = mlxbf_gige_clean_port(priv);
141 if (err)
142 goto free_irqs;
143
144 /* Clear driver's valid_polarity to match hardware,
145 * since the above call to clean_port() resets the
146 * receive polarity used by hardware.
147 */
148 priv->valid_polarity = 0;
149
150 err = mlxbf_gige_rx_init(priv);
151 if (err)
152 goto free_irqs;
153 err = mlxbf_gige_tx_init(priv);
154 if (err)
155 goto rx_deinit;
156
157 phy_start(phydev);
158
159 netif_napi_add(netdev, &priv->napi, mlxbf_gige_poll);
160 napi_enable(&priv->napi);
161 netif_start_queue(netdev);
162
163 /* Set bits in INT_EN that we care about */
164 int_en = MLXBF_GIGE_INT_EN_HW_ACCESS_ERROR |
165 MLXBF_GIGE_INT_EN_TX_CHECKSUM_INPUTS |
166 MLXBF_GIGE_INT_EN_TX_SMALL_FRAME_SIZE |
167 MLXBF_GIGE_INT_EN_TX_PI_CI_EXCEED_WQ_SIZE |
168 MLXBF_GIGE_INT_EN_SW_CONFIG_ERROR |
169 MLXBF_GIGE_INT_EN_SW_ACCESS_ERROR |
170 MLXBF_GIGE_INT_EN_RX_RECEIVE_PACKET;
171
172 /* Ensure completion of all initialization before enabling interrupts */
173 mb();
174
175 writeq(int_en, priv->base + MLXBF_GIGE_INT_EN);
176
177 return 0;
178
179 rx_deinit:
180 mlxbf_gige_rx_deinit(priv);
181
182 free_irqs:
183 mlxbf_gige_free_irqs(priv);
184 return err;
185 }
186
mlxbf_gige_stop(struct net_device * netdev)187 static int mlxbf_gige_stop(struct net_device *netdev)
188 {
189 struct mlxbf_gige *priv = netdev_priv(netdev);
190
191 writeq(0, priv->base + MLXBF_GIGE_INT_EN);
192 netif_stop_queue(netdev);
193 napi_disable(&priv->napi);
194 netif_napi_del(&priv->napi);
195 mlxbf_gige_free_irqs(priv);
196
197 phy_stop(netdev->phydev);
198
199 mlxbf_gige_rx_deinit(priv);
200 mlxbf_gige_tx_deinit(priv);
201 mlxbf_gige_cache_stats(priv);
202 mlxbf_gige_clean_port(priv);
203
204 return 0;
205 }
206
mlxbf_gige_eth_ioctl(struct net_device * netdev,struct ifreq * ifr,int cmd)207 static int mlxbf_gige_eth_ioctl(struct net_device *netdev,
208 struct ifreq *ifr, int cmd)
209 {
210 if (!(netif_running(netdev)))
211 return -EINVAL;
212
213 return phy_mii_ioctl(netdev->phydev, ifr, cmd);
214 }
215
mlxbf_gige_set_rx_mode(struct net_device * netdev)216 static void mlxbf_gige_set_rx_mode(struct net_device *netdev)
217 {
218 struct mlxbf_gige *priv = netdev_priv(netdev);
219 bool new_promisc_enabled;
220
221 new_promisc_enabled = netdev->flags & IFF_PROMISC;
222
223 /* Only write to the hardware registers if the new setting
224 * of promiscuous mode is different from the current one.
225 */
226 if (new_promisc_enabled != priv->promisc_enabled) {
227 priv->promisc_enabled = new_promisc_enabled;
228
229 if (new_promisc_enabled)
230 mlxbf_gige_enable_promisc(priv);
231 else
232 mlxbf_gige_disable_promisc(priv);
233 }
234 }
235
mlxbf_gige_get_stats64(struct net_device * netdev,struct rtnl_link_stats64 * stats)236 static void mlxbf_gige_get_stats64(struct net_device *netdev,
237 struct rtnl_link_stats64 *stats)
238 {
239 struct mlxbf_gige *priv = netdev_priv(netdev);
240
241 netdev_stats_to_stats64(stats, &netdev->stats);
242
243 stats->rx_length_errors = priv->stats.rx_truncate_errors;
244 stats->rx_fifo_errors = priv->stats.rx_din_dropped_pkts +
245 readq(priv->base + MLXBF_GIGE_RX_DIN_DROP_COUNTER);
246 stats->rx_crc_errors = priv->stats.rx_mac_errors;
247 stats->rx_errors = stats->rx_length_errors +
248 stats->rx_fifo_errors +
249 stats->rx_crc_errors;
250
251 stats->tx_fifo_errors = priv->stats.tx_fifo_full;
252 stats->tx_errors = stats->tx_fifo_errors;
253 }
254
255 static const struct net_device_ops mlxbf_gige_netdev_ops = {
256 .ndo_open = mlxbf_gige_open,
257 .ndo_stop = mlxbf_gige_stop,
258 .ndo_start_xmit = mlxbf_gige_start_xmit,
259 .ndo_set_mac_address = eth_mac_addr,
260 .ndo_validate_addr = eth_validate_addr,
261 .ndo_eth_ioctl = mlxbf_gige_eth_ioctl,
262 .ndo_set_rx_mode = mlxbf_gige_set_rx_mode,
263 .ndo_get_stats64 = mlxbf_gige_get_stats64,
264 };
265
mlxbf_gige_adjust_link(struct net_device * netdev)266 static void mlxbf_gige_adjust_link(struct net_device *netdev)
267 {
268 struct phy_device *phydev = netdev->phydev;
269
270 phy_print_status(phydev);
271 }
272
mlxbf_gige_probe(struct platform_device * pdev)273 static int mlxbf_gige_probe(struct platform_device *pdev)
274 {
275 struct phy_device *phydev;
276 struct net_device *netdev;
277 struct mlxbf_gige *priv;
278 void __iomem *llu_base;
279 void __iomem *plu_base;
280 void __iomem *base;
281 int addr, phy_irq;
282 u64 control;
283 int err;
284
285 base = devm_platform_ioremap_resource(pdev, MLXBF_GIGE_RES_MAC);
286 if (IS_ERR(base))
287 return PTR_ERR(base);
288
289 llu_base = devm_platform_ioremap_resource(pdev, MLXBF_GIGE_RES_LLU);
290 if (IS_ERR(llu_base))
291 return PTR_ERR(llu_base);
292
293 plu_base = devm_platform_ioremap_resource(pdev, MLXBF_GIGE_RES_PLU);
294 if (IS_ERR(plu_base))
295 return PTR_ERR(plu_base);
296
297 /* Perform general init of GigE block */
298 control = readq(base + MLXBF_GIGE_CONTROL);
299 control |= MLXBF_GIGE_CONTROL_PORT_EN;
300 writeq(control, base + MLXBF_GIGE_CONTROL);
301
302 netdev = devm_alloc_etherdev(&pdev->dev, sizeof(*priv));
303 if (!netdev)
304 return -ENOMEM;
305
306 SET_NETDEV_DEV(netdev, &pdev->dev);
307 netdev->netdev_ops = &mlxbf_gige_netdev_ops;
308 netdev->ethtool_ops = &mlxbf_gige_ethtool_ops;
309 priv = netdev_priv(netdev);
310 priv->netdev = netdev;
311
312 platform_set_drvdata(pdev, priv);
313 priv->dev = &pdev->dev;
314 priv->pdev = pdev;
315
316 spin_lock_init(&priv->lock);
317
318 /* Attach MDIO device */
319 err = mlxbf_gige_mdio_probe(pdev, priv);
320 if (err)
321 return err;
322
323 priv->base = base;
324 priv->llu_base = llu_base;
325 priv->plu_base = plu_base;
326
327 priv->rx_q_entries = MLXBF_GIGE_DEFAULT_RXQ_SZ;
328 priv->tx_q_entries = MLXBF_GIGE_DEFAULT_TXQ_SZ;
329
330 /* Write initial MAC address to hardware */
331 mlxbf_gige_initial_mac(priv);
332
333 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
334 if (err) {
335 dev_err(&pdev->dev, "DMA configuration failed: 0x%x\n", err);
336 goto out;
337 }
338
339 priv->error_irq = platform_get_irq(pdev, MLXBF_GIGE_ERROR_INTR_IDX);
340 priv->rx_irq = platform_get_irq(pdev, MLXBF_GIGE_RECEIVE_PKT_INTR_IDX);
341 priv->llu_plu_irq = platform_get_irq(pdev, MLXBF_GIGE_LLU_PLU_INTR_IDX);
342
343 phy_irq = acpi_dev_gpio_irq_get_by(ACPI_COMPANION(&pdev->dev), "phy-gpios", 0);
344 if (phy_irq < 0) {
345 dev_err(&pdev->dev, "Error getting PHY irq. Use polling instead");
346 phy_irq = PHY_POLL;
347 }
348
349 phydev = phy_find_first(priv->mdiobus);
350 if (!phydev) {
351 err = -ENODEV;
352 goto out;
353 }
354
355 addr = phydev->mdio.addr;
356 priv->mdiobus->irq[addr] = phy_irq;
357 phydev->irq = phy_irq;
358
359 err = phy_connect_direct(netdev, phydev,
360 mlxbf_gige_adjust_link,
361 PHY_INTERFACE_MODE_GMII);
362 if (err) {
363 dev_err(&pdev->dev, "Could not attach to PHY\n");
364 goto out;
365 }
366
367 /* MAC only supports 1000T full duplex mode */
368 phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
369 phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_100baseT_Full_BIT);
370 phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_100baseT_Half_BIT);
371 phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_10baseT_Full_BIT);
372 phy_remove_link_mode(phydev, ETHTOOL_LINK_MODE_10baseT_Half_BIT);
373
374 /* Only symmetric pause with flow control enabled is supported so no
375 * need to negotiate pause.
376 */
377 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->advertising);
378 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->advertising);
379
380 /* Display information about attached PHY device */
381 phy_attached_info(phydev);
382
383 err = register_netdev(netdev);
384 if (err) {
385 dev_err(&pdev->dev, "Failed to register netdev\n");
386 phy_disconnect(phydev);
387 goto out;
388 }
389
390 return 0;
391
392 out:
393 mlxbf_gige_mdio_remove(priv);
394 return err;
395 }
396
mlxbf_gige_remove(struct platform_device * pdev)397 static int mlxbf_gige_remove(struct platform_device *pdev)
398 {
399 struct mlxbf_gige *priv = platform_get_drvdata(pdev);
400
401 unregister_netdev(priv->netdev);
402 phy_disconnect(priv->netdev->phydev);
403 mlxbf_gige_mdio_remove(priv);
404 platform_set_drvdata(pdev, NULL);
405
406 return 0;
407 }
408
mlxbf_gige_shutdown(struct platform_device * pdev)409 static void mlxbf_gige_shutdown(struct platform_device *pdev)
410 {
411 struct mlxbf_gige *priv = platform_get_drvdata(pdev);
412
413 writeq(0, priv->base + MLXBF_GIGE_INT_EN);
414 mlxbf_gige_clean_port(priv);
415 }
416
417 static const struct acpi_device_id __maybe_unused mlxbf_gige_acpi_match[] = {
418 { "MLNXBF17", 0 },
419 {},
420 };
421 MODULE_DEVICE_TABLE(acpi, mlxbf_gige_acpi_match);
422
423 static struct platform_driver mlxbf_gige_driver = {
424 .probe = mlxbf_gige_probe,
425 .remove = mlxbf_gige_remove,
426 .shutdown = mlxbf_gige_shutdown,
427 .driver = {
428 .name = KBUILD_MODNAME,
429 .acpi_match_table = ACPI_PTR(mlxbf_gige_acpi_match),
430 },
431 };
432
433 module_platform_driver(mlxbf_gige_driver);
434
435 MODULE_DESCRIPTION("Mellanox BlueField SoC Gigabit Ethernet Driver");
436 MODULE_AUTHOR("David Thompson <davthompson@nvidia.com>");
437 MODULE_AUTHOR("Asmaa Mnebhi <asmaa@nvidia.com>");
438 MODULE_LICENSE("Dual BSD/GPL");
439