blob: 3d7e0cb601b658e13f16af717b5d30101321cf4f [file] [log] [blame]
John Crispin656e7052016-03-08 11:29:55 +01001/* 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>
Sean Wang26a2ad82016-09-14 23:13:18 +080021#include <linux/pm_runtime.h>
John Crispin656e7052016-03-08 11:29:55 +010022#include <linux/if_vlan.h>
23#include <linux/reset.h>
24#include <linux/tcp.h>
25
26#include "mtk_eth_soc.h"
27
28static int mtk_msg_level = -1;
29module_param_named(msg_level, mtk_msg_level, int, 0);
30MODULE_PARM_DESC(msg_level, "Message level (-1=defaults,0=none,...,16=all)");
31
32#define MTK_ETHTOOL_STAT(x) { #x, \
33 offsetof(struct mtk_hw_stats, x) / sizeof(u64) }
34
35/* strings used by ethtool */
36static const struct mtk_ethtool_stats {
37 char str[ETH_GSTRING_LEN];
38 u32 offset;
39} mtk_ethtool_stats[] = {
40 MTK_ETHTOOL_STAT(tx_bytes),
41 MTK_ETHTOOL_STAT(tx_packets),
42 MTK_ETHTOOL_STAT(tx_skip),
43 MTK_ETHTOOL_STAT(tx_collisions),
44 MTK_ETHTOOL_STAT(rx_bytes),
45 MTK_ETHTOOL_STAT(rx_packets),
46 MTK_ETHTOOL_STAT(rx_overflow),
47 MTK_ETHTOOL_STAT(rx_fcs_errors),
48 MTK_ETHTOOL_STAT(rx_short_errors),
49 MTK_ETHTOOL_STAT(rx_long_errors),
50 MTK_ETHTOOL_STAT(rx_checksum_errors),
51 MTK_ETHTOOL_STAT(rx_flow_control_packets),
52};
53
Sean Wang549e5492016-09-01 10:47:28 +080054static const char * const mtk_clks_source_name[] = {
Sean Wangf430dea2016-09-22 10:33:55 +080055 "ethif", "esw", "gp1", "gp2", "trgpll"
Sean Wang549e5492016-09-01 10:47:28 +080056};
57
John Crispin656e7052016-03-08 11:29:55 +010058void mtk_w32(struct mtk_eth *eth, u32 val, unsigned reg)
59{
60 __raw_writel(val, eth->base + reg);
61}
62
63u32 mtk_r32(struct mtk_eth *eth, unsigned reg)
64{
65 return __raw_readl(eth->base + reg);
66}
67
68static int mtk_mdio_busy_wait(struct mtk_eth *eth)
69{
70 unsigned long t_start = jiffies;
71
72 while (1) {
73 if (!(mtk_r32(eth, MTK_PHY_IAC) & PHY_IAC_ACCESS))
74 return 0;
75 if (time_after(jiffies, t_start + PHY_IAC_TIMEOUT))
76 break;
77 usleep_range(10, 20);
78 }
79
80 dev_err(eth->dev, "mdio: MDIO timeout\n");
81 return -1;
82}
83
Wei Yongjun379672d2016-07-12 11:36:44 +000084static u32 _mtk_mdio_write(struct mtk_eth *eth, u32 phy_addr,
85 u32 phy_register, u32 write_data)
John Crispin656e7052016-03-08 11:29:55 +010086{
87 if (mtk_mdio_busy_wait(eth))
88 return -1;
89
90 write_data &= 0xffff;
91
92 mtk_w32(eth, PHY_IAC_ACCESS | PHY_IAC_START | PHY_IAC_WRITE |
93 (phy_register << PHY_IAC_REG_SHIFT) |
94 (phy_addr << PHY_IAC_ADDR_SHIFT) | write_data,
95 MTK_PHY_IAC);
96
97 if (mtk_mdio_busy_wait(eth))
98 return -1;
99
100 return 0;
101}
102
Wei Yongjun379672d2016-07-12 11:36:44 +0000103static u32 _mtk_mdio_read(struct mtk_eth *eth, int phy_addr, int phy_reg)
John Crispin656e7052016-03-08 11:29:55 +0100104{
105 u32 d;
106
107 if (mtk_mdio_busy_wait(eth))
108 return 0xffff;
109
110 mtk_w32(eth, PHY_IAC_ACCESS | PHY_IAC_START | PHY_IAC_READ |
111 (phy_reg << PHY_IAC_REG_SHIFT) |
112 (phy_addr << PHY_IAC_ADDR_SHIFT),
113 MTK_PHY_IAC);
114
115 if (mtk_mdio_busy_wait(eth))
116 return 0xffff;
117
118 d = mtk_r32(eth, MTK_PHY_IAC) & 0xffff;
119
120 return d;
121}
122
123static int mtk_mdio_write(struct mii_bus *bus, int phy_addr,
124 int phy_reg, u16 val)
125{
126 struct mtk_eth *eth = bus->priv;
127
128 return _mtk_mdio_write(eth, phy_addr, phy_reg, val);
129}
130
131static int mtk_mdio_read(struct mii_bus *bus, int phy_addr, int phy_reg)
132{
133 struct mtk_eth *eth = bus->priv;
134
135 return _mtk_mdio_read(eth, phy_addr, phy_reg);
136}
137
Sean Wangf430dea2016-09-22 10:33:55 +0800138static void mtk_gmac0_rgmii_adjust(struct mtk_eth *eth, int speed)
139{
140 u32 val;
141 int ret;
142
143 val = (speed == SPEED_1000) ?
144 INTF_MODE_RGMII_1000 : INTF_MODE_RGMII_10_100;
145 mtk_w32(eth, val, INTF_MODE);
146
147 regmap_update_bits(eth->ethsys, ETHSYS_CLKCFG0,
148 ETHSYS_TRGMII_CLK_SEL362_5,
149 ETHSYS_TRGMII_CLK_SEL362_5);
150
151 val = (speed == SPEED_1000) ? 250000000 : 500000000;
152 ret = clk_set_rate(eth->clks[MTK_CLK_TRGPLL], val);
153 if (ret)
154 dev_err(eth->dev, "Failed to set trgmii pll: %d\n", ret);
155
156 val = (speed == SPEED_1000) ?
157 RCK_CTRL_RGMII_1000 : RCK_CTRL_RGMII_10_100;
158 mtk_w32(eth, val, TRGMII_RCK_CTRL);
159
160 val = (speed == SPEED_1000) ?
161 TCK_CTRL_RGMII_1000 : TCK_CTRL_RGMII_10_100;
162 mtk_w32(eth, val, TRGMII_TCK_CTRL);
163}
164
John Crispin656e7052016-03-08 11:29:55 +0100165static void mtk_phy_link_adjust(struct net_device *dev)
166{
167 struct mtk_mac *mac = netdev_priv(dev);
John Crispin08ef55c2016-06-03 10:17:07 +0200168 u16 lcl_adv = 0, rmt_adv = 0;
169 u8 flowctrl;
John Crispin656e7052016-03-08 11:29:55 +0100170 u32 mcr = MAC_MCR_MAX_RX_1536 | MAC_MCR_IPG_CFG |
171 MAC_MCR_FORCE_MODE | MAC_MCR_TX_EN |
172 MAC_MCR_RX_EN | MAC_MCR_BACKOFF_EN |
173 MAC_MCR_BACKPR_EN;
174
Sean Wangdce6fa42016-09-14 23:13:21 +0800175 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
176 return;
177
Sean Wang2364c5c2016-09-22 16:33:35 +0800178 switch (dev->phydev->speed) {
John Crispin656e7052016-03-08 11:29:55 +0100179 case SPEED_1000:
180 mcr |= MAC_MCR_SPEED_1000;
181 break;
182 case SPEED_100:
183 mcr |= MAC_MCR_SPEED_100;
184 break;
185 };
186
Sean Wangf430dea2016-09-22 10:33:55 +0800187 if (mac->id == 0 && !mac->trgmii)
Sean Wang2364c5c2016-09-22 16:33:35 +0800188 mtk_gmac0_rgmii_adjust(mac->hw, dev->phydev->speed);
Sean Wangf430dea2016-09-22 10:33:55 +0800189
Sean Wang2364c5c2016-09-22 16:33:35 +0800190 if (dev->phydev->link)
John Crispin656e7052016-03-08 11:29:55 +0100191 mcr |= MAC_MCR_FORCE_LINK;
192
Sean Wang2364c5c2016-09-22 16:33:35 +0800193 if (dev->phydev->duplex) {
John Crispin656e7052016-03-08 11:29:55 +0100194 mcr |= MAC_MCR_FORCE_DPX;
195
Sean Wang2364c5c2016-09-22 16:33:35 +0800196 if (dev->phydev->pause)
John Crispin08ef55c2016-06-03 10:17:07 +0200197 rmt_adv = LPA_PAUSE_CAP;
Sean Wang2364c5c2016-09-22 16:33:35 +0800198 if (dev->phydev->asym_pause)
John Crispin08ef55c2016-06-03 10:17:07 +0200199 rmt_adv |= LPA_PAUSE_ASYM;
200
Sean Wang2364c5c2016-09-22 16:33:35 +0800201 if (dev->phydev->advertising & ADVERTISED_Pause)
John Crispin08ef55c2016-06-03 10:17:07 +0200202 lcl_adv |= ADVERTISE_PAUSE_CAP;
Sean Wang2364c5c2016-09-22 16:33:35 +0800203 if (dev->phydev->advertising & ADVERTISED_Asym_Pause)
John Crispin08ef55c2016-06-03 10:17:07 +0200204 lcl_adv |= ADVERTISE_PAUSE_ASYM;
205
206 flowctrl = mii_resolve_flowctrl_fdx(lcl_adv, rmt_adv);
207
208 if (flowctrl & FLOW_CTRL_TX)
209 mcr |= MAC_MCR_FORCE_TX_FC;
210 if (flowctrl & FLOW_CTRL_RX)
211 mcr |= MAC_MCR_FORCE_RX_FC;
212
213 netif_dbg(mac->hw, link, dev, "rx pause %s, tx pause %s\n",
214 flowctrl & FLOW_CTRL_RX ? "enabled" : "disabled",
215 flowctrl & FLOW_CTRL_TX ? "enabled" : "disabled");
216 }
John Crispin656e7052016-03-08 11:29:55 +0100217
218 mtk_w32(mac->hw, mcr, MTK_MAC_MCR(mac->id));
219
Sean Wang2364c5c2016-09-22 16:33:35 +0800220 if (dev->phydev->link)
John Crispin656e7052016-03-08 11:29:55 +0100221 netif_carrier_on(dev);
222 else
223 netif_carrier_off(dev);
224}
225
226static int mtk_phy_connect_node(struct mtk_eth *eth, struct mtk_mac *mac,
227 struct device_node *phy_node)
228{
John Crispin656e7052016-03-08 11:29:55 +0100229 struct phy_device *phydev;
Sean Wanga2b2a192016-09-22 16:36:15 +0800230 int phy_mode;
John Crispin656e7052016-03-08 11:29:55 +0100231
John Crispin656e7052016-03-08 11:29:55 +0100232 phy_mode = of_get_phy_mode(phy_node);
233 if (phy_mode < 0) {
234 dev_err(eth->dev, "incorrect phy-mode %d\n", phy_mode);
235 return -EINVAL;
236 }
237
238 phydev = of_phy_connect(eth->netdev[mac->id], phy_node,
239 mtk_phy_link_adjust, 0, phy_mode);
Dan Carpenter977bc202016-03-15 10:18:49 +0300240 if (!phydev) {
John Crispin656e7052016-03-08 11:29:55 +0100241 dev_err(eth->dev, "could not connect to PHY\n");
Dan Carpenter977bc202016-03-15 10:18:49 +0300242 return -ENODEV;
John Crispin656e7052016-03-08 11:29:55 +0100243 }
244
245 dev_info(eth->dev,
246 "connected mac %d to PHY at %s [uid=%08x, driver=%s]\n",
247 mac->id, phydev_name(phydev), phydev->phy_id,
248 phydev->drv->name);
249
John Crispin656e7052016-03-08 11:29:55 +0100250 return 0;
251}
252
Sean Wang2364c5c2016-09-22 16:33:35 +0800253static int mtk_phy_connect(struct net_device *dev)
John Crispin656e7052016-03-08 11:29:55 +0100254{
Sean Wang2364c5c2016-09-22 16:33:35 +0800255 struct mtk_mac *mac = netdev_priv(dev);
256 struct mtk_eth *eth;
John Crispin656e7052016-03-08 11:29:55 +0100257 struct device_node *np;
Sean Wang9ea4d312016-09-14 23:13:19 +0800258 u32 val;
John Crispin656e7052016-03-08 11:29:55 +0100259
Sean Wang2364c5c2016-09-22 16:33:35 +0800260 eth = mac->hw;
John Crispin656e7052016-03-08 11:29:55 +0100261 np = of_parse_phandle(mac->of_node, "phy-handle", 0);
John Crispin0c72c502016-06-03 10:17:08 +0200262 if (!np && of_phy_is_fixed_link(mac->of_node))
263 if (!of_phy_register_fixed_link(mac->of_node))
264 np = of_node_get(mac->of_node);
John Crispin656e7052016-03-08 11:29:55 +0100265 if (!np)
266 return -ENODEV;
267
268 switch (of_get_phy_mode(np)) {
Sean Wang572de602016-09-22 10:33:54 +0800269 case PHY_INTERFACE_MODE_TRGMII:
270 mac->trgmii = true;
John Crispin37920fc2016-06-03 10:17:09 +0200271 case PHY_INTERFACE_MODE_RGMII_TXID:
272 case PHY_INTERFACE_MODE_RGMII_RXID:
273 case PHY_INTERFACE_MODE_RGMII_ID:
John Crispin656e7052016-03-08 11:29:55 +0100274 case PHY_INTERFACE_MODE_RGMII:
Sean Wang9ea4d312016-09-14 23:13:19 +0800275 mac->ge_mode = 0;
John Crispin656e7052016-03-08 11:29:55 +0100276 break;
277 case PHY_INTERFACE_MODE_MII:
Sean Wang9ea4d312016-09-14 23:13:19 +0800278 mac->ge_mode = 1;
John Crispin656e7052016-03-08 11:29:55 +0100279 break;
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800280 case PHY_INTERFACE_MODE_REVMII:
Sean Wang9ea4d312016-09-14 23:13:19 +0800281 mac->ge_mode = 2;
John Crispin656e7052016-03-08 11:29:55 +0100282 break;
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800283 case PHY_INTERFACE_MODE_RMII:
284 if (!mac->id)
285 goto err_phy;
Sean Wang9ea4d312016-09-14 23:13:19 +0800286 mac->ge_mode = 3;
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800287 break;
John Crispin656e7052016-03-08 11:29:55 +0100288 default:
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800289 goto err_phy;
John Crispin656e7052016-03-08 11:29:55 +0100290 }
291
292 /* put the gmac into the right mode */
293 regmap_read(eth->ethsys, ETHSYS_SYSCFG0, &val);
294 val &= ~SYSCFG0_GE_MODE(SYSCFG0_GE_MASK, mac->id);
Sean Wang9ea4d312016-09-14 23:13:19 +0800295 val |= SYSCFG0_GE_MODE(mac->ge_mode, mac->id);
John Crispin656e7052016-03-08 11:29:55 +0100296 regmap_write(eth->ethsys, ETHSYS_SYSCFG0, val);
297
Sean Wang2364c5c2016-09-22 16:33:35 +0800298 /* couple phydev to net_device */
Sean Wangf6f7d9c2016-09-22 16:44:16 +0800299 if (mtk_phy_connect_node(eth, mac, np))
300 goto err_phy;
301
Sean Wang2364c5c2016-09-22 16:33:35 +0800302 dev->phydev->autoneg = AUTONEG_ENABLE;
303 dev->phydev->speed = 0;
304 dev->phydev->duplex = 0;
sean.wang@mediatek.comb2025c72016-08-16 13:55:14 +0800305
306 if (of_phy_is_fixed_link(mac->of_node))
Sean Wang2364c5c2016-09-22 16:33:35 +0800307 dev->phydev->supported |=
sean.wang@mediatek.comb2025c72016-08-16 13:55:14 +0800308 SUPPORTED_Pause | SUPPORTED_Asym_Pause;
309
Sean Wang2364c5c2016-09-22 16:33:35 +0800310 dev->phydev->supported &= PHY_GBIT_FEATURES | SUPPORTED_Pause |
John Crispin08ef55c2016-06-03 10:17:07 +0200311 SUPPORTED_Asym_Pause;
Sean Wang2364c5c2016-09-22 16:33:35 +0800312 dev->phydev->advertising = dev->phydev->supported |
John Crispin656e7052016-03-08 11:29:55 +0100313 ADVERTISED_Autoneg;
Sean Wang2364c5c2016-09-22 16:33:35 +0800314 phy_start_aneg(dev->phydev);
John Crispin656e7052016-03-08 11:29:55 +0100315
sean.wang@mediatek.come8c29932016-08-13 19:16:19 +0800316 of_node_put(np);
317
John Crispin656e7052016-03-08 11:29:55 +0100318 return 0;
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800319
320err_phy:
321 of_node_put(np);
Sean Wangf6f7d9c2016-09-22 16:44:16 +0800322 dev_err(eth->dev, "%s: invalid phy\n", __func__);
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800323 return -EINVAL;
John Crispin656e7052016-03-08 11:29:55 +0100324}
325
326static int mtk_mdio_init(struct mtk_eth *eth)
327{
328 struct device_node *mii_np;
Sean Wang1e515b72016-09-01 10:47:34 +0800329 int ret;
John Crispin656e7052016-03-08 11:29:55 +0100330
331 mii_np = of_get_child_by_name(eth->dev->of_node, "mdio-bus");
332 if (!mii_np) {
333 dev_err(eth->dev, "no %s child node found", "mdio-bus");
334 return -ENODEV;
335 }
336
337 if (!of_device_is_available(mii_np)) {
Sean Wangaa6e8a52016-09-01 10:47:35 +0800338 ret = -ENODEV;
John Crispin656e7052016-03-08 11:29:55 +0100339 goto err_put_node;
340 }
341
Sean Wang1e515b72016-09-01 10:47:34 +0800342 eth->mii_bus = devm_mdiobus_alloc(eth->dev);
John Crispin656e7052016-03-08 11:29:55 +0100343 if (!eth->mii_bus) {
Sean Wang1e515b72016-09-01 10:47:34 +0800344 ret = -ENOMEM;
John Crispin656e7052016-03-08 11:29:55 +0100345 goto err_put_node;
346 }
347
348 eth->mii_bus->name = "mdio";
349 eth->mii_bus->read = mtk_mdio_read;
350 eth->mii_bus->write = mtk_mdio_write;
351 eth->mii_bus->priv = eth;
352 eth->mii_bus->parent = eth->dev;
353
354 snprintf(eth->mii_bus->id, MII_BUS_ID_SIZE, "%s", mii_np->name);
Sean Wang1e515b72016-09-01 10:47:34 +0800355 ret = of_mdiobus_register(eth->mii_bus, mii_np);
John Crispin656e7052016-03-08 11:29:55 +0100356
357err_put_node:
358 of_node_put(mii_np);
Sean Wang1e515b72016-09-01 10:47:34 +0800359 return ret;
John Crispin656e7052016-03-08 11:29:55 +0100360}
361
362static void mtk_mdio_cleanup(struct mtk_eth *eth)
363{
364 if (!eth->mii_bus)
365 return;
366
367 mdiobus_unregister(eth->mii_bus);
John Crispin656e7052016-03-08 11:29:55 +0100368}
369
Nelson Changbacfd112016-08-26 01:09:42 +0800370static inline void mtk_irq_disable(struct mtk_eth *eth,
371 unsigned reg, u32 mask)
John Crispin656e7052016-03-08 11:29:55 +0100372{
John Crispin7bc9cce2016-06-29 13:38:10 +0200373 unsigned long flags;
John Crispin656e7052016-03-08 11:29:55 +0100374 u32 val;
375
John Crispin7bc9cce2016-06-29 13:38:10 +0200376 spin_lock_irqsave(&eth->irq_lock, flags);
Nelson Changbacfd112016-08-26 01:09:42 +0800377 val = mtk_r32(eth, reg);
378 mtk_w32(eth, val & ~mask, reg);
John Crispin7bc9cce2016-06-29 13:38:10 +0200379 spin_unlock_irqrestore(&eth->irq_lock, flags);
John Crispin656e7052016-03-08 11:29:55 +0100380}
381
Nelson Changbacfd112016-08-26 01:09:42 +0800382static inline void mtk_irq_enable(struct mtk_eth *eth,
383 unsigned reg, u32 mask)
John Crispin656e7052016-03-08 11:29:55 +0100384{
John Crispin7bc9cce2016-06-29 13:38:10 +0200385 unsigned long flags;
John Crispin656e7052016-03-08 11:29:55 +0100386 u32 val;
387
John Crispin7bc9cce2016-06-29 13:38:10 +0200388 spin_lock_irqsave(&eth->irq_lock, flags);
Nelson Changbacfd112016-08-26 01:09:42 +0800389 val = mtk_r32(eth, reg);
390 mtk_w32(eth, val | mask, reg);
John Crispin7bc9cce2016-06-29 13:38:10 +0200391 spin_unlock_irqrestore(&eth->irq_lock, flags);
John Crispin656e7052016-03-08 11:29:55 +0100392}
393
394static int mtk_set_mac_address(struct net_device *dev, void *p)
395{
396 int ret = eth_mac_addr(dev, p);
397 struct mtk_mac *mac = netdev_priv(dev);
398 const char *macaddr = dev->dev_addr;
John Crispin656e7052016-03-08 11:29:55 +0100399
400 if (ret)
401 return ret;
402
Sean Wangdce6fa42016-09-14 23:13:21 +0800403 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
404 return -EBUSY;
405
Sean Wange3e96522016-08-11 17:51:00 +0800406 spin_lock_bh(&mac->hw->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100407 mtk_w32(mac->hw, (macaddr[0] << 8) | macaddr[1],
408 MTK_GDMA_MAC_ADRH(mac->id));
409 mtk_w32(mac->hw, (macaddr[2] << 24) | (macaddr[3] << 16) |
410 (macaddr[4] << 8) | macaddr[5],
411 MTK_GDMA_MAC_ADRL(mac->id));
Sean Wange3e96522016-08-11 17:51:00 +0800412 spin_unlock_bh(&mac->hw->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100413
414 return 0;
415}
416
417void mtk_stats_update_mac(struct mtk_mac *mac)
418{
419 struct mtk_hw_stats *hw_stats = mac->hw_stats;
420 unsigned int base = MTK_GDM1_TX_GBCNT;
421 u64 stats;
422
423 base += hw_stats->reg_offset;
424
425 u64_stats_update_begin(&hw_stats->syncp);
426
427 hw_stats->rx_bytes += mtk_r32(mac->hw, base);
428 stats = mtk_r32(mac->hw, base + 0x04);
429 if (stats)
430 hw_stats->rx_bytes += (stats << 32);
431 hw_stats->rx_packets += mtk_r32(mac->hw, base + 0x08);
432 hw_stats->rx_overflow += mtk_r32(mac->hw, base + 0x10);
433 hw_stats->rx_fcs_errors += mtk_r32(mac->hw, base + 0x14);
434 hw_stats->rx_short_errors += mtk_r32(mac->hw, base + 0x18);
435 hw_stats->rx_long_errors += mtk_r32(mac->hw, base + 0x1c);
436 hw_stats->rx_checksum_errors += mtk_r32(mac->hw, base + 0x20);
437 hw_stats->rx_flow_control_packets +=
438 mtk_r32(mac->hw, base + 0x24);
439 hw_stats->tx_skip += mtk_r32(mac->hw, base + 0x28);
440 hw_stats->tx_collisions += mtk_r32(mac->hw, base + 0x2c);
441 hw_stats->tx_bytes += mtk_r32(mac->hw, base + 0x30);
442 stats = mtk_r32(mac->hw, base + 0x34);
443 if (stats)
444 hw_stats->tx_bytes += (stats << 32);
445 hw_stats->tx_packets += mtk_r32(mac->hw, base + 0x38);
446 u64_stats_update_end(&hw_stats->syncp);
447}
448
449static void mtk_stats_update(struct mtk_eth *eth)
450{
451 int i;
452
453 for (i = 0; i < MTK_MAC_COUNT; i++) {
454 if (!eth->mac[i] || !eth->mac[i]->hw_stats)
455 continue;
456 if (spin_trylock(&eth->mac[i]->hw_stats->stats_lock)) {
457 mtk_stats_update_mac(eth->mac[i]);
458 spin_unlock(&eth->mac[i]->hw_stats->stats_lock);
459 }
460 }
461}
462
463static struct rtnl_link_stats64 *mtk_get_stats64(struct net_device *dev,
464 struct rtnl_link_stats64 *storage)
465{
466 struct mtk_mac *mac = netdev_priv(dev);
467 struct mtk_hw_stats *hw_stats = mac->hw_stats;
468 unsigned int start;
469
470 if (netif_running(dev) && netif_device_present(dev)) {
471 if (spin_trylock(&hw_stats->stats_lock)) {
472 mtk_stats_update_mac(mac);
473 spin_unlock(&hw_stats->stats_lock);
474 }
475 }
476
477 do {
478 start = u64_stats_fetch_begin_irq(&hw_stats->syncp);
479 storage->rx_packets = hw_stats->rx_packets;
480 storage->tx_packets = hw_stats->tx_packets;
481 storage->rx_bytes = hw_stats->rx_bytes;
482 storage->tx_bytes = hw_stats->tx_bytes;
483 storage->collisions = hw_stats->tx_collisions;
484 storage->rx_length_errors = hw_stats->rx_short_errors +
485 hw_stats->rx_long_errors;
486 storage->rx_over_errors = hw_stats->rx_overflow;
487 storage->rx_crc_errors = hw_stats->rx_fcs_errors;
488 storage->rx_errors = hw_stats->rx_checksum_errors;
489 storage->tx_aborted_errors = hw_stats->tx_skip;
490 } while (u64_stats_fetch_retry_irq(&hw_stats->syncp, start));
491
492 storage->tx_errors = dev->stats.tx_errors;
493 storage->rx_dropped = dev->stats.rx_dropped;
494 storage->tx_dropped = dev->stats.tx_dropped;
495
496 return storage;
497}
498
499static inline int mtk_max_frag_size(int mtu)
500{
501 /* make sure buf_size will be at least MTK_MAX_RX_LENGTH */
502 if (mtu + MTK_RX_ETH_HLEN < MTK_MAX_RX_LENGTH)
503 mtu = MTK_MAX_RX_LENGTH - MTK_RX_ETH_HLEN;
504
505 return SKB_DATA_ALIGN(MTK_RX_HLEN + mtu) +
506 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
507}
508
509static inline int mtk_max_buf_size(int frag_size)
510{
511 int buf_size = frag_size - NET_SKB_PAD - NET_IP_ALIGN -
512 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
513
514 WARN_ON(buf_size < MTK_MAX_RX_LENGTH);
515
516 return buf_size;
517}
518
519static inline void mtk_rx_get_desc(struct mtk_rx_dma *rxd,
520 struct mtk_rx_dma *dma_rxd)
521{
522 rxd->rxd1 = READ_ONCE(dma_rxd->rxd1);
523 rxd->rxd2 = READ_ONCE(dma_rxd->rxd2);
524 rxd->rxd3 = READ_ONCE(dma_rxd->rxd3);
525 rxd->rxd4 = READ_ONCE(dma_rxd->rxd4);
526}
527
528/* the qdma core needs scratch memory to be setup */
529static int mtk_init_fq_dma(struct mtk_eth *eth)
530{
John Crispin605e4fe2016-06-10 13:27:59 +0200531 dma_addr_t phy_ring_tail;
John Crispin656e7052016-03-08 11:29:55 +0100532 int cnt = MTK_DMA_SIZE;
533 dma_addr_t dma_addr;
534 int i;
535
536 eth->scratch_ring = dma_alloc_coherent(eth->dev,
537 cnt * sizeof(struct mtk_tx_dma),
John Crispin605e4fe2016-06-10 13:27:59 +0200538 &eth->phy_scratch_ring,
John Crispin656e7052016-03-08 11:29:55 +0100539 GFP_ATOMIC | __GFP_ZERO);
540 if (unlikely(!eth->scratch_ring))
541 return -ENOMEM;
542
543 eth->scratch_head = kcalloc(cnt, MTK_QDMA_PAGE_SIZE,
544 GFP_KERNEL);
John Crispin562c5a72016-06-10 13:27:58 +0200545 if (unlikely(!eth->scratch_head))
546 return -ENOMEM;
547
John Crispin656e7052016-03-08 11:29:55 +0100548 dma_addr = dma_map_single(eth->dev,
549 eth->scratch_head, cnt * MTK_QDMA_PAGE_SIZE,
550 DMA_FROM_DEVICE);
551 if (unlikely(dma_mapping_error(eth->dev, dma_addr)))
552 return -ENOMEM;
553
554 memset(eth->scratch_ring, 0x0, sizeof(struct mtk_tx_dma) * cnt);
John Crispin605e4fe2016-06-10 13:27:59 +0200555 phy_ring_tail = eth->phy_scratch_ring +
John Crispin656e7052016-03-08 11:29:55 +0100556 (sizeof(struct mtk_tx_dma) * (cnt - 1));
557
558 for (i = 0; i < cnt; i++) {
559 eth->scratch_ring[i].txd1 =
560 (dma_addr + (i * MTK_QDMA_PAGE_SIZE));
561 if (i < cnt - 1)
John Crispin605e4fe2016-06-10 13:27:59 +0200562 eth->scratch_ring[i].txd2 = (eth->phy_scratch_ring +
John Crispin656e7052016-03-08 11:29:55 +0100563 ((i + 1) * sizeof(struct mtk_tx_dma)));
564 eth->scratch_ring[i].txd3 = TX_DMA_SDL(MTK_QDMA_PAGE_SIZE);
565 }
566
John Crispin605e4fe2016-06-10 13:27:59 +0200567 mtk_w32(eth, eth->phy_scratch_ring, MTK_QDMA_FQ_HEAD);
John Crispin656e7052016-03-08 11:29:55 +0100568 mtk_w32(eth, phy_ring_tail, MTK_QDMA_FQ_TAIL);
569 mtk_w32(eth, (cnt << 16) | cnt, MTK_QDMA_FQ_CNT);
570 mtk_w32(eth, MTK_QDMA_PAGE_SIZE << 16, MTK_QDMA_FQ_BLEN);
571
572 return 0;
573}
574
575static inline void *mtk_qdma_phys_to_virt(struct mtk_tx_ring *ring, u32 desc)
576{
577 void *ret = ring->dma;
578
579 return ret + (desc - ring->phys);
580}
581
582static inline struct mtk_tx_buf *mtk_desc_to_tx_buf(struct mtk_tx_ring *ring,
583 struct mtk_tx_dma *txd)
584{
585 int idx = txd - ring->dma;
586
587 return &ring->buf[idx];
588}
589
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800590static void mtk_tx_unmap(struct mtk_eth *eth, struct mtk_tx_buf *tx_buf)
John Crispin656e7052016-03-08 11:29:55 +0100591{
592 if (tx_buf->flags & MTK_TX_FLAGS_SINGLE0) {
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800593 dma_unmap_single(eth->dev,
John Crispin656e7052016-03-08 11:29:55 +0100594 dma_unmap_addr(tx_buf, dma_addr0),
595 dma_unmap_len(tx_buf, dma_len0),
596 DMA_TO_DEVICE);
597 } else if (tx_buf->flags & MTK_TX_FLAGS_PAGE0) {
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800598 dma_unmap_page(eth->dev,
John Crispin656e7052016-03-08 11:29:55 +0100599 dma_unmap_addr(tx_buf, dma_addr0),
600 dma_unmap_len(tx_buf, dma_len0),
601 DMA_TO_DEVICE);
602 }
603 tx_buf->flags = 0;
604 if (tx_buf->skb &&
605 (tx_buf->skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC))
606 dev_kfree_skb_any(tx_buf->skb);
607 tx_buf->skb = NULL;
608}
609
610static int mtk_tx_map(struct sk_buff *skb, struct net_device *dev,
611 int tx_num, struct mtk_tx_ring *ring, bool gso)
612{
613 struct mtk_mac *mac = netdev_priv(dev);
614 struct mtk_eth *eth = mac->hw;
615 struct mtk_tx_dma *itxd, *txd;
616 struct mtk_tx_buf *tx_buf;
John Crispin656e7052016-03-08 11:29:55 +0100617 dma_addr_t mapped_addr;
618 unsigned int nr_frags;
619 int i, n_desc = 1;
Sean Wangc6f1dc42016-09-01 10:47:27 +0800620 u32 txd4 = 0, fport;
John Crispin656e7052016-03-08 11:29:55 +0100621
622 itxd = ring->next_free;
623 if (itxd == ring->last_free)
624 return -ENOMEM;
625
626 /* set the forward port */
Sean Wangc6f1dc42016-09-01 10:47:27 +0800627 fport = (mac->id + 1) << TX_DMA_FPORT_SHIFT;
628 txd4 |= fport;
John Crispin656e7052016-03-08 11:29:55 +0100629
630 tx_buf = mtk_desc_to_tx_buf(ring, itxd);
631 memset(tx_buf, 0, sizeof(*tx_buf));
632
633 if (gso)
634 txd4 |= TX_DMA_TSO;
635
636 /* TX Checksum offload */
637 if (skb->ip_summed == CHECKSUM_PARTIAL)
638 txd4 |= TX_DMA_CHKSUM;
639
640 /* VLAN header offload */
641 if (skb_vlan_tag_present(skb))
642 txd4 |= TX_DMA_INS_VLAN | skb_vlan_tag_get(skb);
643
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800644 mapped_addr = dma_map_single(eth->dev, skb->data,
John Crispin656e7052016-03-08 11:29:55 +0100645 skb_headlen(skb), DMA_TO_DEVICE);
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800646 if (unlikely(dma_mapping_error(eth->dev, mapped_addr)))
John Crispin656e7052016-03-08 11:29:55 +0100647 return -ENOMEM;
648
John Crispin656e7052016-03-08 11:29:55 +0100649 WRITE_ONCE(itxd->txd1, mapped_addr);
650 tx_buf->flags |= MTK_TX_FLAGS_SINGLE0;
651 dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr);
652 dma_unmap_len_set(tx_buf, dma_len0, skb_headlen(skb));
653
654 /* TX SG offload */
655 txd = itxd;
656 nr_frags = skb_shinfo(skb)->nr_frags;
657 for (i = 0; i < nr_frags; i++) {
658 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
659 unsigned int offset = 0;
660 int frag_size = skb_frag_size(frag);
661
662 while (frag_size) {
663 bool last_frag = false;
664 unsigned int frag_map_size;
665
666 txd = mtk_qdma_phys_to_virt(ring, txd->txd2);
667 if (txd == ring->last_free)
668 goto err_dma;
669
670 n_desc++;
671 frag_map_size = min(frag_size, MTK_TX_DMA_BUF_LEN);
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800672 mapped_addr = skb_frag_dma_map(eth->dev, frag, offset,
John Crispin656e7052016-03-08 11:29:55 +0100673 frag_map_size,
674 DMA_TO_DEVICE);
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800675 if (unlikely(dma_mapping_error(eth->dev, mapped_addr)))
John Crispin656e7052016-03-08 11:29:55 +0100676 goto err_dma;
677
678 if (i == nr_frags - 1 &&
679 (frag_size - frag_map_size) == 0)
680 last_frag = true;
681
682 WRITE_ONCE(txd->txd1, mapped_addr);
683 WRITE_ONCE(txd->txd3, (TX_DMA_SWC |
684 TX_DMA_PLEN0(frag_map_size) |
John Crispin369f0452016-04-08 00:54:11 +0200685 last_frag * TX_DMA_LS0));
Sean Wangc6f1dc42016-09-01 10:47:27 +0800686 WRITE_ONCE(txd->txd4, fport);
John Crispin656e7052016-03-08 11:29:55 +0100687
688 tx_buf->skb = (struct sk_buff *)MTK_DMA_DUMMY_DESC;
689 tx_buf = mtk_desc_to_tx_buf(ring, txd);
690 memset(tx_buf, 0, sizeof(*tx_buf));
691
692 tx_buf->flags |= MTK_TX_FLAGS_PAGE0;
693 dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr);
694 dma_unmap_len_set(tx_buf, dma_len0, frag_map_size);
695 frag_size -= frag_map_size;
696 offset += frag_map_size;
697 }
698 }
699
700 /* store skb to cleanup */
701 tx_buf->skb = skb;
702
703 WRITE_ONCE(itxd->txd4, txd4);
704 WRITE_ONCE(itxd->txd3, (TX_DMA_SWC | TX_DMA_PLEN0(skb_headlen(skb)) |
705 (!nr_frags * TX_DMA_LS0)));
706
John Crispin656e7052016-03-08 11:29:55 +0100707 netdev_sent_queue(dev, skb->len);
708 skb_tx_timestamp(skb);
709
710 ring->next_free = mtk_qdma_phys_to_virt(ring, txd->txd2);
711 atomic_sub(n_desc, &ring->free_count);
712
713 /* make sure that all changes to the dma ring are flushed before we
714 * continue
715 */
716 wmb();
717
718 if (netif_xmit_stopped(netdev_get_tx_queue(dev, 0)) || !skb->xmit_more)
719 mtk_w32(eth, txd->txd2, MTK_QTX_CTX_PTR);
720
721 return 0;
722
723err_dma:
724 do {
John Crispin2fae7232016-06-10 13:28:00 +0200725 tx_buf = mtk_desc_to_tx_buf(ring, itxd);
John Crispin656e7052016-03-08 11:29:55 +0100726
727 /* unmap dma */
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800728 mtk_tx_unmap(eth, tx_buf);
John Crispin656e7052016-03-08 11:29:55 +0100729
730 itxd->txd3 = TX_DMA_LS0 | TX_DMA_OWNER_CPU;
731 itxd = mtk_qdma_phys_to_virt(ring, itxd->txd2);
732 } while (itxd != txd);
733
734 return -ENOMEM;
735}
736
737static inline int mtk_cal_txd_req(struct sk_buff *skb)
738{
739 int i, nfrags;
740 struct skb_frag_struct *frag;
741
742 nfrags = 1;
743 if (skb_is_gso(skb)) {
744 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
745 frag = &skb_shinfo(skb)->frags[i];
746 nfrags += DIV_ROUND_UP(frag->size, MTK_TX_DMA_BUF_LEN);
747 }
748 } else {
749 nfrags += skb_shinfo(skb)->nr_frags;
750 }
751
John Crispinbeeb4ca2016-04-08 00:54:05 +0200752 return nfrags;
John Crispin656e7052016-03-08 11:29:55 +0100753}
754
John Crispinad3cba92016-06-10 13:28:07 +0200755static int mtk_queue_stopped(struct mtk_eth *eth)
756{
757 int i;
758
759 for (i = 0; i < MTK_MAC_COUNT; i++) {
760 if (!eth->netdev[i])
761 continue;
762 if (netif_queue_stopped(eth->netdev[i]))
763 return 1;
764 }
765
766 return 0;
767}
768
John Crispin13c822f2016-04-08 00:54:07 +0200769static void mtk_wake_queue(struct mtk_eth *eth)
770{
771 int i;
772
773 for (i = 0; i < MTK_MAC_COUNT; i++) {
774 if (!eth->netdev[i])
775 continue;
776 netif_wake_queue(eth->netdev[i]);
777 }
778}
779
780static void mtk_stop_queue(struct mtk_eth *eth)
781{
782 int i;
783
784 for (i = 0; i < MTK_MAC_COUNT; i++) {
785 if (!eth->netdev[i])
786 continue;
787 netif_stop_queue(eth->netdev[i]);
788 }
789}
790
John Crispin656e7052016-03-08 11:29:55 +0100791static int mtk_start_xmit(struct sk_buff *skb, struct net_device *dev)
792{
793 struct mtk_mac *mac = netdev_priv(dev);
794 struct mtk_eth *eth = mac->hw;
795 struct mtk_tx_ring *ring = &eth->tx_ring;
796 struct net_device_stats *stats = &dev->stats;
797 bool gso = false;
798 int tx_num;
799
John Crispin34c2e4c2016-04-08 00:54:08 +0200800 /* normally we can rely on the stack not calling this more than once,
801 * however we have 2 queues running on the same ring so we need to lock
802 * the ring access
803 */
Sean Wange3e96522016-08-11 17:51:00 +0800804 spin_lock(&eth->page_lock);
John Crispin34c2e4c2016-04-08 00:54:08 +0200805
Sean Wangdce6fa42016-09-14 23:13:21 +0800806 if (unlikely(test_bit(MTK_RESETTING, &eth->state)))
807 goto drop;
808
John Crispin656e7052016-03-08 11:29:55 +0100809 tx_num = mtk_cal_txd_req(skb);
810 if (unlikely(atomic_read(&ring->free_count) <= tx_num)) {
John Crispin13c822f2016-04-08 00:54:07 +0200811 mtk_stop_queue(eth);
John Crispin656e7052016-03-08 11:29:55 +0100812 netif_err(eth, tx_queued, dev,
813 "Tx Ring full when queue awake!\n");
Sean Wange3e96522016-08-11 17:51:00 +0800814 spin_unlock(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100815 return NETDEV_TX_BUSY;
816 }
817
818 /* TSO: fill MSS info in tcp checksum field */
819 if (skb_is_gso(skb)) {
820 if (skb_cow_head(skb, 0)) {
821 netif_warn(eth, tx_err, dev,
822 "GSO expand head fail.\n");
823 goto drop;
824 }
825
826 if (skb_shinfo(skb)->gso_type &
827 (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)) {
828 gso = true;
829 tcp_hdr(skb)->check = htons(skb_shinfo(skb)->gso_size);
830 }
831 }
832
833 if (mtk_tx_map(skb, dev, tx_num, ring, gso) < 0)
834 goto drop;
835
John Crispin82c65442016-06-10 13:28:08 +0200836 if (unlikely(atomic_read(&ring->free_count) <= ring->thresh))
John Crispin13c822f2016-04-08 00:54:07 +0200837 mtk_stop_queue(eth);
John Crispin82c65442016-06-10 13:28:08 +0200838
Sean Wange3e96522016-08-11 17:51:00 +0800839 spin_unlock(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100840
841 return NETDEV_TX_OK;
842
843drop:
Sean Wange3e96522016-08-11 17:51:00 +0800844 spin_unlock(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100845 stats->tx_dropped++;
846 dev_kfree_skb(skb);
847 return NETDEV_TX_OK;
848}
849
Nelson Changee406812016-09-17 23:50:55 +0800850static struct mtk_rx_ring *mtk_get_rx_ring(struct mtk_eth *eth)
851{
852 int i;
853 struct mtk_rx_ring *ring;
854 int idx;
855
856 if (!eth->hwlro)
857 return &eth->rx_ring[0];
858
859 for (i = 0; i < MTK_MAX_RX_RING_NUM; i++) {
860 ring = &eth->rx_ring[i];
861 idx = NEXT_RX_DESP_IDX(ring->calc_idx, ring->dma_size);
862 if (ring->dma[idx].rxd2 & RX_DMA_DONE) {
863 ring->calc_idx_update = true;
864 return ring;
865 }
866 }
867
868 return NULL;
869}
870
871static void mtk_update_rx_cpu_idx(struct mtk_eth *eth)
872{
873 struct mtk_rx_ring *ring;
874 int i;
875
876 if (!eth->hwlro) {
877 ring = &eth->rx_ring[0];
878 mtk_w32(eth, ring->calc_idx, ring->crx_idx_reg);
879 } else {
880 for (i = 0; i < MTK_MAX_RX_RING_NUM; i++) {
881 ring = &eth->rx_ring[i];
882 if (ring->calc_idx_update) {
883 ring->calc_idx_update = false;
884 mtk_w32(eth, ring->calc_idx, ring->crx_idx_reg);
885 }
886 }
887 }
888}
889
John Crispin656e7052016-03-08 11:29:55 +0100890static int mtk_poll_rx(struct napi_struct *napi, int budget,
John Crispineece71e2016-06-29 13:38:09 +0200891 struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +0100892{
Nelson Changee406812016-09-17 23:50:55 +0800893 struct mtk_rx_ring *ring;
894 int idx;
John Crispin656e7052016-03-08 11:29:55 +0100895 struct sk_buff *skb;
896 u8 *data, *new_data;
897 struct mtk_rx_dma *rxd, trxd;
898 int done = 0;
899
900 while (done < budget) {
901 struct net_device *netdev;
902 unsigned int pktlen;
903 dma_addr_t dma_addr;
904 int mac = 0;
905
Nelson Changee406812016-09-17 23:50:55 +0800906 ring = mtk_get_rx_ring(eth);
907 if (unlikely(!ring))
908 goto rx_done;
909
910 idx = NEXT_RX_DESP_IDX(ring->calc_idx, ring->dma_size);
John Crispin656e7052016-03-08 11:29:55 +0100911 rxd = &ring->dma[idx];
912 data = ring->data[idx];
913
914 mtk_rx_get_desc(&trxd, rxd);
915 if (!(trxd.rxd2 & RX_DMA_DONE))
916 break;
917
918 /* find out which mac the packet come from. values start at 1 */
919 mac = (trxd.rxd4 >> RX_DMA_FPORT_SHIFT) &
920 RX_DMA_FPORT_MASK;
921 mac--;
922
923 netdev = eth->netdev[mac];
924
Sean Wangdce6fa42016-09-14 23:13:21 +0800925 if (unlikely(test_bit(MTK_RESETTING, &eth->state)))
926 goto release_desc;
927
John Crispin656e7052016-03-08 11:29:55 +0100928 /* alloc new buffer */
929 new_data = napi_alloc_frag(ring->frag_size);
930 if (unlikely(!new_data)) {
931 netdev->stats.rx_dropped++;
932 goto release_desc;
933 }
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800934 dma_addr = dma_map_single(eth->dev,
John Crispin656e7052016-03-08 11:29:55 +0100935 new_data + NET_SKB_PAD,
936 ring->buf_size,
937 DMA_FROM_DEVICE);
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800938 if (unlikely(dma_mapping_error(eth->dev, dma_addr))) {
John Crispin656e7052016-03-08 11:29:55 +0100939 skb_free_frag(new_data);
John Crispin94321a92016-06-10 13:28:01 +0200940 netdev->stats.rx_dropped++;
John Crispin656e7052016-03-08 11:29:55 +0100941 goto release_desc;
942 }
943
944 /* receive data */
945 skb = build_skb(data, ring->frag_size);
946 if (unlikely(!skb)) {
Sean Wang1b430792016-09-01 10:47:29 +0800947 skb_free_frag(new_data);
John Crispin94321a92016-06-10 13:28:01 +0200948 netdev->stats.rx_dropped++;
John Crispin656e7052016-03-08 11:29:55 +0100949 goto release_desc;
950 }
951 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
952
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800953 dma_unmap_single(eth->dev, trxd.rxd1,
John Crispin656e7052016-03-08 11:29:55 +0100954 ring->buf_size, DMA_FROM_DEVICE);
955 pktlen = RX_DMA_GET_PLEN0(trxd.rxd2);
956 skb->dev = netdev;
957 skb_put(skb, pktlen);
958 if (trxd.rxd4 & RX_DMA_L4_VALID)
959 skb->ip_summed = CHECKSUM_UNNECESSARY;
960 else
961 skb_checksum_none_assert(skb);
962 skb->protocol = eth_type_trans(skb, netdev);
963
964 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX &&
965 RX_DMA_VID(trxd.rxd3))
966 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
967 RX_DMA_VID(trxd.rxd3));
968 napi_gro_receive(napi, skb);
969
970 ring->data[idx] = new_data;
971 rxd->rxd1 = (unsigned int)dma_addr;
972
973release_desc:
974 rxd->rxd2 = RX_DMA_PLEN0(ring->buf_size);
975
976 ring->calc_idx = idx;
Sean Wang635372a2016-09-03 17:59:26 +0800977
John Crispin656e7052016-03-08 11:29:55 +0100978 done++;
979 }
980
Nelson Changee406812016-09-17 23:50:55 +0800981rx_done:
Sean Wang41156ce2016-09-03 17:59:27 +0800982 if (done) {
983 /* make sure that all changes to the dma ring are flushed before
984 * we continue
985 */
986 wmb();
Nelson Changee406812016-09-17 23:50:55 +0800987 mtk_update_rx_cpu_idx(eth);
Sean Wang41156ce2016-09-03 17:59:27 +0800988 }
John Crispin656e7052016-03-08 11:29:55 +0100989
990 return done;
991}
992
John Crispin80673022016-06-29 13:38:11 +0200993static int mtk_poll_tx(struct mtk_eth *eth, int budget)
John Crispin656e7052016-03-08 11:29:55 +0100994{
995 struct mtk_tx_ring *ring = &eth->tx_ring;
996 struct mtk_tx_dma *desc;
997 struct sk_buff *skb;
998 struct mtk_tx_buf *tx_buf;
John Crispin80673022016-06-29 13:38:11 +0200999 unsigned int done[MTK_MAX_DEVS];
John Crispin656e7052016-03-08 11:29:55 +01001000 unsigned int bytes[MTK_MAX_DEVS];
1001 u32 cpu, dma;
1002 static int condition;
John Crispin80673022016-06-29 13:38:11 +02001003 int total = 0, i;
John Crispin656e7052016-03-08 11:29:55 +01001004
1005 memset(done, 0, sizeof(done));
1006 memset(bytes, 0, sizeof(bytes));
1007
1008 cpu = mtk_r32(eth, MTK_QTX_CRX_PTR);
1009 dma = mtk_r32(eth, MTK_QTX_DRX_PTR);
1010
1011 desc = mtk_qdma_phys_to_virt(ring, cpu);
1012
1013 while ((cpu != dma) && budget) {
1014 u32 next_cpu = desc->txd2;
1015 int mac;
1016
1017 desc = mtk_qdma_phys_to_virt(ring, desc->txd2);
1018 if ((desc->txd3 & TX_DMA_OWNER_CPU) == 0)
1019 break;
1020
1021 mac = (desc->txd4 >> TX_DMA_FPORT_SHIFT) &
1022 TX_DMA_FPORT_MASK;
1023 mac--;
1024
1025 tx_buf = mtk_desc_to_tx_buf(ring, desc);
1026 skb = tx_buf->skb;
1027 if (!skb) {
1028 condition = 1;
1029 break;
1030 }
1031
1032 if (skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC) {
1033 bytes[mac] += skb->len;
1034 done[mac]++;
1035 budget--;
1036 }
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +08001037 mtk_tx_unmap(eth, tx_buf);
John Crispin656e7052016-03-08 11:29:55 +01001038
John Crispin656e7052016-03-08 11:29:55 +01001039 ring->last_free = desc;
1040 atomic_inc(&ring->free_count);
1041
1042 cpu = next_cpu;
1043 }
1044
1045 mtk_w32(eth, cpu, MTK_QTX_CRX_PTR);
1046
1047 for (i = 0; i < MTK_MAC_COUNT; i++) {
1048 if (!eth->netdev[i] || !done[i])
1049 continue;
1050 netdev_completed_queue(eth->netdev[i], done[i], bytes[i]);
1051 total += done[i];
1052 }
1053
John Crispinad3cba92016-06-10 13:28:07 +02001054 if (mtk_queue_stopped(eth) &&
1055 (atomic_read(&ring->free_count) > ring->thresh))
John Crispin13c822f2016-04-08 00:54:07 +02001056 mtk_wake_queue(eth);
John Crispin656e7052016-03-08 11:29:55 +01001057
1058 return total;
1059}
1060
John Crispin80673022016-06-29 13:38:11 +02001061static void mtk_handle_status_irq(struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +01001062{
John Crispin80673022016-06-29 13:38:11 +02001063 u32 status2 = mtk_r32(eth, MTK_INT_STATUS2);
John Crispin656e7052016-03-08 11:29:55 +01001064
John Crispineece71e2016-06-29 13:38:09 +02001065 if (unlikely(status2 & (MTK_GDM1_AF | MTK_GDM2_AF))) {
John Crispin656e7052016-03-08 11:29:55 +01001066 mtk_stats_update(eth);
John Crispineece71e2016-06-29 13:38:09 +02001067 mtk_w32(eth, (MTK_GDM1_AF | MTK_GDM2_AF),
1068 MTK_INT_STATUS2);
John Crispin656e7052016-03-08 11:29:55 +01001069 }
John Crispin80673022016-06-29 13:38:11 +02001070}
1071
1072static int mtk_napi_tx(struct napi_struct *napi, int budget)
1073{
1074 struct mtk_eth *eth = container_of(napi, struct mtk_eth, tx_napi);
1075 u32 status, mask;
1076 int tx_done = 0;
1077
1078 mtk_handle_status_irq(eth);
1079 mtk_w32(eth, MTK_TX_DONE_INT, MTK_QMTK_INT_STATUS);
1080 tx_done = mtk_poll_tx(eth, budget);
John Crispin656e7052016-03-08 11:29:55 +01001081
1082 if (unlikely(netif_msg_intr(eth))) {
John Crispin80673022016-06-29 13:38:11 +02001083 status = mtk_r32(eth, MTK_QMTK_INT_STATUS);
John Crispin656e7052016-03-08 11:29:55 +01001084 mask = mtk_r32(eth, MTK_QDMA_INT_MASK);
John Crispin80673022016-06-29 13:38:11 +02001085 dev_info(eth->dev,
1086 "done tx %d, intr 0x%08x/0x%x\n",
1087 tx_done, status, mask);
John Crispin656e7052016-03-08 11:29:55 +01001088 }
1089
John Crispin80673022016-06-29 13:38:11 +02001090 if (tx_done == budget)
John Crispin656e7052016-03-08 11:29:55 +01001091 return budget;
1092
1093 status = mtk_r32(eth, MTK_QMTK_INT_STATUS);
John Crispin80673022016-06-29 13:38:11 +02001094 if (status & MTK_TX_DONE_INT)
John Crispin656e7052016-03-08 11:29:55 +01001095 return budget;
1096
1097 napi_complete(napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001098 mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
John Crispin80673022016-06-29 13:38:11 +02001099
1100 return tx_done;
1101}
1102
1103static int mtk_napi_rx(struct napi_struct *napi, int budget)
1104{
1105 struct mtk_eth *eth = container_of(napi, struct mtk_eth, rx_napi);
1106 u32 status, mask;
1107 int rx_done = 0;
Sean Wang41156ce2016-09-03 17:59:27 +08001108 int remain_budget = budget;
John Crispin80673022016-06-29 13:38:11 +02001109
1110 mtk_handle_status_irq(eth);
Sean Wang41156ce2016-09-03 17:59:27 +08001111
1112poll_again:
Nelson Changbacfd112016-08-26 01:09:42 +08001113 mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_STATUS);
Sean Wang41156ce2016-09-03 17:59:27 +08001114 rx_done = mtk_poll_rx(napi, remain_budget, eth);
John Crispin80673022016-06-29 13:38:11 +02001115
1116 if (unlikely(netif_msg_intr(eth))) {
Nelson Changbacfd112016-08-26 01:09:42 +08001117 status = mtk_r32(eth, MTK_PDMA_INT_STATUS);
1118 mask = mtk_r32(eth, MTK_PDMA_INT_MASK);
John Crispin80673022016-06-29 13:38:11 +02001119 dev_info(eth->dev,
1120 "done rx %d, intr 0x%08x/0x%x\n",
1121 rx_done, status, mask);
1122 }
Sean Wang41156ce2016-09-03 17:59:27 +08001123 if (rx_done == remain_budget)
John Crispin80673022016-06-29 13:38:11 +02001124 return budget;
1125
Nelson Changbacfd112016-08-26 01:09:42 +08001126 status = mtk_r32(eth, MTK_PDMA_INT_STATUS);
Sean Wang41156ce2016-09-03 17:59:27 +08001127 if (status & MTK_RX_DONE_INT) {
1128 remain_budget -= rx_done;
1129 goto poll_again;
1130 }
John Crispin80673022016-06-29 13:38:11 +02001131 napi_complete(napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001132 mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001133
Sean Wang41156ce2016-09-03 17:59:27 +08001134 return rx_done + budget - remain_budget;
John Crispin656e7052016-03-08 11:29:55 +01001135}
1136
1137static int mtk_tx_alloc(struct mtk_eth *eth)
1138{
1139 struct mtk_tx_ring *ring = &eth->tx_ring;
1140 int i, sz = sizeof(*ring->dma);
1141
1142 ring->buf = kcalloc(MTK_DMA_SIZE, sizeof(*ring->buf),
1143 GFP_KERNEL);
1144 if (!ring->buf)
1145 goto no_tx_mem;
1146
1147 ring->dma = dma_alloc_coherent(eth->dev,
1148 MTK_DMA_SIZE * sz,
1149 &ring->phys,
1150 GFP_ATOMIC | __GFP_ZERO);
1151 if (!ring->dma)
1152 goto no_tx_mem;
1153
1154 memset(ring->dma, 0, MTK_DMA_SIZE * sz);
1155 for (i = 0; i < MTK_DMA_SIZE; i++) {
1156 int next = (i + 1) % MTK_DMA_SIZE;
1157 u32 next_ptr = ring->phys + next * sz;
1158
1159 ring->dma[i].txd2 = next_ptr;
1160 ring->dma[i].txd3 = TX_DMA_LS0 | TX_DMA_OWNER_CPU;
1161 }
1162
1163 atomic_set(&ring->free_count, MTK_DMA_SIZE - 2);
1164 ring->next_free = &ring->dma[0];
John Crispin12c97c12016-06-10 13:28:06 +02001165 ring->last_free = &ring->dma[MTK_DMA_SIZE - 1];
John Crispin04698cc2016-06-10 13:28:04 +02001166 ring->thresh = MAX_SKB_FRAGS;
John Crispin656e7052016-03-08 11:29:55 +01001167
1168 /* make sure that all changes to the dma ring are flushed before we
1169 * continue
1170 */
1171 wmb();
1172
1173 mtk_w32(eth, ring->phys, MTK_QTX_CTX_PTR);
1174 mtk_w32(eth, ring->phys, MTK_QTX_DTX_PTR);
1175 mtk_w32(eth,
1176 ring->phys + ((MTK_DMA_SIZE - 1) * sz),
1177 MTK_QTX_CRX_PTR);
1178 mtk_w32(eth,
1179 ring->phys + ((MTK_DMA_SIZE - 1) * sz),
1180 MTK_QTX_DRX_PTR);
Nelson Changbacfd112016-08-26 01:09:42 +08001181 mtk_w32(eth, (QDMA_RES_THRES << 8) | QDMA_RES_THRES, MTK_QTX_CFG(0));
John Crispin656e7052016-03-08 11:29:55 +01001182
1183 return 0;
1184
1185no_tx_mem:
1186 return -ENOMEM;
1187}
1188
1189static void mtk_tx_clean(struct mtk_eth *eth)
1190{
1191 struct mtk_tx_ring *ring = &eth->tx_ring;
1192 int i;
1193
1194 if (ring->buf) {
1195 for (i = 0; i < MTK_DMA_SIZE; i++)
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +08001196 mtk_tx_unmap(eth, &ring->buf[i]);
John Crispin656e7052016-03-08 11:29:55 +01001197 kfree(ring->buf);
1198 ring->buf = NULL;
1199 }
1200
1201 if (ring->dma) {
1202 dma_free_coherent(eth->dev,
1203 MTK_DMA_SIZE * sizeof(*ring->dma),
1204 ring->dma,
1205 ring->phys);
1206 ring->dma = NULL;
1207 }
1208}
1209
Nelson Changee406812016-09-17 23:50:55 +08001210static int mtk_rx_alloc(struct mtk_eth *eth, int ring_no, int rx_flag)
John Crispin656e7052016-03-08 11:29:55 +01001211{
Nelson Changee406812016-09-17 23:50:55 +08001212 struct mtk_rx_ring *ring = &eth->rx_ring[ring_no];
1213 int rx_data_len, rx_dma_size;
John Crispin656e7052016-03-08 11:29:55 +01001214 int i;
1215
Nelson Changee406812016-09-17 23:50:55 +08001216 if (rx_flag == MTK_RX_FLAGS_HWLRO) {
1217 rx_data_len = MTK_MAX_LRO_RX_LENGTH;
1218 rx_dma_size = MTK_HW_LRO_DMA_SIZE;
1219 } else {
1220 rx_data_len = ETH_DATA_LEN;
1221 rx_dma_size = MTK_DMA_SIZE;
1222 }
1223
1224 ring->frag_size = mtk_max_frag_size(rx_data_len);
John Crispin656e7052016-03-08 11:29:55 +01001225 ring->buf_size = mtk_max_buf_size(ring->frag_size);
Nelson Changee406812016-09-17 23:50:55 +08001226 ring->data = kcalloc(rx_dma_size, sizeof(*ring->data),
John Crispin656e7052016-03-08 11:29:55 +01001227 GFP_KERNEL);
1228 if (!ring->data)
1229 return -ENOMEM;
1230
Nelson Changee406812016-09-17 23:50:55 +08001231 for (i = 0; i < rx_dma_size; i++) {
John Crispin656e7052016-03-08 11:29:55 +01001232 ring->data[i] = netdev_alloc_frag(ring->frag_size);
1233 if (!ring->data[i])
1234 return -ENOMEM;
1235 }
1236
1237 ring->dma = dma_alloc_coherent(eth->dev,
Nelson Changee406812016-09-17 23:50:55 +08001238 rx_dma_size * sizeof(*ring->dma),
John Crispin656e7052016-03-08 11:29:55 +01001239 &ring->phys,
1240 GFP_ATOMIC | __GFP_ZERO);
1241 if (!ring->dma)
1242 return -ENOMEM;
1243
Nelson Changee406812016-09-17 23:50:55 +08001244 for (i = 0; i < rx_dma_size; i++) {
John Crispin656e7052016-03-08 11:29:55 +01001245 dma_addr_t dma_addr = dma_map_single(eth->dev,
1246 ring->data[i] + NET_SKB_PAD,
1247 ring->buf_size,
1248 DMA_FROM_DEVICE);
1249 if (unlikely(dma_mapping_error(eth->dev, dma_addr)))
1250 return -ENOMEM;
1251 ring->dma[i].rxd1 = (unsigned int)dma_addr;
1252
1253 ring->dma[i].rxd2 = RX_DMA_PLEN0(ring->buf_size);
1254 }
Nelson Changee406812016-09-17 23:50:55 +08001255 ring->dma_size = rx_dma_size;
1256 ring->calc_idx_update = false;
1257 ring->calc_idx = rx_dma_size - 1;
1258 ring->crx_idx_reg = MTK_PRX_CRX_IDX_CFG(ring_no);
John Crispin656e7052016-03-08 11:29:55 +01001259 /* make sure that all changes to the dma ring are flushed before we
1260 * continue
1261 */
1262 wmb();
1263
Nelson Changee406812016-09-17 23:50:55 +08001264 mtk_w32(eth, ring->phys, MTK_PRX_BASE_PTR_CFG(ring_no));
1265 mtk_w32(eth, rx_dma_size, MTK_PRX_MAX_CNT_CFG(ring_no));
1266 mtk_w32(eth, ring->calc_idx, ring->crx_idx_reg);
1267 mtk_w32(eth, MTK_PST_DRX_IDX_CFG(ring_no), MTK_PDMA_RST_IDX);
John Crispin656e7052016-03-08 11:29:55 +01001268
1269 return 0;
1270}
1271
Nelson Changee406812016-09-17 23:50:55 +08001272static void mtk_rx_clean(struct mtk_eth *eth, int ring_no)
John Crispin656e7052016-03-08 11:29:55 +01001273{
Nelson Changee406812016-09-17 23:50:55 +08001274 struct mtk_rx_ring *ring = &eth->rx_ring[ring_no];
John Crispin656e7052016-03-08 11:29:55 +01001275 int i;
1276
1277 if (ring->data && ring->dma) {
Nelson Changee406812016-09-17 23:50:55 +08001278 for (i = 0; i < ring->dma_size; i++) {
John Crispin656e7052016-03-08 11:29:55 +01001279 if (!ring->data[i])
1280 continue;
1281 if (!ring->dma[i].rxd1)
1282 continue;
1283 dma_unmap_single(eth->dev,
1284 ring->dma[i].rxd1,
1285 ring->buf_size,
1286 DMA_FROM_DEVICE);
1287 skb_free_frag(ring->data[i]);
1288 }
1289 kfree(ring->data);
1290 ring->data = NULL;
1291 }
1292
1293 if (ring->dma) {
1294 dma_free_coherent(eth->dev,
Nelson Changee406812016-09-17 23:50:55 +08001295 ring->dma_size * sizeof(*ring->dma),
John Crispin656e7052016-03-08 11:29:55 +01001296 ring->dma,
1297 ring->phys);
1298 ring->dma = NULL;
1299 }
1300}
1301
Nelson Changee406812016-09-17 23:50:55 +08001302static int mtk_hwlro_rx_init(struct mtk_eth *eth)
1303{
1304 int i;
1305 u32 ring_ctrl_dw1 = 0, ring_ctrl_dw2 = 0, ring_ctrl_dw3 = 0;
1306 u32 lro_ctrl_dw0 = 0, lro_ctrl_dw3 = 0;
1307
1308 /* set LRO rings to auto-learn modes */
1309 ring_ctrl_dw2 |= MTK_RING_AUTO_LERAN_MODE;
1310
1311 /* validate LRO ring */
1312 ring_ctrl_dw2 |= MTK_RING_VLD;
1313
1314 /* set AGE timer (unit: 20us) */
1315 ring_ctrl_dw2 |= MTK_RING_AGE_TIME_H;
1316 ring_ctrl_dw1 |= MTK_RING_AGE_TIME_L;
1317
1318 /* set max AGG timer (unit: 20us) */
1319 ring_ctrl_dw2 |= MTK_RING_MAX_AGG_TIME;
1320
1321 /* set max LRO AGG count */
1322 ring_ctrl_dw2 |= MTK_RING_MAX_AGG_CNT_L;
1323 ring_ctrl_dw3 |= MTK_RING_MAX_AGG_CNT_H;
1324
1325 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++) {
1326 mtk_w32(eth, ring_ctrl_dw1, MTK_LRO_CTRL_DW1_CFG(i));
1327 mtk_w32(eth, ring_ctrl_dw2, MTK_LRO_CTRL_DW2_CFG(i));
1328 mtk_w32(eth, ring_ctrl_dw3, MTK_LRO_CTRL_DW3_CFG(i));
1329 }
1330
1331 /* IPv4 checksum update enable */
1332 lro_ctrl_dw0 |= MTK_L3_CKS_UPD_EN;
1333
1334 /* switch priority comparison to packet count mode */
1335 lro_ctrl_dw0 |= MTK_LRO_ALT_PKT_CNT_MODE;
1336
1337 /* bandwidth threshold setting */
1338 mtk_w32(eth, MTK_HW_LRO_BW_THRE, MTK_PDMA_LRO_CTRL_DW2);
1339
1340 /* auto-learn score delta setting */
1341 mtk_w32(eth, MTK_HW_LRO_REPLACE_DELTA, MTK_PDMA_LRO_ALT_SCORE_DELTA);
1342
1343 /* set refresh timer for altering flows to 1 sec. (unit: 20us) */
1344 mtk_w32(eth, (MTK_HW_LRO_TIMER_UNIT << 16) | MTK_HW_LRO_REFRESH_TIME,
1345 MTK_PDMA_LRO_ALT_REFRESH_TIMER);
1346
1347 /* set HW LRO mode & the max aggregation count for rx packets */
1348 lro_ctrl_dw3 |= MTK_ADMA_MODE | (MTK_HW_LRO_MAX_AGG_CNT & 0xff);
1349
1350 /* the minimal remaining room of SDL0 in RXD for lro aggregation */
1351 lro_ctrl_dw3 |= MTK_LRO_MIN_RXD_SDL;
1352
1353 /* enable HW LRO */
1354 lro_ctrl_dw0 |= MTK_LRO_EN;
1355
1356 mtk_w32(eth, lro_ctrl_dw3, MTK_PDMA_LRO_CTRL_DW3);
1357 mtk_w32(eth, lro_ctrl_dw0, MTK_PDMA_LRO_CTRL_DW0);
1358
1359 return 0;
1360}
1361
1362static void mtk_hwlro_rx_uninit(struct mtk_eth *eth)
1363{
1364 int i;
1365 u32 val;
1366
1367 /* relinquish lro rings, flush aggregated packets */
1368 mtk_w32(eth, MTK_LRO_RING_RELINQUISH_REQ, MTK_PDMA_LRO_CTRL_DW0);
1369
1370 /* wait for relinquishments done */
1371 for (i = 0; i < 10; i++) {
1372 val = mtk_r32(eth, MTK_PDMA_LRO_CTRL_DW0);
1373 if (val & MTK_LRO_RING_RELINQUISH_DONE) {
1374 msleep(20);
1375 continue;
1376 }
1377 }
1378
1379 /* invalidate lro rings */
1380 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++)
1381 mtk_w32(eth, 0, MTK_LRO_CTRL_DW2_CFG(i));
1382
1383 /* disable HW LRO */
1384 mtk_w32(eth, 0, MTK_PDMA_LRO_CTRL_DW0);
1385}
1386
Nelson Chang7aab7472016-09-17 23:50:56 +08001387static void mtk_hwlro_val_ipaddr(struct mtk_eth *eth, int idx, __be32 ip)
1388{
1389 u32 reg_val;
1390
1391 reg_val = mtk_r32(eth, MTK_LRO_CTRL_DW2_CFG(idx));
1392
1393 /* invalidate the IP setting */
1394 mtk_w32(eth, (reg_val & ~MTK_RING_MYIP_VLD), MTK_LRO_CTRL_DW2_CFG(idx));
1395
1396 mtk_w32(eth, ip, MTK_LRO_DIP_DW0_CFG(idx));
1397
1398 /* validate the IP setting */
1399 mtk_w32(eth, (reg_val | MTK_RING_MYIP_VLD), MTK_LRO_CTRL_DW2_CFG(idx));
1400}
1401
1402static void mtk_hwlro_inval_ipaddr(struct mtk_eth *eth, int idx)
1403{
1404 u32 reg_val;
1405
1406 reg_val = mtk_r32(eth, MTK_LRO_CTRL_DW2_CFG(idx));
1407
1408 /* invalidate the IP setting */
1409 mtk_w32(eth, (reg_val & ~MTK_RING_MYIP_VLD), MTK_LRO_CTRL_DW2_CFG(idx));
1410
1411 mtk_w32(eth, 0, MTK_LRO_DIP_DW0_CFG(idx));
1412}
1413
1414static int mtk_hwlro_get_ip_cnt(struct mtk_mac *mac)
1415{
1416 int cnt = 0;
1417 int i;
1418
1419 for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) {
1420 if (mac->hwlro_ip[i])
1421 cnt++;
1422 }
1423
1424 return cnt;
1425}
1426
1427static int mtk_hwlro_add_ipaddr(struct net_device *dev,
1428 struct ethtool_rxnfc *cmd)
1429{
1430 struct ethtool_rx_flow_spec *fsp =
1431 (struct ethtool_rx_flow_spec *)&cmd->fs;
1432 struct mtk_mac *mac = netdev_priv(dev);
1433 struct mtk_eth *eth = mac->hw;
1434 int hwlro_idx;
1435
1436 if ((fsp->flow_type != TCP_V4_FLOW) ||
1437 (!fsp->h_u.tcp_ip4_spec.ip4dst) ||
1438 (fsp->location > 1))
1439 return -EINVAL;
1440
1441 mac->hwlro_ip[fsp->location] = htonl(fsp->h_u.tcp_ip4_spec.ip4dst);
1442 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + fsp->location;
1443
1444 mac->hwlro_ip_cnt = mtk_hwlro_get_ip_cnt(mac);
1445
1446 mtk_hwlro_val_ipaddr(eth, hwlro_idx, mac->hwlro_ip[fsp->location]);
1447
1448 return 0;
1449}
1450
1451static int mtk_hwlro_del_ipaddr(struct net_device *dev,
1452 struct ethtool_rxnfc *cmd)
1453{
1454 struct ethtool_rx_flow_spec *fsp =
1455 (struct ethtool_rx_flow_spec *)&cmd->fs;
1456 struct mtk_mac *mac = netdev_priv(dev);
1457 struct mtk_eth *eth = mac->hw;
1458 int hwlro_idx;
1459
1460 if (fsp->location > 1)
1461 return -EINVAL;
1462
1463 mac->hwlro_ip[fsp->location] = 0;
1464 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + fsp->location;
1465
1466 mac->hwlro_ip_cnt = mtk_hwlro_get_ip_cnt(mac);
1467
1468 mtk_hwlro_inval_ipaddr(eth, hwlro_idx);
1469
1470 return 0;
1471}
1472
1473static void mtk_hwlro_netdev_disable(struct net_device *dev)
1474{
1475 struct mtk_mac *mac = netdev_priv(dev);
1476 struct mtk_eth *eth = mac->hw;
1477 int i, hwlro_idx;
1478
1479 for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) {
1480 mac->hwlro_ip[i] = 0;
1481 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + i;
1482
1483 mtk_hwlro_inval_ipaddr(eth, hwlro_idx);
1484 }
1485
1486 mac->hwlro_ip_cnt = 0;
1487}
1488
1489static int mtk_hwlro_get_fdir_entry(struct net_device *dev,
1490 struct ethtool_rxnfc *cmd)
1491{
1492 struct mtk_mac *mac = netdev_priv(dev);
1493 struct ethtool_rx_flow_spec *fsp =
1494 (struct ethtool_rx_flow_spec *)&cmd->fs;
1495
1496 /* only tcp dst ipv4 is meaningful, others are meaningless */
1497 fsp->flow_type = TCP_V4_FLOW;
1498 fsp->h_u.tcp_ip4_spec.ip4dst = ntohl(mac->hwlro_ip[fsp->location]);
1499 fsp->m_u.tcp_ip4_spec.ip4dst = 0;
1500
1501 fsp->h_u.tcp_ip4_spec.ip4src = 0;
1502 fsp->m_u.tcp_ip4_spec.ip4src = 0xffffffff;
1503 fsp->h_u.tcp_ip4_spec.psrc = 0;
1504 fsp->m_u.tcp_ip4_spec.psrc = 0xffff;
1505 fsp->h_u.tcp_ip4_spec.pdst = 0;
1506 fsp->m_u.tcp_ip4_spec.pdst = 0xffff;
1507 fsp->h_u.tcp_ip4_spec.tos = 0;
1508 fsp->m_u.tcp_ip4_spec.tos = 0xff;
1509
1510 return 0;
1511}
1512
1513static int mtk_hwlro_get_fdir_all(struct net_device *dev,
1514 struct ethtool_rxnfc *cmd,
1515 u32 *rule_locs)
1516{
1517 struct mtk_mac *mac = netdev_priv(dev);
1518 int cnt = 0;
1519 int i;
1520
1521 for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) {
1522 if (mac->hwlro_ip[i]) {
1523 rule_locs[cnt] = i;
1524 cnt++;
1525 }
1526 }
1527
1528 cmd->rule_cnt = cnt;
1529
1530 return 0;
1531}
1532
1533static netdev_features_t mtk_fix_features(struct net_device *dev,
1534 netdev_features_t features)
1535{
1536 if (!(features & NETIF_F_LRO)) {
1537 struct mtk_mac *mac = netdev_priv(dev);
1538 int ip_cnt = mtk_hwlro_get_ip_cnt(mac);
1539
1540 if (ip_cnt) {
1541 netdev_info(dev, "RX flow is programmed, LRO should keep on\n");
1542
1543 features |= NETIF_F_LRO;
1544 }
1545 }
1546
1547 return features;
1548}
1549
1550static int mtk_set_features(struct net_device *dev, netdev_features_t features)
1551{
1552 int err = 0;
1553
1554 if (!((dev->features ^ features) & NETIF_F_LRO))
1555 return 0;
1556
1557 if (!(features & NETIF_F_LRO))
1558 mtk_hwlro_netdev_disable(dev);
1559
1560 return err;
1561}
1562
John Crispin656e7052016-03-08 11:29:55 +01001563/* wait for DMA to finish whatever it is doing before we start using it again */
1564static int mtk_dma_busy_wait(struct mtk_eth *eth)
1565{
1566 unsigned long t_start = jiffies;
1567
1568 while (1) {
1569 if (!(mtk_r32(eth, MTK_QDMA_GLO_CFG) &
1570 (MTK_RX_DMA_BUSY | MTK_TX_DMA_BUSY)))
1571 return 0;
1572 if (time_after(jiffies, t_start + MTK_DMA_BUSY_TIMEOUT))
1573 break;
1574 }
1575
1576 dev_err(eth->dev, "DMA init timeout\n");
1577 return -1;
1578}
1579
1580static int mtk_dma_init(struct mtk_eth *eth)
1581{
1582 int err;
Nelson Changee406812016-09-17 23:50:55 +08001583 u32 i;
John Crispin656e7052016-03-08 11:29:55 +01001584
1585 if (mtk_dma_busy_wait(eth))
1586 return -EBUSY;
1587
1588 /* QDMA needs scratch memory for internal reordering of the
1589 * descriptors
1590 */
1591 err = mtk_init_fq_dma(eth);
1592 if (err)
1593 return err;
1594
1595 err = mtk_tx_alloc(eth);
1596 if (err)
1597 return err;
1598
Nelson Changee406812016-09-17 23:50:55 +08001599 err = mtk_rx_alloc(eth, 0, MTK_RX_FLAGS_NORMAL);
John Crispin656e7052016-03-08 11:29:55 +01001600 if (err)
1601 return err;
1602
Nelson Changee406812016-09-17 23:50:55 +08001603 if (eth->hwlro) {
1604 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++) {
1605 err = mtk_rx_alloc(eth, i, MTK_RX_FLAGS_HWLRO);
1606 if (err)
1607 return err;
1608 }
1609 err = mtk_hwlro_rx_init(eth);
1610 if (err)
1611 return err;
1612 }
1613
John Crispin656e7052016-03-08 11:29:55 +01001614 /* Enable random early drop and set drop threshold automatically */
1615 mtk_w32(eth, FC_THRES_DROP_MODE | FC_THRES_DROP_EN | FC_THRES_MIN,
1616 MTK_QDMA_FC_THRES);
1617 mtk_w32(eth, 0x0, MTK_QDMA_HRED2);
1618
1619 return 0;
1620}
1621
1622static void mtk_dma_free(struct mtk_eth *eth)
1623{
1624 int i;
1625
1626 for (i = 0; i < MTK_MAC_COUNT; i++)
1627 if (eth->netdev[i])
1628 netdev_reset_queue(eth->netdev[i]);
John Crispin605e4fe2016-06-10 13:27:59 +02001629 if (eth->scratch_ring) {
1630 dma_free_coherent(eth->dev,
1631 MTK_DMA_SIZE * sizeof(struct mtk_tx_dma),
1632 eth->scratch_ring,
1633 eth->phy_scratch_ring);
1634 eth->scratch_ring = NULL;
1635 eth->phy_scratch_ring = 0;
1636 }
John Crispin656e7052016-03-08 11:29:55 +01001637 mtk_tx_clean(eth);
Nelson Changee406812016-09-17 23:50:55 +08001638 mtk_rx_clean(eth, 0);
1639
1640 if (eth->hwlro) {
1641 mtk_hwlro_rx_uninit(eth);
1642 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++)
1643 mtk_rx_clean(eth, i);
1644 }
1645
John Crispin656e7052016-03-08 11:29:55 +01001646 kfree(eth->scratch_head);
1647}
1648
1649static void mtk_tx_timeout(struct net_device *dev)
1650{
1651 struct mtk_mac *mac = netdev_priv(dev);
1652 struct mtk_eth *eth = mac->hw;
1653
1654 eth->netdev[mac->id]->stats.tx_errors++;
1655 netif_err(eth, tx_err, dev,
1656 "transmit timed out\n");
John Crispin7c78b4a2016-04-08 00:54:10 +02001657 schedule_work(&eth->pending_work);
John Crispin656e7052016-03-08 11:29:55 +01001658}
1659
John Crispin80673022016-06-29 13:38:11 +02001660static irqreturn_t mtk_handle_irq_rx(int irq, void *_eth)
John Crispin656e7052016-03-08 11:29:55 +01001661{
1662 struct mtk_eth *eth = _eth;
John Crispin656e7052016-03-08 11:29:55 +01001663
John Crispin80673022016-06-29 13:38:11 +02001664 if (likely(napi_schedule_prep(&eth->rx_napi))) {
1665 __napi_schedule(&eth->rx_napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001666 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001667 }
John Crispin80673022016-06-29 13:38:11 +02001668
1669 return IRQ_HANDLED;
1670}
1671
1672static irqreturn_t mtk_handle_irq_tx(int irq, void *_eth)
1673{
1674 struct mtk_eth *eth = _eth;
1675
1676 if (likely(napi_schedule_prep(&eth->tx_napi))) {
1677 __napi_schedule(&eth->tx_napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001678 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
John Crispin80673022016-06-29 13:38:11 +02001679 }
John Crispin656e7052016-03-08 11:29:55 +01001680
1681 return IRQ_HANDLED;
1682}
1683
1684#ifdef CONFIG_NET_POLL_CONTROLLER
1685static void mtk_poll_controller(struct net_device *dev)
1686{
1687 struct mtk_mac *mac = netdev_priv(dev);
1688 struct mtk_eth *eth = mac->hw;
John Crispin656e7052016-03-08 11:29:55 +01001689
Nelson Changbacfd112016-08-26 01:09:42 +08001690 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1691 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin8186f6e2016-07-02 08:00:50 +02001692 mtk_handle_irq_rx(eth->irq[2], dev);
Nelson Changbacfd112016-08-26 01:09:42 +08001693 mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1694 mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001695}
1696#endif
1697
1698static int mtk_start_dma(struct mtk_eth *eth)
1699{
1700 int err;
1701
1702 err = mtk_dma_init(eth);
1703 if (err) {
1704 mtk_dma_free(eth);
1705 return err;
1706 }
1707
1708 mtk_w32(eth,
Nelson Changbacfd112016-08-26 01:09:42 +08001709 MTK_TX_WB_DDONE | MTK_TX_DMA_EN |
1710 MTK_DMA_SIZE_16DWORDS | MTK_NDP_CO_PRO,
John Crispin656e7052016-03-08 11:29:55 +01001711 MTK_QDMA_GLO_CFG);
1712
Nelson Changbacfd112016-08-26 01:09:42 +08001713 mtk_w32(eth,
1714 MTK_RX_DMA_EN | MTK_RX_2B_OFFSET |
1715 MTK_RX_BT_32DWORDS | MTK_MULTI_EN,
1716 MTK_PDMA_GLO_CFG);
1717
John Crispin656e7052016-03-08 11:29:55 +01001718 return 0;
1719}
1720
1721static int mtk_open(struct net_device *dev)
1722{
1723 struct mtk_mac *mac = netdev_priv(dev);
1724 struct mtk_eth *eth = mac->hw;
1725
1726 /* we run 2 netdevs on the same dma ring so we only bring it up once */
1727 if (!atomic_read(&eth->dma_refcnt)) {
1728 int err = mtk_start_dma(eth);
1729
1730 if (err)
1731 return err;
1732
John Crispin80673022016-06-29 13:38:11 +02001733 napi_enable(&eth->tx_napi);
John Crispin656e7052016-03-08 11:29:55 +01001734 napi_enable(&eth->rx_napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001735 mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1736 mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001737 }
1738 atomic_inc(&eth->dma_refcnt);
1739
Sean Wang2364c5c2016-09-22 16:33:35 +08001740 phy_start(dev->phydev);
John Crispin656e7052016-03-08 11:29:55 +01001741 netif_start_queue(dev);
1742
1743 return 0;
1744}
1745
1746static void mtk_stop_dma(struct mtk_eth *eth, u32 glo_cfg)
1747{
John Crispin656e7052016-03-08 11:29:55 +01001748 u32 val;
1749 int i;
1750
1751 /* stop the dma engine */
Sean Wange3e96522016-08-11 17:51:00 +08001752 spin_lock_bh(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +01001753 val = mtk_r32(eth, glo_cfg);
1754 mtk_w32(eth, val & ~(MTK_TX_WB_DDONE | MTK_RX_DMA_EN | MTK_TX_DMA_EN),
1755 glo_cfg);
Sean Wange3e96522016-08-11 17:51:00 +08001756 spin_unlock_bh(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +01001757
1758 /* wait for dma stop */
1759 for (i = 0; i < 10; i++) {
1760 val = mtk_r32(eth, glo_cfg);
1761 if (val & (MTK_TX_DMA_BUSY | MTK_RX_DMA_BUSY)) {
1762 msleep(20);
1763 continue;
1764 }
1765 break;
1766 }
1767}
1768
1769static int mtk_stop(struct net_device *dev)
1770{
1771 struct mtk_mac *mac = netdev_priv(dev);
1772 struct mtk_eth *eth = mac->hw;
1773
1774 netif_tx_disable(dev);
Sean Wang2364c5c2016-09-22 16:33:35 +08001775 phy_stop(dev->phydev);
John Crispin656e7052016-03-08 11:29:55 +01001776
1777 /* only shutdown DMA if this is the last user */
1778 if (!atomic_dec_and_test(&eth->dma_refcnt))
1779 return 0;
1780
Nelson Changbacfd112016-08-26 01:09:42 +08001781 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1782 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin80673022016-06-29 13:38:11 +02001783 napi_disable(&eth->tx_napi);
John Crispin656e7052016-03-08 11:29:55 +01001784 napi_disable(&eth->rx_napi);
1785
1786 mtk_stop_dma(eth, MTK_QDMA_GLO_CFG);
1787
1788 mtk_dma_free(eth);
1789
1790 return 0;
1791}
1792
Sean Wang2a8307a2016-09-14 23:13:20 +08001793static void ethsys_reset(struct mtk_eth *eth, u32 reset_bits)
1794{
1795 regmap_update_bits(eth->ethsys, ETHSYS_RSTCTRL,
1796 reset_bits,
1797 reset_bits);
1798
1799 usleep_range(1000, 1100);
1800 regmap_update_bits(eth->ethsys, ETHSYS_RSTCTRL,
1801 reset_bits,
1802 ~reset_bits);
1803 mdelay(10);
1804}
1805
Sean Wang9ea4d312016-09-14 23:13:19 +08001806static int mtk_hw_init(struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +01001807{
Sean Wang9ea4d312016-09-14 23:13:19 +08001808 int i, val;
1809
1810 if (test_and_set_bit(MTK_HW_INIT, &eth->state))
1811 return 0;
Sean Wang85574db2016-09-14 23:13:15 +08001812
Sean Wang26a2ad82016-09-14 23:13:18 +08001813 pm_runtime_enable(eth->dev);
1814 pm_runtime_get_sync(eth->dev);
1815
Sean Wang85574db2016-09-14 23:13:15 +08001816 clk_prepare_enable(eth->clks[MTK_CLK_ETHIF]);
1817 clk_prepare_enable(eth->clks[MTK_CLK_ESW]);
1818 clk_prepare_enable(eth->clks[MTK_CLK_GP1]);
1819 clk_prepare_enable(eth->clks[MTK_CLK_GP2]);
Sean Wang2a8307a2016-09-14 23:13:20 +08001820 ethsys_reset(eth, RSTCTRL_FE);
1821 ethsys_reset(eth, RSTCTRL_PPE);
John Crispin656e7052016-03-08 11:29:55 +01001822
Sean Wang9ea4d312016-09-14 23:13:19 +08001823 regmap_read(eth->ethsys, ETHSYS_SYSCFG0, &val);
1824 for (i = 0; i < MTK_MAC_COUNT; i++) {
1825 if (!eth->mac[i])
1826 continue;
1827 val &= ~SYSCFG0_GE_MODE(SYSCFG0_GE_MASK, eth->mac[i]->id);
1828 val |= SYSCFG0_GE_MODE(eth->mac[i]->ge_mode, eth->mac[i]->id);
1829 }
1830 regmap_write(eth->ethsys, ETHSYS_SYSCFG0, val);
1831
John Crispin656e7052016-03-08 11:29:55 +01001832 /* Set GE2 driving and slew rate */
1833 regmap_write(eth->pctl, GPIO_DRV_SEL10, 0xa00);
1834
1835 /* set GE2 TDSEL */
1836 regmap_write(eth->pctl, GPIO_OD33_CTRL8, 0x5);
1837
1838 /* set GE2 TUNE */
1839 regmap_write(eth->pctl, GPIO_BIAS_CTRL, 0x0);
1840
1841 /* GE1, Force 1000M/FD, FC ON */
1842 mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(0));
1843
1844 /* GE2, Force 1000M/FD, FC ON */
1845 mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(1));
1846
1847 /* Enable RX VLan Offloading */
1848 mtk_w32(eth, 1, MTK_CDMP_EG_CTRL);
1849
John Crispin656e7052016-03-08 11:29:55 +01001850 /* disable delay and normal interrupt */
1851 mtk_w32(eth, 0, MTK_QDMA_DELAY_INT);
Nelson Changbacfd112016-08-26 01:09:42 +08001852 mtk_w32(eth, 0, MTK_PDMA_DELAY_INT);
1853 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, ~0);
1854 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, ~0);
John Crispin656e7052016-03-08 11:29:55 +01001855 mtk_w32(eth, RST_GL_PSE, MTK_RST_GL);
1856 mtk_w32(eth, 0, MTK_RST_GL);
1857
1858 /* FE int grouping */
John Crispin80673022016-06-29 13:38:11 +02001859 mtk_w32(eth, MTK_TX_DONE_INT, MTK_PDMA_INT_GRP1);
1860 mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_GRP2);
1861 mtk_w32(eth, MTK_TX_DONE_INT, MTK_QDMA_INT_GRP1);
1862 mtk_w32(eth, MTK_RX_DONE_INT, MTK_QDMA_INT_GRP2);
1863 mtk_w32(eth, 0x21021000, MTK_FE_INT_GRP);
John Crispin656e7052016-03-08 11:29:55 +01001864
1865 for (i = 0; i < 2; i++) {
1866 u32 val = mtk_r32(eth, MTK_GDMA_FWD_CFG(i));
1867
Nelson Chang9c084352016-08-26 01:09:43 +08001868 /* setup the forward port to send frame to PDMA */
John Crispin656e7052016-03-08 11:29:55 +01001869 val &= ~0xffff;
John Crispin656e7052016-03-08 11:29:55 +01001870
1871 /* Enable RX checksum */
1872 val |= MTK_GDMA_ICS_EN | MTK_GDMA_TCS_EN | MTK_GDMA_UCS_EN;
1873
1874 /* setup the mac dma */
1875 mtk_w32(eth, val, MTK_GDMA_FWD_CFG(i));
1876 }
1877
1878 return 0;
1879}
1880
Sean Wangbf253fb2016-09-14 23:13:16 +08001881static int mtk_hw_deinit(struct mtk_eth *eth)
1882{
Sean Wang9ea4d312016-09-14 23:13:19 +08001883 if (!test_and_clear_bit(MTK_HW_INIT, &eth->state))
1884 return 0;
1885
Sean Wangbf253fb2016-09-14 23:13:16 +08001886 clk_disable_unprepare(eth->clks[MTK_CLK_GP2]);
1887 clk_disable_unprepare(eth->clks[MTK_CLK_GP1]);
1888 clk_disable_unprepare(eth->clks[MTK_CLK_ESW]);
1889 clk_disable_unprepare(eth->clks[MTK_CLK_ETHIF]);
1890
Sean Wang26a2ad82016-09-14 23:13:18 +08001891 pm_runtime_put_sync(eth->dev);
1892 pm_runtime_disable(eth->dev);
1893
Sean Wangbf253fb2016-09-14 23:13:16 +08001894 return 0;
1895}
1896
John Crispin656e7052016-03-08 11:29:55 +01001897static int __init mtk_init(struct net_device *dev)
1898{
1899 struct mtk_mac *mac = netdev_priv(dev);
1900 struct mtk_eth *eth = mac->hw;
1901 const char *mac_addr;
1902
1903 mac_addr = of_get_mac_address(mac->of_node);
1904 if (mac_addr)
1905 ether_addr_copy(dev->dev_addr, mac_addr);
1906
1907 /* If the mac address is invalid, use random mac address */
1908 if (!is_valid_ether_addr(dev->dev_addr)) {
1909 random_ether_addr(dev->dev_addr);
1910 dev_err(eth->dev, "generated random MAC address %pM\n",
1911 dev->dev_addr);
1912 dev->addr_assign_type = NET_ADDR_RANDOM;
1913 }
1914
Sean Wang2364c5c2016-09-22 16:33:35 +08001915 return mtk_phy_connect(dev);
John Crispin656e7052016-03-08 11:29:55 +01001916}
1917
1918static void mtk_uninit(struct net_device *dev)
1919{
1920 struct mtk_mac *mac = netdev_priv(dev);
1921 struct mtk_eth *eth = mac->hw;
1922
Sean Wang2364c5c2016-09-22 16:33:35 +08001923 phy_disconnect(dev->phydev);
Nelson Changbacfd112016-08-26 01:09:42 +08001924 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, ~0);
1925 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, ~0);
John Crispin656e7052016-03-08 11:29:55 +01001926}
1927
1928static int mtk_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1929{
John Crispin656e7052016-03-08 11:29:55 +01001930 switch (cmd) {
1931 case SIOCGMIIPHY:
1932 case SIOCGMIIREG:
1933 case SIOCSMIIREG:
Sean Wang2364c5c2016-09-22 16:33:35 +08001934 return phy_mii_ioctl(dev->phydev, ifr, cmd);
John Crispin656e7052016-03-08 11:29:55 +01001935 default:
1936 break;
1937 }
1938
1939 return -EOPNOTSUPP;
1940}
1941
1942static void mtk_pending_work(struct work_struct *work)
1943{
John Crispin7c78b4a2016-04-08 00:54:10 +02001944 struct mtk_eth *eth = container_of(work, struct mtk_eth, pending_work);
John Crispine7d425d2016-04-08 00:54:09 +02001945 int err, i;
1946 unsigned long restart = 0;
John Crispin656e7052016-03-08 11:29:55 +01001947
1948 rtnl_lock();
John Crispin656e7052016-03-08 11:29:55 +01001949
Sean Wangdce6fa42016-09-14 23:13:21 +08001950 dev_dbg(eth->dev, "[%s][%d] reset\n", __func__, __LINE__);
1951
1952 while (test_and_set_bit_lock(MTK_RESETTING, &eth->state))
1953 cpu_relax();
1954
1955 dev_dbg(eth->dev, "[%s][%d] mtk_stop starts\n", __func__, __LINE__);
John Crispine7d425d2016-04-08 00:54:09 +02001956 /* stop all devices to make sure that dma is properly shut down */
1957 for (i = 0; i < MTK_MAC_COUNT; i++) {
John Crispin7c78b4a2016-04-08 00:54:10 +02001958 if (!eth->netdev[i])
John Crispine7d425d2016-04-08 00:54:09 +02001959 continue;
1960 mtk_stop(eth->netdev[i]);
1961 __set_bit(i, &restart);
1962 }
Sean Wangdce6fa42016-09-14 23:13:21 +08001963 dev_dbg(eth->dev, "[%s][%d] mtk_stop ends\n", __func__, __LINE__);
John Crispine7d425d2016-04-08 00:54:09 +02001964
Sean Wang9ea4d312016-09-14 23:13:19 +08001965 /* restart underlying hardware such as power, clock, pin mux
1966 * and the connected phy
1967 */
1968 mtk_hw_deinit(eth);
1969
1970 if (eth->dev->pins)
1971 pinctrl_select_state(eth->dev->pins->p,
1972 eth->dev->pins->default_state);
1973 mtk_hw_init(eth);
1974
1975 for (i = 0; i < MTK_MAC_COUNT; i++) {
1976 if (!eth->mac[i] ||
1977 of_phy_is_fixed_link(eth->mac[i]->of_node))
1978 continue;
Sean Wang2364c5c2016-09-22 16:33:35 +08001979 err = phy_init_hw(eth->netdev[i]->phydev);
Sean Wang9ea4d312016-09-14 23:13:19 +08001980 if (err)
1981 dev_err(eth->dev, "%s: PHY init failed.\n",
1982 eth->netdev[i]->name);
1983 }
1984
John Crispine7d425d2016-04-08 00:54:09 +02001985 /* restart DMA and enable IRQs */
1986 for (i = 0; i < MTK_MAC_COUNT; i++) {
1987 if (!test_bit(i, &restart))
1988 continue;
1989 err = mtk_open(eth->netdev[i]);
1990 if (err) {
1991 netif_alert(eth, ifup, eth->netdev[i],
1992 "Driver up/down cycle failed, closing device.\n");
1993 dev_close(eth->netdev[i]);
1994 }
John Crispin656e7052016-03-08 11:29:55 +01001995 }
Sean Wangdce6fa42016-09-14 23:13:21 +08001996
1997 dev_dbg(eth->dev, "[%s][%d] reset done\n", __func__, __LINE__);
1998
1999 clear_bit_unlock(MTK_RESETTING, &eth->state);
2000
John Crispin656e7052016-03-08 11:29:55 +01002001 rtnl_unlock();
2002}
2003
Sean Wang8a8a9e82016-09-14 23:13:17 +08002004static int mtk_free_dev(struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +01002005{
2006 int i;
2007
2008 for (i = 0; i < MTK_MAC_COUNT; i++) {
John Crispin656e7052016-03-08 11:29:55 +01002009 if (!eth->netdev[i])
2010 continue;
John Crispin656e7052016-03-08 11:29:55 +01002011 free_netdev(eth->netdev[i]);
John Crispin656e7052016-03-08 11:29:55 +01002012 }
Sean Wang8a8a9e82016-09-14 23:13:17 +08002013
2014 return 0;
2015}
2016
2017static int mtk_unreg_dev(struct mtk_eth *eth)
2018{
2019 int i;
2020
2021 for (i = 0; i < MTK_MAC_COUNT; i++) {
2022 if (!eth->netdev[i])
2023 continue;
2024 unregister_netdev(eth->netdev[i]);
2025 }
2026
2027 return 0;
2028}
2029
2030static int mtk_cleanup(struct mtk_eth *eth)
2031{
2032 mtk_unreg_dev(eth);
2033 mtk_free_dev(eth);
John Crispin7c78b4a2016-04-08 00:54:10 +02002034 cancel_work_sync(&eth->pending_work);
John Crispin656e7052016-03-08 11:29:55 +01002035
2036 return 0;
2037}
2038
Sean Wang3e60b742016-09-22 16:42:03 +08002039int mtk_get_link_ksettings(struct net_device *ndev,
2040 struct ethtool_link_ksettings *cmd)
John Crispin656e7052016-03-08 11:29:55 +01002041{
Sean Wang3e60b742016-09-22 16:42:03 +08002042 struct mtk_mac *mac = netdev_priv(ndev);
John Crispin656e7052016-03-08 11:29:55 +01002043
Sean Wangdce6fa42016-09-14 23:13:21 +08002044 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2045 return -EBUSY;
2046
Sean Wang3e60b742016-09-22 16:42:03 +08002047 return phy_ethtool_ksettings_get(ndev->phydev, cmd);
John Crispin656e7052016-03-08 11:29:55 +01002048}
2049
Sean Wang3e60b742016-09-22 16:42:03 +08002050int mtk_set_link_ksettings(struct net_device *ndev,
2051 const struct ethtool_link_ksettings *cmd)
John Crispin656e7052016-03-08 11:29:55 +01002052{
Sean Wang3e60b742016-09-22 16:42:03 +08002053 struct mtk_mac *mac = netdev_priv(ndev);
John Crispin656e7052016-03-08 11:29:55 +01002054
Sean Wang3e60b742016-09-22 16:42:03 +08002055 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2056 return -EBUSY;
John Crispin656e7052016-03-08 11:29:55 +01002057
Sean Wang3e60b742016-09-22 16:42:03 +08002058 return phy_ethtool_ksettings_set(ndev->phydev, cmd);
John Crispin656e7052016-03-08 11:29:55 +01002059}
2060
2061static void mtk_get_drvinfo(struct net_device *dev,
2062 struct ethtool_drvinfo *info)
2063{
2064 struct mtk_mac *mac = netdev_priv(dev);
2065
2066 strlcpy(info->driver, mac->hw->dev->driver->name, sizeof(info->driver));
2067 strlcpy(info->bus_info, dev_name(mac->hw->dev), sizeof(info->bus_info));
2068 info->n_stats = ARRAY_SIZE(mtk_ethtool_stats);
2069}
2070
2071static u32 mtk_get_msglevel(struct net_device *dev)
2072{
2073 struct mtk_mac *mac = netdev_priv(dev);
2074
2075 return mac->hw->msg_enable;
2076}
2077
2078static void mtk_set_msglevel(struct net_device *dev, u32 value)
2079{
2080 struct mtk_mac *mac = netdev_priv(dev);
2081
2082 mac->hw->msg_enable = value;
2083}
2084
2085static int mtk_nway_reset(struct net_device *dev)
2086{
2087 struct mtk_mac *mac = netdev_priv(dev);
2088
Sean Wangdce6fa42016-09-14 23:13:21 +08002089 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2090 return -EBUSY;
2091
Sean Wang2364c5c2016-09-22 16:33:35 +08002092 return genphy_restart_aneg(dev->phydev);
John Crispin656e7052016-03-08 11:29:55 +01002093}
2094
2095static u32 mtk_get_link(struct net_device *dev)
2096{
2097 struct mtk_mac *mac = netdev_priv(dev);
2098 int err;
2099
Sean Wangdce6fa42016-09-14 23:13:21 +08002100 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2101 return -EBUSY;
2102
Sean Wang2364c5c2016-09-22 16:33:35 +08002103 err = genphy_update_link(dev->phydev);
John Crispin656e7052016-03-08 11:29:55 +01002104 if (err)
2105 return ethtool_op_get_link(dev);
2106
Sean Wang2364c5c2016-09-22 16:33:35 +08002107 return dev->phydev->link;
John Crispin656e7052016-03-08 11:29:55 +01002108}
2109
2110static void mtk_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2111{
2112 int i;
2113
2114 switch (stringset) {
2115 case ETH_SS_STATS:
2116 for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++) {
2117 memcpy(data, mtk_ethtool_stats[i].str, ETH_GSTRING_LEN);
2118 data += ETH_GSTRING_LEN;
2119 }
2120 break;
2121 }
2122}
2123
2124static int mtk_get_sset_count(struct net_device *dev, int sset)
2125{
2126 switch (sset) {
2127 case ETH_SS_STATS:
2128 return ARRAY_SIZE(mtk_ethtool_stats);
2129 default:
2130 return -EOPNOTSUPP;
2131 }
2132}
2133
2134static void mtk_get_ethtool_stats(struct net_device *dev,
2135 struct ethtool_stats *stats, u64 *data)
2136{
2137 struct mtk_mac *mac = netdev_priv(dev);
2138 struct mtk_hw_stats *hwstats = mac->hw_stats;
2139 u64 *data_src, *data_dst;
2140 unsigned int start;
2141 int i;
2142
Sean Wangdce6fa42016-09-14 23:13:21 +08002143 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2144 return;
2145
John Crispin656e7052016-03-08 11:29:55 +01002146 if (netif_running(dev) && netif_device_present(dev)) {
2147 if (spin_trylock(&hwstats->stats_lock)) {
2148 mtk_stats_update_mac(mac);
2149 spin_unlock(&hwstats->stats_lock);
2150 }
2151 }
2152
Sean Wang94d308d2016-09-20 11:26:48 +08002153 data_src = (u64 *)hwstats;
2154
John Crispin656e7052016-03-08 11:29:55 +01002155 do {
John Crispin656e7052016-03-08 11:29:55 +01002156 data_dst = data;
2157 start = u64_stats_fetch_begin_irq(&hwstats->syncp);
2158
2159 for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++)
2160 *data_dst++ = *(data_src + mtk_ethtool_stats[i].offset);
2161 } while (u64_stats_fetch_retry_irq(&hwstats->syncp, start));
2162}
2163
Nelson Chang7aab7472016-09-17 23:50:56 +08002164static int mtk_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
2165 u32 *rule_locs)
2166{
2167 int ret = -EOPNOTSUPP;
2168
2169 switch (cmd->cmd) {
2170 case ETHTOOL_GRXRINGS:
2171 if (dev->features & NETIF_F_LRO) {
2172 cmd->data = MTK_MAX_RX_RING_NUM;
2173 ret = 0;
2174 }
2175 break;
2176 case ETHTOOL_GRXCLSRLCNT:
2177 if (dev->features & NETIF_F_LRO) {
2178 struct mtk_mac *mac = netdev_priv(dev);
2179
2180 cmd->rule_cnt = mac->hwlro_ip_cnt;
2181 ret = 0;
2182 }
2183 break;
2184 case ETHTOOL_GRXCLSRULE:
2185 if (dev->features & NETIF_F_LRO)
2186 ret = mtk_hwlro_get_fdir_entry(dev, cmd);
2187 break;
2188 case ETHTOOL_GRXCLSRLALL:
2189 if (dev->features & NETIF_F_LRO)
2190 ret = mtk_hwlro_get_fdir_all(dev, cmd,
2191 rule_locs);
2192 break;
2193 default:
2194 break;
2195 }
2196
2197 return ret;
2198}
2199
2200static int mtk_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
2201{
2202 int ret = -EOPNOTSUPP;
2203
2204 switch (cmd->cmd) {
2205 case ETHTOOL_SRXCLSRLINS:
2206 if (dev->features & NETIF_F_LRO)
2207 ret = mtk_hwlro_add_ipaddr(dev, cmd);
2208 break;
2209 case ETHTOOL_SRXCLSRLDEL:
2210 if (dev->features & NETIF_F_LRO)
2211 ret = mtk_hwlro_del_ipaddr(dev, cmd);
2212 break;
2213 default:
2214 break;
2215 }
2216
2217 return ret;
2218}
2219
Julia Lawall6a38cb12016-09-01 00:21:19 +02002220static const struct ethtool_ops mtk_ethtool_ops = {
Sean Wang3e60b742016-09-22 16:42:03 +08002221 .get_link_ksettings = mtk_get_link_ksettings,
2222 .set_link_ksettings = mtk_set_link_ksettings,
John Crispin656e7052016-03-08 11:29:55 +01002223 .get_drvinfo = mtk_get_drvinfo,
2224 .get_msglevel = mtk_get_msglevel,
2225 .set_msglevel = mtk_set_msglevel,
2226 .nway_reset = mtk_nway_reset,
2227 .get_link = mtk_get_link,
2228 .get_strings = mtk_get_strings,
2229 .get_sset_count = mtk_get_sset_count,
2230 .get_ethtool_stats = mtk_get_ethtool_stats,
Nelson Chang7aab7472016-09-17 23:50:56 +08002231 .get_rxnfc = mtk_get_rxnfc,
2232 .set_rxnfc = mtk_set_rxnfc,
John Crispin656e7052016-03-08 11:29:55 +01002233};
2234
2235static const struct net_device_ops mtk_netdev_ops = {
2236 .ndo_init = mtk_init,
2237 .ndo_uninit = mtk_uninit,
2238 .ndo_open = mtk_open,
2239 .ndo_stop = mtk_stop,
2240 .ndo_start_xmit = mtk_start_xmit,
2241 .ndo_set_mac_address = mtk_set_mac_address,
2242 .ndo_validate_addr = eth_validate_addr,
2243 .ndo_do_ioctl = mtk_do_ioctl,
2244 .ndo_change_mtu = eth_change_mtu,
2245 .ndo_tx_timeout = mtk_tx_timeout,
2246 .ndo_get_stats64 = mtk_get_stats64,
Nelson Chang7aab7472016-09-17 23:50:56 +08002247 .ndo_fix_features = mtk_fix_features,
2248 .ndo_set_features = mtk_set_features,
John Crispin656e7052016-03-08 11:29:55 +01002249#ifdef CONFIG_NET_POLL_CONTROLLER
2250 .ndo_poll_controller = mtk_poll_controller,
2251#endif
2252};
2253
2254static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np)
2255{
2256 struct mtk_mac *mac;
2257 const __be32 *_id = of_get_property(np, "reg", NULL);
2258 int id, err;
2259
2260 if (!_id) {
2261 dev_err(eth->dev, "missing mac id\n");
2262 return -EINVAL;
2263 }
2264
2265 id = be32_to_cpup(_id);
2266 if (id >= MTK_MAC_COUNT) {
2267 dev_err(eth->dev, "%d is not a valid mac id\n", id);
2268 return -EINVAL;
2269 }
2270
2271 if (eth->netdev[id]) {
2272 dev_err(eth->dev, "duplicate mac id found: %d\n", id);
2273 return -EINVAL;
2274 }
2275
2276 eth->netdev[id] = alloc_etherdev(sizeof(*mac));
2277 if (!eth->netdev[id]) {
2278 dev_err(eth->dev, "alloc_etherdev failed\n");
2279 return -ENOMEM;
2280 }
2281 mac = netdev_priv(eth->netdev[id]);
2282 eth->mac[id] = mac;
2283 mac->id = id;
2284 mac->hw = eth;
2285 mac->of_node = np;
John Crispin656e7052016-03-08 11:29:55 +01002286
Nelson Changee406812016-09-17 23:50:55 +08002287 memset(mac->hwlro_ip, 0, sizeof(mac->hwlro_ip));
2288 mac->hwlro_ip_cnt = 0;
2289
John Crispin656e7052016-03-08 11:29:55 +01002290 mac->hw_stats = devm_kzalloc(eth->dev,
2291 sizeof(*mac->hw_stats),
2292 GFP_KERNEL);
2293 if (!mac->hw_stats) {
2294 dev_err(eth->dev, "failed to allocate counter memory\n");
2295 err = -ENOMEM;
2296 goto free_netdev;
2297 }
2298 spin_lock_init(&mac->hw_stats->stats_lock);
sean.wang@mediatek.comd70056522016-08-13 19:16:18 +08002299 u64_stats_init(&mac->hw_stats->syncp);
John Crispin656e7052016-03-08 11:29:55 +01002300 mac->hw_stats->reg_offset = id * MTK_STAT_OFFSET;
2301
2302 SET_NETDEV_DEV(eth->netdev[id], eth->dev);
John Crispineaadf9f2016-06-10 13:28:05 +02002303 eth->netdev[id]->watchdog_timeo = 5 * HZ;
John Crispin656e7052016-03-08 11:29:55 +01002304 eth->netdev[id]->netdev_ops = &mtk_netdev_ops;
2305 eth->netdev[id]->base_addr = (unsigned long)eth->base;
Nelson Changee406812016-09-17 23:50:55 +08002306
2307 eth->netdev[id]->hw_features = MTK_HW_FEATURES;
2308 if (eth->hwlro)
2309 eth->netdev[id]->hw_features |= NETIF_F_LRO;
2310
John Crispin656e7052016-03-08 11:29:55 +01002311 eth->netdev[id]->vlan_features = MTK_HW_FEATURES &
2312 ~(NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX);
2313 eth->netdev[id]->features |= MTK_HW_FEATURES;
2314 eth->netdev[id]->ethtool_ops = &mtk_ethtool_ops;
2315
John Crispin80673022016-06-29 13:38:11 +02002316 eth->netdev[id]->irq = eth->irq[0];
John Crispin656e7052016-03-08 11:29:55 +01002317 return 0;
2318
2319free_netdev:
2320 free_netdev(eth->netdev[id]);
2321 return err;
2322}
2323
2324static int mtk_probe(struct platform_device *pdev)
2325{
2326 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2327 struct device_node *mac_np;
2328 const struct of_device_id *match;
2329 struct mtk_soc_data *soc;
2330 struct mtk_eth *eth;
2331 int err;
John Crispin80673022016-06-29 13:38:11 +02002332 int i;
John Crispin656e7052016-03-08 11:29:55 +01002333
John Crispin656e7052016-03-08 11:29:55 +01002334 match = of_match_device(of_mtk_match, &pdev->dev);
2335 soc = (struct mtk_soc_data *)match->data;
2336
2337 eth = devm_kzalloc(&pdev->dev, sizeof(*eth), GFP_KERNEL);
2338 if (!eth)
2339 return -ENOMEM;
2340
Sean Wang549e5492016-09-01 10:47:28 +08002341 eth->dev = &pdev->dev;
John Crispin656e7052016-03-08 11:29:55 +01002342 eth->base = devm_ioremap_resource(&pdev->dev, res);
Vladimir Zapolskiy621e49f2016-03-23 01:06:04 +02002343 if (IS_ERR(eth->base))
2344 return PTR_ERR(eth->base);
John Crispin656e7052016-03-08 11:29:55 +01002345
2346 spin_lock_init(&eth->page_lock);
John Crispin7bc9cce2016-06-29 13:38:10 +02002347 spin_lock_init(&eth->irq_lock);
John Crispin656e7052016-03-08 11:29:55 +01002348
2349 eth->ethsys = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
2350 "mediatek,ethsys");
2351 if (IS_ERR(eth->ethsys)) {
2352 dev_err(&pdev->dev, "no ethsys regmap found\n");
2353 return PTR_ERR(eth->ethsys);
2354 }
2355
2356 eth->pctl = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
2357 "mediatek,pctl");
2358 if (IS_ERR(eth->pctl)) {
2359 dev_err(&pdev->dev, "no pctl regmap found\n");
2360 return PTR_ERR(eth->pctl);
2361 }
2362
Nelson Changee406812016-09-17 23:50:55 +08002363 eth->hwlro = of_property_read_bool(pdev->dev.of_node, "mediatek,hwlro");
2364
John Crispin80673022016-06-29 13:38:11 +02002365 for (i = 0; i < 3; i++) {
2366 eth->irq[i] = platform_get_irq(pdev, i);
2367 if (eth->irq[i] < 0) {
2368 dev_err(&pdev->dev, "no IRQ%d resource found\n", i);
2369 return -ENXIO;
2370 }
John Crispin656e7052016-03-08 11:29:55 +01002371 }
Sean Wang549e5492016-09-01 10:47:28 +08002372 for (i = 0; i < ARRAY_SIZE(eth->clks); i++) {
2373 eth->clks[i] = devm_clk_get(eth->dev,
2374 mtk_clks_source_name[i]);
2375 if (IS_ERR(eth->clks[i])) {
2376 if (PTR_ERR(eth->clks[i]) == -EPROBE_DEFER)
2377 return -EPROBE_DEFER;
2378 return -ENODEV;
2379 }
2380 }
John Crispin656e7052016-03-08 11:29:55 +01002381
John Crispin656e7052016-03-08 11:29:55 +01002382 eth->msg_enable = netif_msg_init(mtk_msg_level, MTK_DEFAULT_MSG_ENABLE);
John Crispin7c78b4a2016-04-08 00:54:10 +02002383 INIT_WORK(&eth->pending_work, mtk_pending_work);
John Crispin656e7052016-03-08 11:29:55 +01002384
2385 err = mtk_hw_init(eth);
2386 if (err)
2387 return err;
2388
2389 for_each_child_of_node(pdev->dev.of_node, mac_np) {
2390 if (!of_device_is_compatible(mac_np,
2391 "mediatek,eth-mac"))
2392 continue;
2393
2394 if (!of_device_is_available(mac_np))
2395 continue;
2396
2397 err = mtk_add_mac(eth, mac_np);
2398 if (err)
Sean Wang8a8a9e82016-09-14 23:13:17 +08002399 goto err_deinit_hw;
John Crispin656e7052016-03-08 11:29:55 +01002400 }
2401
Sean Wang85574db2016-09-14 23:13:15 +08002402 err = devm_request_irq(eth->dev, eth->irq[1], mtk_handle_irq_tx, 0,
2403 dev_name(eth->dev), eth);
2404 if (err)
2405 goto err_free_dev;
2406
2407 err = devm_request_irq(eth->dev, eth->irq[2], mtk_handle_irq_rx, 0,
2408 dev_name(eth->dev), eth);
2409 if (err)
2410 goto err_free_dev;
2411
2412 err = mtk_mdio_init(eth);
2413 if (err)
2414 goto err_free_dev;
2415
2416 for (i = 0; i < MTK_MAX_DEVS; i++) {
2417 if (!eth->netdev[i])
2418 continue;
2419
2420 err = register_netdev(eth->netdev[i]);
2421 if (err) {
2422 dev_err(eth->dev, "error bringing up device\n");
Sean Wang8a8a9e82016-09-14 23:13:17 +08002423 goto err_deinit_mdio;
Sean Wang85574db2016-09-14 23:13:15 +08002424 } else
2425 netif_info(eth, probe, eth->netdev[i],
2426 "mediatek frame engine at 0x%08lx, irq %d\n",
2427 eth->netdev[i]->base_addr, eth->irq[0]);
2428 }
2429
John Crispin656e7052016-03-08 11:29:55 +01002430 /* we run 2 devices on the same DMA ring so we need a dummy device
2431 * for NAPI to work
2432 */
2433 init_dummy_netdev(&eth->dummy_dev);
John Crispin80673022016-06-29 13:38:11 +02002434 netif_napi_add(&eth->dummy_dev, &eth->tx_napi, mtk_napi_tx,
2435 MTK_NAPI_WEIGHT);
2436 netif_napi_add(&eth->dummy_dev, &eth->rx_napi, mtk_napi_rx,
John Crispin656e7052016-03-08 11:29:55 +01002437 MTK_NAPI_WEIGHT);
2438
2439 platform_set_drvdata(pdev, eth);
2440
2441 return 0;
2442
Sean Wang8a8a9e82016-09-14 23:13:17 +08002443err_deinit_mdio:
2444 mtk_mdio_cleanup(eth);
John Crispin656e7052016-03-08 11:29:55 +01002445err_free_dev:
Sean Wang8a8a9e82016-09-14 23:13:17 +08002446 mtk_free_dev(eth);
2447err_deinit_hw:
2448 mtk_hw_deinit(eth);
2449
John Crispin656e7052016-03-08 11:29:55 +01002450 return err;
2451}
2452
2453static int mtk_remove(struct platform_device *pdev)
2454{
2455 struct mtk_eth *eth = platform_get_drvdata(pdev);
Sean Wang79e9a412016-09-01 10:47:32 +08002456 int i;
John Crispin656e7052016-03-08 11:29:55 +01002457
Sean Wang79e9a412016-09-01 10:47:32 +08002458 /* stop all devices to make sure that dma is properly shut down */
2459 for (i = 0; i < MTK_MAC_COUNT; i++) {
2460 if (!eth->netdev[i])
2461 continue;
2462 mtk_stop(eth->netdev[i]);
2463 }
John Crispin656e7052016-03-08 11:29:55 +01002464
Sean Wangbf253fb2016-09-14 23:13:16 +08002465 mtk_hw_deinit(eth);
John Crispin656e7052016-03-08 11:29:55 +01002466
John Crispin80673022016-06-29 13:38:11 +02002467 netif_napi_del(&eth->tx_napi);
John Crispin656e7052016-03-08 11:29:55 +01002468 netif_napi_del(&eth->rx_napi);
2469 mtk_cleanup(eth);
Sean Wange82f7142016-09-20 23:53:24 +08002470 mtk_mdio_cleanup(eth);
John Crispin656e7052016-03-08 11:29:55 +01002471
2472 return 0;
2473}
2474
2475const struct of_device_id of_mtk_match[] = {
2476 { .compatible = "mediatek,mt7623-eth" },
2477 {},
2478};
2479
2480static struct platform_driver mtk_driver = {
2481 .probe = mtk_probe,
2482 .remove = mtk_remove,
2483 .driver = {
2484 .name = "mtk_soc_eth",
John Crispin656e7052016-03-08 11:29:55 +01002485 .of_match_table = of_mtk_match,
2486 },
2487};
2488
2489module_platform_driver(mtk_driver);
2490
2491MODULE_LICENSE("GPL");
2492MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
2493MODULE_DESCRIPTION("Ethernet driver for MediaTek SoC");