blob: 481f3609a1ea23a5bc727a173528696d2ea59ac2 [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[] = {
55 "ethif", "esw", "gp1", "gp2"
56};
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
138static void mtk_phy_link_adjust(struct net_device *dev)
139{
140 struct mtk_mac *mac = netdev_priv(dev);
John Crispin08ef55c2016-06-03 10:17:07 +0200141 u16 lcl_adv = 0, rmt_adv = 0;
142 u8 flowctrl;
John Crispin656e7052016-03-08 11:29:55 +0100143 u32 mcr = MAC_MCR_MAX_RX_1536 | MAC_MCR_IPG_CFG |
144 MAC_MCR_FORCE_MODE | MAC_MCR_TX_EN |
145 MAC_MCR_RX_EN | MAC_MCR_BACKOFF_EN |
146 MAC_MCR_BACKPR_EN;
147
Sean Wangdce6fa42016-09-14 23:13:21 +0800148 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
149 return;
150
John Crispin656e7052016-03-08 11:29:55 +0100151 switch (mac->phy_dev->speed) {
152 case SPEED_1000:
153 mcr |= MAC_MCR_SPEED_1000;
154 break;
155 case SPEED_100:
156 mcr |= MAC_MCR_SPEED_100;
157 break;
158 };
159
160 if (mac->phy_dev->link)
161 mcr |= MAC_MCR_FORCE_LINK;
162
John Crispin08ef55c2016-06-03 10:17:07 +0200163 if (mac->phy_dev->duplex) {
John Crispin656e7052016-03-08 11:29:55 +0100164 mcr |= MAC_MCR_FORCE_DPX;
165
John Crispin08ef55c2016-06-03 10:17:07 +0200166 if (mac->phy_dev->pause)
167 rmt_adv = LPA_PAUSE_CAP;
168 if (mac->phy_dev->asym_pause)
169 rmt_adv |= LPA_PAUSE_ASYM;
170
171 if (mac->phy_dev->advertising & ADVERTISED_Pause)
172 lcl_adv |= ADVERTISE_PAUSE_CAP;
173 if (mac->phy_dev->advertising & ADVERTISED_Asym_Pause)
174 lcl_adv |= ADVERTISE_PAUSE_ASYM;
175
176 flowctrl = mii_resolve_flowctrl_fdx(lcl_adv, rmt_adv);
177
178 if (flowctrl & FLOW_CTRL_TX)
179 mcr |= MAC_MCR_FORCE_TX_FC;
180 if (flowctrl & FLOW_CTRL_RX)
181 mcr |= MAC_MCR_FORCE_RX_FC;
182
183 netif_dbg(mac->hw, link, dev, "rx pause %s, tx pause %s\n",
184 flowctrl & FLOW_CTRL_RX ? "enabled" : "disabled",
185 flowctrl & FLOW_CTRL_TX ? "enabled" : "disabled");
186 }
John Crispin656e7052016-03-08 11:29:55 +0100187
188 mtk_w32(mac->hw, mcr, MTK_MAC_MCR(mac->id));
189
190 if (mac->phy_dev->link)
191 netif_carrier_on(dev);
192 else
193 netif_carrier_off(dev);
194}
195
196static int mtk_phy_connect_node(struct mtk_eth *eth, struct mtk_mac *mac,
197 struct device_node *phy_node)
198{
199 const __be32 *_addr = NULL;
200 struct phy_device *phydev;
201 int phy_mode, addr;
202
203 _addr = of_get_property(phy_node, "reg", NULL);
204
205 if (!_addr || (be32_to_cpu(*_addr) >= 0x20)) {
206 pr_err("%s: invalid phy address\n", phy_node->name);
207 return -EINVAL;
208 }
209 addr = be32_to_cpu(*_addr);
210 phy_mode = of_get_phy_mode(phy_node);
211 if (phy_mode < 0) {
212 dev_err(eth->dev, "incorrect phy-mode %d\n", phy_mode);
213 return -EINVAL;
214 }
215
216 phydev = of_phy_connect(eth->netdev[mac->id], phy_node,
217 mtk_phy_link_adjust, 0, phy_mode);
Dan Carpenter977bc202016-03-15 10:18:49 +0300218 if (!phydev) {
John Crispin656e7052016-03-08 11:29:55 +0100219 dev_err(eth->dev, "could not connect to PHY\n");
Dan Carpenter977bc202016-03-15 10:18:49 +0300220 return -ENODEV;
John Crispin656e7052016-03-08 11:29:55 +0100221 }
222
223 dev_info(eth->dev,
224 "connected mac %d to PHY at %s [uid=%08x, driver=%s]\n",
225 mac->id, phydev_name(phydev), phydev->phy_id,
226 phydev->drv->name);
227
228 mac->phy_dev = phydev;
229
230 return 0;
231}
232
233static int mtk_phy_connect(struct mtk_mac *mac)
234{
235 struct mtk_eth *eth = mac->hw;
236 struct device_node *np;
Sean Wang9ea4d312016-09-14 23:13:19 +0800237 u32 val;
John Crispin656e7052016-03-08 11:29:55 +0100238
239 np = of_parse_phandle(mac->of_node, "phy-handle", 0);
John Crispin0c72c502016-06-03 10:17:08 +0200240 if (!np && of_phy_is_fixed_link(mac->of_node))
241 if (!of_phy_register_fixed_link(mac->of_node))
242 np = of_node_get(mac->of_node);
John Crispin656e7052016-03-08 11:29:55 +0100243 if (!np)
244 return -ENODEV;
245
246 switch (of_get_phy_mode(np)) {
John Crispin37920fc2016-06-03 10:17:09 +0200247 case PHY_INTERFACE_MODE_RGMII_TXID:
248 case PHY_INTERFACE_MODE_RGMII_RXID:
249 case PHY_INTERFACE_MODE_RGMII_ID:
John Crispin656e7052016-03-08 11:29:55 +0100250 case PHY_INTERFACE_MODE_RGMII:
Sean Wang9ea4d312016-09-14 23:13:19 +0800251 mac->ge_mode = 0;
John Crispin656e7052016-03-08 11:29:55 +0100252 break;
253 case PHY_INTERFACE_MODE_MII:
Sean Wang9ea4d312016-09-14 23:13:19 +0800254 mac->ge_mode = 1;
John Crispin656e7052016-03-08 11:29:55 +0100255 break;
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800256 case PHY_INTERFACE_MODE_REVMII:
Sean Wang9ea4d312016-09-14 23:13:19 +0800257 mac->ge_mode = 2;
John Crispin656e7052016-03-08 11:29:55 +0100258 break;
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800259 case PHY_INTERFACE_MODE_RMII:
260 if (!mac->id)
261 goto err_phy;
Sean Wang9ea4d312016-09-14 23:13:19 +0800262 mac->ge_mode = 3;
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800263 break;
John Crispin656e7052016-03-08 11:29:55 +0100264 default:
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800265 goto err_phy;
John Crispin656e7052016-03-08 11:29:55 +0100266 }
267
268 /* put the gmac into the right mode */
269 regmap_read(eth->ethsys, ETHSYS_SYSCFG0, &val);
270 val &= ~SYSCFG0_GE_MODE(SYSCFG0_GE_MASK, mac->id);
Sean Wang9ea4d312016-09-14 23:13:19 +0800271 val |= SYSCFG0_GE_MODE(mac->ge_mode, mac->id);
John Crispin656e7052016-03-08 11:29:55 +0100272 regmap_write(eth->ethsys, ETHSYS_SYSCFG0, val);
273
274 mtk_phy_connect_node(eth, mac, np);
275 mac->phy_dev->autoneg = AUTONEG_ENABLE;
276 mac->phy_dev->speed = 0;
277 mac->phy_dev->duplex = 0;
sean.wang@mediatek.comb2025c72016-08-16 13:55:14 +0800278
279 if (of_phy_is_fixed_link(mac->of_node))
280 mac->phy_dev->supported |=
281 SUPPORTED_Pause | SUPPORTED_Asym_Pause;
282
John Crispin08ef55c2016-06-03 10:17:07 +0200283 mac->phy_dev->supported &= PHY_GBIT_FEATURES | SUPPORTED_Pause |
284 SUPPORTED_Asym_Pause;
John Crispin656e7052016-03-08 11:29:55 +0100285 mac->phy_dev->advertising = mac->phy_dev->supported |
286 ADVERTISED_Autoneg;
287 phy_start_aneg(mac->phy_dev);
288
sean.wang@mediatek.come8c29932016-08-13 19:16:19 +0800289 of_node_put(np);
290
John Crispin656e7052016-03-08 11:29:55 +0100291 return 0;
sean.wang@mediatek.com8ca7f4f2016-08-16 13:55:13 +0800292
293err_phy:
294 of_node_put(np);
295 dev_err(eth->dev, "invalid phy_mode\n");
296 return -EINVAL;
John Crispin656e7052016-03-08 11:29:55 +0100297}
298
299static int mtk_mdio_init(struct mtk_eth *eth)
300{
301 struct device_node *mii_np;
Sean Wang1e515b72016-09-01 10:47:34 +0800302 int ret;
John Crispin656e7052016-03-08 11:29:55 +0100303
304 mii_np = of_get_child_by_name(eth->dev->of_node, "mdio-bus");
305 if (!mii_np) {
306 dev_err(eth->dev, "no %s child node found", "mdio-bus");
307 return -ENODEV;
308 }
309
310 if (!of_device_is_available(mii_np)) {
Sean Wangaa6e8a52016-09-01 10:47:35 +0800311 ret = -ENODEV;
John Crispin656e7052016-03-08 11:29:55 +0100312 goto err_put_node;
313 }
314
Sean Wang1e515b72016-09-01 10:47:34 +0800315 eth->mii_bus = devm_mdiobus_alloc(eth->dev);
John Crispin656e7052016-03-08 11:29:55 +0100316 if (!eth->mii_bus) {
Sean Wang1e515b72016-09-01 10:47:34 +0800317 ret = -ENOMEM;
John Crispin656e7052016-03-08 11:29:55 +0100318 goto err_put_node;
319 }
320
321 eth->mii_bus->name = "mdio";
322 eth->mii_bus->read = mtk_mdio_read;
323 eth->mii_bus->write = mtk_mdio_write;
324 eth->mii_bus->priv = eth;
325 eth->mii_bus->parent = eth->dev;
326
327 snprintf(eth->mii_bus->id, MII_BUS_ID_SIZE, "%s", mii_np->name);
Sean Wang1e515b72016-09-01 10:47:34 +0800328 ret = of_mdiobus_register(eth->mii_bus, mii_np);
John Crispin656e7052016-03-08 11:29:55 +0100329
330err_put_node:
331 of_node_put(mii_np);
Sean Wang1e515b72016-09-01 10:47:34 +0800332 return ret;
John Crispin656e7052016-03-08 11:29:55 +0100333}
334
335static void mtk_mdio_cleanup(struct mtk_eth *eth)
336{
337 if (!eth->mii_bus)
338 return;
339
340 mdiobus_unregister(eth->mii_bus);
John Crispin656e7052016-03-08 11:29:55 +0100341}
342
Nelson Changbacfd112016-08-26 01:09:42 +0800343static inline void mtk_irq_disable(struct mtk_eth *eth,
344 unsigned reg, u32 mask)
John Crispin656e7052016-03-08 11:29:55 +0100345{
John Crispin7bc9cce2016-06-29 13:38:10 +0200346 unsigned long flags;
John Crispin656e7052016-03-08 11:29:55 +0100347 u32 val;
348
John Crispin7bc9cce2016-06-29 13:38:10 +0200349 spin_lock_irqsave(&eth->irq_lock, flags);
Nelson Changbacfd112016-08-26 01:09:42 +0800350 val = mtk_r32(eth, reg);
351 mtk_w32(eth, val & ~mask, reg);
John Crispin7bc9cce2016-06-29 13:38:10 +0200352 spin_unlock_irqrestore(&eth->irq_lock, flags);
John Crispin656e7052016-03-08 11:29:55 +0100353}
354
Nelson Changbacfd112016-08-26 01:09:42 +0800355static inline void mtk_irq_enable(struct mtk_eth *eth,
356 unsigned reg, u32 mask)
John Crispin656e7052016-03-08 11:29:55 +0100357{
John Crispin7bc9cce2016-06-29 13:38:10 +0200358 unsigned long flags;
John Crispin656e7052016-03-08 11:29:55 +0100359 u32 val;
360
John Crispin7bc9cce2016-06-29 13:38:10 +0200361 spin_lock_irqsave(&eth->irq_lock, flags);
Nelson Changbacfd112016-08-26 01:09:42 +0800362 val = mtk_r32(eth, reg);
363 mtk_w32(eth, val | mask, reg);
John Crispin7bc9cce2016-06-29 13:38:10 +0200364 spin_unlock_irqrestore(&eth->irq_lock, flags);
John Crispin656e7052016-03-08 11:29:55 +0100365}
366
367static int mtk_set_mac_address(struct net_device *dev, void *p)
368{
369 int ret = eth_mac_addr(dev, p);
370 struct mtk_mac *mac = netdev_priv(dev);
371 const char *macaddr = dev->dev_addr;
John Crispin656e7052016-03-08 11:29:55 +0100372
373 if (ret)
374 return ret;
375
Sean Wangdce6fa42016-09-14 23:13:21 +0800376 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
377 return -EBUSY;
378
Sean Wange3e96522016-08-11 17:51:00 +0800379 spin_lock_bh(&mac->hw->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100380 mtk_w32(mac->hw, (macaddr[0] << 8) | macaddr[1],
381 MTK_GDMA_MAC_ADRH(mac->id));
382 mtk_w32(mac->hw, (macaddr[2] << 24) | (macaddr[3] << 16) |
383 (macaddr[4] << 8) | macaddr[5],
384 MTK_GDMA_MAC_ADRL(mac->id));
Sean Wange3e96522016-08-11 17:51:00 +0800385 spin_unlock_bh(&mac->hw->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100386
387 return 0;
388}
389
390void mtk_stats_update_mac(struct mtk_mac *mac)
391{
392 struct mtk_hw_stats *hw_stats = mac->hw_stats;
393 unsigned int base = MTK_GDM1_TX_GBCNT;
394 u64 stats;
395
396 base += hw_stats->reg_offset;
397
398 u64_stats_update_begin(&hw_stats->syncp);
399
400 hw_stats->rx_bytes += mtk_r32(mac->hw, base);
401 stats = mtk_r32(mac->hw, base + 0x04);
402 if (stats)
403 hw_stats->rx_bytes += (stats << 32);
404 hw_stats->rx_packets += mtk_r32(mac->hw, base + 0x08);
405 hw_stats->rx_overflow += mtk_r32(mac->hw, base + 0x10);
406 hw_stats->rx_fcs_errors += mtk_r32(mac->hw, base + 0x14);
407 hw_stats->rx_short_errors += mtk_r32(mac->hw, base + 0x18);
408 hw_stats->rx_long_errors += mtk_r32(mac->hw, base + 0x1c);
409 hw_stats->rx_checksum_errors += mtk_r32(mac->hw, base + 0x20);
410 hw_stats->rx_flow_control_packets +=
411 mtk_r32(mac->hw, base + 0x24);
412 hw_stats->tx_skip += mtk_r32(mac->hw, base + 0x28);
413 hw_stats->tx_collisions += mtk_r32(mac->hw, base + 0x2c);
414 hw_stats->tx_bytes += mtk_r32(mac->hw, base + 0x30);
415 stats = mtk_r32(mac->hw, base + 0x34);
416 if (stats)
417 hw_stats->tx_bytes += (stats << 32);
418 hw_stats->tx_packets += mtk_r32(mac->hw, base + 0x38);
419 u64_stats_update_end(&hw_stats->syncp);
420}
421
422static void mtk_stats_update(struct mtk_eth *eth)
423{
424 int i;
425
426 for (i = 0; i < MTK_MAC_COUNT; i++) {
427 if (!eth->mac[i] || !eth->mac[i]->hw_stats)
428 continue;
429 if (spin_trylock(&eth->mac[i]->hw_stats->stats_lock)) {
430 mtk_stats_update_mac(eth->mac[i]);
431 spin_unlock(&eth->mac[i]->hw_stats->stats_lock);
432 }
433 }
434}
435
436static struct rtnl_link_stats64 *mtk_get_stats64(struct net_device *dev,
437 struct rtnl_link_stats64 *storage)
438{
439 struct mtk_mac *mac = netdev_priv(dev);
440 struct mtk_hw_stats *hw_stats = mac->hw_stats;
441 unsigned int start;
442
443 if (netif_running(dev) && netif_device_present(dev)) {
444 if (spin_trylock(&hw_stats->stats_lock)) {
445 mtk_stats_update_mac(mac);
446 spin_unlock(&hw_stats->stats_lock);
447 }
448 }
449
450 do {
451 start = u64_stats_fetch_begin_irq(&hw_stats->syncp);
452 storage->rx_packets = hw_stats->rx_packets;
453 storage->tx_packets = hw_stats->tx_packets;
454 storage->rx_bytes = hw_stats->rx_bytes;
455 storage->tx_bytes = hw_stats->tx_bytes;
456 storage->collisions = hw_stats->tx_collisions;
457 storage->rx_length_errors = hw_stats->rx_short_errors +
458 hw_stats->rx_long_errors;
459 storage->rx_over_errors = hw_stats->rx_overflow;
460 storage->rx_crc_errors = hw_stats->rx_fcs_errors;
461 storage->rx_errors = hw_stats->rx_checksum_errors;
462 storage->tx_aborted_errors = hw_stats->tx_skip;
463 } while (u64_stats_fetch_retry_irq(&hw_stats->syncp, start));
464
465 storage->tx_errors = dev->stats.tx_errors;
466 storage->rx_dropped = dev->stats.rx_dropped;
467 storage->tx_dropped = dev->stats.tx_dropped;
468
469 return storage;
470}
471
472static inline int mtk_max_frag_size(int mtu)
473{
474 /* make sure buf_size will be at least MTK_MAX_RX_LENGTH */
475 if (mtu + MTK_RX_ETH_HLEN < MTK_MAX_RX_LENGTH)
476 mtu = MTK_MAX_RX_LENGTH - MTK_RX_ETH_HLEN;
477
478 return SKB_DATA_ALIGN(MTK_RX_HLEN + mtu) +
479 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
480}
481
482static inline int mtk_max_buf_size(int frag_size)
483{
484 int buf_size = frag_size - NET_SKB_PAD - NET_IP_ALIGN -
485 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
486
487 WARN_ON(buf_size < MTK_MAX_RX_LENGTH);
488
489 return buf_size;
490}
491
492static inline void mtk_rx_get_desc(struct mtk_rx_dma *rxd,
493 struct mtk_rx_dma *dma_rxd)
494{
495 rxd->rxd1 = READ_ONCE(dma_rxd->rxd1);
496 rxd->rxd2 = READ_ONCE(dma_rxd->rxd2);
497 rxd->rxd3 = READ_ONCE(dma_rxd->rxd3);
498 rxd->rxd4 = READ_ONCE(dma_rxd->rxd4);
499}
500
501/* the qdma core needs scratch memory to be setup */
502static int mtk_init_fq_dma(struct mtk_eth *eth)
503{
John Crispin605e4fe2016-06-10 13:27:59 +0200504 dma_addr_t phy_ring_tail;
John Crispin656e7052016-03-08 11:29:55 +0100505 int cnt = MTK_DMA_SIZE;
506 dma_addr_t dma_addr;
507 int i;
508
509 eth->scratch_ring = dma_alloc_coherent(eth->dev,
510 cnt * sizeof(struct mtk_tx_dma),
John Crispin605e4fe2016-06-10 13:27:59 +0200511 &eth->phy_scratch_ring,
John Crispin656e7052016-03-08 11:29:55 +0100512 GFP_ATOMIC | __GFP_ZERO);
513 if (unlikely(!eth->scratch_ring))
514 return -ENOMEM;
515
516 eth->scratch_head = kcalloc(cnt, MTK_QDMA_PAGE_SIZE,
517 GFP_KERNEL);
John Crispin562c5a72016-06-10 13:27:58 +0200518 if (unlikely(!eth->scratch_head))
519 return -ENOMEM;
520
John Crispin656e7052016-03-08 11:29:55 +0100521 dma_addr = dma_map_single(eth->dev,
522 eth->scratch_head, cnt * MTK_QDMA_PAGE_SIZE,
523 DMA_FROM_DEVICE);
524 if (unlikely(dma_mapping_error(eth->dev, dma_addr)))
525 return -ENOMEM;
526
527 memset(eth->scratch_ring, 0x0, sizeof(struct mtk_tx_dma) * cnt);
John Crispin605e4fe2016-06-10 13:27:59 +0200528 phy_ring_tail = eth->phy_scratch_ring +
John Crispin656e7052016-03-08 11:29:55 +0100529 (sizeof(struct mtk_tx_dma) * (cnt - 1));
530
531 for (i = 0; i < cnt; i++) {
532 eth->scratch_ring[i].txd1 =
533 (dma_addr + (i * MTK_QDMA_PAGE_SIZE));
534 if (i < cnt - 1)
John Crispin605e4fe2016-06-10 13:27:59 +0200535 eth->scratch_ring[i].txd2 = (eth->phy_scratch_ring +
John Crispin656e7052016-03-08 11:29:55 +0100536 ((i + 1) * sizeof(struct mtk_tx_dma)));
537 eth->scratch_ring[i].txd3 = TX_DMA_SDL(MTK_QDMA_PAGE_SIZE);
538 }
539
John Crispin605e4fe2016-06-10 13:27:59 +0200540 mtk_w32(eth, eth->phy_scratch_ring, MTK_QDMA_FQ_HEAD);
John Crispin656e7052016-03-08 11:29:55 +0100541 mtk_w32(eth, phy_ring_tail, MTK_QDMA_FQ_TAIL);
542 mtk_w32(eth, (cnt << 16) | cnt, MTK_QDMA_FQ_CNT);
543 mtk_w32(eth, MTK_QDMA_PAGE_SIZE << 16, MTK_QDMA_FQ_BLEN);
544
545 return 0;
546}
547
548static inline void *mtk_qdma_phys_to_virt(struct mtk_tx_ring *ring, u32 desc)
549{
550 void *ret = ring->dma;
551
552 return ret + (desc - ring->phys);
553}
554
555static inline struct mtk_tx_buf *mtk_desc_to_tx_buf(struct mtk_tx_ring *ring,
556 struct mtk_tx_dma *txd)
557{
558 int idx = txd - ring->dma;
559
560 return &ring->buf[idx];
561}
562
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800563static void mtk_tx_unmap(struct mtk_eth *eth, struct mtk_tx_buf *tx_buf)
John Crispin656e7052016-03-08 11:29:55 +0100564{
565 if (tx_buf->flags & MTK_TX_FLAGS_SINGLE0) {
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800566 dma_unmap_single(eth->dev,
John Crispin656e7052016-03-08 11:29:55 +0100567 dma_unmap_addr(tx_buf, dma_addr0),
568 dma_unmap_len(tx_buf, dma_len0),
569 DMA_TO_DEVICE);
570 } else if (tx_buf->flags & MTK_TX_FLAGS_PAGE0) {
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800571 dma_unmap_page(eth->dev,
John Crispin656e7052016-03-08 11:29:55 +0100572 dma_unmap_addr(tx_buf, dma_addr0),
573 dma_unmap_len(tx_buf, dma_len0),
574 DMA_TO_DEVICE);
575 }
576 tx_buf->flags = 0;
577 if (tx_buf->skb &&
578 (tx_buf->skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC))
579 dev_kfree_skb_any(tx_buf->skb);
580 tx_buf->skb = NULL;
581}
582
583static int mtk_tx_map(struct sk_buff *skb, struct net_device *dev,
584 int tx_num, struct mtk_tx_ring *ring, bool gso)
585{
586 struct mtk_mac *mac = netdev_priv(dev);
587 struct mtk_eth *eth = mac->hw;
588 struct mtk_tx_dma *itxd, *txd;
589 struct mtk_tx_buf *tx_buf;
John Crispin656e7052016-03-08 11:29:55 +0100590 dma_addr_t mapped_addr;
591 unsigned int nr_frags;
592 int i, n_desc = 1;
Sean Wangc6f1dc42016-09-01 10:47:27 +0800593 u32 txd4 = 0, fport;
John Crispin656e7052016-03-08 11:29:55 +0100594
595 itxd = ring->next_free;
596 if (itxd == ring->last_free)
597 return -ENOMEM;
598
599 /* set the forward port */
Sean Wangc6f1dc42016-09-01 10:47:27 +0800600 fport = (mac->id + 1) << TX_DMA_FPORT_SHIFT;
601 txd4 |= fport;
John Crispin656e7052016-03-08 11:29:55 +0100602
603 tx_buf = mtk_desc_to_tx_buf(ring, itxd);
604 memset(tx_buf, 0, sizeof(*tx_buf));
605
606 if (gso)
607 txd4 |= TX_DMA_TSO;
608
609 /* TX Checksum offload */
610 if (skb->ip_summed == CHECKSUM_PARTIAL)
611 txd4 |= TX_DMA_CHKSUM;
612
613 /* VLAN header offload */
614 if (skb_vlan_tag_present(skb))
615 txd4 |= TX_DMA_INS_VLAN | skb_vlan_tag_get(skb);
616
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800617 mapped_addr = dma_map_single(eth->dev, skb->data,
John Crispin656e7052016-03-08 11:29:55 +0100618 skb_headlen(skb), DMA_TO_DEVICE);
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800619 if (unlikely(dma_mapping_error(eth->dev, mapped_addr)))
John Crispin656e7052016-03-08 11:29:55 +0100620 return -ENOMEM;
621
John Crispin656e7052016-03-08 11:29:55 +0100622 WRITE_ONCE(itxd->txd1, mapped_addr);
623 tx_buf->flags |= MTK_TX_FLAGS_SINGLE0;
624 dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr);
625 dma_unmap_len_set(tx_buf, dma_len0, skb_headlen(skb));
626
627 /* TX SG offload */
628 txd = itxd;
629 nr_frags = skb_shinfo(skb)->nr_frags;
630 for (i = 0; i < nr_frags; i++) {
631 struct skb_frag_struct *frag = &skb_shinfo(skb)->frags[i];
632 unsigned int offset = 0;
633 int frag_size = skb_frag_size(frag);
634
635 while (frag_size) {
636 bool last_frag = false;
637 unsigned int frag_map_size;
638
639 txd = mtk_qdma_phys_to_virt(ring, txd->txd2);
640 if (txd == ring->last_free)
641 goto err_dma;
642
643 n_desc++;
644 frag_map_size = min(frag_size, MTK_TX_DMA_BUF_LEN);
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800645 mapped_addr = skb_frag_dma_map(eth->dev, frag, offset,
John Crispin656e7052016-03-08 11:29:55 +0100646 frag_map_size,
647 DMA_TO_DEVICE);
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800648 if (unlikely(dma_mapping_error(eth->dev, mapped_addr)))
John Crispin656e7052016-03-08 11:29:55 +0100649 goto err_dma;
650
651 if (i == nr_frags - 1 &&
652 (frag_size - frag_map_size) == 0)
653 last_frag = true;
654
655 WRITE_ONCE(txd->txd1, mapped_addr);
656 WRITE_ONCE(txd->txd3, (TX_DMA_SWC |
657 TX_DMA_PLEN0(frag_map_size) |
John Crispin369f0452016-04-08 00:54:11 +0200658 last_frag * TX_DMA_LS0));
Sean Wangc6f1dc42016-09-01 10:47:27 +0800659 WRITE_ONCE(txd->txd4, fport);
John Crispin656e7052016-03-08 11:29:55 +0100660
661 tx_buf->skb = (struct sk_buff *)MTK_DMA_DUMMY_DESC;
662 tx_buf = mtk_desc_to_tx_buf(ring, txd);
663 memset(tx_buf, 0, sizeof(*tx_buf));
664
665 tx_buf->flags |= MTK_TX_FLAGS_PAGE0;
666 dma_unmap_addr_set(tx_buf, dma_addr0, mapped_addr);
667 dma_unmap_len_set(tx_buf, dma_len0, frag_map_size);
668 frag_size -= frag_map_size;
669 offset += frag_map_size;
670 }
671 }
672
673 /* store skb to cleanup */
674 tx_buf->skb = skb;
675
676 WRITE_ONCE(itxd->txd4, txd4);
677 WRITE_ONCE(itxd->txd3, (TX_DMA_SWC | TX_DMA_PLEN0(skb_headlen(skb)) |
678 (!nr_frags * TX_DMA_LS0)));
679
John Crispin656e7052016-03-08 11:29:55 +0100680 netdev_sent_queue(dev, skb->len);
681 skb_tx_timestamp(skb);
682
683 ring->next_free = mtk_qdma_phys_to_virt(ring, txd->txd2);
684 atomic_sub(n_desc, &ring->free_count);
685
686 /* make sure that all changes to the dma ring are flushed before we
687 * continue
688 */
689 wmb();
690
691 if (netif_xmit_stopped(netdev_get_tx_queue(dev, 0)) || !skb->xmit_more)
692 mtk_w32(eth, txd->txd2, MTK_QTX_CTX_PTR);
693
694 return 0;
695
696err_dma:
697 do {
John Crispin2fae7232016-06-10 13:28:00 +0200698 tx_buf = mtk_desc_to_tx_buf(ring, itxd);
John Crispin656e7052016-03-08 11:29:55 +0100699
700 /* unmap dma */
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800701 mtk_tx_unmap(eth, tx_buf);
John Crispin656e7052016-03-08 11:29:55 +0100702
703 itxd->txd3 = TX_DMA_LS0 | TX_DMA_OWNER_CPU;
704 itxd = mtk_qdma_phys_to_virt(ring, itxd->txd2);
705 } while (itxd != txd);
706
707 return -ENOMEM;
708}
709
710static inline int mtk_cal_txd_req(struct sk_buff *skb)
711{
712 int i, nfrags;
713 struct skb_frag_struct *frag;
714
715 nfrags = 1;
716 if (skb_is_gso(skb)) {
717 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
718 frag = &skb_shinfo(skb)->frags[i];
719 nfrags += DIV_ROUND_UP(frag->size, MTK_TX_DMA_BUF_LEN);
720 }
721 } else {
722 nfrags += skb_shinfo(skb)->nr_frags;
723 }
724
John Crispinbeeb4ca2016-04-08 00:54:05 +0200725 return nfrags;
John Crispin656e7052016-03-08 11:29:55 +0100726}
727
John Crispinad3cba92016-06-10 13:28:07 +0200728static int mtk_queue_stopped(struct mtk_eth *eth)
729{
730 int i;
731
732 for (i = 0; i < MTK_MAC_COUNT; i++) {
733 if (!eth->netdev[i])
734 continue;
735 if (netif_queue_stopped(eth->netdev[i]))
736 return 1;
737 }
738
739 return 0;
740}
741
John Crispin13c822f2016-04-08 00:54:07 +0200742static void mtk_wake_queue(struct mtk_eth *eth)
743{
744 int i;
745
746 for (i = 0; i < MTK_MAC_COUNT; i++) {
747 if (!eth->netdev[i])
748 continue;
749 netif_wake_queue(eth->netdev[i]);
750 }
751}
752
753static void mtk_stop_queue(struct mtk_eth *eth)
754{
755 int i;
756
757 for (i = 0; i < MTK_MAC_COUNT; i++) {
758 if (!eth->netdev[i])
759 continue;
760 netif_stop_queue(eth->netdev[i]);
761 }
762}
763
John Crispin656e7052016-03-08 11:29:55 +0100764static int mtk_start_xmit(struct sk_buff *skb, struct net_device *dev)
765{
766 struct mtk_mac *mac = netdev_priv(dev);
767 struct mtk_eth *eth = mac->hw;
768 struct mtk_tx_ring *ring = &eth->tx_ring;
769 struct net_device_stats *stats = &dev->stats;
770 bool gso = false;
771 int tx_num;
772
John Crispin34c2e4c2016-04-08 00:54:08 +0200773 /* normally we can rely on the stack not calling this more than once,
774 * however we have 2 queues running on the same ring so we need to lock
775 * the ring access
776 */
Sean Wange3e96522016-08-11 17:51:00 +0800777 spin_lock(&eth->page_lock);
John Crispin34c2e4c2016-04-08 00:54:08 +0200778
Sean Wangdce6fa42016-09-14 23:13:21 +0800779 if (unlikely(test_bit(MTK_RESETTING, &eth->state)))
780 goto drop;
781
John Crispin656e7052016-03-08 11:29:55 +0100782 tx_num = mtk_cal_txd_req(skb);
783 if (unlikely(atomic_read(&ring->free_count) <= tx_num)) {
John Crispin13c822f2016-04-08 00:54:07 +0200784 mtk_stop_queue(eth);
John Crispin656e7052016-03-08 11:29:55 +0100785 netif_err(eth, tx_queued, dev,
786 "Tx Ring full when queue awake!\n");
Sean Wange3e96522016-08-11 17:51:00 +0800787 spin_unlock(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100788 return NETDEV_TX_BUSY;
789 }
790
791 /* TSO: fill MSS info in tcp checksum field */
792 if (skb_is_gso(skb)) {
793 if (skb_cow_head(skb, 0)) {
794 netif_warn(eth, tx_err, dev,
795 "GSO expand head fail.\n");
796 goto drop;
797 }
798
799 if (skb_shinfo(skb)->gso_type &
800 (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)) {
801 gso = true;
802 tcp_hdr(skb)->check = htons(skb_shinfo(skb)->gso_size);
803 }
804 }
805
806 if (mtk_tx_map(skb, dev, tx_num, ring, gso) < 0)
807 goto drop;
808
John Crispin82c65442016-06-10 13:28:08 +0200809 if (unlikely(atomic_read(&ring->free_count) <= ring->thresh))
John Crispin13c822f2016-04-08 00:54:07 +0200810 mtk_stop_queue(eth);
John Crispin82c65442016-06-10 13:28:08 +0200811
Sean Wange3e96522016-08-11 17:51:00 +0800812 spin_unlock(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100813
814 return NETDEV_TX_OK;
815
816drop:
Sean Wange3e96522016-08-11 17:51:00 +0800817 spin_unlock(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +0100818 stats->tx_dropped++;
819 dev_kfree_skb(skb);
820 return NETDEV_TX_OK;
821}
822
Nelson Changee406812016-09-17 23:50:55 +0800823static struct mtk_rx_ring *mtk_get_rx_ring(struct mtk_eth *eth)
824{
825 int i;
826 struct mtk_rx_ring *ring;
827 int idx;
828
829 if (!eth->hwlro)
830 return &eth->rx_ring[0];
831
832 for (i = 0; i < MTK_MAX_RX_RING_NUM; i++) {
833 ring = &eth->rx_ring[i];
834 idx = NEXT_RX_DESP_IDX(ring->calc_idx, ring->dma_size);
835 if (ring->dma[idx].rxd2 & RX_DMA_DONE) {
836 ring->calc_idx_update = true;
837 return ring;
838 }
839 }
840
841 return NULL;
842}
843
844static void mtk_update_rx_cpu_idx(struct mtk_eth *eth)
845{
846 struct mtk_rx_ring *ring;
847 int i;
848
849 if (!eth->hwlro) {
850 ring = &eth->rx_ring[0];
851 mtk_w32(eth, ring->calc_idx, ring->crx_idx_reg);
852 } else {
853 for (i = 0; i < MTK_MAX_RX_RING_NUM; i++) {
854 ring = &eth->rx_ring[i];
855 if (ring->calc_idx_update) {
856 ring->calc_idx_update = false;
857 mtk_w32(eth, ring->calc_idx, ring->crx_idx_reg);
858 }
859 }
860 }
861}
862
John Crispin656e7052016-03-08 11:29:55 +0100863static int mtk_poll_rx(struct napi_struct *napi, int budget,
John Crispineece71e2016-06-29 13:38:09 +0200864 struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +0100865{
Nelson Changee406812016-09-17 23:50:55 +0800866 struct mtk_rx_ring *ring;
867 int idx;
John Crispin656e7052016-03-08 11:29:55 +0100868 struct sk_buff *skb;
869 u8 *data, *new_data;
870 struct mtk_rx_dma *rxd, trxd;
871 int done = 0;
872
873 while (done < budget) {
874 struct net_device *netdev;
875 unsigned int pktlen;
876 dma_addr_t dma_addr;
877 int mac = 0;
878
Nelson Changee406812016-09-17 23:50:55 +0800879 ring = mtk_get_rx_ring(eth);
880 if (unlikely(!ring))
881 goto rx_done;
882
883 idx = NEXT_RX_DESP_IDX(ring->calc_idx, ring->dma_size);
John Crispin656e7052016-03-08 11:29:55 +0100884 rxd = &ring->dma[idx];
885 data = ring->data[idx];
886
887 mtk_rx_get_desc(&trxd, rxd);
888 if (!(trxd.rxd2 & RX_DMA_DONE))
889 break;
890
891 /* find out which mac the packet come from. values start at 1 */
892 mac = (trxd.rxd4 >> RX_DMA_FPORT_SHIFT) &
893 RX_DMA_FPORT_MASK;
894 mac--;
895
896 netdev = eth->netdev[mac];
897
Sean Wangdce6fa42016-09-14 23:13:21 +0800898 if (unlikely(test_bit(MTK_RESETTING, &eth->state)))
899 goto release_desc;
900
John Crispin656e7052016-03-08 11:29:55 +0100901 /* alloc new buffer */
902 new_data = napi_alloc_frag(ring->frag_size);
903 if (unlikely(!new_data)) {
904 netdev->stats.rx_dropped++;
905 goto release_desc;
906 }
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800907 dma_addr = dma_map_single(eth->dev,
John Crispin656e7052016-03-08 11:29:55 +0100908 new_data + NET_SKB_PAD,
909 ring->buf_size,
910 DMA_FROM_DEVICE);
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800911 if (unlikely(dma_mapping_error(eth->dev, dma_addr))) {
John Crispin656e7052016-03-08 11:29:55 +0100912 skb_free_frag(new_data);
John Crispin94321a92016-06-10 13:28:01 +0200913 netdev->stats.rx_dropped++;
John Crispin656e7052016-03-08 11:29:55 +0100914 goto release_desc;
915 }
916
917 /* receive data */
918 skb = build_skb(data, ring->frag_size);
919 if (unlikely(!skb)) {
Sean Wang1b430792016-09-01 10:47:29 +0800920 skb_free_frag(new_data);
John Crispin94321a92016-06-10 13:28:01 +0200921 netdev->stats.rx_dropped++;
John Crispin656e7052016-03-08 11:29:55 +0100922 goto release_desc;
923 }
924 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
925
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800926 dma_unmap_single(eth->dev, trxd.rxd1,
John Crispin656e7052016-03-08 11:29:55 +0100927 ring->buf_size, DMA_FROM_DEVICE);
928 pktlen = RX_DMA_GET_PLEN0(trxd.rxd2);
929 skb->dev = netdev;
930 skb_put(skb, pktlen);
931 if (trxd.rxd4 & RX_DMA_L4_VALID)
932 skb->ip_summed = CHECKSUM_UNNECESSARY;
933 else
934 skb_checksum_none_assert(skb);
935 skb->protocol = eth_type_trans(skb, netdev);
936
937 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX &&
938 RX_DMA_VID(trxd.rxd3))
939 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
940 RX_DMA_VID(trxd.rxd3));
941 napi_gro_receive(napi, skb);
942
943 ring->data[idx] = new_data;
944 rxd->rxd1 = (unsigned int)dma_addr;
945
946release_desc:
947 rxd->rxd2 = RX_DMA_PLEN0(ring->buf_size);
948
949 ring->calc_idx = idx;
Sean Wang635372a2016-09-03 17:59:26 +0800950
John Crispin656e7052016-03-08 11:29:55 +0100951 done++;
952 }
953
Nelson Changee406812016-09-17 23:50:55 +0800954rx_done:
Sean Wang41156ce2016-09-03 17:59:27 +0800955 if (done) {
956 /* make sure that all changes to the dma ring are flushed before
957 * we continue
958 */
959 wmb();
Nelson Changee406812016-09-17 23:50:55 +0800960 mtk_update_rx_cpu_idx(eth);
Sean Wang41156ce2016-09-03 17:59:27 +0800961 }
John Crispin656e7052016-03-08 11:29:55 +0100962
963 return done;
964}
965
John Crispin80673022016-06-29 13:38:11 +0200966static int mtk_poll_tx(struct mtk_eth *eth, int budget)
John Crispin656e7052016-03-08 11:29:55 +0100967{
968 struct mtk_tx_ring *ring = &eth->tx_ring;
969 struct mtk_tx_dma *desc;
970 struct sk_buff *skb;
971 struct mtk_tx_buf *tx_buf;
John Crispin80673022016-06-29 13:38:11 +0200972 unsigned int done[MTK_MAX_DEVS];
John Crispin656e7052016-03-08 11:29:55 +0100973 unsigned int bytes[MTK_MAX_DEVS];
974 u32 cpu, dma;
975 static int condition;
John Crispin80673022016-06-29 13:38:11 +0200976 int total = 0, i;
John Crispin656e7052016-03-08 11:29:55 +0100977
978 memset(done, 0, sizeof(done));
979 memset(bytes, 0, sizeof(bytes));
980
981 cpu = mtk_r32(eth, MTK_QTX_CRX_PTR);
982 dma = mtk_r32(eth, MTK_QTX_DRX_PTR);
983
984 desc = mtk_qdma_phys_to_virt(ring, cpu);
985
986 while ((cpu != dma) && budget) {
987 u32 next_cpu = desc->txd2;
988 int mac;
989
990 desc = mtk_qdma_phys_to_virt(ring, desc->txd2);
991 if ((desc->txd3 & TX_DMA_OWNER_CPU) == 0)
992 break;
993
994 mac = (desc->txd4 >> TX_DMA_FPORT_SHIFT) &
995 TX_DMA_FPORT_MASK;
996 mac--;
997
998 tx_buf = mtk_desc_to_tx_buf(ring, desc);
999 skb = tx_buf->skb;
1000 if (!skb) {
1001 condition = 1;
1002 break;
1003 }
1004
1005 if (skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC) {
1006 bytes[mac] += skb->len;
1007 done[mac]++;
1008 budget--;
1009 }
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +08001010 mtk_tx_unmap(eth, tx_buf);
John Crispin656e7052016-03-08 11:29:55 +01001011
John Crispin656e7052016-03-08 11:29:55 +01001012 ring->last_free = desc;
1013 atomic_inc(&ring->free_count);
1014
1015 cpu = next_cpu;
1016 }
1017
1018 mtk_w32(eth, cpu, MTK_QTX_CRX_PTR);
1019
1020 for (i = 0; i < MTK_MAC_COUNT; i++) {
1021 if (!eth->netdev[i] || !done[i])
1022 continue;
1023 netdev_completed_queue(eth->netdev[i], done[i], bytes[i]);
1024 total += done[i];
1025 }
1026
John Crispinad3cba92016-06-10 13:28:07 +02001027 if (mtk_queue_stopped(eth) &&
1028 (atomic_read(&ring->free_count) > ring->thresh))
John Crispin13c822f2016-04-08 00:54:07 +02001029 mtk_wake_queue(eth);
John Crispin656e7052016-03-08 11:29:55 +01001030
1031 return total;
1032}
1033
John Crispin80673022016-06-29 13:38:11 +02001034static void mtk_handle_status_irq(struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +01001035{
John Crispin80673022016-06-29 13:38:11 +02001036 u32 status2 = mtk_r32(eth, MTK_INT_STATUS2);
John Crispin656e7052016-03-08 11:29:55 +01001037
John Crispineece71e2016-06-29 13:38:09 +02001038 if (unlikely(status2 & (MTK_GDM1_AF | MTK_GDM2_AF))) {
John Crispin656e7052016-03-08 11:29:55 +01001039 mtk_stats_update(eth);
John Crispineece71e2016-06-29 13:38:09 +02001040 mtk_w32(eth, (MTK_GDM1_AF | MTK_GDM2_AF),
1041 MTK_INT_STATUS2);
John Crispin656e7052016-03-08 11:29:55 +01001042 }
John Crispin80673022016-06-29 13:38:11 +02001043}
1044
1045static int mtk_napi_tx(struct napi_struct *napi, int budget)
1046{
1047 struct mtk_eth *eth = container_of(napi, struct mtk_eth, tx_napi);
1048 u32 status, mask;
1049 int tx_done = 0;
1050
1051 mtk_handle_status_irq(eth);
1052 mtk_w32(eth, MTK_TX_DONE_INT, MTK_QMTK_INT_STATUS);
1053 tx_done = mtk_poll_tx(eth, budget);
John Crispin656e7052016-03-08 11:29:55 +01001054
1055 if (unlikely(netif_msg_intr(eth))) {
John Crispin80673022016-06-29 13:38:11 +02001056 status = mtk_r32(eth, MTK_QMTK_INT_STATUS);
John Crispin656e7052016-03-08 11:29:55 +01001057 mask = mtk_r32(eth, MTK_QDMA_INT_MASK);
John Crispin80673022016-06-29 13:38:11 +02001058 dev_info(eth->dev,
1059 "done tx %d, intr 0x%08x/0x%x\n",
1060 tx_done, status, mask);
John Crispin656e7052016-03-08 11:29:55 +01001061 }
1062
John Crispin80673022016-06-29 13:38:11 +02001063 if (tx_done == budget)
John Crispin656e7052016-03-08 11:29:55 +01001064 return budget;
1065
1066 status = mtk_r32(eth, MTK_QMTK_INT_STATUS);
John Crispin80673022016-06-29 13:38:11 +02001067 if (status & MTK_TX_DONE_INT)
John Crispin656e7052016-03-08 11:29:55 +01001068 return budget;
1069
1070 napi_complete(napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001071 mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
John Crispin80673022016-06-29 13:38:11 +02001072
1073 return tx_done;
1074}
1075
1076static int mtk_napi_rx(struct napi_struct *napi, int budget)
1077{
1078 struct mtk_eth *eth = container_of(napi, struct mtk_eth, rx_napi);
1079 u32 status, mask;
1080 int rx_done = 0;
Sean Wang41156ce2016-09-03 17:59:27 +08001081 int remain_budget = budget;
John Crispin80673022016-06-29 13:38:11 +02001082
1083 mtk_handle_status_irq(eth);
Sean Wang41156ce2016-09-03 17:59:27 +08001084
1085poll_again:
Nelson Changbacfd112016-08-26 01:09:42 +08001086 mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_STATUS);
Sean Wang41156ce2016-09-03 17:59:27 +08001087 rx_done = mtk_poll_rx(napi, remain_budget, eth);
John Crispin80673022016-06-29 13:38:11 +02001088
1089 if (unlikely(netif_msg_intr(eth))) {
Nelson Changbacfd112016-08-26 01:09:42 +08001090 status = mtk_r32(eth, MTK_PDMA_INT_STATUS);
1091 mask = mtk_r32(eth, MTK_PDMA_INT_MASK);
John Crispin80673022016-06-29 13:38:11 +02001092 dev_info(eth->dev,
1093 "done rx %d, intr 0x%08x/0x%x\n",
1094 rx_done, status, mask);
1095 }
Sean Wang41156ce2016-09-03 17:59:27 +08001096 if (rx_done == remain_budget)
John Crispin80673022016-06-29 13:38:11 +02001097 return budget;
1098
Nelson Changbacfd112016-08-26 01:09:42 +08001099 status = mtk_r32(eth, MTK_PDMA_INT_STATUS);
Sean Wang41156ce2016-09-03 17:59:27 +08001100 if (status & MTK_RX_DONE_INT) {
1101 remain_budget -= rx_done;
1102 goto poll_again;
1103 }
John Crispin80673022016-06-29 13:38:11 +02001104 napi_complete(napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001105 mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001106
Sean Wang41156ce2016-09-03 17:59:27 +08001107 return rx_done + budget - remain_budget;
John Crispin656e7052016-03-08 11:29:55 +01001108}
1109
1110static int mtk_tx_alloc(struct mtk_eth *eth)
1111{
1112 struct mtk_tx_ring *ring = &eth->tx_ring;
1113 int i, sz = sizeof(*ring->dma);
1114
1115 ring->buf = kcalloc(MTK_DMA_SIZE, sizeof(*ring->buf),
1116 GFP_KERNEL);
1117 if (!ring->buf)
1118 goto no_tx_mem;
1119
1120 ring->dma = dma_alloc_coherent(eth->dev,
1121 MTK_DMA_SIZE * sz,
1122 &ring->phys,
1123 GFP_ATOMIC | __GFP_ZERO);
1124 if (!ring->dma)
1125 goto no_tx_mem;
1126
1127 memset(ring->dma, 0, MTK_DMA_SIZE * sz);
1128 for (i = 0; i < MTK_DMA_SIZE; i++) {
1129 int next = (i + 1) % MTK_DMA_SIZE;
1130 u32 next_ptr = ring->phys + next * sz;
1131
1132 ring->dma[i].txd2 = next_ptr;
1133 ring->dma[i].txd3 = TX_DMA_LS0 | TX_DMA_OWNER_CPU;
1134 }
1135
1136 atomic_set(&ring->free_count, MTK_DMA_SIZE - 2);
1137 ring->next_free = &ring->dma[0];
John Crispin12c97c12016-06-10 13:28:06 +02001138 ring->last_free = &ring->dma[MTK_DMA_SIZE - 1];
John Crispin04698cc2016-06-10 13:28:04 +02001139 ring->thresh = MAX_SKB_FRAGS;
John Crispin656e7052016-03-08 11:29:55 +01001140
1141 /* make sure that all changes to the dma ring are flushed before we
1142 * continue
1143 */
1144 wmb();
1145
1146 mtk_w32(eth, ring->phys, MTK_QTX_CTX_PTR);
1147 mtk_w32(eth, ring->phys, MTK_QTX_DTX_PTR);
1148 mtk_w32(eth,
1149 ring->phys + ((MTK_DMA_SIZE - 1) * sz),
1150 MTK_QTX_CRX_PTR);
1151 mtk_w32(eth,
1152 ring->phys + ((MTK_DMA_SIZE - 1) * sz),
1153 MTK_QTX_DRX_PTR);
Nelson Changbacfd112016-08-26 01:09:42 +08001154 mtk_w32(eth, (QDMA_RES_THRES << 8) | QDMA_RES_THRES, MTK_QTX_CFG(0));
John Crispin656e7052016-03-08 11:29:55 +01001155
1156 return 0;
1157
1158no_tx_mem:
1159 return -ENOMEM;
1160}
1161
1162static void mtk_tx_clean(struct mtk_eth *eth)
1163{
1164 struct mtk_tx_ring *ring = &eth->tx_ring;
1165 int i;
1166
1167 if (ring->buf) {
1168 for (i = 0; i < MTK_DMA_SIZE; i++)
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +08001169 mtk_tx_unmap(eth, &ring->buf[i]);
John Crispin656e7052016-03-08 11:29:55 +01001170 kfree(ring->buf);
1171 ring->buf = NULL;
1172 }
1173
1174 if (ring->dma) {
1175 dma_free_coherent(eth->dev,
1176 MTK_DMA_SIZE * sizeof(*ring->dma),
1177 ring->dma,
1178 ring->phys);
1179 ring->dma = NULL;
1180 }
1181}
1182
Nelson Changee406812016-09-17 23:50:55 +08001183static int mtk_rx_alloc(struct mtk_eth *eth, int ring_no, int rx_flag)
John Crispin656e7052016-03-08 11:29:55 +01001184{
Nelson Changee406812016-09-17 23:50:55 +08001185 struct mtk_rx_ring *ring = &eth->rx_ring[ring_no];
1186 int rx_data_len, rx_dma_size;
John Crispin656e7052016-03-08 11:29:55 +01001187 int i;
1188
Nelson Changee406812016-09-17 23:50:55 +08001189 if (rx_flag == MTK_RX_FLAGS_HWLRO) {
1190 rx_data_len = MTK_MAX_LRO_RX_LENGTH;
1191 rx_dma_size = MTK_HW_LRO_DMA_SIZE;
1192 } else {
1193 rx_data_len = ETH_DATA_LEN;
1194 rx_dma_size = MTK_DMA_SIZE;
1195 }
1196
1197 ring->frag_size = mtk_max_frag_size(rx_data_len);
John Crispin656e7052016-03-08 11:29:55 +01001198 ring->buf_size = mtk_max_buf_size(ring->frag_size);
Nelson Changee406812016-09-17 23:50:55 +08001199 ring->data = kcalloc(rx_dma_size, sizeof(*ring->data),
John Crispin656e7052016-03-08 11:29:55 +01001200 GFP_KERNEL);
1201 if (!ring->data)
1202 return -ENOMEM;
1203
Nelson Changee406812016-09-17 23:50:55 +08001204 for (i = 0; i < rx_dma_size; i++) {
John Crispin656e7052016-03-08 11:29:55 +01001205 ring->data[i] = netdev_alloc_frag(ring->frag_size);
1206 if (!ring->data[i])
1207 return -ENOMEM;
1208 }
1209
1210 ring->dma = dma_alloc_coherent(eth->dev,
Nelson Changee406812016-09-17 23:50:55 +08001211 rx_dma_size * sizeof(*ring->dma),
John Crispin656e7052016-03-08 11:29:55 +01001212 &ring->phys,
1213 GFP_ATOMIC | __GFP_ZERO);
1214 if (!ring->dma)
1215 return -ENOMEM;
1216
Nelson Changee406812016-09-17 23:50:55 +08001217 for (i = 0; i < rx_dma_size; i++) {
John Crispin656e7052016-03-08 11:29:55 +01001218 dma_addr_t dma_addr = dma_map_single(eth->dev,
1219 ring->data[i] + NET_SKB_PAD,
1220 ring->buf_size,
1221 DMA_FROM_DEVICE);
1222 if (unlikely(dma_mapping_error(eth->dev, dma_addr)))
1223 return -ENOMEM;
1224 ring->dma[i].rxd1 = (unsigned int)dma_addr;
1225
1226 ring->dma[i].rxd2 = RX_DMA_PLEN0(ring->buf_size);
1227 }
Nelson Changee406812016-09-17 23:50:55 +08001228 ring->dma_size = rx_dma_size;
1229 ring->calc_idx_update = false;
1230 ring->calc_idx = rx_dma_size - 1;
1231 ring->crx_idx_reg = MTK_PRX_CRX_IDX_CFG(ring_no);
John Crispin656e7052016-03-08 11:29:55 +01001232 /* make sure that all changes to the dma ring are flushed before we
1233 * continue
1234 */
1235 wmb();
1236
Nelson Changee406812016-09-17 23:50:55 +08001237 mtk_w32(eth, ring->phys, MTK_PRX_BASE_PTR_CFG(ring_no));
1238 mtk_w32(eth, rx_dma_size, MTK_PRX_MAX_CNT_CFG(ring_no));
1239 mtk_w32(eth, ring->calc_idx, ring->crx_idx_reg);
1240 mtk_w32(eth, MTK_PST_DRX_IDX_CFG(ring_no), MTK_PDMA_RST_IDX);
John Crispin656e7052016-03-08 11:29:55 +01001241
1242 return 0;
1243}
1244
Nelson Changee406812016-09-17 23:50:55 +08001245static void mtk_rx_clean(struct mtk_eth *eth, int ring_no)
John Crispin656e7052016-03-08 11:29:55 +01001246{
Nelson Changee406812016-09-17 23:50:55 +08001247 struct mtk_rx_ring *ring = &eth->rx_ring[ring_no];
John Crispin656e7052016-03-08 11:29:55 +01001248 int i;
1249
1250 if (ring->data && ring->dma) {
Nelson Changee406812016-09-17 23:50:55 +08001251 for (i = 0; i < ring->dma_size; i++) {
John Crispin656e7052016-03-08 11:29:55 +01001252 if (!ring->data[i])
1253 continue;
1254 if (!ring->dma[i].rxd1)
1255 continue;
1256 dma_unmap_single(eth->dev,
1257 ring->dma[i].rxd1,
1258 ring->buf_size,
1259 DMA_FROM_DEVICE);
1260 skb_free_frag(ring->data[i]);
1261 }
1262 kfree(ring->data);
1263 ring->data = NULL;
1264 }
1265
1266 if (ring->dma) {
1267 dma_free_coherent(eth->dev,
Nelson Changee406812016-09-17 23:50:55 +08001268 ring->dma_size * sizeof(*ring->dma),
John Crispin656e7052016-03-08 11:29:55 +01001269 ring->dma,
1270 ring->phys);
1271 ring->dma = NULL;
1272 }
1273}
1274
Nelson Changee406812016-09-17 23:50:55 +08001275static int mtk_hwlro_rx_init(struct mtk_eth *eth)
1276{
1277 int i;
1278 u32 ring_ctrl_dw1 = 0, ring_ctrl_dw2 = 0, ring_ctrl_dw3 = 0;
1279 u32 lro_ctrl_dw0 = 0, lro_ctrl_dw3 = 0;
1280
1281 /* set LRO rings to auto-learn modes */
1282 ring_ctrl_dw2 |= MTK_RING_AUTO_LERAN_MODE;
1283
1284 /* validate LRO ring */
1285 ring_ctrl_dw2 |= MTK_RING_VLD;
1286
1287 /* set AGE timer (unit: 20us) */
1288 ring_ctrl_dw2 |= MTK_RING_AGE_TIME_H;
1289 ring_ctrl_dw1 |= MTK_RING_AGE_TIME_L;
1290
1291 /* set max AGG timer (unit: 20us) */
1292 ring_ctrl_dw2 |= MTK_RING_MAX_AGG_TIME;
1293
1294 /* set max LRO AGG count */
1295 ring_ctrl_dw2 |= MTK_RING_MAX_AGG_CNT_L;
1296 ring_ctrl_dw3 |= MTK_RING_MAX_AGG_CNT_H;
1297
1298 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++) {
1299 mtk_w32(eth, ring_ctrl_dw1, MTK_LRO_CTRL_DW1_CFG(i));
1300 mtk_w32(eth, ring_ctrl_dw2, MTK_LRO_CTRL_DW2_CFG(i));
1301 mtk_w32(eth, ring_ctrl_dw3, MTK_LRO_CTRL_DW3_CFG(i));
1302 }
1303
1304 /* IPv4 checksum update enable */
1305 lro_ctrl_dw0 |= MTK_L3_CKS_UPD_EN;
1306
1307 /* switch priority comparison to packet count mode */
1308 lro_ctrl_dw0 |= MTK_LRO_ALT_PKT_CNT_MODE;
1309
1310 /* bandwidth threshold setting */
1311 mtk_w32(eth, MTK_HW_LRO_BW_THRE, MTK_PDMA_LRO_CTRL_DW2);
1312
1313 /* auto-learn score delta setting */
1314 mtk_w32(eth, MTK_HW_LRO_REPLACE_DELTA, MTK_PDMA_LRO_ALT_SCORE_DELTA);
1315
1316 /* set refresh timer for altering flows to 1 sec. (unit: 20us) */
1317 mtk_w32(eth, (MTK_HW_LRO_TIMER_UNIT << 16) | MTK_HW_LRO_REFRESH_TIME,
1318 MTK_PDMA_LRO_ALT_REFRESH_TIMER);
1319
1320 /* set HW LRO mode & the max aggregation count for rx packets */
1321 lro_ctrl_dw3 |= MTK_ADMA_MODE | (MTK_HW_LRO_MAX_AGG_CNT & 0xff);
1322
1323 /* the minimal remaining room of SDL0 in RXD for lro aggregation */
1324 lro_ctrl_dw3 |= MTK_LRO_MIN_RXD_SDL;
1325
1326 /* enable HW LRO */
1327 lro_ctrl_dw0 |= MTK_LRO_EN;
1328
1329 mtk_w32(eth, lro_ctrl_dw3, MTK_PDMA_LRO_CTRL_DW3);
1330 mtk_w32(eth, lro_ctrl_dw0, MTK_PDMA_LRO_CTRL_DW0);
1331
1332 return 0;
1333}
1334
1335static void mtk_hwlro_rx_uninit(struct mtk_eth *eth)
1336{
1337 int i;
1338 u32 val;
1339
1340 /* relinquish lro rings, flush aggregated packets */
1341 mtk_w32(eth, MTK_LRO_RING_RELINQUISH_REQ, MTK_PDMA_LRO_CTRL_DW0);
1342
1343 /* wait for relinquishments done */
1344 for (i = 0; i < 10; i++) {
1345 val = mtk_r32(eth, MTK_PDMA_LRO_CTRL_DW0);
1346 if (val & MTK_LRO_RING_RELINQUISH_DONE) {
1347 msleep(20);
1348 continue;
1349 }
1350 }
1351
1352 /* invalidate lro rings */
1353 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++)
1354 mtk_w32(eth, 0, MTK_LRO_CTRL_DW2_CFG(i));
1355
1356 /* disable HW LRO */
1357 mtk_w32(eth, 0, MTK_PDMA_LRO_CTRL_DW0);
1358}
1359
Nelson Chang7aab7472016-09-17 23:50:56 +08001360static void mtk_hwlro_val_ipaddr(struct mtk_eth *eth, int idx, __be32 ip)
1361{
1362 u32 reg_val;
1363
1364 reg_val = mtk_r32(eth, MTK_LRO_CTRL_DW2_CFG(idx));
1365
1366 /* invalidate the IP setting */
1367 mtk_w32(eth, (reg_val & ~MTK_RING_MYIP_VLD), MTK_LRO_CTRL_DW2_CFG(idx));
1368
1369 mtk_w32(eth, ip, MTK_LRO_DIP_DW0_CFG(idx));
1370
1371 /* validate the IP setting */
1372 mtk_w32(eth, (reg_val | MTK_RING_MYIP_VLD), MTK_LRO_CTRL_DW2_CFG(idx));
1373}
1374
1375static void mtk_hwlro_inval_ipaddr(struct mtk_eth *eth, int idx)
1376{
1377 u32 reg_val;
1378
1379 reg_val = mtk_r32(eth, MTK_LRO_CTRL_DW2_CFG(idx));
1380
1381 /* invalidate the IP setting */
1382 mtk_w32(eth, (reg_val & ~MTK_RING_MYIP_VLD), MTK_LRO_CTRL_DW2_CFG(idx));
1383
1384 mtk_w32(eth, 0, MTK_LRO_DIP_DW0_CFG(idx));
1385}
1386
1387static int mtk_hwlro_get_ip_cnt(struct mtk_mac *mac)
1388{
1389 int cnt = 0;
1390 int i;
1391
1392 for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) {
1393 if (mac->hwlro_ip[i])
1394 cnt++;
1395 }
1396
1397 return cnt;
1398}
1399
1400static int mtk_hwlro_add_ipaddr(struct net_device *dev,
1401 struct ethtool_rxnfc *cmd)
1402{
1403 struct ethtool_rx_flow_spec *fsp =
1404 (struct ethtool_rx_flow_spec *)&cmd->fs;
1405 struct mtk_mac *mac = netdev_priv(dev);
1406 struct mtk_eth *eth = mac->hw;
1407 int hwlro_idx;
1408
1409 if ((fsp->flow_type != TCP_V4_FLOW) ||
1410 (!fsp->h_u.tcp_ip4_spec.ip4dst) ||
1411 (fsp->location > 1))
1412 return -EINVAL;
1413
1414 mac->hwlro_ip[fsp->location] = htonl(fsp->h_u.tcp_ip4_spec.ip4dst);
1415 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + fsp->location;
1416
1417 mac->hwlro_ip_cnt = mtk_hwlro_get_ip_cnt(mac);
1418
1419 mtk_hwlro_val_ipaddr(eth, hwlro_idx, mac->hwlro_ip[fsp->location]);
1420
1421 return 0;
1422}
1423
1424static int mtk_hwlro_del_ipaddr(struct net_device *dev,
1425 struct ethtool_rxnfc *cmd)
1426{
1427 struct ethtool_rx_flow_spec *fsp =
1428 (struct ethtool_rx_flow_spec *)&cmd->fs;
1429 struct mtk_mac *mac = netdev_priv(dev);
1430 struct mtk_eth *eth = mac->hw;
1431 int hwlro_idx;
1432
1433 if (fsp->location > 1)
1434 return -EINVAL;
1435
1436 mac->hwlro_ip[fsp->location] = 0;
1437 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + fsp->location;
1438
1439 mac->hwlro_ip_cnt = mtk_hwlro_get_ip_cnt(mac);
1440
1441 mtk_hwlro_inval_ipaddr(eth, hwlro_idx);
1442
1443 return 0;
1444}
1445
1446static void mtk_hwlro_netdev_disable(struct net_device *dev)
1447{
1448 struct mtk_mac *mac = netdev_priv(dev);
1449 struct mtk_eth *eth = mac->hw;
1450 int i, hwlro_idx;
1451
1452 for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) {
1453 mac->hwlro_ip[i] = 0;
1454 hwlro_idx = (mac->id * MTK_MAX_LRO_IP_CNT) + i;
1455
1456 mtk_hwlro_inval_ipaddr(eth, hwlro_idx);
1457 }
1458
1459 mac->hwlro_ip_cnt = 0;
1460}
1461
1462static int mtk_hwlro_get_fdir_entry(struct net_device *dev,
1463 struct ethtool_rxnfc *cmd)
1464{
1465 struct mtk_mac *mac = netdev_priv(dev);
1466 struct ethtool_rx_flow_spec *fsp =
1467 (struct ethtool_rx_flow_spec *)&cmd->fs;
1468
1469 /* only tcp dst ipv4 is meaningful, others are meaningless */
1470 fsp->flow_type = TCP_V4_FLOW;
1471 fsp->h_u.tcp_ip4_spec.ip4dst = ntohl(mac->hwlro_ip[fsp->location]);
1472 fsp->m_u.tcp_ip4_spec.ip4dst = 0;
1473
1474 fsp->h_u.tcp_ip4_spec.ip4src = 0;
1475 fsp->m_u.tcp_ip4_spec.ip4src = 0xffffffff;
1476 fsp->h_u.tcp_ip4_spec.psrc = 0;
1477 fsp->m_u.tcp_ip4_spec.psrc = 0xffff;
1478 fsp->h_u.tcp_ip4_spec.pdst = 0;
1479 fsp->m_u.tcp_ip4_spec.pdst = 0xffff;
1480 fsp->h_u.tcp_ip4_spec.tos = 0;
1481 fsp->m_u.tcp_ip4_spec.tos = 0xff;
1482
1483 return 0;
1484}
1485
1486static int mtk_hwlro_get_fdir_all(struct net_device *dev,
1487 struct ethtool_rxnfc *cmd,
1488 u32 *rule_locs)
1489{
1490 struct mtk_mac *mac = netdev_priv(dev);
1491 int cnt = 0;
1492 int i;
1493
1494 for (i = 0; i < MTK_MAX_LRO_IP_CNT; i++) {
1495 if (mac->hwlro_ip[i]) {
1496 rule_locs[cnt] = i;
1497 cnt++;
1498 }
1499 }
1500
1501 cmd->rule_cnt = cnt;
1502
1503 return 0;
1504}
1505
1506static netdev_features_t mtk_fix_features(struct net_device *dev,
1507 netdev_features_t features)
1508{
1509 if (!(features & NETIF_F_LRO)) {
1510 struct mtk_mac *mac = netdev_priv(dev);
1511 int ip_cnt = mtk_hwlro_get_ip_cnt(mac);
1512
1513 if (ip_cnt) {
1514 netdev_info(dev, "RX flow is programmed, LRO should keep on\n");
1515
1516 features |= NETIF_F_LRO;
1517 }
1518 }
1519
1520 return features;
1521}
1522
1523static int mtk_set_features(struct net_device *dev, netdev_features_t features)
1524{
1525 int err = 0;
1526
1527 if (!((dev->features ^ features) & NETIF_F_LRO))
1528 return 0;
1529
1530 if (!(features & NETIF_F_LRO))
1531 mtk_hwlro_netdev_disable(dev);
1532
1533 return err;
1534}
1535
John Crispin656e7052016-03-08 11:29:55 +01001536/* wait for DMA to finish whatever it is doing before we start using it again */
1537static int mtk_dma_busy_wait(struct mtk_eth *eth)
1538{
1539 unsigned long t_start = jiffies;
1540
1541 while (1) {
1542 if (!(mtk_r32(eth, MTK_QDMA_GLO_CFG) &
1543 (MTK_RX_DMA_BUSY | MTK_TX_DMA_BUSY)))
1544 return 0;
1545 if (time_after(jiffies, t_start + MTK_DMA_BUSY_TIMEOUT))
1546 break;
1547 }
1548
1549 dev_err(eth->dev, "DMA init timeout\n");
1550 return -1;
1551}
1552
1553static int mtk_dma_init(struct mtk_eth *eth)
1554{
1555 int err;
Nelson Changee406812016-09-17 23:50:55 +08001556 u32 i;
John Crispin656e7052016-03-08 11:29:55 +01001557
1558 if (mtk_dma_busy_wait(eth))
1559 return -EBUSY;
1560
1561 /* QDMA needs scratch memory for internal reordering of the
1562 * descriptors
1563 */
1564 err = mtk_init_fq_dma(eth);
1565 if (err)
1566 return err;
1567
1568 err = mtk_tx_alloc(eth);
1569 if (err)
1570 return err;
1571
Nelson Changee406812016-09-17 23:50:55 +08001572 err = mtk_rx_alloc(eth, 0, MTK_RX_FLAGS_NORMAL);
John Crispin656e7052016-03-08 11:29:55 +01001573 if (err)
1574 return err;
1575
Nelson Changee406812016-09-17 23:50:55 +08001576 if (eth->hwlro) {
1577 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++) {
1578 err = mtk_rx_alloc(eth, i, MTK_RX_FLAGS_HWLRO);
1579 if (err)
1580 return err;
1581 }
1582 err = mtk_hwlro_rx_init(eth);
1583 if (err)
1584 return err;
1585 }
1586
John Crispin656e7052016-03-08 11:29:55 +01001587 /* Enable random early drop and set drop threshold automatically */
1588 mtk_w32(eth, FC_THRES_DROP_MODE | FC_THRES_DROP_EN | FC_THRES_MIN,
1589 MTK_QDMA_FC_THRES);
1590 mtk_w32(eth, 0x0, MTK_QDMA_HRED2);
1591
1592 return 0;
1593}
1594
1595static void mtk_dma_free(struct mtk_eth *eth)
1596{
1597 int i;
1598
1599 for (i = 0; i < MTK_MAC_COUNT; i++)
1600 if (eth->netdev[i])
1601 netdev_reset_queue(eth->netdev[i]);
John Crispin605e4fe2016-06-10 13:27:59 +02001602 if (eth->scratch_ring) {
1603 dma_free_coherent(eth->dev,
1604 MTK_DMA_SIZE * sizeof(struct mtk_tx_dma),
1605 eth->scratch_ring,
1606 eth->phy_scratch_ring);
1607 eth->scratch_ring = NULL;
1608 eth->phy_scratch_ring = 0;
1609 }
John Crispin656e7052016-03-08 11:29:55 +01001610 mtk_tx_clean(eth);
Nelson Changee406812016-09-17 23:50:55 +08001611 mtk_rx_clean(eth, 0);
1612
1613 if (eth->hwlro) {
1614 mtk_hwlro_rx_uninit(eth);
1615 for (i = 1; i < MTK_MAX_RX_RING_NUM; i++)
1616 mtk_rx_clean(eth, i);
1617 }
1618
John Crispin656e7052016-03-08 11:29:55 +01001619 kfree(eth->scratch_head);
1620}
1621
1622static void mtk_tx_timeout(struct net_device *dev)
1623{
1624 struct mtk_mac *mac = netdev_priv(dev);
1625 struct mtk_eth *eth = mac->hw;
1626
1627 eth->netdev[mac->id]->stats.tx_errors++;
1628 netif_err(eth, tx_err, dev,
1629 "transmit timed out\n");
John Crispin7c78b4a2016-04-08 00:54:10 +02001630 schedule_work(&eth->pending_work);
John Crispin656e7052016-03-08 11:29:55 +01001631}
1632
John Crispin80673022016-06-29 13:38:11 +02001633static irqreturn_t mtk_handle_irq_rx(int irq, void *_eth)
John Crispin656e7052016-03-08 11:29:55 +01001634{
1635 struct mtk_eth *eth = _eth;
John Crispin656e7052016-03-08 11:29:55 +01001636
John Crispin80673022016-06-29 13:38:11 +02001637 if (likely(napi_schedule_prep(&eth->rx_napi))) {
1638 __napi_schedule(&eth->rx_napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001639 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001640 }
John Crispin80673022016-06-29 13:38:11 +02001641
1642 return IRQ_HANDLED;
1643}
1644
1645static irqreturn_t mtk_handle_irq_tx(int irq, void *_eth)
1646{
1647 struct mtk_eth *eth = _eth;
1648
1649 if (likely(napi_schedule_prep(&eth->tx_napi))) {
1650 __napi_schedule(&eth->tx_napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001651 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
John Crispin80673022016-06-29 13:38:11 +02001652 }
John Crispin656e7052016-03-08 11:29:55 +01001653
1654 return IRQ_HANDLED;
1655}
1656
1657#ifdef CONFIG_NET_POLL_CONTROLLER
1658static void mtk_poll_controller(struct net_device *dev)
1659{
1660 struct mtk_mac *mac = netdev_priv(dev);
1661 struct mtk_eth *eth = mac->hw;
John Crispin656e7052016-03-08 11:29:55 +01001662
Nelson Changbacfd112016-08-26 01:09:42 +08001663 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1664 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin8186f6e2016-07-02 08:00:50 +02001665 mtk_handle_irq_rx(eth->irq[2], dev);
Nelson Changbacfd112016-08-26 01:09:42 +08001666 mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1667 mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001668}
1669#endif
1670
1671static int mtk_start_dma(struct mtk_eth *eth)
1672{
1673 int err;
1674
1675 err = mtk_dma_init(eth);
1676 if (err) {
1677 mtk_dma_free(eth);
1678 return err;
1679 }
1680
1681 mtk_w32(eth,
Nelson Changbacfd112016-08-26 01:09:42 +08001682 MTK_TX_WB_DDONE | MTK_TX_DMA_EN |
1683 MTK_DMA_SIZE_16DWORDS | MTK_NDP_CO_PRO,
John Crispin656e7052016-03-08 11:29:55 +01001684 MTK_QDMA_GLO_CFG);
1685
Nelson Changbacfd112016-08-26 01:09:42 +08001686 mtk_w32(eth,
1687 MTK_RX_DMA_EN | MTK_RX_2B_OFFSET |
1688 MTK_RX_BT_32DWORDS | MTK_MULTI_EN,
1689 MTK_PDMA_GLO_CFG);
1690
John Crispin656e7052016-03-08 11:29:55 +01001691 return 0;
1692}
1693
1694static int mtk_open(struct net_device *dev)
1695{
1696 struct mtk_mac *mac = netdev_priv(dev);
1697 struct mtk_eth *eth = mac->hw;
1698
1699 /* we run 2 netdevs on the same dma ring so we only bring it up once */
1700 if (!atomic_read(&eth->dma_refcnt)) {
1701 int err = mtk_start_dma(eth);
1702
1703 if (err)
1704 return err;
1705
John Crispin80673022016-06-29 13:38:11 +02001706 napi_enable(&eth->tx_napi);
John Crispin656e7052016-03-08 11:29:55 +01001707 napi_enable(&eth->rx_napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001708 mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1709 mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001710 }
1711 atomic_inc(&eth->dma_refcnt);
1712
1713 phy_start(mac->phy_dev);
1714 netif_start_queue(dev);
1715
1716 return 0;
1717}
1718
1719static void mtk_stop_dma(struct mtk_eth *eth, u32 glo_cfg)
1720{
John Crispin656e7052016-03-08 11:29:55 +01001721 u32 val;
1722 int i;
1723
1724 /* stop the dma engine */
Sean Wange3e96522016-08-11 17:51:00 +08001725 spin_lock_bh(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +01001726 val = mtk_r32(eth, glo_cfg);
1727 mtk_w32(eth, val & ~(MTK_TX_WB_DDONE | MTK_RX_DMA_EN | MTK_TX_DMA_EN),
1728 glo_cfg);
Sean Wange3e96522016-08-11 17:51:00 +08001729 spin_unlock_bh(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +01001730
1731 /* wait for dma stop */
1732 for (i = 0; i < 10; i++) {
1733 val = mtk_r32(eth, glo_cfg);
1734 if (val & (MTK_TX_DMA_BUSY | MTK_RX_DMA_BUSY)) {
1735 msleep(20);
1736 continue;
1737 }
1738 break;
1739 }
1740}
1741
1742static int mtk_stop(struct net_device *dev)
1743{
1744 struct mtk_mac *mac = netdev_priv(dev);
1745 struct mtk_eth *eth = mac->hw;
1746
1747 netif_tx_disable(dev);
1748 phy_stop(mac->phy_dev);
1749
1750 /* only shutdown DMA if this is the last user */
1751 if (!atomic_dec_and_test(&eth->dma_refcnt))
1752 return 0;
1753
Nelson Changbacfd112016-08-26 01:09:42 +08001754 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1755 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin80673022016-06-29 13:38:11 +02001756 napi_disable(&eth->tx_napi);
John Crispin656e7052016-03-08 11:29:55 +01001757 napi_disable(&eth->rx_napi);
1758
1759 mtk_stop_dma(eth, MTK_QDMA_GLO_CFG);
1760
1761 mtk_dma_free(eth);
1762
1763 return 0;
1764}
1765
Sean Wang2a8307a2016-09-14 23:13:20 +08001766static void ethsys_reset(struct mtk_eth *eth, u32 reset_bits)
1767{
1768 regmap_update_bits(eth->ethsys, ETHSYS_RSTCTRL,
1769 reset_bits,
1770 reset_bits);
1771
1772 usleep_range(1000, 1100);
1773 regmap_update_bits(eth->ethsys, ETHSYS_RSTCTRL,
1774 reset_bits,
1775 ~reset_bits);
1776 mdelay(10);
1777}
1778
Sean Wang9ea4d312016-09-14 23:13:19 +08001779static int mtk_hw_init(struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +01001780{
Sean Wang9ea4d312016-09-14 23:13:19 +08001781 int i, val;
1782
1783 if (test_and_set_bit(MTK_HW_INIT, &eth->state))
1784 return 0;
Sean Wang85574db2016-09-14 23:13:15 +08001785
Sean Wang26a2ad82016-09-14 23:13:18 +08001786 pm_runtime_enable(eth->dev);
1787 pm_runtime_get_sync(eth->dev);
1788
Sean Wang85574db2016-09-14 23:13:15 +08001789 clk_prepare_enable(eth->clks[MTK_CLK_ETHIF]);
1790 clk_prepare_enable(eth->clks[MTK_CLK_ESW]);
1791 clk_prepare_enable(eth->clks[MTK_CLK_GP1]);
1792 clk_prepare_enable(eth->clks[MTK_CLK_GP2]);
Sean Wang2a8307a2016-09-14 23:13:20 +08001793 ethsys_reset(eth, RSTCTRL_FE);
1794 ethsys_reset(eth, RSTCTRL_PPE);
John Crispin656e7052016-03-08 11:29:55 +01001795
Sean Wang9ea4d312016-09-14 23:13:19 +08001796 regmap_read(eth->ethsys, ETHSYS_SYSCFG0, &val);
1797 for (i = 0; i < MTK_MAC_COUNT; i++) {
1798 if (!eth->mac[i])
1799 continue;
1800 val &= ~SYSCFG0_GE_MODE(SYSCFG0_GE_MASK, eth->mac[i]->id);
1801 val |= SYSCFG0_GE_MODE(eth->mac[i]->ge_mode, eth->mac[i]->id);
1802 }
1803 regmap_write(eth->ethsys, ETHSYS_SYSCFG0, val);
1804
John Crispin656e7052016-03-08 11:29:55 +01001805 /* Set GE2 driving and slew rate */
1806 regmap_write(eth->pctl, GPIO_DRV_SEL10, 0xa00);
1807
1808 /* set GE2 TDSEL */
1809 regmap_write(eth->pctl, GPIO_OD33_CTRL8, 0x5);
1810
1811 /* set GE2 TUNE */
1812 regmap_write(eth->pctl, GPIO_BIAS_CTRL, 0x0);
1813
1814 /* GE1, Force 1000M/FD, FC ON */
1815 mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(0));
1816
1817 /* GE2, Force 1000M/FD, FC ON */
1818 mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(1));
1819
1820 /* Enable RX VLan Offloading */
1821 mtk_w32(eth, 1, MTK_CDMP_EG_CTRL);
1822
John Crispin656e7052016-03-08 11:29:55 +01001823 /* disable delay and normal interrupt */
1824 mtk_w32(eth, 0, MTK_QDMA_DELAY_INT);
Nelson Changbacfd112016-08-26 01:09:42 +08001825 mtk_w32(eth, 0, MTK_PDMA_DELAY_INT);
1826 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, ~0);
1827 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, ~0);
John Crispin656e7052016-03-08 11:29:55 +01001828 mtk_w32(eth, RST_GL_PSE, MTK_RST_GL);
1829 mtk_w32(eth, 0, MTK_RST_GL);
1830
1831 /* FE int grouping */
John Crispin80673022016-06-29 13:38:11 +02001832 mtk_w32(eth, MTK_TX_DONE_INT, MTK_PDMA_INT_GRP1);
1833 mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_GRP2);
1834 mtk_w32(eth, MTK_TX_DONE_INT, MTK_QDMA_INT_GRP1);
1835 mtk_w32(eth, MTK_RX_DONE_INT, MTK_QDMA_INT_GRP2);
1836 mtk_w32(eth, 0x21021000, MTK_FE_INT_GRP);
John Crispin656e7052016-03-08 11:29:55 +01001837
1838 for (i = 0; i < 2; i++) {
1839 u32 val = mtk_r32(eth, MTK_GDMA_FWD_CFG(i));
1840
Nelson Chang9c084352016-08-26 01:09:43 +08001841 /* setup the forward port to send frame to PDMA */
John Crispin656e7052016-03-08 11:29:55 +01001842 val &= ~0xffff;
John Crispin656e7052016-03-08 11:29:55 +01001843
1844 /* Enable RX checksum */
1845 val |= MTK_GDMA_ICS_EN | MTK_GDMA_TCS_EN | MTK_GDMA_UCS_EN;
1846
1847 /* setup the mac dma */
1848 mtk_w32(eth, val, MTK_GDMA_FWD_CFG(i));
1849 }
1850
1851 return 0;
1852}
1853
Sean Wangbf253fb2016-09-14 23:13:16 +08001854static int mtk_hw_deinit(struct mtk_eth *eth)
1855{
Sean Wang9ea4d312016-09-14 23:13:19 +08001856 if (!test_and_clear_bit(MTK_HW_INIT, &eth->state))
1857 return 0;
1858
Sean Wangbf253fb2016-09-14 23:13:16 +08001859 clk_disable_unprepare(eth->clks[MTK_CLK_GP2]);
1860 clk_disable_unprepare(eth->clks[MTK_CLK_GP1]);
1861 clk_disable_unprepare(eth->clks[MTK_CLK_ESW]);
1862 clk_disable_unprepare(eth->clks[MTK_CLK_ETHIF]);
1863
Sean Wang26a2ad82016-09-14 23:13:18 +08001864 pm_runtime_put_sync(eth->dev);
1865 pm_runtime_disable(eth->dev);
1866
Sean Wangbf253fb2016-09-14 23:13:16 +08001867 return 0;
1868}
1869
John Crispin656e7052016-03-08 11:29:55 +01001870static int __init mtk_init(struct net_device *dev)
1871{
1872 struct mtk_mac *mac = netdev_priv(dev);
1873 struct mtk_eth *eth = mac->hw;
1874 const char *mac_addr;
1875
1876 mac_addr = of_get_mac_address(mac->of_node);
1877 if (mac_addr)
1878 ether_addr_copy(dev->dev_addr, mac_addr);
1879
1880 /* If the mac address is invalid, use random mac address */
1881 if (!is_valid_ether_addr(dev->dev_addr)) {
1882 random_ether_addr(dev->dev_addr);
1883 dev_err(eth->dev, "generated random MAC address %pM\n",
1884 dev->dev_addr);
1885 dev->addr_assign_type = NET_ADDR_RANDOM;
1886 }
1887
1888 return mtk_phy_connect(mac);
1889}
1890
1891static void mtk_uninit(struct net_device *dev)
1892{
1893 struct mtk_mac *mac = netdev_priv(dev);
1894 struct mtk_eth *eth = mac->hw;
1895
1896 phy_disconnect(mac->phy_dev);
1897 mtk_mdio_cleanup(eth);
Nelson Changbacfd112016-08-26 01:09:42 +08001898 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, ~0);
1899 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, ~0);
John Crispin80673022016-06-29 13:38:11 +02001900 free_irq(eth->irq[1], dev);
1901 free_irq(eth->irq[2], dev);
John Crispin656e7052016-03-08 11:29:55 +01001902}
1903
1904static int mtk_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1905{
1906 struct mtk_mac *mac = netdev_priv(dev);
1907
1908 switch (cmd) {
1909 case SIOCGMIIPHY:
1910 case SIOCGMIIREG:
1911 case SIOCSMIIREG:
1912 return phy_mii_ioctl(mac->phy_dev, ifr, cmd);
1913 default:
1914 break;
1915 }
1916
1917 return -EOPNOTSUPP;
1918}
1919
1920static void mtk_pending_work(struct work_struct *work)
1921{
John Crispin7c78b4a2016-04-08 00:54:10 +02001922 struct mtk_eth *eth = container_of(work, struct mtk_eth, pending_work);
John Crispine7d425d2016-04-08 00:54:09 +02001923 int err, i;
1924 unsigned long restart = 0;
John Crispin656e7052016-03-08 11:29:55 +01001925
1926 rtnl_lock();
John Crispin656e7052016-03-08 11:29:55 +01001927
Sean Wangdce6fa42016-09-14 23:13:21 +08001928 dev_dbg(eth->dev, "[%s][%d] reset\n", __func__, __LINE__);
1929
1930 while (test_and_set_bit_lock(MTK_RESETTING, &eth->state))
1931 cpu_relax();
1932
1933 dev_dbg(eth->dev, "[%s][%d] mtk_stop starts\n", __func__, __LINE__);
John Crispine7d425d2016-04-08 00:54:09 +02001934 /* stop all devices to make sure that dma is properly shut down */
1935 for (i = 0; i < MTK_MAC_COUNT; i++) {
John Crispin7c78b4a2016-04-08 00:54:10 +02001936 if (!eth->netdev[i])
John Crispine7d425d2016-04-08 00:54:09 +02001937 continue;
1938 mtk_stop(eth->netdev[i]);
1939 __set_bit(i, &restart);
1940 }
Sean Wangdce6fa42016-09-14 23:13:21 +08001941 dev_dbg(eth->dev, "[%s][%d] mtk_stop ends\n", __func__, __LINE__);
John Crispine7d425d2016-04-08 00:54:09 +02001942
Sean Wang9ea4d312016-09-14 23:13:19 +08001943 /* restart underlying hardware such as power, clock, pin mux
1944 * and the connected phy
1945 */
1946 mtk_hw_deinit(eth);
1947
1948 if (eth->dev->pins)
1949 pinctrl_select_state(eth->dev->pins->p,
1950 eth->dev->pins->default_state);
1951 mtk_hw_init(eth);
1952
1953 for (i = 0; i < MTK_MAC_COUNT; i++) {
1954 if (!eth->mac[i] ||
1955 of_phy_is_fixed_link(eth->mac[i]->of_node))
1956 continue;
1957 err = phy_init_hw(eth->mac[i]->phy_dev);
1958 if (err)
1959 dev_err(eth->dev, "%s: PHY init failed.\n",
1960 eth->netdev[i]->name);
1961 }
1962
John Crispine7d425d2016-04-08 00:54:09 +02001963 /* restart DMA and enable IRQs */
1964 for (i = 0; i < MTK_MAC_COUNT; i++) {
1965 if (!test_bit(i, &restart))
1966 continue;
1967 err = mtk_open(eth->netdev[i]);
1968 if (err) {
1969 netif_alert(eth, ifup, eth->netdev[i],
1970 "Driver up/down cycle failed, closing device.\n");
1971 dev_close(eth->netdev[i]);
1972 }
John Crispin656e7052016-03-08 11:29:55 +01001973 }
Sean Wangdce6fa42016-09-14 23:13:21 +08001974
1975 dev_dbg(eth->dev, "[%s][%d] reset done\n", __func__, __LINE__);
1976
1977 clear_bit_unlock(MTK_RESETTING, &eth->state);
1978
John Crispin656e7052016-03-08 11:29:55 +01001979 rtnl_unlock();
1980}
1981
Sean Wang8a8a9e82016-09-14 23:13:17 +08001982static int mtk_free_dev(struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +01001983{
1984 int i;
1985
1986 for (i = 0; i < MTK_MAC_COUNT; i++) {
John Crispin656e7052016-03-08 11:29:55 +01001987 if (!eth->netdev[i])
1988 continue;
John Crispin656e7052016-03-08 11:29:55 +01001989 free_netdev(eth->netdev[i]);
John Crispin656e7052016-03-08 11:29:55 +01001990 }
Sean Wang8a8a9e82016-09-14 23:13:17 +08001991
1992 return 0;
1993}
1994
1995static int mtk_unreg_dev(struct mtk_eth *eth)
1996{
1997 int i;
1998
1999 for (i = 0; i < MTK_MAC_COUNT; i++) {
2000 if (!eth->netdev[i])
2001 continue;
2002 unregister_netdev(eth->netdev[i]);
2003 }
2004
2005 return 0;
2006}
2007
2008static int mtk_cleanup(struct mtk_eth *eth)
2009{
2010 mtk_unreg_dev(eth);
2011 mtk_free_dev(eth);
John Crispin7c78b4a2016-04-08 00:54:10 +02002012 cancel_work_sync(&eth->pending_work);
John Crispin656e7052016-03-08 11:29:55 +01002013
2014 return 0;
2015}
2016
2017static int mtk_get_settings(struct net_device *dev,
2018 struct ethtool_cmd *cmd)
2019{
2020 struct mtk_mac *mac = netdev_priv(dev);
2021 int err;
2022
Sean Wangdce6fa42016-09-14 23:13:21 +08002023 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2024 return -EBUSY;
2025
John Crispin656e7052016-03-08 11:29:55 +01002026 err = phy_read_status(mac->phy_dev);
2027 if (err)
2028 return -ENODEV;
2029
2030 return phy_ethtool_gset(mac->phy_dev, cmd);
2031}
2032
2033static int mtk_set_settings(struct net_device *dev,
2034 struct ethtool_cmd *cmd)
2035{
2036 struct mtk_mac *mac = netdev_priv(dev);
2037
2038 if (cmd->phy_address != mac->phy_dev->mdio.addr) {
2039 mac->phy_dev = mdiobus_get_phy(mac->hw->mii_bus,
2040 cmd->phy_address);
2041 if (!mac->phy_dev)
2042 return -ENODEV;
2043 }
2044
2045 return phy_ethtool_sset(mac->phy_dev, cmd);
2046}
2047
2048static void mtk_get_drvinfo(struct net_device *dev,
2049 struct ethtool_drvinfo *info)
2050{
2051 struct mtk_mac *mac = netdev_priv(dev);
2052
2053 strlcpy(info->driver, mac->hw->dev->driver->name, sizeof(info->driver));
2054 strlcpy(info->bus_info, dev_name(mac->hw->dev), sizeof(info->bus_info));
2055 info->n_stats = ARRAY_SIZE(mtk_ethtool_stats);
2056}
2057
2058static u32 mtk_get_msglevel(struct net_device *dev)
2059{
2060 struct mtk_mac *mac = netdev_priv(dev);
2061
2062 return mac->hw->msg_enable;
2063}
2064
2065static void mtk_set_msglevel(struct net_device *dev, u32 value)
2066{
2067 struct mtk_mac *mac = netdev_priv(dev);
2068
2069 mac->hw->msg_enable = value;
2070}
2071
2072static int mtk_nway_reset(struct net_device *dev)
2073{
2074 struct mtk_mac *mac = netdev_priv(dev);
2075
Sean Wangdce6fa42016-09-14 23:13:21 +08002076 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2077 return -EBUSY;
2078
John Crispin656e7052016-03-08 11:29:55 +01002079 return genphy_restart_aneg(mac->phy_dev);
2080}
2081
2082static u32 mtk_get_link(struct net_device *dev)
2083{
2084 struct mtk_mac *mac = netdev_priv(dev);
2085 int err;
2086
Sean Wangdce6fa42016-09-14 23:13:21 +08002087 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2088 return -EBUSY;
2089
John Crispin656e7052016-03-08 11:29:55 +01002090 err = genphy_update_link(mac->phy_dev);
2091 if (err)
2092 return ethtool_op_get_link(dev);
2093
2094 return mac->phy_dev->link;
2095}
2096
2097static void mtk_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2098{
2099 int i;
2100
2101 switch (stringset) {
2102 case ETH_SS_STATS:
2103 for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++) {
2104 memcpy(data, mtk_ethtool_stats[i].str, ETH_GSTRING_LEN);
2105 data += ETH_GSTRING_LEN;
2106 }
2107 break;
2108 }
2109}
2110
2111static int mtk_get_sset_count(struct net_device *dev, int sset)
2112{
2113 switch (sset) {
2114 case ETH_SS_STATS:
2115 return ARRAY_SIZE(mtk_ethtool_stats);
2116 default:
2117 return -EOPNOTSUPP;
2118 }
2119}
2120
2121static void mtk_get_ethtool_stats(struct net_device *dev,
2122 struct ethtool_stats *stats, u64 *data)
2123{
2124 struct mtk_mac *mac = netdev_priv(dev);
2125 struct mtk_hw_stats *hwstats = mac->hw_stats;
2126 u64 *data_src, *data_dst;
2127 unsigned int start;
2128 int i;
2129
Sean Wangdce6fa42016-09-14 23:13:21 +08002130 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
2131 return;
2132
John Crispin656e7052016-03-08 11:29:55 +01002133 if (netif_running(dev) && netif_device_present(dev)) {
2134 if (spin_trylock(&hwstats->stats_lock)) {
2135 mtk_stats_update_mac(mac);
2136 spin_unlock(&hwstats->stats_lock);
2137 }
2138 }
2139
2140 do {
Nelson Changbacfd112016-08-26 01:09:42 +08002141 data_src = (u64 *)hwstats;
John Crispin656e7052016-03-08 11:29:55 +01002142 data_dst = data;
2143 start = u64_stats_fetch_begin_irq(&hwstats->syncp);
2144
2145 for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++)
2146 *data_dst++ = *(data_src + mtk_ethtool_stats[i].offset);
2147 } while (u64_stats_fetch_retry_irq(&hwstats->syncp, start));
2148}
2149
Nelson Chang7aab7472016-09-17 23:50:56 +08002150static int mtk_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd,
2151 u32 *rule_locs)
2152{
2153 int ret = -EOPNOTSUPP;
2154
2155 switch (cmd->cmd) {
2156 case ETHTOOL_GRXRINGS:
2157 if (dev->features & NETIF_F_LRO) {
2158 cmd->data = MTK_MAX_RX_RING_NUM;
2159 ret = 0;
2160 }
2161 break;
2162 case ETHTOOL_GRXCLSRLCNT:
2163 if (dev->features & NETIF_F_LRO) {
2164 struct mtk_mac *mac = netdev_priv(dev);
2165
2166 cmd->rule_cnt = mac->hwlro_ip_cnt;
2167 ret = 0;
2168 }
2169 break;
2170 case ETHTOOL_GRXCLSRULE:
2171 if (dev->features & NETIF_F_LRO)
2172 ret = mtk_hwlro_get_fdir_entry(dev, cmd);
2173 break;
2174 case ETHTOOL_GRXCLSRLALL:
2175 if (dev->features & NETIF_F_LRO)
2176 ret = mtk_hwlro_get_fdir_all(dev, cmd,
2177 rule_locs);
2178 break;
2179 default:
2180 break;
2181 }
2182
2183 return ret;
2184}
2185
2186static int mtk_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *cmd)
2187{
2188 int ret = -EOPNOTSUPP;
2189
2190 switch (cmd->cmd) {
2191 case ETHTOOL_SRXCLSRLINS:
2192 if (dev->features & NETIF_F_LRO)
2193 ret = mtk_hwlro_add_ipaddr(dev, cmd);
2194 break;
2195 case ETHTOOL_SRXCLSRLDEL:
2196 if (dev->features & NETIF_F_LRO)
2197 ret = mtk_hwlro_del_ipaddr(dev, cmd);
2198 break;
2199 default:
2200 break;
2201 }
2202
2203 return ret;
2204}
2205
Julia Lawall6a38cb12016-09-01 00:21:19 +02002206static const struct ethtool_ops mtk_ethtool_ops = {
John Crispin656e7052016-03-08 11:29:55 +01002207 .get_settings = mtk_get_settings,
2208 .set_settings = mtk_set_settings,
2209 .get_drvinfo = mtk_get_drvinfo,
2210 .get_msglevel = mtk_get_msglevel,
2211 .set_msglevel = mtk_set_msglevel,
2212 .nway_reset = mtk_nway_reset,
2213 .get_link = mtk_get_link,
2214 .get_strings = mtk_get_strings,
2215 .get_sset_count = mtk_get_sset_count,
2216 .get_ethtool_stats = mtk_get_ethtool_stats,
Nelson Chang7aab7472016-09-17 23:50:56 +08002217 .get_rxnfc = mtk_get_rxnfc,
2218 .set_rxnfc = mtk_set_rxnfc,
John Crispin656e7052016-03-08 11:29:55 +01002219};
2220
2221static const struct net_device_ops mtk_netdev_ops = {
2222 .ndo_init = mtk_init,
2223 .ndo_uninit = mtk_uninit,
2224 .ndo_open = mtk_open,
2225 .ndo_stop = mtk_stop,
2226 .ndo_start_xmit = mtk_start_xmit,
2227 .ndo_set_mac_address = mtk_set_mac_address,
2228 .ndo_validate_addr = eth_validate_addr,
2229 .ndo_do_ioctl = mtk_do_ioctl,
2230 .ndo_change_mtu = eth_change_mtu,
2231 .ndo_tx_timeout = mtk_tx_timeout,
2232 .ndo_get_stats64 = mtk_get_stats64,
Nelson Chang7aab7472016-09-17 23:50:56 +08002233 .ndo_fix_features = mtk_fix_features,
2234 .ndo_set_features = mtk_set_features,
John Crispin656e7052016-03-08 11:29:55 +01002235#ifdef CONFIG_NET_POLL_CONTROLLER
2236 .ndo_poll_controller = mtk_poll_controller,
2237#endif
2238};
2239
2240static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np)
2241{
2242 struct mtk_mac *mac;
2243 const __be32 *_id = of_get_property(np, "reg", NULL);
2244 int id, err;
2245
2246 if (!_id) {
2247 dev_err(eth->dev, "missing mac id\n");
2248 return -EINVAL;
2249 }
2250
2251 id = be32_to_cpup(_id);
2252 if (id >= MTK_MAC_COUNT) {
2253 dev_err(eth->dev, "%d is not a valid mac id\n", id);
2254 return -EINVAL;
2255 }
2256
2257 if (eth->netdev[id]) {
2258 dev_err(eth->dev, "duplicate mac id found: %d\n", id);
2259 return -EINVAL;
2260 }
2261
2262 eth->netdev[id] = alloc_etherdev(sizeof(*mac));
2263 if (!eth->netdev[id]) {
2264 dev_err(eth->dev, "alloc_etherdev failed\n");
2265 return -ENOMEM;
2266 }
2267 mac = netdev_priv(eth->netdev[id]);
2268 eth->mac[id] = mac;
2269 mac->id = id;
2270 mac->hw = eth;
2271 mac->of_node = np;
John Crispin656e7052016-03-08 11:29:55 +01002272
Nelson Changee406812016-09-17 23:50:55 +08002273 memset(mac->hwlro_ip, 0, sizeof(mac->hwlro_ip));
2274 mac->hwlro_ip_cnt = 0;
2275
John Crispin656e7052016-03-08 11:29:55 +01002276 mac->hw_stats = devm_kzalloc(eth->dev,
2277 sizeof(*mac->hw_stats),
2278 GFP_KERNEL);
2279 if (!mac->hw_stats) {
2280 dev_err(eth->dev, "failed to allocate counter memory\n");
2281 err = -ENOMEM;
2282 goto free_netdev;
2283 }
2284 spin_lock_init(&mac->hw_stats->stats_lock);
sean.wang@mediatek.comd70056522016-08-13 19:16:18 +08002285 u64_stats_init(&mac->hw_stats->syncp);
John Crispin656e7052016-03-08 11:29:55 +01002286 mac->hw_stats->reg_offset = id * MTK_STAT_OFFSET;
2287
2288 SET_NETDEV_DEV(eth->netdev[id], eth->dev);
John Crispineaadf9f2016-06-10 13:28:05 +02002289 eth->netdev[id]->watchdog_timeo = 5 * HZ;
John Crispin656e7052016-03-08 11:29:55 +01002290 eth->netdev[id]->netdev_ops = &mtk_netdev_ops;
2291 eth->netdev[id]->base_addr = (unsigned long)eth->base;
Nelson Changee406812016-09-17 23:50:55 +08002292
2293 eth->netdev[id]->hw_features = MTK_HW_FEATURES;
2294 if (eth->hwlro)
2295 eth->netdev[id]->hw_features |= NETIF_F_LRO;
2296
John Crispin656e7052016-03-08 11:29:55 +01002297 eth->netdev[id]->vlan_features = MTK_HW_FEATURES &
2298 ~(NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX);
2299 eth->netdev[id]->features |= MTK_HW_FEATURES;
2300 eth->netdev[id]->ethtool_ops = &mtk_ethtool_ops;
2301
John Crispin80673022016-06-29 13:38:11 +02002302 eth->netdev[id]->irq = eth->irq[0];
John Crispin656e7052016-03-08 11:29:55 +01002303 return 0;
2304
2305free_netdev:
2306 free_netdev(eth->netdev[id]);
2307 return err;
2308}
2309
2310static int mtk_probe(struct platform_device *pdev)
2311{
2312 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2313 struct device_node *mac_np;
2314 const struct of_device_id *match;
2315 struct mtk_soc_data *soc;
2316 struct mtk_eth *eth;
2317 int err;
John Crispin80673022016-06-29 13:38:11 +02002318 int i;
John Crispin656e7052016-03-08 11:29:55 +01002319
John Crispin656e7052016-03-08 11:29:55 +01002320 match = of_match_device(of_mtk_match, &pdev->dev);
2321 soc = (struct mtk_soc_data *)match->data;
2322
2323 eth = devm_kzalloc(&pdev->dev, sizeof(*eth), GFP_KERNEL);
2324 if (!eth)
2325 return -ENOMEM;
2326
Sean Wang549e5492016-09-01 10:47:28 +08002327 eth->dev = &pdev->dev;
John Crispin656e7052016-03-08 11:29:55 +01002328 eth->base = devm_ioremap_resource(&pdev->dev, res);
Vladimir Zapolskiy621e49f2016-03-23 01:06:04 +02002329 if (IS_ERR(eth->base))
2330 return PTR_ERR(eth->base);
John Crispin656e7052016-03-08 11:29:55 +01002331
2332 spin_lock_init(&eth->page_lock);
John Crispin7bc9cce2016-06-29 13:38:10 +02002333 spin_lock_init(&eth->irq_lock);
John Crispin656e7052016-03-08 11:29:55 +01002334
2335 eth->ethsys = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
2336 "mediatek,ethsys");
2337 if (IS_ERR(eth->ethsys)) {
2338 dev_err(&pdev->dev, "no ethsys regmap found\n");
2339 return PTR_ERR(eth->ethsys);
2340 }
2341
2342 eth->pctl = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
2343 "mediatek,pctl");
2344 if (IS_ERR(eth->pctl)) {
2345 dev_err(&pdev->dev, "no pctl regmap found\n");
2346 return PTR_ERR(eth->pctl);
2347 }
2348
Nelson Changee406812016-09-17 23:50:55 +08002349 eth->hwlro = of_property_read_bool(pdev->dev.of_node, "mediatek,hwlro");
2350
John Crispin80673022016-06-29 13:38:11 +02002351 for (i = 0; i < 3; i++) {
2352 eth->irq[i] = platform_get_irq(pdev, i);
2353 if (eth->irq[i] < 0) {
2354 dev_err(&pdev->dev, "no IRQ%d resource found\n", i);
2355 return -ENXIO;
2356 }
John Crispin656e7052016-03-08 11:29:55 +01002357 }
Sean Wang549e5492016-09-01 10:47:28 +08002358 for (i = 0; i < ARRAY_SIZE(eth->clks); i++) {
2359 eth->clks[i] = devm_clk_get(eth->dev,
2360 mtk_clks_source_name[i]);
2361 if (IS_ERR(eth->clks[i])) {
2362 if (PTR_ERR(eth->clks[i]) == -EPROBE_DEFER)
2363 return -EPROBE_DEFER;
2364 return -ENODEV;
2365 }
2366 }
John Crispin656e7052016-03-08 11:29:55 +01002367
John Crispin656e7052016-03-08 11:29:55 +01002368 eth->msg_enable = netif_msg_init(mtk_msg_level, MTK_DEFAULT_MSG_ENABLE);
John Crispin7c78b4a2016-04-08 00:54:10 +02002369 INIT_WORK(&eth->pending_work, mtk_pending_work);
John Crispin656e7052016-03-08 11:29:55 +01002370
2371 err = mtk_hw_init(eth);
2372 if (err)
2373 return err;
2374
2375 for_each_child_of_node(pdev->dev.of_node, mac_np) {
2376 if (!of_device_is_compatible(mac_np,
2377 "mediatek,eth-mac"))
2378 continue;
2379
2380 if (!of_device_is_available(mac_np))
2381 continue;
2382
2383 err = mtk_add_mac(eth, mac_np);
2384 if (err)
Sean Wang8a8a9e82016-09-14 23:13:17 +08002385 goto err_deinit_hw;
John Crispin656e7052016-03-08 11:29:55 +01002386 }
2387
Sean Wang85574db2016-09-14 23:13:15 +08002388 err = devm_request_irq(eth->dev, eth->irq[1], mtk_handle_irq_tx, 0,
2389 dev_name(eth->dev), eth);
2390 if (err)
2391 goto err_free_dev;
2392
2393 err = devm_request_irq(eth->dev, eth->irq[2], mtk_handle_irq_rx, 0,
2394 dev_name(eth->dev), eth);
2395 if (err)
2396 goto err_free_dev;
2397
2398 err = mtk_mdio_init(eth);
2399 if (err)
2400 goto err_free_dev;
2401
2402 for (i = 0; i < MTK_MAX_DEVS; i++) {
2403 if (!eth->netdev[i])
2404 continue;
2405
2406 err = register_netdev(eth->netdev[i]);
2407 if (err) {
2408 dev_err(eth->dev, "error bringing up device\n");
Sean Wang8a8a9e82016-09-14 23:13:17 +08002409 goto err_deinit_mdio;
Sean Wang85574db2016-09-14 23:13:15 +08002410 } else
2411 netif_info(eth, probe, eth->netdev[i],
2412 "mediatek frame engine at 0x%08lx, irq %d\n",
2413 eth->netdev[i]->base_addr, eth->irq[0]);
2414 }
2415
John Crispin656e7052016-03-08 11:29:55 +01002416 /* we run 2 devices on the same DMA ring so we need a dummy device
2417 * for NAPI to work
2418 */
2419 init_dummy_netdev(&eth->dummy_dev);
John Crispin80673022016-06-29 13:38:11 +02002420 netif_napi_add(&eth->dummy_dev, &eth->tx_napi, mtk_napi_tx,
2421 MTK_NAPI_WEIGHT);
2422 netif_napi_add(&eth->dummy_dev, &eth->rx_napi, mtk_napi_rx,
John Crispin656e7052016-03-08 11:29:55 +01002423 MTK_NAPI_WEIGHT);
2424
2425 platform_set_drvdata(pdev, eth);
2426
2427 return 0;
2428
Sean Wang8a8a9e82016-09-14 23:13:17 +08002429err_deinit_mdio:
2430 mtk_mdio_cleanup(eth);
John Crispin656e7052016-03-08 11:29:55 +01002431err_free_dev:
Sean Wang8a8a9e82016-09-14 23:13:17 +08002432 mtk_free_dev(eth);
2433err_deinit_hw:
2434 mtk_hw_deinit(eth);
2435
John Crispin656e7052016-03-08 11:29:55 +01002436 return err;
2437}
2438
2439static int mtk_remove(struct platform_device *pdev)
2440{
2441 struct mtk_eth *eth = platform_get_drvdata(pdev);
Sean Wang79e9a412016-09-01 10:47:32 +08002442 int i;
John Crispin656e7052016-03-08 11:29:55 +01002443
Sean Wang79e9a412016-09-01 10:47:32 +08002444 /* stop all devices to make sure that dma is properly shut down */
2445 for (i = 0; i < MTK_MAC_COUNT; i++) {
2446 if (!eth->netdev[i])
2447 continue;
2448 mtk_stop(eth->netdev[i]);
2449 }
John Crispin656e7052016-03-08 11:29:55 +01002450
Sean Wangbf253fb2016-09-14 23:13:16 +08002451 mtk_hw_deinit(eth);
John Crispin656e7052016-03-08 11:29:55 +01002452
John Crispin80673022016-06-29 13:38:11 +02002453 netif_napi_del(&eth->tx_napi);
John Crispin656e7052016-03-08 11:29:55 +01002454 netif_napi_del(&eth->rx_napi);
2455 mtk_cleanup(eth);
John Crispin656e7052016-03-08 11:29:55 +01002456
2457 return 0;
2458}
2459
2460const struct of_device_id of_mtk_match[] = {
2461 { .compatible = "mediatek,mt7623-eth" },
2462 {},
2463};
2464
2465static struct platform_driver mtk_driver = {
2466 .probe = mtk_probe,
2467 .remove = mtk_remove,
2468 .driver = {
2469 .name = "mtk_soc_eth",
John Crispin656e7052016-03-08 11:29:55 +01002470 .of_match_table = of_mtk_match,
2471 },
2472};
2473
2474module_platform_driver(mtk_driver);
2475
2476MODULE_LICENSE("GPL");
2477MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
2478MODULE_DESCRIPTION("Ethernet driver for MediaTek SoC");