blob: 877c02a36c85a5ebae5b17af848d69335e35fa5a [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>
Max Filippova13aff02014-02-04 03:33:10 +040016#include <linux/clk.h>
Thierry Redinga1702852009-03-27 00:12:24 -070017#include <linux/crc32.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000018#include <linux/interrupt.h>
Thierry Redinga1702852009-03-27 00:12:24 -070019#include <linux/io.h>
20#include <linux/mii.h>
21#include <linux/phy.h>
22#include <linux/platform_device.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040023#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Jonas Bonne0f42582010-11-25 02:30:25 +000025#include <linux/of.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040026#include <linux/module.h>
Thierry Redinga1702852009-03-27 00:12:24 -070027#include <net/ethoc.h>
28
Thomas Chou0baa0802009-10-04 23:33:20 +000029static int buffer_size = 0x8000; /* 32 KBytes */
30module_param(buffer_size, int, 0);
31MODULE_PARM_DESC(buffer_size, "DMA buffer allocation size");
32
Thierry Redinga1702852009-03-27 00:12:24 -070033/* register offsets */
34#define MODER 0x00
35#define INT_SOURCE 0x04
36#define INT_MASK 0x08
37#define IPGT 0x0c
38#define IPGR1 0x10
39#define IPGR2 0x14
40#define PACKETLEN 0x18
41#define COLLCONF 0x1c
42#define TX_BD_NUM 0x20
43#define CTRLMODER 0x24
44#define MIIMODER 0x28
45#define MIICOMMAND 0x2c
46#define MIIADDRESS 0x30
47#define MIITX_DATA 0x34
48#define MIIRX_DATA 0x38
49#define MIISTATUS 0x3c
50#define MAC_ADDR0 0x40
51#define MAC_ADDR1 0x44
52#define ETH_HASH0 0x48
53#define ETH_HASH1 0x4c
54#define ETH_TXCTRL 0x50
Max Filippov11129092014-01-31 09:41:06 +040055#define ETH_END 0x54
Thierry Redinga1702852009-03-27 00:12:24 -070056
57/* mode register */
58#define MODER_RXEN (1 << 0) /* receive enable */
59#define MODER_TXEN (1 << 1) /* transmit enable */
60#define MODER_NOPRE (1 << 2) /* no preamble */
61#define MODER_BRO (1 << 3) /* broadcast address */
62#define MODER_IAM (1 << 4) /* individual address mode */
63#define MODER_PRO (1 << 5) /* promiscuous mode */
64#define MODER_IFG (1 << 6) /* interframe gap for incoming frames */
65#define MODER_LOOP (1 << 7) /* loopback */
66#define MODER_NBO (1 << 8) /* no back-off */
67#define MODER_EDE (1 << 9) /* excess defer enable */
68#define MODER_FULLD (1 << 10) /* full duplex */
69#define MODER_RESET (1 << 11) /* FIXME: reset (undocumented) */
70#define MODER_DCRC (1 << 12) /* delayed CRC enable */
71#define MODER_CRC (1 << 13) /* CRC enable */
72#define MODER_HUGE (1 << 14) /* huge packets enable */
73#define MODER_PAD (1 << 15) /* padding enabled */
74#define MODER_RSM (1 << 16) /* receive small packets */
75
76/* interrupt source and mask registers */
77#define INT_MASK_TXF (1 << 0) /* transmit frame */
78#define INT_MASK_TXE (1 << 1) /* transmit error */
79#define INT_MASK_RXF (1 << 2) /* receive frame */
80#define INT_MASK_RXE (1 << 3) /* receive error */
81#define INT_MASK_BUSY (1 << 4)
82#define INT_MASK_TXC (1 << 5) /* transmit control frame */
83#define INT_MASK_RXC (1 << 6) /* receive control frame */
84
85#define INT_MASK_TX (INT_MASK_TXF | INT_MASK_TXE)
86#define INT_MASK_RX (INT_MASK_RXF | INT_MASK_RXE)
87
88#define INT_MASK_ALL ( \
89 INT_MASK_TXF | INT_MASK_TXE | \
90 INT_MASK_RXF | INT_MASK_RXE | \
91 INT_MASK_TXC | INT_MASK_RXC | \
92 INT_MASK_BUSY \
93 )
94
95/* packet length register */
96#define PACKETLEN_MIN(min) (((min) & 0xffff) << 16)
97#define PACKETLEN_MAX(max) (((max) & 0xffff) << 0)
98#define PACKETLEN_MIN_MAX(min, max) (PACKETLEN_MIN(min) | \
99 PACKETLEN_MAX(max))
100
101/* transmit buffer number register */
102#define TX_BD_NUM_VAL(x) (((x) <= 0x80) ? (x) : 0x80)
103
104/* control module mode register */
105#define CTRLMODER_PASSALL (1 << 0) /* pass all receive frames */
106#define CTRLMODER_RXFLOW (1 << 1) /* receive control flow */
107#define CTRLMODER_TXFLOW (1 << 2) /* transmit control flow */
108
109/* MII mode register */
110#define MIIMODER_CLKDIV(x) ((x) & 0xfe) /* needs to be an even number */
111#define MIIMODER_NOPRE (1 << 8) /* no preamble */
112
113/* MII command register */
114#define MIICOMMAND_SCAN (1 << 0) /* scan status */
115#define MIICOMMAND_READ (1 << 1) /* read status */
116#define MIICOMMAND_WRITE (1 << 2) /* write control data */
117
118/* MII address register */
119#define MIIADDRESS_FIAD(x) (((x) & 0x1f) << 0)
120#define MIIADDRESS_RGAD(x) (((x) & 0x1f) << 8)
121#define MIIADDRESS_ADDR(phy, reg) (MIIADDRESS_FIAD(phy) | \
122 MIIADDRESS_RGAD(reg))
123
124/* MII transmit data register */
125#define MIITX_DATA_VAL(x) ((x) & 0xffff)
126
127/* MII receive data register */
128#define MIIRX_DATA_VAL(x) ((x) & 0xffff)
129
130/* MII status register */
131#define MIISTATUS_LINKFAIL (1 << 0)
132#define MIISTATUS_BUSY (1 << 1)
133#define MIISTATUS_INVALID (1 << 2)
134
135/* TX buffer descriptor */
136#define TX_BD_CS (1 << 0) /* carrier sense lost */
137#define TX_BD_DF (1 << 1) /* defer indication */
138#define TX_BD_LC (1 << 2) /* late collision */
139#define TX_BD_RL (1 << 3) /* retransmission limit */
140#define TX_BD_RETRY_MASK (0x00f0)
141#define TX_BD_RETRY(x) (((x) & 0x00f0) >> 4)
142#define TX_BD_UR (1 << 8) /* transmitter underrun */
143#define TX_BD_CRC (1 << 11) /* TX CRC enable */
144#define TX_BD_PAD (1 << 12) /* pad enable for short packets */
145#define TX_BD_WRAP (1 << 13)
146#define TX_BD_IRQ (1 << 14) /* interrupt request enable */
147#define TX_BD_READY (1 << 15) /* TX buffer ready */
148#define TX_BD_LEN(x) (((x) & 0xffff) << 16)
149#define TX_BD_LEN_MASK (0xffff << 16)
150
151#define TX_BD_STATS (TX_BD_CS | TX_BD_DF | TX_BD_LC | \
152 TX_BD_RL | TX_BD_RETRY_MASK | TX_BD_UR)
153
154/* RX buffer descriptor */
155#define RX_BD_LC (1 << 0) /* late collision */
156#define RX_BD_CRC (1 << 1) /* RX CRC error */
157#define RX_BD_SF (1 << 2) /* short frame */
158#define RX_BD_TL (1 << 3) /* too long */
159#define RX_BD_DN (1 << 4) /* dribble nibble */
160#define RX_BD_IS (1 << 5) /* invalid symbol */
161#define RX_BD_OR (1 << 6) /* receiver overrun */
162#define RX_BD_MISS (1 << 7)
163#define RX_BD_CF (1 << 8) /* control frame */
164#define RX_BD_WRAP (1 << 13)
165#define RX_BD_IRQ (1 << 14) /* interrupt request enable */
166#define RX_BD_EMPTY (1 << 15)
167#define RX_BD_LEN(x) (((x) & 0xffff) << 16)
168
169#define RX_BD_STATS (RX_BD_LC | RX_BD_CRC | RX_BD_SF | RX_BD_TL | \
170 RX_BD_DN | RX_BD_IS | RX_BD_OR | RX_BD_MISS)
171
172#define ETHOC_BUFSIZ 1536
173#define ETHOC_ZLEN 64
174#define ETHOC_BD_BASE 0x400
175#define ETHOC_TIMEOUT (HZ / 2)
176#define ETHOC_MII_TIMEOUT (1 + (HZ / 5))
177
178/**
179 * struct ethoc - driver-private device structure
180 * @iobase: pointer to I/O memory region
181 * @membase: pointer to buffer memory region
Thomas Chou0baa0802009-10-04 23:33:20 +0000182 * @dma_alloc: dma allocated buffer size
Thomas Chouee02a4e2010-05-23 16:44:02 +0000183 * @io_region_size: I/O memory region size
Max Filippovbee7bac2014-01-31 09:41:07 +0400184 * @num_bd: number of buffer descriptors
Thierry Redinga1702852009-03-27 00:12:24 -0700185 * @num_tx: number of send buffers
186 * @cur_tx: last send buffer written
187 * @dty_tx: last buffer actually sent
188 * @num_rx: number of receive buffers
189 * @cur_rx: current receive buffer
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000190 * @vma: pointer to array of virtual memory addresses for buffers
Thierry Redinga1702852009-03-27 00:12:24 -0700191 * @netdev: pointer to network device structure
192 * @napi: NAPI structure
Thierry Redinga1702852009-03-27 00:12:24 -0700193 * @msg_enable: device state flags
Thierry Redinga1702852009-03-27 00:12:24 -0700194 * @lock: device lock
Thierry Redinga1702852009-03-27 00:12:24 -0700195 * @mdio: MDIO bus for PHY access
196 * @phy_id: address of attached PHY
197 */
198struct ethoc {
199 void __iomem *iobase;
200 void __iomem *membase;
Thomas Chou0baa0802009-10-04 23:33:20 +0000201 int dma_alloc;
Thomas Chouee02a4e2010-05-23 16:44:02 +0000202 resource_size_t io_region_size;
Max Filippov06e60e592015-09-22 14:27:16 +0300203 bool big_endian;
Thierry Redinga1702852009-03-27 00:12:24 -0700204
Max Filippovbee7bac2014-01-31 09:41:07 +0400205 unsigned int num_bd;
Thierry Redinga1702852009-03-27 00:12:24 -0700206 unsigned int num_tx;
207 unsigned int cur_tx;
208 unsigned int dty_tx;
209
210 unsigned int num_rx;
211 unsigned int cur_rx;
212
Barry Grussling72aa8e12013-01-27 18:44:36 +0000213 void **vma;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000214
Thierry Redinga1702852009-03-27 00:12:24 -0700215 struct net_device *netdev;
216 struct napi_struct napi;
Thierry Redinga1702852009-03-27 00:12:24 -0700217 u32 msg_enable;
218
Thierry Redinga1702852009-03-27 00:12:24 -0700219 spinlock_t lock;
220
Thierry Redinga1702852009-03-27 00:12:24 -0700221 struct mii_bus *mdio;
Max Filippova13aff02014-02-04 03:33:10 +0400222 struct clk *clk;
Thierry Redinga1702852009-03-27 00:12:24 -0700223 s8 phy_id;
Florian Fainelliabf7e532016-12-04 12:40:28 -0800224
225 int old_link;
226 int old_duplex;
Thierry Redinga1702852009-03-27 00:12:24 -0700227};
228
229/**
230 * struct ethoc_bd - buffer descriptor
231 * @stat: buffer statistics
232 * @addr: physical memory address
233 */
234struct ethoc_bd {
235 u32 stat;
236 u32 addr;
237};
238
Thomas Chou16dd18b2009-10-07 14:16:42 +0000239static inline u32 ethoc_read(struct ethoc *dev, loff_t offset)
Thierry Redinga1702852009-03-27 00:12:24 -0700240{
Max Filippov06e60e592015-09-22 14:27:16 +0300241 if (dev->big_endian)
242 return ioread32be(dev->iobase + offset);
243 else
244 return ioread32(dev->iobase + offset);
Thierry Redinga1702852009-03-27 00:12:24 -0700245}
246
Thomas Chou16dd18b2009-10-07 14:16:42 +0000247static inline void ethoc_write(struct ethoc *dev, loff_t offset, u32 data)
Thierry Redinga1702852009-03-27 00:12:24 -0700248{
Max Filippov06e60e592015-09-22 14:27:16 +0300249 if (dev->big_endian)
250 iowrite32be(data, dev->iobase + offset);
251 else
252 iowrite32(data, dev->iobase + offset);
Thierry Redinga1702852009-03-27 00:12:24 -0700253}
254
Thomas Chou16dd18b2009-10-07 14:16:42 +0000255static inline void ethoc_read_bd(struct ethoc *dev, int index,
256 struct ethoc_bd *bd)
Thierry Redinga1702852009-03-27 00:12:24 -0700257{
258 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
259 bd->stat = ethoc_read(dev, offset + 0);
260 bd->addr = ethoc_read(dev, offset + 4);
261}
262
Thomas Chou16dd18b2009-10-07 14:16:42 +0000263static inline void ethoc_write_bd(struct ethoc *dev, int index,
Thierry Redinga1702852009-03-27 00:12:24 -0700264 const struct ethoc_bd *bd)
265{
266 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
267 ethoc_write(dev, offset + 0, bd->stat);
268 ethoc_write(dev, offset + 4, bd->addr);
269}
270
Thomas Chou16dd18b2009-10-07 14:16:42 +0000271static inline void ethoc_enable_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700272{
273 u32 imask = ethoc_read(dev, INT_MASK);
274 imask |= mask;
275 ethoc_write(dev, INT_MASK, imask);
276}
277
Thomas Chou16dd18b2009-10-07 14:16:42 +0000278static inline void ethoc_disable_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700279{
280 u32 imask = ethoc_read(dev, INT_MASK);
281 imask &= ~mask;
282 ethoc_write(dev, INT_MASK, imask);
283}
284
Thomas Chou16dd18b2009-10-07 14:16:42 +0000285static inline void ethoc_ack_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700286{
287 ethoc_write(dev, INT_SOURCE, mask);
288}
289
Thomas Chou16dd18b2009-10-07 14:16:42 +0000290static inline void ethoc_enable_rx_and_tx(struct ethoc *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700291{
292 u32 mode = ethoc_read(dev, MODER);
293 mode |= MODER_RXEN | MODER_TXEN;
294 ethoc_write(dev, MODER, mode);
295}
296
Thomas Chou16dd18b2009-10-07 14:16:42 +0000297static inline void ethoc_disable_rx_and_tx(struct ethoc *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700298{
299 u32 mode = ethoc_read(dev, MODER);
300 mode &= ~(MODER_RXEN | MODER_TXEN);
301 ethoc_write(dev, MODER, mode);
302}
303
David S. Miller5cf3e032010-07-07 18:23:19 -0700304static int ethoc_init_ring(struct ethoc *dev, unsigned long mem_start)
Thierry Redinga1702852009-03-27 00:12:24 -0700305{
306 struct ethoc_bd bd;
307 int i;
Barry Grussling72aa8e12013-01-27 18:44:36 +0000308 void *vma;
Thierry Redinga1702852009-03-27 00:12:24 -0700309
310 dev->cur_tx = 0;
311 dev->dty_tx = 0;
312 dev->cur_rx = 0;
313
Jonas Bonnee4f56b2010-06-11 02:47:36 +0000314 ethoc_write(dev, TX_BD_NUM, dev->num_tx);
315
Thierry Redinga1702852009-03-27 00:12:24 -0700316 /* setup transmission buffers */
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000317 bd.addr = mem_start;
Thierry Redinga1702852009-03-27 00:12:24 -0700318 bd.stat = TX_BD_IRQ | TX_BD_CRC;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000319 vma = dev->membase;
Thierry Redinga1702852009-03-27 00:12:24 -0700320
321 for (i = 0; i < dev->num_tx; i++) {
322 if (i == dev->num_tx - 1)
323 bd.stat |= TX_BD_WRAP;
324
325 ethoc_write_bd(dev, i, &bd);
326 bd.addr += ETHOC_BUFSIZ;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000327
328 dev->vma[i] = vma;
329 vma += ETHOC_BUFSIZ;
Thierry Redinga1702852009-03-27 00:12:24 -0700330 }
331
Thierry Redinga1702852009-03-27 00:12:24 -0700332 bd.stat = RX_BD_EMPTY | RX_BD_IRQ;
333
334 for (i = 0; i < dev->num_rx; i++) {
335 if (i == dev->num_rx - 1)
336 bd.stat |= RX_BD_WRAP;
337
338 ethoc_write_bd(dev, dev->num_tx + i, &bd);
339 bd.addr += ETHOC_BUFSIZ;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000340
341 dev->vma[dev->num_tx + i] = vma;
342 vma += ETHOC_BUFSIZ;
Thierry Redinga1702852009-03-27 00:12:24 -0700343 }
344
345 return 0;
346}
347
348static int ethoc_reset(struct ethoc *dev)
349{
350 u32 mode;
351
352 /* TODO: reset controller? */
353
354 ethoc_disable_rx_and_tx(dev);
355
356 /* TODO: setup registers */
357
358 /* enable FCS generation and automatic padding */
359 mode = ethoc_read(dev, MODER);
360 mode |= MODER_CRC | MODER_PAD;
361 ethoc_write(dev, MODER, mode);
362
363 /* set full-duplex mode */
364 mode = ethoc_read(dev, MODER);
365 mode |= MODER_FULLD;
366 ethoc_write(dev, MODER, mode);
367 ethoc_write(dev, IPGT, 0x15);
368
369 ethoc_ack_irq(dev, INT_MASK_ALL);
370 ethoc_enable_irq(dev, INT_MASK_ALL);
371 ethoc_enable_rx_and_tx(dev);
372 return 0;
373}
374
375static unsigned int ethoc_update_rx_stats(struct ethoc *dev,
376 struct ethoc_bd *bd)
377{
378 struct net_device *netdev = dev->netdev;
379 unsigned int ret = 0;
380
381 if (bd->stat & RX_BD_TL) {
382 dev_err(&netdev->dev, "RX: frame too long\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000383 netdev->stats.rx_length_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700384 ret++;
385 }
386
387 if (bd->stat & RX_BD_SF) {
388 dev_err(&netdev->dev, "RX: frame too short\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000389 netdev->stats.rx_length_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700390 ret++;
391 }
392
393 if (bd->stat & RX_BD_DN) {
394 dev_err(&netdev->dev, "RX: dribble nibble\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000395 netdev->stats.rx_frame_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700396 }
397
398 if (bd->stat & RX_BD_CRC) {
399 dev_err(&netdev->dev, "RX: wrong CRC\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000400 netdev->stats.rx_crc_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700401 ret++;
402 }
403
404 if (bd->stat & RX_BD_OR) {
405 dev_err(&netdev->dev, "RX: overrun\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000406 netdev->stats.rx_over_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700407 ret++;
408 }
409
410 if (bd->stat & RX_BD_MISS)
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000411 netdev->stats.rx_missed_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700412
413 if (bd->stat & RX_BD_LC) {
414 dev_err(&netdev->dev, "RX: late collision\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000415 netdev->stats.collisions++;
Thierry Redinga1702852009-03-27 00:12:24 -0700416 ret++;
417 }
418
419 return ret;
420}
421
422static int ethoc_rx(struct net_device *dev, int limit)
423{
424 struct ethoc *priv = netdev_priv(dev);
425 int count;
426
427 for (count = 0; count < limit; ++count) {
428 unsigned int entry;
429 struct ethoc_bd bd;
430
Jonas Bonn6a632622010-11-25 02:30:32 +0000431 entry = priv->num_tx + priv->cur_rx;
Thierry Redinga1702852009-03-27 00:12:24 -0700432 ethoc_read_bd(priv, entry, &bd);
Jonas Bonn20f70dd2010-11-25 02:30:28 +0000433 if (bd.stat & RX_BD_EMPTY) {
434 ethoc_ack_irq(priv, INT_MASK_RX);
435 /* If packet (interrupt) came in between checking
436 * BD_EMTPY and clearing the interrupt source, then we
437 * risk missing the packet as the RX interrupt won't
438 * trigger right away when we reenable it; hence, check
439 * BD_EMTPY here again to make sure there isn't such a
440 * packet waiting for us...
441 */
442 ethoc_read_bd(priv, entry, &bd);
443 if (bd.stat & RX_BD_EMPTY)
444 break;
445 }
Thierry Redinga1702852009-03-27 00:12:24 -0700446
447 if (ethoc_update_rx_stats(priv, &bd) == 0) {
448 int size = bd.stat >> 16;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000449 struct sk_buff *skb;
Thomas Chou050f91d2009-10-04 23:33:19 +0000450
451 size -= 4; /* strip the CRC */
Eric Dumazet89d71a62009-10-13 05:34:20 +0000452 skb = netdev_alloc_skb_ip_align(dev, size);
Thomas Chou050f91d2009-10-04 23:33:19 +0000453
Thierry Redinga1702852009-03-27 00:12:24 -0700454 if (likely(skb)) {
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000455 void *src = priv->vma[entry];
Thierry Redinga1702852009-03-27 00:12:24 -0700456 memcpy_fromio(skb_put(skb, size), src, size);
457 skb->protocol = eth_type_trans(skb, dev);
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000458 dev->stats.rx_packets++;
459 dev->stats.rx_bytes += size;
Thierry Redinga1702852009-03-27 00:12:24 -0700460 netif_receive_skb(skb);
461 } else {
462 if (net_ratelimit())
Barry Grussling72aa8e12013-01-27 18:44:36 +0000463 dev_warn(&dev->dev,
464 "low on memory - packet dropped\n");
Thierry Redinga1702852009-03-27 00:12:24 -0700465
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000466 dev->stats.rx_dropped++;
Thierry Redinga1702852009-03-27 00:12:24 -0700467 break;
468 }
469 }
470
471 /* clear the buffer descriptor so it can be reused */
472 bd.stat &= ~RX_BD_STATS;
473 bd.stat |= RX_BD_EMPTY;
474 ethoc_write_bd(priv, entry, &bd);
Jonas Bonn6a632622010-11-25 02:30:32 +0000475 if (++priv->cur_rx == priv->num_rx)
476 priv->cur_rx = 0;
Thierry Redinga1702852009-03-27 00:12:24 -0700477 }
478
479 return count;
480}
481
Jonas Bonn4f64bcb2010-11-25 02:30:31 +0000482static void ethoc_update_tx_stats(struct ethoc *dev, struct ethoc_bd *bd)
Thierry Redinga1702852009-03-27 00:12:24 -0700483{
484 struct net_device *netdev = dev->netdev;
485
486 if (bd->stat & TX_BD_LC) {
487 dev_err(&netdev->dev, "TX: late collision\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000488 netdev->stats.tx_window_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700489 }
490
491 if (bd->stat & TX_BD_RL) {
492 dev_err(&netdev->dev, "TX: retransmit limit\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000493 netdev->stats.tx_aborted_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700494 }
495
496 if (bd->stat & TX_BD_UR) {
497 dev_err(&netdev->dev, "TX: underrun\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000498 netdev->stats.tx_fifo_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700499 }
500
501 if (bd->stat & TX_BD_CS) {
502 dev_err(&netdev->dev, "TX: carrier sense lost\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000503 netdev->stats.tx_carrier_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700504 }
505
506 if (bd->stat & TX_BD_STATS)
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000507 netdev->stats.tx_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700508
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000509 netdev->stats.collisions += (bd->stat >> 4) & 0xf;
510 netdev->stats.tx_bytes += bd->stat >> 16;
511 netdev->stats.tx_packets++;
Thierry Redinga1702852009-03-27 00:12:24 -0700512}
513
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000514static int ethoc_tx(struct net_device *dev, int limit)
Thierry Redinga1702852009-03-27 00:12:24 -0700515{
516 struct ethoc *priv = netdev_priv(dev);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000517 int count;
518 struct ethoc_bd bd;
Thierry Redinga1702852009-03-27 00:12:24 -0700519
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000520 for (count = 0; count < limit; ++count) {
521 unsigned int entry;
Thierry Redinga1702852009-03-27 00:12:24 -0700522
Jonas Bonn6a632622010-11-25 02:30:32 +0000523 entry = priv->dty_tx & (priv->num_tx-1);
Thierry Redinga1702852009-03-27 00:12:24 -0700524
525 ethoc_read_bd(priv, entry, &bd);
Thierry Redinga1702852009-03-27 00:12:24 -0700526
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000527 if (bd.stat & TX_BD_READY || (priv->dty_tx == priv->cur_tx)) {
528 ethoc_ack_irq(priv, INT_MASK_TX);
529 /* If interrupt came in between reading in the BD
530 * and clearing the interrupt source, then we risk
531 * missing the event as the TX interrupt won't trigger
532 * right away when we reenable it; hence, check
533 * BD_EMPTY here again to make sure there isn't such an
534 * event pending...
535 */
536 ethoc_read_bd(priv, entry, &bd);
537 if (bd.stat & TX_BD_READY ||
538 (priv->dty_tx == priv->cur_tx))
539 break;
540 }
541
Jonas Bonn4f64bcb2010-11-25 02:30:31 +0000542 ethoc_update_tx_stats(priv, &bd);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000543 priv->dty_tx++;
Thierry Redinga1702852009-03-27 00:12:24 -0700544 }
545
546 if ((priv->cur_tx - priv->dty_tx) <= (priv->num_tx / 2))
547 netif_wake_queue(dev);
548
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000549 return count;
Thierry Redinga1702852009-03-27 00:12:24 -0700550}
551
552static irqreturn_t ethoc_interrupt(int irq, void *dev_id)
553{
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000554 struct net_device *dev = dev_id;
Thierry Redinga1702852009-03-27 00:12:24 -0700555 struct ethoc *priv = netdev_priv(dev);
556 u32 pending;
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000557 u32 mask;
Thierry Redinga1702852009-03-27 00:12:24 -0700558
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000559 /* Figure out what triggered the interrupt...
560 * The tricky bit here is that the interrupt source bits get
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300561 * set in INT_SOURCE for an event regardless of whether that
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000562 * event is masked or not. Thus, in order to figure out what
563 * triggered the interrupt, we need to remove the sources
564 * for all events that are currently masked. This behaviour
565 * is not particularly well documented but reasonable...
566 */
567 mask = ethoc_read(priv, INT_MASK);
Thierry Redinga1702852009-03-27 00:12:24 -0700568 pending = ethoc_read(priv, INT_SOURCE);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000569 pending &= mask;
570
Barry Grussling72aa8e12013-01-27 18:44:36 +0000571 if (unlikely(pending == 0))
Thierry Redinga1702852009-03-27 00:12:24 -0700572 return IRQ_NONE;
Thierry Redinga1702852009-03-27 00:12:24 -0700573
Thomas Chou50c54a52009-10-07 14:16:43 +0000574 ethoc_ack_irq(priv, pending);
Thierry Redinga1702852009-03-27 00:12:24 -0700575
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000576 /* We always handle the dropped packet interrupt */
Thierry Redinga1702852009-03-27 00:12:24 -0700577 if (pending & INT_MASK_BUSY) {
578 dev_err(&dev->dev, "packet dropped\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000579 dev->stats.rx_dropped++;
Thierry Redinga1702852009-03-27 00:12:24 -0700580 }
581
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000582 /* Handle receive/transmit event by switching to polling */
583 if (pending & (INT_MASK_TX | INT_MASK_RX)) {
584 ethoc_disable_irq(priv, INT_MASK_TX | INT_MASK_RX);
585 napi_schedule(&priv->napi);
Thierry Redinga1702852009-03-27 00:12:24 -0700586 }
587
Thierry Redinga1702852009-03-27 00:12:24 -0700588 return IRQ_HANDLED;
589}
590
591static int ethoc_get_mac_address(struct net_device *dev, void *addr)
592{
593 struct ethoc *priv = netdev_priv(dev);
594 u8 *mac = (u8 *)addr;
595 u32 reg;
596
597 reg = ethoc_read(priv, MAC_ADDR0);
598 mac[2] = (reg >> 24) & 0xff;
599 mac[3] = (reg >> 16) & 0xff;
600 mac[4] = (reg >> 8) & 0xff;
601 mac[5] = (reg >> 0) & 0xff;
602
603 reg = ethoc_read(priv, MAC_ADDR1);
604 mac[0] = (reg >> 8) & 0xff;
605 mac[1] = (reg >> 0) & 0xff;
606
607 return 0;
608}
609
610static int ethoc_poll(struct napi_struct *napi, int budget)
611{
612 struct ethoc *priv = container_of(napi, struct ethoc, napi);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000613 int rx_work_done = 0;
614 int tx_work_done = 0;
Thierry Redinga1702852009-03-27 00:12:24 -0700615
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000616 rx_work_done = ethoc_rx(priv->netdev, budget);
617 tx_work_done = ethoc_tx(priv->netdev, budget);
618
619 if (rx_work_done < budget && tx_work_done < budget) {
Thierry Redinga1702852009-03-27 00:12:24 -0700620 napi_complete(napi);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000621 ethoc_enable_irq(priv, INT_MASK_TX | INT_MASK_RX);
Thierry Redinga1702852009-03-27 00:12:24 -0700622 }
623
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000624 return rx_work_done;
Thierry Redinga1702852009-03-27 00:12:24 -0700625}
626
627static int ethoc_mdio_read(struct mii_bus *bus, int phy, int reg)
628{
Thierry Redinga1702852009-03-27 00:12:24 -0700629 struct ethoc *priv = bus->priv;
Jonas Bonn8dac4282010-11-25 02:30:30 +0000630 int i;
Thierry Redinga1702852009-03-27 00:12:24 -0700631
632 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
633 ethoc_write(priv, MIICOMMAND, MIICOMMAND_READ);
634
Barry Grussling72aa8e12013-01-27 18:44:36 +0000635 for (i = 0; i < 5; i++) {
Thierry Redinga1702852009-03-27 00:12:24 -0700636 u32 status = ethoc_read(priv, MIISTATUS);
637 if (!(status & MIISTATUS_BUSY)) {
638 u32 data = ethoc_read(priv, MIIRX_DATA);
639 /* reset MII command register */
640 ethoc_write(priv, MIICOMMAND, 0);
641 return data;
642 }
Barry Grussling72aa8e12013-01-27 18:44:36 +0000643 usleep_range(100, 200);
Thierry Redinga1702852009-03-27 00:12:24 -0700644 }
645
646 return -EBUSY;
647}
648
649static int ethoc_mdio_write(struct mii_bus *bus, int phy, int reg, u16 val)
650{
Thierry Redinga1702852009-03-27 00:12:24 -0700651 struct ethoc *priv = bus->priv;
Jonas Bonn8dac4282010-11-25 02:30:30 +0000652 int i;
Thierry Redinga1702852009-03-27 00:12:24 -0700653
654 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
655 ethoc_write(priv, MIITX_DATA, val);
656 ethoc_write(priv, MIICOMMAND, MIICOMMAND_WRITE);
657
Barry Grussling72aa8e12013-01-27 18:44:36 +0000658 for (i = 0; i < 5; i++) {
Thierry Redinga1702852009-03-27 00:12:24 -0700659 u32 stat = ethoc_read(priv, MIISTATUS);
Jonas Bonnb46773d2010-06-11 02:47:39 +0000660 if (!(stat & MIISTATUS_BUSY)) {
661 /* reset MII command register */
662 ethoc_write(priv, MIICOMMAND, 0);
Thierry Redinga1702852009-03-27 00:12:24 -0700663 return 0;
Jonas Bonnb46773d2010-06-11 02:47:39 +0000664 }
Barry Grussling72aa8e12013-01-27 18:44:36 +0000665 usleep_range(100, 200);
Thierry Redinga1702852009-03-27 00:12:24 -0700666 }
667
668 return -EBUSY;
669}
670
Thierry Redinga1702852009-03-27 00:12:24 -0700671static void ethoc_mdio_poll(struct net_device *dev)
672{
Florian Fainelliabf7e532016-12-04 12:40:28 -0800673 struct ethoc *priv = netdev_priv(dev);
674 struct phy_device *phydev = dev->phydev;
675 bool changed = false;
676 u32 mode;
677
678 if (priv->old_link != phydev->link) {
679 changed = true;
680 priv->old_link = phydev->link;
681 }
682
683 if (priv->old_duplex != phydev->duplex) {
684 changed = true;
685 priv->old_duplex = phydev->duplex;
686 }
687
688 if (!changed)
689 return;
690
691 mode = ethoc_read(priv, MODER);
692 if (phydev->duplex == DUPLEX_FULL)
693 mode |= MODER_FULLD;
694 else
695 mode &= ~MODER_FULLD;
696 ethoc_write(priv, MODER, mode);
697
698 phy_print_status(phydev);
Thierry Redinga1702852009-03-27 00:12:24 -0700699}
700
Bill Pembertona0a4efe2012-12-03 09:24:09 -0500701static int ethoc_mdio_probe(struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700702{
703 struct ethoc *priv = netdev_priv(dev);
704 struct phy_device *phy;
Jonas Bonn637f33b82010-06-11 02:47:37 +0000705 int err;
Thierry Redinga1702852009-03-27 00:12:24 -0700706
Barry Grussling72aa8e12013-01-27 18:44:36 +0000707 if (priv->phy_id != -1)
Andrew Lunn7f854422016-01-06 20:11:18 +0100708 phy = mdiobus_get_phy(priv->mdio, priv->phy_id);
Barry Grussling72aa8e12013-01-27 18:44:36 +0000709 else
Jonas Bonn637f33b82010-06-11 02:47:37 +0000710 phy = phy_find_first(priv->mdio);
Thierry Redinga1702852009-03-27 00:12:24 -0700711
712 if (!phy) {
713 dev_err(&dev->dev, "no PHY found\n");
714 return -ENXIO;
715 }
716
Florian Fainelliabf7e532016-12-04 12:40:28 -0800717 priv->old_duplex = -1;
718 priv->old_link = -1;
719
Florian Fainellif9a8f832013-01-14 00:52:52 +0000720 err = phy_connect_direct(dev, phy, ethoc_mdio_poll,
721 PHY_INTERFACE_MODE_GMII);
Jonas Bonn637f33b82010-06-11 02:47:37 +0000722 if (err) {
Thierry Redinga1702852009-03-27 00:12:24 -0700723 dev_err(&dev->dev, "could not attach to PHY\n");
Jonas Bonn637f33b82010-06-11 02:47:37 +0000724 return err;
Thierry Redinga1702852009-03-27 00:12:24 -0700725 }
726
Max Filippov445a48c2014-02-04 03:33:09 +0400727 phy->advertising &= ~(ADVERTISED_1000baseT_Full |
728 ADVERTISED_1000baseT_Half);
729 phy->supported &= ~(SUPPORTED_1000baseT_Full |
730 SUPPORTED_1000baseT_Half);
731
Thierry Redinga1702852009-03-27 00:12:24 -0700732 return 0;
733}
734
735static int ethoc_open(struct net_device *dev)
736{
737 struct ethoc *priv = netdev_priv(dev);
Thierry Redinga1702852009-03-27 00:12:24 -0700738 int ret;
739
740 ret = request_irq(dev->irq, ethoc_interrupt, IRQF_SHARED,
741 dev->name, dev);
742 if (ret)
743 return ret;
744
David S. Miller5cf3e032010-07-07 18:23:19 -0700745 ethoc_init_ring(priv, dev->mem_start);
Thierry Redinga1702852009-03-27 00:12:24 -0700746 ethoc_reset(priv);
747
748 if (netif_queue_stopped(dev)) {
749 dev_dbg(&dev->dev, " resuming queue\n");
750 netif_wake_queue(dev);
751 } else {
752 dev_dbg(&dev->dev, " starting queue\n");
753 netif_start_queue(dev);
754 }
755
Florian Fainelliabf7e532016-12-04 12:40:28 -0800756 priv->old_link = -1;
757 priv->old_duplex = -1;
758
Philippe Reynes11331fc2016-07-15 09:59:11 +0200759 phy_start(dev->phydev);
Thierry Redinga1702852009-03-27 00:12:24 -0700760 napi_enable(&priv->napi);
761
762 if (netif_msg_ifup(priv)) {
763 dev_info(&dev->dev, "I/O: %08lx Memory: %08lx-%08lx\n",
764 dev->base_addr, dev->mem_start, dev->mem_end);
765 }
766
767 return 0;
768}
769
770static int ethoc_stop(struct net_device *dev)
771{
772 struct ethoc *priv = netdev_priv(dev);
773
774 napi_disable(&priv->napi);
775
Philippe Reynes11331fc2016-07-15 09:59:11 +0200776 if (dev->phydev)
777 phy_stop(dev->phydev);
Thierry Redinga1702852009-03-27 00:12:24 -0700778
779 ethoc_disable_rx_and_tx(priv);
780 free_irq(dev->irq, dev);
781
782 if (!netif_queue_stopped(dev))
783 netif_stop_queue(dev);
784
785 return 0;
786}
787
788static int ethoc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
789{
790 struct ethoc *priv = netdev_priv(dev);
791 struct mii_ioctl_data *mdio = if_mii(ifr);
792 struct phy_device *phy = NULL;
793
794 if (!netif_running(dev))
795 return -EINVAL;
796
797 if (cmd != SIOCGMIIPHY) {
798 if (mdio->phy_id >= PHY_MAX_ADDR)
799 return -ERANGE;
800
Andrew Lunn7f854422016-01-06 20:11:18 +0100801 phy = mdiobus_get_phy(priv->mdio, mdio->phy_id);
Thierry Redinga1702852009-03-27 00:12:24 -0700802 if (!phy)
803 return -ENODEV;
804 } else {
Philippe Reynes11331fc2016-07-15 09:59:11 +0200805 phy = dev->phydev;
Thierry Redinga1702852009-03-27 00:12:24 -0700806 }
807
Richard Cochran28b04112010-07-17 08:48:55 +0000808 return phy_mii_ioctl(phy, ifr, cmd);
Thierry Redinga1702852009-03-27 00:12:24 -0700809}
810
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000811static void ethoc_do_set_mac_address(struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700812{
813 struct ethoc *priv = netdev_priv(dev);
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000814 unsigned char *mac = dev->dev_addr;
Danny Kukawka939d2252012-02-17 05:43:29 +0000815
Thierry Redinga1702852009-03-27 00:12:24 -0700816 ethoc_write(priv, MAC_ADDR0, (mac[2] << 24) | (mac[3] << 16) |
817 (mac[4] << 8) | (mac[5] << 0));
818 ethoc_write(priv, MAC_ADDR1, (mac[0] << 8) | (mac[1] << 0));
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000819}
Thierry Redinga1702852009-03-27 00:12:24 -0700820
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000821static int ethoc_set_mac_address(struct net_device *dev, void *p)
822{
823 const struct sockaddr *addr = p;
Danny Kukawka939d2252012-02-17 05:43:29 +0000824
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000825 if (!is_valid_ether_addr(addr->sa_data))
826 return -EADDRNOTAVAIL;
827 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
828 ethoc_do_set_mac_address(dev);
Thierry Redinga1702852009-03-27 00:12:24 -0700829 return 0;
830}
831
832static void ethoc_set_multicast_list(struct net_device *dev)
833{
834 struct ethoc *priv = netdev_priv(dev);
835 u32 mode = ethoc_read(priv, MODER);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000836 struct netdev_hw_addr *ha;
Thierry Redinga1702852009-03-27 00:12:24 -0700837 u32 hash[2] = { 0, 0 };
838
839 /* set loopback mode if requested */
840 if (dev->flags & IFF_LOOPBACK)
841 mode |= MODER_LOOP;
842 else
843 mode &= ~MODER_LOOP;
844
845 /* receive broadcast frames if requested */
846 if (dev->flags & IFF_BROADCAST)
847 mode &= ~MODER_BRO;
848 else
849 mode |= MODER_BRO;
850
851 /* enable promiscuous mode if requested */
852 if (dev->flags & IFF_PROMISC)
853 mode |= MODER_PRO;
854 else
855 mode &= ~MODER_PRO;
856
857 ethoc_write(priv, MODER, mode);
858
859 /* receive multicast frames */
860 if (dev->flags & IFF_ALLMULTI) {
861 hash[0] = 0xffffffff;
862 hash[1] = 0xffffffff;
863 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000864 netdev_for_each_mc_addr(ha, dev) {
865 u32 crc = ether_crc(ETH_ALEN, ha->addr);
Thierry Redinga1702852009-03-27 00:12:24 -0700866 int bit = (crc >> 26) & 0x3f;
867 hash[bit >> 5] |= 1 << (bit & 0x1f);
868 }
869 }
870
871 ethoc_write(priv, ETH_HASH0, hash[0]);
872 ethoc_write(priv, ETH_HASH1, hash[1]);
873}
874
875static int ethoc_change_mtu(struct net_device *dev, int new_mtu)
876{
877 return -ENOSYS;
878}
879
880static void ethoc_tx_timeout(struct net_device *dev)
881{
882 struct ethoc *priv = netdev_priv(dev);
883 u32 pending = ethoc_read(priv, INT_SOURCE);
884 if (likely(pending))
885 ethoc_interrupt(dev->irq, dev);
886}
887
Stephen Hemminger613573252009-08-31 19:50:58 +0000888static netdev_tx_t ethoc_start_xmit(struct sk_buff *skb, struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700889{
890 struct ethoc *priv = netdev_priv(dev);
891 struct ethoc_bd bd;
892 unsigned int entry;
893 void *dest;
894
Florian Fainelliee6c21b2016-07-12 16:04:36 -0700895 if (skb_put_padto(skb, ETHOC_ZLEN)) {
896 dev->stats.tx_errors++;
897 goto out_no_free;
898 }
899
Thierry Redinga1702852009-03-27 00:12:24 -0700900 if (unlikely(skb->len > ETHOC_BUFSIZ)) {
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000901 dev->stats.tx_errors++;
Patrick McHardy3790c8c2009-06-12 03:00:35 +0000902 goto out;
Thierry Redinga1702852009-03-27 00:12:24 -0700903 }
904
905 entry = priv->cur_tx % priv->num_tx;
906 spin_lock_irq(&priv->lock);
907 priv->cur_tx++;
908
909 ethoc_read_bd(priv, entry, &bd);
910 if (unlikely(skb->len < ETHOC_ZLEN))
911 bd.stat |= TX_BD_PAD;
912 else
913 bd.stat &= ~TX_BD_PAD;
914
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000915 dest = priv->vma[entry];
Thierry Redinga1702852009-03-27 00:12:24 -0700916 memcpy_toio(dest, skb->data, skb->len);
917
918 bd.stat &= ~(TX_BD_STATS | TX_BD_LEN_MASK);
919 bd.stat |= TX_BD_LEN(skb->len);
920 ethoc_write_bd(priv, entry, &bd);
921
922 bd.stat |= TX_BD_READY;
923 ethoc_write_bd(priv, entry, &bd);
924
925 if (priv->cur_tx == (priv->dty_tx + priv->num_tx)) {
926 dev_dbg(&dev->dev, "stopping queue\n");
927 netif_stop_queue(dev);
928 }
929
Thierry Redinga1702852009-03-27 00:12:24 -0700930 spin_unlock_irq(&priv->lock);
Richard Cochran68f51392011-06-12 02:19:04 +0000931 skb_tx_timestamp(skb);
Patrick McHardy3790c8c2009-06-12 03:00:35 +0000932out:
933 dev_kfree_skb(skb);
Florian Fainelliee6c21b2016-07-12 16:04:36 -0700934out_no_free:
Thierry Redinga1702852009-03-27 00:12:24 -0700935 return NETDEV_TX_OK;
936}
937
Max Filippov11129092014-01-31 09:41:06 +0400938static int ethoc_get_regs_len(struct net_device *netdev)
939{
940 return ETH_END;
941}
942
943static void ethoc_get_regs(struct net_device *dev, struct ethtool_regs *regs,
944 void *p)
945{
946 struct ethoc *priv = netdev_priv(dev);
947 u32 *regs_buff = p;
948 unsigned i;
949
950 regs->version = 0;
951 for (i = 0; i < ETH_END / sizeof(u32); ++i)
952 regs_buff[i] = ethoc_read(priv, i * sizeof(u32));
953}
954
Max Filippovbee7bac2014-01-31 09:41:07 +0400955static void ethoc_get_ringparam(struct net_device *dev,
956 struct ethtool_ringparam *ring)
957{
958 struct ethoc *priv = netdev_priv(dev);
959
960 ring->rx_max_pending = priv->num_bd - 1;
961 ring->rx_mini_max_pending = 0;
962 ring->rx_jumbo_max_pending = 0;
963 ring->tx_max_pending = priv->num_bd - 1;
964
965 ring->rx_pending = priv->num_rx;
966 ring->rx_mini_pending = 0;
967 ring->rx_jumbo_pending = 0;
968 ring->tx_pending = priv->num_tx;
969}
970
971static int ethoc_set_ringparam(struct net_device *dev,
972 struct ethtool_ringparam *ring)
973{
974 struct ethoc *priv = netdev_priv(dev);
975
976 if (ring->tx_pending < 1 || ring->rx_pending < 1 ||
977 ring->tx_pending + ring->rx_pending > priv->num_bd)
978 return -EINVAL;
979 if (ring->rx_mini_pending || ring->rx_jumbo_pending)
980 return -EINVAL;
981
982 if (netif_running(dev)) {
983 netif_tx_disable(dev);
984 ethoc_disable_rx_and_tx(priv);
985 ethoc_disable_irq(priv, INT_MASK_TX | INT_MASK_RX);
986 synchronize_irq(dev->irq);
987 }
988
989 priv->num_tx = rounddown_pow_of_two(ring->tx_pending);
990 priv->num_rx = ring->rx_pending;
991 ethoc_init_ring(priv, dev->mem_start);
992
993 if (netif_running(dev)) {
994 ethoc_enable_irq(priv, INT_MASK_TX | INT_MASK_RX);
995 ethoc_enable_rx_and_tx(priv);
996 netif_wake_queue(dev);
997 }
998 return 0;
999}
1000
Max Filippovfba91102014-01-31 09:41:04 +04001001const struct ethtool_ops ethoc_ethtool_ops = {
Max Filippov11129092014-01-31 09:41:06 +04001002 .get_regs_len = ethoc_get_regs_len,
1003 .get_regs = ethoc_get_regs,
Florian Fainelli3d3ba562016-11-15 11:19:46 -08001004 .nway_reset = phy_ethtool_nway_reset,
Max Filippovfba91102014-01-31 09:41:04 +04001005 .get_link = ethtool_op_get_link,
Max Filippovbee7bac2014-01-31 09:41:07 +04001006 .get_ringparam = ethoc_get_ringparam,
1007 .set_ringparam = ethoc_set_ringparam,
Max Filippovfba91102014-01-31 09:41:04 +04001008 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynes87e544b2016-07-15 09:59:12 +02001009 .get_link_ksettings = phy_ethtool_get_link_ksettings,
1010 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Max Filippovfba91102014-01-31 09:41:04 +04001011};
1012
Thierry Redinga1702852009-03-27 00:12:24 -07001013static const struct net_device_ops ethoc_netdev_ops = {
1014 .ndo_open = ethoc_open,
1015 .ndo_stop = ethoc_stop,
1016 .ndo_do_ioctl = ethoc_ioctl,
Thierry Redinga1702852009-03-27 00:12:24 -07001017 .ndo_set_mac_address = ethoc_set_mac_address,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001018 .ndo_set_rx_mode = ethoc_set_multicast_list,
Thierry Redinga1702852009-03-27 00:12:24 -07001019 .ndo_change_mtu = ethoc_change_mtu,
1020 .ndo_tx_timeout = ethoc_tx_timeout,
Thierry Redinga1702852009-03-27 00:12:24 -07001021 .ndo_start_xmit = ethoc_start_xmit,
1022};
1023
1024/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001025 * ethoc_probe - initialize OpenCores ethernet MAC
Thierry Redinga1702852009-03-27 00:12:24 -07001026 * pdev: platform device
1027 */
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001028static int ethoc_probe(struct platform_device *pdev)
Thierry Redinga1702852009-03-27 00:12:24 -07001029{
1030 struct net_device *netdev = NULL;
1031 struct resource *res = NULL;
1032 struct resource *mmio = NULL;
1033 struct resource *mem = NULL;
1034 struct ethoc *priv = NULL;
Jonas Bonnc527f812010-06-11 02:47:34 +00001035 int num_bd;
Thierry Redinga1702852009-03-27 00:12:24 -07001036 int ret = 0;
Danny Kukawka939d2252012-02-17 05:43:29 +00001037 bool random_mac = false;
Max Filippova13aff02014-02-04 03:33:10 +04001038 struct ethoc_platform_data *pdata = dev_get_platdata(&pdev->dev);
1039 u32 eth_clkfreq = pdata ? pdata->eth_clkfreq : 0;
Thierry Redinga1702852009-03-27 00:12:24 -07001040
1041 /* allocate networking device */
1042 netdev = alloc_etherdev(sizeof(struct ethoc));
1043 if (!netdev) {
Thierry Redinga1702852009-03-27 00:12:24 -07001044 ret = -ENOMEM;
1045 goto out;
1046 }
1047
1048 SET_NETDEV_DEV(netdev, &pdev->dev);
1049 platform_set_drvdata(pdev, netdev);
1050
1051 /* obtain I/O memory space */
1052 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1053 if (!res) {
1054 dev_err(&pdev->dev, "cannot obtain I/O memory space\n");
1055 ret = -ENXIO;
1056 goto free;
1057 }
1058
1059 mmio = devm_request_mem_region(&pdev->dev, res->start,
Tobias Klauserd8645842010-01-15 01:48:22 -08001060 resource_size(res), res->name);
Julia Lawall463889e2009-07-27 06:13:30 +00001061 if (!mmio) {
Thierry Redinga1702852009-03-27 00:12:24 -07001062 dev_err(&pdev->dev, "cannot request I/O memory space\n");
1063 ret = -ENXIO;
1064 goto free;
1065 }
1066
1067 netdev->base_addr = mmio->start;
1068
1069 /* obtain buffer memory space */
1070 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Thomas Chou0baa0802009-10-04 23:33:20 +00001071 if (res) {
1072 mem = devm_request_mem_region(&pdev->dev, res->start,
Tobias Klauserd8645842010-01-15 01:48:22 -08001073 resource_size(res), res->name);
Thomas Chou0baa0802009-10-04 23:33:20 +00001074 if (!mem) {
1075 dev_err(&pdev->dev, "cannot request memory space\n");
1076 ret = -ENXIO;
1077 goto free;
1078 }
1079
1080 netdev->mem_start = mem->start;
1081 netdev->mem_end = mem->end;
Thierry Redinga1702852009-03-27 00:12:24 -07001082 }
1083
Thierry Redinga1702852009-03-27 00:12:24 -07001084
1085 /* obtain device IRQ number */
1086 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1087 if (!res) {
1088 dev_err(&pdev->dev, "cannot obtain IRQ\n");
1089 ret = -ENXIO;
1090 goto free;
1091 }
1092
1093 netdev->irq = res->start;
1094
1095 /* setup driver-private data */
1096 priv = netdev_priv(netdev);
1097 priv->netdev = netdev;
Thomas Chou0baa0802009-10-04 23:33:20 +00001098 priv->dma_alloc = 0;
Joe Perches28f65c112011-06-09 09:13:32 -07001099 priv->io_region_size = resource_size(mmio);
Thierry Redinga1702852009-03-27 00:12:24 -07001100
1101 priv->iobase = devm_ioremap_nocache(&pdev->dev, netdev->base_addr,
Tobias Klauserd8645842010-01-15 01:48:22 -08001102 resource_size(mmio));
Thierry Redinga1702852009-03-27 00:12:24 -07001103 if (!priv->iobase) {
1104 dev_err(&pdev->dev, "cannot remap I/O memory space\n");
1105 ret = -ENXIO;
Florian Fainelli386512d2016-07-12 16:04:35 -07001106 goto free;
Thierry Redinga1702852009-03-27 00:12:24 -07001107 }
1108
Thomas Chou0baa0802009-10-04 23:33:20 +00001109 if (netdev->mem_end) {
1110 priv->membase = devm_ioremap_nocache(&pdev->dev,
Tobias Klauserd8645842010-01-15 01:48:22 -08001111 netdev->mem_start, resource_size(mem));
Thomas Chou0baa0802009-10-04 23:33:20 +00001112 if (!priv->membase) {
1113 dev_err(&pdev->dev, "cannot remap memory space\n");
1114 ret = -ENXIO;
Florian Fainelli386512d2016-07-12 16:04:35 -07001115 goto free;
Thomas Chou0baa0802009-10-04 23:33:20 +00001116 }
1117 } else {
1118 /* Allocate buffer memory */
Jonas Bonna71fba92010-06-11 02:47:40 +00001119 priv->membase = dmam_alloc_coherent(&pdev->dev,
Thomas Chou0baa0802009-10-04 23:33:20 +00001120 buffer_size, (void *)&netdev->mem_start,
1121 GFP_KERNEL);
1122 if (!priv->membase) {
1123 dev_err(&pdev->dev, "cannot allocate %dB buffer\n",
1124 buffer_size);
1125 ret = -ENOMEM;
Florian Fainelli386512d2016-07-12 16:04:35 -07001126 goto free;
Thomas Chou0baa0802009-10-04 23:33:20 +00001127 }
1128 netdev->mem_end = netdev->mem_start + buffer_size;
1129 priv->dma_alloc = buffer_size;
Thierry Redinga1702852009-03-27 00:12:24 -07001130 }
1131
Max Filippov06e60e592015-09-22 14:27:16 +03001132 priv->big_endian = pdata ? pdata->big_endian :
1133 of_device_is_big_endian(pdev->dev.of_node);
1134
Jonas Bonnc527f812010-06-11 02:47:34 +00001135 /* calculate the number of TX/RX buffers, maximum 128 supported */
1136 num_bd = min_t(unsigned int,
1137 128, (netdev->mem_end - netdev->mem_start + 1) / ETHOC_BUFSIZ);
Jonas Bonn6a632622010-11-25 02:30:32 +00001138 if (num_bd < 4) {
1139 ret = -ENODEV;
Florian Fainelli386512d2016-07-12 16:04:35 -07001140 goto free;
Jonas Bonn6a632622010-11-25 02:30:32 +00001141 }
Max Filippovbee7bac2014-01-31 09:41:07 +04001142 priv->num_bd = num_bd;
Jonas Bonn6a632622010-11-25 02:30:32 +00001143 /* num_tx must be a power of two */
1144 priv->num_tx = rounddown_pow_of_two(num_bd >> 1);
Jonas Bonnc527f812010-06-11 02:47:34 +00001145 priv->num_rx = num_bd - priv->num_tx;
1146
Jonas Bonn6a632622010-11-25 02:30:32 +00001147 dev_dbg(&pdev->dev, "ethoc: num_tx: %d num_rx: %d\n",
1148 priv->num_tx, priv->num_rx);
1149
Barry Grussling72aa8e12013-01-27 18:44:36 +00001150 priv->vma = devm_kzalloc(&pdev->dev, num_bd*sizeof(void *), GFP_KERNEL);
Jonas Bonnf8555ad02010-06-11 02:47:35 +00001151 if (!priv->vma) {
1152 ret = -ENOMEM;
Florian Fainelli386512d2016-07-12 16:04:35 -07001153 goto free;
Jonas Bonnf8555ad02010-06-11 02:47:35 +00001154 }
1155
Thierry Redinga1702852009-03-27 00:12:24 -07001156 /* Allow the platform setup code to pass in a MAC address. */
Max Filippova13aff02014-02-04 03:33:10 +04001157 if (pdata) {
Thierry Redinga1702852009-03-27 00:12:24 -07001158 memcpy(netdev->dev_addr, pdata->hwaddr, IFHWADDRLEN);
1159 priv->phy_id = pdata->phy_id;
Jonas Bonne0f42582010-11-25 02:30:25 +00001160 } else {
Barry Grussling72aa8e12013-01-27 18:44:36 +00001161 const uint8_t *mac;
Jonas Bonne0f42582010-11-25 02:30:25 +00001162
1163 mac = of_get_property(pdev->dev.of_node,
1164 "local-mac-address",
1165 NULL);
1166 if (mac)
1167 memcpy(netdev->dev_addr, mac, IFHWADDRLEN);
Tobias Klauser444c5f92015-09-09 11:24:29 +02001168 priv->phy_id = -1;
Thierry Redinga1702852009-03-27 00:12:24 -07001169 }
1170
1171 /* Check that the given MAC address is valid. If it isn't, read the
Barry Grussling72aa8e12013-01-27 18:44:36 +00001172 * current MAC from the controller.
1173 */
Thierry Redinga1702852009-03-27 00:12:24 -07001174 if (!is_valid_ether_addr(netdev->dev_addr))
1175 ethoc_get_mac_address(netdev, netdev->dev_addr);
1176
1177 /* Check the MAC again for validity, if it still isn't choose and
Barry Grussling72aa8e12013-01-27 18:44:36 +00001178 * program a random one.
1179 */
Danny Kukawka939d2252012-02-17 05:43:29 +00001180 if (!is_valid_ether_addr(netdev->dev_addr)) {
Joe Perches7efd26d2012-07-12 19:33:06 +00001181 eth_random_addr(netdev->dev_addr);
Danny Kukawka939d2252012-02-17 05:43:29 +00001182 random_mac = true;
1183 }
Thierry Redinga1702852009-03-27 00:12:24 -07001184
Jiri Pirkoefc61a32013-01-06 03:25:45 +00001185 ethoc_do_set_mac_address(netdev);
Danny Kukawka939d2252012-02-17 05:43:29 +00001186
1187 if (random_mac)
Jiri Pirkoe41b2d72013-01-01 03:30:15 +00001188 netdev->addr_assign_type = NET_ADDR_RANDOM;
Thierry Redinga1702852009-03-27 00:12:24 -07001189
Max Filippova13aff02014-02-04 03:33:10 +04001190 /* Allow the platform setup code to adjust MII management bus clock. */
1191 if (!eth_clkfreq) {
1192 struct clk *clk = devm_clk_get(&pdev->dev, NULL);
1193
1194 if (!IS_ERR(clk)) {
1195 priv->clk = clk;
1196 clk_prepare_enable(clk);
1197 eth_clkfreq = clk_get_rate(clk);
1198 }
1199 }
1200 if (eth_clkfreq) {
1201 u32 clkdiv = MIIMODER_CLKDIV(eth_clkfreq / 2500000 + 1);
1202
1203 if (!clkdiv)
1204 clkdiv = 2;
1205 dev_dbg(&pdev->dev, "setting MII clkdiv to %u\n", clkdiv);
1206 ethoc_write(priv, MIIMODER,
1207 (ethoc_read(priv, MIIMODER) & MIIMODER_NOPRE) |
1208 clkdiv);
1209 }
1210
Thierry Redinga1702852009-03-27 00:12:24 -07001211 /* register MII bus */
1212 priv->mdio = mdiobus_alloc();
1213 if (!priv->mdio) {
1214 ret = -ENOMEM;
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001215 goto free2;
Thierry Redinga1702852009-03-27 00:12:24 -07001216 }
1217
1218 priv->mdio->name = "ethoc-mdio";
1219 snprintf(priv->mdio->id, MII_BUS_ID_SIZE, "%s-%d",
1220 priv->mdio->name, pdev->id);
1221 priv->mdio->read = ethoc_mdio_read;
1222 priv->mdio->write = ethoc_mdio_write;
Thierry Redinga1702852009-03-27 00:12:24 -07001223 priv->mdio->priv = priv;
1224
Thierry Redinga1702852009-03-27 00:12:24 -07001225 ret = mdiobus_register(priv->mdio);
1226 if (ret) {
1227 dev_err(&netdev->dev, "failed to register MDIO bus\n");
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001228 goto free2;
Thierry Redinga1702852009-03-27 00:12:24 -07001229 }
1230
1231 ret = ethoc_mdio_probe(netdev);
1232 if (ret) {
1233 dev_err(&netdev->dev, "failed to probe MDIO bus\n");
1234 goto error;
1235 }
1236
Thierry Redinga1702852009-03-27 00:12:24 -07001237 /* setup the net_device structure */
1238 netdev->netdev_ops = &ethoc_netdev_ops;
1239 netdev->watchdog_timeo = ETHOC_TIMEOUT;
1240 netdev->features |= 0;
Max Filippovfba91102014-01-31 09:41:04 +04001241 netdev->ethtool_ops = &ethoc_ethtool_ops;
Thierry Redinga1702852009-03-27 00:12:24 -07001242
1243 /* setup NAPI */
Thierry Redinga1702852009-03-27 00:12:24 -07001244 netif_napi_add(netdev, &priv->napi, ethoc_poll, 64);
1245
Thierry Redinga1702852009-03-27 00:12:24 -07001246 spin_lock_init(&priv->lock);
1247
1248 ret = register_netdev(netdev);
1249 if (ret < 0) {
1250 dev_err(&netdev->dev, "failed to register interface\n");
Thomas Chouee02a4e2010-05-23 16:44:02 +00001251 goto error2;
Thierry Redinga1702852009-03-27 00:12:24 -07001252 }
1253
1254 goto out;
1255
Thomas Chouee02a4e2010-05-23 16:44:02 +00001256error2:
1257 netif_napi_del(&priv->napi);
Thierry Redinga1702852009-03-27 00:12:24 -07001258error:
1259 mdiobus_unregister(priv->mdio);
Thierry Redinga1702852009-03-27 00:12:24 -07001260 mdiobus_free(priv->mdio);
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001261free2:
Max Filippova13aff02014-02-04 03:33:10 +04001262 if (priv->clk)
1263 clk_disable_unprepare(priv->clk);
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001264free:
Thierry Redinga1702852009-03-27 00:12:24 -07001265 free_netdev(netdev);
1266out:
1267 return ret;
1268}
1269
1270/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001271 * ethoc_remove - shutdown OpenCores ethernet MAC
Thierry Redinga1702852009-03-27 00:12:24 -07001272 * @pdev: platform device
1273 */
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001274static int ethoc_remove(struct platform_device *pdev)
Thierry Redinga1702852009-03-27 00:12:24 -07001275{
1276 struct net_device *netdev = platform_get_drvdata(pdev);
1277 struct ethoc *priv = netdev_priv(netdev);
1278
Thierry Redinga1702852009-03-27 00:12:24 -07001279 if (netdev) {
Thomas Chouee02a4e2010-05-23 16:44:02 +00001280 netif_napi_del(&priv->napi);
Philippe Reynes11331fc2016-07-15 09:59:11 +02001281 phy_disconnect(netdev->phydev);
Thierry Redinga1702852009-03-27 00:12:24 -07001282
1283 if (priv->mdio) {
1284 mdiobus_unregister(priv->mdio);
Thierry Redinga1702852009-03-27 00:12:24 -07001285 mdiobus_free(priv->mdio);
1286 }
Max Filippova13aff02014-02-04 03:33:10 +04001287 if (priv->clk)
1288 clk_disable_unprepare(priv->clk);
Thierry Redinga1702852009-03-27 00:12:24 -07001289 unregister_netdev(netdev);
1290 free_netdev(netdev);
1291 }
1292
1293 return 0;
1294}
1295
1296#ifdef CONFIG_PM
1297static int ethoc_suspend(struct platform_device *pdev, pm_message_t state)
1298{
1299 return -ENOSYS;
1300}
1301
1302static int ethoc_resume(struct platform_device *pdev)
1303{
1304 return -ENOSYS;
1305}
1306#else
1307# define ethoc_suspend NULL
1308# define ethoc_resume NULL
1309#endif
1310
Fabian Frederickfa2b1832015-03-17 19:37:35 +01001311static const struct of_device_id ethoc_match[] = {
Grant Likelyc9e358d2011-01-21 09:24:48 -07001312 { .compatible = "opencores,ethoc", },
Jonas Bonne0f42582010-11-25 02:30:25 +00001313 {},
1314};
1315MODULE_DEVICE_TABLE(of, ethoc_match);
Jonas Bonne0f42582010-11-25 02:30:25 +00001316
Thierry Redinga1702852009-03-27 00:12:24 -07001317static struct platform_driver ethoc_driver = {
1318 .probe = ethoc_probe,
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001319 .remove = ethoc_remove,
Thierry Redinga1702852009-03-27 00:12:24 -07001320 .suspend = ethoc_suspend,
1321 .resume = ethoc_resume,
1322 .driver = {
1323 .name = "ethoc",
Jonas Bonne0f42582010-11-25 02:30:25 +00001324 .of_match_table = ethoc_match,
Thierry Redinga1702852009-03-27 00:12:24 -07001325 },
1326};
1327
Axel Lindb62f682011-11-27 16:44:17 +00001328module_platform_driver(ethoc_driver);
Thierry Redinga1702852009-03-27 00:12:24 -07001329
1330MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de>");
1331MODULE_DESCRIPTION("OpenCores Ethernet MAC driver");
1332MODULE_LICENSE("GPL v2");
1333