1 // SPDX-License-Identifier: GPL-2.0-only
9 #include <linux/of_device.h>
10 #include <linux/of_mdio.h>
11 #include <linux/of_net.h>
12 #include <linux/mfd/syscon.h>
13 #include <linux/regmap.h>
14 #include <linux/clk.h>
15 #include <linux/pm_runtime.h>
16 #include <linux/if_vlan.h>
17 #include <linux/reset.h>
18 #include <linux/tcp.h>
19 #include <linux/interrupt.h>
20 #include <linux/pinctrl/devinfo.h>
21 #include <linux/phylink.h>
23 #include "mtk_eth_soc.h"
25 static int mtk_msg_level = -1;
26 module_param_named(msg_level, mtk_msg_level, int, 0);
27 MODULE_PARM_DESC(msg_level, "Message level (-1=defaults,0=none,...,16=all)");
29 #define MTK_ETHTOOL_STAT(x) { #x, \
30 offsetof(struct mtk_hw_stats, x) / sizeof(u64) }
32 /* strings used by ethtool */
33 static const struct mtk_ethtool_stats {
34 char str[ETH_GSTRING_LEN];
36 } mtk_ethtool_stats[] = {
37 MTK_ETHTOOL_STAT(tx_bytes),
38 MTK_ETHTOOL_STAT(tx_packets),
39 MTK_ETHTOOL_STAT(tx_skip),
40 MTK_ETHTOOL_STAT(tx_collisions),
41 MTK_ETHTOOL_STAT(rx_bytes),
42 MTK_ETHTOOL_STAT(rx_packets),
43 MTK_ETHTOOL_STAT(rx_overflow),
44 MTK_ETHTOOL_STAT(rx_fcs_errors),
45 MTK_ETHTOOL_STAT(rx_short_errors),
46 MTK_ETHTOOL_STAT(rx_long_errors),
47 MTK_ETHTOOL_STAT(rx_checksum_errors),
48 MTK_ETHTOOL_STAT(rx_flow_control_packets),
51 static const char * const mtk_clks_source_name[] = {
52 "ethif", "sgmiitop", "esw", "gp0", "gp1", "gp2", "fe", "trgpll",
53 "sgmii_tx250m", "sgmii_rx250m", "sgmii_cdr_ref", "sgmii_cdr_fb",
54 "sgmii2_tx250m", "sgmii2_rx250m", "sgmii2_cdr_ref", "sgmii2_cdr_fb",
55 "sgmii_ck", "eth2pll",
58 void mtk_w32(struct mtk_eth *eth, u32 val, unsigned reg)
60 __raw_writel(val, eth->base + reg);
63 u32 mtk_r32(struct mtk_eth *eth, unsigned reg)
65 return __raw_readl(eth->base + reg);
68 static u32 mtk_m32(struct mtk_eth *eth, u32 mask, u32 set, unsigned reg)
72 val = mtk_r32(eth, reg);
75 mtk_w32(eth, val, reg);
79 static int mtk_mdio_busy_wait(struct mtk_eth *eth)
81 unsigned long t_start = jiffies;
84 if (!(mtk_r32(eth, MTK_PHY_IAC) & PHY_IAC_ACCESS))
86 if (time_after(jiffies, t_start + PHY_IAC_TIMEOUT))
91 dev_err(eth->dev, "mdio: MDIO timeout\n");
95 static u32 _mtk_mdio_write(struct mtk_eth *eth, u32 phy_addr,
96 u32 phy_register, u32 write_data)
98 if (mtk_mdio_busy_wait(eth))
101 write_data &= 0xffff;
103 mtk_w32(eth, PHY_IAC_ACCESS | PHY_IAC_START | PHY_IAC_WRITE |
104 (phy_register << PHY_IAC_REG_SHIFT) |
105 (phy_addr << PHY_IAC_ADDR_SHIFT) | write_data,
108 if (mtk_mdio_busy_wait(eth))
114 static u32 _mtk_mdio_read(struct mtk_eth *eth, int phy_addr, int phy_reg)
118 if (mtk_mdio_busy_wait(eth))
121 mtk_w32(eth, PHY_IAC_ACCESS | PHY_IAC_START | PHY_IAC_READ |
122 (phy_reg << PHY_IAC_REG_SHIFT) |
123 (phy_addr << PHY_IAC_ADDR_SHIFT),
126 if (mtk_mdio_busy_wait(eth))
129 d = mtk_r32(eth, MTK_PHY_IAC) & 0xffff;
134 static int mtk_mdio_write(struct mii_bus *bus, int phy_addr,
135 int phy_reg, u16 val)
137 struct mtk_eth *eth = bus->priv;
139 return _mtk_mdio_write(eth, phy_addr, phy_reg, val);
142 static int mtk_mdio_read(struct mii_bus *bus, int phy_addr, int phy_reg)
144 struct mtk_eth *eth = bus->priv;
146 return _mtk_mdio_read(eth, phy_addr, phy_reg);
149 static int mt7621_gmac0_rgmii_adjust(struct mtk_eth *eth,
150 phy_interface_t interface)
154 /* Check DDR memory type.
155 * Currently TRGMII mode with DDR2 memory is not supported.
157 regmap_read(eth->ethsys, ETHSYS_SYSCFG, &val);
158 if (interface == PHY_INTERFACE_MODE_TRGMII &&
159 val & SYSCFG_DRAM_TYPE_DDR2) {
161 "TRGMII mode with DDR2 memory is not supported!\n");
165 val = (interface == PHY_INTERFACE_MODE_TRGMII) ?
166 ETHSYS_TRGMII_MT7621_DDR_PLL : 0;
168 regmap_update_bits(eth->ethsys, ETHSYS_CLKCFG0,
169 ETHSYS_TRGMII_MT7621_MASK, val);
174 static void mtk_gmac0_rgmii_adjust(struct mtk_eth *eth,
175 phy_interface_t interface, int speed)
180 if (interface == PHY_INTERFACE_MODE_TRGMII) {
181 mtk_w32(eth, TRGMII_MODE, INTF_MODE);
183 ret = clk_set_rate(eth->clks[MTK_CLK_TRGPLL], val);
185 dev_err(eth->dev, "Failed to set trgmii pll: %d\n", ret);
189 val = (speed == SPEED_1000) ?
190 INTF_MODE_RGMII_1000 : INTF_MODE_RGMII_10_100;
191 mtk_w32(eth, val, INTF_MODE);
193 regmap_update_bits(eth->ethsys, ETHSYS_CLKCFG0,
194 ETHSYS_TRGMII_CLK_SEL362_5,
195 ETHSYS_TRGMII_CLK_SEL362_5);
197 val = (speed == SPEED_1000) ? 250000000 : 500000000;
198 ret = clk_set_rate(eth->clks[MTK_CLK_TRGPLL], val);
200 dev_err(eth->dev, "Failed to set trgmii pll: %d\n", ret);
202 val = (speed == SPEED_1000) ?
203 RCK_CTRL_RGMII_1000 : RCK_CTRL_RGMII_10_100;
204 mtk_w32(eth, val, TRGMII_RCK_CTRL);
206 val = (speed == SPEED_1000) ?
207 TCK_CTRL_RGMII_1000 : TCK_CTRL_RGMII_10_100;
208 mtk_w32(eth, val, TRGMII_TCK_CTRL);
211 static void mtk_mac_config(struct phylink_config *config, unsigned int mode,
212 const struct phylink_link_state *state)
214 struct mtk_mac *mac = container_of(config, struct mtk_mac,
216 struct mtk_eth *eth = mac->hw;
217 u32 mcr_cur, mcr_new, sid, i;
218 int val, ge_mode, err;
220 /* MT76x8 has no hardware settings between for the MAC */
221 if (!MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628) &&
222 mac->interface != state->interface) {
223 /* Setup soc pin functions */
224 switch (state->interface) {
225 case PHY_INTERFACE_MODE_TRGMII:
228 if (!MTK_HAS_CAPS(mac->hw->soc->caps,
232 case PHY_INTERFACE_MODE_RGMII_TXID:
233 case PHY_INTERFACE_MODE_RGMII_RXID:
234 case PHY_INTERFACE_MODE_RGMII_ID:
235 case PHY_INTERFACE_MODE_RGMII:
236 case PHY_INTERFACE_MODE_MII:
237 case PHY_INTERFACE_MODE_REVMII:
238 case PHY_INTERFACE_MODE_RMII:
239 if (MTK_HAS_CAPS(eth->soc->caps, MTK_RGMII)) {
240 err = mtk_gmac_rgmii_path_setup(eth, mac->id);
245 case PHY_INTERFACE_MODE_1000BASEX:
246 case PHY_INTERFACE_MODE_2500BASEX:
247 case PHY_INTERFACE_MODE_SGMII:
248 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SGMII)) {
249 err = mtk_gmac_sgmii_path_setup(eth, mac->id);
254 case PHY_INTERFACE_MODE_GMII:
255 if (MTK_HAS_CAPS(eth->soc->caps, MTK_GEPHY)) {
256 err = mtk_gmac_gephy_path_setup(eth, mac->id);
265 /* Setup clock for 1st gmac */
266 if (!mac->id && state->interface != PHY_INTERFACE_MODE_SGMII &&
267 !phy_interface_mode_is_8023z(state->interface) &&
268 MTK_HAS_CAPS(mac->hw->soc->caps, MTK_GMAC1_TRGMII)) {
269 if (MTK_HAS_CAPS(mac->hw->soc->caps,
270 MTK_TRGMII_MT7621_CLK)) {
271 if (mt7621_gmac0_rgmii_adjust(mac->hw,
275 mtk_gmac0_rgmii_adjust(mac->hw,
279 /* mt7623_pad_clk_setup */
280 for (i = 0 ; i < NUM_TRGMII_CTRL; i++)
282 TD_DM_DRVP(8) | TD_DM_DRVN(8),
285 /* Assert/release MT7623 RXC reset */
286 mtk_m32(mac->hw, 0, RXC_RST | RXC_DQSISEL,
288 mtk_m32(mac->hw, RXC_RST, 0, TRGMII_RCK_CTRL);
293 switch (state->interface) {
294 case PHY_INTERFACE_MODE_MII:
295 case PHY_INTERFACE_MODE_GMII:
298 case PHY_INTERFACE_MODE_REVMII:
301 case PHY_INTERFACE_MODE_RMII:
310 /* put the gmac into the right mode */
311 regmap_read(eth->ethsys, ETHSYS_SYSCFG0, &val);
312 val &= ~SYSCFG0_GE_MODE(SYSCFG0_GE_MASK, mac->id);
313 val |= SYSCFG0_GE_MODE(ge_mode, mac->id);
314 regmap_write(eth->ethsys, ETHSYS_SYSCFG0, val);
316 mac->interface = state->interface;
320 if (state->interface == PHY_INTERFACE_MODE_SGMII ||
321 phy_interface_mode_is_8023z(state->interface)) {
322 /* The path GMAC to SGMII will be enabled once the SGMIISYS is
325 regmap_read(eth->ethsys, ETHSYS_SYSCFG0, &val);
327 regmap_update_bits(eth->ethsys, ETHSYS_SYSCFG0,
329 ~(u32)SYSCFG0_SGMII_MASK);
331 /* Decide how GMAC and SGMIISYS be mapped */
332 sid = (MTK_HAS_CAPS(eth->soc->caps, MTK_SHARED_SGMII)) ?
335 /* Setup SGMIISYS with the determined property */
336 if (state->interface != PHY_INTERFACE_MODE_SGMII)
337 err = mtk_sgmii_setup_mode_force(eth->sgmii, sid,
339 else if (phylink_autoneg_inband(mode))
340 err = mtk_sgmii_setup_mode_an(eth->sgmii, sid);
345 regmap_update_bits(eth->ethsys, ETHSYS_SYSCFG0,
346 SYSCFG0_SGMII_MASK, val);
347 } else if (phylink_autoneg_inband(mode)) {
349 "In-band mode not supported in non SGMII mode!\n");
354 mcr_cur = mtk_r32(mac->hw, MTK_MAC_MCR(mac->id));
356 mcr_new |= MAC_MCR_MAX_RX_1536 | MAC_MCR_IPG_CFG | MAC_MCR_FORCE_MODE |
357 MAC_MCR_BACKOFF_EN | MAC_MCR_BACKPR_EN | MAC_MCR_FORCE_LINK;
359 /* Only update control register when needed! */
360 if (mcr_new != mcr_cur)
361 mtk_w32(mac->hw, mcr_new, MTK_MAC_MCR(mac->id));
366 dev_err(eth->dev, "%s: GMAC%d mode %s not supported!\n", __func__,
367 mac->id, phy_modes(state->interface));
371 dev_err(eth->dev, "%s: GMAC%d mode %s err: %d!\n", __func__,
372 mac->id, phy_modes(state->interface), err);
375 static void mtk_mac_pcs_get_state(struct phylink_config *config,
376 struct phylink_link_state *state)
378 struct mtk_mac *mac = container_of(config, struct mtk_mac,
380 u32 pmsr = mtk_r32(mac->hw, MTK_MAC_MSR(mac->id));
382 state->link = (pmsr & MAC_MSR_LINK);
383 state->duplex = (pmsr & MAC_MSR_DPX) >> 1;
385 switch (pmsr & (MAC_MSR_SPEED_1000 | MAC_MSR_SPEED_100)) {
387 state->speed = SPEED_10;
389 case MAC_MSR_SPEED_100:
390 state->speed = SPEED_100;
392 case MAC_MSR_SPEED_1000:
393 state->speed = SPEED_1000;
396 state->speed = SPEED_UNKNOWN;
400 state->pause &= (MLO_PAUSE_RX | MLO_PAUSE_TX);
401 if (pmsr & MAC_MSR_RX_FC)
402 state->pause |= MLO_PAUSE_RX;
403 if (pmsr & MAC_MSR_TX_FC)
404 state->pause |= MLO_PAUSE_TX;
407 static void mtk_mac_an_restart(struct phylink_config *config)
409 struct mtk_mac *mac = container_of(config, struct mtk_mac,
412 mtk_sgmii_restart_an(mac->hw, mac->id);
415 static void mtk_mac_link_down(struct phylink_config *config, unsigned int mode,
416 phy_interface_t interface)
418 struct mtk_mac *mac = container_of(config, struct mtk_mac,
420 u32 mcr = mtk_r32(mac->hw, MTK_MAC_MCR(mac->id));
422 mcr &= ~(MAC_MCR_TX_EN | MAC_MCR_RX_EN);
423 mtk_w32(mac->hw, mcr, MTK_MAC_MCR(mac->id));
426 static void mtk_mac_link_up(struct phylink_config *config,
427 struct phy_device *phy,
428 unsigned int mode, phy_interface_t interface,
429 int speed, int duplex, bool tx_pause, bool rx_pause)
431 struct mtk_mac *mac = container_of(config, struct mtk_mac,
433 u32 mcr = mtk_r32(mac->hw, MTK_MAC_MCR(mac->id));
435 mcr &= ~(MAC_MCR_SPEED_100 | MAC_MCR_SPEED_1000 |
436 MAC_MCR_FORCE_DPX | MAC_MCR_FORCE_TX_FC |
437 MAC_MCR_FORCE_RX_FC);
439 /* Configure speed */
443 mcr |= MAC_MCR_SPEED_1000;
446 mcr |= MAC_MCR_SPEED_100;
450 /* Configure duplex */
451 if (duplex == DUPLEX_FULL)
452 mcr |= MAC_MCR_FORCE_DPX;
454 /* Configure pause modes - phylink will avoid these for half duplex */
456 mcr |= MAC_MCR_FORCE_TX_FC;
458 mcr |= MAC_MCR_FORCE_RX_FC;
460 mcr |= MAC_MCR_TX_EN | MAC_MCR_RX_EN;
461 mtk_w32(mac->hw, mcr, MTK_MAC_MCR(mac->id));
464 static void mtk_validate(struct phylink_config *config,
465 unsigned long *supported,
466 struct phylink_link_state *state)
468 struct mtk_mac *mac = container_of(config, struct mtk_mac,
470 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
472 if (state->interface != PHY_INTERFACE_MODE_NA &&
473 state->interface != PHY_INTERFACE_MODE_MII &&
474 state->interface != PHY_INTERFACE_MODE_GMII &&
475 !(MTK_HAS_CAPS(mac->hw->soc->caps, MTK_RGMII) &&
476 phy_interface_mode_is_rgmii(state->interface)) &&
477 !(MTK_HAS_CAPS(mac->hw->soc->caps, MTK_TRGMII) &&
478 !mac->id && state->interface == PHY_INTERFACE_MODE_TRGMII) &&
479 !(MTK_HAS_CAPS(mac->hw->soc->caps, MTK_SGMII) &&
480 (state->interface == PHY_INTERFACE_MODE_SGMII ||
481 phy_interface_mode_is_8023z(state->interface)))) {
482 linkmode_zero(supported);
486 phylink_set_port_modes(mask);
487 phylink_set(mask, Autoneg);
489 switch (state->interface) {
490 case PHY_INTERFACE_MODE_TRGMII:
491 phylink_set(mask, 1000baseT_Full);
493 case PHY_INTERFACE_MODE_1000BASEX:
494 case PHY_INTERFACE_MODE_2500BASEX:
495 phylink_set(mask, 1000baseX_Full);
496 phylink_set(mask, 2500baseX_Full);
498 case PHY_INTERFACE_MODE_GMII:
499 case PHY_INTERFACE_MODE_RGMII:
500 case PHY_INTERFACE_MODE_RGMII_ID:
501 case PHY_INTERFACE_MODE_RGMII_RXID:
502 case PHY_INTERFACE_MODE_RGMII_TXID:
503 phylink_set(mask, 1000baseT_Half);
505 case PHY_INTERFACE_MODE_SGMII:
506 phylink_set(mask, 1000baseT_Full);
507 phylink_set(mask, 1000baseX_Full);
509 case PHY_INTERFACE_MODE_MII:
510 case PHY_INTERFACE_MODE_RMII:
511 case PHY_INTERFACE_MODE_REVMII:
512 case PHY_INTERFACE_MODE_NA:
514 phylink_set(mask, 10baseT_Half);
515 phylink_set(mask, 10baseT_Full);
516 phylink_set(mask, 100baseT_Half);
517 phylink_set(mask, 100baseT_Full);
521 if (state->interface == PHY_INTERFACE_MODE_NA) {
522 if (MTK_HAS_CAPS(mac->hw->soc->caps, MTK_SGMII)) {
523 phylink_set(mask, 1000baseT_Full);
524 phylink_set(mask, 1000baseX_Full);
525 phylink_set(mask, 2500baseX_Full);
527 if (MTK_HAS_CAPS(mac->hw->soc->caps, MTK_RGMII)) {
528 phylink_set(mask, 1000baseT_Full);
529 phylink_set(mask, 1000baseT_Half);
530 phylink_set(mask, 1000baseX_Full);
532 if (MTK_HAS_CAPS(mac->hw->soc->caps, MTK_GEPHY)) {
533 phylink_set(mask, 1000baseT_Full);
534 phylink_set(mask, 1000baseT_Half);
538 phylink_set(mask, Pause);
539 phylink_set(mask, Asym_Pause);
541 linkmode_and(supported, supported, mask);
542 linkmode_and(state->advertising, state->advertising, mask);
544 /* We can only operate at 2500BaseX or 1000BaseX. If requested
545 * to advertise both, only report advertising at 2500BaseX.
547 phylink_helper_basex_speed(state);
550 static const struct phylink_mac_ops mtk_phylink_ops = {
551 .validate = mtk_validate,
552 .mac_pcs_get_state = mtk_mac_pcs_get_state,
553 .mac_an_restart = mtk_mac_an_restart,
554 .mac_config = mtk_mac_config,
555 .mac_link_down = mtk_mac_link_down,
556 .mac_link_up = mtk_mac_link_up,
559 static int mtk_mdio_init(struct mtk_eth *eth)
561 struct device_node *mii_np;
564 mii_np = of_get_child_by_name(eth->dev->of_node, "mdio-bus");
566 dev_err(eth->dev, "no %s child node found", "mdio-bus");
570 if (!of_device_is_available(mii_np)) {
575 eth->mii_bus = devm_mdiobus_alloc(eth->dev);
581 eth->mii_bus->name = "mdio";
582 eth->mii_bus->read = mtk_mdio_read;
583 eth->mii_bus->write = mtk_mdio_write;
584 eth->mii_bus->priv = eth;
585 eth->mii_bus->parent = eth->dev;
587 snprintf(eth->mii_bus->id, MII_BUS_ID_SIZE, "%pOFn", mii_np);
588 ret = of_mdiobus_register(eth->mii_bus, mii_np);
595 static void mtk_mdio_cleanup(struct mtk_eth *eth)
600 mdiobus_unregister(eth->mii_bus);
603 static inline void mtk_tx_irq_disable(struct mtk_eth *eth, u32 mask)
608 spin_lock_irqsave(ð->tx_irq_lock, flags);
609 val = mtk_r32(eth, eth->tx_int_mask_reg);
610 mtk_w32(eth, val & ~mask, eth->tx_int_mask_reg);
611 spin_unlock_irqrestore(ð->tx_irq_lock, flags);
614 static inline void mtk_tx_irq_enable(struct mtk_eth *eth, u32 mask)
619 spin_lock_irqsave(ð->tx_irq_lock, flags);
620 val = mtk_r32(eth, eth->tx_int_mask_reg);
621 mtk_w32(eth, val | mask, eth->tx_int_mask_reg);
622 spin_unlock_irqrestore(ð->tx_irq_lock, flags);
625 static inline void mtk_rx_irq_disable(struct mtk_eth *eth, u32 mask)
630 spin_lock_irqsave(ð->rx_irq_lock, flags);
631 val = mtk_r32(eth, MTK_PDMA_INT_MASK);
632 mtk_w32(eth, val & ~mask, MTK_PDMA_INT_MASK);
633 spin_unlock_irqrestore(ð->rx_irq_lock, flags);
636 static inline void mtk_rx_irq_enable(struct mtk_eth *eth, u32 mask)
641 spin_lock_irqsave(ð->rx_irq_lock, flags);
642 val = mtk_r32(eth, MTK_PDMA_INT_MASK);
643 mtk_w32(eth, val | mask, MTK_PDMA_INT_MASK);
644 spin_unlock_irqrestore(ð->rx_irq_lock, flags);
647 static int mtk_set_mac_address(struct net_device *dev, void *p)
649 int ret = eth_mac_addr(dev, p);
650 struct mtk_mac *mac = netdev_priv(dev);
651 struct mtk_eth *eth = mac->hw;
652 const char *macaddr = dev->dev_addr;
657 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
660 spin_lock_bh(&mac->hw->page_lock);
661 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628)) {
662 mtk_w32(mac->hw, (macaddr[0] << 8) | macaddr[1],
663 MT7628_SDM_MAC_ADRH);
664 mtk_w32(mac->hw, (macaddr[2] << 24) | (macaddr[3] << 16) |
665 (macaddr[4] << 8) | macaddr[5],
666 MT7628_SDM_MAC_ADRL);
668 mtk_w32(mac->hw, (macaddr[0] << 8) | macaddr[1],
669 MTK_GDMA_MAC_ADRH(mac->id));
670 mtk_w32(mac->hw, (macaddr[2] << 24) | (macaddr[3] << 16) |
671 (macaddr[4] << 8) | macaddr[5],
672 MTK_GDMA_MAC_ADRL(mac->id));
674 spin_unlock_bh(&mac->hw->page_lock);
679 void mtk_stats_update_mac(struct mtk_mac *mac)
681 struct mtk_hw_stats *hw_stats = mac->hw_stats;
682 unsigned int base = MTK_GDM1_TX_GBCNT;
685 base += hw_stats->reg_offset;
687 u64_stats_update_begin(&hw_stats->syncp);
689 hw_stats->rx_bytes += mtk_r32(mac->hw, base);
690 stats = mtk_r32(mac->hw, base + 0x04);
692 hw_stats->rx_bytes += (stats << 32);
693 hw_stats->rx_packets += mtk_r32(mac->hw, base + 0x08);
694 hw_stats->rx_overflow += mtk_r32(mac->hw, base + 0x10);
695 hw_stats->rx_fcs_errors += mtk_r32(mac->hw, base + 0x14);
696 hw_stats->rx_short_errors += mtk_r32(mac->hw, base + 0x18);
697 hw_stats->rx_long_errors += mtk_r32(mac->hw, base + 0x1c);
698 hw_stats->rx_checksum_errors += mtk_r32(mac->hw, base + 0x20);
699 hw_stats->rx_flow_control_packets +=
700 mtk_r32(mac->hw, base + 0x24);
701 hw_stats->tx_skip += mtk_r32(mac->hw, base + 0x28);
702 hw_stats->tx_collisions += mtk_r32(mac->hw, base + 0x2c);
703 hw_stats->tx_bytes += mtk_r32(mac->hw, base + 0x30);
704 stats = mtk_r32(mac->hw, base + 0x34);
706 hw_stats->tx_bytes += (stats << 32);
707 hw_stats->tx_packets += mtk_r32(mac->hw, base + 0x38);
708 u64_stats_update_end(&hw_stats->syncp);
711 static void mtk_stats_update(struct mtk_eth *eth)
715 for (i = 0; i < MTK_MAC_COUNT; i++) {
716 if (!eth->mac[i] || !eth->mac[i]->hw_stats)
718 if (spin_trylock(ð->mac[i]->hw_stats->stats_lock)) {
719 mtk_stats_update_mac(eth->mac[i]);
720 spin_unlock(ð->mac[i]->hw_stats->stats_lock);
725 static void mtk_get_stats64(struct net_device *dev,
726 struct rtnl_link_stats64 *storage)
728 struct mtk_mac *mac = netdev_priv(dev);
729 struct mtk_hw_stats *hw_stats = mac->hw_stats;
732 if (netif_running(dev) && netif_device_present(dev)) {
733 if (spin_trylock_bh(&hw_stats->stats_lock)) {
734 mtk_stats_update_mac(mac);
735 spin_unlock_bh(&hw_stats->stats_lock);
740 start = u64_stats_fetch_begin_irq(&hw_stats->syncp);
741 storage->rx_packets = hw_stats->rx_packets;
742 storage->tx_packets = hw_stats->tx_packets;
743 storage->rx_bytes = hw_stats->rx_bytes;
744 storage->tx_bytes = hw_stats->tx_bytes;
745 storage->collisions = hw_stats->tx_collisions;
746 storage->rx_length_errors = hw_stats->rx_short_errors +
747 hw_stats->rx_long_errors;
748 storage->rx_over_errors = hw_stats->rx_overflow;
749 storage->rx_crc_errors = hw_stats->rx_fcs_errors;
750 storage->rx_errors = hw_stats->rx_checksum_errors;
751 storage->tx_aborted_errors = hw_stats->tx_skip;
752 } while (u64_stats_fetch_retry_irq(&hw_stats->syncp, start));
754 storage->tx_errors = dev->stats.tx_errors;
755 storage->rx_dropped = dev->stats.rx_dropped;
756 storage->tx_dropped = dev->stats.tx_dropped;
759 static inline int mtk_max_frag_size(int mtu)
761 /* make sure buf_size will be at least MTK_MAX_RX_LENGTH */
762 if (mtu + MTK_RX_ETH_HLEN < MTK_MAX_RX_LENGTH)
763 mtu = MTK_MAX_RX_LENGTH - MTK_RX_ETH_HLEN;
765 return SKB_DATA_ALIGN(MTK_RX_HLEN + mtu) +
766 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
769 static inline int mtk_max_buf_size(int frag_size)
771 int buf_size = frag_size - NET_SKB_PAD - NET_IP_ALIGN -
772 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
774 WARN_ON(buf_size < MTK_MAX_RX_LENGTH);
779 static inline void mtk_rx_get_desc(struct mtk_rx_dma *rxd,
780 struct mtk_rx_dma *dma_rxd)
782 rxd->rxd1 = READ_ONCE(dma_rxd->rxd1);
783 rxd->rxd2 = READ_ONCE(dma_rxd->rxd2);
784 rxd->rxd3 = READ_ONCE(dma_rxd->rxd3);
785 rxd->rxd4 = READ_ONCE(dma_rxd->rxd4);
788 /* the qdma core needs scratch memory to be setup */
789 static int mtk_init_fq_dma(struct mtk_eth *eth)
791 dma_addr_t phy_ring_tail;
792 int cnt = MTK_DMA_SIZE;
796 eth->scratch_ring = dma_alloc_coherent(eth->dev,
797 cnt * sizeof(struct mtk_tx_dma),
798 ð->phy_scratch_ring,
800 if (unlikely(!eth->scratch_ring))
803 eth->scratch_head = kcalloc(cnt, MTK_QDMA_PAGE_SIZE,
805 if (unlikely(!eth->scratch_head))
808 dma_addr = dma_map_single(eth->dev,
809 eth->scratch_head, cnt * MTK_QDMA_PAGE_SIZE,
811 if (unlikely(dma_mapping_error(eth->dev, dma_addr)))
814 phy_ring_tail = eth->phy_scratch_ring +
815 (sizeof(struct mtk_tx_dma) * (cnt - 1));
817 for (i = 0; i < cnt; i++) {
818 eth->scratch_ring[i].txd1 =
819 (dma_addr + (i * MTK_QDMA_PAGE_SIZE));
821 eth->scratch_ring[i].txd2 = (eth->phy_scratch_ring +
822 ((i + 1) * sizeof(struct mtk_tx_dma)));
823 eth->scratch_ring[i].txd3 = TX_DMA_SDL(MTK_QDMA_PAGE_SIZE);
826 mtk_w32(eth, eth->phy_scratch_ring, MTK_QDMA_FQ_HEAD);
827 mtk_w32(eth, phy_ring_tail, MTK_QDMA_FQ_TAIL);
828 mtk_w32(eth, (cnt << 16) | cnt, MTK_QDMA_FQ_CNT);
829 mtk_w32(eth, MTK_QDMA_PAGE_SIZE << 16, MTK_QDMA_FQ_BLEN);
834 static inline void *mtk_qdma_phys_to_virt(struct mtk_tx_ring *ring, u32 desc)
836 void *ret = ring->dma;
838 return ret + (desc - ring->phys);
841 static inline struct mtk_tx_buf *mtk_desc_to_tx_buf(struct mtk_tx_ring *ring,
842 struct mtk_tx_dma *txd)
844 int idx = txd - ring->dma;
846 return &ring->buf[idx];
849 static struct mtk_tx_dma *qdma_to_pdma(struct mtk_tx_ring *ring,
850 struct mtk_tx_dma *dma)
852 return ring->dma_pdma - ring->dma + dma;
855 static int txd_to_idx(struct mtk_tx_ring *ring, struct mtk_tx_dma *dma)
857 return ((void *)dma - (void *)ring->dma) / sizeof(*dma);
860 static void mtk_tx_unmap(struct mtk_eth *eth, struct mtk_tx_buf *tx_buf)
862 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
863 if (tx_buf->flags & MTK_TX_FLAGS_SINGLE0) {
864 dma_unmap_single(eth->dev,
865 dma_unmap_addr(tx_buf, dma_addr0),
866 dma_unmap_len(tx_buf, dma_len0),
868 } else if (tx_buf->flags & MTK_TX_FLAGS_PAGE0) {
869 dma_unmap_page(eth->dev,
870 dma_unmap_addr(tx_buf, dma_addr0),
871 dma_unmap_len(tx_buf, dma_len0),
875 if (dma_unmap_len(tx_buf, dma_len0)) {
876 dma_unmap_page(eth->dev,
877 dma_unmap_addr(tx_buf, dma_addr0),
878 dma_unmap_len(tx_buf, dma_len0),
882 if (dma_unmap_len(tx_buf, dma_len1)) {
883 dma_unmap_page(eth->dev,
884 dma_unmap_addr(tx_buf, dma_addr1),
885 dma_unmap_len(tx_buf, dma_len1),
892 (tx_buf->skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC))
893 dev_kfree_skb_any(tx_buf->skb);
897 static void setup_tx_buf(struct mtk_eth *eth, struct mtk_tx_buf *tx_buf,
898 struct mtk_tx_dma *txd, dma_addr_t mapped_addr,
899 size_t size, int idx)
901 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
902 dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr);
903 dma_unmap_len_set(tx_buf, dma_len0, size);
906 txd->txd3 = mapped_addr;
907 txd->txd2 |= TX_DMA_PLEN1(size);
908 dma_unmap_addr_set(tx_buf, dma_addr1, mapped_addr);
909 dma_unmap_len_set(tx_buf, dma_len1, size);
911 tx_buf->skb = (struct sk_buff *)MTK_DMA_DUMMY_DESC;
912 txd->txd1 = mapped_addr;
913 txd->txd2 = TX_DMA_PLEN0(size);
914 dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr);
915 dma_unmap_len_set(tx_buf, dma_len0, size);
920 static int mtk_tx_map(struct sk_buff *skb, struct net_device *dev,
921 int tx_num, struct mtk_tx_ring *ring, bool gso)
923 struct mtk_mac *mac = netdev_priv(dev);
924 struct mtk_eth *eth = mac->hw;
925 struct mtk_tx_dma *itxd, *txd;
926 struct mtk_tx_dma *itxd_pdma, *txd_pdma;
927 struct mtk_tx_buf *itx_buf, *tx_buf;
928 dma_addr_t mapped_addr;
929 unsigned int nr_frags;
934 itxd = ring->next_free;
935 itxd_pdma = qdma_to_pdma(ring, itxd);
936 if (itxd == ring->last_free)
939 /* set the forward port */
940 fport = (mac->id + 1) << TX_DMA_FPORT_SHIFT;
943 itx_buf = mtk_desc_to_tx_buf(ring, itxd);
944 memset(itx_buf, 0, sizeof(*itx_buf));
949 /* TX Checksum offload */
950 if (skb->ip_summed == CHECKSUM_PARTIAL)
951 txd4 |= TX_DMA_CHKSUM;
953 /* VLAN header offload */
954 if (skb_vlan_tag_present(skb))
955 txd4 |= TX_DMA_INS_VLAN | skb_vlan_tag_get(skb);
957 mapped_addr = dma_map_single(eth->dev, skb->data,
958 skb_headlen(skb), DMA_TO_DEVICE);
959 if (unlikely(dma_mapping_error(eth->dev, mapped_addr)))
962 WRITE_ONCE(itxd->txd1, mapped_addr);
963 itx_buf->flags |= MTK_TX_FLAGS_SINGLE0;
964 itx_buf->flags |= (!mac->id) ? MTK_TX_FLAGS_FPORT0 :
966 setup_tx_buf(eth, itx_buf, itxd_pdma, mapped_addr, skb_headlen(skb),
971 txd_pdma = qdma_to_pdma(ring, txd);
972 nr_frags = skb_shinfo(skb)->nr_frags;
974 for (i = 0; i < nr_frags; i++) {
975 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
976 unsigned int offset = 0;
977 int frag_size = skb_frag_size(frag);
980 bool last_frag = false;
981 unsigned int frag_map_size;
982 bool new_desc = true;
984 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA) ||
986 txd = mtk_qdma_phys_to_virt(ring, txd->txd2);
987 txd_pdma = qdma_to_pdma(ring, txd);
988 if (txd == ring->last_free)
997 frag_map_size = min(frag_size, MTK_TX_DMA_BUF_LEN);
998 mapped_addr = skb_frag_dma_map(eth->dev, frag, offset,
1001 if (unlikely(dma_mapping_error(eth->dev, mapped_addr)))
1004 if (i == nr_frags - 1 &&
1005 (frag_size - frag_map_size) == 0)
1008 WRITE_ONCE(txd->txd1, mapped_addr);
1009 WRITE_ONCE(txd->txd3, (TX_DMA_SWC |
1010 TX_DMA_PLEN0(frag_map_size) |
1011 last_frag * TX_DMA_LS0));
1012 WRITE_ONCE(txd->txd4, fport);
1014 tx_buf = mtk_desc_to_tx_buf(ring, txd);
1016 memset(tx_buf, 0, sizeof(*tx_buf));
1017 tx_buf->skb = (struct sk_buff *)MTK_DMA_DUMMY_DESC;
1018 tx_buf->flags |= MTK_TX_FLAGS_PAGE0;
1019 tx_buf->flags |= (!mac->id) ? MTK_TX_FLAGS_FPORT0 :
1020 MTK_TX_FLAGS_FPORT1;
1022 setup_tx_buf(eth, tx_buf, txd_pdma, mapped_addr,
1023 frag_map_size, k++);
1025 frag_size -= frag_map_size;
1026 offset += frag_map_size;
1030 /* store skb to cleanup */
1033 WRITE_ONCE(itxd->txd4, txd4);
1034 WRITE_ONCE(itxd->txd3, (TX_DMA_SWC | TX_DMA_PLEN0(skb_headlen(skb)) |
1035 (!nr_frags * TX_DMA_LS0)));
1036 if (!MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
1038 txd_pdma->txd2 |= TX_DMA_LS0;
1040 txd_pdma->txd2 |= TX_DMA_LS1;
1043 netdev_sent_queue(dev, skb->len);
1044 skb_tx_timestamp(skb);
1046 ring->next_free = mtk_qdma_phys_to_virt(ring, txd->txd2);
1047 atomic_sub(n_desc, &ring->free_count);
1049 /* make sure that all changes to the dma ring are flushed before we
1054 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
1055 if (netif_xmit_stopped(netdev_get_tx_queue(dev, 0)) ||
1056 !netdev_xmit_more())
1057 mtk_w32(eth, txd->txd2, MTK_QTX_CTX_PTR);
1059 int next_idx = NEXT_DESP_IDX(txd_to_idx(ring, txd),
1061 mtk_w32(eth, next_idx, MT7628_TX_CTX_IDX0);
1068 tx_buf = mtk_desc_to_tx_buf(ring, itxd);
1071 mtk_tx_unmap(eth, tx_buf);
1073 itxd->txd3 = TX_DMA_LS0 | TX_DMA_OWNER_CPU;
1074 if (!MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA))
1075 itxd_pdma->txd2 = TX_DMA_DESP2_DEF;
1077 itxd = mtk_qdma_phys_to_virt(ring, itxd->txd2);
1078 itxd_pdma = qdma_to_pdma(ring, itxd);
1079 } while (itxd != txd);
1084 static inline int mtk_cal_txd_req(struct sk_buff *skb)
1090 if (skb_is_gso(skb)) {
1091 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1092 frag = &skb_shinfo(skb)->frags[i];
1093 nfrags += DIV_ROUND_UP(skb_frag_size(frag),
1094 MTK_TX_DMA_BUF_LEN);
1097 nfrags += skb_shinfo(skb)->nr_frags;
1103 static int mtk_queue_stopped(struct mtk_eth *eth)
1107 for (i = 0; i < MTK_MAC_COUNT; i++) {
1108 if (!eth->netdev[i])
1110 if (netif_queue_stopped(eth->netdev[i]))
1117 static void mtk_wake_queue(struct mtk_eth *eth)
1121 for (i = 0; i < MTK_MAC_COUNT; i++) {
1122 if (!eth->netdev[i])
1124 netif_wake_queue(eth->netdev[i]);
1128 static void mtk_stop_queue(struct mtk_eth *eth)
1132 for (i = 0; i < MTK_MAC_COUNT; i++) {
1133 if (!eth->netdev[i])
1135 netif_stop_queue(eth->netdev[i]);
1139 static netdev_tx_t mtk_start_xmit(struct sk_buff *skb, struct net_device *dev)
1141 struct mtk_mac *mac = netdev_priv(dev);
1142 struct mtk_eth *eth = mac->hw;
1143 struct mtk_tx_ring *ring = ð->tx_ring;
1144 struct net_device_stats *stats = &dev->stats;
1148 /* normally we can rely on the stack not calling this more than once,
1149 * however we have 2 queues running on the same ring so we need to lock
1152 spin_lock(ð->page_lock);
1154 if (unlikely(test_bit(MTK_RESETTING, ð->state)))
1157 tx_num = mtk_cal_txd_req(skb);
1158 if (unlikely(atomic_read(&ring->free_count) <= tx_num)) {
1159 mtk_stop_queue(eth);
1160 netif_err(eth, tx_queued, dev,
1161 "Tx Ring full when queue awake!\n");
1162 spin_unlock(ð->page_lock);
1163 return NETDEV_TX_BUSY;
1166 /* TSO: fill MSS info in tcp checksum field */
1167 if (skb_is_gso(skb)) {
1168 if (skb_cow_head(skb, 0)) {
1169 netif_warn(eth, tx_err, dev,
1170 "GSO expand head fail.\n");
1174 if (skb_shinfo(skb)->gso_type &
1175 (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)) {
1177 tcp_hdr(skb)->check = htons(skb_shinfo(skb)->gso_size);
1181 if (mtk_tx_map(skb, dev, tx_num, ring, gso) < 0)
1184 if (unlikely(atomic_read(&ring->free_count) <= ring->thresh))
1185 mtk_stop_queue(eth);
1187 spin_unlock(ð->page_lock);
1189 return NETDEV_TX_OK;
1192 spin_unlock(ð->page_lock);
1193 stats->tx_dropped++;
1194 dev_kfree_skb_any(skb);
1195 return NETDEV_TX_OK;
1198 static struct mtk_rx_ring *mtk_get_rx_ring(struct mtk_eth *eth)
1201 struct mtk_rx_ring *ring;
1205 return ð->rx_ring[0];
1207 for (i = 0; i < MTK_MAX_RX_RING_NUM; i++) {
1208 ring = ð->rx_ring[i];
1209 idx = NEXT_DESP_IDX(ring->calc_idx, ring->dma_size);
1210 if (ring->dma[idx].rxd2 & RX_DMA_DONE) {
1211 ring->calc_idx_update = true;
1219 static void mtk_update_rx_cpu_idx(struct mtk_eth *eth)
1221 struct mtk_rx_ring *ring;
1225 ring = ð->rx_ring[0];
1226 mtk_w32(eth, ring->calc_idx, ring->crx_idx_reg);
1228 for (i = 0; i < MTK_MAX_RX_RING_NUM; i++) {
1229 ring = ð->rx_ring[i];
1230 if (ring->calc_idx_update) {
1231 ring->calc_idx_update = false;
1232 mtk_w32(eth, ring->calc_idx, ring->crx_idx_reg);
1238 static int mtk_poll_rx(struct napi_struct *napi, int budget,
1239 struct mtk_eth *eth)
1241 struct mtk_rx_ring *ring;
1243 struct sk_buff *skb;
1244 u8 *data, *new_data;
1245 struct mtk_rx_dma *rxd, trxd;
1248 while (done < budget) {
1249 struct net_device *netdev;
1250 unsigned int pktlen;
1251 dma_addr_t dma_addr;
1254 ring = mtk_get_rx_ring(eth);
1255 if (unlikely(!ring))
1258 idx = NEXT_DESP_IDX(ring->calc_idx, ring->dma_size);
1259 rxd = &ring->dma[idx];
1260 data = ring->data[idx];
1262 mtk_rx_get_desc(&trxd, rxd);
1263 if (!(trxd.rxd2 & RX_DMA_DONE))
1266 /* find out which mac the packet come from. values start at 1 */
1267 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628)) {
1270 mac = (trxd.rxd4 >> RX_DMA_FPORT_SHIFT) &
1275 if (unlikely(mac < 0 || mac >= MTK_MAC_COUNT ||
1279 netdev = eth->netdev[mac];
1281 if (unlikely(test_bit(MTK_RESETTING, ð->state)))
1284 /* alloc new buffer */
1285 new_data = napi_alloc_frag(ring->frag_size);
1286 if (unlikely(!new_data)) {
1287 netdev->stats.rx_dropped++;
1290 dma_addr = dma_map_single(eth->dev,
1291 new_data + NET_SKB_PAD +
1295 if (unlikely(dma_mapping_error(eth->dev, dma_addr))) {
1296 skb_free_frag(new_data);
1297 netdev->stats.rx_dropped++;
1302 skb = build_skb(data, ring->frag_size);
1303 if (unlikely(!skb)) {
1304 skb_free_frag(new_data);
1305 netdev->stats.rx_dropped++;
1308 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
1310 dma_unmap_single(eth->dev, trxd.rxd1,
1311 ring->buf_size, DMA_FROM_DEVICE);
1312 pktlen = RX_DMA_GET_PLEN0(trxd.rxd2);
1314 skb_put(skb, pktlen);
1315 if (trxd.rxd4 & eth->rx_dma_l4_valid)
1316 skb->ip_summed = CHECKSUM_UNNECESSARY;
1318 skb_checksum_none_assert(skb);
1319 skb->protocol = eth_type_trans(skb, netdev);
1321 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX &&
1322 RX_DMA_VID(trxd.rxd3))
1323 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
1324 RX_DMA_VID(trxd.rxd3));
1325 skb_record_rx_queue(skb, 0);
1326 napi_gro_receive(napi, skb);
1328 ring->data[idx] = new_data;
1329 rxd->rxd1 = (unsigned int)dma_addr;
1332 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628))
1333 rxd->rxd2 = RX_DMA_LSO;
1335 rxd->rxd2 = RX_DMA_PLEN0(ring->buf_size);
1337 ring->calc_idx = idx;
1344 /* make sure that all changes to the dma ring are flushed before
1348 mtk_update_rx_cpu_idx(eth);
1354 static int mtk_poll_tx_qdma(struct mtk_eth *eth, int budget,
1355 unsigned int *done, unsigned int *bytes)
1357 struct mtk_tx_ring *ring = ð->tx_ring;
1358 struct mtk_tx_dma *desc;
1359 struct sk_buff *skb;
1360 struct mtk_tx_buf *tx_buf;
1363 cpu = mtk_r32(eth, MTK_QTX_CRX_PTR);
1364 dma = mtk_r32(eth, MTK_QTX_DRX_PTR);
1366 desc = mtk_qdma_phys_to_virt(ring, cpu);
1368 while ((cpu != dma) && budget) {
1369 u32 next_cpu = desc->txd2;
1372 desc = mtk_qdma_phys_to_virt(ring, desc->txd2);
1373 if ((desc->txd3 & TX_DMA_OWNER_CPU) == 0)
1376 tx_buf = mtk_desc_to_tx_buf(ring, desc);
1377 if (tx_buf->flags & MTK_TX_FLAGS_FPORT1)
1384 if (skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC) {
1385 bytes[mac] += skb->len;
1389 mtk_tx_unmap(eth, tx_buf);
1391 ring->last_free = desc;
1392 atomic_inc(&ring->free_count);
1397 mtk_w32(eth, cpu, MTK_QTX_CRX_PTR);
1402 static int mtk_poll_tx_pdma(struct mtk_eth *eth, int budget,
1403 unsigned int *done, unsigned int *bytes)
1405 struct mtk_tx_ring *ring = ð->tx_ring;
1406 struct mtk_tx_dma *desc;
1407 struct sk_buff *skb;
1408 struct mtk_tx_buf *tx_buf;
1411 cpu = ring->cpu_idx;
1412 dma = mtk_r32(eth, MT7628_TX_DTX_IDX0);
1414 while ((cpu != dma) && budget) {
1415 tx_buf = &ring->buf[cpu];
1420 if (skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC) {
1421 bytes[0] += skb->len;
1426 mtk_tx_unmap(eth, tx_buf);
1428 desc = &ring->dma[cpu];
1429 ring->last_free = desc;
1430 atomic_inc(&ring->free_count);
1432 cpu = NEXT_DESP_IDX(cpu, ring->dma_size);
1435 ring->cpu_idx = cpu;
1440 static int mtk_poll_tx(struct mtk_eth *eth, int budget)
1442 struct mtk_tx_ring *ring = ð->tx_ring;
1443 unsigned int done[MTK_MAX_DEVS];
1444 unsigned int bytes[MTK_MAX_DEVS];
1447 memset(done, 0, sizeof(done));
1448 memset(bytes, 0, sizeof(bytes));
1450 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA))
1451 budget = mtk_poll_tx_qdma(eth, budget, done, bytes);
1453 budget = mtk_poll_tx_pdma(eth, budget, done, bytes);
1455 for (i = 0; i < MTK_MAC_COUNT; i++) {
1456 if (!eth->netdev[i] || !done[i])
1458 netdev_completed_queue(eth->netdev[i], done[i], bytes[i]);
1462 if (mtk_queue_stopped(eth) &&
1463 (atomic_read(&ring->free_count) > ring->thresh))
1464 mtk_wake_queue(eth);
1469 static void mtk_handle_status_irq(struct mtk_eth *eth)
1471 u32 status2 = mtk_r32(eth, MTK_INT_STATUS2);
1473 if (unlikely(status2 & (MTK_GDM1_AF | MTK_GDM2_AF))) {
1474 mtk_stats_update(eth);
1475 mtk_w32(eth, (MTK_GDM1_AF | MTK_GDM2_AF),
1480 static int mtk_napi_tx(struct napi_struct *napi, int budget)
1482 struct mtk_eth *eth = container_of(napi, struct mtk_eth, tx_napi);
1486 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA))
1487 mtk_handle_status_irq(eth);
1488 mtk_w32(eth, MTK_TX_DONE_INT, eth->tx_int_status_reg);
1489 tx_done = mtk_poll_tx(eth, budget);
1491 if (unlikely(netif_msg_intr(eth))) {
1492 status = mtk_r32(eth, eth->tx_int_status_reg);
1493 mask = mtk_r32(eth, eth->tx_int_mask_reg);
1495 "done tx %d, intr 0x%08x/0x%x\n",
1496 tx_done, status, mask);
1499 if (tx_done == budget)
1502 status = mtk_r32(eth, eth->tx_int_status_reg);
1503 if (status & MTK_TX_DONE_INT)
1506 napi_complete(napi);
1507 mtk_tx_irq_enable(eth, MTK_TX_DONE_INT);
1512 static int mtk_napi_rx(struct napi_struct *napi, int budget)
1514 struct mtk_eth *eth = container_of(napi, struct mtk_eth, rx_napi);
1517 int remain_budget = budget;
1519 mtk_handle_status_irq(eth);
1522 mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_STATUS);
1523 rx_done = mtk_poll_rx(napi, remain_budget, eth);
1525 if (unlikely(netif_msg_intr(eth))) {
1526 status = mtk_r32(eth, MTK_PDMA_INT_STATUS);
1527 mask = mtk_r32(eth, MTK_PDMA_INT_MASK);
1529 "done rx %d, intr 0x%08x/0x%x\n",
1530 rx_done, status, mask);
1532 if (rx_done == remain_budget)
1535 status = mtk_r32(eth, MTK_PDMA_INT_STATUS);
1536 if (status & MTK_RX_DONE_INT) {
1537 remain_budget -= rx_done;
1540 napi_complete(napi);
1541 mtk_rx_irq_enable(eth, MTK_RX_DONE_INT);
1543 return rx_done + budget - remain_budget;
1546 static int mtk_tx_alloc(struct mtk_eth *eth)
1548 struct mtk_tx_ring *ring = ð->tx_ring;
1549 int i, sz = sizeof(*ring->dma);
1551 ring->buf = kcalloc(MTK_DMA_SIZE, sizeof(*ring->buf),
1556 ring->dma = dma_alloc_coherent(eth->dev, MTK_DMA_SIZE * sz,
1557 &ring->phys, GFP_ATOMIC);
1561 for (i = 0; i < MTK_DMA_SIZE; i++) {
1562 int next = (i + 1) % MTK_DMA_SIZE;
1563 u32 next_ptr = ring->phys + next * sz;
1565 ring->dma[i].txd2 = next_ptr;
1566 ring->dma[i].txd3 = TX_DMA_LS0 | TX_DMA_OWNER_CPU;
1569 /* On MT7688 (PDMA only) this driver uses the ring->dma structs
1570 * only as the framework. The real HW descriptors are the PDMA
1571 * descriptors in ring->dma_pdma.
1573 if (!MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
1574 ring->dma_pdma = dma_alloc_coherent(eth->dev, MTK_DMA_SIZE * sz,
1577 if (!ring->dma_pdma)
1580 for (i = 0; i < MTK_DMA_SIZE; i++) {
1581 ring->dma_pdma[i].txd2 = TX_DMA_DESP2_DEF;
1582 ring->dma_pdma[i].txd4 = 0;
1586 ring->dma_size = MTK_DMA_SIZE;
1587 atomic_set(&ring->free_count, MTK_DMA_SIZE - 2);
1588 ring->next_free = &ring->dma[0];
1589 ring->last_free = &ring->dma[MTK_DMA_SIZE - 1];
1590 ring->thresh = MAX_SKB_FRAGS;
1592 /* make sure that all changes to the dma ring are flushed before we
1597 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
1598 mtk_w32(eth, ring->phys, MTK_QTX_CTX_PTR);
1599 mtk_w32(eth, ring->phys, MTK_QTX_DTX_PTR);
1601 ring->phys + ((MTK_DMA_SIZE - 1) * sz),
1604 ring->phys + ((MTK_DMA_SIZE - 1) * sz),
1606 mtk_w32(eth, (QDMA_RES_THRES << 8) | QDMA_RES_THRES,
1609 mtk_w32(eth, ring->phys_pdma, MT7628_TX_BASE_PTR0);
1610 mtk_w32(eth, MTK_DMA_SIZE, MT7628_TX_MAX_CNT0);
1611 mtk_w32(eth, 0, MT7628_TX_CTX_IDX0);
1612 mtk_w32(eth, MT7628_PST_DTX_IDX0, MTK_PDMA_RST_IDX);
1621 static void mtk_tx_clean(struct mtk_eth *eth)
1623 struct mtk_tx_ring *ring = ð->tx_ring;
1627 for (i = 0; i < MTK_DMA_SIZE; i++)
1628 mtk_tx_unmap(eth, &ring->buf[i]);
1634 dma_free_coherent(eth->dev,
1635 MTK_DMA_SIZE * sizeof(*ring->dma),
1641 if (ring->dma_pdma) {
1642 dma_free_coherent(eth->dev,
1643 MTK_DMA_SIZE * sizeof(*ring->dma_pdma),
1646 ring->dma_pdma = NULL;
1650 static int mtk_rx_alloc(struct mtk_eth *eth, int ring_no, int rx_flag)
1652 struct mtk_rx_ring *ring;
1653 int rx_data_len, rx_dma_size;
1657 if (rx_flag == MTK_RX_FLAGS_QDMA) {
1660 ring = ð->rx_ring_qdma;
1663 ring = ð->rx_ring[ring_no];
1666 if (rx_flag == MTK_RX_FLAGS_HWLRO) {
1667 rx_data_len = MTK_MAX_LRO_RX_LENGTH;
1668 rx_dma_size = MTK_HW_LRO_DMA_SIZE;
1670 rx_data_len = ETH_DATA_LEN;
1671 rx_dma_size = MTK_DMA_SIZE;
1674 ring->frag_size = mtk_max_frag_size(rx_data_len);
1675 ring->buf_size = mtk_max_buf_size(ring->frag_size);
1676 ring->data = kcalloc(rx_dma_size, sizeof(*ring->data),
1681 for (i = 0; i < rx_dma_size; i++) {
1682 ring->data[i] = netdev_alloc_frag(ring->frag_size);
1687 ring->dma = dma_alloc_coherent(eth->dev,
1688 rx_dma_size * sizeof(*ring->dma),
1689 &ring->phys, GFP_ATOMIC);
1693 for (i = 0; i < rx_dma_size; i++) {
1694 dma_addr_t dma_addr = dma_map_single(eth->dev,
1695 ring->data[i] + NET_SKB_PAD + eth->ip_align,
1698 if (unlikely(dma_mapping_error(eth->dev, dma_addr)))
1700 ring->dma[i].rxd1 = (unsigned int)dma_addr;
1702 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628))
1703 ring->dma[i].rxd2 = RX_DMA_LSO;
1705 ring->dma[i].rxd2 = RX_DMA_PLEN0(ring->buf_size);
1707 ring->dma_size = rx_dma_size;
1708 ring->calc_idx_update = false;
1709 ring->calc_idx = rx_dma_size - 1;
1710 ring->crx_idx_reg = MTK_PRX_CRX_IDX_CFG(ring_no);
1711 /* make sure that all changes to the dma ring are flushed before we
1716 mtk_w32(eth, ring->phys, MTK_PRX_BASE_PTR_CFG(ring_no) + offset);
1717 mtk_w32(eth, rx_dma_size, MTK_PRX_MAX_CNT_CFG(ring_no) + offset);
1718 mtk_w32(eth, ring->calc_idx, ring->crx_idx_reg + offset);
1719 mtk_w32(eth, MTK_PST_DRX_IDX_CFG(ring_no), MTK_PDMA_RST_IDX + offset);
1724 static void mtk_rx_clean(struct mtk_eth *eth, struct mtk_rx_ring *ring)
1728 if (ring->data && ring->dma) {
1729 for (i = 0; i < ring->dma_size; i++) {
1732 if (!ring->dma[i].rxd1)
1734 dma_unmap_single(eth->dev,
1738 skb_free_frag(ring->data[i]);
1745 dma_free_coherent(eth->dev,
1746 ring->dma_size * sizeof(*ring->dma),
1753 static int mtk_hwlro_rx_init(struct mtk_eth *eth)
1756 u32 ring_ctrl_dw1 = 0, ring_ctrl_dw2 = 0, ring_ctrl_dw3 = 0;
1757 u32 lro_ctrl_dw0 = 0, lro_ctrl_dw3 = 0;
1759 /* set LRO rings to auto-learn modes */
1760 ring_ctrl_dw2 |= MTK_RING_AUTO_LERAN_MODE;
1762 /* validate LRO ring */
1763 ring_ctrl_dw2 |= MTK_RING_VLD;
1765 /* set AGE timer (unit: 20us) */
1766 ring_ctrl_dw2 |= MTK_RING_AGE_TIME_H;
1767 ring_ctrl_dw1 |= MTK_RING_AGE_TIME_L;
1769 /* set max AGG timer (unit: 20us) */
1770 ring_ctrl_dw2 |= MTK_RING_MAX_AGG_TIME;
1772 /* set max LRO AGG count */
1773 ring_ctrl_dw2 |= MTK_RING_MAX_AGG_CNT_L;
1774 ring_ctrl_dw3 |= MTK_RING_MAX_AGG_CNT_H;
1776 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++) {
1777 mtk_w32(eth, ring_ctrl_dw1, MTK_LRO_CTRL_DW1_CFG(i));
1778 mtk_w32(eth, ring_ctrl_dw2, MTK_LRO_CTRL_DW2_CFG(i));
1779 mtk_w32(eth, ring_ctrl_dw3, MTK_LRO_CTRL_DW3_CFG(i));
1782 /* IPv4 checksum update enable */
1783 lro_ctrl_dw0 |= MTK_L3_CKS_UPD_EN;
1785 /* switch priority comparison to packet count mode */
1786 lro_ctrl_dw0 |= MTK_LRO_ALT_PKT_CNT_MODE;
1788 /* bandwidth threshold setting */
1789 mtk_w32(eth, MTK_HW_LRO_BW_THRE, MTK_PDMA_LRO_CTRL_DW2);
1791 /* auto-learn score delta setting */
1792 mtk_w32(eth, MTK_HW_LRO_REPLACE_DELTA, MTK_PDMA_LRO_ALT_SCORE_DELTA);
1794 /* set refresh timer for altering flows to 1 sec. (unit: 20us) */
1795 mtk_w32(eth, (MTK_HW_LRO_TIMER_UNIT << 16) | MTK_HW_LRO_REFRESH_TIME,
1796 MTK_PDMA_LRO_ALT_REFRESH_TIMER);
1798 /* set HW LRO mode & the max aggregation count for rx packets */
1799 lro_ctrl_dw3 |= MTK_ADMA_MODE | (MTK_HW_LRO_MAX_AGG_CNT & 0xff);
1801 /* the minimal remaining room of SDL0 in RXD for lro aggregation */
1802 lro_ctrl_dw3 |= MTK_LRO_MIN_RXD_SDL;
1805 lro_ctrl_dw0 |= MTK_LRO_EN;
1807 mtk_w32(eth, lro_ctrl_dw3, MTK_PDMA_LRO_CTRL_DW3);
1808 mtk_w32(eth, lro_ctrl_dw0, MTK_PDMA_LRO_CTRL_DW0);
1813 static void mtk_hwlro_rx_uninit(struct mtk_eth *eth)
1818 /* relinquish lro rings, flush aggregated packets */
1819 mtk_w32(eth, MTK_LRO_RING_RELINQUISH_REQ, MTK_PDMA_LRO_CTRL_DW0);
1821 /* wait for relinquishments done */
1822 for (i = 0; i < 10; i++) {
1823 val = mtk_r32(eth, MTK_PDMA_LRO_CTRL_DW0);
1824 if (val & MTK_LRO_RING_RELINQUISH_DONE) {
1831 /* invalidate lro rings */
1832 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++)
1833 mtk_w32(eth, 0, MTK_LRO_CTRL_DW2_CFG(i));
1835 /* disable HW LRO */
1836 mtk_w32(eth, 0, MTK_PDMA_LRO_CTRL_DW0);
1839 static void mtk_hwlro_val_ipaddr(struct mtk_eth *eth, int idx, __be32 ip)
1843 reg_val = mtk_r32(eth, MTK_LRO_CTRL_DW2_CFG(idx));
1845 /* invalidate the IP setting */
1846 mtk_w32(eth, (reg_val & ~MTK_RING_MYIP_VLD), MTK_LRO_CTRL_DW2_CFG(idx));
1848 mtk_w32(eth, ip, MTK_LRO_DIP_DW0_CFG(idx));
1850 /* validate the IP setting */
1851 mtk_w32(eth, (reg_val | MTK_RING_MYIP_VLD), MTK_LRO_CTRL_DW2_CFG(idx));
1854 static void mtk_hwlro_inval_ipaddr(struct mtk_eth *eth, int idx)
1858 reg_val = mtk_r32(eth, MTK_LRO_CTRL_DW2_CFG(idx));
1860 /* invalidate the IP setting */
1861 mtk_w32(eth, (reg_val & ~MTK_RING_MYIP_VLD), MTK_LRO_CTRL_DW2_CFG(idx));
1863 mtk_w32(eth, 0, MTK_LRO_DIP_DW0_CFG(idx));
1866 static int mtk_hwlro_get_ip_cnt(struct mtk_mac *mac)
1871 for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) {
1872 if (mac->hwlro_ip[i])
1879 static int mtk_hwlro_add_ipaddr(struct net_device *dev,
1880 struct ethtool_rxnfc *cmd)
1882 struct ethtool_rx_flow_spec *fsp =
1883 (struct ethtool_rx_flow_spec *)&cmd->fs;
1884 struct mtk_mac *mac = netdev_priv(dev);
1885 struct mtk_eth *eth = mac->hw;
1888 if ((fsp->flow_type != TCP_V4_FLOW) ||
1889 (!fsp->h_u.tcp_ip4_spec.ip4dst) ||
1890 (fsp->location > 1))
1893 mac->hwlro_ip[fsp->location] = htonl(fsp->h_u.tcp_ip4_spec.ip4dst);
1894 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + fsp->location;
1896 mac->hwlro_ip_cnt = mtk_hwlro_get_ip_cnt(mac);
1898 mtk_hwlro_val_ipaddr(eth, hwlro_idx, mac->hwlro_ip[fsp->location]);
1903 static int mtk_hwlro_del_ipaddr(struct net_device *dev,
1904 struct ethtool_rxnfc *cmd)
1906 struct ethtool_rx_flow_spec *fsp =
1907 (struct ethtool_rx_flow_spec *)&cmd->fs;
1908 struct mtk_mac *mac = netdev_priv(dev);
1909 struct mtk_eth *eth = mac->hw;
1912 if (fsp->location > 1)
1915 mac->hwlro_ip[fsp->location] = 0;
1916 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + fsp->location;
1918 mac->hwlro_ip_cnt = mtk_hwlro_get_ip_cnt(mac);
1920 mtk_hwlro_inval_ipaddr(eth, hwlro_idx);
1925 static void mtk_hwlro_netdev_disable(struct net_device *dev)
1927 struct mtk_mac *mac = netdev_priv(dev);
1928 struct mtk_eth *eth = mac->hw;
1931 for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) {
1932 mac->hwlro_ip[i] = 0;
1933 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + i;
1935 mtk_hwlro_inval_ipaddr(eth, hwlro_idx);
1938 mac->hwlro_ip_cnt = 0;
1941 static int mtk_hwlro_get_fdir_entry(struct net_device *dev,
1942 struct ethtool_rxnfc *cmd)
1944 struct mtk_mac *mac = netdev_priv(dev);
1945 struct ethtool_rx_flow_spec *fsp =
1946 (struct ethtool_rx_flow_spec *)&cmd->fs;
1948 /* only tcp dst ipv4 is meaningful, others are meaningless */
1949 fsp->flow_type = TCP_V4_FLOW;
1950 fsp->h_u.tcp_ip4_spec.ip4dst = ntohl(mac->hwlro_ip[fsp->location]);
1951 fsp->m_u.tcp_ip4_spec.ip4dst = 0;
1953 fsp->h_u.tcp_ip4_spec.ip4src = 0;
1954 fsp->m_u.tcp_ip4_spec.ip4src = 0xffffffff;
1955 fsp->h_u.tcp_ip4_spec.psrc = 0;
1956 fsp->m_u.tcp_ip4_spec.psrc = 0xffff;
1957 fsp->h_u.tcp_ip4_spec.pdst = 0;
1958 fsp->m_u.tcp_ip4_spec.pdst = 0xffff;
1959 fsp->h_u.tcp_ip4_spec.tos = 0;
1960 fsp->m_u.tcp_ip4_spec.tos = 0xff;
1965 static int mtk_hwlro_get_fdir_all(struct net_device *dev,
1966 struct ethtool_rxnfc *cmd,
1969 struct mtk_mac *mac = netdev_priv(dev);
1973 for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) {
1974 if (mac->hwlro_ip[i]) {
1980 cmd->rule_cnt = cnt;
1985 static netdev_features_t mtk_fix_features(struct net_device *dev,
1986 netdev_features_t features)
1988 if (!(features & NETIF_F_LRO)) {
1989 struct mtk_mac *mac = netdev_priv(dev);
1990 int ip_cnt = mtk_hwlro_get_ip_cnt(mac);
1993 netdev_info(dev, "RX flow is programmed, LRO should keep on\n");
1995 features |= NETIF_F_LRO;
2002 static int mtk_set_features(struct net_device *dev, netdev_features_t features)
2006 if (!((dev->features ^ features) & NETIF_F_LRO))
2009 if (!(features & NETIF_F_LRO))
2010 mtk_hwlro_netdev_disable(dev);
2015 /* wait for DMA to finish whatever it is doing before we start using it again */
2016 static int mtk_dma_busy_wait(struct mtk_eth *eth)
2018 unsigned long t_start = jiffies;
2021 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
2022 if (!(mtk_r32(eth, MTK_QDMA_GLO_CFG) &
2023 (MTK_RX_DMA_BUSY | MTK_TX_DMA_BUSY)))
2026 if (!(mtk_r32(eth, MTK_PDMA_GLO_CFG) &
2027 (MTK_RX_DMA_BUSY | MTK_TX_DMA_BUSY)))
2031 if (time_after(jiffies, t_start + MTK_DMA_BUSY_TIMEOUT))
2035 dev_err(eth->dev, "DMA init timeout\n");
2039 static int mtk_dma_init(struct mtk_eth *eth)
2044 if (mtk_dma_busy_wait(eth))
2047 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
2048 /* QDMA needs scratch memory for internal reordering of the
2051 err = mtk_init_fq_dma(eth);
2056 err = mtk_tx_alloc(eth);
2060 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
2061 err = mtk_rx_alloc(eth, 0, MTK_RX_FLAGS_QDMA);
2066 err = mtk_rx_alloc(eth, 0, MTK_RX_FLAGS_NORMAL);
2071 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++) {
2072 err = mtk_rx_alloc(eth, i, MTK_RX_FLAGS_HWLRO);
2076 err = mtk_hwlro_rx_init(eth);
2081 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
2082 /* Enable random early drop and set drop threshold
2085 mtk_w32(eth, FC_THRES_DROP_MODE | FC_THRES_DROP_EN |
2086 FC_THRES_MIN, MTK_QDMA_FC_THRES);
2087 mtk_w32(eth, 0x0, MTK_QDMA_HRED2);
2093 static void mtk_dma_free(struct mtk_eth *eth)
2097 for (i = 0; i < MTK_MAC_COUNT; i++)
2099 netdev_reset_queue(eth->netdev[i]);
2100 if (eth->scratch_ring) {
2101 dma_free_coherent(eth->dev,
2102 MTK_DMA_SIZE * sizeof(struct mtk_tx_dma),
2104 eth->phy_scratch_ring);
2105 eth->scratch_ring = NULL;
2106 eth->phy_scratch_ring = 0;
2109 mtk_rx_clean(eth, ð->rx_ring[0]);
2110 mtk_rx_clean(eth, ð->rx_ring_qdma);
2113 mtk_hwlro_rx_uninit(eth);
2114 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++)
2115 mtk_rx_clean(eth, ð->rx_ring[i]);
2118 kfree(eth->scratch_head);
2121 static void mtk_tx_timeout(struct net_device *dev, unsigned int txqueue)
2123 struct mtk_mac *mac = netdev_priv(dev);
2124 struct mtk_eth *eth = mac->hw;
2126 eth->netdev[mac->id]->stats.tx_errors++;
2127 netif_err(eth, tx_err, dev,
2128 "transmit timed out\n");
2129 schedule_work(ð->pending_work);
2132 static irqreturn_t mtk_handle_irq_rx(int irq, void *_eth)
2134 struct mtk_eth *eth = _eth;
2136 if (likely(napi_schedule_prep(ð->rx_napi))) {
2137 __napi_schedule(ð->rx_napi);
2138 mtk_rx_irq_disable(eth, MTK_RX_DONE_INT);
2144 static irqreturn_t mtk_handle_irq_tx(int irq, void *_eth)
2146 struct mtk_eth *eth = _eth;
2148 if (likely(napi_schedule_prep(ð->tx_napi))) {
2149 __napi_schedule(ð->tx_napi);
2150 mtk_tx_irq_disable(eth, MTK_TX_DONE_INT);
2156 static irqreturn_t mtk_handle_irq(int irq, void *_eth)
2158 struct mtk_eth *eth = _eth;
2160 if (mtk_r32(eth, MTK_PDMA_INT_MASK) & MTK_RX_DONE_INT) {
2161 if (mtk_r32(eth, MTK_PDMA_INT_STATUS) & MTK_RX_DONE_INT)
2162 mtk_handle_irq_rx(irq, _eth);
2164 if (mtk_r32(eth, eth->tx_int_mask_reg) & MTK_TX_DONE_INT) {
2165 if (mtk_r32(eth, eth->tx_int_status_reg) & MTK_TX_DONE_INT)
2166 mtk_handle_irq_tx(irq, _eth);
2172 #ifdef CONFIG_NET_POLL_CONTROLLER
2173 static void mtk_poll_controller(struct net_device *dev)
2175 struct mtk_mac *mac = netdev_priv(dev);
2176 struct mtk_eth *eth = mac->hw;
2178 mtk_tx_irq_disable(eth, MTK_TX_DONE_INT);
2179 mtk_rx_irq_disable(eth, MTK_RX_DONE_INT);
2180 mtk_handle_irq_rx(eth->irq[2], dev);
2181 mtk_tx_irq_enable(eth, MTK_TX_DONE_INT);
2182 mtk_rx_irq_enable(eth, MTK_RX_DONE_INT);
2186 static int mtk_start_dma(struct mtk_eth *eth)
2188 u32 rx_2b_offset = (NET_IP_ALIGN == 2) ? MTK_RX_2B_OFFSET : 0;
2191 err = mtk_dma_init(eth);
2197 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
2199 MTK_TX_WB_DDONE | MTK_TX_DMA_EN |
2200 MTK_DMA_SIZE_16DWORDS | MTK_NDP_CO_PRO |
2201 MTK_RX_DMA_EN | MTK_RX_2B_OFFSET |
2206 MTK_RX_DMA_EN | rx_2b_offset |
2207 MTK_RX_BT_32DWORDS | MTK_MULTI_EN,
2210 mtk_w32(eth, MTK_TX_WB_DDONE | MTK_TX_DMA_EN | MTK_RX_DMA_EN |
2211 MTK_MULTI_EN | MTK_PDMA_SIZE_8DWORDS,
2218 static void mtk_gdm_config(struct mtk_eth *eth, u32 config)
2222 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628))
2225 for (i = 0; i < MTK_MAC_COUNT; i++) {
2226 u32 val = mtk_r32(eth, MTK_GDMA_FWD_CFG(i));
2228 /* default setup the forward port to send frame to PDMA */
2231 /* Enable RX checksum */
2232 val |= MTK_GDMA_ICS_EN | MTK_GDMA_TCS_EN | MTK_GDMA_UCS_EN;
2236 mtk_w32(eth, val, MTK_GDMA_FWD_CFG(i));
2238 /* Reset and enable PSE */
2239 mtk_w32(eth, RST_GL_PSE, MTK_RST_GL);
2240 mtk_w32(eth, 0, MTK_RST_GL);
2243 static int mtk_open(struct net_device *dev)
2245 struct mtk_mac *mac = netdev_priv(dev);
2246 struct mtk_eth *eth = mac->hw;
2249 err = phylink_of_phy_connect(mac->phylink, mac->of_node, 0);
2251 netdev_err(dev, "%s: could not attach PHY: %d\n", __func__,
2256 /* we run 2 netdevs on the same dma ring so we only bring it up once */
2257 if (!refcount_read(ð->dma_refcnt)) {
2258 int err = mtk_start_dma(eth);
2263 mtk_gdm_config(eth, MTK_GDMA_TO_PDMA);
2265 napi_enable(ð->tx_napi);
2266 napi_enable(ð->rx_napi);
2267 mtk_tx_irq_enable(eth, MTK_TX_DONE_INT);
2268 mtk_rx_irq_enable(eth, MTK_RX_DONE_INT);
2269 refcount_set(ð->dma_refcnt, 1);
2272 refcount_inc(ð->dma_refcnt);
2274 phylink_start(mac->phylink);
2275 netif_start_queue(dev);
2279 static void mtk_stop_dma(struct mtk_eth *eth, u32 glo_cfg)
2284 /* stop the dma engine */
2285 spin_lock_bh(ð->page_lock);
2286 val = mtk_r32(eth, glo_cfg);
2287 mtk_w32(eth, val & ~(MTK_TX_WB_DDONE | MTK_RX_DMA_EN | MTK_TX_DMA_EN),
2289 spin_unlock_bh(ð->page_lock);
2291 /* wait for dma stop */
2292 for (i = 0; i < 10; i++) {
2293 val = mtk_r32(eth, glo_cfg);
2294 if (val & (MTK_TX_DMA_BUSY | MTK_RX_DMA_BUSY)) {
2302 static int mtk_stop(struct net_device *dev)
2304 struct mtk_mac *mac = netdev_priv(dev);
2305 struct mtk_eth *eth = mac->hw;
2307 phylink_stop(mac->phylink);
2309 netif_tx_disable(dev);
2311 phylink_disconnect_phy(mac->phylink);
2313 /* only shutdown DMA if this is the last user */
2314 if (!refcount_dec_and_test(ð->dma_refcnt))
2317 mtk_gdm_config(eth, MTK_GDMA_DROP_ALL);
2319 mtk_tx_irq_disable(eth, MTK_TX_DONE_INT);
2320 mtk_rx_irq_disable(eth, MTK_RX_DONE_INT);
2321 napi_disable(ð->tx_napi);
2322 napi_disable(ð->rx_napi);
2324 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA))
2325 mtk_stop_dma(eth, MTK_QDMA_GLO_CFG);
2326 mtk_stop_dma(eth, MTK_PDMA_GLO_CFG);
2333 static void ethsys_reset(struct mtk_eth *eth, u32 reset_bits)
2335 regmap_update_bits(eth->ethsys, ETHSYS_RSTCTRL,
2339 usleep_range(1000, 1100);
2340 regmap_update_bits(eth->ethsys, ETHSYS_RSTCTRL,
2346 static void mtk_clk_disable(struct mtk_eth *eth)
2350 for (clk = MTK_CLK_MAX - 1; clk >= 0; clk--)
2351 clk_disable_unprepare(eth->clks[clk]);
2354 static int mtk_clk_enable(struct mtk_eth *eth)
2358 for (clk = 0; clk < MTK_CLK_MAX ; clk++) {
2359 ret = clk_prepare_enable(eth->clks[clk]);
2361 goto err_disable_clks;
2368 clk_disable_unprepare(eth->clks[clk]);
2373 static int mtk_hw_init(struct mtk_eth *eth)
2377 if (test_and_set_bit(MTK_HW_INIT, ð->state))
2380 pm_runtime_enable(eth->dev);
2381 pm_runtime_get_sync(eth->dev);
2383 ret = mtk_clk_enable(eth);
2385 goto err_disable_pm;
2387 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628)) {
2388 ret = device_reset(eth->dev);
2390 dev_err(eth->dev, "MAC reset failed!\n");
2391 goto err_disable_pm;
2394 /* enable interrupt delay for RX */
2395 mtk_w32(eth, MTK_PDMA_DELAY_RX_DELAY, MTK_PDMA_DELAY_INT);
2397 /* disable delay and normal interrupt */
2398 mtk_tx_irq_disable(eth, ~0);
2399 mtk_rx_irq_disable(eth, ~0);
2404 /* Non-MT7628 handling... */
2405 ethsys_reset(eth, RSTCTRL_FE);
2406 ethsys_reset(eth, RSTCTRL_PPE);
2409 /* Set GE2 driving and slew rate */
2410 regmap_write(eth->pctl, GPIO_DRV_SEL10, 0xa00);
2413 regmap_write(eth->pctl, GPIO_OD33_CTRL8, 0x5);
2416 regmap_write(eth->pctl, GPIO_BIAS_CTRL, 0x0);
2419 /* Set linkdown as the default for each GMAC. Its own MCR would be set
2420 * up with the more appropriate value when mtk_mac_config call is being
2423 for (i = 0; i < MTK_MAC_COUNT; i++)
2424 mtk_w32(eth, MAC_MCR_FORCE_LINK_DOWN, MTK_MAC_MCR(i));
2426 /* Indicates CDM to parse the MTK special tag from CPU
2427 * which also is working out for untag packets.
2429 val = mtk_r32(eth, MTK_CDMQ_IG_CTRL);
2430 mtk_w32(eth, val | MTK_CDMQ_STAG_EN, MTK_CDMQ_IG_CTRL);
2432 /* Enable RX VLan Offloading */
2433 mtk_w32(eth, 1, MTK_CDMP_EG_CTRL);
2435 /* enable interrupt delay for RX */
2436 mtk_w32(eth, MTK_PDMA_DELAY_RX_DELAY, MTK_PDMA_DELAY_INT);
2438 /* disable delay and normal interrupt */
2439 mtk_w32(eth, 0, MTK_QDMA_DELAY_INT);
2440 mtk_tx_irq_disable(eth, ~0);
2441 mtk_rx_irq_disable(eth, ~0);
2443 /* FE int grouping */
2444 mtk_w32(eth, MTK_TX_DONE_INT, MTK_PDMA_INT_GRP1);
2445 mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_GRP2);
2446 mtk_w32(eth, MTK_TX_DONE_INT, MTK_QDMA_INT_GRP1);
2447 mtk_w32(eth, MTK_RX_DONE_INT, MTK_QDMA_INT_GRP2);
2448 mtk_w32(eth, 0x21021000, MTK_FE_INT_GRP);
2453 pm_runtime_put_sync(eth->dev);
2454 pm_runtime_disable(eth->dev);
2459 static int mtk_hw_deinit(struct mtk_eth *eth)
2461 if (!test_and_clear_bit(MTK_HW_INIT, ð->state))
2464 mtk_clk_disable(eth);
2466 pm_runtime_put_sync(eth->dev);
2467 pm_runtime_disable(eth->dev);
2472 static int __init mtk_init(struct net_device *dev)
2474 struct mtk_mac *mac = netdev_priv(dev);
2475 struct mtk_eth *eth = mac->hw;
2476 const char *mac_addr;
2478 mac_addr = of_get_mac_address(mac->of_node);
2479 if (!IS_ERR(mac_addr))
2480 ether_addr_copy(dev->dev_addr, mac_addr);
2482 /* If the mac address is invalid, use random mac address */
2483 if (!is_valid_ether_addr(dev->dev_addr)) {
2484 eth_hw_addr_random(dev);
2485 dev_err(eth->dev, "generated random MAC address %pM\n",
2492 static void mtk_uninit(struct net_device *dev)
2494 struct mtk_mac *mac = netdev_priv(dev);
2495 struct mtk_eth *eth = mac->hw;
2497 phylink_disconnect_phy(mac->phylink);
2498 mtk_tx_irq_disable(eth, ~0);
2499 mtk_rx_irq_disable(eth, ~0);
2502 static int mtk_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2504 struct mtk_mac *mac = netdev_priv(dev);
2510 return phylink_mii_ioctl(mac->phylink, ifr, cmd);
2518 static void mtk_pending_work(struct work_struct *work)
2520 struct mtk_eth *eth = container_of(work, struct mtk_eth, pending_work);
2522 unsigned long restart = 0;
2526 dev_dbg(eth->dev, "[%s][%d] reset\n", __func__, __LINE__);
2528 while (test_and_set_bit_lock(MTK_RESETTING, ð->state))
2531 dev_dbg(eth->dev, "[%s][%d] mtk_stop starts\n", __func__, __LINE__);
2532 /* stop all devices to make sure that dma is properly shut down */
2533 for (i = 0; i < MTK_MAC_COUNT; i++) {
2534 if (!eth->netdev[i])
2536 mtk_stop(eth->netdev[i]);
2537 __set_bit(i, &restart);
2539 dev_dbg(eth->dev, "[%s][%d] mtk_stop ends\n", __func__, __LINE__);
2541 /* restart underlying hardware such as power, clock, pin mux
2542 * and the connected phy
2547 pinctrl_select_state(eth->dev->pins->p,
2548 eth->dev->pins->default_state);
2551 /* restart DMA and enable IRQs */
2552 for (i = 0; i < MTK_MAC_COUNT; i++) {
2553 if (!test_bit(i, &restart))
2555 err = mtk_open(eth->netdev[i]);
2557 netif_alert(eth, ifup, eth->netdev[i],
2558 "Driver up/down cycle failed, closing device.\n");
2559 dev_close(eth->netdev[i]);
2563 dev_dbg(eth->dev, "[%s][%d] reset done\n", __func__, __LINE__);
2565 clear_bit_unlock(MTK_RESETTING, ð->state);
2570 static int mtk_free_dev(struct mtk_eth *eth)
2574 for (i = 0; i < MTK_MAC_COUNT; i++) {
2575 if (!eth->netdev[i])
2577 free_netdev(eth->netdev[i]);
2583 static int mtk_unreg_dev(struct mtk_eth *eth)
2587 for (i = 0; i < MTK_MAC_COUNT; i++) {
2588 if (!eth->netdev[i])
2590 unregister_netdev(eth->netdev[i]);
2596 static int mtk_cleanup(struct mtk_eth *eth)
2600 cancel_work_sync(ð->pending_work);
2605 static int mtk_get_link_ksettings(struct net_device *ndev,
2606 struct ethtool_link_ksettings *cmd)
2608 struct mtk_mac *mac = netdev_priv(ndev);
2610 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2613 return phylink_ethtool_ksettings_get(mac->phylink, cmd);
2616 static int mtk_set_link_ksettings(struct net_device *ndev,
2617 const struct ethtool_link_ksettings *cmd)
2619 struct mtk_mac *mac = netdev_priv(ndev);
2621 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2624 return phylink_ethtool_ksettings_set(mac->phylink, cmd);
2627 static void mtk_get_drvinfo(struct net_device *dev,
2628 struct ethtool_drvinfo *info)
2630 struct mtk_mac *mac = netdev_priv(dev);
2632 strlcpy(info->driver, mac->hw->dev->driver->name, sizeof(info->driver));
2633 strlcpy(info->bus_info, dev_name(mac->hw->dev), sizeof(info->bus_info));
2634 info->n_stats = ARRAY_SIZE(mtk_ethtool_stats);
2637 static u32 mtk_get_msglevel(struct net_device *dev)
2639 struct mtk_mac *mac = netdev_priv(dev);
2641 return mac->hw->msg_enable;
2644 static void mtk_set_msglevel(struct net_device *dev, u32 value)
2646 struct mtk_mac *mac = netdev_priv(dev);
2648 mac->hw->msg_enable = value;
2651 static int mtk_nway_reset(struct net_device *dev)
2653 struct mtk_mac *mac = netdev_priv(dev);
2655 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2661 return phylink_ethtool_nway_reset(mac->phylink);
2664 static void mtk_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2668 switch (stringset) {
2670 for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++) {
2671 memcpy(data, mtk_ethtool_stats[i].str, ETH_GSTRING_LEN);
2672 data += ETH_GSTRING_LEN;
2678 static int mtk_get_sset_count(struct net_device *dev, int sset)
2682 return ARRAY_SIZE(mtk_ethtool_stats);
2688 static void mtk_get_ethtool_stats(struct net_device *dev,
2689 struct ethtool_stats *stats, u64 *data)
2691 struct mtk_mac *mac = netdev_priv(dev);
2692 struct mtk_hw_stats *hwstats = mac->hw_stats;
2693 u64 *data_src, *data_dst;
2697 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2700 if (netif_running(dev) && netif_device_present(dev)) {
2701 if (spin_trylock_bh(&hwstats->stats_lock)) {
2702 mtk_stats_update_mac(mac);
2703 spin_unlock_bh(&hwstats->stats_lock);
2707 data_src = (u64 *)hwstats;
2711 start = u64_stats_fetch_begin_irq(&hwstats->syncp);
2713 for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++)
2714 *data_dst++ = *(data_src + mtk_ethtool_stats[i].offset);
2715 } while (u64_stats_fetch_retry_irq(&hwstats->syncp, start));
2718 static int mtk_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
2721 int ret = -EOPNOTSUPP;
2724 case ETHTOOL_GRXRINGS:
2725 if (dev->hw_features & NETIF_F_LRO) {
2726 cmd->data = MTK_MAX_RX_RING_NUM;
2730 case ETHTOOL_GRXCLSRLCNT:
2731 if (dev->hw_features & NETIF_F_LRO) {
2732 struct mtk_mac *mac = netdev_priv(dev);
2734 cmd->rule_cnt = mac->hwlro_ip_cnt;
2738 case ETHTOOL_GRXCLSRULE:
2739 if (dev->hw_features & NETIF_F_LRO)
2740 ret = mtk_hwlro_get_fdir_entry(dev, cmd);
2742 case ETHTOOL_GRXCLSRLALL:
2743 if (dev->hw_features & NETIF_F_LRO)
2744 ret = mtk_hwlro_get_fdir_all(dev, cmd,
2754 static int mtk_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
2756 int ret = -EOPNOTSUPP;
2759 case ETHTOOL_SRXCLSRLINS:
2760 if (dev->hw_features & NETIF_F_LRO)
2761 ret = mtk_hwlro_add_ipaddr(dev, cmd);
2763 case ETHTOOL_SRXCLSRLDEL:
2764 if (dev->hw_features & NETIF_F_LRO)
2765 ret = mtk_hwlro_del_ipaddr(dev, cmd);
2774 static const struct ethtool_ops mtk_ethtool_ops = {
2775 .get_link_ksettings = mtk_get_link_ksettings,
2776 .set_link_ksettings = mtk_set_link_ksettings,
2777 .get_drvinfo = mtk_get_drvinfo,
2778 .get_msglevel = mtk_get_msglevel,
2779 .set_msglevel = mtk_set_msglevel,
2780 .nway_reset = mtk_nway_reset,
2781 .get_link = ethtool_op_get_link,
2782 .get_strings = mtk_get_strings,
2783 .get_sset_count = mtk_get_sset_count,
2784 .get_ethtool_stats = mtk_get_ethtool_stats,
2785 .get_rxnfc = mtk_get_rxnfc,
2786 .set_rxnfc = mtk_set_rxnfc,
2789 static const struct net_device_ops mtk_netdev_ops = {
2790 .ndo_init = mtk_init,
2791 .ndo_uninit = mtk_uninit,
2792 .ndo_open = mtk_open,
2793 .ndo_stop = mtk_stop,
2794 .ndo_start_xmit = mtk_start_xmit,
2795 .ndo_set_mac_address = mtk_set_mac_address,
2796 .ndo_validate_addr = eth_validate_addr,
2797 .ndo_do_ioctl = mtk_do_ioctl,
2798 .ndo_tx_timeout = mtk_tx_timeout,
2799 .ndo_get_stats64 = mtk_get_stats64,
2800 .ndo_fix_features = mtk_fix_features,
2801 .ndo_set_features = mtk_set_features,
2802 #ifdef CONFIG_NET_POLL_CONTROLLER
2803 .ndo_poll_controller = mtk_poll_controller,
2807 static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np)
2809 const __be32 *_id = of_get_property(np, "reg", NULL);
2810 phy_interface_t phy_mode;
2811 struct phylink *phylink;
2812 struct mtk_mac *mac;
2816 dev_err(eth->dev, "missing mac id\n");
2820 id = be32_to_cpup(_id);
2821 if (id >= MTK_MAC_COUNT) {
2822 dev_err(eth->dev, "%d is not a valid mac id\n", id);
2826 if (eth->netdev[id]) {
2827 dev_err(eth->dev, "duplicate mac id found: %d\n", id);
2831 eth->netdev[id] = alloc_etherdev(sizeof(*mac));
2832 if (!eth->netdev[id]) {
2833 dev_err(eth->dev, "alloc_etherdev failed\n");
2836 mac = netdev_priv(eth->netdev[id]);
2842 memset(mac->hwlro_ip, 0, sizeof(mac->hwlro_ip));
2843 mac->hwlro_ip_cnt = 0;
2845 mac->hw_stats = devm_kzalloc(eth->dev,
2846 sizeof(*mac->hw_stats),
2848 if (!mac->hw_stats) {
2849 dev_err(eth->dev, "failed to allocate counter memory\n");
2853 spin_lock_init(&mac->hw_stats->stats_lock);
2854 u64_stats_init(&mac->hw_stats->syncp);
2855 mac->hw_stats->reg_offset = id * MTK_STAT_OFFSET;
2857 /* phylink create */
2858 err = of_get_phy_mode(np, &phy_mode);
2860 dev_err(eth->dev, "incorrect phy-mode\n");
2864 /* mac config is not set */
2865 mac->interface = PHY_INTERFACE_MODE_NA;
2866 mac->mode = MLO_AN_PHY;
2867 mac->speed = SPEED_UNKNOWN;
2869 mac->phylink_config.dev = ð->netdev[id]->dev;
2870 mac->phylink_config.type = PHYLINK_NETDEV;
2872 phylink = phylink_create(&mac->phylink_config,
2873 of_fwnode_handle(mac->of_node),
2874 phy_mode, &mtk_phylink_ops);
2875 if (IS_ERR(phylink)) {
2876 err = PTR_ERR(phylink);
2880 mac->phylink = phylink;
2882 SET_NETDEV_DEV(eth->netdev[id], eth->dev);
2883 eth->netdev[id]->watchdog_timeo = 5 * HZ;
2884 eth->netdev[id]->netdev_ops = &mtk_netdev_ops;
2885 eth->netdev[id]->base_addr = (unsigned long)eth->base;
2887 eth->netdev[id]->hw_features = eth->soc->hw_features;
2889 eth->netdev[id]->hw_features |= NETIF_F_LRO;
2891 eth->netdev[id]->vlan_features = eth->soc->hw_features &
2892 ~(NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX);
2893 eth->netdev[id]->features |= eth->soc->hw_features;
2894 eth->netdev[id]->ethtool_ops = &mtk_ethtool_ops;
2896 eth->netdev[id]->irq = eth->irq[0];
2897 eth->netdev[id]->dev.of_node = np;
2899 eth->netdev[id]->max_mtu = MTK_MAX_RX_LENGTH - MTK_RX_ETH_HLEN;
2904 free_netdev(eth->netdev[id]);
2908 static int mtk_probe(struct platform_device *pdev)
2910 struct device_node *mac_np;
2911 struct mtk_eth *eth;
2914 eth = devm_kzalloc(&pdev->dev, sizeof(*eth), GFP_KERNEL);
2918 eth->soc = of_device_get_match_data(&pdev->dev);
2920 eth->dev = &pdev->dev;
2921 eth->base = devm_platform_ioremap_resource(pdev, 0);
2922 if (IS_ERR(eth->base))
2923 return PTR_ERR(eth->base);
2925 if (MTK_HAS_CAPS(eth->soc->caps, MTK_QDMA)) {
2926 eth->tx_int_mask_reg = MTK_QDMA_INT_MASK;
2927 eth->tx_int_status_reg = MTK_QDMA_INT_STATUS;
2929 eth->tx_int_mask_reg = MTK_PDMA_INT_MASK;
2930 eth->tx_int_status_reg = MTK_PDMA_INT_STATUS;
2933 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628)) {
2934 eth->rx_dma_l4_valid = RX_DMA_L4_VALID_PDMA;
2935 eth->ip_align = NET_IP_ALIGN;
2937 eth->rx_dma_l4_valid = RX_DMA_L4_VALID;
2940 spin_lock_init(ð->page_lock);
2941 spin_lock_init(ð->tx_irq_lock);
2942 spin_lock_init(ð->rx_irq_lock);
2944 if (!MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628)) {
2945 eth->ethsys = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
2947 if (IS_ERR(eth->ethsys)) {
2948 dev_err(&pdev->dev, "no ethsys regmap found\n");
2949 return PTR_ERR(eth->ethsys);
2953 if (MTK_HAS_CAPS(eth->soc->caps, MTK_INFRA)) {
2954 eth->infra = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
2955 "mediatek,infracfg");
2956 if (IS_ERR(eth->infra)) {
2957 dev_err(&pdev->dev, "no infracfg regmap found\n");
2958 return PTR_ERR(eth->infra);
2962 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SGMII)) {
2963 eth->sgmii = devm_kzalloc(eth->dev, sizeof(*eth->sgmii),
2968 err = mtk_sgmii_init(eth->sgmii, pdev->dev.of_node,
2969 eth->soc->ana_rgc3);
2975 if (eth->soc->required_pctl) {
2976 eth->pctl = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
2978 if (IS_ERR(eth->pctl)) {
2979 dev_err(&pdev->dev, "no pctl regmap found\n");
2980 return PTR_ERR(eth->pctl);
2984 for (i = 0; i < 3; i++) {
2985 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SHARED_INT) && i > 0)
2986 eth->irq[i] = eth->irq[0];
2988 eth->irq[i] = platform_get_irq(pdev, i);
2989 if (eth->irq[i] < 0) {
2990 dev_err(&pdev->dev, "no IRQ%d resource found\n", i);
2994 for (i = 0; i < ARRAY_SIZE(eth->clks); i++) {
2995 eth->clks[i] = devm_clk_get(eth->dev,
2996 mtk_clks_source_name[i]);
2997 if (IS_ERR(eth->clks[i])) {
2998 if (PTR_ERR(eth->clks[i]) == -EPROBE_DEFER)
2999 return -EPROBE_DEFER;
3000 if (eth->soc->required_clks & BIT(i)) {
3001 dev_err(&pdev->dev, "clock %s not found\n",
3002 mtk_clks_source_name[i]);
3005 eth->clks[i] = NULL;
3009 eth->msg_enable = netif_msg_init(mtk_msg_level, MTK_DEFAULT_MSG_ENABLE);
3010 INIT_WORK(ð->pending_work, mtk_pending_work);
3012 err = mtk_hw_init(eth);
3016 eth->hwlro = MTK_HAS_CAPS(eth->soc->caps, MTK_HWLRO);
3018 for_each_child_of_node(pdev->dev.of_node, mac_np) {
3019 if (!of_device_is_compatible(mac_np,
3020 "mediatek,eth-mac"))
3023 if (!of_device_is_available(mac_np))
3026 err = mtk_add_mac(eth, mac_np);
3028 of_node_put(mac_np);
3033 if (MTK_HAS_CAPS(eth->soc->caps, MTK_SHARED_INT)) {
3034 err = devm_request_irq(eth->dev, eth->irq[0],
3036 dev_name(eth->dev), eth);
3038 err = devm_request_irq(eth->dev, eth->irq[1],
3039 mtk_handle_irq_tx, 0,
3040 dev_name(eth->dev), eth);
3044 err = devm_request_irq(eth->dev, eth->irq[2],
3045 mtk_handle_irq_rx, 0,
3046 dev_name(eth->dev), eth);
3051 /* No MT7628/88 support yet */
3052 if (!MTK_HAS_CAPS(eth->soc->caps, MTK_SOC_MT7628)) {
3053 err = mtk_mdio_init(eth);
3058 for (i = 0; i < MTK_MAX_DEVS; i++) {
3059 if (!eth->netdev[i])
3062 err = register_netdev(eth->netdev[i]);
3064 dev_err(eth->dev, "error bringing up device\n");
3065 goto err_deinit_mdio;
3067 netif_info(eth, probe, eth->netdev[i],
3068 "mediatek frame engine at 0x%08lx, irq %d\n",
3069 eth->netdev[i]->base_addr, eth->irq[0]);
3072 /* we run 2 devices on the same DMA ring so we need a dummy device
3075 init_dummy_netdev(ð->dummy_dev);
3076 netif_napi_add(ð->dummy_dev, ð->tx_napi, mtk_napi_tx,
3078 netif_napi_add(ð->dummy_dev, ð->rx_napi, mtk_napi_rx,
3081 platform_set_drvdata(pdev, eth);
3086 mtk_mdio_cleanup(eth);
3095 static int mtk_remove(struct platform_device *pdev)
3097 struct mtk_eth *eth = platform_get_drvdata(pdev);
3098 struct mtk_mac *mac;
3101 /* stop all devices to make sure that dma is properly shut down */
3102 for (i = 0; i < MTK_MAC_COUNT; i++) {
3103 if (!eth->netdev[i])
3105 mtk_stop(eth->netdev[i]);
3106 mac = netdev_priv(eth->netdev[i]);
3107 phylink_disconnect_phy(mac->phylink);
3112 netif_napi_del(ð->tx_napi);
3113 netif_napi_del(ð->rx_napi);
3115 mtk_mdio_cleanup(eth);
3120 static const struct mtk_soc_data mt2701_data = {
3121 .caps = MT7623_CAPS | MTK_HWLRO,
3122 .hw_features = MTK_HW_FEATURES,
3123 .required_clks = MT7623_CLKS_BITMAP,
3124 .required_pctl = true,
3127 static const struct mtk_soc_data mt7621_data = {
3128 .caps = MT7621_CAPS,
3129 .hw_features = MTK_HW_FEATURES,
3130 .required_clks = MT7621_CLKS_BITMAP,
3131 .required_pctl = false,
3134 static const struct mtk_soc_data mt7622_data = {
3136 .caps = MT7622_CAPS | MTK_HWLRO,
3137 .hw_features = MTK_HW_FEATURES,
3138 .required_clks = MT7622_CLKS_BITMAP,
3139 .required_pctl = false,
3142 static const struct mtk_soc_data mt7623_data = {
3143 .caps = MT7623_CAPS | MTK_HWLRO,
3144 .hw_features = MTK_HW_FEATURES,
3145 .required_clks = MT7623_CLKS_BITMAP,
3146 .required_pctl = true,
3149 static const struct mtk_soc_data mt7629_data = {
3151 .caps = MT7629_CAPS | MTK_HWLRO,
3152 .hw_features = MTK_HW_FEATURES,
3153 .required_clks = MT7629_CLKS_BITMAP,
3154 .required_pctl = false,
3157 static const struct mtk_soc_data rt5350_data = {
3158 .caps = MT7628_CAPS,
3159 .hw_features = MTK_HW_FEATURES_MT7628,
3160 .required_clks = MT7628_CLKS_BITMAP,
3161 .required_pctl = false,
3164 const struct of_device_id of_mtk_match[] = {
3165 { .compatible = "mediatek,mt2701-eth", .data = &mt2701_data},
3166 { .compatible = "mediatek,mt7621-eth", .data = &mt7621_data},
3167 { .compatible = "mediatek,mt7622-eth", .data = &mt7622_data},
3168 { .compatible = "mediatek,mt7623-eth", .data = &mt7623_data},
3169 { .compatible = "mediatek,mt7629-eth", .data = &mt7629_data},
3170 { .compatible = "ralink,rt5350-eth", .data = &rt5350_data},
3173 MODULE_DEVICE_TABLE(of, of_mtk_match);
3175 static struct platform_driver mtk_driver = {
3177 .remove = mtk_remove,
3179 .name = "mtk_soc_eth",
3180 .of_match_table = of_mtk_match,
3184 module_platform_driver(mtk_driver);
3186 MODULE_LICENSE("GPL");
3188 MODULE_DESCRIPTION("Ethernet driver for MediaTek SoC");