blob: 5da32a71e8acfc6fa27f785a145e41c9dfaa9ff1 [file] [log] [blame]
Thierry Redinga1702852009-03-27 00:12:24 -07001/*
Paul Gortmaker3396c782012-01-27 13:36:01 +00002 * linux/drivers/net/ethernet/ethoc.c
Thierry Redinga1702852009-03-27 00:12:24 -07003 *
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
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000014#include <linux/dma-mapping.h>
Thierry Redinga1702852009-03-27 00:12:24 -070015#include <linux/etherdevice.h>
16#include <linux/crc32.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000017#include <linux/interrupt.h>
Thierry Redinga1702852009-03-27 00:12:24 -070018#include <linux/io.h>
19#include <linux/mii.h>
20#include <linux/phy.h>
21#include <linux/platform_device.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040022#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Jonas Bonne0f42582010-11-25 02:30:25 +000024#include <linux/of.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040025#include <linux/module.h>
Thierry Redinga1702852009-03-27 00:12:24 -070026#include <net/ethoc.h>
27
Thomas Chou0baa0802009-10-04 23:33:20 +000028static int buffer_size = 0x8000; /* 32 KBytes */
29module_param(buffer_size, int, 0);
30MODULE_PARM_DESC(buffer_size, "DMA buffer allocation size");
31
Thierry Redinga1702852009-03-27 00:12:24 -070032/* 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
Max Filippov11129092014-01-31 09:41:06 +040054#define ETH_END 0x54
Thierry Redinga1702852009-03-27 00:12:24 -070055
56/* mode register */
57#define MODER_RXEN (1 << 0) /* receive enable */
58#define MODER_TXEN (1 << 1) /* transmit enable */
59#define MODER_NOPRE (1 << 2) /* no preamble */
60#define MODER_BRO (1 << 3) /* broadcast address */
61#define MODER_IAM (1 << 4) /* individual address mode */
62#define MODER_PRO (1 << 5) /* promiscuous mode */
63#define MODER_IFG (1 << 6) /* interframe gap for incoming frames */
64#define MODER_LOOP (1 << 7) /* loopback */
65#define MODER_NBO (1 << 8) /* no back-off */
66#define MODER_EDE (1 << 9) /* excess defer enable */
67#define MODER_FULLD (1 << 10) /* full duplex */
68#define MODER_RESET (1 << 11) /* FIXME: reset (undocumented) */
69#define MODER_DCRC (1 << 12) /* delayed CRC enable */
70#define MODER_CRC (1 << 13) /* CRC enable */
71#define MODER_HUGE (1 << 14) /* huge packets enable */
72#define MODER_PAD (1 << 15) /* padding enabled */
73#define MODER_RSM (1 << 16) /* receive small packets */
74
75/* interrupt source and mask registers */
76#define INT_MASK_TXF (1 << 0) /* transmit frame */
77#define INT_MASK_TXE (1 << 1) /* transmit error */
78#define INT_MASK_RXF (1 << 2) /* receive frame */
79#define INT_MASK_RXE (1 << 3) /* receive error */
80#define INT_MASK_BUSY (1 << 4)
81#define INT_MASK_TXC (1 << 5) /* transmit control frame */
82#define INT_MASK_RXC (1 << 6) /* receive control frame */
83
84#define INT_MASK_TX (INT_MASK_TXF | INT_MASK_TXE)
85#define INT_MASK_RX (INT_MASK_RXF | INT_MASK_RXE)
86
87#define INT_MASK_ALL ( \
88 INT_MASK_TXF | INT_MASK_TXE | \
89 INT_MASK_RXF | INT_MASK_RXE | \
90 INT_MASK_TXC | INT_MASK_RXC | \
91 INT_MASK_BUSY \
92 )
93
94/* packet length register */
95#define PACKETLEN_MIN(min) (((min) & 0xffff) << 16)
96#define PACKETLEN_MAX(max) (((max) & 0xffff) << 0)
97#define PACKETLEN_MIN_MAX(min, max) (PACKETLEN_MIN(min) | \
98 PACKETLEN_MAX(max))
99
100/* transmit buffer number register */
101#define TX_BD_NUM_VAL(x) (((x) <= 0x80) ? (x) : 0x80)
102
103/* control module mode register */
104#define CTRLMODER_PASSALL (1 << 0) /* pass all receive frames */
105#define CTRLMODER_RXFLOW (1 << 1) /* receive control flow */
106#define CTRLMODER_TXFLOW (1 << 2) /* transmit control flow */
107
108/* MII mode register */
109#define MIIMODER_CLKDIV(x) ((x) & 0xfe) /* needs to be an even number */
110#define MIIMODER_NOPRE (1 << 8) /* no preamble */
111
112/* MII command register */
113#define MIICOMMAND_SCAN (1 << 0) /* scan status */
114#define MIICOMMAND_READ (1 << 1) /* read status */
115#define MIICOMMAND_WRITE (1 << 2) /* write control data */
116
117/* MII address register */
118#define MIIADDRESS_FIAD(x) (((x) & 0x1f) << 0)
119#define MIIADDRESS_RGAD(x) (((x) & 0x1f) << 8)
120#define MIIADDRESS_ADDR(phy, reg) (MIIADDRESS_FIAD(phy) | \
121 MIIADDRESS_RGAD(reg))
122
123/* MII transmit data register */
124#define MIITX_DATA_VAL(x) ((x) & 0xffff)
125
126/* MII receive data register */
127#define MIIRX_DATA_VAL(x) ((x) & 0xffff)
128
129/* MII status register */
130#define MIISTATUS_LINKFAIL (1 << 0)
131#define MIISTATUS_BUSY (1 << 1)
132#define MIISTATUS_INVALID (1 << 2)
133
134/* TX buffer descriptor */
135#define TX_BD_CS (1 << 0) /* carrier sense lost */
136#define TX_BD_DF (1 << 1) /* defer indication */
137#define TX_BD_LC (1 << 2) /* late collision */
138#define TX_BD_RL (1 << 3) /* retransmission limit */
139#define TX_BD_RETRY_MASK (0x00f0)
140#define TX_BD_RETRY(x) (((x) & 0x00f0) >> 4)
141#define TX_BD_UR (1 << 8) /* transmitter underrun */
142#define TX_BD_CRC (1 << 11) /* TX CRC enable */
143#define TX_BD_PAD (1 << 12) /* pad enable for short packets */
144#define TX_BD_WRAP (1 << 13)
145#define TX_BD_IRQ (1 << 14) /* interrupt request enable */
146#define TX_BD_READY (1 << 15) /* TX buffer ready */
147#define TX_BD_LEN(x) (((x) & 0xffff) << 16)
148#define TX_BD_LEN_MASK (0xffff << 16)
149
150#define TX_BD_STATS (TX_BD_CS | TX_BD_DF | TX_BD_LC | \
151 TX_BD_RL | TX_BD_RETRY_MASK | TX_BD_UR)
152
153/* RX buffer descriptor */
154#define RX_BD_LC (1 << 0) /* late collision */
155#define RX_BD_CRC (1 << 1) /* RX CRC error */
156#define RX_BD_SF (1 << 2) /* short frame */
157#define RX_BD_TL (1 << 3) /* too long */
158#define RX_BD_DN (1 << 4) /* dribble nibble */
159#define RX_BD_IS (1 << 5) /* invalid symbol */
160#define RX_BD_OR (1 << 6) /* receiver overrun */
161#define RX_BD_MISS (1 << 7)
162#define RX_BD_CF (1 << 8) /* control frame */
163#define RX_BD_WRAP (1 << 13)
164#define RX_BD_IRQ (1 << 14) /* interrupt request enable */
165#define RX_BD_EMPTY (1 << 15)
166#define RX_BD_LEN(x) (((x) & 0xffff) << 16)
167
168#define RX_BD_STATS (RX_BD_LC | RX_BD_CRC | RX_BD_SF | RX_BD_TL | \
169 RX_BD_DN | RX_BD_IS | RX_BD_OR | RX_BD_MISS)
170
171#define ETHOC_BUFSIZ 1536
172#define ETHOC_ZLEN 64
173#define ETHOC_BD_BASE 0x400
174#define ETHOC_TIMEOUT (HZ / 2)
175#define ETHOC_MII_TIMEOUT (1 + (HZ / 5))
176
177/**
178 * struct ethoc - driver-private device structure
179 * @iobase: pointer to I/O memory region
180 * @membase: pointer to buffer memory region
Thomas Chou0baa0802009-10-04 23:33:20 +0000181 * @dma_alloc: dma allocated buffer size
Thomas Chouee02a4e2010-05-23 16:44:02 +0000182 * @io_region_size: I/O memory region size
Thierry Redinga1702852009-03-27 00:12:24 -0700183 * @num_tx: number of send buffers
184 * @cur_tx: last send buffer written
185 * @dty_tx: last buffer actually sent
186 * @num_rx: number of receive buffers
187 * @cur_rx: current receive buffer
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000188 * @vma: pointer to array of virtual memory addresses for buffers
Thierry Redinga1702852009-03-27 00:12:24 -0700189 * @netdev: pointer to network device structure
190 * @napi: NAPI structure
Thierry Redinga1702852009-03-27 00:12:24 -0700191 * @msg_enable: device state flags
Thierry Redinga1702852009-03-27 00:12:24 -0700192 * @lock: device lock
193 * @phy: attached PHY
194 * @mdio: MDIO bus for PHY access
195 * @phy_id: address of attached PHY
196 */
197struct ethoc {
198 void __iomem *iobase;
199 void __iomem *membase;
Thomas Chou0baa0802009-10-04 23:33:20 +0000200 int dma_alloc;
Thomas Chouee02a4e2010-05-23 16:44:02 +0000201 resource_size_t io_region_size;
Thierry Redinga1702852009-03-27 00:12:24 -0700202
203 unsigned int num_tx;
204 unsigned int cur_tx;
205 unsigned int dty_tx;
206
207 unsigned int num_rx;
208 unsigned int cur_rx;
209
Barry Grussling72aa8e12013-01-27 18:44:36 +0000210 void **vma;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000211
Thierry Redinga1702852009-03-27 00:12:24 -0700212 struct net_device *netdev;
213 struct napi_struct napi;
Thierry Redinga1702852009-03-27 00:12:24 -0700214 u32 msg_enable;
215
Thierry Redinga1702852009-03-27 00:12:24 -0700216 spinlock_t lock;
217
218 struct phy_device *phy;
219 struct mii_bus *mdio;
220 s8 phy_id;
221};
222
223/**
224 * struct ethoc_bd - buffer descriptor
225 * @stat: buffer statistics
226 * @addr: physical memory address
227 */
228struct ethoc_bd {
229 u32 stat;
230 u32 addr;
231};
232
Thomas Chou16dd18b2009-10-07 14:16:42 +0000233static inline u32 ethoc_read(struct ethoc *dev, loff_t offset)
Thierry Redinga1702852009-03-27 00:12:24 -0700234{
235 return ioread32(dev->iobase + offset);
236}
237
Thomas Chou16dd18b2009-10-07 14:16:42 +0000238static inline void ethoc_write(struct ethoc *dev, loff_t offset, u32 data)
Thierry Redinga1702852009-03-27 00:12:24 -0700239{
240 iowrite32(data, dev->iobase + offset);
241}
242
Thomas Chou16dd18b2009-10-07 14:16:42 +0000243static inline void ethoc_read_bd(struct ethoc *dev, int index,
244 struct ethoc_bd *bd)
Thierry Redinga1702852009-03-27 00:12:24 -0700245{
246 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
247 bd->stat = ethoc_read(dev, offset + 0);
248 bd->addr = ethoc_read(dev, offset + 4);
249}
250
Thomas Chou16dd18b2009-10-07 14:16:42 +0000251static inline void ethoc_write_bd(struct ethoc *dev, int index,
Thierry Redinga1702852009-03-27 00:12:24 -0700252 const struct ethoc_bd *bd)
253{
254 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
255 ethoc_write(dev, offset + 0, bd->stat);
256 ethoc_write(dev, offset + 4, bd->addr);
257}
258
Thomas Chou16dd18b2009-10-07 14:16:42 +0000259static inline void ethoc_enable_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700260{
261 u32 imask = ethoc_read(dev, INT_MASK);
262 imask |= mask;
263 ethoc_write(dev, INT_MASK, imask);
264}
265
Thomas Chou16dd18b2009-10-07 14:16:42 +0000266static inline void ethoc_disable_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700267{
268 u32 imask = ethoc_read(dev, INT_MASK);
269 imask &= ~mask;
270 ethoc_write(dev, INT_MASK, imask);
271}
272
Thomas Chou16dd18b2009-10-07 14:16:42 +0000273static inline void ethoc_ack_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700274{
275 ethoc_write(dev, INT_SOURCE, mask);
276}
277
Thomas Chou16dd18b2009-10-07 14:16:42 +0000278static inline void ethoc_enable_rx_and_tx(struct ethoc *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700279{
280 u32 mode = ethoc_read(dev, MODER);
281 mode |= MODER_RXEN | MODER_TXEN;
282 ethoc_write(dev, MODER, mode);
283}
284
Thomas Chou16dd18b2009-10-07 14:16:42 +0000285static inline void ethoc_disable_rx_and_tx(struct ethoc *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700286{
287 u32 mode = ethoc_read(dev, MODER);
288 mode &= ~(MODER_RXEN | MODER_TXEN);
289 ethoc_write(dev, MODER, mode);
290}
291
David S. Miller5cf3e032010-07-07 18:23:19 -0700292static int ethoc_init_ring(struct ethoc *dev, unsigned long mem_start)
Thierry Redinga1702852009-03-27 00:12:24 -0700293{
294 struct ethoc_bd bd;
295 int i;
Barry Grussling72aa8e12013-01-27 18:44:36 +0000296 void *vma;
Thierry Redinga1702852009-03-27 00:12:24 -0700297
298 dev->cur_tx = 0;
299 dev->dty_tx = 0;
300 dev->cur_rx = 0;
301
Jonas Bonnee4f56b2010-06-11 02:47:36 +0000302 ethoc_write(dev, TX_BD_NUM, dev->num_tx);
303
Thierry Redinga1702852009-03-27 00:12:24 -0700304 /* setup transmission buffers */
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000305 bd.addr = mem_start;
Thierry Redinga1702852009-03-27 00:12:24 -0700306 bd.stat = TX_BD_IRQ | TX_BD_CRC;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000307 vma = dev->membase;
Thierry Redinga1702852009-03-27 00:12:24 -0700308
309 for (i = 0; i < dev->num_tx; i++) {
310 if (i == dev->num_tx - 1)
311 bd.stat |= TX_BD_WRAP;
312
313 ethoc_write_bd(dev, i, &bd);
314 bd.addr += ETHOC_BUFSIZ;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000315
316 dev->vma[i] = vma;
317 vma += ETHOC_BUFSIZ;
Thierry Redinga1702852009-03-27 00:12:24 -0700318 }
319
Thierry Redinga1702852009-03-27 00:12:24 -0700320 bd.stat = RX_BD_EMPTY | RX_BD_IRQ;
321
322 for (i = 0; i < dev->num_rx; i++) {
323 if (i == dev->num_rx - 1)
324 bd.stat |= RX_BD_WRAP;
325
326 ethoc_write_bd(dev, dev->num_tx + i, &bd);
327 bd.addr += ETHOC_BUFSIZ;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000328
329 dev->vma[dev->num_tx + i] = vma;
330 vma += ETHOC_BUFSIZ;
Thierry Redinga1702852009-03-27 00:12:24 -0700331 }
332
333 return 0;
334}
335
336static int ethoc_reset(struct ethoc *dev)
337{
338 u32 mode;
339
340 /* TODO: reset controller? */
341
342 ethoc_disable_rx_and_tx(dev);
343
344 /* TODO: setup registers */
345
346 /* enable FCS generation and automatic padding */
347 mode = ethoc_read(dev, MODER);
348 mode |= MODER_CRC | MODER_PAD;
349 ethoc_write(dev, MODER, mode);
350
351 /* set full-duplex mode */
352 mode = ethoc_read(dev, MODER);
353 mode |= MODER_FULLD;
354 ethoc_write(dev, MODER, mode);
355 ethoc_write(dev, IPGT, 0x15);
356
357 ethoc_ack_irq(dev, INT_MASK_ALL);
358 ethoc_enable_irq(dev, INT_MASK_ALL);
359 ethoc_enable_rx_and_tx(dev);
360 return 0;
361}
362
363static unsigned int ethoc_update_rx_stats(struct ethoc *dev,
364 struct ethoc_bd *bd)
365{
366 struct net_device *netdev = dev->netdev;
367 unsigned int ret = 0;
368
369 if (bd->stat & RX_BD_TL) {
370 dev_err(&netdev->dev, "RX: frame too long\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000371 netdev->stats.rx_length_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700372 ret++;
373 }
374
375 if (bd->stat & RX_BD_SF) {
376 dev_err(&netdev->dev, "RX: frame too short\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000377 netdev->stats.rx_length_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700378 ret++;
379 }
380
381 if (bd->stat & RX_BD_DN) {
382 dev_err(&netdev->dev, "RX: dribble nibble\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000383 netdev->stats.rx_frame_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700384 }
385
386 if (bd->stat & RX_BD_CRC) {
387 dev_err(&netdev->dev, "RX: wrong CRC\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000388 netdev->stats.rx_crc_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700389 ret++;
390 }
391
392 if (bd->stat & RX_BD_OR) {
393 dev_err(&netdev->dev, "RX: overrun\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000394 netdev->stats.rx_over_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700395 ret++;
396 }
397
398 if (bd->stat & RX_BD_MISS)
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000399 netdev->stats.rx_missed_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700400
401 if (bd->stat & RX_BD_LC) {
402 dev_err(&netdev->dev, "RX: late collision\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000403 netdev->stats.collisions++;
Thierry Redinga1702852009-03-27 00:12:24 -0700404 ret++;
405 }
406
407 return ret;
408}
409
410static int ethoc_rx(struct net_device *dev, int limit)
411{
412 struct ethoc *priv = netdev_priv(dev);
413 int count;
414
415 for (count = 0; count < limit; ++count) {
416 unsigned int entry;
417 struct ethoc_bd bd;
418
Jonas Bonn6a632622010-11-25 02:30:32 +0000419 entry = priv->num_tx + priv->cur_rx;
Thierry Redinga1702852009-03-27 00:12:24 -0700420 ethoc_read_bd(priv, entry, &bd);
Jonas Bonn20f70dd2010-11-25 02:30:28 +0000421 if (bd.stat & RX_BD_EMPTY) {
422 ethoc_ack_irq(priv, INT_MASK_RX);
423 /* If packet (interrupt) came in between checking
424 * BD_EMTPY and clearing the interrupt source, then we
425 * risk missing the packet as the RX interrupt won't
426 * trigger right away when we reenable it; hence, check
427 * BD_EMTPY here again to make sure there isn't such a
428 * packet waiting for us...
429 */
430 ethoc_read_bd(priv, entry, &bd);
431 if (bd.stat & RX_BD_EMPTY)
432 break;
433 }
Thierry Redinga1702852009-03-27 00:12:24 -0700434
435 if (ethoc_update_rx_stats(priv, &bd) == 0) {
436 int size = bd.stat >> 16;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000437 struct sk_buff *skb;
Thomas Chou050f91d2009-10-04 23:33:19 +0000438
439 size -= 4; /* strip the CRC */
Eric Dumazet89d71a62009-10-13 05:34:20 +0000440 skb = netdev_alloc_skb_ip_align(dev, size);
Thomas Chou050f91d2009-10-04 23:33:19 +0000441
Thierry Redinga1702852009-03-27 00:12:24 -0700442 if (likely(skb)) {
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000443 void *src = priv->vma[entry];
Thierry Redinga1702852009-03-27 00:12:24 -0700444 memcpy_fromio(skb_put(skb, size), src, size);
445 skb->protocol = eth_type_trans(skb, dev);
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000446 dev->stats.rx_packets++;
447 dev->stats.rx_bytes += size;
Thierry Redinga1702852009-03-27 00:12:24 -0700448 netif_receive_skb(skb);
449 } else {
450 if (net_ratelimit())
Barry Grussling72aa8e12013-01-27 18:44:36 +0000451 dev_warn(&dev->dev,
452 "low on memory - packet dropped\n");
Thierry Redinga1702852009-03-27 00:12:24 -0700453
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000454 dev->stats.rx_dropped++;
Thierry Redinga1702852009-03-27 00:12:24 -0700455 break;
456 }
457 }
458
459 /* clear the buffer descriptor so it can be reused */
460 bd.stat &= ~RX_BD_STATS;
461 bd.stat |= RX_BD_EMPTY;
462 ethoc_write_bd(priv, entry, &bd);
Jonas Bonn6a632622010-11-25 02:30:32 +0000463 if (++priv->cur_rx == priv->num_rx)
464 priv->cur_rx = 0;
Thierry Redinga1702852009-03-27 00:12:24 -0700465 }
466
467 return count;
468}
469
Jonas Bonn4f64bcb2010-11-25 02:30:31 +0000470static void ethoc_update_tx_stats(struct ethoc *dev, struct ethoc_bd *bd)
Thierry Redinga1702852009-03-27 00:12:24 -0700471{
472 struct net_device *netdev = dev->netdev;
473
474 if (bd->stat & TX_BD_LC) {
475 dev_err(&netdev->dev, "TX: late collision\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000476 netdev->stats.tx_window_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700477 }
478
479 if (bd->stat & TX_BD_RL) {
480 dev_err(&netdev->dev, "TX: retransmit limit\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000481 netdev->stats.tx_aborted_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700482 }
483
484 if (bd->stat & TX_BD_UR) {
485 dev_err(&netdev->dev, "TX: underrun\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000486 netdev->stats.tx_fifo_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700487 }
488
489 if (bd->stat & TX_BD_CS) {
490 dev_err(&netdev->dev, "TX: carrier sense lost\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000491 netdev->stats.tx_carrier_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700492 }
493
494 if (bd->stat & TX_BD_STATS)
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000495 netdev->stats.tx_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700496
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000497 netdev->stats.collisions += (bd->stat >> 4) & 0xf;
498 netdev->stats.tx_bytes += bd->stat >> 16;
499 netdev->stats.tx_packets++;
Thierry Redinga1702852009-03-27 00:12:24 -0700500}
501
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000502static int ethoc_tx(struct net_device *dev, int limit)
Thierry Redinga1702852009-03-27 00:12:24 -0700503{
504 struct ethoc *priv = netdev_priv(dev);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000505 int count;
506 struct ethoc_bd bd;
Thierry Redinga1702852009-03-27 00:12:24 -0700507
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000508 for (count = 0; count < limit; ++count) {
509 unsigned int entry;
Thierry Redinga1702852009-03-27 00:12:24 -0700510
Jonas Bonn6a632622010-11-25 02:30:32 +0000511 entry = priv->dty_tx & (priv->num_tx-1);
Thierry Redinga1702852009-03-27 00:12:24 -0700512
513 ethoc_read_bd(priv, entry, &bd);
Thierry Redinga1702852009-03-27 00:12:24 -0700514
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000515 if (bd.stat & TX_BD_READY || (priv->dty_tx == priv->cur_tx)) {
516 ethoc_ack_irq(priv, INT_MASK_TX);
517 /* If interrupt came in between reading in the BD
518 * and clearing the interrupt source, then we risk
519 * missing the event as the TX interrupt won't trigger
520 * right away when we reenable it; hence, check
521 * BD_EMPTY here again to make sure there isn't such an
522 * event pending...
523 */
524 ethoc_read_bd(priv, entry, &bd);
525 if (bd.stat & TX_BD_READY ||
526 (priv->dty_tx == priv->cur_tx))
527 break;
528 }
529
Jonas Bonn4f64bcb2010-11-25 02:30:31 +0000530 ethoc_update_tx_stats(priv, &bd);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000531 priv->dty_tx++;
Thierry Redinga1702852009-03-27 00:12:24 -0700532 }
533
534 if ((priv->cur_tx - priv->dty_tx) <= (priv->num_tx / 2))
535 netif_wake_queue(dev);
536
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000537 return count;
Thierry Redinga1702852009-03-27 00:12:24 -0700538}
539
540static irqreturn_t ethoc_interrupt(int irq, void *dev_id)
541{
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000542 struct net_device *dev = dev_id;
Thierry Redinga1702852009-03-27 00:12:24 -0700543 struct ethoc *priv = netdev_priv(dev);
544 u32 pending;
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000545 u32 mask;
Thierry Redinga1702852009-03-27 00:12:24 -0700546
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000547 /* Figure out what triggered the interrupt...
548 * The tricky bit here is that the interrupt source bits get
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300549 * set in INT_SOURCE for an event regardless of whether that
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000550 * event is masked or not. Thus, in order to figure out what
551 * triggered the interrupt, we need to remove the sources
552 * for all events that are currently masked. This behaviour
553 * is not particularly well documented but reasonable...
554 */
555 mask = ethoc_read(priv, INT_MASK);
Thierry Redinga1702852009-03-27 00:12:24 -0700556 pending = ethoc_read(priv, INT_SOURCE);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000557 pending &= mask;
558
Barry Grussling72aa8e12013-01-27 18:44:36 +0000559 if (unlikely(pending == 0))
Thierry Redinga1702852009-03-27 00:12:24 -0700560 return IRQ_NONE;
Thierry Redinga1702852009-03-27 00:12:24 -0700561
Thomas Chou50c54a52009-10-07 14:16:43 +0000562 ethoc_ack_irq(priv, pending);
Thierry Redinga1702852009-03-27 00:12:24 -0700563
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000564 /* We always handle the dropped packet interrupt */
Thierry Redinga1702852009-03-27 00:12:24 -0700565 if (pending & INT_MASK_BUSY) {
566 dev_err(&dev->dev, "packet dropped\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000567 dev->stats.rx_dropped++;
Thierry Redinga1702852009-03-27 00:12:24 -0700568 }
569
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000570 /* 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);
Thierry Redinga1702852009-03-27 00:12:24 -0700574 }
575
Thierry Redinga1702852009-03-27 00:12:24 -0700576 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);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000601 int rx_work_done = 0;
602 int tx_work_done = 0;
Thierry Redinga1702852009-03-27 00:12:24 -0700603
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000604 rx_work_done = ethoc_rx(priv->netdev, budget);
605 tx_work_done = ethoc_tx(priv->netdev, budget);
606
607 if (rx_work_done < budget && tx_work_done < budget) {
Thierry Redinga1702852009-03-27 00:12:24 -0700608 napi_complete(napi);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000609 ethoc_enable_irq(priv, INT_MASK_TX | INT_MASK_RX);
Thierry Redinga1702852009-03-27 00:12:24 -0700610 }
611
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000612 return rx_work_done;
Thierry Redinga1702852009-03-27 00:12:24 -0700613}
614
615static int ethoc_mdio_read(struct mii_bus *bus, int phy, int reg)
616{
Thierry Redinga1702852009-03-27 00:12:24 -0700617 struct ethoc *priv = bus->priv;
Jonas Bonn8dac4282010-11-25 02:30:30 +0000618 int i;
Thierry Redinga1702852009-03-27 00:12:24 -0700619
620 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
621 ethoc_write(priv, MIICOMMAND, MIICOMMAND_READ);
622
Barry Grussling72aa8e12013-01-27 18:44:36 +0000623 for (i = 0; i < 5; i++) {
Thierry Redinga1702852009-03-27 00:12:24 -0700624 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 }
Barry Grussling72aa8e12013-01-27 18:44:36 +0000631 usleep_range(100, 200);
Thierry Redinga1702852009-03-27 00:12:24 -0700632 }
633
634 return -EBUSY;
635}
636
637static int ethoc_mdio_write(struct mii_bus *bus, int phy, int reg, u16 val)
638{
Thierry Redinga1702852009-03-27 00:12:24 -0700639 struct ethoc *priv = bus->priv;
Jonas Bonn8dac4282010-11-25 02:30:30 +0000640 int i;
Thierry Redinga1702852009-03-27 00:12:24 -0700641
642 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
643 ethoc_write(priv, MIITX_DATA, val);
644 ethoc_write(priv, MIICOMMAND, MIICOMMAND_WRITE);
645
Barry Grussling72aa8e12013-01-27 18:44:36 +0000646 for (i = 0; i < 5; i++) {
Thierry Redinga1702852009-03-27 00:12:24 -0700647 u32 stat = ethoc_read(priv, MIISTATUS);
Jonas Bonnb46773d2010-06-11 02:47:39 +0000648 if (!(stat & MIISTATUS_BUSY)) {
649 /* reset MII command register */
650 ethoc_write(priv, MIICOMMAND, 0);
Thierry Redinga1702852009-03-27 00:12:24 -0700651 return 0;
Jonas Bonnb46773d2010-06-11 02:47:39 +0000652 }
Barry Grussling72aa8e12013-01-27 18:44:36 +0000653 usleep_range(100, 200);
Thierry Redinga1702852009-03-27 00:12:24 -0700654 }
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
Bill Pembertona0a4efe2012-12-03 09:24:09 -0500668static int ethoc_mdio_probe(struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700669{
670 struct ethoc *priv = netdev_priv(dev);
671 struct phy_device *phy;
Jonas Bonn637f33b82010-06-11 02:47:37 +0000672 int err;
Thierry Redinga1702852009-03-27 00:12:24 -0700673
Barry Grussling72aa8e12013-01-27 18:44:36 +0000674 if (priv->phy_id != -1)
Jonas Bonn637f33b82010-06-11 02:47:37 +0000675 phy = priv->mdio->phy_map[priv->phy_id];
Barry Grussling72aa8e12013-01-27 18:44:36 +0000676 else
Jonas Bonn637f33b82010-06-11 02:47:37 +0000677 phy = phy_find_first(priv->mdio);
Thierry Redinga1702852009-03-27 00:12:24 -0700678
679 if (!phy) {
680 dev_err(&dev->dev, "no PHY found\n");
681 return -ENXIO;
682 }
683
Florian Fainellif9a8f832013-01-14 00:52:52 +0000684 err = phy_connect_direct(dev, phy, ethoc_mdio_poll,
685 PHY_INTERFACE_MODE_GMII);
Jonas Bonn637f33b82010-06-11 02:47:37 +0000686 if (err) {
Thierry Redinga1702852009-03-27 00:12:24 -0700687 dev_err(&dev->dev, "could not attach to PHY\n");
Jonas Bonn637f33b82010-06-11 02:47:37 +0000688 return err;
Thierry Redinga1702852009-03-27 00:12:24 -0700689 }
690
691 priv->phy = phy;
692 return 0;
693}
694
695static int ethoc_open(struct net_device *dev)
696{
697 struct ethoc *priv = netdev_priv(dev);
Thierry Redinga1702852009-03-27 00:12:24 -0700698 int ret;
699
700 ret = request_irq(dev->irq, ethoc_interrupt, IRQF_SHARED,
701 dev->name, dev);
702 if (ret)
703 return ret;
704
David S. Miller5cf3e032010-07-07 18:23:19 -0700705 ethoc_init_ring(priv, dev->mem_start);
Thierry Redinga1702852009-03-27 00:12:24 -0700706 ethoc_reset(priv);
707
708 if (netif_queue_stopped(dev)) {
709 dev_dbg(&dev->dev, " resuming queue\n");
710 netif_wake_queue(dev);
711 } else {
712 dev_dbg(&dev->dev, " starting queue\n");
713 netif_start_queue(dev);
714 }
715
716 phy_start(priv->phy);
717 napi_enable(&priv->napi);
718
719 if (netif_msg_ifup(priv)) {
720 dev_info(&dev->dev, "I/O: %08lx Memory: %08lx-%08lx\n",
721 dev->base_addr, dev->mem_start, dev->mem_end);
722 }
723
724 return 0;
725}
726
727static int ethoc_stop(struct net_device *dev)
728{
729 struct ethoc *priv = netdev_priv(dev);
730
731 napi_disable(&priv->napi);
732
733 if (priv->phy)
734 phy_stop(priv->phy);
735
736 ethoc_disable_rx_and_tx(priv);
737 free_irq(dev->irq, dev);
738
739 if (!netif_queue_stopped(dev))
740 netif_stop_queue(dev);
741
742 return 0;
743}
744
745static int ethoc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
746{
747 struct ethoc *priv = netdev_priv(dev);
748 struct mii_ioctl_data *mdio = if_mii(ifr);
749 struct phy_device *phy = NULL;
750
751 if (!netif_running(dev))
752 return -EINVAL;
753
754 if (cmd != SIOCGMIIPHY) {
755 if (mdio->phy_id >= PHY_MAX_ADDR)
756 return -ERANGE;
757
758 phy = priv->mdio->phy_map[mdio->phy_id];
759 if (!phy)
760 return -ENODEV;
761 } else {
762 phy = priv->phy;
763 }
764
Richard Cochran28b04112010-07-17 08:48:55 +0000765 return phy_mii_ioctl(phy, ifr, cmd);
Thierry Redinga1702852009-03-27 00:12:24 -0700766}
767
768static int ethoc_config(struct net_device *dev, struct ifmap *map)
769{
770 return -ENOSYS;
771}
772
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000773static void ethoc_do_set_mac_address(struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700774{
775 struct ethoc *priv = netdev_priv(dev);
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000776 unsigned char *mac = dev->dev_addr;
Danny Kukawka939d2252012-02-17 05:43:29 +0000777
Thierry Redinga1702852009-03-27 00:12:24 -0700778 ethoc_write(priv, MAC_ADDR0, (mac[2] << 24) | (mac[3] << 16) |
779 (mac[4] << 8) | (mac[5] << 0));
780 ethoc_write(priv, MAC_ADDR1, (mac[0] << 8) | (mac[1] << 0));
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000781}
Thierry Redinga1702852009-03-27 00:12:24 -0700782
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000783static int ethoc_set_mac_address(struct net_device *dev, void *p)
784{
785 const struct sockaddr *addr = p;
Danny Kukawka939d2252012-02-17 05:43:29 +0000786
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000787 if (!is_valid_ether_addr(addr->sa_data))
788 return -EADDRNOTAVAIL;
789 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
790 ethoc_do_set_mac_address(dev);
Thierry Redinga1702852009-03-27 00:12:24 -0700791 return 0;
792}
793
794static void ethoc_set_multicast_list(struct net_device *dev)
795{
796 struct ethoc *priv = netdev_priv(dev);
797 u32 mode = ethoc_read(priv, MODER);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000798 struct netdev_hw_addr *ha;
Thierry Redinga1702852009-03-27 00:12:24 -0700799 u32 hash[2] = { 0, 0 };
800
801 /* set loopback mode if requested */
802 if (dev->flags & IFF_LOOPBACK)
803 mode |= MODER_LOOP;
804 else
805 mode &= ~MODER_LOOP;
806
807 /* receive broadcast frames if requested */
808 if (dev->flags & IFF_BROADCAST)
809 mode &= ~MODER_BRO;
810 else
811 mode |= MODER_BRO;
812
813 /* enable promiscuous mode if requested */
814 if (dev->flags & IFF_PROMISC)
815 mode |= MODER_PRO;
816 else
817 mode &= ~MODER_PRO;
818
819 ethoc_write(priv, MODER, mode);
820
821 /* receive multicast frames */
822 if (dev->flags & IFF_ALLMULTI) {
823 hash[0] = 0xffffffff;
824 hash[1] = 0xffffffff;
825 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000826 netdev_for_each_mc_addr(ha, dev) {
827 u32 crc = ether_crc(ETH_ALEN, ha->addr);
Thierry Redinga1702852009-03-27 00:12:24 -0700828 int bit = (crc >> 26) & 0x3f;
829 hash[bit >> 5] |= 1 << (bit & 0x1f);
830 }
831 }
832
833 ethoc_write(priv, ETH_HASH0, hash[0]);
834 ethoc_write(priv, ETH_HASH1, hash[1]);
835}
836
837static int ethoc_change_mtu(struct net_device *dev, int new_mtu)
838{
839 return -ENOSYS;
840}
841
842static void ethoc_tx_timeout(struct net_device *dev)
843{
844 struct ethoc *priv = netdev_priv(dev);
845 u32 pending = ethoc_read(priv, INT_SOURCE);
846 if (likely(pending))
847 ethoc_interrupt(dev->irq, dev);
848}
849
Stephen Hemminger613573252009-08-31 19:50:58 +0000850static netdev_tx_t ethoc_start_xmit(struct sk_buff *skb, struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700851{
852 struct ethoc *priv = netdev_priv(dev);
853 struct ethoc_bd bd;
854 unsigned int entry;
855 void *dest;
856
857 if (unlikely(skb->len > ETHOC_BUFSIZ)) {
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000858 dev->stats.tx_errors++;
Patrick McHardy3790c8c2009-06-12 03:00:35 +0000859 goto out;
Thierry Redinga1702852009-03-27 00:12:24 -0700860 }
861
862 entry = priv->cur_tx % priv->num_tx;
863 spin_lock_irq(&priv->lock);
864 priv->cur_tx++;
865
866 ethoc_read_bd(priv, entry, &bd);
867 if (unlikely(skb->len < ETHOC_ZLEN))
868 bd.stat |= TX_BD_PAD;
869 else
870 bd.stat &= ~TX_BD_PAD;
871
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000872 dest = priv->vma[entry];
Thierry Redinga1702852009-03-27 00:12:24 -0700873 memcpy_toio(dest, skb->data, skb->len);
874
875 bd.stat &= ~(TX_BD_STATS | TX_BD_LEN_MASK);
876 bd.stat |= TX_BD_LEN(skb->len);
877 ethoc_write_bd(priv, entry, &bd);
878
879 bd.stat |= TX_BD_READY;
880 ethoc_write_bd(priv, entry, &bd);
881
882 if (priv->cur_tx == (priv->dty_tx + priv->num_tx)) {
883 dev_dbg(&dev->dev, "stopping queue\n");
884 netif_stop_queue(dev);
885 }
886
Thierry Redinga1702852009-03-27 00:12:24 -0700887 spin_unlock_irq(&priv->lock);
Richard Cochran68f51392011-06-12 02:19:04 +0000888 skb_tx_timestamp(skb);
Patrick McHardy3790c8c2009-06-12 03:00:35 +0000889out:
890 dev_kfree_skb(skb);
Thierry Redinga1702852009-03-27 00:12:24 -0700891 return NETDEV_TX_OK;
892}
893
Max Filippov01cd7d52014-01-31 09:41:05 +0400894static int ethoc_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
895{
896 struct ethoc *priv = netdev_priv(dev);
897 struct phy_device *phydev = priv->phy;
898
899 if (!phydev)
900 return -EOPNOTSUPP;
901
902 return phy_ethtool_gset(phydev, cmd);
903}
904
905static int ethoc_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
906{
907 struct ethoc *priv = netdev_priv(dev);
908 struct phy_device *phydev = priv->phy;
909
910 if (!phydev)
911 return -EOPNOTSUPP;
912
913 return phy_ethtool_sset(phydev, cmd);
914}
915
Max Filippov11129092014-01-31 09:41:06 +0400916static int ethoc_get_regs_len(struct net_device *netdev)
917{
918 return ETH_END;
919}
920
921static void ethoc_get_regs(struct net_device *dev, struct ethtool_regs *regs,
922 void *p)
923{
924 struct ethoc *priv = netdev_priv(dev);
925 u32 *regs_buff = p;
926 unsigned i;
927
928 regs->version = 0;
929 for (i = 0; i < ETH_END / sizeof(u32); ++i)
930 regs_buff[i] = ethoc_read(priv, i * sizeof(u32));
931}
932
Max Filippovfba91102014-01-31 09:41:04 +0400933const struct ethtool_ops ethoc_ethtool_ops = {
Max Filippov01cd7d52014-01-31 09:41:05 +0400934 .get_settings = ethoc_get_settings,
935 .set_settings = ethoc_set_settings,
Max Filippov11129092014-01-31 09:41:06 +0400936 .get_regs_len = ethoc_get_regs_len,
937 .get_regs = ethoc_get_regs,
Max Filippovfba91102014-01-31 09:41:04 +0400938 .get_link = ethtool_op_get_link,
939 .get_ts_info = ethtool_op_get_ts_info,
940};
941
Thierry Redinga1702852009-03-27 00:12:24 -0700942static const struct net_device_ops ethoc_netdev_ops = {
943 .ndo_open = ethoc_open,
944 .ndo_stop = ethoc_stop,
945 .ndo_do_ioctl = ethoc_ioctl,
946 .ndo_set_config = ethoc_config,
947 .ndo_set_mac_address = ethoc_set_mac_address,
Jiri Pirkoafc4b132011-08-16 06:29:01 +0000948 .ndo_set_rx_mode = ethoc_set_multicast_list,
Thierry Redinga1702852009-03-27 00:12:24 -0700949 .ndo_change_mtu = ethoc_change_mtu,
950 .ndo_tx_timeout = ethoc_tx_timeout,
Thierry Redinga1702852009-03-27 00:12:24 -0700951 .ndo_start_xmit = ethoc_start_xmit,
952};
953
954/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000955 * ethoc_probe - initialize OpenCores ethernet MAC
Thierry Redinga1702852009-03-27 00:12:24 -0700956 * pdev: platform device
957 */
Bill Pembertona0a4efe2012-12-03 09:24:09 -0500958static int ethoc_probe(struct platform_device *pdev)
Thierry Redinga1702852009-03-27 00:12:24 -0700959{
960 struct net_device *netdev = NULL;
961 struct resource *res = NULL;
962 struct resource *mmio = NULL;
963 struct resource *mem = NULL;
964 struct ethoc *priv = NULL;
965 unsigned int phy;
Jonas Bonnc527f812010-06-11 02:47:34 +0000966 int num_bd;
Thierry Redinga1702852009-03-27 00:12:24 -0700967 int ret = 0;
Danny Kukawka939d2252012-02-17 05:43:29 +0000968 bool random_mac = false;
Thierry Redinga1702852009-03-27 00:12:24 -0700969
970 /* allocate networking device */
971 netdev = alloc_etherdev(sizeof(struct ethoc));
972 if (!netdev) {
Thierry Redinga1702852009-03-27 00:12:24 -0700973 ret = -ENOMEM;
974 goto out;
975 }
976
977 SET_NETDEV_DEV(netdev, &pdev->dev);
978 platform_set_drvdata(pdev, netdev);
979
980 /* obtain I/O memory space */
981 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
982 if (!res) {
983 dev_err(&pdev->dev, "cannot obtain I/O memory space\n");
984 ret = -ENXIO;
985 goto free;
986 }
987
988 mmio = devm_request_mem_region(&pdev->dev, res->start,
Tobias Klauserd8645842010-01-15 01:48:22 -0800989 resource_size(res), res->name);
Julia Lawall463889e2009-07-27 06:13:30 +0000990 if (!mmio) {
Thierry Redinga1702852009-03-27 00:12:24 -0700991 dev_err(&pdev->dev, "cannot request I/O memory space\n");
992 ret = -ENXIO;
993 goto free;
994 }
995
996 netdev->base_addr = mmio->start;
997
998 /* obtain buffer memory space */
999 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Thomas Chou0baa0802009-10-04 23:33:20 +00001000 if (res) {
1001 mem = devm_request_mem_region(&pdev->dev, res->start,
Tobias Klauserd8645842010-01-15 01:48:22 -08001002 resource_size(res), res->name);
Thomas Chou0baa0802009-10-04 23:33:20 +00001003 if (!mem) {
1004 dev_err(&pdev->dev, "cannot request memory space\n");
1005 ret = -ENXIO;
1006 goto free;
1007 }
1008
1009 netdev->mem_start = mem->start;
1010 netdev->mem_end = mem->end;
Thierry Redinga1702852009-03-27 00:12:24 -07001011 }
1012
Thierry Redinga1702852009-03-27 00:12:24 -07001013
1014 /* obtain device IRQ number */
1015 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1016 if (!res) {
1017 dev_err(&pdev->dev, "cannot obtain IRQ\n");
1018 ret = -ENXIO;
1019 goto free;
1020 }
1021
1022 netdev->irq = res->start;
1023
1024 /* setup driver-private data */
1025 priv = netdev_priv(netdev);
1026 priv->netdev = netdev;
Thomas Chou0baa0802009-10-04 23:33:20 +00001027 priv->dma_alloc = 0;
Joe Perches28f65c112011-06-09 09:13:32 -07001028 priv->io_region_size = resource_size(mmio);
Thierry Redinga1702852009-03-27 00:12:24 -07001029
1030 priv->iobase = devm_ioremap_nocache(&pdev->dev, netdev->base_addr,
Tobias Klauserd8645842010-01-15 01:48:22 -08001031 resource_size(mmio));
Thierry Redinga1702852009-03-27 00:12:24 -07001032 if (!priv->iobase) {
1033 dev_err(&pdev->dev, "cannot remap I/O memory space\n");
1034 ret = -ENXIO;
1035 goto error;
1036 }
1037
Thomas Chou0baa0802009-10-04 23:33:20 +00001038 if (netdev->mem_end) {
1039 priv->membase = devm_ioremap_nocache(&pdev->dev,
Tobias Klauserd8645842010-01-15 01:48:22 -08001040 netdev->mem_start, resource_size(mem));
Thomas Chou0baa0802009-10-04 23:33:20 +00001041 if (!priv->membase) {
1042 dev_err(&pdev->dev, "cannot remap memory space\n");
1043 ret = -ENXIO;
1044 goto error;
1045 }
1046 } else {
1047 /* Allocate buffer memory */
Jonas Bonna71fba92010-06-11 02:47:40 +00001048 priv->membase = dmam_alloc_coherent(&pdev->dev,
Thomas Chou0baa0802009-10-04 23:33:20 +00001049 buffer_size, (void *)&netdev->mem_start,
1050 GFP_KERNEL);
1051 if (!priv->membase) {
1052 dev_err(&pdev->dev, "cannot allocate %dB buffer\n",
1053 buffer_size);
1054 ret = -ENOMEM;
1055 goto error;
1056 }
1057 netdev->mem_end = netdev->mem_start + buffer_size;
1058 priv->dma_alloc = buffer_size;
Thierry Redinga1702852009-03-27 00:12:24 -07001059 }
1060
Jonas Bonnc527f812010-06-11 02:47:34 +00001061 /* calculate the number of TX/RX buffers, maximum 128 supported */
1062 num_bd = min_t(unsigned int,
1063 128, (netdev->mem_end - netdev->mem_start + 1) / ETHOC_BUFSIZ);
Jonas Bonn6a632622010-11-25 02:30:32 +00001064 if (num_bd < 4) {
1065 ret = -ENODEV;
1066 goto error;
1067 }
1068 /* num_tx must be a power of two */
1069 priv->num_tx = rounddown_pow_of_two(num_bd >> 1);
Jonas Bonnc527f812010-06-11 02:47:34 +00001070 priv->num_rx = num_bd - priv->num_tx;
1071
Jonas Bonn6a632622010-11-25 02:30:32 +00001072 dev_dbg(&pdev->dev, "ethoc: num_tx: %d num_rx: %d\n",
1073 priv->num_tx, priv->num_rx);
1074
Barry Grussling72aa8e12013-01-27 18:44:36 +00001075 priv->vma = devm_kzalloc(&pdev->dev, num_bd*sizeof(void *), GFP_KERNEL);
Jonas Bonnf8555ad02010-06-11 02:47:35 +00001076 if (!priv->vma) {
1077 ret = -ENOMEM;
1078 goto error;
1079 }
1080
Thierry Redinga1702852009-03-27 00:12:24 -07001081 /* Allow the platform setup code to pass in a MAC address. */
Jingoo Han420fcd82013-08-30 13:55:46 +09001082 if (dev_get_platdata(&pdev->dev)) {
1083 struct ethoc_platform_data *pdata = dev_get_platdata(&pdev->dev);
Thierry Redinga1702852009-03-27 00:12:24 -07001084 memcpy(netdev->dev_addr, pdata->hwaddr, IFHWADDRLEN);
1085 priv->phy_id = pdata->phy_id;
Jonas Bonne0f42582010-11-25 02:30:25 +00001086 } else {
1087 priv->phy_id = -1;
1088
1089#ifdef CONFIG_OF
1090 {
Barry Grussling72aa8e12013-01-27 18:44:36 +00001091 const uint8_t *mac;
Jonas Bonne0f42582010-11-25 02:30:25 +00001092
1093 mac = of_get_property(pdev->dev.of_node,
1094 "local-mac-address",
1095 NULL);
1096 if (mac)
1097 memcpy(netdev->dev_addr, mac, IFHWADDRLEN);
1098 }
1099#endif
Thierry Redinga1702852009-03-27 00:12:24 -07001100 }
1101
1102 /* Check that the given MAC address is valid. If it isn't, read the
Barry Grussling72aa8e12013-01-27 18:44:36 +00001103 * current MAC from the controller.
1104 */
Thierry Redinga1702852009-03-27 00:12:24 -07001105 if (!is_valid_ether_addr(netdev->dev_addr))
1106 ethoc_get_mac_address(netdev, netdev->dev_addr);
1107
1108 /* Check the MAC again for validity, if it still isn't choose and
Barry Grussling72aa8e12013-01-27 18:44:36 +00001109 * program a random one.
1110 */
Danny Kukawka939d2252012-02-17 05:43:29 +00001111 if (!is_valid_ether_addr(netdev->dev_addr)) {
Joe Perches7efd26d2012-07-12 19:33:06 +00001112 eth_random_addr(netdev->dev_addr);
Danny Kukawka939d2252012-02-17 05:43:29 +00001113 random_mac = true;
1114 }
Thierry Redinga1702852009-03-27 00:12:24 -07001115
Jiri Pirkoefc61a32013-01-06 03:25:45 +00001116 ethoc_do_set_mac_address(netdev);
Danny Kukawka939d2252012-02-17 05:43:29 +00001117
1118 if (random_mac)
Jiri Pirkoe41b2d72013-01-01 03:30:15 +00001119 netdev->addr_assign_type = NET_ADDR_RANDOM;
Thierry Redinga1702852009-03-27 00:12:24 -07001120
1121 /* register MII bus */
1122 priv->mdio = mdiobus_alloc();
1123 if (!priv->mdio) {
1124 ret = -ENOMEM;
1125 goto free;
1126 }
1127
1128 priv->mdio->name = "ethoc-mdio";
1129 snprintf(priv->mdio->id, MII_BUS_ID_SIZE, "%s-%d",
1130 priv->mdio->name, pdev->id);
1131 priv->mdio->read = ethoc_mdio_read;
1132 priv->mdio->write = ethoc_mdio_write;
1133 priv->mdio->reset = ethoc_mdio_reset;
1134 priv->mdio->priv = priv;
1135
1136 priv->mdio->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
1137 if (!priv->mdio->irq) {
1138 ret = -ENOMEM;
1139 goto free_mdio;
1140 }
1141
1142 for (phy = 0; phy < PHY_MAX_ADDR; phy++)
1143 priv->mdio->irq[phy] = PHY_POLL;
1144
1145 ret = mdiobus_register(priv->mdio);
1146 if (ret) {
1147 dev_err(&netdev->dev, "failed to register MDIO bus\n");
1148 goto free_mdio;
1149 }
1150
1151 ret = ethoc_mdio_probe(netdev);
1152 if (ret) {
1153 dev_err(&netdev->dev, "failed to probe MDIO bus\n");
1154 goto error;
1155 }
1156
1157 ether_setup(netdev);
1158
1159 /* setup the net_device structure */
1160 netdev->netdev_ops = &ethoc_netdev_ops;
1161 netdev->watchdog_timeo = ETHOC_TIMEOUT;
1162 netdev->features |= 0;
Max Filippovfba91102014-01-31 09:41:04 +04001163 netdev->ethtool_ops = &ethoc_ethtool_ops;
Thierry Redinga1702852009-03-27 00:12:24 -07001164
1165 /* setup NAPI */
Thierry Redinga1702852009-03-27 00:12:24 -07001166 netif_napi_add(netdev, &priv->napi, ethoc_poll, 64);
1167
Thierry Redinga1702852009-03-27 00:12:24 -07001168 spin_lock_init(&priv->lock);
1169
1170 ret = register_netdev(netdev);
1171 if (ret < 0) {
1172 dev_err(&netdev->dev, "failed to register interface\n");
Thomas Chouee02a4e2010-05-23 16:44:02 +00001173 goto error2;
Thierry Redinga1702852009-03-27 00:12:24 -07001174 }
1175
1176 goto out;
1177
Thomas Chouee02a4e2010-05-23 16:44:02 +00001178error2:
1179 netif_napi_del(&priv->napi);
Thierry Redinga1702852009-03-27 00:12:24 -07001180error:
1181 mdiobus_unregister(priv->mdio);
1182free_mdio:
1183 kfree(priv->mdio->irq);
1184 mdiobus_free(priv->mdio);
1185free:
1186 free_netdev(netdev);
1187out:
1188 return ret;
1189}
1190
1191/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001192 * ethoc_remove - shutdown OpenCores ethernet MAC
Thierry Redinga1702852009-03-27 00:12:24 -07001193 * @pdev: platform device
1194 */
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001195static int ethoc_remove(struct platform_device *pdev)
Thierry Redinga1702852009-03-27 00:12:24 -07001196{
1197 struct net_device *netdev = platform_get_drvdata(pdev);
1198 struct ethoc *priv = netdev_priv(netdev);
1199
Thierry Redinga1702852009-03-27 00:12:24 -07001200 if (netdev) {
Thomas Chouee02a4e2010-05-23 16:44:02 +00001201 netif_napi_del(&priv->napi);
Thierry Redinga1702852009-03-27 00:12:24 -07001202 phy_disconnect(priv->phy);
1203 priv->phy = NULL;
1204
1205 if (priv->mdio) {
1206 mdiobus_unregister(priv->mdio);
1207 kfree(priv->mdio->irq);
1208 mdiobus_free(priv->mdio);
1209 }
Thierry Redinga1702852009-03-27 00:12:24 -07001210 unregister_netdev(netdev);
1211 free_netdev(netdev);
1212 }
1213
1214 return 0;
1215}
1216
1217#ifdef CONFIG_PM
1218static int ethoc_suspend(struct platform_device *pdev, pm_message_t state)
1219{
1220 return -ENOSYS;
1221}
1222
1223static int ethoc_resume(struct platform_device *pdev)
1224{
1225 return -ENOSYS;
1226}
1227#else
1228# define ethoc_suspend NULL
1229# define ethoc_resume NULL
1230#endif
1231
Jonas Bonne0f42582010-11-25 02:30:25 +00001232static struct of_device_id ethoc_match[] = {
Grant Likelyc9e358d2011-01-21 09:24:48 -07001233 { .compatible = "opencores,ethoc", },
Jonas Bonne0f42582010-11-25 02:30:25 +00001234 {},
1235};
1236MODULE_DEVICE_TABLE(of, ethoc_match);
Jonas Bonne0f42582010-11-25 02:30:25 +00001237
Thierry Redinga1702852009-03-27 00:12:24 -07001238static struct platform_driver ethoc_driver = {
1239 .probe = ethoc_probe,
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001240 .remove = ethoc_remove,
Thierry Redinga1702852009-03-27 00:12:24 -07001241 .suspend = ethoc_suspend,
1242 .resume = ethoc_resume,
1243 .driver = {
1244 .name = "ethoc",
Jonas Bonne0f42582010-11-25 02:30:25 +00001245 .owner = THIS_MODULE,
Jonas Bonne0f42582010-11-25 02:30:25 +00001246 .of_match_table = ethoc_match,
Thierry Redinga1702852009-03-27 00:12:24 -07001247 },
1248};
1249
Axel Lindb62f682011-11-27 16:44:17 +00001250module_platform_driver(ethoc_driver);
Thierry Redinga1702852009-03-27 00:12:24 -07001251
1252MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de>");
1253MODULE_DESCRIPTION("OpenCores Ethernet MAC driver");
1254MODULE_LICENSE("GPL v2");
1255