blob: fb61f7f96bb4908580a46c127502794c6e0a7295 [file] [log] [blame]
John Crispin504d4722011-05-06 00:10:01 +02001/*
2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License version 2 as published
4 * by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 * GNU General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public License
Jeff Kirsher0ab75ae2013-12-06 06:28:43 -080012 * along with this program; if not, see <http://www.gnu.org/licenses/>.
John Crispin504d4722011-05-06 00:10:01 +020013 *
14 * Copyright (C) 2011 John Crispin <blogic@openwrt.org>
15 */
16
17#include <linux/kernel.h>
18#include <linux/slab.h>
19#include <linux/errno.h>
20#include <linux/types.h>
21#include <linux/interrupt.h>
22#include <linux/uaccess.h>
23#include <linux/in.h>
24#include <linux/netdevice.h>
25#include <linux/etherdevice.h>
26#include <linux/phy.h>
27#include <linux/ip.h>
28#include <linux/tcp.h>
29#include <linux/skbuff.h>
30#include <linux/mm.h>
31#include <linux/platform_device.h>
32#include <linux/ethtool.h>
33#include <linux/init.h>
34#include <linux/delay.h>
35#include <linux/io.h>
John Crispina32fd632011-11-14 05:01:18 +000036#include <linux/dma-mapping.h>
37#include <linux/module.h>
John Crispin504d4722011-05-06 00:10:01 +020038
39#include <asm/checksum.h>
40
41#include <lantiq_soc.h>
42#include <xway_dma.h>
43#include <lantiq_platform.h>
44
45#define LTQ_ETOP_MDIO 0x11804
46#define MDIO_REQUEST 0x80000000
47#define MDIO_READ 0x40000000
48#define MDIO_ADDR_MASK 0x1f
49#define MDIO_ADDR_OFFSET 0x15
50#define MDIO_REG_MASK 0x1f
51#define MDIO_REG_OFFSET 0x10
52#define MDIO_VAL_MASK 0xffff
53
54#define PPE32_CGEN 0x800
55#define LQ_PPE32_ENET_MAC_CFG 0x1840
56
57#define LTQ_ETOP_ENETS0 0x11850
58#define LTQ_ETOP_MAC_DA0 0x1186C
59#define LTQ_ETOP_MAC_DA1 0x11870
60#define LTQ_ETOP_CFG 0x16020
61#define LTQ_ETOP_IGPLEN 0x16080
62
63#define MAX_DMA_CHAN 0x8
64#define MAX_DMA_CRC_LEN 0x4
65#define MAX_DMA_DATA_LEN 0x600
66
67#define ETOP_FTCU BIT(28)
68#define ETOP_MII_MASK 0xf
69#define ETOP_MII_NORMAL 0xd
70#define ETOP_MII_REVERSE 0xe
71#define ETOP_PLEN_UNDER 0x40
72#define ETOP_CGEN 0x800
73
74/* use 2 static channels for TX/RX */
75#define LTQ_ETOP_TX_CHANNEL 1
76#define LTQ_ETOP_RX_CHANNEL 6
77#define IS_TX(x) (x == LTQ_ETOP_TX_CHANNEL)
78#define IS_RX(x) (x == LTQ_ETOP_RX_CHANNEL)
79
80#define ltq_etop_r32(x) ltq_r32(ltq_etop_membase + (x))
81#define ltq_etop_w32(x, y) ltq_w32(x, ltq_etop_membase + (y))
82#define ltq_etop_w32_mask(x, y, z) \
83 ltq_w32_mask(x, y, ltq_etop_membase + (z))
84
85#define DRV_VERSION "1.0"
86
87static void __iomem *ltq_etop_membase;
88
89struct ltq_etop_chan {
90 int idx;
91 int tx_free;
92 struct net_device *netdev;
93 struct napi_struct napi;
94 struct ltq_dma_channel dma;
95 struct sk_buff *skb[LTQ_DESC_NUM];
96};
97
98struct ltq_etop_priv {
99 struct net_device *netdev;
Florian Fainellid1b86502012-01-09 23:59:14 +0000100 struct platform_device *pdev;
John Crispin504d4722011-05-06 00:10:01 +0200101 struct ltq_eth_data *pldata;
102 struct resource *res;
103
104 struct mii_bus *mii_bus;
105 struct phy_device *phydev;
106
107 struct ltq_etop_chan ch[MAX_DMA_CHAN];
108 int tx_free[MAX_DMA_CHAN >> 1];
109
110 spinlock_t lock;
111};
112
113static int
114ltq_etop_alloc_skb(struct ltq_etop_chan *ch)
115{
Pradeep A Dalvic056b732012-02-05 02:50:38 +0000116 ch->skb[ch->dma.desc] = netdev_alloc_skb(ch->netdev, MAX_DMA_DATA_LEN);
John Crispin504d4722011-05-06 00:10:01 +0200117 if (!ch->skb[ch->dma.desc])
118 return -ENOMEM;
119 ch->dma.desc_base[ch->dma.desc].addr = dma_map_single(NULL,
120 ch->skb[ch->dma.desc]->data, MAX_DMA_DATA_LEN,
121 DMA_FROM_DEVICE);
122 ch->dma.desc_base[ch->dma.desc].addr =
123 CPHYSADDR(ch->skb[ch->dma.desc]->data);
124 ch->dma.desc_base[ch->dma.desc].ctl =
125 LTQ_DMA_OWN | LTQ_DMA_RX_OFFSET(NET_IP_ALIGN) |
126 MAX_DMA_DATA_LEN;
127 skb_reserve(ch->skb[ch->dma.desc], NET_IP_ALIGN);
128 return 0;
129}
130
131static void
132ltq_etop_hw_receive(struct ltq_etop_chan *ch)
133{
134 struct ltq_etop_priv *priv = netdev_priv(ch->netdev);
135 struct ltq_dma_desc *desc = &ch->dma.desc_base[ch->dma.desc];
136 struct sk_buff *skb = ch->skb[ch->dma.desc];
137 int len = (desc->ctl & LTQ_DMA_SIZE_MASK) - MAX_DMA_CRC_LEN;
138 unsigned long flags;
139
140 spin_lock_irqsave(&priv->lock, flags);
141 if (ltq_etop_alloc_skb(ch)) {
142 netdev_err(ch->netdev,
143 "failed to allocate new rx buffer, stopping DMA\n");
144 ltq_dma_close(&ch->dma);
145 }
146 ch->dma.desc++;
147 ch->dma.desc %= LTQ_DESC_NUM;
148 spin_unlock_irqrestore(&priv->lock, flags);
149
150 skb_put(skb, len);
John Crispin504d4722011-05-06 00:10:01 +0200151 skb->protocol = eth_type_trans(skb, ch->netdev);
152 netif_receive_skb(skb);
153}
154
155static int
156ltq_etop_poll_rx(struct napi_struct *napi, int budget)
157{
158 struct ltq_etop_chan *ch = container_of(napi,
159 struct ltq_etop_chan, napi);
160 int rx = 0;
161 int complete = 0;
162
163 while ((rx < budget) && !complete) {
164 struct ltq_dma_desc *desc = &ch->dma.desc_base[ch->dma.desc];
165
166 if ((desc->ctl & (LTQ_DMA_OWN | LTQ_DMA_C)) == LTQ_DMA_C) {
167 ltq_etop_hw_receive(ch);
168 rx++;
169 } else {
170 complete = 1;
171 }
172 }
173 if (complete || !rx) {
174 napi_complete(&ch->napi);
175 ltq_dma_ack_irq(&ch->dma);
176 }
177 return rx;
178}
179
180static int
181ltq_etop_poll_tx(struct napi_struct *napi, int budget)
182{
183 struct ltq_etop_chan *ch =
184 container_of(napi, struct ltq_etop_chan, napi);
185 struct ltq_etop_priv *priv = netdev_priv(ch->netdev);
186 struct netdev_queue *txq =
187 netdev_get_tx_queue(ch->netdev, ch->idx >> 1);
188 unsigned long flags;
189
190 spin_lock_irqsave(&priv->lock, flags);
191 while ((ch->dma.desc_base[ch->tx_free].ctl &
192 (LTQ_DMA_OWN | LTQ_DMA_C)) == LTQ_DMA_C) {
193 dev_kfree_skb_any(ch->skb[ch->tx_free]);
194 ch->skb[ch->tx_free] = NULL;
195 memset(&ch->dma.desc_base[ch->tx_free], 0,
196 sizeof(struct ltq_dma_desc));
197 ch->tx_free++;
198 ch->tx_free %= LTQ_DESC_NUM;
199 }
200 spin_unlock_irqrestore(&priv->lock, flags);
201
202 if (netif_tx_queue_stopped(txq))
203 netif_tx_start_queue(txq);
204 napi_complete(&ch->napi);
205 ltq_dma_ack_irq(&ch->dma);
206 return 1;
207}
208
209static irqreturn_t
210ltq_etop_dma_irq(int irq, void *_priv)
211{
212 struct ltq_etop_priv *priv = _priv;
213 int ch = irq - LTQ_DMA_CH0_INT;
214
215 napi_schedule(&priv->ch[ch].napi);
216 return IRQ_HANDLED;
217}
218
219static void
220ltq_etop_free_channel(struct net_device *dev, struct ltq_etop_chan *ch)
221{
222 struct ltq_etop_priv *priv = netdev_priv(dev);
223
224 ltq_dma_free(&ch->dma);
225 if (ch->dma.irq)
226 free_irq(ch->dma.irq, priv);
227 if (IS_RX(ch->idx)) {
228 int desc;
229 for (desc = 0; desc < LTQ_DESC_NUM; desc++)
230 dev_kfree_skb_any(ch->skb[ch->dma.desc]);
231 }
232}
233
234static void
235ltq_etop_hw_exit(struct net_device *dev)
236{
237 struct ltq_etop_priv *priv = netdev_priv(dev);
238 int i;
239
240 ltq_pmu_disable(PMU_PPE);
241 for (i = 0; i < MAX_DMA_CHAN; i++)
242 if (IS_TX(i) || IS_RX(i))
243 ltq_etop_free_channel(dev, &priv->ch[i]);
244}
245
246static int
247ltq_etop_hw_init(struct net_device *dev)
248{
249 struct ltq_etop_priv *priv = netdev_priv(dev);
250 int i;
251
252 ltq_pmu_enable(PMU_PPE);
253
254 switch (priv->pldata->mii_mode) {
255 case PHY_INTERFACE_MODE_RMII:
256 ltq_etop_w32_mask(ETOP_MII_MASK,
257 ETOP_MII_REVERSE, LTQ_ETOP_CFG);
258 break;
259
260 case PHY_INTERFACE_MODE_MII:
261 ltq_etop_w32_mask(ETOP_MII_MASK,
262 ETOP_MII_NORMAL, LTQ_ETOP_CFG);
263 break;
264
265 default:
266 netdev_err(dev, "unknown mii mode %d\n",
267 priv->pldata->mii_mode);
268 return -ENOTSUPP;
269 }
270
271 /* enable crc generation */
272 ltq_etop_w32(PPE32_CGEN, LQ_PPE32_ENET_MAC_CFG);
273
274 ltq_dma_init_port(DMA_PORT_ETOP);
275
276 for (i = 0; i < MAX_DMA_CHAN; i++) {
277 int irq = LTQ_DMA_CH0_INT + i;
278 struct ltq_etop_chan *ch = &priv->ch[i];
279
280 ch->idx = ch->dma.nr = i;
281
282 if (IS_TX(i)) {
283 ltq_dma_alloc_tx(&ch->dma);
Michael Opdenackerdddb29e2013-09-13 05:59:42 +0200284 request_irq(irq, ltq_etop_dma_irq, 0, "etop_tx", priv);
John Crispin504d4722011-05-06 00:10:01 +0200285 } else if (IS_RX(i)) {
286 ltq_dma_alloc_rx(&ch->dma);
287 for (ch->dma.desc = 0; ch->dma.desc < LTQ_DESC_NUM;
288 ch->dma.desc++)
289 if (ltq_etop_alloc_skb(ch))
290 return -ENOMEM;
291 ch->dma.desc = 0;
Michael Opdenackerdddb29e2013-09-13 05:59:42 +0200292 request_irq(irq, ltq_etop_dma_irq, 0, "etop_rx", priv);
John Crispin504d4722011-05-06 00:10:01 +0200293 }
294 ch->dma.irq = irq;
295 }
296 return 0;
297}
298
299static void
300ltq_etop_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
301{
Jiri Pirko7826d432013-01-06 00:44:26 +0000302 strlcpy(info->driver, "Lantiq ETOP", sizeof(info->driver));
303 strlcpy(info->bus_info, "internal", sizeof(info->bus_info));
304 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
John Crispin504d4722011-05-06 00:10:01 +0200305}
306
307static int
308ltq_etop_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
309{
310 struct ltq_etop_priv *priv = netdev_priv(dev);
311
312 return phy_ethtool_gset(priv->phydev, cmd);
313}
314
315static int
316ltq_etop_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
317{
318 struct ltq_etop_priv *priv = netdev_priv(dev);
319
320 return phy_ethtool_sset(priv->phydev, cmd);
321}
322
323static int
324ltq_etop_nway_reset(struct net_device *dev)
325{
326 struct ltq_etop_priv *priv = netdev_priv(dev);
327
328 return phy_start_aneg(priv->phydev);
329}
330
331static const struct ethtool_ops ltq_etop_ethtool_ops = {
332 .get_drvinfo = ltq_etop_get_drvinfo,
333 .get_settings = ltq_etop_get_settings,
334 .set_settings = ltq_etop_set_settings,
335 .nway_reset = ltq_etop_nway_reset,
336};
337
338static int
339ltq_etop_mdio_wr(struct mii_bus *bus, int phy_addr, int phy_reg, u16 phy_data)
340{
341 u32 val = MDIO_REQUEST |
342 ((phy_addr & MDIO_ADDR_MASK) << MDIO_ADDR_OFFSET) |
343 ((phy_reg & MDIO_REG_MASK) << MDIO_REG_OFFSET) |
344 phy_data;
345
346 while (ltq_etop_r32(LTQ_ETOP_MDIO) & MDIO_REQUEST)
347 ;
348 ltq_etop_w32(val, LTQ_ETOP_MDIO);
349 return 0;
350}
351
352static int
353ltq_etop_mdio_rd(struct mii_bus *bus, int phy_addr, int phy_reg)
354{
355 u32 val = MDIO_REQUEST | MDIO_READ |
356 ((phy_addr & MDIO_ADDR_MASK) << MDIO_ADDR_OFFSET) |
357 ((phy_reg & MDIO_REG_MASK) << MDIO_REG_OFFSET);
358
359 while (ltq_etop_r32(LTQ_ETOP_MDIO) & MDIO_REQUEST)
360 ;
361 ltq_etop_w32(val, LTQ_ETOP_MDIO);
362 while (ltq_etop_r32(LTQ_ETOP_MDIO) & MDIO_REQUEST)
363 ;
364 val = ltq_etop_r32(LTQ_ETOP_MDIO) & MDIO_VAL_MASK;
365 return val;
366}
367
368static void
369ltq_etop_mdio_link(struct net_device *dev)
370{
371 /* nothing to do */
372}
373
374static int
375ltq_etop_mdio_probe(struct net_device *dev)
376{
377 struct ltq_etop_priv *priv = netdev_priv(dev);
378 struct phy_device *phydev = NULL;
379 int phy_addr;
380
381 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
382 if (priv->mii_bus->phy_map[phy_addr]) {
383 phydev = priv->mii_bus->phy_map[phy_addr];
384 break;
385 }
386 }
387
388 if (!phydev) {
389 netdev_err(dev, "no PHY found\n");
390 return -ENODEV;
391 }
392
Andrew Lunn84eff6d2016-01-06 20:11:10 +0100393 phydev = phy_connect(dev, phydev_name(phydev),
Florian Fainellif9a8f832013-01-14 00:52:52 +0000394 &ltq_etop_mdio_link, priv->pldata->mii_mode);
John Crispin504d4722011-05-06 00:10:01 +0200395
396 if (IS_ERR(phydev)) {
397 netdev_err(dev, "Could not attach to PHY\n");
398 return PTR_ERR(phydev);
399 }
400
401 phydev->supported &= (SUPPORTED_10baseT_Half
402 | SUPPORTED_10baseT_Full
403 | SUPPORTED_100baseT_Half
404 | SUPPORTED_100baseT_Full
405 | SUPPORTED_Autoneg
406 | SUPPORTED_MII
407 | SUPPORTED_TP);
408
409 phydev->advertising = phydev->supported;
410 priv->phydev = phydev;
Andrew Lunn22209432016-01-06 20:11:13 +0100411 phy_attached_info(phydev);
John Crispin504d4722011-05-06 00:10:01 +0200412
413 return 0;
414}
415
416static int
417ltq_etop_mdio_init(struct net_device *dev)
418{
419 struct ltq_etop_priv *priv = netdev_priv(dev);
420 int i;
421 int err;
422
423 priv->mii_bus = mdiobus_alloc();
424 if (!priv->mii_bus) {
425 netdev_err(dev, "failed to allocate mii bus\n");
426 err = -ENOMEM;
427 goto err_out;
428 }
429
430 priv->mii_bus->priv = dev;
431 priv->mii_bus->read = ltq_etop_mdio_rd;
432 priv->mii_bus->write = ltq_etop_mdio_wr;
433 priv->mii_bus->name = "ltq_mii";
Florian Fainellid1b86502012-01-09 23:59:14 +0000434 snprintf(priv->mii_bus->id, MII_BUS_ID_SIZE, "%s-%x",
435 priv->pdev->name, priv->pdev->id);
John Crispin504d4722011-05-06 00:10:01 +0200436 if (mdiobus_register(priv->mii_bus)) {
437 err = -ENXIO;
Andrew Lunne7f4dc32016-01-06 20:11:15 +0100438 goto err_out_free_mdiobus;
John Crispin504d4722011-05-06 00:10:01 +0200439 }
440
441 if (ltq_etop_mdio_probe(dev)) {
442 err = -ENXIO;
443 goto err_out_unregister_bus;
444 }
445 return 0;
446
447err_out_unregister_bus:
448 mdiobus_unregister(priv->mii_bus);
John Crispin504d4722011-05-06 00:10:01 +0200449err_out_free_mdiobus:
450 mdiobus_free(priv->mii_bus);
451err_out:
452 return err;
453}
454
455static void
456ltq_etop_mdio_cleanup(struct net_device *dev)
457{
458 struct ltq_etop_priv *priv = netdev_priv(dev);
459
460 phy_disconnect(priv->phydev);
461 mdiobus_unregister(priv->mii_bus);
John Crispin504d4722011-05-06 00:10:01 +0200462 mdiobus_free(priv->mii_bus);
463}
464
465static int
466ltq_etop_open(struct net_device *dev)
467{
468 struct ltq_etop_priv *priv = netdev_priv(dev);
469 int i;
470
471 for (i = 0; i < MAX_DMA_CHAN; i++) {
472 struct ltq_etop_chan *ch = &priv->ch[i];
473
474 if (!IS_TX(i) && (!IS_RX(i)))
475 continue;
476 ltq_dma_open(&ch->dma);
477 napi_enable(&ch->napi);
478 }
479 phy_start(priv->phydev);
480 netif_tx_start_all_queues(dev);
481 return 0;
482}
483
484static int
485ltq_etop_stop(struct net_device *dev)
486{
487 struct ltq_etop_priv *priv = netdev_priv(dev);
488 int i;
489
490 netif_tx_stop_all_queues(dev);
491 phy_stop(priv->phydev);
492 for (i = 0; i < MAX_DMA_CHAN; i++) {
493 struct ltq_etop_chan *ch = &priv->ch[i];
494
495 if (!IS_RX(i) && !IS_TX(i))
496 continue;
497 napi_disable(&ch->napi);
498 ltq_dma_close(&ch->dma);
499 }
500 return 0;
501}
502
503static int
504ltq_etop_tx(struct sk_buff *skb, struct net_device *dev)
505{
506 int queue = skb_get_queue_mapping(skb);
507 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue);
508 struct ltq_etop_priv *priv = netdev_priv(dev);
509 struct ltq_etop_chan *ch = &priv->ch[(queue << 1) | 1];
510 struct ltq_dma_desc *desc = &ch->dma.desc_base[ch->dma.desc];
511 int len;
512 unsigned long flags;
513 u32 byte_offset;
514
515 len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len;
516
517 if ((desc->ctl & (LTQ_DMA_OWN | LTQ_DMA_C)) || ch->skb[ch->dma.desc]) {
518 dev_kfree_skb_any(skb);
519 netdev_err(dev, "tx ring full\n");
520 netif_tx_stop_queue(txq);
521 return NETDEV_TX_BUSY;
522 }
523
524 /* dma needs to start on a 16 byte aligned address */
525 byte_offset = CPHYSADDR(skb->data) % 16;
526 ch->skb[ch->dma.desc] = skb;
527
528 dev->trans_start = jiffies;
529
530 spin_lock_irqsave(&priv->lock, flags);
531 desc->addr = ((unsigned int) dma_map_single(NULL, skb->data, len,
532 DMA_TO_DEVICE)) - byte_offset;
533 wmb();
534 desc->ctl = LTQ_DMA_OWN | LTQ_DMA_SOP | LTQ_DMA_EOP |
535 LTQ_DMA_TX_OFFSET(byte_offset) | (len & LTQ_DMA_SIZE_MASK);
536 ch->dma.desc++;
537 ch->dma.desc %= LTQ_DESC_NUM;
538 spin_unlock_irqrestore(&priv->lock, flags);
539
540 if (ch->dma.desc_base[ch->dma.desc].ctl & LTQ_DMA_OWN)
541 netif_tx_stop_queue(txq);
542
543 return NETDEV_TX_OK;
544}
545
546static int
547ltq_etop_change_mtu(struct net_device *dev, int new_mtu)
548{
549 int ret = eth_change_mtu(dev, new_mtu);
550
551 if (!ret) {
552 struct ltq_etop_priv *priv = netdev_priv(dev);
553 unsigned long flags;
554
555 spin_lock_irqsave(&priv->lock, flags);
556 ltq_etop_w32((ETOP_PLEN_UNDER << 16) | new_mtu,
557 LTQ_ETOP_IGPLEN);
558 spin_unlock_irqrestore(&priv->lock, flags);
559 }
560 return ret;
561}
562
563static int
564ltq_etop_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
565{
566 struct ltq_etop_priv *priv = netdev_priv(dev);
567
568 /* TODO: mii-toll reports "No MII transceiver present!." ?!*/
569 return phy_mii_ioctl(priv->phydev, rq, cmd);
570}
571
572static int
573ltq_etop_set_mac_address(struct net_device *dev, void *p)
574{
575 int ret = eth_mac_addr(dev, p);
576
577 if (!ret) {
578 struct ltq_etop_priv *priv = netdev_priv(dev);
579 unsigned long flags;
580
581 /* store the mac for the unicast filter */
582 spin_lock_irqsave(&priv->lock, flags);
583 ltq_etop_w32(*((u32 *)dev->dev_addr), LTQ_ETOP_MAC_DA0);
584 ltq_etop_w32(*((u16 *)&dev->dev_addr[4]) << 16,
585 LTQ_ETOP_MAC_DA1);
586 spin_unlock_irqrestore(&priv->lock, flags);
587 }
588 return ret;
589}
590
591static void
592ltq_etop_set_multicast_list(struct net_device *dev)
593{
594 struct ltq_etop_priv *priv = netdev_priv(dev);
595 unsigned long flags;
596
597 /* ensure that the unicast filter is not enabled in promiscious mode */
598 spin_lock_irqsave(&priv->lock, flags);
599 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI))
600 ltq_etop_w32_mask(ETOP_FTCU, 0, LTQ_ETOP_ENETS0);
601 else
602 ltq_etop_w32_mask(0, ETOP_FTCU, LTQ_ETOP_ENETS0);
603 spin_unlock_irqrestore(&priv->lock, flags);
604}
605
606static u16
Jason Wangf663dd92014-01-10 16:18:26 +0800607ltq_etop_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +0100608 void *accel_priv, select_queue_fallback_t fallback)
John Crispin504d4722011-05-06 00:10:01 +0200609{
610 /* we are currently only using the first queue */
611 return 0;
612}
613
614static int
615ltq_etop_init(struct net_device *dev)
616{
617 struct ltq_etop_priv *priv = netdev_priv(dev);
618 struct sockaddr mac;
619 int err;
Danny Kukawka43aabec2012-02-17 05:43:23 +0000620 bool random_mac = false;
John Crispin504d4722011-05-06 00:10:01 +0200621
John Crispin504d4722011-05-06 00:10:01 +0200622 dev->watchdog_timeo = 10 * HZ;
623 err = ltq_etop_hw_init(dev);
624 if (err)
625 goto err_hw;
626 ltq_etop_change_mtu(dev, 1500);
627
628 memcpy(&mac, &priv->pldata->mac, sizeof(struct sockaddr));
629 if (!is_valid_ether_addr(mac.sa_data)) {
630 pr_warn("etop: invalid MAC, using random\n");
Joe Perches7efd26d2012-07-12 19:33:06 +0000631 eth_random_addr(mac.sa_data);
Danny Kukawka43aabec2012-02-17 05:43:23 +0000632 random_mac = true;
John Crispin504d4722011-05-06 00:10:01 +0200633 }
634
635 err = ltq_etop_set_mac_address(dev, &mac);
636 if (err)
637 goto err_netdev;
Danny Kukawka43aabec2012-02-17 05:43:23 +0000638
639 /* Set addr_assign_type here, ltq_etop_set_mac_address would reset it. */
640 if (random_mac)
Jiri Pirkoe41b2d72013-01-01 03:30:15 +0000641 dev->addr_assign_type = NET_ADDR_RANDOM;
Danny Kukawka43aabec2012-02-17 05:43:23 +0000642
John Crispin504d4722011-05-06 00:10:01 +0200643 ltq_etop_set_multicast_list(dev);
644 err = ltq_etop_mdio_init(dev);
645 if (err)
646 goto err_netdev;
647 return 0;
648
649err_netdev:
650 unregister_netdev(dev);
651 free_netdev(dev);
652err_hw:
653 ltq_etop_hw_exit(dev);
654 return err;
655}
656
657static void
658ltq_etop_tx_timeout(struct net_device *dev)
659{
660 int err;
661
662 ltq_etop_hw_exit(dev);
663 err = ltq_etop_hw_init(dev);
664 if (err)
665 goto err_hw;
666 dev->trans_start = jiffies;
667 netif_wake_queue(dev);
668 return;
669
670err_hw:
671 ltq_etop_hw_exit(dev);
672 netdev_err(dev, "failed to restart etop after TX timeout\n");
673}
674
675static const struct net_device_ops ltq_eth_netdev_ops = {
676 .ndo_open = ltq_etop_open,
677 .ndo_stop = ltq_etop_stop,
678 .ndo_start_xmit = ltq_etop_tx,
679 .ndo_change_mtu = ltq_etop_change_mtu,
680 .ndo_do_ioctl = ltq_etop_ioctl,
681 .ndo_set_mac_address = ltq_etop_set_mac_address,
682 .ndo_validate_addr = eth_validate_addr,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000683 .ndo_set_rx_mode = ltq_etop_set_multicast_list,
John Crispin504d4722011-05-06 00:10:01 +0200684 .ndo_select_queue = ltq_etop_select_queue,
685 .ndo_init = ltq_etop_init,
686 .ndo_tx_timeout = ltq_etop_tx_timeout,
687};
688
689static int __init
690ltq_etop_probe(struct platform_device *pdev)
691{
692 struct net_device *dev;
693 struct ltq_etop_priv *priv;
694 struct resource *res;
695 int err;
696 int i;
697
698 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
699 if (!res) {
700 dev_err(&pdev->dev, "failed to get etop resource\n");
701 err = -ENOENT;
702 goto err_out;
703 }
704
705 res = devm_request_mem_region(&pdev->dev, res->start,
706 resource_size(res), dev_name(&pdev->dev));
707 if (!res) {
708 dev_err(&pdev->dev, "failed to request etop resource\n");
709 err = -EBUSY;
710 goto err_out;
711 }
712
713 ltq_etop_membase = devm_ioremap_nocache(&pdev->dev,
714 res->start, resource_size(res));
715 if (!ltq_etop_membase) {
716 dev_err(&pdev->dev, "failed to remap etop engine %d\n",
717 pdev->id);
718 err = -ENOMEM;
719 goto err_out;
720 }
721
722 dev = alloc_etherdev_mq(sizeof(struct ltq_etop_priv), 4);
Joe Perches41de8d42012-01-29 13:47:52 +0000723 if (!dev) {
724 err = -ENOMEM;
725 goto err_out;
726 }
John Crispin504d4722011-05-06 00:10:01 +0200727 strcpy(dev->name, "eth%d");
728 dev->netdev_ops = &ltq_eth_netdev_ops;
729 dev->ethtool_ops = &ltq_etop_ethtool_ops;
730 priv = netdev_priv(dev);
731 priv->res = res;
Florian Fainellid1b86502012-01-09 23:59:14 +0000732 priv->pdev = pdev;
John Crispin504d4722011-05-06 00:10:01 +0200733 priv->pldata = dev_get_platdata(&pdev->dev);
734 priv->netdev = dev;
735 spin_lock_init(&priv->lock);
736
737 for (i = 0; i < MAX_DMA_CHAN; i++) {
738 if (IS_TX(i))
739 netif_napi_add(dev, &priv->ch[i].napi,
740 ltq_etop_poll_tx, 8);
741 else if (IS_RX(i))
742 netif_napi_add(dev, &priv->ch[i].napi,
743 ltq_etop_poll_rx, 32);
744 priv->ch[i].netdev = dev;
745 }
746
747 err = register_netdev(dev);
748 if (err)
749 goto err_free;
750
751 platform_set_drvdata(pdev, dev);
752 return 0;
753
754err_free:
Wei Yongjuncb0e51d2013-03-20 21:31:42 +0000755 free_netdev(dev);
John Crispin504d4722011-05-06 00:10:01 +0200756err_out:
757 return err;
758}
759
Bill Pembertona0a4efe2012-12-03 09:24:09 -0500760static int
John Crispin504d4722011-05-06 00:10:01 +0200761ltq_etop_remove(struct platform_device *pdev)
762{
763 struct net_device *dev = platform_get_drvdata(pdev);
764
765 if (dev) {
766 netif_tx_stop_all_queues(dev);
767 ltq_etop_hw_exit(dev);
768 ltq_etop_mdio_cleanup(dev);
769 unregister_netdev(dev);
770 }
771 return 0;
772}
773
774static struct platform_driver ltq_mii_driver = {
Bill Pembertona0a4efe2012-12-03 09:24:09 -0500775 .remove = ltq_etop_remove,
John Crispin504d4722011-05-06 00:10:01 +0200776 .driver = {
777 .name = "ltq_etop",
John Crispin504d4722011-05-06 00:10:01 +0200778 },
779};
780
781int __init
782init_ltq_etop(void)
783{
784 int ret = platform_driver_probe(&ltq_mii_driver, ltq_etop_probe);
785
786 if (ret)
Masanari Iida772301b2012-02-16 03:25:19 +0000787 pr_err("ltq_etop: Error registering platform driver!");
John Crispin504d4722011-05-06 00:10:01 +0200788 return ret;
789}
790
791static void __exit
792exit_ltq_etop(void)
793{
794 platform_driver_unregister(&ltq_mii_driver);
795}
796
797module_init(init_ltq_etop);
798module_exit(exit_ltq_etop);
799
800MODULE_AUTHOR("John Crispin <blogic@openwrt.org>");
801MODULE_DESCRIPTION("Lantiq SoC ETOP");
802MODULE_LICENSE("GPL");