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