blob: 8d0cb5ce87ee5e4bbfd767d5cbde51754ea1bb4c [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>
Florian Fainellib34296a2016-12-04 12:40:29 -080026#include <linux/of_net.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040027#include <linux/module.h>
Thierry Redinga1702852009-03-27 00:12:24 -070028#include <net/ethoc.h>
29
Thomas Chou0baa0802009-10-04 23:33:20 +000030static int buffer_size = 0x8000; /* 32 KBytes */
31module_param(buffer_size, int, 0);
32MODULE_PARM_DESC(buffer_size, "DMA buffer allocation size");
33
Thierry Redinga1702852009-03-27 00:12:24 -070034/* register offsets */
35#define MODER 0x00
36#define INT_SOURCE 0x04
37#define INT_MASK 0x08
38#define IPGT 0x0c
39#define IPGR1 0x10
40#define IPGR2 0x14
41#define PACKETLEN 0x18
42#define COLLCONF 0x1c
43#define TX_BD_NUM 0x20
44#define CTRLMODER 0x24
45#define MIIMODER 0x28
46#define MIICOMMAND 0x2c
47#define MIIADDRESS 0x30
48#define MIITX_DATA 0x34
49#define MIIRX_DATA 0x38
50#define MIISTATUS 0x3c
51#define MAC_ADDR0 0x40
52#define MAC_ADDR1 0x44
53#define ETH_HASH0 0x48
54#define ETH_HASH1 0x4c
55#define ETH_TXCTRL 0x50
Max Filippov11129092014-01-31 09:41:06 +040056#define ETH_END 0x54
Thierry Redinga1702852009-03-27 00:12:24 -070057
58/* mode register */
59#define MODER_RXEN (1 << 0) /* receive enable */
60#define MODER_TXEN (1 << 1) /* transmit enable */
61#define MODER_NOPRE (1 << 2) /* no preamble */
62#define MODER_BRO (1 << 3) /* broadcast address */
63#define MODER_IAM (1 << 4) /* individual address mode */
64#define MODER_PRO (1 << 5) /* promiscuous mode */
65#define MODER_IFG (1 << 6) /* interframe gap for incoming frames */
66#define MODER_LOOP (1 << 7) /* loopback */
67#define MODER_NBO (1 << 8) /* no back-off */
68#define MODER_EDE (1 << 9) /* excess defer enable */
69#define MODER_FULLD (1 << 10) /* full duplex */
70#define MODER_RESET (1 << 11) /* FIXME: reset (undocumented) */
71#define MODER_DCRC (1 << 12) /* delayed CRC enable */
72#define MODER_CRC (1 << 13) /* CRC enable */
73#define MODER_HUGE (1 << 14) /* huge packets enable */
74#define MODER_PAD (1 << 15) /* padding enabled */
75#define MODER_RSM (1 << 16) /* receive small packets */
76
77/* interrupt source and mask registers */
78#define INT_MASK_TXF (1 << 0) /* transmit frame */
79#define INT_MASK_TXE (1 << 1) /* transmit error */
80#define INT_MASK_RXF (1 << 2) /* receive frame */
81#define INT_MASK_RXE (1 << 3) /* receive error */
82#define INT_MASK_BUSY (1 << 4)
83#define INT_MASK_TXC (1 << 5) /* transmit control frame */
84#define INT_MASK_RXC (1 << 6) /* receive control frame */
85
86#define INT_MASK_TX (INT_MASK_TXF | INT_MASK_TXE)
87#define INT_MASK_RX (INT_MASK_RXF | INT_MASK_RXE)
88
89#define INT_MASK_ALL ( \
90 INT_MASK_TXF | INT_MASK_TXE | \
91 INT_MASK_RXF | INT_MASK_RXE | \
92 INT_MASK_TXC | INT_MASK_RXC | \
93 INT_MASK_BUSY \
94 )
95
96/* packet length register */
97#define PACKETLEN_MIN(min) (((min) & 0xffff) << 16)
98#define PACKETLEN_MAX(max) (((max) & 0xffff) << 0)
99#define PACKETLEN_MIN_MAX(min, max) (PACKETLEN_MIN(min) | \
100 PACKETLEN_MAX(max))
101
102/* transmit buffer number register */
103#define TX_BD_NUM_VAL(x) (((x) <= 0x80) ? (x) : 0x80)
104
105/* control module mode register */
106#define CTRLMODER_PASSALL (1 << 0) /* pass all receive frames */
107#define CTRLMODER_RXFLOW (1 << 1) /* receive control flow */
108#define CTRLMODER_TXFLOW (1 << 2) /* transmit control flow */
109
110/* MII mode register */
111#define MIIMODER_CLKDIV(x) ((x) & 0xfe) /* needs to be an even number */
112#define MIIMODER_NOPRE (1 << 8) /* no preamble */
113
114/* MII command register */
115#define MIICOMMAND_SCAN (1 << 0) /* scan status */
116#define MIICOMMAND_READ (1 << 1) /* read status */
117#define MIICOMMAND_WRITE (1 << 2) /* write control data */
118
119/* MII address register */
120#define MIIADDRESS_FIAD(x) (((x) & 0x1f) << 0)
121#define MIIADDRESS_RGAD(x) (((x) & 0x1f) << 8)
122#define MIIADDRESS_ADDR(phy, reg) (MIIADDRESS_FIAD(phy) | \
123 MIIADDRESS_RGAD(reg))
124
125/* MII transmit data register */
126#define MIITX_DATA_VAL(x) ((x) & 0xffff)
127
128/* MII receive data register */
129#define MIIRX_DATA_VAL(x) ((x) & 0xffff)
130
131/* MII status register */
132#define MIISTATUS_LINKFAIL (1 << 0)
133#define MIISTATUS_BUSY (1 << 1)
134#define MIISTATUS_INVALID (1 << 2)
135
136/* TX buffer descriptor */
137#define TX_BD_CS (1 << 0) /* carrier sense lost */
138#define TX_BD_DF (1 << 1) /* defer indication */
139#define TX_BD_LC (1 << 2) /* late collision */
140#define TX_BD_RL (1 << 3) /* retransmission limit */
141#define TX_BD_RETRY_MASK (0x00f0)
142#define TX_BD_RETRY(x) (((x) & 0x00f0) >> 4)
143#define TX_BD_UR (1 << 8) /* transmitter underrun */
144#define TX_BD_CRC (1 << 11) /* TX CRC enable */
145#define TX_BD_PAD (1 << 12) /* pad enable for short packets */
146#define TX_BD_WRAP (1 << 13)
147#define TX_BD_IRQ (1 << 14) /* interrupt request enable */
148#define TX_BD_READY (1 << 15) /* TX buffer ready */
149#define TX_BD_LEN(x) (((x) & 0xffff) << 16)
150#define TX_BD_LEN_MASK (0xffff << 16)
151
152#define TX_BD_STATS (TX_BD_CS | TX_BD_DF | TX_BD_LC | \
153 TX_BD_RL | TX_BD_RETRY_MASK | TX_BD_UR)
154
155/* RX buffer descriptor */
156#define RX_BD_LC (1 << 0) /* late collision */
157#define RX_BD_CRC (1 << 1) /* RX CRC error */
158#define RX_BD_SF (1 << 2) /* short frame */
159#define RX_BD_TL (1 << 3) /* too long */
160#define RX_BD_DN (1 << 4) /* dribble nibble */
161#define RX_BD_IS (1 << 5) /* invalid symbol */
162#define RX_BD_OR (1 << 6) /* receiver overrun */
163#define RX_BD_MISS (1 << 7)
164#define RX_BD_CF (1 << 8) /* control frame */
165#define RX_BD_WRAP (1 << 13)
166#define RX_BD_IRQ (1 << 14) /* interrupt request enable */
167#define RX_BD_EMPTY (1 << 15)
168#define RX_BD_LEN(x) (((x) & 0xffff) << 16)
169
170#define RX_BD_STATS (RX_BD_LC | RX_BD_CRC | RX_BD_SF | RX_BD_TL | \
171 RX_BD_DN | RX_BD_IS | RX_BD_OR | RX_BD_MISS)
172
173#define ETHOC_BUFSIZ 1536
174#define ETHOC_ZLEN 64
175#define ETHOC_BD_BASE 0x400
176#define ETHOC_TIMEOUT (HZ / 2)
177#define ETHOC_MII_TIMEOUT (1 + (HZ / 5))
178
179/**
180 * struct ethoc - driver-private device structure
181 * @iobase: pointer to I/O memory region
182 * @membase: pointer to buffer memory region
Thomas Chou0baa0802009-10-04 23:33:20 +0000183 * @dma_alloc: dma allocated buffer size
Thomas Chouee02a4e2010-05-23 16:44:02 +0000184 * @io_region_size: I/O memory region size
Max Filippovbee7bac2014-01-31 09:41:07 +0400185 * @num_bd: number of buffer descriptors
Thierry Redinga1702852009-03-27 00:12:24 -0700186 * @num_tx: number of send buffers
187 * @cur_tx: last send buffer written
188 * @dty_tx: last buffer actually sent
189 * @num_rx: number of receive buffers
190 * @cur_rx: current receive buffer
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000191 * @vma: pointer to array of virtual memory addresses for buffers
Thierry Redinga1702852009-03-27 00:12:24 -0700192 * @netdev: pointer to network device structure
193 * @napi: NAPI structure
Thierry Redinga1702852009-03-27 00:12:24 -0700194 * @msg_enable: device state flags
Thierry Redinga1702852009-03-27 00:12:24 -0700195 * @lock: device lock
Thierry Redinga1702852009-03-27 00:12:24 -0700196 * @mdio: MDIO bus for PHY access
197 * @phy_id: address of attached PHY
198 */
199struct ethoc {
200 void __iomem *iobase;
201 void __iomem *membase;
Thomas Chou0baa0802009-10-04 23:33:20 +0000202 int dma_alloc;
Thomas Chouee02a4e2010-05-23 16:44:02 +0000203 resource_size_t io_region_size;
Max Filippov06e60e592015-09-22 14:27:16 +0300204 bool big_endian;
Thierry Redinga1702852009-03-27 00:12:24 -0700205
Max Filippovbee7bac2014-01-31 09:41:07 +0400206 unsigned int num_bd;
Thierry Redinga1702852009-03-27 00:12:24 -0700207 unsigned int num_tx;
208 unsigned int cur_tx;
209 unsigned int dty_tx;
210
211 unsigned int num_rx;
212 unsigned int cur_rx;
213
Barry Grussling72aa8e12013-01-27 18:44:36 +0000214 void **vma;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000215
Thierry Redinga1702852009-03-27 00:12:24 -0700216 struct net_device *netdev;
217 struct napi_struct napi;
Thierry Redinga1702852009-03-27 00:12:24 -0700218 u32 msg_enable;
219
Thierry Redinga1702852009-03-27 00:12:24 -0700220 spinlock_t lock;
221
Thierry Redinga1702852009-03-27 00:12:24 -0700222 struct mii_bus *mdio;
Max Filippova13aff02014-02-04 03:33:10 +0400223 struct clk *clk;
Thierry Redinga1702852009-03-27 00:12:24 -0700224 s8 phy_id;
Florian Fainelliabf7e532016-12-04 12:40:28 -0800225
226 int old_link;
227 int old_duplex;
Thierry Redinga1702852009-03-27 00:12:24 -0700228};
229
230/**
231 * struct ethoc_bd - buffer descriptor
232 * @stat: buffer statistics
233 * @addr: physical memory address
234 */
235struct ethoc_bd {
236 u32 stat;
237 u32 addr;
238};
239
Thomas Chou16dd18b2009-10-07 14:16:42 +0000240static inline u32 ethoc_read(struct ethoc *dev, loff_t offset)
Thierry Redinga1702852009-03-27 00:12:24 -0700241{
Max Filippov06e60e592015-09-22 14:27:16 +0300242 if (dev->big_endian)
243 return ioread32be(dev->iobase + offset);
244 else
245 return ioread32(dev->iobase + offset);
Thierry Redinga1702852009-03-27 00:12:24 -0700246}
247
Thomas Chou16dd18b2009-10-07 14:16:42 +0000248static inline void ethoc_write(struct ethoc *dev, loff_t offset, u32 data)
Thierry Redinga1702852009-03-27 00:12:24 -0700249{
Max Filippov06e60e592015-09-22 14:27:16 +0300250 if (dev->big_endian)
251 iowrite32be(data, dev->iobase + offset);
252 else
253 iowrite32(data, dev->iobase + offset);
Thierry Redinga1702852009-03-27 00:12:24 -0700254}
255
Thomas Chou16dd18b2009-10-07 14:16:42 +0000256static inline void ethoc_read_bd(struct ethoc *dev, int index,
257 struct ethoc_bd *bd)
Thierry Redinga1702852009-03-27 00:12:24 -0700258{
259 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
260 bd->stat = ethoc_read(dev, offset + 0);
261 bd->addr = ethoc_read(dev, offset + 4);
262}
263
Thomas Chou16dd18b2009-10-07 14:16:42 +0000264static inline void ethoc_write_bd(struct ethoc *dev, int index,
Thierry Redinga1702852009-03-27 00:12:24 -0700265 const struct ethoc_bd *bd)
266{
267 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
268 ethoc_write(dev, offset + 0, bd->stat);
269 ethoc_write(dev, offset + 4, bd->addr);
270}
271
Thomas Chou16dd18b2009-10-07 14:16:42 +0000272static inline void ethoc_enable_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700273{
274 u32 imask = ethoc_read(dev, INT_MASK);
275 imask |= mask;
276 ethoc_write(dev, INT_MASK, imask);
277}
278
Thomas Chou16dd18b2009-10-07 14:16:42 +0000279static inline void ethoc_disable_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700280{
281 u32 imask = ethoc_read(dev, INT_MASK);
282 imask &= ~mask;
283 ethoc_write(dev, INT_MASK, imask);
284}
285
Thomas Chou16dd18b2009-10-07 14:16:42 +0000286static inline void ethoc_ack_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700287{
288 ethoc_write(dev, INT_SOURCE, mask);
289}
290
Thomas Chou16dd18b2009-10-07 14:16:42 +0000291static inline void ethoc_enable_rx_and_tx(struct ethoc *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700292{
293 u32 mode = ethoc_read(dev, MODER);
294 mode |= MODER_RXEN | MODER_TXEN;
295 ethoc_write(dev, MODER, mode);
296}
297
Thomas Chou16dd18b2009-10-07 14:16:42 +0000298static inline void ethoc_disable_rx_and_tx(struct ethoc *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700299{
300 u32 mode = ethoc_read(dev, MODER);
301 mode &= ~(MODER_RXEN | MODER_TXEN);
302 ethoc_write(dev, MODER, mode);
303}
304
David S. Miller5cf3e032010-07-07 18:23:19 -0700305static int ethoc_init_ring(struct ethoc *dev, unsigned long mem_start)
Thierry Redinga1702852009-03-27 00:12:24 -0700306{
307 struct ethoc_bd bd;
308 int i;
Barry Grussling72aa8e12013-01-27 18:44:36 +0000309 void *vma;
Thierry Redinga1702852009-03-27 00:12:24 -0700310
311 dev->cur_tx = 0;
312 dev->dty_tx = 0;
313 dev->cur_rx = 0;
314
Jonas Bonnee4f56b2010-06-11 02:47:36 +0000315 ethoc_write(dev, TX_BD_NUM, dev->num_tx);
316
Thierry Redinga1702852009-03-27 00:12:24 -0700317 /* setup transmission buffers */
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000318 bd.addr = mem_start;
Thierry Redinga1702852009-03-27 00:12:24 -0700319 bd.stat = TX_BD_IRQ | TX_BD_CRC;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000320 vma = dev->membase;
Thierry Redinga1702852009-03-27 00:12:24 -0700321
322 for (i = 0; i < dev->num_tx; i++) {
323 if (i == dev->num_tx - 1)
324 bd.stat |= TX_BD_WRAP;
325
326 ethoc_write_bd(dev, i, &bd);
327 bd.addr += ETHOC_BUFSIZ;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000328
329 dev->vma[i] = vma;
330 vma += ETHOC_BUFSIZ;
Thierry Redinga1702852009-03-27 00:12:24 -0700331 }
332
Thierry Redinga1702852009-03-27 00:12:24 -0700333 bd.stat = RX_BD_EMPTY | RX_BD_IRQ;
334
335 for (i = 0; i < dev->num_rx; i++) {
336 if (i == dev->num_rx - 1)
337 bd.stat |= RX_BD_WRAP;
338
339 ethoc_write_bd(dev, dev->num_tx + i, &bd);
340 bd.addr += ETHOC_BUFSIZ;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000341
342 dev->vma[dev->num_tx + i] = vma;
343 vma += ETHOC_BUFSIZ;
Thierry Redinga1702852009-03-27 00:12:24 -0700344 }
345
346 return 0;
347}
348
349static int ethoc_reset(struct ethoc *dev)
350{
351 u32 mode;
352
353 /* TODO: reset controller? */
354
355 ethoc_disable_rx_and_tx(dev);
356
357 /* TODO: setup registers */
358
359 /* enable FCS generation and automatic padding */
360 mode = ethoc_read(dev, MODER);
361 mode |= MODER_CRC | MODER_PAD;
362 ethoc_write(dev, MODER, mode);
363
364 /* set full-duplex mode */
365 mode = ethoc_read(dev, MODER);
366 mode |= MODER_FULLD;
367 ethoc_write(dev, MODER, mode);
368 ethoc_write(dev, IPGT, 0x15);
369
370 ethoc_ack_irq(dev, INT_MASK_ALL);
371 ethoc_enable_irq(dev, INT_MASK_ALL);
372 ethoc_enable_rx_and_tx(dev);
373 return 0;
374}
375
376static unsigned int ethoc_update_rx_stats(struct ethoc *dev,
377 struct ethoc_bd *bd)
378{
379 struct net_device *netdev = dev->netdev;
380 unsigned int ret = 0;
381
382 if (bd->stat & RX_BD_TL) {
383 dev_err(&netdev->dev, "RX: frame too long\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000384 netdev->stats.rx_length_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700385 ret++;
386 }
387
388 if (bd->stat & RX_BD_SF) {
389 dev_err(&netdev->dev, "RX: frame too short\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000390 netdev->stats.rx_length_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700391 ret++;
392 }
393
394 if (bd->stat & RX_BD_DN) {
395 dev_err(&netdev->dev, "RX: dribble nibble\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000396 netdev->stats.rx_frame_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700397 }
398
399 if (bd->stat & RX_BD_CRC) {
400 dev_err(&netdev->dev, "RX: wrong CRC\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000401 netdev->stats.rx_crc_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700402 ret++;
403 }
404
405 if (bd->stat & RX_BD_OR) {
406 dev_err(&netdev->dev, "RX: overrun\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000407 netdev->stats.rx_over_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700408 ret++;
409 }
410
411 if (bd->stat & RX_BD_MISS)
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000412 netdev->stats.rx_missed_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700413
414 if (bd->stat & RX_BD_LC) {
415 dev_err(&netdev->dev, "RX: late collision\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000416 netdev->stats.collisions++;
Thierry Redinga1702852009-03-27 00:12:24 -0700417 ret++;
418 }
419
420 return ret;
421}
422
423static int ethoc_rx(struct net_device *dev, int limit)
424{
425 struct ethoc *priv = netdev_priv(dev);
426 int count;
427
428 for (count = 0; count < limit; ++count) {
429 unsigned int entry;
430 struct ethoc_bd bd;
431
Jonas Bonn6a632622010-11-25 02:30:32 +0000432 entry = priv->num_tx + priv->cur_rx;
Thierry Redinga1702852009-03-27 00:12:24 -0700433 ethoc_read_bd(priv, entry, &bd);
Jonas Bonn20f70dd2010-11-25 02:30:28 +0000434 if (bd.stat & RX_BD_EMPTY) {
435 ethoc_ack_irq(priv, INT_MASK_RX);
436 /* If packet (interrupt) came in between checking
437 * BD_EMTPY and clearing the interrupt source, then we
438 * risk missing the packet as the RX interrupt won't
439 * trigger right away when we reenable it; hence, check
440 * BD_EMTPY here again to make sure there isn't such a
441 * packet waiting for us...
442 */
443 ethoc_read_bd(priv, entry, &bd);
444 if (bd.stat & RX_BD_EMPTY)
445 break;
446 }
Thierry Redinga1702852009-03-27 00:12:24 -0700447
448 if (ethoc_update_rx_stats(priv, &bd) == 0) {
449 int size = bd.stat >> 16;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000450 struct sk_buff *skb;
Thomas Chou050f91d2009-10-04 23:33:19 +0000451
452 size -= 4; /* strip the CRC */
Eric Dumazet89d71a62009-10-13 05:34:20 +0000453 skb = netdev_alloc_skb_ip_align(dev, size);
Thomas Chou050f91d2009-10-04 23:33:19 +0000454
Thierry Redinga1702852009-03-27 00:12:24 -0700455 if (likely(skb)) {
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000456 void *src = priv->vma[entry];
Thierry Redinga1702852009-03-27 00:12:24 -0700457 memcpy_fromio(skb_put(skb, size), src, size);
458 skb->protocol = eth_type_trans(skb, dev);
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000459 dev->stats.rx_packets++;
460 dev->stats.rx_bytes += size;
Thierry Redinga1702852009-03-27 00:12:24 -0700461 netif_receive_skb(skb);
462 } else {
463 if (net_ratelimit())
Barry Grussling72aa8e12013-01-27 18:44:36 +0000464 dev_warn(&dev->dev,
465 "low on memory - packet dropped\n");
Thierry Redinga1702852009-03-27 00:12:24 -0700466
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000467 dev->stats.rx_dropped++;
Thierry Redinga1702852009-03-27 00:12:24 -0700468 break;
469 }
470 }
471
472 /* clear the buffer descriptor so it can be reused */
473 bd.stat &= ~RX_BD_STATS;
474 bd.stat |= RX_BD_EMPTY;
475 ethoc_write_bd(priv, entry, &bd);
Jonas Bonn6a632622010-11-25 02:30:32 +0000476 if (++priv->cur_rx == priv->num_rx)
477 priv->cur_rx = 0;
Thierry Redinga1702852009-03-27 00:12:24 -0700478 }
479
480 return count;
481}
482
Jonas Bonn4f64bcb2010-11-25 02:30:31 +0000483static void ethoc_update_tx_stats(struct ethoc *dev, struct ethoc_bd *bd)
Thierry Redinga1702852009-03-27 00:12:24 -0700484{
485 struct net_device *netdev = dev->netdev;
486
487 if (bd->stat & TX_BD_LC) {
488 dev_err(&netdev->dev, "TX: late collision\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000489 netdev->stats.tx_window_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700490 }
491
492 if (bd->stat & TX_BD_RL) {
493 dev_err(&netdev->dev, "TX: retransmit limit\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000494 netdev->stats.tx_aborted_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700495 }
496
497 if (bd->stat & TX_BD_UR) {
498 dev_err(&netdev->dev, "TX: underrun\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000499 netdev->stats.tx_fifo_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700500 }
501
502 if (bd->stat & TX_BD_CS) {
503 dev_err(&netdev->dev, "TX: carrier sense lost\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000504 netdev->stats.tx_carrier_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700505 }
506
507 if (bd->stat & TX_BD_STATS)
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000508 netdev->stats.tx_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700509
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000510 netdev->stats.collisions += (bd->stat >> 4) & 0xf;
511 netdev->stats.tx_bytes += bd->stat >> 16;
512 netdev->stats.tx_packets++;
Thierry Redinga1702852009-03-27 00:12:24 -0700513}
514
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000515static int ethoc_tx(struct net_device *dev, int limit)
Thierry Redinga1702852009-03-27 00:12:24 -0700516{
517 struct ethoc *priv = netdev_priv(dev);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000518 int count;
519 struct ethoc_bd bd;
Thierry Redinga1702852009-03-27 00:12:24 -0700520
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000521 for (count = 0; count < limit; ++count) {
522 unsigned int entry;
Thierry Redinga1702852009-03-27 00:12:24 -0700523
Jonas Bonn6a632622010-11-25 02:30:32 +0000524 entry = priv->dty_tx & (priv->num_tx-1);
Thierry Redinga1702852009-03-27 00:12:24 -0700525
526 ethoc_read_bd(priv, entry, &bd);
Thierry Redinga1702852009-03-27 00:12:24 -0700527
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000528 if (bd.stat & TX_BD_READY || (priv->dty_tx == priv->cur_tx)) {
529 ethoc_ack_irq(priv, INT_MASK_TX);
530 /* If interrupt came in between reading in the BD
531 * and clearing the interrupt source, then we risk
532 * missing the event as the TX interrupt won't trigger
533 * right away when we reenable it; hence, check
534 * BD_EMPTY here again to make sure there isn't such an
535 * event pending...
536 */
537 ethoc_read_bd(priv, entry, &bd);
538 if (bd.stat & TX_BD_READY ||
539 (priv->dty_tx == priv->cur_tx))
540 break;
541 }
542
Jonas Bonn4f64bcb2010-11-25 02:30:31 +0000543 ethoc_update_tx_stats(priv, &bd);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000544 priv->dty_tx++;
Thierry Redinga1702852009-03-27 00:12:24 -0700545 }
546
547 if ((priv->cur_tx - priv->dty_tx) <= (priv->num_tx / 2))
548 netif_wake_queue(dev);
549
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000550 return count;
Thierry Redinga1702852009-03-27 00:12:24 -0700551}
552
553static irqreturn_t ethoc_interrupt(int irq, void *dev_id)
554{
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000555 struct net_device *dev = dev_id;
Thierry Redinga1702852009-03-27 00:12:24 -0700556 struct ethoc *priv = netdev_priv(dev);
557 u32 pending;
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000558 u32 mask;
Thierry Redinga1702852009-03-27 00:12:24 -0700559
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000560 /* Figure out what triggered the interrupt...
561 * The tricky bit here is that the interrupt source bits get
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300562 * set in INT_SOURCE for an event regardless of whether that
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000563 * event is masked or not. Thus, in order to figure out what
564 * triggered the interrupt, we need to remove the sources
565 * for all events that are currently masked. This behaviour
566 * is not particularly well documented but reasonable...
567 */
568 mask = ethoc_read(priv, INT_MASK);
Thierry Redinga1702852009-03-27 00:12:24 -0700569 pending = ethoc_read(priv, INT_SOURCE);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000570 pending &= mask;
571
Barry Grussling72aa8e12013-01-27 18:44:36 +0000572 if (unlikely(pending == 0))
Thierry Redinga1702852009-03-27 00:12:24 -0700573 return IRQ_NONE;
Thierry Redinga1702852009-03-27 00:12:24 -0700574
Thomas Chou50c54a52009-10-07 14:16:43 +0000575 ethoc_ack_irq(priv, pending);
Thierry Redinga1702852009-03-27 00:12:24 -0700576
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000577 /* We always handle the dropped packet interrupt */
Thierry Redinga1702852009-03-27 00:12:24 -0700578 if (pending & INT_MASK_BUSY) {
579 dev_err(&dev->dev, "packet dropped\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000580 dev->stats.rx_dropped++;
Thierry Redinga1702852009-03-27 00:12:24 -0700581 }
582
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000583 /* Handle receive/transmit event by switching to polling */
584 if (pending & (INT_MASK_TX | INT_MASK_RX)) {
585 ethoc_disable_irq(priv, INT_MASK_TX | INT_MASK_RX);
586 napi_schedule(&priv->napi);
Thierry Redinga1702852009-03-27 00:12:24 -0700587 }
588
Thierry Redinga1702852009-03-27 00:12:24 -0700589 return IRQ_HANDLED;
590}
591
592static int ethoc_get_mac_address(struct net_device *dev, void *addr)
593{
594 struct ethoc *priv = netdev_priv(dev);
595 u8 *mac = (u8 *)addr;
596 u32 reg;
597
598 reg = ethoc_read(priv, MAC_ADDR0);
599 mac[2] = (reg >> 24) & 0xff;
600 mac[3] = (reg >> 16) & 0xff;
601 mac[4] = (reg >> 8) & 0xff;
602 mac[5] = (reg >> 0) & 0xff;
603
604 reg = ethoc_read(priv, MAC_ADDR1);
605 mac[0] = (reg >> 8) & 0xff;
606 mac[1] = (reg >> 0) & 0xff;
607
608 return 0;
609}
610
611static int ethoc_poll(struct napi_struct *napi, int budget)
612{
613 struct ethoc *priv = container_of(napi, struct ethoc, napi);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000614 int rx_work_done = 0;
615 int tx_work_done = 0;
Thierry Redinga1702852009-03-27 00:12:24 -0700616
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000617 rx_work_done = ethoc_rx(priv->netdev, budget);
618 tx_work_done = ethoc_tx(priv->netdev, budget);
619
620 if (rx_work_done < budget && tx_work_done < budget) {
Thierry Redinga1702852009-03-27 00:12:24 -0700621 napi_complete(napi);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000622 ethoc_enable_irq(priv, INT_MASK_TX | INT_MASK_RX);
Thierry Redinga1702852009-03-27 00:12:24 -0700623 }
624
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000625 return rx_work_done;
Thierry Redinga1702852009-03-27 00:12:24 -0700626}
627
628static int ethoc_mdio_read(struct mii_bus *bus, int phy, int reg)
629{
Thierry Redinga1702852009-03-27 00:12:24 -0700630 struct ethoc *priv = bus->priv;
Jonas Bonn8dac4282010-11-25 02:30:30 +0000631 int i;
Thierry Redinga1702852009-03-27 00:12:24 -0700632
633 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
634 ethoc_write(priv, MIICOMMAND, MIICOMMAND_READ);
635
Barry Grussling72aa8e12013-01-27 18:44:36 +0000636 for (i = 0; i < 5; i++) {
Thierry Redinga1702852009-03-27 00:12:24 -0700637 u32 status = ethoc_read(priv, MIISTATUS);
638 if (!(status & MIISTATUS_BUSY)) {
639 u32 data = ethoc_read(priv, MIIRX_DATA);
640 /* reset MII command register */
641 ethoc_write(priv, MIICOMMAND, 0);
642 return data;
643 }
Barry Grussling72aa8e12013-01-27 18:44:36 +0000644 usleep_range(100, 200);
Thierry Redinga1702852009-03-27 00:12:24 -0700645 }
646
647 return -EBUSY;
648}
649
650static int ethoc_mdio_write(struct mii_bus *bus, int phy, int reg, u16 val)
651{
Thierry Redinga1702852009-03-27 00:12:24 -0700652 struct ethoc *priv = bus->priv;
Jonas Bonn8dac4282010-11-25 02:30:30 +0000653 int i;
Thierry Redinga1702852009-03-27 00:12:24 -0700654
655 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
656 ethoc_write(priv, MIITX_DATA, val);
657 ethoc_write(priv, MIICOMMAND, MIICOMMAND_WRITE);
658
Barry Grussling72aa8e12013-01-27 18:44:36 +0000659 for (i = 0; i < 5; i++) {
Thierry Redinga1702852009-03-27 00:12:24 -0700660 u32 stat = ethoc_read(priv, MIISTATUS);
Jonas Bonnb46773d2010-06-11 02:47:39 +0000661 if (!(stat & MIISTATUS_BUSY)) {
662 /* reset MII command register */
663 ethoc_write(priv, MIICOMMAND, 0);
Thierry Redinga1702852009-03-27 00:12:24 -0700664 return 0;
Jonas Bonnb46773d2010-06-11 02:47:39 +0000665 }
Barry Grussling72aa8e12013-01-27 18:44:36 +0000666 usleep_range(100, 200);
Thierry Redinga1702852009-03-27 00:12:24 -0700667 }
668
669 return -EBUSY;
670}
671
Thierry Redinga1702852009-03-27 00:12:24 -0700672static void ethoc_mdio_poll(struct net_device *dev)
673{
Florian Fainelliabf7e532016-12-04 12:40:28 -0800674 struct ethoc *priv = netdev_priv(dev);
675 struct phy_device *phydev = dev->phydev;
676 bool changed = false;
677 u32 mode;
678
679 if (priv->old_link != phydev->link) {
680 changed = true;
681 priv->old_link = phydev->link;
682 }
683
684 if (priv->old_duplex != phydev->duplex) {
685 changed = true;
686 priv->old_duplex = phydev->duplex;
687 }
688
689 if (!changed)
690 return;
691
692 mode = ethoc_read(priv, MODER);
693 if (phydev->duplex == DUPLEX_FULL)
694 mode |= MODER_FULLD;
695 else
696 mode &= ~MODER_FULLD;
697 ethoc_write(priv, MODER, mode);
698
699 phy_print_status(phydev);
Thierry Redinga1702852009-03-27 00:12:24 -0700700}
701
Bill Pembertona0a4efe2012-12-03 09:24:09 -0500702static int ethoc_mdio_probe(struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700703{
704 struct ethoc *priv = netdev_priv(dev);
705 struct phy_device *phy;
Jonas Bonn637f33b82010-06-11 02:47:37 +0000706 int err;
Thierry Redinga1702852009-03-27 00:12:24 -0700707
Barry Grussling72aa8e12013-01-27 18:44:36 +0000708 if (priv->phy_id != -1)
Andrew Lunn7f854422016-01-06 20:11:18 +0100709 phy = mdiobus_get_phy(priv->mdio, priv->phy_id);
Barry Grussling72aa8e12013-01-27 18:44:36 +0000710 else
Jonas Bonn637f33b82010-06-11 02:47:37 +0000711 phy = phy_find_first(priv->mdio);
Thierry Redinga1702852009-03-27 00:12:24 -0700712
713 if (!phy) {
714 dev_err(&dev->dev, "no PHY found\n");
715 return -ENXIO;
716 }
717
Florian Fainelliabf7e532016-12-04 12:40:28 -0800718 priv->old_duplex = -1;
719 priv->old_link = -1;
720
Florian Fainellif9a8f832013-01-14 00:52:52 +0000721 err = phy_connect_direct(dev, phy, ethoc_mdio_poll,
722 PHY_INTERFACE_MODE_GMII);
Jonas Bonn637f33b82010-06-11 02:47:37 +0000723 if (err) {
Thierry Redinga1702852009-03-27 00:12:24 -0700724 dev_err(&dev->dev, "could not attach to PHY\n");
Jonas Bonn637f33b82010-06-11 02:47:37 +0000725 return err;
Thierry Redinga1702852009-03-27 00:12:24 -0700726 }
727
Max Filippov445a48c2014-02-04 03:33:09 +0400728 phy->advertising &= ~(ADVERTISED_1000baseT_Full |
729 ADVERTISED_1000baseT_Half);
730 phy->supported &= ~(SUPPORTED_1000baseT_Full |
731 SUPPORTED_1000baseT_Half);
732
Thierry Redinga1702852009-03-27 00:12:24 -0700733 return 0;
734}
735
736static int ethoc_open(struct net_device *dev)
737{
738 struct ethoc *priv = netdev_priv(dev);
Thierry Redinga1702852009-03-27 00:12:24 -0700739 int ret;
740
741 ret = request_irq(dev->irq, ethoc_interrupt, IRQF_SHARED,
742 dev->name, dev);
743 if (ret)
744 return ret;
745
David S. Miller5cf3e032010-07-07 18:23:19 -0700746 ethoc_init_ring(priv, dev->mem_start);
Thierry Redinga1702852009-03-27 00:12:24 -0700747 ethoc_reset(priv);
748
749 if (netif_queue_stopped(dev)) {
750 dev_dbg(&dev->dev, " resuming queue\n");
751 netif_wake_queue(dev);
752 } else {
753 dev_dbg(&dev->dev, " starting queue\n");
754 netif_start_queue(dev);
755 }
756
Florian Fainelliabf7e532016-12-04 12:40:28 -0800757 priv->old_link = -1;
758 priv->old_duplex = -1;
759
Philippe Reynes11331fc2016-07-15 09:59:11 +0200760 phy_start(dev->phydev);
Thierry Redinga1702852009-03-27 00:12:24 -0700761 napi_enable(&priv->napi);
762
763 if (netif_msg_ifup(priv)) {
764 dev_info(&dev->dev, "I/O: %08lx Memory: %08lx-%08lx\n",
765 dev->base_addr, dev->mem_start, dev->mem_end);
766 }
767
768 return 0;
769}
770
771static int ethoc_stop(struct net_device *dev)
772{
773 struct ethoc *priv = netdev_priv(dev);
774
775 napi_disable(&priv->napi);
776
Philippe Reynes11331fc2016-07-15 09:59:11 +0200777 if (dev->phydev)
778 phy_stop(dev->phydev);
Thierry Redinga1702852009-03-27 00:12:24 -0700779
780 ethoc_disable_rx_and_tx(priv);
781 free_irq(dev->irq, dev);
782
783 if (!netif_queue_stopped(dev))
784 netif_stop_queue(dev);
785
786 return 0;
787}
788
789static int ethoc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
790{
791 struct ethoc *priv = netdev_priv(dev);
792 struct mii_ioctl_data *mdio = if_mii(ifr);
793 struct phy_device *phy = NULL;
794
795 if (!netif_running(dev))
796 return -EINVAL;
797
798 if (cmd != SIOCGMIIPHY) {
799 if (mdio->phy_id >= PHY_MAX_ADDR)
800 return -ERANGE;
801
Andrew Lunn7f854422016-01-06 20:11:18 +0100802 phy = mdiobus_get_phy(priv->mdio, mdio->phy_id);
Thierry Redinga1702852009-03-27 00:12:24 -0700803 if (!phy)
804 return -ENODEV;
805 } else {
Philippe Reynes11331fc2016-07-15 09:59:11 +0200806 phy = dev->phydev;
Thierry Redinga1702852009-03-27 00:12:24 -0700807 }
808
Richard Cochran28b04112010-07-17 08:48:55 +0000809 return phy_mii_ioctl(phy, ifr, cmd);
Thierry Redinga1702852009-03-27 00:12:24 -0700810}
811
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000812static void ethoc_do_set_mac_address(struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700813{
814 struct ethoc *priv = netdev_priv(dev);
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000815 unsigned char *mac = dev->dev_addr;
Danny Kukawka939d2252012-02-17 05:43:29 +0000816
Thierry Redinga1702852009-03-27 00:12:24 -0700817 ethoc_write(priv, MAC_ADDR0, (mac[2] << 24) | (mac[3] << 16) |
818 (mac[4] << 8) | (mac[5] << 0));
819 ethoc_write(priv, MAC_ADDR1, (mac[0] << 8) | (mac[1] << 0));
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000820}
Thierry Redinga1702852009-03-27 00:12:24 -0700821
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000822static int ethoc_set_mac_address(struct net_device *dev, void *p)
823{
824 const struct sockaddr *addr = p;
Danny Kukawka939d2252012-02-17 05:43:29 +0000825
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000826 if (!is_valid_ether_addr(addr->sa_data))
827 return -EADDRNOTAVAIL;
828 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
829 ethoc_do_set_mac_address(dev);
Thierry Redinga1702852009-03-27 00:12:24 -0700830 return 0;
831}
832
833static void ethoc_set_multicast_list(struct net_device *dev)
834{
835 struct ethoc *priv = netdev_priv(dev);
836 u32 mode = ethoc_read(priv, MODER);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000837 struct netdev_hw_addr *ha;
Thierry Redinga1702852009-03-27 00:12:24 -0700838 u32 hash[2] = { 0, 0 };
839
840 /* set loopback mode if requested */
841 if (dev->flags & IFF_LOOPBACK)
842 mode |= MODER_LOOP;
843 else
844 mode &= ~MODER_LOOP;
845
846 /* receive broadcast frames if requested */
847 if (dev->flags & IFF_BROADCAST)
848 mode &= ~MODER_BRO;
849 else
850 mode |= MODER_BRO;
851
852 /* enable promiscuous mode if requested */
853 if (dev->flags & IFF_PROMISC)
854 mode |= MODER_PRO;
855 else
856 mode &= ~MODER_PRO;
857
858 ethoc_write(priv, MODER, mode);
859
860 /* receive multicast frames */
861 if (dev->flags & IFF_ALLMULTI) {
862 hash[0] = 0xffffffff;
863 hash[1] = 0xffffffff;
864 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000865 netdev_for_each_mc_addr(ha, dev) {
866 u32 crc = ether_crc(ETH_ALEN, ha->addr);
Thierry Redinga1702852009-03-27 00:12:24 -0700867 int bit = (crc >> 26) & 0x3f;
868 hash[bit >> 5] |= 1 << (bit & 0x1f);
869 }
870 }
871
872 ethoc_write(priv, ETH_HASH0, hash[0]);
873 ethoc_write(priv, ETH_HASH1, hash[1]);
874}
875
876static int ethoc_change_mtu(struct net_device *dev, int new_mtu)
877{
878 return -ENOSYS;
879}
880
881static void ethoc_tx_timeout(struct net_device *dev)
882{
883 struct ethoc *priv = netdev_priv(dev);
884 u32 pending = ethoc_read(priv, INT_SOURCE);
885 if (likely(pending))
886 ethoc_interrupt(dev->irq, dev);
887}
888
Stephen Hemminger613573252009-08-31 19:50:58 +0000889static netdev_tx_t ethoc_start_xmit(struct sk_buff *skb, struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700890{
891 struct ethoc *priv = netdev_priv(dev);
892 struct ethoc_bd bd;
893 unsigned int entry;
894 void *dest;
895
Florian Fainelliee6c21b2016-07-12 16:04:36 -0700896 if (skb_put_padto(skb, ETHOC_ZLEN)) {
897 dev->stats.tx_errors++;
898 goto out_no_free;
899 }
900
Thierry Redinga1702852009-03-27 00:12:24 -0700901 if (unlikely(skb->len > ETHOC_BUFSIZ)) {
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000902 dev->stats.tx_errors++;
Patrick McHardy3790c8c2009-06-12 03:00:35 +0000903 goto out;
Thierry Redinga1702852009-03-27 00:12:24 -0700904 }
905
906 entry = priv->cur_tx % priv->num_tx;
907 spin_lock_irq(&priv->lock);
908 priv->cur_tx++;
909
910 ethoc_read_bd(priv, entry, &bd);
911 if (unlikely(skb->len < ETHOC_ZLEN))
912 bd.stat |= TX_BD_PAD;
913 else
914 bd.stat &= ~TX_BD_PAD;
915
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000916 dest = priv->vma[entry];
Thierry Redinga1702852009-03-27 00:12:24 -0700917 memcpy_toio(dest, skb->data, skb->len);
918
919 bd.stat &= ~(TX_BD_STATS | TX_BD_LEN_MASK);
920 bd.stat |= TX_BD_LEN(skb->len);
921 ethoc_write_bd(priv, entry, &bd);
922
923 bd.stat |= TX_BD_READY;
924 ethoc_write_bd(priv, entry, &bd);
925
926 if (priv->cur_tx == (priv->dty_tx + priv->num_tx)) {
927 dev_dbg(&dev->dev, "stopping queue\n");
928 netif_stop_queue(dev);
929 }
930
Thierry Redinga1702852009-03-27 00:12:24 -0700931 spin_unlock_irq(&priv->lock);
Richard Cochran68f51392011-06-12 02:19:04 +0000932 skb_tx_timestamp(skb);
Patrick McHardy3790c8c2009-06-12 03:00:35 +0000933out:
934 dev_kfree_skb(skb);
Florian Fainelliee6c21b2016-07-12 16:04:36 -0700935out_no_free:
Thierry Redinga1702852009-03-27 00:12:24 -0700936 return NETDEV_TX_OK;
937}
938
Max Filippov11129092014-01-31 09:41:06 +0400939static int ethoc_get_regs_len(struct net_device *netdev)
940{
941 return ETH_END;
942}
943
944static void ethoc_get_regs(struct net_device *dev, struct ethtool_regs *regs,
945 void *p)
946{
947 struct ethoc *priv = netdev_priv(dev);
948 u32 *regs_buff = p;
949 unsigned i;
950
951 regs->version = 0;
952 for (i = 0; i < ETH_END / sizeof(u32); ++i)
953 regs_buff[i] = ethoc_read(priv, i * sizeof(u32));
954}
955
Max Filippovbee7bac2014-01-31 09:41:07 +0400956static void ethoc_get_ringparam(struct net_device *dev,
957 struct ethtool_ringparam *ring)
958{
959 struct ethoc *priv = netdev_priv(dev);
960
961 ring->rx_max_pending = priv->num_bd - 1;
962 ring->rx_mini_max_pending = 0;
963 ring->rx_jumbo_max_pending = 0;
964 ring->tx_max_pending = priv->num_bd - 1;
965
966 ring->rx_pending = priv->num_rx;
967 ring->rx_mini_pending = 0;
968 ring->rx_jumbo_pending = 0;
969 ring->tx_pending = priv->num_tx;
970}
971
972static int ethoc_set_ringparam(struct net_device *dev,
973 struct ethtool_ringparam *ring)
974{
975 struct ethoc *priv = netdev_priv(dev);
976
977 if (ring->tx_pending < 1 || ring->rx_pending < 1 ||
978 ring->tx_pending + ring->rx_pending > priv->num_bd)
979 return -EINVAL;
980 if (ring->rx_mini_pending || ring->rx_jumbo_pending)
981 return -EINVAL;
982
983 if (netif_running(dev)) {
984 netif_tx_disable(dev);
985 ethoc_disable_rx_and_tx(priv);
986 ethoc_disable_irq(priv, INT_MASK_TX | INT_MASK_RX);
987 synchronize_irq(dev->irq);
988 }
989
990 priv->num_tx = rounddown_pow_of_two(ring->tx_pending);
991 priv->num_rx = ring->rx_pending;
992 ethoc_init_ring(priv, dev->mem_start);
993
994 if (netif_running(dev)) {
995 ethoc_enable_irq(priv, INT_MASK_TX | INT_MASK_RX);
996 ethoc_enable_rx_and_tx(priv);
997 netif_wake_queue(dev);
998 }
999 return 0;
1000}
1001
Max Filippovfba91102014-01-31 09:41:04 +04001002const struct ethtool_ops ethoc_ethtool_ops = {
Max Filippov11129092014-01-31 09:41:06 +04001003 .get_regs_len = ethoc_get_regs_len,
1004 .get_regs = ethoc_get_regs,
Florian Fainelli3d3ba562016-11-15 11:19:46 -08001005 .nway_reset = phy_ethtool_nway_reset,
Max Filippovfba91102014-01-31 09:41:04 +04001006 .get_link = ethtool_op_get_link,
Max Filippovbee7bac2014-01-31 09:41:07 +04001007 .get_ringparam = ethoc_get_ringparam,
1008 .set_ringparam = ethoc_set_ringparam,
Max Filippovfba91102014-01-31 09:41:04 +04001009 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynes87e544b2016-07-15 09:59:12 +02001010 .get_link_ksettings = phy_ethtool_get_link_ksettings,
1011 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Max Filippovfba91102014-01-31 09:41:04 +04001012};
1013
Thierry Redinga1702852009-03-27 00:12:24 -07001014static const struct net_device_ops ethoc_netdev_ops = {
1015 .ndo_open = ethoc_open,
1016 .ndo_stop = ethoc_stop,
1017 .ndo_do_ioctl = ethoc_ioctl,
Thierry Redinga1702852009-03-27 00:12:24 -07001018 .ndo_set_mac_address = ethoc_set_mac_address,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001019 .ndo_set_rx_mode = ethoc_set_multicast_list,
Thierry Redinga1702852009-03-27 00:12:24 -07001020 .ndo_change_mtu = ethoc_change_mtu,
1021 .ndo_tx_timeout = ethoc_tx_timeout,
Thierry Redinga1702852009-03-27 00:12:24 -07001022 .ndo_start_xmit = ethoc_start_xmit,
1023};
1024
1025/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001026 * ethoc_probe - initialize OpenCores ethernet MAC
Thierry Redinga1702852009-03-27 00:12:24 -07001027 * pdev: platform device
1028 */
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001029static int ethoc_probe(struct platform_device *pdev)
Thierry Redinga1702852009-03-27 00:12:24 -07001030{
1031 struct net_device *netdev = NULL;
1032 struct resource *res = NULL;
1033 struct resource *mmio = NULL;
1034 struct resource *mem = NULL;
1035 struct ethoc *priv = NULL;
Jonas Bonnc527f812010-06-11 02:47:34 +00001036 int num_bd;
Thierry Redinga1702852009-03-27 00:12:24 -07001037 int ret = 0;
Danny Kukawka939d2252012-02-17 05:43:29 +00001038 bool random_mac = false;
Max Filippova13aff02014-02-04 03:33:10 +04001039 struct ethoc_platform_data *pdata = dev_get_platdata(&pdev->dev);
1040 u32 eth_clkfreq = pdata ? pdata->eth_clkfreq : 0;
Thierry Redinga1702852009-03-27 00:12:24 -07001041
1042 /* allocate networking device */
1043 netdev = alloc_etherdev(sizeof(struct ethoc));
1044 if (!netdev) {
Thierry Redinga1702852009-03-27 00:12:24 -07001045 ret = -ENOMEM;
1046 goto out;
1047 }
1048
1049 SET_NETDEV_DEV(netdev, &pdev->dev);
1050 platform_set_drvdata(pdev, netdev);
1051
1052 /* obtain I/O memory space */
1053 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1054 if (!res) {
1055 dev_err(&pdev->dev, "cannot obtain I/O memory space\n");
1056 ret = -ENXIO;
1057 goto free;
1058 }
1059
1060 mmio = devm_request_mem_region(&pdev->dev, res->start,
Tobias Klauserd8645842010-01-15 01:48:22 -08001061 resource_size(res), res->name);
Julia Lawall463889e2009-07-27 06:13:30 +00001062 if (!mmio) {
Thierry Redinga1702852009-03-27 00:12:24 -07001063 dev_err(&pdev->dev, "cannot request I/O memory space\n");
1064 ret = -ENXIO;
1065 goto free;
1066 }
1067
1068 netdev->base_addr = mmio->start;
1069
1070 /* obtain buffer memory space */
1071 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Thomas Chou0baa0802009-10-04 23:33:20 +00001072 if (res) {
1073 mem = devm_request_mem_region(&pdev->dev, res->start,
Tobias Klauserd8645842010-01-15 01:48:22 -08001074 resource_size(res), res->name);
Thomas Chou0baa0802009-10-04 23:33:20 +00001075 if (!mem) {
1076 dev_err(&pdev->dev, "cannot request memory space\n");
1077 ret = -ENXIO;
1078 goto free;
1079 }
1080
1081 netdev->mem_start = mem->start;
1082 netdev->mem_end = mem->end;
Thierry Redinga1702852009-03-27 00:12:24 -07001083 }
1084
Thierry Redinga1702852009-03-27 00:12:24 -07001085
1086 /* obtain device IRQ number */
1087 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1088 if (!res) {
1089 dev_err(&pdev->dev, "cannot obtain IRQ\n");
1090 ret = -ENXIO;
1091 goto free;
1092 }
1093
1094 netdev->irq = res->start;
1095
1096 /* setup driver-private data */
1097 priv = netdev_priv(netdev);
1098 priv->netdev = netdev;
Thomas Chou0baa0802009-10-04 23:33:20 +00001099 priv->dma_alloc = 0;
Joe Perches28f65c112011-06-09 09:13:32 -07001100 priv->io_region_size = resource_size(mmio);
Thierry Redinga1702852009-03-27 00:12:24 -07001101
1102 priv->iobase = devm_ioremap_nocache(&pdev->dev, netdev->base_addr,
Tobias Klauserd8645842010-01-15 01:48:22 -08001103 resource_size(mmio));
Thierry Redinga1702852009-03-27 00:12:24 -07001104 if (!priv->iobase) {
1105 dev_err(&pdev->dev, "cannot remap I/O memory space\n");
1106 ret = -ENXIO;
Florian Fainelli386512d2016-07-12 16:04:35 -07001107 goto free;
Thierry Redinga1702852009-03-27 00:12:24 -07001108 }
1109
Thomas Chou0baa0802009-10-04 23:33:20 +00001110 if (netdev->mem_end) {
1111 priv->membase = devm_ioremap_nocache(&pdev->dev,
Tobias Klauserd8645842010-01-15 01:48:22 -08001112 netdev->mem_start, resource_size(mem));
Thomas Chou0baa0802009-10-04 23:33:20 +00001113 if (!priv->membase) {
1114 dev_err(&pdev->dev, "cannot remap memory space\n");
1115 ret = -ENXIO;
Florian Fainelli386512d2016-07-12 16:04:35 -07001116 goto free;
Thomas Chou0baa0802009-10-04 23:33:20 +00001117 }
1118 } else {
1119 /* Allocate buffer memory */
Jonas Bonna71fba92010-06-11 02:47:40 +00001120 priv->membase = dmam_alloc_coherent(&pdev->dev,
Thomas Chou0baa0802009-10-04 23:33:20 +00001121 buffer_size, (void *)&netdev->mem_start,
1122 GFP_KERNEL);
1123 if (!priv->membase) {
1124 dev_err(&pdev->dev, "cannot allocate %dB buffer\n",
1125 buffer_size);
1126 ret = -ENOMEM;
Florian Fainelli386512d2016-07-12 16:04:35 -07001127 goto free;
Thomas Chou0baa0802009-10-04 23:33:20 +00001128 }
1129 netdev->mem_end = netdev->mem_start + buffer_size;
1130 priv->dma_alloc = buffer_size;
Thierry Redinga1702852009-03-27 00:12:24 -07001131 }
1132
Max Filippov06e60e592015-09-22 14:27:16 +03001133 priv->big_endian = pdata ? pdata->big_endian :
1134 of_device_is_big_endian(pdev->dev.of_node);
1135
Jonas Bonnc527f812010-06-11 02:47:34 +00001136 /* calculate the number of TX/RX buffers, maximum 128 supported */
1137 num_bd = min_t(unsigned int,
1138 128, (netdev->mem_end - netdev->mem_start + 1) / ETHOC_BUFSIZ);
Jonas Bonn6a632622010-11-25 02:30:32 +00001139 if (num_bd < 4) {
1140 ret = -ENODEV;
Florian Fainelli386512d2016-07-12 16:04:35 -07001141 goto free;
Jonas Bonn6a632622010-11-25 02:30:32 +00001142 }
Max Filippovbee7bac2014-01-31 09:41:07 +04001143 priv->num_bd = num_bd;
Jonas Bonn6a632622010-11-25 02:30:32 +00001144 /* num_tx must be a power of two */
1145 priv->num_tx = rounddown_pow_of_two(num_bd >> 1);
Jonas Bonnc527f812010-06-11 02:47:34 +00001146 priv->num_rx = num_bd - priv->num_tx;
1147
Jonas Bonn6a632622010-11-25 02:30:32 +00001148 dev_dbg(&pdev->dev, "ethoc: num_tx: %d num_rx: %d\n",
1149 priv->num_tx, priv->num_rx);
1150
Barry Grussling72aa8e12013-01-27 18:44:36 +00001151 priv->vma = devm_kzalloc(&pdev->dev, num_bd*sizeof(void *), GFP_KERNEL);
Jonas Bonnf8555ad02010-06-11 02:47:35 +00001152 if (!priv->vma) {
1153 ret = -ENOMEM;
Florian Fainelli386512d2016-07-12 16:04:35 -07001154 goto free;
Jonas Bonnf8555ad02010-06-11 02:47:35 +00001155 }
1156
Thierry Redinga1702852009-03-27 00:12:24 -07001157 /* Allow the platform setup code to pass in a MAC address. */
Max Filippova13aff02014-02-04 03:33:10 +04001158 if (pdata) {
Thierry Redinga1702852009-03-27 00:12:24 -07001159 memcpy(netdev->dev_addr, pdata->hwaddr, IFHWADDRLEN);
1160 priv->phy_id = pdata->phy_id;
Jonas Bonne0f42582010-11-25 02:30:25 +00001161 } else {
Florian Fainellib34296a2016-12-04 12:40:29 -08001162 const void *mac;
Jonas Bonne0f42582010-11-25 02:30:25 +00001163
Florian Fainellib34296a2016-12-04 12:40:29 -08001164 mac = of_get_mac_address(pdev->dev.of_node);
Jonas Bonne0f42582010-11-25 02:30:25 +00001165 if (mac)
1166 memcpy(netdev->dev_addr, mac, IFHWADDRLEN);
Tobias Klauser444c5f92015-09-09 11:24:29 +02001167 priv->phy_id = -1;
Thierry Redinga1702852009-03-27 00:12:24 -07001168 }
1169
1170 /* Check that the given MAC address is valid. If it isn't, read the
Barry Grussling72aa8e12013-01-27 18:44:36 +00001171 * current MAC from the controller.
1172 */
Thierry Redinga1702852009-03-27 00:12:24 -07001173 if (!is_valid_ether_addr(netdev->dev_addr))
1174 ethoc_get_mac_address(netdev, netdev->dev_addr);
1175
1176 /* Check the MAC again for validity, if it still isn't choose and
Barry Grussling72aa8e12013-01-27 18:44:36 +00001177 * program a random one.
1178 */
Danny Kukawka939d2252012-02-17 05:43:29 +00001179 if (!is_valid_ether_addr(netdev->dev_addr)) {
Joe Perches7efd26d2012-07-12 19:33:06 +00001180 eth_random_addr(netdev->dev_addr);
Danny Kukawka939d2252012-02-17 05:43:29 +00001181 random_mac = true;
1182 }
Thierry Redinga1702852009-03-27 00:12:24 -07001183
Jiri Pirkoefc61a32013-01-06 03:25:45 +00001184 ethoc_do_set_mac_address(netdev);
Danny Kukawka939d2252012-02-17 05:43:29 +00001185
1186 if (random_mac)
Jiri Pirkoe41b2d72013-01-01 03:30:15 +00001187 netdev->addr_assign_type = NET_ADDR_RANDOM;
Thierry Redinga1702852009-03-27 00:12:24 -07001188
Max Filippova13aff02014-02-04 03:33:10 +04001189 /* Allow the platform setup code to adjust MII management bus clock. */
1190 if (!eth_clkfreq) {
1191 struct clk *clk = devm_clk_get(&pdev->dev, NULL);
1192
1193 if (!IS_ERR(clk)) {
1194 priv->clk = clk;
1195 clk_prepare_enable(clk);
1196 eth_clkfreq = clk_get_rate(clk);
1197 }
1198 }
1199 if (eth_clkfreq) {
1200 u32 clkdiv = MIIMODER_CLKDIV(eth_clkfreq / 2500000 + 1);
1201
1202 if (!clkdiv)
1203 clkdiv = 2;
1204 dev_dbg(&pdev->dev, "setting MII clkdiv to %u\n", clkdiv);
1205 ethoc_write(priv, MIIMODER,
1206 (ethoc_read(priv, MIIMODER) & MIIMODER_NOPRE) |
1207 clkdiv);
1208 }
1209
Thierry Redinga1702852009-03-27 00:12:24 -07001210 /* register MII bus */
1211 priv->mdio = mdiobus_alloc();
1212 if (!priv->mdio) {
1213 ret = -ENOMEM;
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001214 goto free2;
Thierry Redinga1702852009-03-27 00:12:24 -07001215 }
1216
1217 priv->mdio->name = "ethoc-mdio";
1218 snprintf(priv->mdio->id, MII_BUS_ID_SIZE, "%s-%d",
1219 priv->mdio->name, pdev->id);
1220 priv->mdio->read = ethoc_mdio_read;
1221 priv->mdio->write = ethoc_mdio_write;
Thierry Redinga1702852009-03-27 00:12:24 -07001222 priv->mdio->priv = priv;
1223
Thierry Redinga1702852009-03-27 00:12:24 -07001224 ret = mdiobus_register(priv->mdio);
1225 if (ret) {
1226 dev_err(&netdev->dev, "failed to register MDIO bus\n");
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001227 goto free2;
Thierry Redinga1702852009-03-27 00:12:24 -07001228 }
1229
1230 ret = ethoc_mdio_probe(netdev);
1231 if (ret) {
1232 dev_err(&netdev->dev, "failed to probe MDIO bus\n");
1233 goto error;
1234 }
1235
Thierry Redinga1702852009-03-27 00:12:24 -07001236 /* setup the net_device structure */
1237 netdev->netdev_ops = &ethoc_netdev_ops;
1238 netdev->watchdog_timeo = ETHOC_TIMEOUT;
1239 netdev->features |= 0;
Max Filippovfba91102014-01-31 09:41:04 +04001240 netdev->ethtool_ops = &ethoc_ethtool_ops;
Thierry Redinga1702852009-03-27 00:12:24 -07001241
1242 /* setup NAPI */
Thierry Redinga1702852009-03-27 00:12:24 -07001243 netif_napi_add(netdev, &priv->napi, ethoc_poll, 64);
1244
Thierry Redinga1702852009-03-27 00:12:24 -07001245 spin_lock_init(&priv->lock);
1246
1247 ret = register_netdev(netdev);
1248 if (ret < 0) {
1249 dev_err(&netdev->dev, "failed to register interface\n");
Thomas Chouee02a4e2010-05-23 16:44:02 +00001250 goto error2;
Thierry Redinga1702852009-03-27 00:12:24 -07001251 }
1252
1253 goto out;
1254
Thomas Chouee02a4e2010-05-23 16:44:02 +00001255error2:
1256 netif_napi_del(&priv->napi);
Thierry Redinga1702852009-03-27 00:12:24 -07001257error:
1258 mdiobus_unregister(priv->mdio);
Thierry Redinga1702852009-03-27 00:12:24 -07001259 mdiobus_free(priv->mdio);
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001260free2:
Max Filippova13aff02014-02-04 03:33:10 +04001261 if (priv->clk)
1262 clk_disable_unprepare(priv->clk);
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001263free:
Thierry Redinga1702852009-03-27 00:12:24 -07001264 free_netdev(netdev);
1265out:
1266 return ret;
1267}
1268
1269/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001270 * ethoc_remove - shutdown OpenCores ethernet MAC
Thierry Redinga1702852009-03-27 00:12:24 -07001271 * @pdev: platform device
1272 */
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001273static int ethoc_remove(struct platform_device *pdev)
Thierry Redinga1702852009-03-27 00:12:24 -07001274{
1275 struct net_device *netdev = platform_get_drvdata(pdev);
1276 struct ethoc *priv = netdev_priv(netdev);
1277
Thierry Redinga1702852009-03-27 00:12:24 -07001278 if (netdev) {
Thomas Chouee02a4e2010-05-23 16:44:02 +00001279 netif_napi_del(&priv->napi);
Philippe Reynes11331fc2016-07-15 09:59:11 +02001280 phy_disconnect(netdev->phydev);
Thierry Redinga1702852009-03-27 00:12:24 -07001281
1282 if (priv->mdio) {
1283 mdiobus_unregister(priv->mdio);
Thierry Redinga1702852009-03-27 00:12:24 -07001284 mdiobus_free(priv->mdio);
1285 }
Max Filippova13aff02014-02-04 03:33:10 +04001286 if (priv->clk)
1287 clk_disable_unprepare(priv->clk);
Thierry Redinga1702852009-03-27 00:12:24 -07001288 unregister_netdev(netdev);
1289 free_netdev(netdev);
1290 }
1291
1292 return 0;
1293}
1294
1295#ifdef CONFIG_PM
1296static int ethoc_suspend(struct platform_device *pdev, pm_message_t state)
1297{
1298 return -ENOSYS;
1299}
1300
1301static int ethoc_resume(struct platform_device *pdev)
1302{
1303 return -ENOSYS;
1304}
1305#else
1306# define ethoc_suspend NULL
1307# define ethoc_resume NULL
1308#endif
1309
Fabian Frederickfa2b1832015-03-17 19:37:35 +01001310static const struct of_device_id ethoc_match[] = {
Grant Likelyc9e358d2011-01-21 09:24:48 -07001311 { .compatible = "opencores,ethoc", },
Jonas Bonne0f42582010-11-25 02:30:25 +00001312 {},
1313};
1314MODULE_DEVICE_TABLE(of, ethoc_match);
Jonas Bonne0f42582010-11-25 02:30:25 +00001315
Thierry Redinga1702852009-03-27 00:12:24 -07001316static struct platform_driver ethoc_driver = {
1317 .probe = ethoc_probe,
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001318 .remove = ethoc_remove,
Thierry Redinga1702852009-03-27 00:12:24 -07001319 .suspend = ethoc_suspend,
1320 .resume = ethoc_resume,
1321 .driver = {
1322 .name = "ethoc",
Jonas Bonne0f42582010-11-25 02:30:25 +00001323 .of_match_table = ethoc_match,
Thierry Redinga1702852009-03-27 00:12:24 -07001324 },
1325};
1326
Axel Lindb62f682011-11-27 16:44:17 +00001327module_platform_driver(ethoc_driver);
Thierry Redinga1702852009-03-27 00:12:24 -07001328
1329MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de>");
1330MODULE_DESCRIPTION("OpenCores Ethernet MAC driver");
1331MODULE_LICENSE("GPL v2");
1332