blob: 522fe8dda6c3f81f84f68646b9a536ad499702a4 [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
823static int mtk_poll_rx(struct napi_struct *napi, int budget,
John Crispineece71e2016-06-29 13:38:09 +0200824 struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +0100825{
826 struct mtk_rx_ring *ring = &eth->rx_ring;
827 int idx = ring->calc_idx;
828 struct sk_buff *skb;
829 u8 *data, *new_data;
830 struct mtk_rx_dma *rxd, trxd;
831 int done = 0;
832
833 while (done < budget) {
834 struct net_device *netdev;
835 unsigned int pktlen;
836 dma_addr_t dma_addr;
837 int mac = 0;
838
839 idx = NEXT_RX_DESP_IDX(idx);
840 rxd = &ring->dma[idx];
841 data = ring->data[idx];
842
843 mtk_rx_get_desc(&trxd, rxd);
844 if (!(trxd.rxd2 & RX_DMA_DONE))
845 break;
846
847 /* find out which mac the packet come from. values start at 1 */
848 mac = (trxd.rxd4 >> RX_DMA_FPORT_SHIFT) &
849 RX_DMA_FPORT_MASK;
850 mac--;
851
852 netdev = eth->netdev[mac];
853
Sean Wangdce6fa42016-09-14 23:13:21 +0800854 if (unlikely(test_bit(MTK_RESETTING, &eth->state)))
855 goto release_desc;
856
John Crispin656e7052016-03-08 11:29:55 +0100857 /* alloc new buffer */
858 new_data = napi_alloc_frag(ring->frag_size);
859 if (unlikely(!new_data)) {
860 netdev->stats.rx_dropped++;
861 goto release_desc;
862 }
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800863 dma_addr = dma_map_single(eth->dev,
John Crispin656e7052016-03-08 11:29:55 +0100864 new_data + NET_SKB_PAD,
865 ring->buf_size,
866 DMA_FROM_DEVICE);
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800867 if (unlikely(dma_mapping_error(eth->dev, dma_addr))) {
John Crispin656e7052016-03-08 11:29:55 +0100868 skb_free_frag(new_data);
John Crispin94321a92016-06-10 13:28:01 +0200869 netdev->stats.rx_dropped++;
John Crispin656e7052016-03-08 11:29:55 +0100870 goto release_desc;
871 }
872
873 /* receive data */
874 skb = build_skb(data, ring->frag_size);
875 if (unlikely(!skb)) {
Sean Wang1b430792016-09-01 10:47:29 +0800876 skb_free_frag(new_data);
John Crispin94321a92016-06-10 13:28:01 +0200877 netdev->stats.rx_dropped++;
John Crispin656e7052016-03-08 11:29:55 +0100878 goto release_desc;
879 }
880 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
881
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800882 dma_unmap_single(eth->dev, trxd.rxd1,
John Crispin656e7052016-03-08 11:29:55 +0100883 ring->buf_size, DMA_FROM_DEVICE);
884 pktlen = RX_DMA_GET_PLEN0(trxd.rxd2);
885 skb->dev = netdev;
886 skb_put(skb, pktlen);
887 if (trxd.rxd4 & RX_DMA_L4_VALID)
888 skb->ip_summed = CHECKSUM_UNNECESSARY;
889 else
890 skb_checksum_none_assert(skb);
891 skb->protocol = eth_type_trans(skb, netdev);
892
893 if (netdev->features & NETIF_F_HW_VLAN_CTAG_RX &&
894 RX_DMA_VID(trxd.rxd3))
895 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
896 RX_DMA_VID(trxd.rxd3));
897 napi_gro_receive(napi, skb);
898
899 ring->data[idx] = new_data;
900 rxd->rxd1 = (unsigned int)dma_addr;
901
902release_desc:
903 rxd->rxd2 = RX_DMA_PLEN0(ring->buf_size);
904
905 ring->calc_idx = idx;
Sean Wang635372a2016-09-03 17:59:26 +0800906
John Crispin656e7052016-03-08 11:29:55 +0100907 done++;
908 }
909
Sean Wang41156ce2016-09-03 17:59:27 +0800910 if (done) {
911 /* make sure that all changes to the dma ring are flushed before
912 * we continue
913 */
914 wmb();
915 mtk_w32(eth, ring->calc_idx, MTK_PRX_CRX_IDX0);
916 }
John Crispin656e7052016-03-08 11:29:55 +0100917
918 return done;
919}
920
John Crispin80673022016-06-29 13:38:11 +0200921static int mtk_poll_tx(struct mtk_eth *eth, int budget)
John Crispin656e7052016-03-08 11:29:55 +0100922{
923 struct mtk_tx_ring *ring = &eth->tx_ring;
924 struct mtk_tx_dma *desc;
925 struct sk_buff *skb;
926 struct mtk_tx_buf *tx_buf;
John Crispin80673022016-06-29 13:38:11 +0200927 unsigned int done[MTK_MAX_DEVS];
John Crispin656e7052016-03-08 11:29:55 +0100928 unsigned int bytes[MTK_MAX_DEVS];
929 u32 cpu, dma;
930 static int condition;
John Crispin80673022016-06-29 13:38:11 +0200931 int total = 0, i;
John Crispin656e7052016-03-08 11:29:55 +0100932
933 memset(done, 0, sizeof(done));
934 memset(bytes, 0, sizeof(bytes));
935
936 cpu = mtk_r32(eth, MTK_QTX_CRX_PTR);
937 dma = mtk_r32(eth, MTK_QTX_DRX_PTR);
938
939 desc = mtk_qdma_phys_to_virt(ring, cpu);
940
941 while ((cpu != dma) && budget) {
942 u32 next_cpu = desc->txd2;
943 int mac;
944
945 desc = mtk_qdma_phys_to_virt(ring, desc->txd2);
946 if ((desc->txd3 & TX_DMA_OWNER_CPU) == 0)
947 break;
948
949 mac = (desc->txd4 >> TX_DMA_FPORT_SHIFT) &
950 TX_DMA_FPORT_MASK;
951 mac--;
952
953 tx_buf = mtk_desc_to_tx_buf(ring, desc);
954 skb = tx_buf->skb;
955 if (!skb) {
956 condition = 1;
957 break;
958 }
959
960 if (skb != (struct sk_buff *)MTK_DMA_DUMMY_DESC) {
961 bytes[mac] += skb->len;
962 done[mac]++;
963 budget--;
964 }
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +0800965 mtk_tx_unmap(eth, tx_buf);
John Crispin656e7052016-03-08 11:29:55 +0100966
John Crispin656e7052016-03-08 11:29:55 +0100967 ring->last_free = desc;
968 atomic_inc(&ring->free_count);
969
970 cpu = next_cpu;
971 }
972
973 mtk_w32(eth, cpu, MTK_QTX_CRX_PTR);
974
975 for (i = 0; i < MTK_MAC_COUNT; i++) {
976 if (!eth->netdev[i] || !done[i])
977 continue;
978 netdev_completed_queue(eth->netdev[i], done[i], bytes[i]);
979 total += done[i];
980 }
981
John Crispinad3cba92016-06-10 13:28:07 +0200982 if (mtk_queue_stopped(eth) &&
983 (atomic_read(&ring->free_count) > ring->thresh))
John Crispin13c822f2016-04-08 00:54:07 +0200984 mtk_wake_queue(eth);
John Crispin656e7052016-03-08 11:29:55 +0100985
986 return total;
987}
988
John Crispin80673022016-06-29 13:38:11 +0200989static void mtk_handle_status_irq(struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +0100990{
John Crispin80673022016-06-29 13:38:11 +0200991 u32 status2 = mtk_r32(eth, MTK_INT_STATUS2);
John Crispin656e7052016-03-08 11:29:55 +0100992
John Crispineece71e2016-06-29 13:38:09 +0200993 if (unlikely(status2 & (MTK_GDM1_AF | MTK_GDM2_AF))) {
John Crispin656e7052016-03-08 11:29:55 +0100994 mtk_stats_update(eth);
John Crispineece71e2016-06-29 13:38:09 +0200995 mtk_w32(eth, (MTK_GDM1_AF | MTK_GDM2_AF),
996 MTK_INT_STATUS2);
John Crispin656e7052016-03-08 11:29:55 +0100997 }
John Crispin80673022016-06-29 13:38:11 +0200998}
999
1000static int mtk_napi_tx(struct napi_struct *napi, int budget)
1001{
1002 struct mtk_eth *eth = container_of(napi, struct mtk_eth, tx_napi);
1003 u32 status, mask;
1004 int tx_done = 0;
1005
1006 mtk_handle_status_irq(eth);
1007 mtk_w32(eth, MTK_TX_DONE_INT, MTK_QMTK_INT_STATUS);
1008 tx_done = mtk_poll_tx(eth, budget);
John Crispin656e7052016-03-08 11:29:55 +01001009
1010 if (unlikely(netif_msg_intr(eth))) {
John Crispin80673022016-06-29 13:38:11 +02001011 status = mtk_r32(eth, MTK_QMTK_INT_STATUS);
John Crispin656e7052016-03-08 11:29:55 +01001012 mask = mtk_r32(eth, MTK_QDMA_INT_MASK);
John Crispin80673022016-06-29 13:38:11 +02001013 dev_info(eth->dev,
1014 "done tx %d, intr 0x%08x/0x%x\n",
1015 tx_done, status, mask);
John Crispin656e7052016-03-08 11:29:55 +01001016 }
1017
John Crispin80673022016-06-29 13:38:11 +02001018 if (tx_done == budget)
John Crispin656e7052016-03-08 11:29:55 +01001019 return budget;
1020
1021 status = mtk_r32(eth, MTK_QMTK_INT_STATUS);
John Crispin80673022016-06-29 13:38:11 +02001022 if (status & MTK_TX_DONE_INT)
John Crispin656e7052016-03-08 11:29:55 +01001023 return budget;
1024
1025 napi_complete(napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001026 mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
John Crispin80673022016-06-29 13:38:11 +02001027
1028 return tx_done;
1029}
1030
1031static int mtk_napi_rx(struct napi_struct *napi, int budget)
1032{
1033 struct mtk_eth *eth = container_of(napi, struct mtk_eth, rx_napi);
1034 u32 status, mask;
1035 int rx_done = 0;
Sean Wang41156ce2016-09-03 17:59:27 +08001036 int remain_budget = budget;
John Crispin80673022016-06-29 13:38:11 +02001037
1038 mtk_handle_status_irq(eth);
Sean Wang41156ce2016-09-03 17:59:27 +08001039
1040poll_again:
Nelson Changbacfd112016-08-26 01:09:42 +08001041 mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_STATUS);
Sean Wang41156ce2016-09-03 17:59:27 +08001042 rx_done = mtk_poll_rx(napi, remain_budget, eth);
John Crispin80673022016-06-29 13:38:11 +02001043
1044 if (unlikely(netif_msg_intr(eth))) {
Nelson Changbacfd112016-08-26 01:09:42 +08001045 status = mtk_r32(eth, MTK_PDMA_INT_STATUS);
1046 mask = mtk_r32(eth, MTK_PDMA_INT_MASK);
John Crispin80673022016-06-29 13:38:11 +02001047 dev_info(eth->dev,
1048 "done rx %d, intr 0x%08x/0x%x\n",
1049 rx_done, status, mask);
1050 }
Sean Wang41156ce2016-09-03 17:59:27 +08001051 if (rx_done == remain_budget)
John Crispin80673022016-06-29 13:38:11 +02001052 return budget;
1053
Nelson Changbacfd112016-08-26 01:09:42 +08001054 status = mtk_r32(eth, MTK_PDMA_INT_STATUS);
Sean Wang41156ce2016-09-03 17:59:27 +08001055 if (status & MTK_RX_DONE_INT) {
1056 remain_budget -= rx_done;
1057 goto poll_again;
1058 }
John Crispin80673022016-06-29 13:38:11 +02001059 napi_complete(napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001060 mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001061
Sean Wang41156ce2016-09-03 17:59:27 +08001062 return rx_done + budget - remain_budget;
John Crispin656e7052016-03-08 11:29:55 +01001063}
1064
1065static int mtk_tx_alloc(struct mtk_eth *eth)
1066{
1067 struct mtk_tx_ring *ring = &eth->tx_ring;
1068 int i, sz = sizeof(*ring->dma);
1069
1070 ring->buf = kcalloc(MTK_DMA_SIZE, sizeof(*ring->buf),
1071 GFP_KERNEL);
1072 if (!ring->buf)
1073 goto no_tx_mem;
1074
1075 ring->dma = dma_alloc_coherent(eth->dev,
1076 MTK_DMA_SIZE * sz,
1077 &ring->phys,
1078 GFP_ATOMIC | __GFP_ZERO);
1079 if (!ring->dma)
1080 goto no_tx_mem;
1081
1082 memset(ring->dma, 0, MTK_DMA_SIZE * sz);
1083 for (i = 0; i < MTK_DMA_SIZE; i++) {
1084 int next = (i + 1) % MTK_DMA_SIZE;
1085 u32 next_ptr = ring->phys + next * sz;
1086
1087 ring->dma[i].txd2 = next_ptr;
1088 ring->dma[i].txd3 = TX_DMA_LS0 | TX_DMA_OWNER_CPU;
1089 }
1090
1091 atomic_set(&ring->free_count, MTK_DMA_SIZE - 2);
1092 ring->next_free = &ring->dma[0];
John Crispin12c97c12016-06-10 13:28:06 +02001093 ring->last_free = &ring->dma[MTK_DMA_SIZE - 1];
John Crispin04698cc2016-06-10 13:28:04 +02001094 ring->thresh = MAX_SKB_FRAGS;
John Crispin656e7052016-03-08 11:29:55 +01001095
1096 /* make sure that all changes to the dma ring are flushed before we
1097 * continue
1098 */
1099 wmb();
1100
1101 mtk_w32(eth, ring->phys, MTK_QTX_CTX_PTR);
1102 mtk_w32(eth, ring->phys, MTK_QTX_DTX_PTR);
1103 mtk_w32(eth,
1104 ring->phys + ((MTK_DMA_SIZE - 1) * sz),
1105 MTK_QTX_CRX_PTR);
1106 mtk_w32(eth,
1107 ring->phys + ((MTK_DMA_SIZE - 1) * sz),
1108 MTK_QTX_DRX_PTR);
Nelson Changbacfd112016-08-26 01:09:42 +08001109 mtk_w32(eth, (QDMA_RES_THRES << 8) | QDMA_RES_THRES, MTK_QTX_CFG(0));
John Crispin656e7052016-03-08 11:29:55 +01001110
1111 return 0;
1112
1113no_tx_mem:
1114 return -ENOMEM;
1115}
1116
1117static void mtk_tx_clean(struct mtk_eth *eth)
1118{
1119 struct mtk_tx_ring *ring = &eth->tx_ring;
1120 int i;
1121
1122 if (ring->buf) {
1123 for (i = 0; i < MTK_DMA_SIZE; i++)
sean.wang@mediatek.com55a4e772016-08-16 13:55:15 +08001124 mtk_tx_unmap(eth, &ring->buf[i]);
John Crispin656e7052016-03-08 11:29:55 +01001125 kfree(ring->buf);
1126 ring->buf = NULL;
1127 }
1128
1129 if (ring->dma) {
1130 dma_free_coherent(eth->dev,
1131 MTK_DMA_SIZE * sizeof(*ring->dma),
1132 ring->dma,
1133 ring->phys);
1134 ring->dma = NULL;
1135 }
1136}
1137
1138static int mtk_rx_alloc(struct mtk_eth *eth)
1139{
1140 struct mtk_rx_ring *ring = &eth->rx_ring;
1141 int i;
1142
1143 ring->frag_size = mtk_max_frag_size(ETH_DATA_LEN);
1144 ring->buf_size = mtk_max_buf_size(ring->frag_size);
1145 ring->data = kcalloc(MTK_DMA_SIZE, sizeof(*ring->data),
1146 GFP_KERNEL);
1147 if (!ring->data)
1148 return -ENOMEM;
1149
1150 for (i = 0; i < MTK_DMA_SIZE; i++) {
1151 ring->data[i] = netdev_alloc_frag(ring->frag_size);
1152 if (!ring->data[i])
1153 return -ENOMEM;
1154 }
1155
1156 ring->dma = dma_alloc_coherent(eth->dev,
1157 MTK_DMA_SIZE * sizeof(*ring->dma),
1158 &ring->phys,
1159 GFP_ATOMIC | __GFP_ZERO);
1160 if (!ring->dma)
1161 return -ENOMEM;
1162
1163 for (i = 0; i < MTK_DMA_SIZE; i++) {
1164 dma_addr_t dma_addr = dma_map_single(eth->dev,
1165 ring->data[i] + NET_SKB_PAD,
1166 ring->buf_size,
1167 DMA_FROM_DEVICE);
1168 if (unlikely(dma_mapping_error(eth->dev, dma_addr)))
1169 return -ENOMEM;
1170 ring->dma[i].rxd1 = (unsigned int)dma_addr;
1171
1172 ring->dma[i].rxd2 = RX_DMA_PLEN0(ring->buf_size);
1173 }
1174 ring->calc_idx = MTK_DMA_SIZE - 1;
1175 /* make sure that all changes to the dma ring are flushed before we
1176 * continue
1177 */
1178 wmb();
1179
Nelson Changbacfd112016-08-26 01:09:42 +08001180 mtk_w32(eth, eth->rx_ring.phys, MTK_PRX_BASE_PTR0);
1181 mtk_w32(eth, MTK_DMA_SIZE, MTK_PRX_MAX_CNT0);
1182 mtk_w32(eth, eth->rx_ring.calc_idx, MTK_PRX_CRX_IDX0);
1183 mtk_w32(eth, MTK_PST_DRX_IDX0, MTK_PDMA_RST_IDX);
John Crispin656e7052016-03-08 11:29:55 +01001184
1185 return 0;
1186}
1187
1188static void mtk_rx_clean(struct mtk_eth *eth)
1189{
1190 struct mtk_rx_ring *ring = &eth->rx_ring;
1191 int i;
1192
1193 if (ring->data && ring->dma) {
1194 for (i = 0; i < MTK_DMA_SIZE; i++) {
1195 if (!ring->data[i])
1196 continue;
1197 if (!ring->dma[i].rxd1)
1198 continue;
1199 dma_unmap_single(eth->dev,
1200 ring->dma[i].rxd1,
1201 ring->buf_size,
1202 DMA_FROM_DEVICE);
1203 skb_free_frag(ring->data[i]);
1204 }
1205 kfree(ring->data);
1206 ring->data = NULL;
1207 }
1208
1209 if (ring->dma) {
1210 dma_free_coherent(eth->dev,
1211 MTK_DMA_SIZE * sizeof(*ring->dma),
1212 ring->dma,
1213 ring->phys);
1214 ring->dma = NULL;
1215 }
1216}
1217
1218/* wait for DMA to finish whatever it is doing before we start using it again */
1219static int mtk_dma_busy_wait(struct mtk_eth *eth)
1220{
1221 unsigned long t_start = jiffies;
1222
1223 while (1) {
1224 if (!(mtk_r32(eth, MTK_QDMA_GLO_CFG) &
1225 (MTK_RX_DMA_BUSY | MTK_TX_DMA_BUSY)))
1226 return 0;
1227 if (time_after(jiffies, t_start + MTK_DMA_BUSY_TIMEOUT))
1228 break;
1229 }
1230
1231 dev_err(eth->dev, "DMA init timeout\n");
1232 return -1;
1233}
1234
1235static int mtk_dma_init(struct mtk_eth *eth)
1236{
1237 int err;
1238
1239 if (mtk_dma_busy_wait(eth))
1240 return -EBUSY;
1241
1242 /* QDMA needs scratch memory for internal reordering of the
1243 * descriptors
1244 */
1245 err = mtk_init_fq_dma(eth);
1246 if (err)
1247 return err;
1248
1249 err = mtk_tx_alloc(eth);
1250 if (err)
1251 return err;
1252
1253 err = mtk_rx_alloc(eth);
1254 if (err)
1255 return err;
1256
1257 /* Enable random early drop and set drop threshold automatically */
1258 mtk_w32(eth, FC_THRES_DROP_MODE | FC_THRES_DROP_EN | FC_THRES_MIN,
1259 MTK_QDMA_FC_THRES);
1260 mtk_w32(eth, 0x0, MTK_QDMA_HRED2);
1261
1262 return 0;
1263}
1264
1265static void mtk_dma_free(struct mtk_eth *eth)
1266{
1267 int i;
1268
1269 for (i = 0; i < MTK_MAC_COUNT; i++)
1270 if (eth->netdev[i])
1271 netdev_reset_queue(eth->netdev[i]);
John Crispin605e4fe2016-06-10 13:27:59 +02001272 if (eth->scratch_ring) {
1273 dma_free_coherent(eth->dev,
1274 MTK_DMA_SIZE * sizeof(struct mtk_tx_dma),
1275 eth->scratch_ring,
1276 eth->phy_scratch_ring);
1277 eth->scratch_ring = NULL;
1278 eth->phy_scratch_ring = 0;
1279 }
John Crispin656e7052016-03-08 11:29:55 +01001280 mtk_tx_clean(eth);
1281 mtk_rx_clean(eth);
1282 kfree(eth->scratch_head);
1283}
1284
1285static void mtk_tx_timeout(struct net_device *dev)
1286{
1287 struct mtk_mac *mac = netdev_priv(dev);
1288 struct mtk_eth *eth = mac->hw;
1289
1290 eth->netdev[mac->id]->stats.tx_errors++;
1291 netif_err(eth, tx_err, dev,
1292 "transmit timed out\n");
John Crispin7c78b4a2016-04-08 00:54:10 +02001293 schedule_work(&eth->pending_work);
John Crispin656e7052016-03-08 11:29:55 +01001294}
1295
John Crispin80673022016-06-29 13:38:11 +02001296static irqreturn_t mtk_handle_irq_rx(int irq, void *_eth)
John Crispin656e7052016-03-08 11:29:55 +01001297{
1298 struct mtk_eth *eth = _eth;
John Crispin656e7052016-03-08 11:29:55 +01001299
John Crispin80673022016-06-29 13:38:11 +02001300 if (likely(napi_schedule_prep(&eth->rx_napi))) {
1301 __napi_schedule(&eth->rx_napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001302 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001303 }
John Crispin80673022016-06-29 13:38:11 +02001304
1305 return IRQ_HANDLED;
1306}
1307
1308static irqreturn_t mtk_handle_irq_tx(int irq, void *_eth)
1309{
1310 struct mtk_eth *eth = _eth;
1311
1312 if (likely(napi_schedule_prep(&eth->tx_napi))) {
1313 __napi_schedule(&eth->tx_napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001314 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
John Crispin80673022016-06-29 13:38:11 +02001315 }
John Crispin656e7052016-03-08 11:29:55 +01001316
1317 return IRQ_HANDLED;
1318}
1319
1320#ifdef CONFIG_NET_POLL_CONTROLLER
1321static void mtk_poll_controller(struct net_device *dev)
1322{
1323 struct mtk_mac *mac = netdev_priv(dev);
1324 struct mtk_eth *eth = mac->hw;
John Crispin656e7052016-03-08 11:29:55 +01001325
Nelson Changbacfd112016-08-26 01:09:42 +08001326 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1327 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin8186f6e2016-07-02 08:00:50 +02001328 mtk_handle_irq_rx(eth->irq[2], dev);
Nelson Changbacfd112016-08-26 01:09:42 +08001329 mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1330 mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001331}
1332#endif
1333
1334static int mtk_start_dma(struct mtk_eth *eth)
1335{
1336 int err;
1337
1338 err = mtk_dma_init(eth);
1339 if (err) {
1340 mtk_dma_free(eth);
1341 return err;
1342 }
1343
1344 mtk_w32(eth,
Nelson Changbacfd112016-08-26 01:09:42 +08001345 MTK_TX_WB_DDONE | MTK_TX_DMA_EN |
1346 MTK_DMA_SIZE_16DWORDS | MTK_NDP_CO_PRO,
John Crispin656e7052016-03-08 11:29:55 +01001347 MTK_QDMA_GLO_CFG);
1348
Nelson Changbacfd112016-08-26 01:09:42 +08001349 mtk_w32(eth,
1350 MTK_RX_DMA_EN | MTK_RX_2B_OFFSET |
1351 MTK_RX_BT_32DWORDS | MTK_MULTI_EN,
1352 MTK_PDMA_GLO_CFG);
1353
John Crispin656e7052016-03-08 11:29:55 +01001354 return 0;
1355}
1356
1357static int mtk_open(struct net_device *dev)
1358{
1359 struct mtk_mac *mac = netdev_priv(dev);
1360 struct mtk_eth *eth = mac->hw;
1361
1362 /* we run 2 netdevs on the same dma ring so we only bring it up once */
1363 if (!atomic_read(&eth->dma_refcnt)) {
1364 int err = mtk_start_dma(eth);
1365
1366 if (err)
1367 return err;
1368
John Crispin80673022016-06-29 13:38:11 +02001369 napi_enable(&eth->tx_napi);
John Crispin656e7052016-03-08 11:29:55 +01001370 napi_enable(&eth->rx_napi);
Nelson Changbacfd112016-08-26 01:09:42 +08001371 mtk_irq_enable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1372 mtk_irq_enable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin656e7052016-03-08 11:29:55 +01001373 }
1374 atomic_inc(&eth->dma_refcnt);
1375
1376 phy_start(mac->phy_dev);
1377 netif_start_queue(dev);
1378
1379 return 0;
1380}
1381
1382static void mtk_stop_dma(struct mtk_eth *eth, u32 glo_cfg)
1383{
John Crispin656e7052016-03-08 11:29:55 +01001384 u32 val;
1385 int i;
1386
1387 /* stop the dma engine */
Sean Wange3e96522016-08-11 17:51:00 +08001388 spin_lock_bh(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +01001389 val = mtk_r32(eth, glo_cfg);
1390 mtk_w32(eth, val & ~(MTK_TX_WB_DDONE | MTK_RX_DMA_EN | MTK_TX_DMA_EN),
1391 glo_cfg);
Sean Wange3e96522016-08-11 17:51:00 +08001392 spin_unlock_bh(&eth->page_lock);
John Crispin656e7052016-03-08 11:29:55 +01001393
1394 /* wait for dma stop */
1395 for (i = 0; i < 10; i++) {
1396 val = mtk_r32(eth, glo_cfg);
1397 if (val & (MTK_TX_DMA_BUSY | MTK_RX_DMA_BUSY)) {
1398 msleep(20);
1399 continue;
1400 }
1401 break;
1402 }
1403}
1404
1405static int mtk_stop(struct net_device *dev)
1406{
1407 struct mtk_mac *mac = netdev_priv(dev);
1408 struct mtk_eth *eth = mac->hw;
1409
1410 netif_tx_disable(dev);
1411 phy_stop(mac->phy_dev);
1412
1413 /* only shutdown DMA if this is the last user */
1414 if (!atomic_dec_and_test(&eth->dma_refcnt))
1415 return 0;
1416
Nelson Changbacfd112016-08-26 01:09:42 +08001417 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, MTK_TX_DONE_INT);
1418 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, MTK_RX_DONE_INT);
John Crispin80673022016-06-29 13:38:11 +02001419 napi_disable(&eth->tx_napi);
John Crispin656e7052016-03-08 11:29:55 +01001420 napi_disable(&eth->rx_napi);
1421
1422 mtk_stop_dma(eth, MTK_QDMA_GLO_CFG);
1423
1424 mtk_dma_free(eth);
1425
1426 return 0;
1427}
1428
Sean Wang2a8307a2016-09-14 23:13:20 +08001429static void ethsys_reset(struct mtk_eth *eth, u32 reset_bits)
1430{
1431 regmap_update_bits(eth->ethsys, ETHSYS_RSTCTRL,
1432 reset_bits,
1433 reset_bits);
1434
1435 usleep_range(1000, 1100);
1436 regmap_update_bits(eth->ethsys, ETHSYS_RSTCTRL,
1437 reset_bits,
1438 ~reset_bits);
1439 mdelay(10);
1440}
1441
Sean Wang9ea4d312016-09-14 23:13:19 +08001442static int mtk_hw_init(struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +01001443{
Sean Wang9ea4d312016-09-14 23:13:19 +08001444 int i, val;
1445
1446 if (test_and_set_bit(MTK_HW_INIT, &eth->state))
1447 return 0;
Sean Wang85574db2016-09-14 23:13:15 +08001448
Sean Wang26a2ad82016-09-14 23:13:18 +08001449 pm_runtime_enable(eth->dev);
1450 pm_runtime_get_sync(eth->dev);
1451
Sean Wang85574db2016-09-14 23:13:15 +08001452 clk_prepare_enable(eth->clks[MTK_CLK_ETHIF]);
1453 clk_prepare_enable(eth->clks[MTK_CLK_ESW]);
1454 clk_prepare_enable(eth->clks[MTK_CLK_GP1]);
1455 clk_prepare_enable(eth->clks[MTK_CLK_GP2]);
Sean Wang2a8307a2016-09-14 23:13:20 +08001456 ethsys_reset(eth, RSTCTRL_FE);
1457 ethsys_reset(eth, RSTCTRL_PPE);
John Crispin656e7052016-03-08 11:29:55 +01001458
Sean Wang9ea4d312016-09-14 23:13:19 +08001459 regmap_read(eth->ethsys, ETHSYS_SYSCFG0, &val);
1460 for (i = 0; i < MTK_MAC_COUNT; i++) {
1461 if (!eth->mac[i])
1462 continue;
1463 val &= ~SYSCFG0_GE_MODE(SYSCFG0_GE_MASK, eth->mac[i]->id);
1464 val |= SYSCFG0_GE_MODE(eth->mac[i]->ge_mode, eth->mac[i]->id);
1465 }
1466 regmap_write(eth->ethsys, ETHSYS_SYSCFG0, val);
1467
John Crispin656e7052016-03-08 11:29:55 +01001468 /* Set GE2 driving and slew rate */
1469 regmap_write(eth->pctl, GPIO_DRV_SEL10, 0xa00);
1470
1471 /* set GE2 TDSEL */
1472 regmap_write(eth->pctl, GPIO_OD33_CTRL8, 0x5);
1473
1474 /* set GE2 TUNE */
1475 regmap_write(eth->pctl, GPIO_BIAS_CTRL, 0x0);
1476
1477 /* GE1, Force 1000M/FD, FC ON */
1478 mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(0));
1479
1480 /* GE2, Force 1000M/FD, FC ON */
1481 mtk_w32(eth, MAC_MCR_FIXED_LINK, MTK_MAC_MCR(1));
1482
1483 /* Enable RX VLan Offloading */
1484 mtk_w32(eth, 1, MTK_CDMP_EG_CTRL);
1485
John Crispin656e7052016-03-08 11:29:55 +01001486 /* disable delay and normal interrupt */
1487 mtk_w32(eth, 0, MTK_QDMA_DELAY_INT);
Nelson Changbacfd112016-08-26 01:09:42 +08001488 mtk_w32(eth, 0, MTK_PDMA_DELAY_INT);
1489 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, ~0);
1490 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, ~0);
John Crispin656e7052016-03-08 11:29:55 +01001491 mtk_w32(eth, RST_GL_PSE, MTK_RST_GL);
1492 mtk_w32(eth, 0, MTK_RST_GL);
1493
1494 /* FE int grouping */
John Crispin80673022016-06-29 13:38:11 +02001495 mtk_w32(eth, MTK_TX_DONE_INT, MTK_PDMA_INT_GRP1);
1496 mtk_w32(eth, MTK_RX_DONE_INT, MTK_PDMA_INT_GRP2);
1497 mtk_w32(eth, MTK_TX_DONE_INT, MTK_QDMA_INT_GRP1);
1498 mtk_w32(eth, MTK_RX_DONE_INT, MTK_QDMA_INT_GRP2);
1499 mtk_w32(eth, 0x21021000, MTK_FE_INT_GRP);
John Crispin656e7052016-03-08 11:29:55 +01001500
1501 for (i = 0; i < 2; i++) {
1502 u32 val = mtk_r32(eth, MTK_GDMA_FWD_CFG(i));
1503
Nelson Chang9c084352016-08-26 01:09:43 +08001504 /* setup the forward port to send frame to PDMA */
John Crispin656e7052016-03-08 11:29:55 +01001505 val &= ~0xffff;
John Crispin656e7052016-03-08 11:29:55 +01001506
1507 /* Enable RX checksum */
1508 val |= MTK_GDMA_ICS_EN | MTK_GDMA_TCS_EN | MTK_GDMA_UCS_EN;
1509
1510 /* setup the mac dma */
1511 mtk_w32(eth, val, MTK_GDMA_FWD_CFG(i));
1512 }
1513
1514 return 0;
1515}
1516
Sean Wangbf253fb2016-09-14 23:13:16 +08001517static int mtk_hw_deinit(struct mtk_eth *eth)
1518{
Sean Wang9ea4d312016-09-14 23:13:19 +08001519 if (!test_and_clear_bit(MTK_HW_INIT, &eth->state))
1520 return 0;
1521
Sean Wangbf253fb2016-09-14 23:13:16 +08001522 clk_disable_unprepare(eth->clks[MTK_CLK_GP2]);
1523 clk_disable_unprepare(eth->clks[MTK_CLK_GP1]);
1524 clk_disable_unprepare(eth->clks[MTK_CLK_ESW]);
1525 clk_disable_unprepare(eth->clks[MTK_CLK_ETHIF]);
1526
Sean Wang26a2ad82016-09-14 23:13:18 +08001527 pm_runtime_put_sync(eth->dev);
1528 pm_runtime_disable(eth->dev);
1529
Sean Wangbf253fb2016-09-14 23:13:16 +08001530 return 0;
1531}
1532
John Crispin656e7052016-03-08 11:29:55 +01001533static int __init mtk_init(struct net_device *dev)
1534{
1535 struct mtk_mac *mac = netdev_priv(dev);
1536 struct mtk_eth *eth = mac->hw;
1537 const char *mac_addr;
1538
1539 mac_addr = of_get_mac_address(mac->of_node);
1540 if (mac_addr)
1541 ether_addr_copy(dev->dev_addr, mac_addr);
1542
1543 /* If the mac address is invalid, use random mac address */
1544 if (!is_valid_ether_addr(dev->dev_addr)) {
1545 random_ether_addr(dev->dev_addr);
1546 dev_err(eth->dev, "generated random MAC address %pM\n",
1547 dev->dev_addr);
1548 dev->addr_assign_type = NET_ADDR_RANDOM;
1549 }
1550
1551 return mtk_phy_connect(mac);
1552}
1553
1554static void mtk_uninit(struct net_device *dev)
1555{
1556 struct mtk_mac *mac = netdev_priv(dev);
1557 struct mtk_eth *eth = mac->hw;
1558
1559 phy_disconnect(mac->phy_dev);
1560 mtk_mdio_cleanup(eth);
Nelson Changbacfd112016-08-26 01:09:42 +08001561 mtk_irq_disable(eth, MTK_QDMA_INT_MASK, ~0);
1562 mtk_irq_disable(eth, MTK_PDMA_INT_MASK, ~0);
John Crispin80673022016-06-29 13:38:11 +02001563 free_irq(eth->irq[1], dev);
1564 free_irq(eth->irq[2], dev);
John Crispin656e7052016-03-08 11:29:55 +01001565}
1566
1567static int mtk_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1568{
1569 struct mtk_mac *mac = netdev_priv(dev);
1570
1571 switch (cmd) {
1572 case SIOCGMIIPHY:
1573 case SIOCGMIIREG:
1574 case SIOCSMIIREG:
1575 return phy_mii_ioctl(mac->phy_dev, ifr, cmd);
1576 default:
1577 break;
1578 }
1579
1580 return -EOPNOTSUPP;
1581}
1582
1583static void mtk_pending_work(struct work_struct *work)
1584{
John Crispin7c78b4a2016-04-08 00:54:10 +02001585 struct mtk_eth *eth = container_of(work, struct mtk_eth, pending_work);
John Crispine7d425d2016-04-08 00:54:09 +02001586 int err, i;
1587 unsigned long restart = 0;
John Crispin656e7052016-03-08 11:29:55 +01001588
1589 rtnl_lock();
John Crispin656e7052016-03-08 11:29:55 +01001590
Sean Wangdce6fa42016-09-14 23:13:21 +08001591 dev_dbg(eth->dev, "[%s][%d] reset\n", __func__, __LINE__);
1592
1593 while (test_and_set_bit_lock(MTK_RESETTING, &eth->state))
1594 cpu_relax();
1595
1596 dev_dbg(eth->dev, "[%s][%d] mtk_stop starts\n", __func__, __LINE__);
John Crispine7d425d2016-04-08 00:54:09 +02001597 /* stop all devices to make sure that dma is properly shut down */
1598 for (i = 0; i < MTK_MAC_COUNT; i++) {
John Crispin7c78b4a2016-04-08 00:54:10 +02001599 if (!eth->netdev[i])
John Crispine7d425d2016-04-08 00:54:09 +02001600 continue;
1601 mtk_stop(eth->netdev[i]);
1602 __set_bit(i, &restart);
1603 }
Sean Wangdce6fa42016-09-14 23:13:21 +08001604 dev_dbg(eth->dev, "[%s][%d] mtk_stop ends\n", __func__, __LINE__);
John Crispine7d425d2016-04-08 00:54:09 +02001605
Sean Wang9ea4d312016-09-14 23:13:19 +08001606 /* restart underlying hardware such as power, clock, pin mux
1607 * and the connected phy
1608 */
1609 mtk_hw_deinit(eth);
1610
1611 if (eth->dev->pins)
1612 pinctrl_select_state(eth->dev->pins->p,
1613 eth->dev->pins->default_state);
1614 mtk_hw_init(eth);
1615
1616 for (i = 0; i < MTK_MAC_COUNT; i++) {
1617 if (!eth->mac[i] ||
1618 of_phy_is_fixed_link(eth->mac[i]->of_node))
1619 continue;
1620 err = phy_init_hw(eth->mac[i]->phy_dev);
1621 if (err)
1622 dev_err(eth->dev, "%s: PHY init failed.\n",
1623 eth->netdev[i]->name);
1624 }
1625
John Crispine7d425d2016-04-08 00:54:09 +02001626 /* restart DMA and enable IRQs */
1627 for (i = 0; i < MTK_MAC_COUNT; i++) {
1628 if (!test_bit(i, &restart))
1629 continue;
1630 err = mtk_open(eth->netdev[i]);
1631 if (err) {
1632 netif_alert(eth, ifup, eth->netdev[i],
1633 "Driver up/down cycle failed, closing device.\n");
1634 dev_close(eth->netdev[i]);
1635 }
John Crispin656e7052016-03-08 11:29:55 +01001636 }
Sean Wangdce6fa42016-09-14 23:13:21 +08001637
1638 dev_dbg(eth->dev, "[%s][%d] reset done\n", __func__, __LINE__);
1639
1640 clear_bit_unlock(MTK_RESETTING, &eth->state);
1641
John Crispin656e7052016-03-08 11:29:55 +01001642 rtnl_unlock();
1643}
1644
Sean Wang8a8a9e82016-09-14 23:13:17 +08001645static int mtk_free_dev(struct mtk_eth *eth)
John Crispin656e7052016-03-08 11:29:55 +01001646{
1647 int i;
1648
1649 for (i = 0; i < MTK_MAC_COUNT; i++) {
John Crispin656e7052016-03-08 11:29:55 +01001650 if (!eth->netdev[i])
1651 continue;
John Crispin656e7052016-03-08 11:29:55 +01001652 free_netdev(eth->netdev[i]);
John Crispin656e7052016-03-08 11:29:55 +01001653 }
Sean Wang8a8a9e82016-09-14 23:13:17 +08001654
1655 return 0;
1656}
1657
1658static int mtk_unreg_dev(struct mtk_eth *eth)
1659{
1660 int i;
1661
1662 for (i = 0; i < MTK_MAC_COUNT; i++) {
1663 if (!eth->netdev[i])
1664 continue;
1665 unregister_netdev(eth->netdev[i]);
1666 }
1667
1668 return 0;
1669}
1670
1671static int mtk_cleanup(struct mtk_eth *eth)
1672{
1673 mtk_unreg_dev(eth);
1674 mtk_free_dev(eth);
John Crispin7c78b4a2016-04-08 00:54:10 +02001675 cancel_work_sync(&eth->pending_work);
John Crispin656e7052016-03-08 11:29:55 +01001676
1677 return 0;
1678}
1679
1680static int mtk_get_settings(struct net_device *dev,
1681 struct ethtool_cmd *cmd)
1682{
1683 struct mtk_mac *mac = netdev_priv(dev);
1684 int err;
1685
Sean Wangdce6fa42016-09-14 23:13:21 +08001686 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
1687 return -EBUSY;
1688
John Crispin656e7052016-03-08 11:29:55 +01001689 err = phy_read_status(mac->phy_dev);
1690 if (err)
1691 return -ENODEV;
1692
1693 return phy_ethtool_gset(mac->phy_dev, cmd);
1694}
1695
1696static int mtk_set_settings(struct net_device *dev,
1697 struct ethtool_cmd *cmd)
1698{
1699 struct mtk_mac *mac = netdev_priv(dev);
1700
1701 if (cmd->phy_address != mac->phy_dev->mdio.addr) {
1702 mac->phy_dev = mdiobus_get_phy(mac->hw->mii_bus,
1703 cmd->phy_address);
1704 if (!mac->phy_dev)
1705 return -ENODEV;
1706 }
1707
1708 return phy_ethtool_sset(mac->phy_dev, cmd);
1709}
1710
1711static void mtk_get_drvinfo(struct net_device *dev,
1712 struct ethtool_drvinfo *info)
1713{
1714 struct mtk_mac *mac = netdev_priv(dev);
1715
1716 strlcpy(info->driver, mac->hw->dev->driver->name, sizeof(info->driver));
1717 strlcpy(info->bus_info, dev_name(mac->hw->dev), sizeof(info->bus_info));
1718 info->n_stats = ARRAY_SIZE(mtk_ethtool_stats);
1719}
1720
1721static u32 mtk_get_msglevel(struct net_device *dev)
1722{
1723 struct mtk_mac *mac = netdev_priv(dev);
1724
1725 return mac->hw->msg_enable;
1726}
1727
1728static void mtk_set_msglevel(struct net_device *dev, u32 value)
1729{
1730 struct mtk_mac *mac = netdev_priv(dev);
1731
1732 mac->hw->msg_enable = value;
1733}
1734
1735static int mtk_nway_reset(struct net_device *dev)
1736{
1737 struct mtk_mac *mac = netdev_priv(dev);
1738
Sean Wangdce6fa42016-09-14 23:13:21 +08001739 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
1740 return -EBUSY;
1741
John Crispin656e7052016-03-08 11:29:55 +01001742 return genphy_restart_aneg(mac->phy_dev);
1743}
1744
1745static u32 mtk_get_link(struct net_device *dev)
1746{
1747 struct mtk_mac *mac = netdev_priv(dev);
1748 int err;
1749
Sean Wangdce6fa42016-09-14 23:13:21 +08001750 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
1751 return -EBUSY;
1752
John Crispin656e7052016-03-08 11:29:55 +01001753 err = genphy_update_link(mac->phy_dev);
1754 if (err)
1755 return ethtool_op_get_link(dev);
1756
1757 return mac->phy_dev->link;
1758}
1759
1760static void mtk_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1761{
1762 int i;
1763
1764 switch (stringset) {
1765 case ETH_SS_STATS:
1766 for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++) {
1767 memcpy(data, mtk_ethtool_stats[i].str, ETH_GSTRING_LEN);
1768 data += ETH_GSTRING_LEN;
1769 }
1770 break;
1771 }
1772}
1773
1774static int mtk_get_sset_count(struct net_device *dev, int sset)
1775{
1776 switch (sset) {
1777 case ETH_SS_STATS:
1778 return ARRAY_SIZE(mtk_ethtool_stats);
1779 default:
1780 return -EOPNOTSUPP;
1781 }
1782}
1783
1784static void mtk_get_ethtool_stats(struct net_device *dev,
1785 struct ethtool_stats *stats, u64 *data)
1786{
1787 struct mtk_mac *mac = netdev_priv(dev);
1788 struct mtk_hw_stats *hwstats = mac->hw_stats;
1789 u64 *data_src, *data_dst;
1790 unsigned int start;
1791 int i;
1792
Sean Wangdce6fa42016-09-14 23:13:21 +08001793 if (unlikely(test_bit(MTK_RESETTING, &mac->hw->state)))
1794 return;
1795
John Crispin656e7052016-03-08 11:29:55 +01001796 if (netif_running(dev) && netif_device_present(dev)) {
1797 if (spin_trylock(&hwstats->stats_lock)) {
1798 mtk_stats_update_mac(mac);
1799 spin_unlock(&hwstats->stats_lock);
1800 }
1801 }
1802
1803 do {
Nelson Changbacfd112016-08-26 01:09:42 +08001804 data_src = (u64 *)hwstats;
John Crispin656e7052016-03-08 11:29:55 +01001805 data_dst = data;
1806 start = u64_stats_fetch_begin_irq(&hwstats->syncp);
1807
1808 for (i = 0; i < ARRAY_SIZE(mtk_ethtool_stats); i++)
1809 *data_dst++ = *(data_src + mtk_ethtool_stats[i].offset);
1810 } while (u64_stats_fetch_retry_irq(&hwstats->syncp, start));
1811}
1812
Julia Lawall6a38cb12016-09-01 00:21:19 +02001813static const struct ethtool_ops mtk_ethtool_ops = {
John Crispin656e7052016-03-08 11:29:55 +01001814 .get_settings = mtk_get_settings,
1815 .set_settings = mtk_set_settings,
1816 .get_drvinfo = mtk_get_drvinfo,
1817 .get_msglevel = mtk_get_msglevel,
1818 .set_msglevel = mtk_set_msglevel,
1819 .nway_reset = mtk_nway_reset,
1820 .get_link = mtk_get_link,
1821 .get_strings = mtk_get_strings,
1822 .get_sset_count = mtk_get_sset_count,
1823 .get_ethtool_stats = mtk_get_ethtool_stats,
1824};
1825
1826static const struct net_device_ops mtk_netdev_ops = {
1827 .ndo_init = mtk_init,
1828 .ndo_uninit = mtk_uninit,
1829 .ndo_open = mtk_open,
1830 .ndo_stop = mtk_stop,
1831 .ndo_start_xmit = mtk_start_xmit,
1832 .ndo_set_mac_address = mtk_set_mac_address,
1833 .ndo_validate_addr = eth_validate_addr,
1834 .ndo_do_ioctl = mtk_do_ioctl,
1835 .ndo_change_mtu = eth_change_mtu,
1836 .ndo_tx_timeout = mtk_tx_timeout,
1837 .ndo_get_stats64 = mtk_get_stats64,
1838#ifdef CONFIG_NET_POLL_CONTROLLER
1839 .ndo_poll_controller = mtk_poll_controller,
1840#endif
1841};
1842
1843static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np)
1844{
1845 struct mtk_mac *mac;
1846 const __be32 *_id = of_get_property(np, "reg", NULL);
1847 int id, err;
1848
1849 if (!_id) {
1850 dev_err(eth->dev, "missing mac id\n");
1851 return -EINVAL;
1852 }
1853
1854 id = be32_to_cpup(_id);
1855 if (id >= MTK_MAC_COUNT) {
1856 dev_err(eth->dev, "%d is not a valid mac id\n", id);
1857 return -EINVAL;
1858 }
1859
1860 if (eth->netdev[id]) {
1861 dev_err(eth->dev, "duplicate mac id found: %d\n", id);
1862 return -EINVAL;
1863 }
1864
1865 eth->netdev[id] = alloc_etherdev(sizeof(*mac));
1866 if (!eth->netdev[id]) {
1867 dev_err(eth->dev, "alloc_etherdev failed\n");
1868 return -ENOMEM;
1869 }
1870 mac = netdev_priv(eth->netdev[id]);
1871 eth->mac[id] = mac;
1872 mac->id = id;
1873 mac->hw = eth;
1874 mac->of_node = np;
John Crispin656e7052016-03-08 11:29:55 +01001875
1876 mac->hw_stats = devm_kzalloc(eth->dev,
1877 sizeof(*mac->hw_stats),
1878 GFP_KERNEL);
1879 if (!mac->hw_stats) {
1880 dev_err(eth->dev, "failed to allocate counter memory\n");
1881 err = -ENOMEM;
1882 goto free_netdev;
1883 }
1884 spin_lock_init(&mac->hw_stats->stats_lock);
sean.wang@mediatek.comd70056522016-08-13 19:16:18 +08001885 u64_stats_init(&mac->hw_stats->syncp);
John Crispin656e7052016-03-08 11:29:55 +01001886 mac->hw_stats->reg_offset = id * MTK_STAT_OFFSET;
1887
1888 SET_NETDEV_DEV(eth->netdev[id], eth->dev);
John Crispineaadf9f2016-06-10 13:28:05 +02001889 eth->netdev[id]->watchdog_timeo = 5 * HZ;
John Crispin656e7052016-03-08 11:29:55 +01001890 eth->netdev[id]->netdev_ops = &mtk_netdev_ops;
1891 eth->netdev[id]->base_addr = (unsigned long)eth->base;
1892 eth->netdev[id]->vlan_features = MTK_HW_FEATURES &
1893 ~(NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX);
1894 eth->netdev[id]->features |= MTK_HW_FEATURES;
1895 eth->netdev[id]->ethtool_ops = &mtk_ethtool_ops;
1896
John Crispin80673022016-06-29 13:38:11 +02001897 eth->netdev[id]->irq = eth->irq[0];
John Crispin656e7052016-03-08 11:29:55 +01001898 return 0;
1899
1900free_netdev:
1901 free_netdev(eth->netdev[id]);
1902 return err;
1903}
1904
1905static int mtk_probe(struct platform_device *pdev)
1906{
1907 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1908 struct device_node *mac_np;
1909 const struct of_device_id *match;
1910 struct mtk_soc_data *soc;
1911 struct mtk_eth *eth;
1912 int err;
John Crispin80673022016-06-29 13:38:11 +02001913 int i;
John Crispin656e7052016-03-08 11:29:55 +01001914
John Crispin656e7052016-03-08 11:29:55 +01001915 match = of_match_device(of_mtk_match, &pdev->dev);
1916 soc = (struct mtk_soc_data *)match->data;
1917
1918 eth = devm_kzalloc(&pdev->dev, sizeof(*eth), GFP_KERNEL);
1919 if (!eth)
1920 return -ENOMEM;
1921
Sean Wang549e5492016-09-01 10:47:28 +08001922 eth->dev = &pdev->dev;
John Crispin656e7052016-03-08 11:29:55 +01001923 eth->base = devm_ioremap_resource(&pdev->dev, res);
Vladimir Zapolskiy621e49f2016-03-23 01:06:04 +02001924 if (IS_ERR(eth->base))
1925 return PTR_ERR(eth->base);
John Crispin656e7052016-03-08 11:29:55 +01001926
1927 spin_lock_init(&eth->page_lock);
John Crispin7bc9cce2016-06-29 13:38:10 +02001928 spin_lock_init(&eth->irq_lock);
John Crispin656e7052016-03-08 11:29:55 +01001929
1930 eth->ethsys = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
1931 "mediatek,ethsys");
1932 if (IS_ERR(eth->ethsys)) {
1933 dev_err(&pdev->dev, "no ethsys regmap found\n");
1934 return PTR_ERR(eth->ethsys);
1935 }
1936
1937 eth->pctl = syscon_regmap_lookup_by_phandle(pdev->dev.of_node,
1938 "mediatek,pctl");
1939 if (IS_ERR(eth->pctl)) {
1940 dev_err(&pdev->dev, "no pctl regmap found\n");
1941 return PTR_ERR(eth->pctl);
1942 }
1943
John Crispin80673022016-06-29 13:38:11 +02001944 for (i = 0; i < 3; i++) {
1945 eth->irq[i] = platform_get_irq(pdev, i);
1946 if (eth->irq[i] < 0) {
1947 dev_err(&pdev->dev, "no IRQ%d resource found\n", i);
1948 return -ENXIO;
1949 }
John Crispin656e7052016-03-08 11:29:55 +01001950 }
Sean Wang549e5492016-09-01 10:47:28 +08001951 for (i = 0; i < ARRAY_SIZE(eth->clks); i++) {
1952 eth->clks[i] = devm_clk_get(eth->dev,
1953 mtk_clks_source_name[i]);
1954 if (IS_ERR(eth->clks[i])) {
1955 if (PTR_ERR(eth->clks[i]) == -EPROBE_DEFER)
1956 return -EPROBE_DEFER;
1957 return -ENODEV;
1958 }
1959 }
John Crispin656e7052016-03-08 11:29:55 +01001960
John Crispin656e7052016-03-08 11:29:55 +01001961 eth->msg_enable = netif_msg_init(mtk_msg_level, MTK_DEFAULT_MSG_ENABLE);
John Crispin7c78b4a2016-04-08 00:54:10 +02001962 INIT_WORK(&eth->pending_work, mtk_pending_work);
John Crispin656e7052016-03-08 11:29:55 +01001963
1964 err = mtk_hw_init(eth);
1965 if (err)
1966 return err;
1967
1968 for_each_child_of_node(pdev->dev.of_node, mac_np) {
1969 if (!of_device_is_compatible(mac_np,
1970 "mediatek,eth-mac"))
1971 continue;
1972
1973 if (!of_device_is_available(mac_np))
1974 continue;
1975
1976 err = mtk_add_mac(eth, mac_np);
1977 if (err)
Sean Wang8a8a9e82016-09-14 23:13:17 +08001978 goto err_deinit_hw;
John Crispin656e7052016-03-08 11:29:55 +01001979 }
1980
Sean Wang85574db2016-09-14 23:13:15 +08001981 err = devm_request_irq(eth->dev, eth->irq[1], mtk_handle_irq_tx, 0,
1982 dev_name(eth->dev), eth);
1983 if (err)
1984 goto err_free_dev;
1985
1986 err = devm_request_irq(eth->dev, eth->irq[2], mtk_handle_irq_rx, 0,
1987 dev_name(eth->dev), eth);
1988 if (err)
1989 goto err_free_dev;
1990
1991 err = mtk_mdio_init(eth);
1992 if (err)
1993 goto err_free_dev;
1994
1995 for (i = 0; i < MTK_MAX_DEVS; i++) {
1996 if (!eth->netdev[i])
1997 continue;
1998
1999 err = register_netdev(eth->netdev[i]);
2000 if (err) {
2001 dev_err(eth->dev, "error bringing up device\n");
Sean Wang8a8a9e82016-09-14 23:13:17 +08002002 goto err_deinit_mdio;
Sean Wang85574db2016-09-14 23:13:15 +08002003 } else
2004 netif_info(eth, probe, eth->netdev[i],
2005 "mediatek frame engine at 0x%08lx, irq %d\n",
2006 eth->netdev[i]->base_addr, eth->irq[0]);
2007 }
2008
John Crispin656e7052016-03-08 11:29:55 +01002009 /* we run 2 devices on the same DMA ring so we need a dummy device
2010 * for NAPI to work
2011 */
2012 init_dummy_netdev(&eth->dummy_dev);
John Crispin80673022016-06-29 13:38:11 +02002013 netif_napi_add(&eth->dummy_dev, &eth->tx_napi, mtk_napi_tx,
2014 MTK_NAPI_WEIGHT);
2015 netif_napi_add(&eth->dummy_dev, &eth->rx_napi, mtk_napi_rx,
John Crispin656e7052016-03-08 11:29:55 +01002016 MTK_NAPI_WEIGHT);
2017
2018 platform_set_drvdata(pdev, eth);
2019
2020 return 0;
2021
Sean Wang8a8a9e82016-09-14 23:13:17 +08002022err_deinit_mdio:
2023 mtk_mdio_cleanup(eth);
John Crispin656e7052016-03-08 11:29:55 +01002024err_free_dev:
Sean Wang8a8a9e82016-09-14 23:13:17 +08002025 mtk_free_dev(eth);
2026err_deinit_hw:
2027 mtk_hw_deinit(eth);
2028
John Crispin656e7052016-03-08 11:29:55 +01002029 return err;
2030}
2031
2032static int mtk_remove(struct platform_device *pdev)
2033{
2034 struct mtk_eth *eth = platform_get_drvdata(pdev);
Sean Wang79e9a412016-09-01 10:47:32 +08002035 int i;
John Crispin656e7052016-03-08 11:29:55 +01002036
Sean Wang79e9a412016-09-01 10:47:32 +08002037 /* stop all devices to make sure that dma is properly shut down */
2038 for (i = 0; i < MTK_MAC_COUNT; i++) {
2039 if (!eth->netdev[i])
2040 continue;
2041 mtk_stop(eth->netdev[i]);
2042 }
John Crispin656e7052016-03-08 11:29:55 +01002043
Sean Wangbf253fb2016-09-14 23:13:16 +08002044 mtk_hw_deinit(eth);
John Crispin656e7052016-03-08 11:29:55 +01002045
John Crispin80673022016-06-29 13:38:11 +02002046 netif_napi_del(&eth->tx_napi);
John Crispin656e7052016-03-08 11:29:55 +01002047 netif_napi_del(&eth->rx_napi);
2048 mtk_cleanup(eth);
John Crispin656e7052016-03-08 11:29:55 +01002049
2050 return 0;
2051}
2052
2053const struct of_device_id of_mtk_match[] = {
2054 { .compatible = "mediatek,mt7623-eth" },
2055 {},
2056};
2057
2058static struct platform_driver mtk_driver = {
2059 .probe = mtk_probe,
2060 .remove = mtk_remove,
2061 .driver = {
2062 .name = "mtk_soc_eth",
John Crispin656e7052016-03-08 11:29:55 +01002063 .of_match_table = of_mtk_match,
2064 },
2065};
2066
2067module_platform_driver(mtk_driver);
2068
2069MODULE_LICENSE("GPL");
2070MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
2071MODULE_DESCRIPTION("Ethernet driver for MediaTek SoC");