net: remove unnecessary NET_ADDR_RANDOM "bitclean"
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / net / ethernet / ethoc.c
CommitLineData
a1702857 1/*
3396c782 2 * linux/drivers/net/ethernet/ethoc.c
a1702857
TR
3 *
4 * Copyright (C) 2007-2008 Avionic Design Development GmbH
5 * Copyright (C) 2008-2009 Avionic Design GmbH
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Written by Thierry Reding <thierry.reding@avionic-design.de>
12 */
13
b7f080cf 14#include <linux/dma-mapping.h>
a1702857
TR
15#include <linux/etherdevice.h>
16#include <linux/crc32.h>
a6b7a407 17#include <linux/interrupt.h>
a1702857
TR
18#include <linux/io.h>
19#include <linux/mii.h>
20#include <linux/phy.h>
21#include <linux/platform_device.h>
d43c36dc 22#include <linux/sched.h>
5a0e3ad6 23#include <linux/slab.h>
e0f4258b 24#include <linux/of.h>
9d9779e7 25#include <linux/module.h>
a1702857
TR
26#include <net/ethoc.h>
27
0baa080c
TC
28static int buffer_size = 0x8000; /* 32 KBytes */
29module_param(buffer_size, int, 0);
30MODULE_PARM_DESC(buffer_size, "DMA buffer allocation size");
31
a1702857
TR
32/* register offsets */
33#define MODER 0x00
34#define INT_SOURCE 0x04
35#define INT_MASK 0x08
36#define IPGT 0x0c
37#define IPGR1 0x10
38#define IPGR2 0x14
39#define PACKETLEN 0x18
40#define COLLCONF 0x1c
41#define TX_BD_NUM 0x20
42#define CTRLMODER 0x24
43#define MIIMODER 0x28
44#define MIICOMMAND 0x2c
45#define MIIADDRESS 0x30
46#define MIITX_DATA 0x34
47#define MIIRX_DATA 0x38
48#define MIISTATUS 0x3c
49#define MAC_ADDR0 0x40
50#define MAC_ADDR1 0x44
51#define ETH_HASH0 0x48
52#define ETH_HASH1 0x4c
53#define ETH_TXCTRL 0x50
54
55/* mode register */
56#define MODER_RXEN (1 << 0) /* receive enable */
57#define MODER_TXEN (1 << 1) /* transmit enable */
58#define MODER_NOPRE (1 << 2) /* no preamble */
59#define MODER_BRO (1 << 3) /* broadcast address */
60#define MODER_IAM (1 << 4) /* individual address mode */
61#define MODER_PRO (1 << 5) /* promiscuous mode */
62#define MODER_IFG (1 << 6) /* interframe gap for incoming frames */
63#define MODER_LOOP (1 << 7) /* loopback */
64#define MODER_NBO (1 << 8) /* no back-off */
65#define MODER_EDE (1 << 9) /* excess defer enable */
66#define MODER_FULLD (1 << 10) /* full duplex */
67#define MODER_RESET (1 << 11) /* FIXME: reset (undocumented) */
68#define MODER_DCRC (1 << 12) /* delayed CRC enable */
69#define MODER_CRC (1 << 13) /* CRC enable */
70#define MODER_HUGE (1 << 14) /* huge packets enable */
71#define MODER_PAD (1 << 15) /* padding enabled */
72#define MODER_RSM (1 << 16) /* receive small packets */
73
74/* interrupt source and mask registers */
75#define INT_MASK_TXF (1 << 0) /* transmit frame */
76#define INT_MASK_TXE (1 << 1) /* transmit error */
77#define INT_MASK_RXF (1 << 2) /* receive frame */
78#define INT_MASK_RXE (1 << 3) /* receive error */
79#define INT_MASK_BUSY (1 << 4)
80#define INT_MASK_TXC (1 << 5) /* transmit control frame */
81#define INT_MASK_RXC (1 << 6) /* receive control frame */
82
83#define INT_MASK_TX (INT_MASK_TXF | INT_MASK_TXE)
84#define INT_MASK_RX (INT_MASK_RXF | INT_MASK_RXE)
85
86#define INT_MASK_ALL ( \
87 INT_MASK_TXF | INT_MASK_TXE | \
88 INT_MASK_RXF | INT_MASK_RXE | \
89 INT_MASK_TXC | INT_MASK_RXC | \
90 INT_MASK_BUSY \
91 )
92
93/* packet length register */
94#define PACKETLEN_MIN(min) (((min) & 0xffff) << 16)
95#define PACKETLEN_MAX(max) (((max) & 0xffff) << 0)
96#define PACKETLEN_MIN_MAX(min, max) (PACKETLEN_MIN(min) | \
97 PACKETLEN_MAX(max))
98
99/* transmit buffer number register */
100#define TX_BD_NUM_VAL(x) (((x) <= 0x80) ? (x) : 0x80)
101
102/* control module mode register */
103#define CTRLMODER_PASSALL (1 << 0) /* pass all receive frames */
104#define CTRLMODER_RXFLOW (1 << 1) /* receive control flow */
105#define CTRLMODER_TXFLOW (1 << 2) /* transmit control flow */
106
107/* MII mode register */
108#define MIIMODER_CLKDIV(x) ((x) & 0xfe) /* needs to be an even number */
109#define MIIMODER_NOPRE (1 << 8) /* no preamble */
110
111/* MII command register */
112#define MIICOMMAND_SCAN (1 << 0) /* scan status */
113#define MIICOMMAND_READ (1 << 1) /* read status */
114#define MIICOMMAND_WRITE (1 << 2) /* write control data */
115
116/* MII address register */
117#define MIIADDRESS_FIAD(x) (((x) & 0x1f) << 0)
118#define MIIADDRESS_RGAD(x) (((x) & 0x1f) << 8)
119#define MIIADDRESS_ADDR(phy, reg) (MIIADDRESS_FIAD(phy) | \
120 MIIADDRESS_RGAD(reg))
121
122/* MII transmit data register */
123#define MIITX_DATA_VAL(x) ((x) & 0xffff)
124
125/* MII receive data register */
126#define MIIRX_DATA_VAL(x) ((x) & 0xffff)
127
128/* MII status register */
129#define MIISTATUS_LINKFAIL (1 << 0)
130#define MIISTATUS_BUSY (1 << 1)
131#define MIISTATUS_INVALID (1 << 2)
132
133/* TX buffer descriptor */
134#define TX_BD_CS (1 << 0) /* carrier sense lost */
135#define TX_BD_DF (1 << 1) /* defer indication */
136#define TX_BD_LC (1 << 2) /* late collision */
137#define TX_BD_RL (1 << 3) /* retransmission limit */
138#define TX_BD_RETRY_MASK (0x00f0)
139#define TX_BD_RETRY(x) (((x) & 0x00f0) >> 4)
140#define TX_BD_UR (1 << 8) /* transmitter underrun */
141#define TX_BD_CRC (1 << 11) /* TX CRC enable */
142#define TX_BD_PAD (1 << 12) /* pad enable for short packets */
143#define TX_BD_WRAP (1 << 13)
144#define TX_BD_IRQ (1 << 14) /* interrupt request enable */
145#define TX_BD_READY (1 << 15) /* TX buffer ready */
146#define TX_BD_LEN(x) (((x) & 0xffff) << 16)
147#define TX_BD_LEN_MASK (0xffff << 16)
148
149#define TX_BD_STATS (TX_BD_CS | TX_BD_DF | TX_BD_LC | \
150 TX_BD_RL | TX_BD_RETRY_MASK | TX_BD_UR)
151
152/* RX buffer descriptor */
153#define RX_BD_LC (1 << 0) /* late collision */
154#define RX_BD_CRC (1 << 1) /* RX CRC error */
155#define RX_BD_SF (1 << 2) /* short frame */
156#define RX_BD_TL (1 << 3) /* too long */
157#define RX_BD_DN (1 << 4) /* dribble nibble */
158#define RX_BD_IS (1 << 5) /* invalid symbol */
159#define RX_BD_OR (1 << 6) /* receiver overrun */
160#define RX_BD_MISS (1 << 7)
161#define RX_BD_CF (1 << 8) /* control frame */
162#define RX_BD_WRAP (1 << 13)
163#define RX_BD_IRQ (1 << 14) /* interrupt request enable */
164#define RX_BD_EMPTY (1 << 15)
165#define RX_BD_LEN(x) (((x) & 0xffff) << 16)
166
167#define RX_BD_STATS (RX_BD_LC | RX_BD_CRC | RX_BD_SF | RX_BD_TL | \
168 RX_BD_DN | RX_BD_IS | RX_BD_OR | RX_BD_MISS)
169
170#define ETHOC_BUFSIZ 1536
171#define ETHOC_ZLEN 64
172#define ETHOC_BD_BASE 0x400
173#define ETHOC_TIMEOUT (HZ / 2)
174#define ETHOC_MII_TIMEOUT (1 + (HZ / 5))
175
176/**
177 * struct ethoc - driver-private device structure
178 * @iobase: pointer to I/O memory region
179 * @membase: pointer to buffer memory region
0baa080c 180 * @dma_alloc: dma allocated buffer size
ee02a4ef 181 * @io_region_size: I/O memory region size
a1702857
TR
182 * @num_tx: number of send buffers
183 * @cur_tx: last send buffer written
184 * @dty_tx: last buffer actually sent
185 * @num_rx: number of receive buffers
186 * @cur_rx: current receive buffer
f8555ad0 187 * @vma: pointer to array of virtual memory addresses for buffers
a1702857
TR
188 * @netdev: pointer to network device structure
189 * @napi: NAPI structure
a1702857 190 * @msg_enable: device state flags
a1702857
TR
191 * @lock: device lock
192 * @phy: attached PHY
193 * @mdio: MDIO bus for PHY access
194 * @phy_id: address of attached PHY
195 */
196struct ethoc {
197 void __iomem *iobase;
198 void __iomem *membase;
0baa080c 199 int dma_alloc;
ee02a4ef 200 resource_size_t io_region_size;
a1702857
TR
201
202 unsigned int num_tx;
203 unsigned int cur_tx;
204 unsigned int dty_tx;
205
206 unsigned int num_rx;
207 unsigned int cur_rx;
208
f8555ad0
JB
209 void** vma;
210
a1702857
TR
211 struct net_device *netdev;
212 struct napi_struct napi;
a1702857
TR
213 u32 msg_enable;
214
a1702857
TR
215 spinlock_t lock;
216
217 struct phy_device *phy;
218 struct mii_bus *mdio;
219 s8 phy_id;
220};
221
222/**
223 * struct ethoc_bd - buffer descriptor
224 * @stat: buffer statistics
225 * @addr: physical memory address
226 */
227struct ethoc_bd {
228 u32 stat;
229 u32 addr;
230};
231
16dd18b0 232static inline u32 ethoc_read(struct ethoc *dev, loff_t offset)
a1702857
TR
233{
234 return ioread32(dev->iobase + offset);
235}
236
16dd18b0 237static inline void ethoc_write(struct ethoc *dev, loff_t offset, u32 data)
a1702857
TR
238{
239 iowrite32(data, dev->iobase + offset);
240}
241
16dd18b0
TC
242static inline void ethoc_read_bd(struct ethoc *dev, int index,
243 struct ethoc_bd *bd)
a1702857
TR
244{
245 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
246 bd->stat = ethoc_read(dev, offset + 0);
247 bd->addr = ethoc_read(dev, offset + 4);
248}
249
16dd18b0 250static inline void ethoc_write_bd(struct ethoc *dev, int index,
a1702857
TR
251 const struct ethoc_bd *bd)
252{
253 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
254 ethoc_write(dev, offset + 0, bd->stat);
255 ethoc_write(dev, offset + 4, bd->addr);
256}
257
16dd18b0 258static inline void ethoc_enable_irq(struct ethoc *dev, u32 mask)
a1702857
TR
259{
260 u32 imask = ethoc_read(dev, INT_MASK);
261 imask |= mask;
262 ethoc_write(dev, INT_MASK, imask);
263}
264
16dd18b0 265static inline void ethoc_disable_irq(struct ethoc *dev, u32 mask)
a1702857
TR
266{
267 u32 imask = ethoc_read(dev, INT_MASK);
268 imask &= ~mask;
269 ethoc_write(dev, INT_MASK, imask);
270}
271
16dd18b0 272static inline void ethoc_ack_irq(struct ethoc *dev, u32 mask)
a1702857
TR
273{
274 ethoc_write(dev, INT_SOURCE, mask);
275}
276
16dd18b0 277static inline void ethoc_enable_rx_and_tx(struct ethoc *dev)
a1702857
TR
278{
279 u32 mode = ethoc_read(dev, MODER);
280 mode |= MODER_RXEN | MODER_TXEN;
281 ethoc_write(dev, MODER, mode);
282}
283
16dd18b0 284static inline void ethoc_disable_rx_and_tx(struct ethoc *dev)
a1702857
TR
285{
286 u32 mode = ethoc_read(dev, MODER);
287 mode &= ~(MODER_RXEN | MODER_TXEN);
288 ethoc_write(dev, MODER, mode);
289}
290
5cf3e034 291static int ethoc_init_ring(struct ethoc *dev, unsigned long mem_start)
a1702857
TR
292{
293 struct ethoc_bd bd;
294 int i;
f8555ad0 295 void* vma;
a1702857
TR
296
297 dev->cur_tx = 0;
298 dev->dty_tx = 0;
299 dev->cur_rx = 0;
300
ee4f56b9
JB
301 ethoc_write(dev, TX_BD_NUM, dev->num_tx);
302
a1702857 303 /* setup transmission buffers */
f8555ad0 304 bd.addr = mem_start;
a1702857 305 bd.stat = TX_BD_IRQ | TX_BD_CRC;
f8555ad0 306 vma = dev->membase;
a1702857
TR
307
308 for (i = 0; i < dev->num_tx; i++) {
309 if (i == dev->num_tx - 1)
310 bd.stat |= TX_BD_WRAP;
311
312 ethoc_write_bd(dev, i, &bd);
313 bd.addr += ETHOC_BUFSIZ;
f8555ad0
JB
314
315 dev->vma[i] = vma;
316 vma += ETHOC_BUFSIZ;
a1702857
TR
317 }
318
a1702857
TR
319 bd.stat = RX_BD_EMPTY | RX_BD_IRQ;
320
321 for (i = 0; i < dev->num_rx; i++) {
322 if (i == dev->num_rx - 1)
323 bd.stat |= RX_BD_WRAP;
324
325 ethoc_write_bd(dev, dev->num_tx + i, &bd);
326 bd.addr += ETHOC_BUFSIZ;
f8555ad0
JB
327
328 dev->vma[dev->num_tx + i] = vma;
329 vma += ETHOC_BUFSIZ;
a1702857
TR
330 }
331
332 return 0;
333}
334
335static int ethoc_reset(struct ethoc *dev)
336{
337 u32 mode;
338
339 /* TODO: reset controller? */
340
341 ethoc_disable_rx_and_tx(dev);
342
343 /* TODO: setup registers */
344
345 /* enable FCS generation and automatic padding */
346 mode = ethoc_read(dev, MODER);
347 mode |= MODER_CRC | MODER_PAD;
348 ethoc_write(dev, MODER, mode);
349
350 /* set full-duplex mode */
351 mode = ethoc_read(dev, MODER);
352 mode |= MODER_FULLD;
353 ethoc_write(dev, MODER, mode);
354 ethoc_write(dev, IPGT, 0x15);
355
356 ethoc_ack_irq(dev, INT_MASK_ALL);
357 ethoc_enable_irq(dev, INT_MASK_ALL);
358 ethoc_enable_rx_and_tx(dev);
359 return 0;
360}
361
362static unsigned int ethoc_update_rx_stats(struct ethoc *dev,
363 struct ethoc_bd *bd)
364{
365 struct net_device *netdev = dev->netdev;
366 unsigned int ret = 0;
367
368 if (bd->stat & RX_BD_TL) {
369 dev_err(&netdev->dev, "RX: frame too long\n");
57616ee4 370 netdev->stats.rx_length_errors++;
a1702857
TR
371 ret++;
372 }
373
374 if (bd->stat & RX_BD_SF) {
375 dev_err(&netdev->dev, "RX: frame too short\n");
57616ee4 376 netdev->stats.rx_length_errors++;
a1702857
TR
377 ret++;
378 }
379
380 if (bd->stat & RX_BD_DN) {
381 dev_err(&netdev->dev, "RX: dribble nibble\n");
57616ee4 382 netdev->stats.rx_frame_errors++;
a1702857
TR
383 }
384
385 if (bd->stat & RX_BD_CRC) {
386 dev_err(&netdev->dev, "RX: wrong CRC\n");
57616ee4 387 netdev->stats.rx_crc_errors++;
a1702857
TR
388 ret++;
389 }
390
391 if (bd->stat & RX_BD_OR) {
392 dev_err(&netdev->dev, "RX: overrun\n");
57616ee4 393 netdev->stats.rx_over_errors++;
a1702857
TR
394 ret++;
395 }
396
397 if (bd->stat & RX_BD_MISS)
57616ee4 398 netdev->stats.rx_missed_errors++;
a1702857
TR
399
400 if (bd->stat & RX_BD_LC) {
401 dev_err(&netdev->dev, "RX: late collision\n");
57616ee4 402 netdev->stats.collisions++;
a1702857
TR
403 ret++;
404 }
405
406 return ret;
407}
408
409static int ethoc_rx(struct net_device *dev, int limit)
410{
411 struct ethoc *priv = netdev_priv(dev);
412 int count;
413
414 for (count = 0; count < limit; ++count) {
415 unsigned int entry;
416 struct ethoc_bd bd;
417
6a632625 418 entry = priv->num_tx + priv->cur_rx;
a1702857 419 ethoc_read_bd(priv, entry, &bd);
20f70ddd
JB
420 if (bd.stat & RX_BD_EMPTY) {
421 ethoc_ack_irq(priv, INT_MASK_RX);
422 /* If packet (interrupt) came in between checking
423 * BD_EMTPY and clearing the interrupt source, then we
424 * risk missing the packet as the RX interrupt won't
425 * trigger right away when we reenable it; hence, check
426 * BD_EMTPY here again to make sure there isn't such a
427 * packet waiting for us...
428 */
429 ethoc_read_bd(priv, entry, &bd);
430 if (bd.stat & RX_BD_EMPTY)
431 break;
432 }
a1702857
TR
433
434 if (ethoc_update_rx_stats(priv, &bd) == 0) {
435 int size = bd.stat >> 16;
89d71a66 436 struct sk_buff *skb;
050f91dc
TC
437
438 size -= 4; /* strip the CRC */
89d71a66 439 skb = netdev_alloc_skb_ip_align(dev, size);
050f91dc 440
a1702857 441 if (likely(skb)) {
f8555ad0 442 void *src = priv->vma[entry];
a1702857
TR
443 memcpy_fromio(skb_put(skb, size), src, size);
444 skb->protocol = eth_type_trans(skb, dev);
57616ee4
KV
445 dev->stats.rx_packets++;
446 dev->stats.rx_bytes += size;
a1702857
TR
447 netif_receive_skb(skb);
448 } else {
449 if (net_ratelimit())
450 dev_warn(&dev->dev, "low on memory - "
451 "packet dropped\n");
452
57616ee4 453 dev->stats.rx_dropped++;
a1702857
TR
454 break;
455 }
456 }
457
458 /* clear the buffer descriptor so it can be reused */
459 bd.stat &= ~RX_BD_STATS;
460 bd.stat |= RX_BD_EMPTY;
461 ethoc_write_bd(priv, entry, &bd);
6a632625
JB
462 if (++priv->cur_rx == priv->num_rx)
463 priv->cur_rx = 0;
a1702857
TR
464 }
465
466 return count;
467}
468
4f64bcb2 469static void ethoc_update_tx_stats(struct ethoc *dev, struct ethoc_bd *bd)
a1702857
TR
470{
471 struct net_device *netdev = dev->netdev;
472
473 if (bd->stat & TX_BD_LC) {
474 dev_err(&netdev->dev, "TX: late collision\n");
57616ee4 475 netdev->stats.tx_window_errors++;
a1702857
TR
476 }
477
478 if (bd->stat & TX_BD_RL) {
479 dev_err(&netdev->dev, "TX: retransmit limit\n");
57616ee4 480 netdev->stats.tx_aborted_errors++;
a1702857
TR
481 }
482
483 if (bd->stat & TX_BD_UR) {
484 dev_err(&netdev->dev, "TX: underrun\n");
57616ee4 485 netdev->stats.tx_fifo_errors++;
a1702857
TR
486 }
487
488 if (bd->stat & TX_BD_CS) {
489 dev_err(&netdev->dev, "TX: carrier sense lost\n");
57616ee4 490 netdev->stats.tx_carrier_errors++;
a1702857
TR
491 }
492
493 if (bd->stat & TX_BD_STATS)
57616ee4 494 netdev->stats.tx_errors++;
a1702857 495
57616ee4
KV
496 netdev->stats.collisions += (bd->stat >> 4) & 0xf;
497 netdev->stats.tx_bytes += bd->stat >> 16;
498 netdev->stats.tx_packets++;
a1702857
TR
499}
500
fa98eb0e 501static int ethoc_tx(struct net_device *dev, int limit)
a1702857
TR
502{
503 struct ethoc *priv = netdev_priv(dev);
fa98eb0e
JB
504 int count;
505 struct ethoc_bd bd;
a1702857 506
fa98eb0e
JB
507 for (count = 0; count < limit; ++count) {
508 unsigned int entry;
a1702857 509
6a632625 510 entry = priv->dty_tx & (priv->num_tx-1);
a1702857
TR
511
512 ethoc_read_bd(priv, entry, &bd);
a1702857 513
fa98eb0e
JB
514 if (bd.stat & TX_BD_READY || (priv->dty_tx == priv->cur_tx)) {
515 ethoc_ack_irq(priv, INT_MASK_TX);
516 /* If interrupt came in between reading in the BD
517 * and clearing the interrupt source, then we risk
518 * missing the event as the TX interrupt won't trigger
519 * right away when we reenable it; hence, check
520 * BD_EMPTY here again to make sure there isn't such an
521 * event pending...
522 */
523 ethoc_read_bd(priv, entry, &bd);
524 if (bd.stat & TX_BD_READY ||
525 (priv->dty_tx == priv->cur_tx))
526 break;
527 }
528
4f64bcb2 529 ethoc_update_tx_stats(priv, &bd);
fa98eb0e 530 priv->dty_tx++;
a1702857
TR
531 }
532
533 if ((priv->cur_tx - priv->dty_tx) <= (priv->num_tx / 2))
534 netif_wake_queue(dev);
535
fa98eb0e 536 return count;
a1702857
TR
537}
538
539static irqreturn_t ethoc_interrupt(int irq, void *dev_id)
540{
57616ee4 541 struct net_device *dev = dev_id;
a1702857
TR
542 struct ethoc *priv = netdev_priv(dev);
543 u32 pending;
fa98eb0e
JB
544 u32 mask;
545
546 /* Figure out what triggered the interrupt...
547 * The tricky bit here is that the interrupt source bits get
25985edc 548 * set in INT_SOURCE for an event regardless of whether that
fa98eb0e
JB
549 * event is masked or not. Thus, in order to figure out what
550 * triggered the interrupt, we need to remove the sources
551 * for all events that are currently masked. This behaviour
552 * is not particularly well documented but reasonable...
553 */
554 mask = ethoc_read(priv, INT_MASK);
a1702857 555 pending = ethoc_read(priv, INT_SOURCE);
fa98eb0e
JB
556 pending &= mask;
557
a1702857 558 if (unlikely(pending == 0)) {
a1702857
TR
559 return IRQ_NONE;
560 }
561
50c54a57 562 ethoc_ack_irq(priv, pending);
a1702857 563
fa98eb0e 564 /* We always handle the dropped packet interrupt */
a1702857
TR
565 if (pending & INT_MASK_BUSY) {
566 dev_err(&dev->dev, "packet dropped\n");
57616ee4 567 dev->stats.rx_dropped++;
a1702857
TR
568 }
569
fa98eb0e
JB
570 /* Handle receive/transmit event by switching to polling */
571 if (pending & (INT_MASK_TX | INT_MASK_RX)) {
572 ethoc_disable_irq(priv, INT_MASK_TX | INT_MASK_RX);
573 napi_schedule(&priv->napi);
a1702857
TR
574 }
575
a1702857
TR
576 return IRQ_HANDLED;
577}
578
579static int ethoc_get_mac_address(struct net_device *dev, void *addr)
580{
581 struct ethoc *priv = netdev_priv(dev);
582 u8 *mac = (u8 *)addr;
583 u32 reg;
584
585 reg = ethoc_read(priv, MAC_ADDR0);
586 mac[2] = (reg >> 24) & 0xff;
587 mac[3] = (reg >> 16) & 0xff;
588 mac[4] = (reg >> 8) & 0xff;
589 mac[5] = (reg >> 0) & 0xff;
590
591 reg = ethoc_read(priv, MAC_ADDR1);
592 mac[0] = (reg >> 8) & 0xff;
593 mac[1] = (reg >> 0) & 0xff;
594
595 return 0;
596}
597
598static int ethoc_poll(struct napi_struct *napi, int budget)
599{
600 struct ethoc *priv = container_of(napi, struct ethoc, napi);
fa98eb0e
JB
601 int rx_work_done = 0;
602 int tx_work_done = 0;
603
604 rx_work_done = ethoc_rx(priv->netdev, budget);
605 tx_work_done = ethoc_tx(priv->netdev, budget);
a1702857 606
fa98eb0e 607 if (rx_work_done < budget && tx_work_done < budget) {
a1702857 608 napi_complete(napi);
fa98eb0e 609 ethoc_enable_irq(priv, INT_MASK_TX | INT_MASK_RX);
a1702857
TR
610 }
611
fa98eb0e 612 return rx_work_done;
a1702857
TR
613}
614
615static int ethoc_mdio_read(struct mii_bus *bus, int phy, int reg)
616{
a1702857 617 struct ethoc *priv = bus->priv;
8dac428a 618 int i;
a1702857
TR
619
620 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
621 ethoc_write(priv, MIICOMMAND, MIICOMMAND_READ);
622
8dac428a 623 for (i=0; i < 5; i++) {
a1702857
TR
624 u32 status = ethoc_read(priv, MIISTATUS);
625 if (!(status & MIISTATUS_BUSY)) {
626 u32 data = ethoc_read(priv, MIIRX_DATA);
627 /* reset MII command register */
628 ethoc_write(priv, MIICOMMAND, 0);
629 return data;
630 }
8dac428a 631 usleep_range(100,200);
a1702857
TR
632 }
633
634 return -EBUSY;
635}
636
637static int ethoc_mdio_write(struct mii_bus *bus, int phy, int reg, u16 val)
638{
a1702857 639 struct ethoc *priv = bus->priv;
8dac428a 640 int i;
a1702857
TR
641
642 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
643 ethoc_write(priv, MIITX_DATA, val);
644 ethoc_write(priv, MIICOMMAND, MIICOMMAND_WRITE);
645
8dac428a 646 for (i=0; i < 5; i++) {
a1702857 647 u32 stat = ethoc_read(priv, MIISTATUS);
b46773db
JB
648 if (!(stat & MIISTATUS_BUSY)) {
649 /* reset MII command register */
650 ethoc_write(priv, MIICOMMAND, 0);
a1702857 651 return 0;
b46773db 652 }
8dac428a 653 usleep_range(100,200);
a1702857
TR
654 }
655
656 return -EBUSY;
657}
658
659static int ethoc_mdio_reset(struct mii_bus *bus)
660{
661 return 0;
662}
663
664static void ethoc_mdio_poll(struct net_device *dev)
665{
666}
667
a0a4efed 668static int ethoc_mdio_probe(struct net_device *dev)
a1702857
TR
669{
670 struct ethoc *priv = netdev_priv(dev);
671 struct phy_device *phy;
637f33b8 672 int err;
a1702857 673
637f33b8
JB
674 if (priv->phy_id != -1) {
675 phy = priv->mdio->phy_map[priv->phy_id];
676 } else {
677 phy = phy_find_first(priv->mdio);
a1702857
TR
678 }
679
680 if (!phy) {
681 dev_err(&dev->dev, "no PHY found\n");
682 return -ENXIO;
683 }
684
637f33b8 685 err = phy_connect_direct(dev, phy, ethoc_mdio_poll, 0,
a1702857 686 PHY_INTERFACE_MODE_GMII);
637f33b8 687 if (err) {
a1702857 688 dev_err(&dev->dev, "could not attach to PHY\n");
637f33b8 689 return err;
a1702857
TR
690 }
691
692 priv->phy = phy;
693 return 0;
694}
695
696static int ethoc_open(struct net_device *dev)
697{
698 struct ethoc *priv = netdev_priv(dev);
a1702857
TR
699 int ret;
700
701 ret = request_irq(dev->irq, ethoc_interrupt, IRQF_SHARED,
702 dev->name, dev);
703 if (ret)
704 return ret;
705
5cf3e034 706 ethoc_init_ring(priv, dev->mem_start);
a1702857
TR
707 ethoc_reset(priv);
708
709 if (netif_queue_stopped(dev)) {
710 dev_dbg(&dev->dev, " resuming queue\n");
711 netif_wake_queue(dev);
712 } else {
713 dev_dbg(&dev->dev, " starting queue\n");
714 netif_start_queue(dev);
715 }
716
717 phy_start(priv->phy);
718 napi_enable(&priv->napi);
719
720 if (netif_msg_ifup(priv)) {
721 dev_info(&dev->dev, "I/O: %08lx Memory: %08lx-%08lx\n",
722 dev->base_addr, dev->mem_start, dev->mem_end);
723 }
724
725 return 0;
726}
727
728static int ethoc_stop(struct net_device *dev)
729{
730 struct ethoc *priv = netdev_priv(dev);
731
732 napi_disable(&priv->napi);
733
734 if (priv->phy)
735 phy_stop(priv->phy);
736
737 ethoc_disable_rx_and_tx(priv);
738 free_irq(dev->irq, dev);
739
740 if (!netif_queue_stopped(dev))
741 netif_stop_queue(dev);
742
743 return 0;
744}
745
746static int ethoc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
747{
748 struct ethoc *priv = netdev_priv(dev);
749 struct mii_ioctl_data *mdio = if_mii(ifr);
750 struct phy_device *phy = NULL;
751
752 if (!netif_running(dev))
753 return -EINVAL;
754
755 if (cmd != SIOCGMIIPHY) {
756 if (mdio->phy_id >= PHY_MAX_ADDR)
757 return -ERANGE;
758
759 phy = priv->mdio->phy_map[mdio->phy_id];
760 if (!phy)
761 return -ENODEV;
762 } else {
763 phy = priv->phy;
764 }
765
28b04113 766 return phy_mii_ioctl(phy, ifr, cmd);
a1702857
TR
767}
768
769static int ethoc_config(struct net_device *dev, struct ifmap *map)
770{
771 return -ENOSYS;
772}
773
774static int ethoc_set_mac_address(struct net_device *dev, void *addr)
775{
776 struct ethoc *priv = netdev_priv(dev);
777 u8 *mac = (u8 *)addr;
778
939d2254
DK
779 if (!is_valid_ether_addr(mac))
780 return -EADDRNOTAVAIL;
781
a1702857
TR
782 ethoc_write(priv, MAC_ADDR0, (mac[2] << 24) | (mac[3] << 16) |
783 (mac[4] << 8) | (mac[5] << 0));
784 ethoc_write(priv, MAC_ADDR1, (mac[0] << 8) | (mac[1] << 0));
785
939d2254 786 memcpy(dev->dev_addr, mac, ETH_ALEN);
939d2254 787
a1702857
TR
788 return 0;
789}
790
791static void ethoc_set_multicast_list(struct net_device *dev)
792{
793 struct ethoc *priv = netdev_priv(dev);
794 u32 mode = ethoc_read(priv, MODER);
22bedad3 795 struct netdev_hw_addr *ha;
a1702857
TR
796 u32 hash[2] = { 0, 0 };
797
798 /* set loopback mode if requested */
799 if (dev->flags & IFF_LOOPBACK)
800 mode |= MODER_LOOP;
801 else
802 mode &= ~MODER_LOOP;
803
804 /* receive broadcast frames if requested */
805 if (dev->flags & IFF_BROADCAST)
806 mode &= ~MODER_BRO;
807 else
808 mode |= MODER_BRO;
809
810 /* enable promiscuous mode if requested */
811 if (dev->flags & IFF_PROMISC)
812 mode |= MODER_PRO;
813 else
814 mode &= ~MODER_PRO;
815
816 ethoc_write(priv, MODER, mode);
817
818 /* receive multicast frames */
819 if (dev->flags & IFF_ALLMULTI) {
820 hash[0] = 0xffffffff;
821 hash[1] = 0xffffffff;
822 } else {
22bedad3
JP
823 netdev_for_each_mc_addr(ha, dev) {
824 u32 crc = ether_crc(ETH_ALEN, ha->addr);
a1702857
TR
825 int bit = (crc >> 26) & 0x3f;
826 hash[bit >> 5] |= 1 << (bit & 0x1f);
827 }
828 }
829
830 ethoc_write(priv, ETH_HASH0, hash[0]);
831 ethoc_write(priv, ETH_HASH1, hash[1]);
832}
833
834static int ethoc_change_mtu(struct net_device *dev, int new_mtu)
835{
836 return -ENOSYS;
837}
838
839static void ethoc_tx_timeout(struct net_device *dev)
840{
841 struct ethoc *priv = netdev_priv(dev);
842 u32 pending = ethoc_read(priv, INT_SOURCE);
843 if (likely(pending))
844 ethoc_interrupt(dev->irq, dev);
845}
846
61357325 847static netdev_tx_t ethoc_start_xmit(struct sk_buff *skb, struct net_device *dev)
a1702857
TR
848{
849 struct ethoc *priv = netdev_priv(dev);
850 struct ethoc_bd bd;
851 unsigned int entry;
852 void *dest;
853
854 if (unlikely(skb->len > ETHOC_BUFSIZ)) {
57616ee4 855 dev->stats.tx_errors++;
3790c8cd 856 goto out;
a1702857
TR
857 }
858
859 entry = priv->cur_tx % priv->num_tx;
860 spin_lock_irq(&priv->lock);
861 priv->cur_tx++;
862
863 ethoc_read_bd(priv, entry, &bd);
864 if (unlikely(skb->len < ETHOC_ZLEN))
865 bd.stat |= TX_BD_PAD;
866 else
867 bd.stat &= ~TX_BD_PAD;
868
f8555ad0 869 dest = priv->vma[entry];
a1702857
TR
870 memcpy_toio(dest, skb->data, skb->len);
871
872 bd.stat &= ~(TX_BD_STATS | TX_BD_LEN_MASK);
873 bd.stat |= TX_BD_LEN(skb->len);
874 ethoc_write_bd(priv, entry, &bd);
875
876 bd.stat |= TX_BD_READY;
877 ethoc_write_bd(priv, entry, &bd);
878
879 if (priv->cur_tx == (priv->dty_tx + priv->num_tx)) {
880 dev_dbg(&dev->dev, "stopping queue\n");
881 netif_stop_queue(dev);
882 }
883
a1702857 884 spin_unlock_irq(&priv->lock);
68f51394 885 skb_tx_timestamp(skb);
3790c8cd
PM
886out:
887 dev_kfree_skb(skb);
a1702857
TR
888 return NETDEV_TX_OK;
889}
890
891static const struct net_device_ops ethoc_netdev_ops = {
892 .ndo_open = ethoc_open,
893 .ndo_stop = ethoc_stop,
894 .ndo_do_ioctl = ethoc_ioctl,
895 .ndo_set_config = ethoc_config,
896 .ndo_set_mac_address = ethoc_set_mac_address,
afc4b13d 897 .ndo_set_rx_mode = ethoc_set_multicast_list,
a1702857
TR
898 .ndo_change_mtu = ethoc_change_mtu,
899 .ndo_tx_timeout = ethoc_tx_timeout,
a1702857
TR
900 .ndo_start_xmit = ethoc_start_xmit,
901};
902
903/**
49ce9c2c 904 * ethoc_probe - initialize OpenCores ethernet MAC
a1702857
TR
905 * pdev: platform device
906 */
a0a4efed 907static int ethoc_probe(struct platform_device *pdev)
a1702857
TR
908{
909 struct net_device *netdev = NULL;
910 struct resource *res = NULL;
911 struct resource *mmio = NULL;
912 struct resource *mem = NULL;
913 struct ethoc *priv = NULL;
914 unsigned int phy;
c527f814 915 int num_bd;
a1702857 916 int ret = 0;
939d2254 917 bool random_mac = false;
a1702857
TR
918
919 /* allocate networking device */
920 netdev = alloc_etherdev(sizeof(struct ethoc));
921 if (!netdev) {
a1702857
TR
922 ret = -ENOMEM;
923 goto out;
924 }
925
926 SET_NETDEV_DEV(netdev, &pdev->dev);
927 platform_set_drvdata(pdev, netdev);
928
929 /* obtain I/O memory space */
930 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
931 if (!res) {
932 dev_err(&pdev->dev, "cannot obtain I/O memory space\n");
933 ret = -ENXIO;
934 goto free;
935 }
936
937 mmio = devm_request_mem_region(&pdev->dev, res->start,
d8645847 938 resource_size(res), res->name);
463889e2 939 if (!mmio) {
a1702857
TR
940 dev_err(&pdev->dev, "cannot request I/O memory space\n");
941 ret = -ENXIO;
942 goto free;
943 }
944
945 netdev->base_addr = mmio->start;
946
947 /* obtain buffer memory space */
948 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
0baa080c
TC
949 if (res) {
950 mem = devm_request_mem_region(&pdev->dev, res->start,
d8645847 951 resource_size(res), res->name);
0baa080c
TC
952 if (!mem) {
953 dev_err(&pdev->dev, "cannot request memory space\n");
954 ret = -ENXIO;
955 goto free;
956 }
957
958 netdev->mem_start = mem->start;
959 netdev->mem_end = mem->end;
a1702857
TR
960 }
961
a1702857
TR
962
963 /* obtain device IRQ number */
964 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
965 if (!res) {
966 dev_err(&pdev->dev, "cannot obtain IRQ\n");
967 ret = -ENXIO;
968 goto free;
969 }
970
971 netdev->irq = res->start;
972
973 /* setup driver-private data */
974 priv = netdev_priv(netdev);
975 priv->netdev = netdev;
0baa080c 976 priv->dma_alloc = 0;
28f65c11 977 priv->io_region_size = resource_size(mmio);
a1702857
TR
978
979 priv->iobase = devm_ioremap_nocache(&pdev->dev, netdev->base_addr,
d8645847 980 resource_size(mmio));
a1702857
TR
981 if (!priv->iobase) {
982 dev_err(&pdev->dev, "cannot remap I/O memory space\n");
983 ret = -ENXIO;
984 goto error;
985 }
986
0baa080c
TC
987 if (netdev->mem_end) {
988 priv->membase = devm_ioremap_nocache(&pdev->dev,
d8645847 989 netdev->mem_start, resource_size(mem));
0baa080c
TC
990 if (!priv->membase) {
991 dev_err(&pdev->dev, "cannot remap memory space\n");
992 ret = -ENXIO;
993 goto error;
994 }
995 } else {
996 /* Allocate buffer memory */
a71fba97 997 priv->membase = dmam_alloc_coherent(&pdev->dev,
0baa080c
TC
998 buffer_size, (void *)&netdev->mem_start,
999 GFP_KERNEL);
1000 if (!priv->membase) {
1001 dev_err(&pdev->dev, "cannot allocate %dB buffer\n",
1002 buffer_size);
1003 ret = -ENOMEM;
1004 goto error;
1005 }
1006 netdev->mem_end = netdev->mem_start + buffer_size;
1007 priv->dma_alloc = buffer_size;
a1702857
TR
1008 }
1009
c527f814
JB
1010 /* calculate the number of TX/RX buffers, maximum 128 supported */
1011 num_bd = min_t(unsigned int,
1012 128, (netdev->mem_end - netdev->mem_start + 1) / ETHOC_BUFSIZ);
6a632625
JB
1013 if (num_bd < 4) {
1014 ret = -ENODEV;
1015 goto error;
1016 }
1017 /* num_tx must be a power of two */
1018 priv->num_tx = rounddown_pow_of_two(num_bd >> 1);
c527f814
JB
1019 priv->num_rx = num_bd - priv->num_tx;
1020
6a632625
JB
1021 dev_dbg(&pdev->dev, "ethoc: num_tx: %d num_rx: %d\n",
1022 priv->num_tx, priv->num_rx);
1023
f8555ad0
JB
1024 priv->vma = devm_kzalloc(&pdev->dev, num_bd*sizeof(void*), GFP_KERNEL);
1025 if (!priv->vma) {
1026 ret = -ENOMEM;
1027 goto error;
1028 }
1029
a1702857
TR
1030 /* Allow the platform setup code to pass in a MAC address. */
1031 if (pdev->dev.platform_data) {
e0f4258b 1032 struct ethoc_platform_data *pdata = pdev->dev.platform_data;
a1702857
TR
1033 memcpy(netdev->dev_addr, pdata->hwaddr, IFHWADDRLEN);
1034 priv->phy_id = pdata->phy_id;
e0f4258b
JB
1035 } else {
1036 priv->phy_id = -1;
1037
1038#ifdef CONFIG_OF
1039 {
1040 const uint8_t* mac;
1041
1042 mac = of_get_property(pdev->dev.of_node,
1043 "local-mac-address",
1044 NULL);
1045 if (mac)
1046 memcpy(netdev->dev_addr, mac, IFHWADDRLEN);
1047 }
1048#endif
a1702857
TR
1049 }
1050
1051 /* Check that the given MAC address is valid. If it isn't, read the
1052 * current MAC from the controller. */
1053 if (!is_valid_ether_addr(netdev->dev_addr))
1054 ethoc_get_mac_address(netdev, netdev->dev_addr);
1055
1056 /* Check the MAC again for validity, if it still isn't choose and
1057 * program a random one. */
939d2254 1058 if (!is_valid_ether_addr(netdev->dev_addr)) {
7efd26d0 1059 eth_random_addr(netdev->dev_addr);
939d2254
DK
1060 random_mac = true;
1061 }
1062
1063 ret = ethoc_set_mac_address(netdev, netdev->dev_addr);
1064 if (ret) {
1065 dev_err(&netdev->dev, "failed to set MAC address\n");
1066 goto error;
1067 }
a1702857 1068
939d2254 1069 if (random_mac)
e41b2d7f 1070 netdev->addr_assign_type = NET_ADDR_RANDOM;
a1702857
TR
1071
1072 /* register MII bus */
1073 priv->mdio = mdiobus_alloc();
1074 if (!priv->mdio) {
1075 ret = -ENOMEM;
1076 goto free;
1077 }
1078
1079 priv->mdio->name = "ethoc-mdio";
1080 snprintf(priv->mdio->id, MII_BUS_ID_SIZE, "%s-%d",
1081 priv->mdio->name, pdev->id);
1082 priv->mdio->read = ethoc_mdio_read;
1083 priv->mdio->write = ethoc_mdio_write;
1084 priv->mdio->reset = ethoc_mdio_reset;
1085 priv->mdio->priv = priv;
1086
1087 priv->mdio->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1088 if (!priv->mdio->irq) {
1089 ret = -ENOMEM;
1090 goto free_mdio;
1091 }
1092
1093 for (phy = 0; phy < PHY_MAX_ADDR; phy++)
1094 priv->mdio->irq[phy] = PHY_POLL;
1095
1096 ret = mdiobus_register(priv->mdio);
1097 if (ret) {
1098 dev_err(&netdev->dev, "failed to register MDIO bus\n");
1099 goto free_mdio;
1100 }
1101
1102 ret = ethoc_mdio_probe(netdev);
1103 if (ret) {
1104 dev_err(&netdev->dev, "failed to probe MDIO bus\n");
1105 goto error;
1106 }
1107
1108 ether_setup(netdev);
1109
1110 /* setup the net_device structure */
1111 netdev->netdev_ops = &ethoc_netdev_ops;
1112 netdev->watchdog_timeo = ETHOC_TIMEOUT;
1113 netdev->features |= 0;
1114
1115 /* setup NAPI */
a1702857
TR
1116 netif_napi_add(netdev, &priv->napi, ethoc_poll, 64);
1117
a1702857
TR
1118 spin_lock_init(&priv->lock);
1119
1120 ret = register_netdev(netdev);
1121 if (ret < 0) {
1122 dev_err(&netdev->dev, "failed to register interface\n");
ee02a4ef 1123 goto error2;
a1702857
TR
1124 }
1125
1126 goto out;
1127
ee02a4ef
TC
1128error2:
1129 netif_napi_del(&priv->napi);
a1702857
TR
1130error:
1131 mdiobus_unregister(priv->mdio);
1132free_mdio:
1133 kfree(priv->mdio->irq);
1134 mdiobus_free(priv->mdio);
1135free:
1136 free_netdev(netdev);
1137out:
1138 return ret;
1139}
1140
1141/**
49ce9c2c 1142 * ethoc_remove - shutdown OpenCores ethernet MAC
a1702857
TR
1143 * @pdev: platform device
1144 */
a0a4efed 1145static int ethoc_remove(struct platform_device *pdev)
a1702857
TR
1146{
1147 struct net_device *netdev = platform_get_drvdata(pdev);
1148 struct ethoc *priv = netdev_priv(netdev);
1149
1150 platform_set_drvdata(pdev, NULL);
1151
1152 if (netdev) {
ee02a4ef 1153 netif_napi_del(&priv->napi);
a1702857
TR
1154 phy_disconnect(priv->phy);
1155 priv->phy = NULL;
1156
1157 if (priv->mdio) {
1158 mdiobus_unregister(priv->mdio);
1159 kfree(priv->mdio->irq);
1160 mdiobus_free(priv->mdio);
1161 }
a1702857
TR
1162 unregister_netdev(netdev);
1163 free_netdev(netdev);
1164 }
1165
1166 return 0;
1167}
1168
1169#ifdef CONFIG_PM
1170static int ethoc_suspend(struct platform_device *pdev, pm_message_t state)
1171{
1172 return -ENOSYS;
1173}
1174
1175static int ethoc_resume(struct platform_device *pdev)
1176{
1177 return -ENOSYS;
1178}
1179#else
1180# define ethoc_suspend NULL
1181# define ethoc_resume NULL
1182#endif
1183
e0f4258b 1184static struct of_device_id ethoc_match[] = {
c9e358df 1185 { .compatible = "opencores,ethoc", },
e0f4258b
JB
1186 {},
1187};
1188MODULE_DEVICE_TABLE(of, ethoc_match);
e0f4258b 1189
a1702857
TR
1190static struct platform_driver ethoc_driver = {
1191 .probe = ethoc_probe,
a0a4efed 1192 .remove = ethoc_remove,
a1702857
TR
1193 .suspend = ethoc_suspend,
1194 .resume = ethoc_resume,
1195 .driver = {
1196 .name = "ethoc",
e0f4258b 1197 .owner = THIS_MODULE,
e0f4258b 1198 .of_match_table = ethoc_match,
a1702857
TR
1199 },
1200};
1201
db62f684 1202module_platform_driver(ethoc_driver);
a1702857
TR
1203
1204MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de>");
1205MODULE_DESCRIPTION("OpenCores Ethernet MAC driver");
1206MODULE_LICENSE("GPL v2");
1207