John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1 | /* This program is free software; you can redistribute it and/or modify |
| 2 | * it under the terms of the GNU General Public License as published by |
| 3 | * the Free Software Foundation; version 2 of the License |
| 4 | * |
| 5 | * This program is distributed in the hope that it will be useful, |
| 6 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 7 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 8 | * GNU General Public License for more details. |
| 9 | * |
| 10 | * Copyright (C) 2009-2016 John Crispin <blogic@openwrt.org> |
| 11 | * Copyright (C) 2009-2016 Felix Fietkau <nbd@openwrt.org> |
| 12 | * Copyright (C) 2013-2016 Michael Lee <igvtee@gmail.com> |
| 13 | */ |
| 14 | |
| 15 | #include <linux/of_device.h> |
| 16 | #include <linux/of_mdio.h> |
| 17 | #include <linux/of_net.h> |
| 18 | #include <linux/mfd/syscon.h> |
| 19 | #include <linux/regmap.h> |
| 20 | #include <linux/clk.h> |
| 21 | #include <linux/if_vlan.h> |
| 22 | #include <linux/reset.h> |
| 23 | #include <linux/tcp.h> |
| 24 | |
| 25 | #include "mtk_eth_soc.h" |
| 26 | |
| 27 | static int mtk_msg_level = -1; |
| 28 | module_param_named(msg_level, mtk_msg_level, int, 0); |
| 29 | MODULE_PARM_DESC(msg_level, "Message level (-1=defaults,0=none,...,16=all)"); |
| 30 | |
| 31 | #define MTK_ETHTOOL_STAT(x) { #x, \ |
| 32 | offsetof(struct mtk_hw_stats, x) / sizeof(u64) } |
| 33 | |
| 34 | /* strings used by ethtool */ |
| 35 | static const struct mtk_ethtool_stats { |
| 36 | char str[ETH_GSTRING_LEN]; |
| 37 | u32 offset; |
| 38 | } mtk_ethtool_stats[] = { |
| 39 | MTK_ETHTOOL_STAT(tx_bytes), |
| 40 | MTK_ETHTOOL_STAT(tx_packets), |
| 41 | MTK_ETHTOOL_STAT(tx_skip), |
| 42 | MTK_ETHTOOL_STAT(tx_collisions), |
| 43 | MTK_ETHTOOL_STAT(rx_bytes), |
| 44 | MTK_ETHTOOL_STAT(rx_packets), |
| 45 | MTK_ETHTOOL_STAT(rx_overflow), |
| 46 | MTK_ETHTOOL_STAT(rx_fcs_errors), |
| 47 | MTK_ETHTOOL_STAT(rx_short_errors), |
| 48 | MTK_ETHTOOL_STAT(rx_long_errors), |
| 49 | MTK_ETHTOOL_STAT(rx_checksum_errors), |
| 50 | MTK_ETHTOOL_STAT(rx_flow_control_packets), |
| 51 | }; |
| 52 | |
| 53 | void mtk_w32(struct mtk_eth *eth, u32 val, unsigned reg) |
| 54 | { |
| 55 | __raw_writel(val, eth->base + reg); |
| 56 | } |
| 57 | |
| 58 | u32 mtk_r32(struct mtk_eth *eth, unsigned reg) |
| 59 | { |
| 60 | return __raw_readl(eth->base + reg); |
| 61 | } |
| 62 | |
| 63 | static int mtk_mdio_busy_wait(struct mtk_eth *eth) |
| 64 | { |
| 65 | unsigned long t_start = jiffies; |
| 66 | |
| 67 | while (1) { |
| 68 | if (!(mtk_r32(eth, MTK_PHY_IAC) & PHY_IAC_ACCESS)) |
| 69 | return 0; |
| 70 | if (time_after(jiffies, t_start + PHY_IAC_TIMEOUT)) |
| 71 | break; |
| 72 | usleep_range(10, 20); |
| 73 | } |
| 74 | |
| 75 | dev_err(eth->dev, "mdio: MDIO timeout\n"); |
| 76 | return -1; |
| 77 | } |
| 78 | |
Wei Yongjun | 379672d | 2016-07-12 11:36:44 +0000 | [diff] [blame] | 79 | static u32 _mtk_mdio_write(struct mtk_eth *eth, u32 phy_addr, |
| 80 | u32 phy_register, u32 write_data) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 81 | { |
| 82 | if (mtk_mdio_busy_wait(eth)) |
| 83 | return -1; |
| 84 | |
| 85 | write_data &= 0xffff; |
| 86 | |
| 87 | mtk_w32(eth, PHY_IAC_ACCESS | PHY_IAC_START | PHY_IAC_WRITE | |
| 88 | (phy_register << PHY_IAC_REG_SHIFT) | |
| 89 | (phy_addr << PHY_IAC_ADDR_SHIFT) | write_data, |
| 90 | MTK_PHY_IAC); |
| 91 | |
| 92 | if (mtk_mdio_busy_wait(eth)) |
| 93 | return -1; |
| 94 | |
| 95 | return 0; |
| 96 | } |
| 97 | |
Wei Yongjun | 379672d | 2016-07-12 11:36:44 +0000 | [diff] [blame] | 98 | static u32 _mtk_mdio_read(struct mtk_eth *eth, int phy_addr, int phy_reg) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 99 | { |
| 100 | u32 d; |
| 101 | |
| 102 | if (mtk_mdio_busy_wait(eth)) |
| 103 | return 0xffff; |
| 104 | |
| 105 | mtk_w32(eth, PHY_IAC_ACCESS | PHY_IAC_START | PHY_IAC_READ | |
| 106 | (phy_reg << PHY_IAC_REG_SHIFT) | |
| 107 | (phy_addr << PHY_IAC_ADDR_SHIFT), |
| 108 | MTK_PHY_IAC); |
| 109 | |
| 110 | if (mtk_mdio_busy_wait(eth)) |
| 111 | return 0xffff; |
| 112 | |
| 113 | d = mtk_r32(eth, MTK_PHY_IAC) & 0xffff; |
| 114 | |
| 115 | return d; |
| 116 | } |
| 117 | |
| 118 | static int mtk_mdio_write(struct mii_bus *bus, int phy_addr, |
| 119 | int phy_reg, u16 val) |
| 120 | { |
| 121 | struct mtk_eth *eth = bus->priv; |
| 122 | |
| 123 | return _mtk_mdio_write(eth, phy_addr, phy_reg, val); |
| 124 | } |
| 125 | |
| 126 | static int mtk_mdio_read(struct mii_bus *bus, int phy_addr, int phy_reg) |
| 127 | { |
| 128 | struct mtk_eth *eth = bus->priv; |
| 129 | |
| 130 | return _mtk_mdio_read(eth, phy_addr, phy_reg); |
| 131 | } |
| 132 | |
| 133 | static void mtk_phy_link_adjust(struct net_device *dev) |
| 134 | { |
| 135 | struct mtk_mac *mac = netdev_priv(dev); |
John Crispin | 08ef55c | 2016-06-03 10:17:07 +0200 | [diff] [blame] | 136 | u16 lcl_adv = 0, rmt_adv = 0; |
| 137 | u8 flowctrl; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 138 | u32 mcr = MAC_MCR_MAX_RX_1536 | MAC_MCR_IPG_CFG | |
| 139 | MAC_MCR_FORCE_MODE | MAC_MCR_TX_EN | |
| 140 | MAC_MCR_RX_EN | MAC_MCR_BACKOFF_EN | |
| 141 | MAC_MCR_BACKPR_EN; |
| 142 | |
| 143 | switch (mac->phy_dev->speed) { |
| 144 | case SPEED_1000: |
| 145 | mcr |= MAC_MCR_SPEED_1000; |
| 146 | break; |
| 147 | case SPEED_100: |
| 148 | mcr |= MAC_MCR_SPEED_100; |
| 149 | break; |
| 150 | }; |
| 151 | |
| 152 | if (mac->phy_dev->link) |
| 153 | mcr |= MAC_MCR_FORCE_LINK; |
| 154 | |
John Crispin | 08ef55c | 2016-06-03 10:17:07 +0200 | [diff] [blame] | 155 | if (mac->phy_dev->duplex) { |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 156 | mcr |= MAC_MCR_FORCE_DPX; |
| 157 | |
John Crispin | 08ef55c | 2016-06-03 10:17:07 +0200 | [diff] [blame] | 158 | if (mac->phy_dev->pause) |
| 159 | rmt_adv = LPA_PAUSE_CAP; |
| 160 | if (mac->phy_dev->asym_pause) |
| 161 | rmt_adv |= LPA_PAUSE_ASYM; |
| 162 | |
| 163 | if (mac->phy_dev->advertising & ADVERTISED_Pause) |
| 164 | lcl_adv |= ADVERTISE_PAUSE_CAP; |
| 165 | if (mac->phy_dev->advertising & ADVERTISED_Asym_Pause) |
| 166 | lcl_adv |= ADVERTISE_PAUSE_ASYM; |
| 167 | |
| 168 | flowctrl = mii_resolve_flowctrl_fdx(lcl_adv, rmt_adv); |
| 169 | |
| 170 | if (flowctrl & FLOW_CTRL_TX) |
| 171 | mcr |= MAC_MCR_FORCE_TX_FC; |
| 172 | if (flowctrl & FLOW_CTRL_RX) |
| 173 | mcr |= MAC_MCR_FORCE_RX_FC; |
| 174 | |
| 175 | netif_dbg(mac->hw, link, dev, "rx pause %s, tx pause %s\n", |
| 176 | flowctrl & FLOW_CTRL_RX ? "enabled" : "disabled", |
| 177 | flowctrl & FLOW_CTRL_TX ? "enabled" : "disabled"); |
| 178 | } |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 179 | |
| 180 | mtk_w32(mac->hw, mcr, MTK_MAC_MCR(mac->id)); |
| 181 | |
| 182 | if (mac->phy_dev->link) |
| 183 | netif_carrier_on(dev); |
| 184 | else |
| 185 | netif_carrier_off(dev); |
| 186 | } |
| 187 | |
| 188 | static int mtk_phy_connect_node(struct mtk_eth *eth, struct mtk_mac *mac, |
| 189 | struct device_node *phy_node) |
| 190 | { |
| 191 | const __be32 *_addr = NULL; |
| 192 | struct phy_device *phydev; |
| 193 | int phy_mode, addr; |
| 194 | |
| 195 | _addr = of_get_property(phy_node, "reg", NULL); |
| 196 | |
| 197 | if (!_addr || (be32_to_cpu(*_addr) >= 0x20)) { |
| 198 | pr_err("%s: invalid phy address\n", phy_node->name); |
| 199 | return -EINVAL; |
| 200 | } |
| 201 | addr = be32_to_cpu(*_addr); |
| 202 | phy_mode = of_get_phy_mode(phy_node); |
| 203 | if (phy_mode < 0) { |
| 204 | dev_err(eth->dev, "incorrect phy-mode %d\n", phy_mode); |
| 205 | return -EINVAL; |
| 206 | } |
| 207 | |
| 208 | phydev = of_phy_connect(eth->netdev[mac->id], phy_node, |
| 209 | mtk_phy_link_adjust, 0, phy_mode); |
Dan Carpenter | 977bc20 | 2016-03-15 10:18:49 +0300 | [diff] [blame] | 210 | if (!phydev) { |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 211 | dev_err(eth->dev, "could not connect to PHY\n"); |
Dan Carpenter | 977bc20 | 2016-03-15 10:18:49 +0300 | [diff] [blame] | 212 | return -ENODEV; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 213 | } |
| 214 | |
| 215 | dev_info(eth->dev, |
| 216 | "connected mac %d to PHY at %s [uid=%08x, driver=%s]\n", |
| 217 | mac->id, phydev_name(phydev), phydev->phy_id, |
| 218 | phydev->drv->name); |
| 219 | |
| 220 | mac->phy_dev = phydev; |
| 221 | |
| 222 | return 0; |
| 223 | } |
| 224 | |
| 225 | static int mtk_phy_connect(struct mtk_mac *mac) |
| 226 | { |
| 227 | struct mtk_eth *eth = mac->hw; |
| 228 | struct device_node *np; |
| 229 | u32 val, ge_mode; |
| 230 | |
| 231 | np = of_parse_phandle(mac->of_node, "phy-handle", 0); |
John Crispin | 0c72c50 | 2016-06-03 10:17:08 +0200 | [diff] [blame] | 232 | if (!np && of_phy_is_fixed_link(mac->of_node)) |
| 233 | if (!of_phy_register_fixed_link(mac->of_node)) |
| 234 | np = of_node_get(mac->of_node); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 235 | if (!np) |
| 236 | return -ENODEV; |
| 237 | |
| 238 | switch (of_get_phy_mode(np)) { |
John Crispin | 37920fc | 2016-06-03 10:17:09 +0200 | [diff] [blame] | 239 | case PHY_INTERFACE_MODE_RGMII_TXID: |
| 240 | case PHY_INTERFACE_MODE_RGMII_RXID: |
| 241 | case PHY_INTERFACE_MODE_RGMII_ID: |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 242 | case PHY_INTERFACE_MODE_RGMII: |
| 243 | ge_mode = 0; |
| 244 | break; |
| 245 | case PHY_INTERFACE_MODE_MII: |
| 246 | ge_mode = 1; |
| 247 | break; |
sean.wang@mediatek.com | 8ca7f4f | 2016-08-16 13:55:13 +0800 | [diff] [blame] | 248 | case PHY_INTERFACE_MODE_REVMII: |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 249 | ge_mode = 2; |
| 250 | break; |
sean.wang@mediatek.com | 8ca7f4f | 2016-08-16 13:55:13 +0800 | [diff] [blame] | 251 | case PHY_INTERFACE_MODE_RMII: |
| 252 | if (!mac->id) |
| 253 | goto err_phy; |
| 254 | ge_mode = 3; |
| 255 | break; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 256 | default: |
sean.wang@mediatek.com | 8ca7f4f | 2016-08-16 13:55:13 +0800 | [diff] [blame] | 257 | goto err_phy; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | /* put the gmac into the right mode */ |
| 261 | regmap_read(eth->ethsys, ETHSYS_SYSCFG0, &val); |
| 262 | val &= ~SYSCFG0_GE_MODE(SYSCFG0_GE_MASK, mac->id); |
| 263 | val |= SYSCFG0_GE_MODE(ge_mode, mac->id); |
| 264 | regmap_write(eth->ethsys, ETHSYS_SYSCFG0, val); |
| 265 | |
| 266 | mtk_phy_connect_node(eth, mac, np); |
| 267 | mac->phy_dev->autoneg = AUTONEG_ENABLE; |
| 268 | mac->phy_dev->speed = 0; |
| 269 | mac->phy_dev->duplex = 0; |
sean.wang@mediatek.com | b2025c7 | 2016-08-16 13:55:14 +0800 | [diff] [blame] | 270 | |
| 271 | if (of_phy_is_fixed_link(mac->of_node)) |
| 272 | mac->phy_dev->supported |= |
| 273 | SUPPORTED_Pause | SUPPORTED_Asym_Pause; |
| 274 | |
John Crispin | 08ef55c | 2016-06-03 10:17:07 +0200 | [diff] [blame] | 275 | mac->phy_dev->supported &= PHY_GBIT_FEATURES | SUPPORTED_Pause | |
| 276 | SUPPORTED_Asym_Pause; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 277 | mac->phy_dev->advertising = mac->phy_dev->supported | |
| 278 | ADVERTISED_Autoneg; |
| 279 | phy_start_aneg(mac->phy_dev); |
| 280 | |
sean.wang@mediatek.com | e8c2993 | 2016-08-13 19:16:19 +0800 | [diff] [blame] | 281 | of_node_put(np); |
| 282 | |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 283 | return 0; |
sean.wang@mediatek.com | 8ca7f4f | 2016-08-16 13:55:13 +0800 | [diff] [blame] | 284 | |
| 285 | err_phy: |
| 286 | of_node_put(np); |
| 287 | dev_err(eth->dev, "invalid phy_mode\n"); |
| 288 | return -EINVAL; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | static int mtk_mdio_init(struct mtk_eth *eth) |
| 292 | { |
| 293 | struct device_node *mii_np; |
| 294 | int err; |
| 295 | |
| 296 | mii_np = of_get_child_by_name(eth->dev->of_node, "mdio-bus"); |
| 297 | if (!mii_np) { |
| 298 | dev_err(eth->dev, "no %s child node found", "mdio-bus"); |
| 299 | return -ENODEV; |
| 300 | } |
| 301 | |
| 302 | if (!of_device_is_available(mii_np)) { |
| 303 | err = 0; |
| 304 | goto err_put_node; |
| 305 | } |
| 306 | |
| 307 | eth->mii_bus = mdiobus_alloc(); |
| 308 | if (!eth->mii_bus) { |
| 309 | err = -ENOMEM; |
| 310 | goto err_put_node; |
| 311 | } |
| 312 | |
| 313 | eth->mii_bus->name = "mdio"; |
| 314 | eth->mii_bus->read = mtk_mdio_read; |
| 315 | eth->mii_bus->write = mtk_mdio_write; |
| 316 | eth->mii_bus->priv = eth; |
| 317 | eth->mii_bus->parent = eth->dev; |
| 318 | |
| 319 | snprintf(eth->mii_bus->id, MII_BUS_ID_SIZE, "%s", mii_np->name); |
| 320 | err = of_mdiobus_register(eth->mii_bus, mii_np); |
| 321 | if (err) |
| 322 | goto err_free_bus; |
| 323 | |
| 324 | return 0; |
| 325 | |
| 326 | err_free_bus: |
John Crispin | 207bdf1 | 2016-06-03 10:17:06 +0200 | [diff] [blame] | 327 | mdiobus_free(eth->mii_bus); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 328 | |
| 329 | err_put_node: |
| 330 | of_node_put(mii_np); |
| 331 | eth->mii_bus = NULL; |
| 332 | return err; |
| 333 | } |
| 334 | |
| 335 | static void mtk_mdio_cleanup(struct mtk_eth *eth) |
| 336 | { |
| 337 | if (!eth->mii_bus) |
| 338 | return; |
| 339 | |
| 340 | mdiobus_unregister(eth->mii_bus); |
| 341 | of_node_put(eth->mii_bus->dev.of_node); |
John Crispin | 207bdf1 | 2016-06-03 10:17:06 +0200 | [diff] [blame] | 342 | mdiobus_free(eth->mii_bus); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 343 | } |
| 344 | |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 345 | static inline void mtk_irq_disable(struct mtk_eth *eth, |
| 346 | unsigned reg, u32 mask) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 347 | { |
John Crispin | 7bc9cce | 2016-06-29 13:38:10 +0200 | [diff] [blame] | 348 | unsigned long flags; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 349 | u32 val; |
| 350 | |
John Crispin | 7bc9cce | 2016-06-29 13:38:10 +0200 | [diff] [blame] | 351 | spin_lock_irqsave(ð->irq_lock, flags); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 352 | val = mtk_r32(eth, reg); |
| 353 | mtk_w32(eth, val & ~mask, reg); |
John Crispin | 7bc9cce | 2016-06-29 13:38:10 +0200 | [diff] [blame] | 354 | spin_unlock_irqrestore(ð->irq_lock, flags); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 355 | } |
| 356 | |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 357 | static inline void mtk_irq_enable(struct mtk_eth *eth, |
| 358 | unsigned reg, u32 mask) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 359 | { |
John Crispin | 7bc9cce | 2016-06-29 13:38:10 +0200 | [diff] [blame] | 360 | unsigned long flags; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 361 | u32 val; |
| 362 | |
John Crispin | 7bc9cce | 2016-06-29 13:38:10 +0200 | [diff] [blame] | 363 | spin_lock_irqsave(ð->irq_lock, flags); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 364 | val = mtk_r32(eth, reg); |
| 365 | mtk_w32(eth, val | mask, reg); |
John Crispin | 7bc9cce | 2016-06-29 13:38:10 +0200 | [diff] [blame] | 366 | spin_unlock_irqrestore(ð->irq_lock, flags); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | static int mtk_set_mac_address(struct net_device *dev, void *p) |
| 370 | { |
| 371 | int ret = eth_mac_addr(dev, p); |
| 372 | struct mtk_mac *mac = netdev_priv(dev); |
| 373 | const char *macaddr = dev->dev_addr; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 374 | |
| 375 | if (ret) |
| 376 | return ret; |
| 377 | |
Sean Wang | e3e9652 | 2016-08-11 17:51:00 +0800 | [diff] [blame] | 378 | spin_lock_bh(&mac->hw->page_lock); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 379 | mtk_w32(mac->hw, (macaddr[0] << 8) | macaddr[1], |
| 380 | MTK_GDMA_MAC_ADRH(mac->id)); |
| 381 | mtk_w32(mac->hw, (macaddr[2] << 24) | (macaddr[3] << 16) | |
| 382 | (macaddr[4] << 8) | macaddr[5], |
| 383 | MTK_GDMA_MAC_ADRL(mac->id)); |
Sean Wang | e3e9652 | 2016-08-11 17:51:00 +0800 | [diff] [blame] | 384 | spin_unlock_bh(&mac->hw->page_lock); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 385 | |
| 386 | return 0; |
| 387 | } |
| 388 | |
| 389 | void mtk_stats_update_mac(struct mtk_mac *mac) |
| 390 | { |
| 391 | struct mtk_hw_stats *hw_stats = mac->hw_stats; |
| 392 | unsigned int base = MTK_GDM1_TX_GBCNT; |
| 393 | u64 stats; |
| 394 | |
| 395 | base += hw_stats->reg_offset; |
| 396 | |
| 397 | u64_stats_update_begin(&hw_stats->syncp); |
| 398 | |
| 399 | hw_stats->rx_bytes += mtk_r32(mac->hw, base); |
| 400 | stats = mtk_r32(mac->hw, base + 0x04); |
| 401 | if (stats) |
| 402 | hw_stats->rx_bytes += (stats << 32); |
| 403 | hw_stats->rx_packets += mtk_r32(mac->hw, base + 0x08); |
| 404 | hw_stats->rx_overflow += mtk_r32(mac->hw, base + 0x10); |
| 405 | hw_stats->rx_fcs_errors += mtk_r32(mac->hw, base + 0x14); |
| 406 | hw_stats->rx_short_errors += mtk_r32(mac->hw, base + 0x18); |
| 407 | hw_stats->rx_long_errors += mtk_r32(mac->hw, base + 0x1c); |
| 408 | hw_stats->rx_checksum_errors += mtk_r32(mac->hw, base + 0x20); |
| 409 | hw_stats->rx_flow_control_packets += |
| 410 | mtk_r32(mac->hw, base + 0x24); |
| 411 | hw_stats->tx_skip += mtk_r32(mac->hw, base + 0x28); |
| 412 | hw_stats->tx_collisions += mtk_r32(mac->hw, base + 0x2c); |
| 413 | hw_stats->tx_bytes += mtk_r32(mac->hw, base + 0x30); |
| 414 | stats = mtk_r32(mac->hw, base + 0x34); |
| 415 | if (stats) |
| 416 | hw_stats->tx_bytes += (stats << 32); |
| 417 | hw_stats->tx_packets += mtk_r32(mac->hw, base + 0x38); |
| 418 | u64_stats_update_end(&hw_stats->syncp); |
| 419 | } |
| 420 | |
| 421 | static void mtk_stats_update(struct mtk_eth *eth) |
| 422 | { |
| 423 | int i; |
| 424 | |
| 425 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
| 426 | if (!eth->mac[i] || !eth->mac[i]->hw_stats) |
| 427 | continue; |
| 428 | if (spin_trylock(ð->mac[i]->hw_stats->stats_lock)) { |
| 429 | mtk_stats_update_mac(eth->mac[i]); |
| 430 | spin_unlock(ð->mac[i]->hw_stats->stats_lock); |
| 431 | } |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | static struct rtnl_link_stats64 *mtk_get_stats64(struct net_device *dev, |
| 436 | struct rtnl_link_stats64 *storage) |
| 437 | { |
| 438 | struct mtk_mac *mac = netdev_priv(dev); |
| 439 | struct mtk_hw_stats *hw_stats = mac->hw_stats; |
| 440 | unsigned int start; |
| 441 | |
| 442 | if (netif_running(dev) && netif_device_present(dev)) { |
| 443 | if (spin_trylock(&hw_stats->stats_lock)) { |
| 444 | mtk_stats_update_mac(mac); |
| 445 | spin_unlock(&hw_stats->stats_lock); |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | do { |
| 450 | start = u64_stats_fetch_begin_irq(&hw_stats->syncp); |
| 451 | storage->rx_packets = hw_stats->rx_packets; |
| 452 | storage->tx_packets = hw_stats->tx_packets; |
| 453 | storage->rx_bytes = hw_stats->rx_bytes; |
| 454 | storage->tx_bytes = hw_stats->tx_bytes; |
| 455 | storage->collisions = hw_stats->tx_collisions; |
| 456 | storage->rx_length_errors = hw_stats->rx_short_errors + |
| 457 | hw_stats->rx_long_errors; |
| 458 | storage->rx_over_errors = hw_stats->rx_overflow; |
| 459 | storage->rx_crc_errors = hw_stats->rx_fcs_errors; |
| 460 | storage->rx_errors = hw_stats->rx_checksum_errors; |
| 461 | storage->tx_aborted_errors = hw_stats->tx_skip; |
| 462 | } while (u64_stats_fetch_retry_irq(&hw_stats->syncp, start)); |
| 463 | |
| 464 | storage->tx_errors = dev->stats.tx_errors; |
| 465 | storage->rx_dropped = dev->stats.rx_dropped; |
| 466 | storage->tx_dropped = dev->stats.tx_dropped; |
| 467 | |
| 468 | return storage; |
| 469 | } |
| 470 | |
| 471 | static inline int mtk_max_frag_size(int mtu) |
| 472 | { |
| 473 | /* make sure buf_size will be at least MTK_MAX_RX_LENGTH */ |
| 474 | if (mtu + MTK_RX_ETH_HLEN < MTK_MAX_RX_LENGTH) |
| 475 | mtu = MTK_MAX_RX_LENGTH - MTK_RX_ETH_HLEN; |
| 476 | |
| 477 | return SKB_DATA_ALIGN(MTK_RX_HLEN + mtu) + |
| 478 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
| 479 | } |
| 480 | |
| 481 | static inline int mtk_max_buf_size(int frag_size) |
| 482 | { |
| 483 | int buf_size = frag_size - NET_SKB_PAD - NET_IP_ALIGN - |
| 484 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); |
| 485 | |
| 486 | WARN_ON(buf_size < MTK_MAX_RX_LENGTH); |
| 487 | |
| 488 | return buf_size; |
| 489 | } |
| 490 | |
| 491 | static inline void mtk_rx_get_desc(struct mtk_rx_dma *rxd, |
| 492 | struct mtk_rx_dma *dma_rxd) |
| 493 | { |
| 494 | rxd->rxd1 = READ_ONCE(dma_rxd->rxd1); |
| 495 | rxd->rxd2 = READ_ONCE(dma_rxd->rxd2); |
| 496 | rxd->rxd3 = READ_ONCE(dma_rxd->rxd3); |
| 497 | rxd->rxd4 = READ_ONCE(dma_rxd->rxd4); |
| 498 | } |
| 499 | |
| 500 | /* the qdma core needs scratch memory to be setup */ |
| 501 | static int mtk_init_fq_dma(struct mtk_eth *eth) |
| 502 | { |
John Crispin | 605e4fe | 2016-06-10 13:27:59 +0200 | [diff] [blame] | 503 | dma_addr_t phy_ring_tail; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 504 | int cnt = MTK_DMA_SIZE; |
| 505 | dma_addr_t dma_addr; |
| 506 | int i; |
| 507 | |
| 508 | eth->scratch_ring = dma_alloc_coherent(eth->dev, |
| 509 | cnt * sizeof(struct mtk_tx_dma), |
John Crispin | 605e4fe | 2016-06-10 13:27:59 +0200 | [diff] [blame] | 510 | ð->phy_scratch_ring, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 511 | GFP_ATOMIC | __GFP_ZERO); |
| 512 | if (unlikely(!eth->scratch_ring)) |
| 513 | return -ENOMEM; |
| 514 | |
| 515 | eth->scratch_head = kcalloc(cnt, MTK_QDMA_PAGE_SIZE, |
| 516 | GFP_KERNEL); |
John Crispin | 562c5a7 | 2016-06-10 13:27:58 +0200 | [diff] [blame] | 517 | if (unlikely(!eth->scratch_head)) |
| 518 | return -ENOMEM; |
| 519 | |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 520 | dma_addr = dma_map_single(eth->dev, |
| 521 | eth->scratch_head, cnt * MTK_QDMA_PAGE_SIZE, |
| 522 | DMA_FROM_DEVICE); |
| 523 | if (unlikely(dma_mapping_error(eth->dev, dma_addr))) |
| 524 | return -ENOMEM; |
| 525 | |
| 526 | memset(eth->scratch_ring, 0x0, sizeof(struct mtk_tx_dma) * cnt); |
John Crispin | 605e4fe | 2016-06-10 13:27:59 +0200 | [diff] [blame] | 527 | phy_ring_tail = eth->phy_scratch_ring + |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 528 | (sizeof(struct mtk_tx_dma) * (cnt - 1)); |
| 529 | |
| 530 | for (i = 0; i < cnt; i++) { |
| 531 | eth->scratch_ring[i].txd1 = |
| 532 | (dma_addr + (i * MTK_QDMA_PAGE_SIZE)); |
| 533 | if (i < cnt - 1) |
John Crispin | 605e4fe | 2016-06-10 13:27:59 +0200 | [diff] [blame] | 534 | eth->scratch_ring[i].txd2 = (eth->phy_scratch_ring + |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 535 | ((i + 1) * sizeof(struct mtk_tx_dma))); |
| 536 | eth->scratch_ring[i].txd3 = TX_DMA_SDL(MTK_QDMA_PAGE_SIZE); |
| 537 | } |
| 538 | |
John Crispin | 605e4fe | 2016-06-10 13:27:59 +0200 | [diff] [blame] | 539 | mtk_w32(eth, eth->phy_scratch_ring, MTK_QDMA_FQ_HEAD); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 540 | mtk_w32(eth, phy_ring_tail, MTK_QDMA_FQ_TAIL); |
| 541 | mtk_w32(eth, (cnt << 16) | cnt, MTK_QDMA_FQ_CNT); |
| 542 | mtk_w32(eth, MTK_QDMA_PAGE_SIZE << 16, MTK_QDMA_FQ_BLEN); |
| 543 | |
| 544 | return 0; |
| 545 | } |
| 546 | |
| 547 | static inline void *mtk_qdma_phys_to_virt(struct mtk_tx_ring *ring, u32 desc) |
| 548 | { |
| 549 | void *ret = ring->dma; |
| 550 | |
| 551 | return ret + (desc - ring->phys); |
| 552 | } |
| 553 | |
| 554 | static inline struct mtk_tx_buf *mtk_desc_to_tx_buf(struct mtk_tx_ring *ring, |
| 555 | struct mtk_tx_dma *txd) |
| 556 | { |
| 557 | int idx = txd - ring->dma; |
| 558 | |
| 559 | return &ring->buf[idx]; |
| 560 | } |
| 561 | |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 562 | static void mtk_tx_unmap(struct mtk_eth *eth, struct mtk_tx_buf *tx_buf) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 563 | { |
| 564 | if (tx_buf->flags & MTK_TX_FLAGS_SINGLE0) { |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 565 | dma_unmap_single(eth->dev, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 566 | dma_unmap_addr(tx_buf, dma_addr0), |
| 567 | dma_unmap_len(tx_buf, dma_len0), |
| 568 | DMA_TO_DEVICE); |
| 569 | } else if (tx_buf->flags & MTK_TX_FLAGS_PAGE0) { |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 570 | dma_unmap_page(eth->dev, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 571 | dma_unmap_addr(tx_buf, dma_addr0), |
| 572 | dma_unmap_len(tx_buf, dma_len0), |
| 573 | DMA_TO_DEVICE); |
| 574 | } |
| 575 | tx_buf->flags = 0; |
| 576 | if (tx_buf->skb && |
| 577 | (tx_buf->skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC)) |
| 578 | dev_kfree_skb_any(tx_buf->skb); |
| 579 | tx_buf->skb = NULL; |
| 580 | } |
| 581 | |
| 582 | static int mtk_tx_map(struct sk_buff *skb, struct net_device *dev, |
| 583 | int tx_num, struct mtk_tx_ring *ring, bool gso) |
| 584 | { |
| 585 | struct mtk_mac *mac = netdev_priv(dev); |
| 586 | struct mtk_eth *eth = mac->hw; |
| 587 | struct mtk_tx_dma *itxd, *txd; |
| 588 | struct mtk_tx_buf *tx_buf; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 589 | dma_addr_t mapped_addr; |
| 590 | unsigned int nr_frags; |
| 591 | int i, n_desc = 1; |
| 592 | u32 txd4 = 0; |
| 593 | |
| 594 | itxd = ring->next_free; |
| 595 | if (itxd == ring->last_free) |
| 596 | return -ENOMEM; |
| 597 | |
| 598 | /* set the forward port */ |
| 599 | txd4 |= (mac->id + 1) << TX_DMA_FPORT_SHIFT; |
| 600 | |
| 601 | tx_buf = mtk_desc_to_tx_buf(ring, itxd); |
| 602 | memset(tx_buf, 0, sizeof(*tx_buf)); |
| 603 | |
| 604 | if (gso) |
| 605 | txd4 |= TX_DMA_TSO; |
| 606 | |
| 607 | /* TX Checksum offload */ |
| 608 | if (skb->ip_summed == CHECKSUM_PARTIAL) |
| 609 | txd4 |= TX_DMA_CHKSUM; |
| 610 | |
| 611 | /* VLAN header offload */ |
| 612 | if (skb_vlan_tag_present(skb)) |
| 613 | txd4 |= TX_DMA_INS_VLAN | skb_vlan_tag_get(skb); |
| 614 | |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 615 | mapped_addr = dma_map_single(eth->dev, skb->data, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 616 | skb_headlen(skb), DMA_TO_DEVICE); |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 617 | if (unlikely(dma_mapping_error(eth->dev, mapped_addr))) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 618 | return -ENOMEM; |
| 619 | |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 620 | WRITE_ONCE(itxd->txd1, mapped_addr); |
| 621 | tx_buf->flags |= MTK_TX_FLAGS_SINGLE0; |
| 622 | dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr); |
| 623 | dma_unmap_len_set(tx_buf, dma_len0, skb_headlen(skb)); |
| 624 | |
| 625 | /* TX SG offload */ |
| 626 | txd = itxd; |
| 627 | nr_frags = skb_shinfo(skb)->nr_frags; |
| 628 | for (i = 0; i < nr_frags; i++) { |
| 629 | struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i]; |
| 630 | unsigned int offset = 0; |
| 631 | int frag_size = skb_frag_size(frag); |
| 632 | |
| 633 | while (frag_size) { |
| 634 | bool last_frag = false; |
| 635 | unsigned int frag_map_size; |
| 636 | |
| 637 | txd = mtk_qdma_phys_to_virt(ring, txd->txd2); |
| 638 | if (txd == ring->last_free) |
| 639 | goto err_dma; |
| 640 | |
| 641 | n_desc++; |
| 642 | frag_map_size = min(frag_size, MTK_TX_DMA_BUF_LEN); |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 643 | mapped_addr = skb_frag_dma_map(eth->dev, frag, offset, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 644 | frag_map_size, |
| 645 | DMA_TO_DEVICE); |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 646 | if (unlikely(dma_mapping_error(eth->dev, mapped_addr))) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 647 | goto err_dma; |
| 648 | |
| 649 | if (i == nr_frags - 1 && |
| 650 | (frag_size - frag_map_size) == 0) |
| 651 | last_frag = true; |
| 652 | |
| 653 | WRITE_ONCE(txd->txd1, mapped_addr); |
| 654 | WRITE_ONCE(txd->txd3, (TX_DMA_SWC | |
| 655 | TX_DMA_PLEN0(frag_map_size) | |
John Crispin | 369f045 | 2016-04-08 00:54:11 +0200 | [diff] [blame] | 656 | last_frag * TX_DMA_LS0)); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 657 | WRITE_ONCE(txd->txd4, 0); |
| 658 | |
| 659 | tx_buf->skb = (struct sk_buff *)MTK_DMA_DUMMY_DESC; |
| 660 | tx_buf = mtk_desc_to_tx_buf(ring, txd); |
| 661 | memset(tx_buf, 0, sizeof(*tx_buf)); |
| 662 | |
| 663 | tx_buf->flags |= MTK_TX_FLAGS_PAGE0; |
| 664 | dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr); |
| 665 | dma_unmap_len_set(tx_buf, dma_len0, frag_map_size); |
| 666 | frag_size -= frag_map_size; |
| 667 | offset += frag_map_size; |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | /* store skb to cleanup */ |
| 672 | tx_buf->skb = skb; |
| 673 | |
| 674 | WRITE_ONCE(itxd->txd4, txd4); |
| 675 | WRITE_ONCE(itxd->txd3, (TX_DMA_SWC | TX_DMA_PLEN0(skb_headlen(skb)) | |
| 676 | (!nr_frags * TX_DMA_LS0))); |
| 677 | |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 678 | netdev_sent_queue(dev, skb->len); |
| 679 | skb_tx_timestamp(skb); |
| 680 | |
| 681 | ring->next_free = mtk_qdma_phys_to_virt(ring, txd->txd2); |
| 682 | atomic_sub(n_desc, &ring->free_count); |
| 683 | |
| 684 | /* make sure that all changes to the dma ring are flushed before we |
| 685 | * continue |
| 686 | */ |
| 687 | wmb(); |
| 688 | |
| 689 | if (netif_xmit_stopped(netdev_get_tx_queue(dev, 0)) || !skb->xmit_more) |
| 690 | mtk_w32(eth, txd->txd2, MTK_QTX_CTX_PTR); |
| 691 | |
| 692 | return 0; |
| 693 | |
| 694 | err_dma: |
| 695 | do { |
John Crispin | 2fae723 | 2016-06-10 13:28:00 +0200 | [diff] [blame] | 696 | tx_buf = mtk_desc_to_tx_buf(ring, itxd); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 697 | |
| 698 | /* unmap dma */ |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 699 | mtk_tx_unmap(eth, tx_buf); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 700 | |
| 701 | itxd->txd3 = TX_DMA_LS0 | TX_DMA_OWNER_CPU; |
| 702 | itxd = mtk_qdma_phys_to_virt(ring, itxd->txd2); |
| 703 | } while (itxd != txd); |
| 704 | |
| 705 | return -ENOMEM; |
| 706 | } |
| 707 | |
| 708 | static inline int mtk_cal_txd_req(struct sk_buff *skb) |
| 709 | { |
| 710 | int i, nfrags; |
| 711 | struct skb_frag_struct *frag; |
| 712 | |
| 713 | nfrags = 1; |
| 714 | if (skb_is_gso(skb)) { |
| 715 | for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { |
| 716 | frag = &skb_shinfo(skb)->frags[i]; |
| 717 | nfrags += DIV_ROUND_UP(frag->size, MTK_TX_DMA_BUF_LEN); |
| 718 | } |
| 719 | } else { |
| 720 | nfrags += skb_shinfo(skb)->nr_frags; |
| 721 | } |
| 722 | |
John Crispin | beeb4ca | 2016-04-08 00:54:05 +0200 | [diff] [blame] | 723 | return nfrags; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 724 | } |
| 725 | |
John Crispin | ad3cba9 | 2016-06-10 13:28:07 +0200 | [diff] [blame] | 726 | static int mtk_queue_stopped(struct mtk_eth *eth) |
| 727 | { |
| 728 | int i; |
| 729 | |
| 730 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
| 731 | if (!eth->netdev[i]) |
| 732 | continue; |
| 733 | if (netif_queue_stopped(eth->netdev[i])) |
| 734 | return 1; |
| 735 | } |
| 736 | |
| 737 | return 0; |
| 738 | } |
| 739 | |
John Crispin | 13c822f | 2016-04-08 00:54:07 +0200 | [diff] [blame] | 740 | static void mtk_wake_queue(struct mtk_eth *eth) |
| 741 | { |
| 742 | int i; |
| 743 | |
| 744 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
| 745 | if (!eth->netdev[i]) |
| 746 | continue; |
| 747 | netif_wake_queue(eth->netdev[i]); |
| 748 | } |
| 749 | } |
| 750 | |
| 751 | static void mtk_stop_queue(struct mtk_eth *eth) |
| 752 | { |
| 753 | int i; |
| 754 | |
| 755 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
| 756 | if (!eth->netdev[i]) |
| 757 | continue; |
| 758 | netif_stop_queue(eth->netdev[i]); |
| 759 | } |
| 760 | } |
| 761 | |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 762 | static int mtk_start_xmit(struct sk_buff *skb, struct net_device *dev) |
| 763 | { |
| 764 | struct mtk_mac *mac = netdev_priv(dev); |
| 765 | struct mtk_eth *eth = mac->hw; |
| 766 | struct mtk_tx_ring *ring = ð->tx_ring; |
| 767 | struct net_device_stats *stats = &dev->stats; |
| 768 | bool gso = false; |
| 769 | int tx_num; |
| 770 | |
John Crispin | 34c2e4c | 2016-04-08 00:54:08 +0200 | [diff] [blame] | 771 | /* normally we can rely on the stack not calling this more than once, |
| 772 | * however we have 2 queues running on the same ring so we need to lock |
| 773 | * the ring access |
| 774 | */ |
Sean Wang | e3e9652 | 2016-08-11 17:51:00 +0800 | [diff] [blame] | 775 | spin_lock(ð->page_lock); |
John Crispin | 34c2e4c | 2016-04-08 00:54:08 +0200 | [diff] [blame] | 776 | |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 777 | tx_num = mtk_cal_txd_req(skb); |
| 778 | if (unlikely(atomic_read(&ring->free_count) <= tx_num)) { |
John Crispin | 13c822f | 2016-04-08 00:54:07 +0200 | [diff] [blame] | 779 | mtk_stop_queue(eth); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 780 | netif_err(eth, tx_queued, dev, |
| 781 | "Tx Ring full when queue awake!\n"); |
Sean Wang | e3e9652 | 2016-08-11 17:51:00 +0800 | [diff] [blame] | 782 | spin_unlock(ð->page_lock); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 783 | return NETDEV_TX_BUSY; |
| 784 | } |
| 785 | |
| 786 | /* TSO: fill MSS info in tcp checksum field */ |
| 787 | if (skb_is_gso(skb)) { |
| 788 | if (skb_cow_head(skb, 0)) { |
| 789 | netif_warn(eth, tx_err, dev, |
| 790 | "GSO expand head fail.\n"); |
| 791 | goto drop; |
| 792 | } |
| 793 | |
| 794 | if (skb_shinfo(skb)->gso_type & |
| 795 | (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)) { |
| 796 | gso = true; |
| 797 | tcp_hdr(skb)->check = htons(skb_shinfo(skb)->gso_size); |
| 798 | } |
| 799 | } |
| 800 | |
| 801 | if (mtk_tx_map(skb, dev, tx_num, ring, gso) < 0) |
| 802 | goto drop; |
| 803 | |
John Crispin | 82c6544 | 2016-06-10 13:28:08 +0200 | [diff] [blame] | 804 | if (unlikely(atomic_read(&ring->free_count) <= ring->thresh)) |
John Crispin | 13c822f | 2016-04-08 00:54:07 +0200 | [diff] [blame] | 805 | mtk_stop_queue(eth); |
John Crispin | 82c6544 | 2016-06-10 13:28:08 +0200 | [diff] [blame] | 806 | |
Sean Wang | e3e9652 | 2016-08-11 17:51:00 +0800 | [diff] [blame] | 807 | spin_unlock(ð->page_lock); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 808 | |
| 809 | return NETDEV_TX_OK; |
| 810 | |
| 811 | drop: |
Sean Wang | e3e9652 | 2016-08-11 17:51:00 +0800 | [diff] [blame] | 812 | spin_unlock(ð->page_lock); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 813 | stats->tx_dropped++; |
| 814 | dev_kfree_skb(skb); |
| 815 | return NETDEV_TX_OK; |
| 816 | } |
| 817 | |
| 818 | static int mtk_poll_rx(struct napi_struct *napi, int budget, |
John Crispin | eece71e | 2016-06-29 13:38:09 +0200 | [diff] [blame] | 819 | struct mtk_eth *eth) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 820 | { |
| 821 | struct mtk_rx_ring *ring = ð->rx_ring; |
| 822 | int idx = ring->calc_idx; |
| 823 | struct sk_buff *skb; |
| 824 | u8 *data, *new_data; |
| 825 | struct mtk_rx_dma *rxd, trxd; |
| 826 | int done = 0; |
| 827 | |
| 828 | while (done < budget) { |
| 829 | struct net_device *netdev; |
| 830 | unsigned int pktlen; |
| 831 | dma_addr_t dma_addr; |
| 832 | int mac = 0; |
| 833 | |
| 834 | idx = NEXT_RX_DESP_IDX(idx); |
| 835 | rxd = &ring->dma[idx]; |
| 836 | data = ring->data[idx]; |
| 837 | |
| 838 | mtk_rx_get_desc(&trxd, rxd); |
| 839 | if (!(trxd.rxd2 & RX_DMA_DONE)) |
| 840 | break; |
| 841 | |
| 842 | /* find out which mac the packet come from. values start at 1 */ |
| 843 | mac = (trxd.rxd4 >> RX_DMA_FPORT_SHIFT) & |
| 844 | RX_DMA_FPORT_MASK; |
| 845 | mac--; |
| 846 | |
| 847 | netdev = eth->netdev[mac]; |
| 848 | |
| 849 | /* alloc new buffer */ |
| 850 | new_data = napi_alloc_frag(ring->frag_size); |
| 851 | if (unlikely(!new_data)) { |
| 852 | netdev->stats.rx_dropped++; |
| 853 | goto release_desc; |
| 854 | } |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 855 | dma_addr = dma_map_single(eth->dev, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 856 | new_data + NET_SKB_PAD, |
| 857 | ring->buf_size, |
| 858 | DMA_FROM_DEVICE); |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 859 | if (unlikely(dma_mapping_error(eth->dev, dma_addr))) { |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 860 | skb_free_frag(new_data); |
John Crispin | 94321a9 | 2016-06-10 13:28:01 +0200 | [diff] [blame] | 861 | netdev->stats.rx_dropped++; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 862 | goto release_desc; |
| 863 | } |
| 864 | |
| 865 | /* receive data */ |
| 866 | skb = build_skb(data, ring->frag_size); |
| 867 | if (unlikely(!skb)) { |
| 868 | put_page(virt_to_head_page(new_data)); |
John Crispin | 94321a9 | 2016-06-10 13:28:01 +0200 | [diff] [blame] | 869 | netdev->stats.rx_dropped++; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 870 | goto release_desc; |
| 871 | } |
| 872 | skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN); |
| 873 | |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 874 | dma_unmap_single(eth->dev, trxd.rxd1, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 875 | ring->buf_size, DMA_FROM_DEVICE); |
| 876 | pktlen = RX_DMA_GET_PLEN0(trxd.rxd2); |
| 877 | skb->dev = netdev; |
| 878 | skb_put(skb, pktlen); |
| 879 | if (trxd.rxd4 & RX_DMA_L4_VALID) |
| 880 | skb->ip_summed = CHECKSUM_UNNECESSARY; |
| 881 | else |
| 882 | skb_checksum_none_assert(skb); |
| 883 | skb->protocol = eth_type_trans(skb, netdev); |
| 884 | |
| 885 | if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX && |
| 886 | RX_DMA_VID(trxd.rxd3)) |
| 887 | __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), |
| 888 | RX_DMA_VID(trxd.rxd3)); |
| 889 | napi_gro_receive(napi, skb); |
| 890 | |
| 891 | ring->data[idx] = new_data; |
| 892 | rxd->rxd1 = (unsigned int)dma_addr; |
| 893 | |
| 894 | release_desc: |
| 895 | rxd->rxd2 = RX_DMA_PLEN0(ring->buf_size); |
| 896 | |
| 897 | ring->calc_idx = idx; |
| 898 | /* make sure that all changes to the dma ring are flushed before |
| 899 | * we continue |
| 900 | */ |
| 901 | wmb(); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 902 | mtk_w32(eth, ring->calc_idx, MTK_PRX_CRX_IDX0); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 903 | done++; |
| 904 | } |
| 905 | |
| 906 | if (done < budget) |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 907 | mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_STATUS); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 908 | |
| 909 | return done; |
| 910 | } |
| 911 | |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 912 | static int mtk_poll_tx(struct mtk_eth *eth, int budget) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 913 | { |
| 914 | struct mtk_tx_ring *ring = ð->tx_ring; |
| 915 | struct mtk_tx_dma *desc; |
| 916 | struct sk_buff *skb; |
| 917 | struct mtk_tx_buf *tx_buf; |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 918 | unsigned int done[MTK_MAX_DEVS]; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 919 | unsigned int bytes[MTK_MAX_DEVS]; |
| 920 | u32 cpu, dma; |
| 921 | static int condition; |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 922 | int total = 0, i; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 923 | |
| 924 | memset(done, 0, sizeof(done)); |
| 925 | memset(bytes, 0, sizeof(bytes)); |
| 926 | |
| 927 | cpu = mtk_r32(eth, MTK_QTX_CRX_PTR); |
| 928 | dma = mtk_r32(eth, MTK_QTX_DRX_PTR); |
| 929 | |
| 930 | desc = mtk_qdma_phys_to_virt(ring, cpu); |
| 931 | |
| 932 | while ((cpu != dma) && budget) { |
| 933 | u32 next_cpu = desc->txd2; |
| 934 | int mac; |
| 935 | |
| 936 | desc = mtk_qdma_phys_to_virt(ring, desc->txd2); |
| 937 | if ((desc->txd3 & TX_DMA_OWNER_CPU) == 0) |
| 938 | break; |
| 939 | |
| 940 | mac = (desc->txd4 >> TX_DMA_FPORT_SHIFT) & |
| 941 | TX_DMA_FPORT_MASK; |
| 942 | mac--; |
| 943 | |
| 944 | tx_buf = mtk_desc_to_tx_buf(ring, desc); |
| 945 | skb = tx_buf->skb; |
| 946 | if (!skb) { |
| 947 | condition = 1; |
| 948 | break; |
| 949 | } |
| 950 | |
| 951 | if (skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC) { |
| 952 | bytes[mac] += skb->len; |
| 953 | done[mac]++; |
| 954 | budget--; |
| 955 | } |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 956 | mtk_tx_unmap(eth, tx_buf); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 957 | |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 958 | ring->last_free = desc; |
| 959 | atomic_inc(&ring->free_count); |
| 960 | |
| 961 | cpu = next_cpu; |
| 962 | } |
| 963 | |
| 964 | mtk_w32(eth, cpu, MTK_QTX_CRX_PTR); |
| 965 | |
| 966 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
| 967 | if (!eth->netdev[i] || !done[i]) |
| 968 | continue; |
| 969 | netdev_completed_queue(eth->netdev[i], done[i], bytes[i]); |
| 970 | total += done[i]; |
| 971 | } |
| 972 | |
John Crispin | ad3cba9 | 2016-06-10 13:28:07 +0200 | [diff] [blame] | 973 | if (mtk_queue_stopped(eth) && |
| 974 | (atomic_read(&ring->free_count) > ring->thresh)) |
John Crispin | 13c822f | 2016-04-08 00:54:07 +0200 | [diff] [blame] | 975 | mtk_wake_queue(eth); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 976 | |
| 977 | return total; |
| 978 | } |
| 979 | |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 980 | static void mtk_handle_status_irq(struct mtk_eth *eth) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 981 | { |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 982 | u32 status2 = mtk_r32(eth, MTK_INT_STATUS2); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 983 | |
John Crispin | eece71e | 2016-06-29 13:38:09 +0200 | [diff] [blame] | 984 | if (unlikely(status2 & (MTK_GDM1_AF | MTK_GDM2_AF))) { |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 985 | mtk_stats_update(eth); |
John Crispin | eece71e | 2016-06-29 13:38:09 +0200 | [diff] [blame] | 986 | mtk_w32(eth, (MTK_GDM1_AF | MTK_GDM2_AF), |
| 987 | MTK_INT_STATUS2); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 988 | } |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | static int mtk_napi_tx(struct napi_struct *napi, int budget) |
| 992 | { |
| 993 | struct mtk_eth *eth = container_of(napi, struct mtk_eth, tx_napi); |
| 994 | u32 status, mask; |
| 995 | int tx_done = 0; |
| 996 | |
| 997 | mtk_handle_status_irq(eth); |
| 998 | mtk_w32(eth, MTK_TX_DONE_INT, MTK_QMTK_INT_STATUS); |
| 999 | tx_done = mtk_poll_tx(eth, budget); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1000 | |
| 1001 | if (unlikely(netif_msg_intr(eth))) { |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1002 | status = mtk_r32(eth, MTK_QMTK_INT_STATUS); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1003 | mask = mtk_r32(eth, MTK_QDMA_INT_MASK); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1004 | dev_info(eth->dev, |
| 1005 | "done tx %d, intr 0x%08x/0x%x\n", |
| 1006 | tx_done, status, mask); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1007 | } |
| 1008 | |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1009 | if (tx_done == budget) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1010 | return budget; |
| 1011 | |
| 1012 | status = mtk_r32(eth, MTK_QMTK_INT_STATUS); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1013 | if (status & MTK_TX_DONE_INT) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1014 | return budget; |
| 1015 | |
| 1016 | napi_complete(napi); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1017 | mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1018 | |
| 1019 | return tx_done; |
| 1020 | } |
| 1021 | |
| 1022 | static int mtk_napi_rx(struct napi_struct *napi, int budget) |
| 1023 | { |
| 1024 | struct mtk_eth *eth = container_of(napi, struct mtk_eth, rx_napi); |
| 1025 | u32 status, mask; |
| 1026 | int rx_done = 0; |
| 1027 | |
| 1028 | mtk_handle_status_irq(eth); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1029 | mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_STATUS); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1030 | rx_done = mtk_poll_rx(napi, budget, eth); |
| 1031 | |
| 1032 | if (unlikely(netif_msg_intr(eth))) { |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1033 | status = mtk_r32(eth, MTK_PDMA_INT_STATUS); |
| 1034 | mask = mtk_r32(eth, MTK_PDMA_INT_MASK); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1035 | dev_info(eth->dev, |
| 1036 | "done rx %d, intr 0x%08x/0x%x\n", |
| 1037 | rx_done, status, mask); |
| 1038 | } |
| 1039 | |
| 1040 | if (rx_done == budget) |
| 1041 | return budget; |
| 1042 | |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1043 | status = mtk_r32(eth, MTK_PDMA_INT_STATUS); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1044 | if (status & MTK_RX_DONE_INT) |
| 1045 | return budget; |
| 1046 | |
| 1047 | napi_complete(napi); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1048 | mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1049 | |
| 1050 | return rx_done; |
| 1051 | } |
| 1052 | |
| 1053 | static int mtk_tx_alloc(struct mtk_eth *eth) |
| 1054 | { |
| 1055 | struct mtk_tx_ring *ring = ð->tx_ring; |
| 1056 | int i, sz = sizeof(*ring->dma); |
| 1057 | |
| 1058 | ring->buf = kcalloc(MTK_DMA_SIZE, sizeof(*ring->buf), |
| 1059 | GFP_KERNEL); |
| 1060 | if (!ring->buf) |
| 1061 | goto no_tx_mem; |
| 1062 | |
| 1063 | ring->dma = dma_alloc_coherent(eth->dev, |
| 1064 | MTK_DMA_SIZE * sz, |
| 1065 | &ring->phys, |
| 1066 | GFP_ATOMIC | __GFP_ZERO); |
| 1067 | if (!ring->dma) |
| 1068 | goto no_tx_mem; |
| 1069 | |
| 1070 | memset(ring->dma, 0, MTK_DMA_SIZE * sz); |
| 1071 | for (i = 0; i < MTK_DMA_SIZE; i++) { |
| 1072 | int next = (i + 1) % MTK_DMA_SIZE; |
| 1073 | u32 next_ptr = ring->phys + next * sz; |
| 1074 | |
| 1075 | ring->dma[i].txd2 = next_ptr; |
| 1076 | ring->dma[i].txd3 = TX_DMA_LS0 | TX_DMA_OWNER_CPU; |
| 1077 | } |
| 1078 | |
| 1079 | atomic_set(&ring->free_count, MTK_DMA_SIZE - 2); |
| 1080 | ring->next_free = &ring->dma[0]; |
John Crispin | 12c97c1 | 2016-06-10 13:28:06 +0200 | [diff] [blame] | 1081 | ring->last_free = &ring->dma[MTK_DMA_SIZE - 1]; |
John Crispin | 04698cc | 2016-06-10 13:28:04 +0200 | [diff] [blame] | 1082 | ring->thresh = MAX_SKB_FRAGS; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1083 | |
| 1084 | /* make sure that all changes to the dma ring are flushed before we |
| 1085 | * continue |
| 1086 | */ |
| 1087 | wmb(); |
| 1088 | |
| 1089 | mtk_w32(eth, ring->phys, MTK_QTX_CTX_PTR); |
| 1090 | mtk_w32(eth, ring->phys, MTK_QTX_DTX_PTR); |
| 1091 | mtk_w32(eth, |
| 1092 | ring->phys + ((MTK_DMA_SIZE - 1) * sz), |
| 1093 | MTK_QTX_CRX_PTR); |
| 1094 | mtk_w32(eth, |
| 1095 | ring->phys + ((MTK_DMA_SIZE - 1) * sz), |
| 1096 | MTK_QTX_DRX_PTR); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1097 | mtk_w32(eth, (QDMA_RES_THRES << 8) | QDMA_RES_THRES, MTK_QTX_CFG(0)); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1098 | |
| 1099 | return 0; |
| 1100 | |
| 1101 | no_tx_mem: |
| 1102 | return -ENOMEM; |
| 1103 | } |
| 1104 | |
| 1105 | static void mtk_tx_clean(struct mtk_eth *eth) |
| 1106 | { |
| 1107 | struct mtk_tx_ring *ring = ð->tx_ring; |
| 1108 | int i; |
| 1109 | |
| 1110 | if (ring->buf) { |
| 1111 | for (i = 0; i < MTK_DMA_SIZE; i++) |
sean.wang@mediatek.com | 55a4e77 | 2016-08-16 13:55:15 +0800 | [diff] [blame] | 1112 | mtk_tx_unmap(eth, &ring->buf[i]); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1113 | kfree(ring->buf); |
| 1114 | ring->buf = NULL; |
| 1115 | } |
| 1116 | |
| 1117 | if (ring->dma) { |
| 1118 | dma_free_coherent(eth->dev, |
| 1119 | MTK_DMA_SIZE * sizeof(*ring->dma), |
| 1120 | ring->dma, |
| 1121 | ring->phys); |
| 1122 | ring->dma = NULL; |
| 1123 | } |
| 1124 | } |
| 1125 | |
| 1126 | static int mtk_rx_alloc(struct mtk_eth *eth) |
| 1127 | { |
| 1128 | struct mtk_rx_ring *ring = ð->rx_ring; |
| 1129 | int i; |
| 1130 | |
| 1131 | ring->frag_size = mtk_max_frag_size(ETH_DATA_LEN); |
| 1132 | ring->buf_size = mtk_max_buf_size(ring->frag_size); |
| 1133 | ring->data = kcalloc(MTK_DMA_SIZE, sizeof(*ring->data), |
| 1134 | GFP_KERNEL); |
| 1135 | if (!ring->data) |
| 1136 | return -ENOMEM; |
| 1137 | |
| 1138 | for (i = 0; i < MTK_DMA_SIZE; i++) { |
| 1139 | ring->data[i] = netdev_alloc_frag(ring->frag_size); |
| 1140 | if (!ring->data[i]) |
| 1141 | return -ENOMEM; |
| 1142 | } |
| 1143 | |
| 1144 | ring->dma = dma_alloc_coherent(eth->dev, |
| 1145 | MTK_DMA_SIZE * sizeof(*ring->dma), |
| 1146 | &ring->phys, |
| 1147 | GFP_ATOMIC | __GFP_ZERO); |
| 1148 | if (!ring->dma) |
| 1149 | return -ENOMEM; |
| 1150 | |
| 1151 | for (i = 0; i < MTK_DMA_SIZE; i++) { |
| 1152 | dma_addr_t dma_addr = dma_map_single(eth->dev, |
| 1153 | ring->data[i] + NET_SKB_PAD, |
| 1154 | ring->buf_size, |
| 1155 | DMA_FROM_DEVICE); |
| 1156 | if (unlikely(dma_mapping_error(eth->dev, dma_addr))) |
| 1157 | return -ENOMEM; |
| 1158 | ring->dma[i].rxd1 = (unsigned int)dma_addr; |
| 1159 | |
| 1160 | ring->dma[i].rxd2 = RX_DMA_PLEN0(ring->buf_size); |
| 1161 | } |
| 1162 | ring->calc_idx = MTK_DMA_SIZE - 1; |
| 1163 | /* make sure that all changes to the dma ring are flushed before we |
| 1164 | * continue |
| 1165 | */ |
| 1166 | wmb(); |
| 1167 | |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1168 | mtk_w32(eth, eth->rx_ring.phys, MTK_PRX_BASE_PTR0); |
| 1169 | mtk_w32(eth, MTK_DMA_SIZE, MTK_PRX_MAX_CNT0); |
| 1170 | mtk_w32(eth, eth->rx_ring.calc_idx, MTK_PRX_CRX_IDX0); |
| 1171 | mtk_w32(eth, MTK_PST_DRX_IDX0, MTK_PDMA_RST_IDX); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1172 | |
| 1173 | return 0; |
| 1174 | } |
| 1175 | |
| 1176 | static void mtk_rx_clean(struct mtk_eth *eth) |
| 1177 | { |
| 1178 | struct mtk_rx_ring *ring = ð->rx_ring; |
| 1179 | int i; |
| 1180 | |
| 1181 | if (ring->data && ring->dma) { |
| 1182 | for (i = 0; i < MTK_DMA_SIZE; i++) { |
| 1183 | if (!ring->data[i]) |
| 1184 | continue; |
| 1185 | if (!ring->dma[i].rxd1) |
| 1186 | continue; |
| 1187 | dma_unmap_single(eth->dev, |
| 1188 | ring->dma[i].rxd1, |
| 1189 | ring->buf_size, |
| 1190 | DMA_FROM_DEVICE); |
| 1191 | skb_free_frag(ring->data[i]); |
| 1192 | } |
| 1193 | kfree(ring->data); |
| 1194 | ring->data = NULL; |
| 1195 | } |
| 1196 | |
| 1197 | if (ring->dma) { |
| 1198 | dma_free_coherent(eth->dev, |
| 1199 | MTK_DMA_SIZE * sizeof(*ring->dma), |
| 1200 | ring->dma, |
| 1201 | ring->phys); |
| 1202 | ring->dma = NULL; |
| 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | /* wait for DMA to finish whatever it is doing before we start using it again */ |
| 1207 | static int mtk_dma_busy_wait(struct mtk_eth *eth) |
| 1208 | { |
| 1209 | unsigned long t_start = jiffies; |
| 1210 | |
| 1211 | while (1) { |
| 1212 | if (!(mtk_r32(eth, MTK_QDMA_GLO_CFG) & |
| 1213 | (MTK_RX_DMA_BUSY | MTK_TX_DMA_BUSY))) |
| 1214 | return 0; |
| 1215 | if (time_after(jiffies, t_start + MTK_DMA_BUSY_TIMEOUT)) |
| 1216 | break; |
| 1217 | } |
| 1218 | |
| 1219 | dev_err(eth->dev, "DMA init timeout\n"); |
| 1220 | return -1; |
| 1221 | } |
| 1222 | |
| 1223 | static int mtk_dma_init(struct mtk_eth *eth) |
| 1224 | { |
| 1225 | int err; |
| 1226 | |
| 1227 | if (mtk_dma_busy_wait(eth)) |
| 1228 | return -EBUSY; |
| 1229 | |
| 1230 | /* QDMA needs scratch memory for internal reordering of the |
| 1231 | * descriptors |
| 1232 | */ |
| 1233 | err = mtk_init_fq_dma(eth); |
| 1234 | if (err) |
| 1235 | return err; |
| 1236 | |
| 1237 | err = mtk_tx_alloc(eth); |
| 1238 | if (err) |
| 1239 | return err; |
| 1240 | |
| 1241 | err = mtk_rx_alloc(eth); |
| 1242 | if (err) |
| 1243 | return err; |
| 1244 | |
| 1245 | /* Enable random early drop and set drop threshold automatically */ |
| 1246 | mtk_w32(eth, FC_THRES_DROP_MODE | FC_THRES_DROP_EN | FC_THRES_MIN, |
| 1247 | MTK_QDMA_FC_THRES); |
| 1248 | mtk_w32(eth, 0x0, MTK_QDMA_HRED2); |
| 1249 | |
| 1250 | return 0; |
| 1251 | } |
| 1252 | |
| 1253 | static void mtk_dma_free(struct mtk_eth *eth) |
| 1254 | { |
| 1255 | int i; |
| 1256 | |
| 1257 | for (i = 0; i < MTK_MAC_COUNT; i++) |
| 1258 | if (eth->netdev[i]) |
| 1259 | netdev_reset_queue(eth->netdev[i]); |
John Crispin | 605e4fe | 2016-06-10 13:27:59 +0200 | [diff] [blame] | 1260 | if (eth->scratch_ring) { |
| 1261 | dma_free_coherent(eth->dev, |
| 1262 | MTK_DMA_SIZE * sizeof(struct mtk_tx_dma), |
| 1263 | eth->scratch_ring, |
| 1264 | eth->phy_scratch_ring); |
| 1265 | eth->scratch_ring = NULL; |
| 1266 | eth->phy_scratch_ring = 0; |
| 1267 | } |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1268 | mtk_tx_clean(eth); |
| 1269 | mtk_rx_clean(eth); |
| 1270 | kfree(eth->scratch_head); |
| 1271 | } |
| 1272 | |
| 1273 | static void mtk_tx_timeout(struct net_device *dev) |
| 1274 | { |
| 1275 | struct mtk_mac *mac = netdev_priv(dev); |
| 1276 | struct mtk_eth *eth = mac->hw; |
| 1277 | |
| 1278 | eth->netdev[mac->id]->stats.tx_errors++; |
| 1279 | netif_err(eth, tx_err, dev, |
| 1280 | "transmit timed out\n"); |
John Crispin | 7c78b4a | 2016-04-08 00:54:10 +0200 | [diff] [blame] | 1281 | schedule_work(ð->pending_work); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1282 | } |
| 1283 | |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1284 | static irqreturn_t mtk_handle_irq_rx(int irq, void *_eth) |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1285 | { |
| 1286 | struct mtk_eth *eth = _eth; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1287 | |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1288 | if (likely(napi_schedule_prep(ð->rx_napi))) { |
| 1289 | __napi_schedule(ð->rx_napi); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1290 | mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1291 | } |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1292 | |
| 1293 | return IRQ_HANDLED; |
| 1294 | } |
| 1295 | |
| 1296 | static irqreturn_t mtk_handle_irq_tx(int irq, void *_eth) |
| 1297 | { |
| 1298 | struct mtk_eth *eth = _eth; |
| 1299 | |
| 1300 | if (likely(napi_schedule_prep(ð->tx_napi))) { |
| 1301 | __napi_schedule(ð->tx_napi); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1302 | mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1303 | } |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1304 | |
| 1305 | return IRQ_HANDLED; |
| 1306 | } |
| 1307 | |
| 1308 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1309 | static void mtk_poll_controller(struct net_device *dev) |
| 1310 | { |
| 1311 | struct mtk_mac *mac = netdev_priv(dev); |
| 1312 | struct mtk_eth *eth = mac->hw; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1313 | |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1314 | mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT); |
| 1315 | mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT); |
John Crispin | 8186f6e | 2016-07-02 08:00:50 +0200 | [diff] [blame] | 1316 | mtk_handle_irq_rx(eth->irq[2], dev); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1317 | mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT); |
| 1318 | mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1319 | } |
| 1320 | #endif |
| 1321 | |
| 1322 | static int mtk_start_dma(struct mtk_eth *eth) |
| 1323 | { |
| 1324 | int err; |
| 1325 | |
| 1326 | err = mtk_dma_init(eth); |
| 1327 | if (err) { |
| 1328 | mtk_dma_free(eth); |
| 1329 | return err; |
| 1330 | } |
| 1331 | |
| 1332 | mtk_w32(eth, |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1333 | MTK_TX_WB_DDONE | MTK_TX_DMA_EN | |
| 1334 | MTK_DMA_SIZE_16DWORDS | MTK_NDP_CO_PRO, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1335 | MTK_QDMA_GLO_CFG); |
| 1336 | |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1337 | mtk_w32(eth, |
| 1338 | MTK_RX_DMA_EN | MTK_RX_2B_OFFSET | |
| 1339 | MTK_RX_BT_32DWORDS | MTK_MULTI_EN, |
| 1340 | MTK_PDMA_GLO_CFG); |
| 1341 | |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1342 | return 0; |
| 1343 | } |
| 1344 | |
| 1345 | static int mtk_open(struct net_device *dev) |
| 1346 | { |
| 1347 | struct mtk_mac *mac = netdev_priv(dev); |
| 1348 | struct mtk_eth *eth = mac->hw; |
| 1349 | |
| 1350 | /* we run 2 netdevs on the same dma ring so we only bring it up once */ |
| 1351 | if (!atomic_read(ð->dma_refcnt)) { |
| 1352 | int err = mtk_start_dma(eth); |
| 1353 | |
| 1354 | if (err) |
| 1355 | return err; |
| 1356 | |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1357 | napi_enable(ð->tx_napi); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1358 | napi_enable(ð->rx_napi); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1359 | mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT); |
| 1360 | mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1361 | } |
| 1362 | atomic_inc(ð->dma_refcnt); |
| 1363 | |
| 1364 | phy_start(mac->phy_dev); |
| 1365 | netif_start_queue(dev); |
| 1366 | |
| 1367 | return 0; |
| 1368 | } |
| 1369 | |
| 1370 | static void mtk_stop_dma(struct mtk_eth *eth, u32 glo_cfg) |
| 1371 | { |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1372 | u32 val; |
| 1373 | int i; |
| 1374 | |
| 1375 | /* stop the dma engine */ |
Sean Wang | e3e9652 | 2016-08-11 17:51:00 +0800 | [diff] [blame] | 1376 | spin_lock_bh(ð->page_lock); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1377 | val = mtk_r32(eth, glo_cfg); |
| 1378 | mtk_w32(eth, val & ~(MTK_TX_WB_DDONE | MTK_RX_DMA_EN | MTK_TX_DMA_EN), |
| 1379 | glo_cfg); |
Sean Wang | e3e9652 | 2016-08-11 17:51:00 +0800 | [diff] [blame] | 1380 | spin_unlock_bh(ð->page_lock); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1381 | |
| 1382 | /* wait for dma stop */ |
| 1383 | for (i = 0; i < 10; i++) { |
| 1384 | val = mtk_r32(eth, glo_cfg); |
| 1385 | if (val & (MTK_TX_DMA_BUSY | MTK_RX_DMA_BUSY)) { |
| 1386 | msleep(20); |
| 1387 | continue; |
| 1388 | } |
| 1389 | break; |
| 1390 | } |
| 1391 | } |
| 1392 | |
| 1393 | static int mtk_stop(struct net_device *dev) |
| 1394 | { |
| 1395 | struct mtk_mac *mac = netdev_priv(dev); |
| 1396 | struct mtk_eth *eth = mac->hw; |
| 1397 | |
| 1398 | netif_tx_disable(dev); |
| 1399 | phy_stop(mac->phy_dev); |
| 1400 | |
| 1401 | /* only shutdown DMA if this is the last user */ |
| 1402 | if (!atomic_dec_and_test(ð->dma_refcnt)) |
| 1403 | return 0; |
| 1404 | |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1405 | mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT); |
| 1406 | mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1407 | napi_disable(ð->tx_napi); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1408 | napi_disable(ð->rx_napi); |
| 1409 | |
| 1410 | mtk_stop_dma(eth, MTK_QDMA_GLO_CFG); |
| 1411 | |
| 1412 | mtk_dma_free(eth); |
| 1413 | |
| 1414 | return 0; |
| 1415 | } |
| 1416 | |
| 1417 | static int __init mtk_hw_init(struct mtk_eth *eth) |
| 1418 | { |
| 1419 | int err, i; |
| 1420 | |
| 1421 | /* reset the frame engine */ |
| 1422 | reset_control_assert(eth->rstc); |
| 1423 | usleep_range(10, 20); |
| 1424 | reset_control_deassert(eth->rstc); |
| 1425 | usleep_range(10, 20); |
| 1426 | |
| 1427 | /* Set GE2 driving and slew rate */ |
| 1428 | regmap_write(eth->pctl, GPIO_DRV_SEL10, 0xa00); |
| 1429 | |
| 1430 | /* set GE2 TDSEL */ |
| 1431 | regmap_write(eth->pctl, GPIO_OD33_CTRL8, 0x5); |
| 1432 | |
| 1433 | /* set GE2 TUNE */ |
| 1434 | regmap_write(eth->pctl, GPIO_BIAS_CTRL, 0x0); |
| 1435 | |
| 1436 | /* GE1, Force 1000M/FD, FC ON */ |
| 1437 | mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(0)); |
| 1438 | |
| 1439 | /* GE2, Force 1000M/FD, FC ON */ |
| 1440 | mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(1)); |
| 1441 | |
| 1442 | /* Enable RX VLan Offloading */ |
| 1443 | mtk_w32(eth, 1, MTK_CDMP_EG_CTRL); |
| 1444 | |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1445 | err = devm_request_irq(eth->dev, eth->irq[1], mtk_handle_irq_tx, 0, |
| 1446 | dev_name(eth->dev), eth); |
| 1447 | if (err) |
| 1448 | return err; |
| 1449 | err = devm_request_irq(eth->dev, eth->irq[2], mtk_handle_irq_rx, 0, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1450 | dev_name(eth->dev), eth); |
| 1451 | if (err) |
| 1452 | return err; |
| 1453 | |
| 1454 | err = mtk_mdio_init(eth); |
| 1455 | if (err) |
| 1456 | return err; |
| 1457 | |
| 1458 | /* disable delay and normal interrupt */ |
| 1459 | mtk_w32(eth, 0, MTK_QDMA_DELAY_INT); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1460 | mtk_w32(eth, 0, MTK_PDMA_DELAY_INT); |
| 1461 | mtk_irq_disable(eth, MTK_QDMA_INT_MASK, ~0); |
| 1462 | mtk_irq_disable(eth, MTK_PDMA_INT_MASK, ~0); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1463 | mtk_w32(eth, RST_GL_PSE, MTK_RST_GL); |
| 1464 | mtk_w32(eth, 0, MTK_RST_GL); |
| 1465 | |
| 1466 | /* FE int grouping */ |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1467 | mtk_w32(eth, MTK_TX_DONE_INT, MTK_PDMA_INT_GRP1); |
| 1468 | mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_GRP2); |
| 1469 | mtk_w32(eth, MTK_TX_DONE_INT, MTK_QDMA_INT_GRP1); |
| 1470 | mtk_w32(eth, MTK_RX_DONE_INT, MTK_QDMA_INT_GRP2); |
| 1471 | mtk_w32(eth, 0x21021000, MTK_FE_INT_GRP); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1472 | |
| 1473 | for (i = 0; i < 2; i++) { |
| 1474 | u32 val = mtk_r32(eth, MTK_GDMA_FWD_CFG(i)); |
| 1475 | |
Nelson Chang | 9c08435 | 2016-08-26 01:09:43 +0800 | [diff] [blame^] | 1476 | /* setup the forward port to send frame to PDMA */ |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1477 | val &= ~0xffff; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1478 | |
| 1479 | /* Enable RX checksum */ |
| 1480 | val |= MTK_GDMA_ICS_EN | MTK_GDMA_TCS_EN | MTK_GDMA_UCS_EN; |
| 1481 | |
| 1482 | /* setup the mac dma */ |
| 1483 | mtk_w32(eth, val, MTK_GDMA_FWD_CFG(i)); |
| 1484 | } |
| 1485 | |
| 1486 | return 0; |
| 1487 | } |
| 1488 | |
| 1489 | static int __init mtk_init(struct net_device *dev) |
| 1490 | { |
| 1491 | struct mtk_mac *mac = netdev_priv(dev); |
| 1492 | struct mtk_eth *eth = mac->hw; |
| 1493 | const char *mac_addr; |
| 1494 | |
| 1495 | mac_addr = of_get_mac_address(mac->of_node); |
| 1496 | if (mac_addr) |
| 1497 | ether_addr_copy(dev->dev_addr, mac_addr); |
| 1498 | |
| 1499 | /* If the mac address is invalid, use random mac address */ |
| 1500 | if (!is_valid_ether_addr(dev->dev_addr)) { |
| 1501 | random_ether_addr(dev->dev_addr); |
| 1502 | dev_err(eth->dev, "generated random MAC address %pM\n", |
| 1503 | dev->dev_addr); |
| 1504 | dev->addr_assign_type = NET_ADDR_RANDOM; |
| 1505 | } |
| 1506 | |
| 1507 | return mtk_phy_connect(mac); |
| 1508 | } |
| 1509 | |
| 1510 | static void mtk_uninit(struct net_device *dev) |
| 1511 | { |
| 1512 | struct mtk_mac *mac = netdev_priv(dev); |
| 1513 | struct mtk_eth *eth = mac->hw; |
| 1514 | |
| 1515 | phy_disconnect(mac->phy_dev); |
| 1516 | mtk_mdio_cleanup(eth); |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1517 | mtk_irq_disable(eth, MTK_QDMA_INT_MASK, ~0); |
| 1518 | mtk_irq_disable(eth, MTK_PDMA_INT_MASK, ~0); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1519 | free_irq(eth->irq[1], dev); |
| 1520 | free_irq(eth->irq[2], dev); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | static int mtk_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) |
| 1524 | { |
| 1525 | struct mtk_mac *mac = netdev_priv(dev); |
| 1526 | |
| 1527 | switch (cmd) { |
| 1528 | case SIOCGMIIPHY: |
| 1529 | case SIOCGMIIREG: |
| 1530 | case SIOCSMIIREG: |
| 1531 | return phy_mii_ioctl(mac->phy_dev, ifr, cmd); |
| 1532 | default: |
| 1533 | break; |
| 1534 | } |
| 1535 | |
| 1536 | return -EOPNOTSUPP; |
| 1537 | } |
| 1538 | |
| 1539 | static void mtk_pending_work(struct work_struct *work) |
| 1540 | { |
John Crispin | 7c78b4a | 2016-04-08 00:54:10 +0200 | [diff] [blame] | 1541 | struct mtk_eth *eth = container_of(work, struct mtk_eth, pending_work); |
John Crispin | e7d425d | 2016-04-08 00:54:09 +0200 | [diff] [blame] | 1542 | int err, i; |
| 1543 | unsigned long restart = 0; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1544 | |
| 1545 | rtnl_lock(); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1546 | |
John Crispin | e7d425d | 2016-04-08 00:54:09 +0200 | [diff] [blame] | 1547 | /* stop all devices to make sure that dma is properly shut down */ |
| 1548 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
John Crispin | 7c78b4a | 2016-04-08 00:54:10 +0200 | [diff] [blame] | 1549 | if (!eth->netdev[i]) |
John Crispin | e7d425d | 2016-04-08 00:54:09 +0200 | [diff] [blame] | 1550 | continue; |
| 1551 | mtk_stop(eth->netdev[i]); |
| 1552 | __set_bit(i, &restart); |
| 1553 | } |
| 1554 | |
| 1555 | /* restart DMA and enable IRQs */ |
| 1556 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
| 1557 | if (!test_bit(i, &restart)) |
| 1558 | continue; |
| 1559 | err = mtk_open(eth->netdev[i]); |
| 1560 | if (err) { |
| 1561 | netif_alert(eth, ifup, eth->netdev[i], |
| 1562 | "Driver up/down cycle failed, closing device.\n"); |
| 1563 | dev_close(eth->netdev[i]); |
| 1564 | } |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1565 | } |
| 1566 | rtnl_unlock(); |
| 1567 | } |
| 1568 | |
| 1569 | static int mtk_cleanup(struct mtk_eth *eth) |
| 1570 | { |
| 1571 | int i; |
| 1572 | |
| 1573 | for (i = 0; i < MTK_MAC_COUNT; i++) { |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1574 | if (!eth->netdev[i]) |
| 1575 | continue; |
| 1576 | |
| 1577 | unregister_netdev(eth->netdev[i]); |
| 1578 | free_netdev(eth->netdev[i]); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1579 | } |
John Crispin | 7c78b4a | 2016-04-08 00:54:10 +0200 | [diff] [blame] | 1580 | cancel_work_sync(ð->pending_work); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1581 | |
| 1582 | return 0; |
| 1583 | } |
| 1584 | |
| 1585 | static int mtk_get_settings(struct net_device *dev, |
| 1586 | struct ethtool_cmd *cmd) |
| 1587 | { |
| 1588 | struct mtk_mac *mac = netdev_priv(dev); |
| 1589 | int err; |
| 1590 | |
| 1591 | err = phy_read_status(mac->phy_dev); |
| 1592 | if (err) |
| 1593 | return -ENODEV; |
| 1594 | |
| 1595 | return phy_ethtool_gset(mac->phy_dev, cmd); |
| 1596 | } |
| 1597 | |
| 1598 | static int mtk_set_settings(struct net_device *dev, |
| 1599 | struct ethtool_cmd *cmd) |
| 1600 | { |
| 1601 | struct mtk_mac *mac = netdev_priv(dev); |
| 1602 | |
| 1603 | if (cmd->phy_address != mac->phy_dev->mdio.addr) { |
| 1604 | mac->phy_dev = mdiobus_get_phy(mac->hw->mii_bus, |
| 1605 | cmd->phy_address); |
| 1606 | if (!mac->phy_dev) |
| 1607 | return -ENODEV; |
| 1608 | } |
| 1609 | |
| 1610 | return phy_ethtool_sset(mac->phy_dev, cmd); |
| 1611 | } |
| 1612 | |
| 1613 | static void mtk_get_drvinfo(struct net_device *dev, |
| 1614 | struct ethtool_drvinfo *info) |
| 1615 | { |
| 1616 | struct mtk_mac *mac = netdev_priv(dev); |
| 1617 | |
| 1618 | strlcpy(info->driver, mac->hw->dev->driver->name, sizeof(info->driver)); |
| 1619 | strlcpy(info->bus_info, dev_name(mac->hw->dev), sizeof(info->bus_info)); |
| 1620 | info->n_stats = ARRAY_SIZE(mtk_ethtool_stats); |
| 1621 | } |
| 1622 | |
| 1623 | static u32 mtk_get_msglevel(struct net_device *dev) |
| 1624 | { |
| 1625 | struct mtk_mac *mac = netdev_priv(dev); |
| 1626 | |
| 1627 | return mac->hw->msg_enable; |
| 1628 | } |
| 1629 | |
| 1630 | static void mtk_set_msglevel(struct net_device *dev, u32 value) |
| 1631 | { |
| 1632 | struct mtk_mac *mac = netdev_priv(dev); |
| 1633 | |
| 1634 | mac->hw->msg_enable = value; |
| 1635 | } |
| 1636 | |
| 1637 | static int mtk_nway_reset(struct net_device *dev) |
| 1638 | { |
| 1639 | struct mtk_mac *mac = netdev_priv(dev); |
| 1640 | |
| 1641 | return genphy_restart_aneg(mac->phy_dev); |
| 1642 | } |
| 1643 | |
| 1644 | static u32 mtk_get_link(struct net_device *dev) |
| 1645 | { |
| 1646 | struct mtk_mac *mac = netdev_priv(dev); |
| 1647 | int err; |
| 1648 | |
| 1649 | err = genphy_update_link(mac->phy_dev); |
| 1650 | if (err) |
| 1651 | return ethtool_op_get_link(dev); |
| 1652 | |
| 1653 | return mac->phy_dev->link; |
| 1654 | } |
| 1655 | |
| 1656 | static void mtk_get_strings(struct net_device *dev, u32 stringset, u8 *data) |
| 1657 | { |
| 1658 | int i; |
| 1659 | |
| 1660 | switch (stringset) { |
| 1661 | case ETH_SS_STATS: |
| 1662 | for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++) { |
| 1663 | memcpy(data, mtk_ethtool_stats[i].str, ETH_GSTRING_LEN); |
| 1664 | data += ETH_GSTRING_LEN; |
| 1665 | } |
| 1666 | break; |
| 1667 | } |
| 1668 | } |
| 1669 | |
| 1670 | static int mtk_get_sset_count(struct net_device *dev, int sset) |
| 1671 | { |
| 1672 | switch (sset) { |
| 1673 | case ETH_SS_STATS: |
| 1674 | return ARRAY_SIZE(mtk_ethtool_stats); |
| 1675 | default: |
| 1676 | return -EOPNOTSUPP; |
| 1677 | } |
| 1678 | } |
| 1679 | |
| 1680 | static void mtk_get_ethtool_stats(struct net_device *dev, |
| 1681 | struct ethtool_stats *stats, u64 *data) |
| 1682 | { |
| 1683 | struct mtk_mac *mac = netdev_priv(dev); |
| 1684 | struct mtk_hw_stats *hwstats = mac->hw_stats; |
| 1685 | u64 *data_src, *data_dst; |
| 1686 | unsigned int start; |
| 1687 | int i; |
| 1688 | |
| 1689 | if (netif_running(dev) && netif_device_present(dev)) { |
| 1690 | if (spin_trylock(&hwstats->stats_lock)) { |
| 1691 | mtk_stats_update_mac(mac); |
| 1692 | spin_unlock(&hwstats->stats_lock); |
| 1693 | } |
| 1694 | } |
| 1695 | |
| 1696 | do { |
Nelson Chang | bacfd11 | 2016-08-26 01:09:42 +0800 | [diff] [blame] | 1697 | data_src = (u64 *)hwstats; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1698 | data_dst = data; |
| 1699 | start = u64_stats_fetch_begin_irq(&hwstats->syncp); |
| 1700 | |
| 1701 | for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++) |
| 1702 | *data_dst++ = *(data_src + mtk_ethtool_stats[i].offset); |
| 1703 | } while (u64_stats_fetch_retry_irq(&hwstats->syncp, start)); |
| 1704 | } |
| 1705 | |
| 1706 | static struct ethtool_ops mtk_ethtool_ops = { |
| 1707 | .get_settings = mtk_get_settings, |
| 1708 | .set_settings = mtk_set_settings, |
| 1709 | .get_drvinfo = mtk_get_drvinfo, |
| 1710 | .get_msglevel = mtk_get_msglevel, |
| 1711 | .set_msglevel = mtk_set_msglevel, |
| 1712 | .nway_reset = mtk_nway_reset, |
| 1713 | .get_link = mtk_get_link, |
| 1714 | .get_strings = mtk_get_strings, |
| 1715 | .get_sset_count = mtk_get_sset_count, |
| 1716 | .get_ethtool_stats = mtk_get_ethtool_stats, |
| 1717 | }; |
| 1718 | |
| 1719 | static const struct net_device_ops mtk_netdev_ops = { |
| 1720 | .ndo_init = mtk_init, |
| 1721 | .ndo_uninit = mtk_uninit, |
| 1722 | .ndo_open = mtk_open, |
| 1723 | .ndo_stop = mtk_stop, |
| 1724 | .ndo_start_xmit = mtk_start_xmit, |
| 1725 | .ndo_set_mac_address = mtk_set_mac_address, |
| 1726 | .ndo_validate_addr = eth_validate_addr, |
| 1727 | .ndo_do_ioctl = mtk_do_ioctl, |
| 1728 | .ndo_change_mtu = eth_change_mtu, |
| 1729 | .ndo_tx_timeout = mtk_tx_timeout, |
| 1730 | .ndo_get_stats64 = mtk_get_stats64, |
| 1731 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1732 | .ndo_poll_controller = mtk_poll_controller, |
| 1733 | #endif |
| 1734 | }; |
| 1735 | |
| 1736 | static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np) |
| 1737 | { |
| 1738 | struct mtk_mac *mac; |
| 1739 | const __be32 *_id = of_get_property(np, "reg", NULL); |
| 1740 | int id, err; |
| 1741 | |
| 1742 | if (!_id) { |
| 1743 | dev_err(eth->dev, "missing mac id\n"); |
| 1744 | return -EINVAL; |
| 1745 | } |
| 1746 | |
| 1747 | id = be32_to_cpup(_id); |
| 1748 | if (id >= MTK_MAC_COUNT) { |
| 1749 | dev_err(eth->dev, "%d is not a valid mac id\n", id); |
| 1750 | return -EINVAL; |
| 1751 | } |
| 1752 | |
| 1753 | if (eth->netdev[id]) { |
| 1754 | dev_err(eth->dev, "duplicate mac id found: %d\n", id); |
| 1755 | return -EINVAL; |
| 1756 | } |
| 1757 | |
| 1758 | eth->netdev[id] = alloc_etherdev(sizeof(*mac)); |
| 1759 | if (!eth->netdev[id]) { |
| 1760 | dev_err(eth->dev, "alloc_etherdev failed\n"); |
| 1761 | return -ENOMEM; |
| 1762 | } |
| 1763 | mac = netdev_priv(eth->netdev[id]); |
| 1764 | eth->mac[id] = mac; |
| 1765 | mac->id = id; |
| 1766 | mac->hw = eth; |
| 1767 | mac->of_node = np; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1768 | |
| 1769 | mac->hw_stats = devm_kzalloc(eth->dev, |
| 1770 | sizeof(*mac->hw_stats), |
| 1771 | GFP_KERNEL); |
| 1772 | if (!mac->hw_stats) { |
| 1773 | dev_err(eth->dev, "failed to allocate counter memory\n"); |
| 1774 | err = -ENOMEM; |
| 1775 | goto free_netdev; |
| 1776 | } |
| 1777 | spin_lock_init(&mac->hw_stats->stats_lock); |
sean.wang@mediatek.com | d7005652 | 2016-08-13 19:16:18 +0800 | [diff] [blame] | 1778 | u64_stats_init(&mac->hw_stats->syncp); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1779 | mac->hw_stats->reg_offset = id * MTK_STAT_OFFSET; |
| 1780 | |
| 1781 | SET_NETDEV_DEV(eth->netdev[id], eth->dev); |
John Crispin | eaadf9f | 2016-06-10 13:28:05 +0200 | [diff] [blame] | 1782 | eth->netdev[id]->watchdog_timeo = 5 * HZ; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1783 | eth->netdev[id]->netdev_ops = &mtk_netdev_ops; |
| 1784 | eth->netdev[id]->base_addr = (unsigned long)eth->base; |
| 1785 | eth->netdev[id]->vlan_features = MTK_HW_FEATURES & |
| 1786 | ~(NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX); |
| 1787 | eth->netdev[id]->features |= MTK_HW_FEATURES; |
| 1788 | eth->netdev[id]->ethtool_ops = &mtk_ethtool_ops; |
| 1789 | |
| 1790 | err = register_netdev(eth->netdev[id]); |
| 1791 | if (err) { |
| 1792 | dev_err(eth->dev, "error bringing up device\n"); |
| 1793 | goto free_netdev; |
| 1794 | } |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1795 | eth->netdev[id]->irq = eth->irq[0]; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1796 | netif_info(eth, probe, eth->netdev[id], |
| 1797 | "mediatek frame engine at 0x%08lx, irq %d\n", |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1798 | eth->netdev[id]->base_addr, eth->irq[0]); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1799 | |
| 1800 | return 0; |
| 1801 | |
| 1802 | free_netdev: |
| 1803 | free_netdev(eth->netdev[id]); |
| 1804 | return err; |
| 1805 | } |
| 1806 | |
| 1807 | static int mtk_probe(struct platform_device *pdev) |
| 1808 | { |
| 1809 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1810 | struct device_node *mac_np; |
| 1811 | const struct of_device_id *match; |
| 1812 | struct mtk_soc_data *soc; |
| 1813 | struct mtk_eth *eth; |
| 1814 | int err; |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1815 | int i; |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1816 | |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1817 | match = of_match_device(of_mtk_match, &pdev->dev); |
| 1818 | soc = (struct mtk_soc_data *)match->data; |
| 1819 | |
| 1820 | eth = devm_kzalloc(&pdev->dev, sizeof(*eth), GFP_KERNEL); |
| 1821 | if (!eth) |
| 1822 | return -ENOMEM; |
| 1823 | |
| 1824 | eth->base = devm_ioremap_resource(&pdev->dev, res); |
Vladimir Zapolskiy | 621e49f | 2016-03-23 01:06:04 +0200 | [diff] [blame] | 1825 | if (IS_ERR(eth->base)) |
| 1826 | return PTR_ERR(eth->base); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1827 | |
| 1828 | spin_lock_init(ð->page_lock); |
John Crispin | 7bc9cce | 2016-06-29 13:38:10 +0200 | [diff] [blame] | 1829 | spin_lock_init(ð->irq_lock); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1830 | |
| 1831 | eth->ethsys = syscon_regmap_lookup_by_phandle(pdev->dev.of_node, |
| 1832 | "mediatek,ethsys"); |
| 1833 | if (IS_ERR(eth->ethsys)) { |
| 1834 | dev_err(&pdev->dev, "no ethsys regmap found\n"); |
| 1835 | return PTR_ERR(eth->ethsys); |
| 1836 | } |
| 1837 | |
| 1838 | eth->pctl = syscon_regmap_lookup_by_phandle(pdev->dev.of_node, |
| 1839 | "mediatek,pctl"); |
| 1840 | if (IS_ERR(eth->pctl)) { |
| 1841 | dev_err(&pdev->dev, "no pctl regmap found\n"); |
| 1842 | return PTR_ERR(eth->pctl); |
| 1843 | } |
| 1844 | |
| 1845 | eth->rstc = devm_reset_control_get(&pdev->dev, "eth"); |
| 1846 | if (IS_ERR(eth->rstc)) { |
| 1847 | dev_err(&pdev->dev, "no eth reset found\n"); |
| 1848 | return PTR_ERR(eth->rstc); |
| 1849 | } |
| 1850 | |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1851 | for (i = 0; i < 3; i++) { |
| 1852 | eth->irq[i] = platform_get_irq(pdev, i); |
| 1853 | if (eth->irq[i] < 0) { |
| 1854 | dev_err(&pdev->dev, "no IRQ%d resource found\n", i); |
| 1855 | return -ENXIO; |
| 1856 | } |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1857 | } |
| 1858 | |
| 1859 | eth->clk_ethif = devm_clk_get(&pdev->dev, "ethif"); |
| 1860 | eth->clk_esw = devm_clk_get(&pdev->dev, "esw"); |
| 1861 | eth->clk_gp1 = devm_clk_get(&pdev->dev, "gp1"); |
| 1862 | eth->clk_gp2 = devm_clk_get(&pdev->dev, "gp2"); |
| 1863 | if (IS_ERR(eth->clk_esw) || IS_ERR(eth->clk_gp1) || |
| 1864 | IS_ERR(eth->clk_gp2) || IS_ERR(eth->clk_ethif)) |
| 1865 | return -ENODEV; |
| 1866 | |
| 1867 | clk_prepare_enable(eth->clk_ethif); |
| 1868 | clk_prepare_enable(eth->clk_esw); |
| 1869 | clk_prepare_enable(eth->clk_gp1); |
| 1870 | clk_prepare_enable(eth->clk_gp2); |
| 1871 | |
| 1872 | eth->dev = &pdev->dev; |
| 1873 | eth->msg_enable = netif_msg_init(mtk_msg_level, MTK_DEFAULT_MSG_ENABLE); |
John Crispin | 7c78b4a | 2016-04-08 00:54:10 +0200 | [diff] [blame] | 1874 | INIT_WORK(ð->pending_work, mtk_pending_work); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1875 | |
| 1876 | err = mtk_hw_init(eth); |
| 1877 | if (err) |
| 1878 | return err; |
| 1879 | |
| 1880 | for_each_child_of_node(pdev->dev.of_node, mac_np) { |
| 1881 | if (!of_device_is_compatible(mac_np, |
| 1882 | "mediatek,eth-mac")) |
| 1883 | continue; |
| 1884 | |
| 1885 | if (!of_device_is_available(mac_np)) |
| 1886 | continue; |
| 1887 | |
| 1888 | err = mtk_add_mac(eth, mac_np); |
| 1889 | if (err) |
| 1890 | goto err_free_dev; |
| 1891 | } |
| 1892 | |
| 1893 | /* we run 2 devices on the same DMA ring so we need a dummy device |
| 1894 | * for NAPI to work |
| 1895 | */ |
| 1896 | init_dummy_netdev(ð->dummy_dev); |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1897 | netif_napi_add(ð->dummy_dev, ð->tx_napi, mtk_napi_tx, |
| 1898 | MTK_NAPI_WEIGHT); |
| 1899 | netif_napi_add(ð->dummy_dev, ð->rx_napi, mtk_napi_rx, |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1900 | MTK_NAPI_WEIGHT); |
| 1901 | |
| 1902 | platform_set_drvdata(pdev, eth); |
| 1903 | |
| 1904 | return 0; |
| 1905 | |
| 1906 | err_free_dev: |
| 1907 | mtk_cleanup(eth); |
| 1908 | return err; |
| 1909 | } |
| 1910 | |
| 1911 | static int mtk_remove(struct platform_device *pdev) |
| 1912 | { |
| 1913 | struct mtk_eth *eth = platform_get_drvdata(pdev); |
| 1914 | |
| 1915 | clk_disable_unprepare(eth->clk_ethif); |
| 1916 | clk_disable_unprepare(eth->clk_esw); |
| 1917 | clk_disable_unprepare(eth->clk_gp1); |
| 1918 | clk_disable_unprepare(eth->clk_gp2); |
| 1919 | |
John Crispin | 8067302 | 2016-06-29 13:38:11 +0200 | [diff] [blame] | 1920 | netif_napi_del(ð->tx_napi); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1921 | netif_napi_del(ð->rx_napi); |
| 1922 | mtk_cleanup(eth); |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1923 | |
| 1924 | return 0; |
| 1925 | } |
| 1926 | |
| 1927 | const struct of_device_id of_mtk_match[] = { |
| 1928 | { .compatible = "mediatek,mt7623-eth" }, |
| 1929 | {}, |
| 1930 | }; |
| 1931 | |
| 1932 | static struct platform_driver mtk_driver = { |
| 1933 | .probe = mtk_probe, |
| 1934 | .remove = mtk_remove, |
| 1935 | .driver = { |
| 1936 | .name = "mtk_soc_eth", |
John Crispin | 656e705 | 2016-03-08 11:29:55 +0100 | [diff] [blame] | 1937 | .of_match_table = of_mtk_match, |
| 1938 | }, |
| 1939 | }; |
| 1940 | |
| 1941 | module_platform_driver(mtk_driver); |
| 1942 | |
| 1943 | MODULE_LICENSE("GPL"); |
| 1944 | MODULE_AUTHOR("John Crispin <blogic@openwrt.org>"); |
| 1945 | MODULE_DESCRIPTION("Ethernet driver for MediaTek SoC"); |