blob: c5bd27db708a6228bbd697f93149ef09c65a2077 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Thierry Redinga1702852009-03-27 00:12:24 -07002/*
Paul Gortmaker3396c782012-01-27 13:36:01 +00003 * linux/drivers/net/ethernet/ethoc.c
Thierry Redinga1702852009-03-27 00:12:24 -07004 *
5 * Copyright (C) 2007-2008 Avionic Design Development GmbH
6 * Copyright (C) 2008-2009 Avionic Design GmbH
7 *
Thierry Redinga1702852009-03-27 00:12:24 -07008 * Written by Thierry Reding <thierry.reding@avionic-design.de>
9 */
10
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000011#include <linux/dma-mapping.h>
Thierry Redinga1702852009-03-27 00:12:24 -070012#include <linux/etherdevice.h>
Max Filippova13aff02014-02-04 03:33:10 +040013#include <linux/clk.h>
Thierry Redinga1702852009-03-27 00:12:24 -070014#include <linux/crc32.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000015#include <linux/interrupt.h>
Thierry Redinga1702852009-03-27 00:12:24 -070016#include <linux/io.h>
17#include <linux/mii.h>
18#include <linux/phy.h>
19#include <linux/platform_device.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040020#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Jonas Bonne0f42582010-11-25 02:30:25 +000022#include <linux/of.h>
Florian Fainellib34296a2016-12-04 12:40:29 -080023#include <linux/of_net.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040024#include <linux/module.h>
Thierry Redinga1702852009-03-27 00:12:24 -070025#include <net/ethoc.h>
26
Thomas Chou0baa0802009-10-04 23:33:20 +000027static int buffer_size = 0x8000; /* 32 KBytes */
28module_param(buffer_size, int, 0);
29MODULE_PARM_DESC(buffer_size, "DMA buffer allocation size");
30
Thierry Redinga1702852009-03-27 00:12:24 -070031/* register offsets */
32#define MODER 0x00
33#define INT_SOURCE 0x04
34#define INT_MASK 0x08
35#define IPGT 0x0c
36#define IPGR1 0x10
37#define IPGR2 0x14
38#define PACKETLEN 0x18
39#define COLLCONF 0x1c
40#define TX_BD_NUM 0x20
41#define CTRLMODER 0x24
42#define MIIMODER 0x28
43#define MIICOMMAND 0x2c
44#define MIIADDRESS 0x30
45#define MIITX_DATA 0x34
46#define MIIRX_DATA 0x38
47#define MIISTATUS 0x3c
48#define MAC_ADDR0 0x40
49#define MAC_ADDR1 0x44
50#define ETH_HASH0 0x48
51#define ETH_HASH1 0x4c
52#define ETH_TXCTRL 0x50
Max Filippov11129092014-01-31 09:41:06 +040053#define ETH_END 0x54
Thierry Redinga1702852009-03-27 00:12:24 -070054
55/* mode register */
56#define MODER_RXEN (1 << 0) /* receive enable */
57#define MODER_TXEN (1 << 1) /* transmit enable */
58#define MODER_NOPRE (1 << 2) /* no preamble */
59#define MODER_BRO (1 << 3) /* broadcast address */
60#define MODER_IAM (1 << 4) /* individual address mode */
61#define MODER_PRO (1 << 5) /* promiscuous mode */
62#define MODER_IFG (1 << 6) /* interframe gap for incoming frames */
63#define MODER_LOOP (1 << 7) /* loopback */
64#define MODER_NBO (1 << 8) /* no back-off */
65#define MODER_EDE (1 << 9) /* excess defer enable */
66#define MODER_FULLD (1 << 10) /* full duplex */
67#define MODER_RESET (1 << 11) /* FIXME: reset (undocumented) */
68#define MODER_DCRC (1 << 12) /* delayed CRC enable */
69#define MODER_CRC (1 << 13) /* CRC enable */
70#define MODER_HUGE (1 << 14) /* huge packets enable */
71#define MODER_PAD (1 << 15) /* padding enabled */
72#define MODER_RSM (1 << 16) /* receive small packets */
73
74/* interrupt source and mask registers */
75#define INT_MASK_TXF (1 << 0) /* transmit frame */
76#define INT_MASK_TXE (1 << 1) /* transmit error */
77#define INT_MASK_RXF (1 << 2) /* receive frame */
78#define INT_MASK_RXE (1 << 3) /* receive error */
79#define INT_MASK_BUSY (1 << 4)
80#define INT_MASK_TXC (1 << 5) /* transmit control frame */
81#define INT_MASK_RXC (1 << 6) /* receive control frame */
82
83#define INT_MASK_TX (INT_MASK_TXF | INT_MASK_TXE)
84#define INT_MASK_RX (INT_MASK_RXF | INT_MASK_RXE)
85
86#define INT_MASK_ALL ( \
87 INT_MASK_TXF | INT_MASK_TXE | \
88 INT_MASK_RXF | INT_MASK_RXE | \
89 INT_MASK_TXC | INT_MASK_RXC | \
90 INT_MASK_BUSY \
91 )
92
93/* packet length register */
94#define PACKETLEN_MIN(min) (((min) & 0xffff) << 16)
95#define PACKETLEN_MAX(max) (((max) & 0xffff) << 0)
96#define PACKETLEN_MIN_MAX(min, max) (PACKETLEN_MIN(min) | \
97 PACKETLEN_MAX(max))
98
99/* transmit buffer number register */
100#define TX_BD_NUM_VAL(x) (((x) <= 0x80) ? (x) : 0x80)
101
102/* control module mode register */
103#define CTRLMODER_PASSALL (1 << 0) /* pass all receive frames */
104#define CTRLMODER_RXFLOW (1 << 1) /* receive control flow */
105#define CTRLMODER_TXFLOW (1 << 2) /* transmit control flow */
106
107/* MII mode register */
108#define MIIMODER_CLKDIV(x) ((x) & 0xfe) /* needs to be an even number */
109#define MIIMODER_NOPRE (1 << 8) /* no preamble */
110
111/* MII command register */
112#define MIICOMMAND_SCAN (1 << 0) /* scan status */
113#define MIICOMMAND_READ (1 << 1) /* read status */
114#define MIICOMMAND_WRITE (1 << 2) /* write control data */
115
116/* MII address register */
117#define MIIADDRESS_FIAD(x) (((x) & 0x1f) << 0)
118#define MIIADDRESS_RGAD(x) (((x) & 0x1f) << 8)
119#define MIIADDRESS_ADDR(phy, reg) (MIIADDRESS_FIAD(phy) | \
120 MIIADDRESS_RGAD(reg))
121
122/* MII transmit data register */
123#define MIITX_DATA_VAL(x) ((x) & 0xffff)
124
125/* MII receive data register */
126#define MIIRX_DATA_VAL(x) ((x) & 0xffff)
127
128/* MII status register */
129#define MIISTATUS_LINKFAIL (1 << 0)
130#define MIISTATUS_BUSY (1 << 1)
131#define MIISTATUS_INVALID (1 << 2)
132
133/* TX buffer descriptor */
134#define TX_BD_CS (1 << 0) /* carrier sense lost */
135#define TX_BD_DF (1 << 1) /* defer indication */
136#define TX_BD_LC (1 << 2) /* late collision */
137#define TX_BD_RL (1 << 3) /* retransmission limit */
138#define TX_BD_RETRY_MASK (0x00f0)
139#define TX_BD_RETRY(x) (((x) & 0x00f0) >> 4)
140#define TX_BD_UR (1 << 8) /* transmitter underrun */
141#define TX_BD_CRC (1 << 11) /* TX CRC enable */
142#define TX_BD_PAD (1 << 12) /* pad enable for short packets */
143#define TX_BD_WRAP (1 << 13)
144#define TX_BD_IRQ (1 << 14) /* interrupt request enable */
145#define TX_BD_READY (1 << 15) /* TX buffer ready */
146#define TX_BD_LEN(x) (((x) & 0xffff) << 16)
147#define TX_BD_LEN_MASK (0xffff << 16)
148
149#define TX_BD_STATS (TX_BD_CS | TX_BD_DF | TX_BD_LC | \
150 TX_BD_RL | TX_BD_RETRY_MASK | TX_BD_UR)
151
152/* RX buffer descriptor */
153#define RX_BD_LC (1 << 0) /* late collision */
154#define RX_BD_CRC (1 << 1) /* RX CRC error */
155#define RX_BD_SF (1 << 2) /* short frame */
156#define RX_BD_TL (1 << 3) /* too long */
157#define RX_BD_DN (1 << 4) /* dribble nibble */
158#define RX_BD_IS (1 << 5) /* invalid symbol */
159#define RX_BD_OR (1 << 6) /* receiver overrun */
160#define RX_BD_MISS (1 << 7)
161#define RX_BD_CF (1 << 8) /* control frame */
162#define RX_BD_WRAP (1 << 13)
163#define RX_BD_IRQ (1 << 14) /* interrupt request enable */
164#define RX_BD_EMPTY (1 << 15)
165#define RX_BD_LEN(x) (((x) & 0xffff) << 16)
166
167#define RX_BD_STATS (RX_BD_LC | RX_BD_CRC | RX_BD_SF | RX_BD_TL | \
168 RX_BD_DN | RX_BD_IS | RX_BD_OR | RX_BD_MISS)
169
170#define ETHOC_BUFSIZ 1536
171#define ETHOC_ZLEN 64
172#define ETHOC_BD_BASE 0x400
173#define ETHOC_TIMEOUT (HZ / 2)
174#define ETHOC_MII_TIMEOUT (1 + (HZ / 5))
175
176/**
177 * struct ethoc - driver-private device structure
178 * @iobase: pointer to I/O memory region
179 * @membase: pointer to buffer memory region
Jesse Brandeburgd0ea5cb2020-09-25 15:24:45 -0700180 * @big_endian: just big or little (endian)
Max Filippovbee7bac2014-01-31 09:41:07 +0400181 * @num_bd: number of buffer descriptors
Thierry Redinga1702852009-03-27 00:12:24 -0700182 * @num_tx: number of send buffers
183 * @cur_tx: last send buffer written
184 * @dty_tx: last buffer actually sent
185 * @num_rx: number of receive buffers
186 * @cur_rx: current receive buffer
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000187 * @vma: pointer to array of virtual memory addresses for buffers
Thierry Redinga1702852009-03-27 00:12:24 -0700188 * @netdev: pointer to network device structure
189 * @napi: NAPI structure
Thierry Redinga1702852009-03-27 00:12:24 -0700190 * @msg_enable: device state flags
Thierry Redinga1702852009-03-27 00:12:24 -0700191 * @lock: device lock
Thierry Redinga1702852009-03-27 00:12:24 -0700192 * @mdio: MDIO bus for PHY access
Jesse Brandeburgd0ea5cb2020-09-25 15:24:45 -0700193 * @clk: clock
Thierry Redinga1702852009-03-27 00:12:24 -0700194 * @phy_id: address of attached PHY
Jesse Brandeburgd0ea5cb2020-09-25 15:24:45 -0700195 * @old_link: previous link info
196 * @old_duplex: previous duplex info
Thierry Redinga1702852009-03-27 00:12:24 -0700197 */
198struct ethoc {
199 void __iomem *iobase;
200 void __iomem *membase;
Max Filippov06e60e592015-09-22 14:27:16 +0300201 bool big_endian;
Thierry Redinga1702852009-03-27 00:12:24 -0700202
Max Filippovbee7bac2014-01-31 09:41:07 +0400203 unsigned int num_bd;
Thierry Redinga1702852009-03-27 00:12:24 -0700204 unsigned int num_tx;
205 unsigned int cur_tx;
206 unsigned int dty_tx;
207
208 unsigned int num_rx;
209 unsigned int cur_rx;
210
Barry Grussling72aa8e12013-01-27 18:44:36 +0000211 void **vma;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000212
Thierry Redinga1702852009-03-27 00:12:24 -0700213 struct net_device *netdev;
214 struct napi_struct napi;
Thierry Redinga1702852009-03-27 00:12:24 -0700215 u32 msg_enable;
216
Thierry Redinga1702852009-03-27 00:12:24 -0700217 spinlock_t lock;
218
Thierry Redinga1702852009-03-27 00:12:24 -0700219 struct mii_bus *mdio;
Max Filippova13aff02014-02-04 03:33:10 +0400220 struct clk *clk;
Thierry Redinga1702852009-03-27 00:12:24 -0700221 s8 phy_id;
Florian Fainelliabf7e532016-12-04 12:40:28 -0800222
223 int old_link;
224 int old_duplex;
Thierry Redinga1702852009-03-27 00:12:24 -0700225};
226
227/**
228 * struct ethoc_bd - buffer descriptor
229 * @stat: buffer statistics
230 * @addr: physical memory address
231 */
232struct ethoc_bd {
233 u32 stat;
234 u32 addr;
235};
236
Thomas Chou16dd18b2009-10-07 14:16:42 +0000237static inline u32 ethoc_read(struct ethoc *dev, loff_t offset)
Thierry Redinga1702852009-03-27 00:12:24 -0700238{
Max Filippov06e60e592015-09-22 14:27:16 +0300239 if (dev->big_endian)
240 return ioread32be(dev->iobase + offset);
241 else
242 return ioread32(dev->iobase + offset);
Thierry Redinga1702852009-03-27 00:12:24 -0700243}
244
Thomas Chou16dd18b2009-10-07 14:16:42 +0000245static inline void ethoc_write(struct ethoc *dev, loff_t offset, u32 data)
Thierry Redinga1702852009-03-27 00:12:24 -0700246{
Max Filippov06e60e592015-09-22 14:27:16 +0300247 if (dev->big_endian)
248 iowrite32be(data, dev->iobase + offset);
249 else
250 iowrite32(data, dev->iobase + offset);
Thierry Redinga1702852009-03-27 00:12:24 -0700251}
252
Thomas Chou16dd18b2009-10-07 14:16:42 +0000253static inline void ethoc_read_bd(struct ethoc *dev, int index,
254 struct ethoc_bd *bd)
Thierry Redinga1702852009-03-27 00:12:24 -0700255{
256 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
257 bd->stat = ethoc_read(dev, offset + 0);
258 bd->addr = ethoc_read(dev, offset + 4);
259}
260
Thomas Chou16dd18b2009-10-07 14:16:42 +0000261static inline void ethoc_write_bd(struct ethoc *dev, int index,
Thierry Redinga1702852009-03-27 00:12:24 -0700262 const struct ethoc_bd *bd)
263{
264 loff_t offset = ETHOC_BD_BASE + (index * sizeof(struct ethoc_bd));
265 ethoc_write(dev, offset + 0, bd->stat);
266 ethoc_write(dev, offset + 4, bd->addr);
267}
268
Thomas Chou16dd18b2009-10-07 14:16:42 +0000269static inline void ethoc_enable_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700270{
271 u32 imask = ethoc_read(dev, INT_MASK);
272 imask |= mask;
273 ethoc_write(dev, INT_MASK, imask);
274}
275
Thomas Chou16dd18b2009-10-07 14:16:42 +0000276static inline void ethoc_disable_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700277{
278 u32 imask = ethoc_read(dev, INT_MASK);
279 imask &= ~mask;
280 ethoc_write(dev, INT_MASK, imask);
281}
282
Thomas Chou16dd18b2009-10-07 14:16:42 +0000283static inline void ethoc_ack_irq(struct ethoc *dev, u32 mask)
Thierry Redinga1702852009-03-27 00:12:24 -0700284{
285 ethoc_write(dev, INT_SOURCE, mask);
286}
287
Thomas Chou16dd18b2009-10-07 14:16:42 +0000288static inline void ethoc_enable_rx_and_tx(struct ethoc *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700289{
290 u32 mode = ethoc_read(dev, MODER);
291 mode |= MODER_RXEN | MODER_TXEN;
292 ethoc_write(dev, MODER, mode);
293}
294
Thomas Chou16dd18b2009-10-07 14:16:42 +0000295static inline void ethoc_disable_rx_and_tx(struct ethoc *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700296{
297 u32 mode = ethoc_read(dev, MODER);
298 mode &= ~(MODER_RXEN | MODER_TXEN);
299 ethoc_write(dev, MODER, mode);
300}
301
David S. Miller5cf3e032010-07-07 18:23:19 -0700302static int ethoc_init_ring(struct ethoc *dev, unsigned long mem_start)
Thierry Redinga1702852009-03-27 00:12:24 -0700303{
304 struct ethoc_bd bd;
305 int i;
Barry Grussling72aa8e12013-01-27 18:44:36 +0000306 void *vma;
Thierry Redinga1702852009-03-27 00:12:24 -0700307
308 dev->cur_tx = 0;
309 dev->dty_tx = 0;
310 dev->cur_rx = 0;
311
Jonas Bonnee4f56b2010-06-11 02:47:36 +0000312 ethoc_write(dev, TX_BD_NUM, dev->num_tx);
313
Thierry Redinga1702852009-03-27 00:12:24 -0700314 /* setup transmission buffers */
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000315 bd.addr = mem_start;
Thierry Redinga1702852009-03-27 00:12:24 -0700316 bd.stat = TX_BD_IRQ | TX_BD_CRC;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000317 vma = dev->membase;
Thierry Redinga1702852009-03-27 00:12:24 -0700318
319 for (i = 0; i < dev->num_tx; i++) {
320 if (i == dev->num_tx - 1)
321 bd.stat |= TX_BD_WRAP;
322
323 ethoc_write_bd(dev, i, &bd);
324 bd.addr += ETHOC_BUFSIZ;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000325
326 dev->vma[i] = vma;
327 vma += ETHOC_BUFSIZ;
Thierry Redinga1702852009-03-27 00:12:24 -0700328 }
329
Thierry Redinga1702852009-03-27 00:12:24 -0700330 bd.stat = RX_BD_EMPTY | RX_BD_IRQ;
331
332 for (i = 0; i < dev->num_rx; i++) {
333 if (i == dev->num_rx - 1)
334 bd.stat |= RX_BD_WRAP;
335
336 ethoc_write_bd(dev, dev->num_tx + i, &bd);
337 bd.addr += ETHOC_BUFSIZ;
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000338
339 dev->vma[dev->num_tx + i] = vma;
340 vma += ETHOC_BUFSIZ;
Thierry Redinga1702852009-03-27 00:12:24 -0700341 }
342
343 return 0;
344}
345
346static int ethoc_reset(struct ethoc *dev)
347{
348 u32 mode;
349
350 /* TODO: reset controller? */
351
352 ethoc_disable_rx_and_tx(dev);
353
354 /* TODO: setup registers */
355
356 /* enable FCS generation and automatic padding */
357 mode = ethoc_read(dev, MODER);
358 mode |= MODER_CRC | MODER_PAD;
359 ethoc_write(dev, MODER, mode);
360
361 /* set full-duplex mode */
362 mode = ethoc_read(dev, MODER);
363 mode |= MODER_FULLD;
364 ethoc_write(dev, MODER, mode);
365 ethoc_write(dev, IPGT, 0x15);
366
367 ethoc_ack_irq(dev, INT_MASK_ALL);
368 ethoc_enable_irq(dev, INT_MASK_ALL);
369 ethoc_enable_rx_and_tx(dev);
370 return 0;
371}
372
373static unsigned int ethoc_update_rx_stats(struct ethoc *dev,
374 struct ethoc_bd *bd)
375{
376 struct net_device *netdev = dev->netdev;
377 unsigned int ret = 0;
378
379 if (bd->stat & RX_BD_TL) {
380 dev_err(&netdev->dev, "RX: frame too long\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000381 netdev->stats.rx_length_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700382 ret++;
383 }
384
385 if (bd->stat & RX_BD_SF) {
386 dev_err(&netdev->dev, "RX: frame too short\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000387 netdev->stats.rx_length_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700388 ret++;
389 }
390
391 if (bd->stat & RX_BD_DN) {
392 dev_err(&netdev->dev, "RX: dribble nibble\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000393 netdev->stats.rx_frame_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700394 }
395
396 if (bd->stat & RX_BD_CRC) {
397 dev_err(&netdev->dev, "RX: wrong CRC\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000398 netdev->stats.rx_crc_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700399 ret++;
400 }
401
402 if (bd->stat & RX_BD_OR) {
403 dev_err(&netdev->dev, "RX: overrun\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000404 netdev->stats.rx_over_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700405 ret++;
406 }
407
408 if (bd->stat & RX_BD_MISS)
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000409 netdev->stats.rx_missed_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700410
411 if (bd->stat & RX_BD_LC) {
412 dev_err(&netdev->dev, "RX: late collision\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000413 netdev->stats.collisions++;
Thierry Redinga1702852009-03-27 00:12:24 -0700414 ret++;
415 }
416
417 return ret;
418}
419
420static int ethoc_rx(struct net_device *dev, int limit)
421{
422 struct ethoc *priv = netdev_priv(dev);
423 int count;
424
425 for (count = 0; count < limit; ++count) {
426 unsigned int entry;
427 struct ethoc_bd bd;
428
Jonas Bonn6a632622010-11-25 02:30:32 +0000429 entry = priv->num_tx + priv->cur_rx;
Thierry Redinga1702852009-03-27 00:12:24 -0700430 ethoc_read_bd(priv, entry, &bd);
Jonas Bonn20f70dd2010-11-25 02:30:28 +0000431 if (bd.stat & RX_BD_EMPTY) {
432 ethoc_ack_irq(priv, INT_MASK_RX);
433 /* If packet (interrupt) came in between checking
434 * BD_EMTPY and clearing the interrupt source, then we
435 * risk missing the packet as the RX interrupt won't
436 * trigger right away when we reenable it; hence, check
437 * BD_EMTPY here again to make sure there isn't such a
438 * packet waiting for us...
439 */
440 ethoc_read_bd(priv, entry, &bd);
441 if (bd.stat & RX_BD_EMPTY)
442 break;
443 }
Thierry Redinga1702852009-03-27 00:12:24 -0700444
445 if (ethoc_update_rx_stats(priv, &bd) == 0) {
446 int size = bd.stat >> 16;
Eric Dumazet89d71a62009-10-13 05:34:20 +0000447 struct sk_buff *skb;
Thomas Chou050f91d2009-10-04 23:33:19 +0000448
449 size -= 4; /* strip the CRC */
Eric Dumazet89d71a62009-10-13 05:34:20 +0000450 skb = netdev_alloc_skb_ip_align(dev, size);
Thomas Chou050f91d2009-10-04 23:33:19 +0000451
Thierry Redinga1702852009-03-27 00:12:24 -0700452 if (likely(skb)) {
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000453 void *src = priv->vma[entry];
Thierry Redinga1702852009-03-27 00:12:24 -0700454 memcpy_fromio(skb_put(skb, size), src, size);
455 skb->protocol = eth_type_trans(skb, dev);
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000456 dev->stats.rx_packets++;
457 dev->stats.rx_bytes += size;
Thierry Redinga1702852009-03-27 00:12:24 -0700458 netif_receive_skb(skb);
459 } else {
460 if (net_ratelimit())
Barry Grussling72aa8e12013-01-27 18:44:36 +0000461 dev_warn(&dev->dev,
462 "low on memory - packet dropped\n");
Thierry Redinga1702852009-03-27 00:12:24 -0700463
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000464 dev->stats.rx_dropped++;
Thierry Redinga1702852009-03-27 00:12:24 -0700465 break;
466 }
467 }
468
469 /* clear the buffer descriptor so it can be reused */
470 bd.stat &= ~RX_BD_STATS;
471 bd.stat |= RX_BD_EMPTY;
472 ethoc_write_bd(priv, entry, &bd);
Jonas Bonn6a632622010-11-25 02:30:32 +0000473 if (++priv->cur_rx == priv->num_rx)
474 priv->cur_rx = 0;
Thierry Redinga1702852009-03-27 00:12:24 -0700475 }
476
477 return count;
478}
479
Jonas Bonn4f64bcb2010-11-25 02:30:31 +0000480static void ethoc_update_tx_stats(struct ethoc *dev, struct ethoc_bd *bd)
Thierry Redinga1702852009-03-27 00:12:24 -0700481{
482 struct net_device *netdev = dev->netdev;
483
484 if (bd->stat & TX_BD_LC) {
485 dev_err(&netdev->dev, "TX: late collision\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000486 netdev->stats.tx_window_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700487 }
488
489 if (bd->stat & TX_BD_RL) {
490 dev_err(&netdev->dev, "TX: retransmit limit\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000491 netdev->stats.tx_aborted_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700492 }
493
494 if (bd->stat & TX_BD_UR) {
495 dev_err(&netdev->dev, "TX: underrun\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000496 netdev->stats.tx_fifo_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700497 }
498
499 if (bd->stat & TX_BD_CS) {
500 dev_err(&netdev->dev, "TX: carrier sense lost\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000501 netdev->stats.tx_carrier_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700502 }
503
504 if (bd->stat & TX_BD_STATS)
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000505 netdev->stats.tx_errors++;
Thierry Redinga1702852009-03-27 00:12:24 -0700506
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000507 netdev->stats.collisions += (bd->stat >> 4) & 0xf;
508 netdev->stats.tx_bytes += bd->stat >> 16;
509 netdev->stats.tx_packets++;
Thierry Redinga1702852009-03-27 00:12:24 -0700510}
511
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000512static int ethoc_tx(struct net_device *dev, int limit)
Thierry Redinga1702852009-03-27 00:12:24 -0700513{
514 struct ethoc *priv = netdev_priv(dev);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000515 int count;
516 struct ethoc_bd bd;
Thierry Redinga1702852009-03-27 00:12:24 -0700517
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000518 for (count = 0; count < limit; ++count) {
519 unsigned int entry;
Thierry Redinga1702852009-03-27 00:12:24 -0700520
Jonas Bonn6a632622010-11-25 02:30:32 +0000521 entry = priv->dty_tx & (priv->num_tx-1);
Thierry Redinga1702852009-03-27 00:12:24 -0700522
523 ethoc_read_bd(priv, entry, &bd);
Thierry Redinga1702852009-03-27 00:12:24 -0700524
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000525 if (bd.stat & TX_BD_READY || (priv->dty_tx == priv->cur_tx)) {
526 ethoc_ack_irq(priv, INT_MASK_TX);
527 /* If interrupt came in between reading in the BD
528 * and clearing the interrupt source, then we risk
529 * missing the event as the TX interrupt won't trigger
530 * right away when we reenable it; hence, check
531 * BD_EMPTY here again to make sure there isn't such an
532 * event pending...
533 */
534 ethoc_read_bd(priv, entry, &bd);
535 if (bd.stat & TX_BD_READY ||
536 (priv->dty_tx == priv->cur_tx))
537 break;
538 }
539
Jonas Bonn4f64bcb2010-11-25 02:30:31 +0000540 ethoc_update_tx_stats(priv, &bd);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000541 priv->dty_tx++;
Thierry Redinga1702852009-03-27 00:12:24 -0700542 }
543
544 if ((priv->cur_tx - priv->dty_tx) <= (priv->num_tx / 2))
545 netif_wake_queue(dev);
546
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000547 return count;
Thierry Redinga1702852009-03-27 00:12:24 -0700548}
549
550static irqreturn_t ethoc_interrupt(int irq, void *dev_id)
551{
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000552 struct net_device *dev = dev_id;
Thierry Redinga1702852009-03-27 00:12:24 -0700553 struct ethoc *priv = netdev_priv(dev);
554 u32 pending;
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000555 u32 mask;
Thierry Redinga1702852009-03-27 00:12:24 -0700556
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000557 /* Figure out what triggered the interrupt...
558 * The tricky bit here is that the interrupt source bits get
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300559 * set in INT_SOURCE for an event regardless of whether that
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000560 * event is masked or not. Thus, in order to figure out what
561 * triggered the interrupt, we need to remove the sources
562 * for all events that are currently masked. This behaviour
563 * is not particularly well documented but reasonable...
564 */
565 mask = ethoc_read(priv, INT_MASK);
Thierry Redinga1702852009-03-27 00:12:24 -0700566 pending = ethoc_read(priv, INT_SOURCE);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000567 pending &= mask;
568
Barry Grussling72aa8e12013-01-27 18:44:36 +0000569 if (unlikely(pending == 0))
Thierry Redinga1702852009-03-27 00:12:24 -0700570 return IRQ_NONE;
Thierry Redinga1702852009-03-27 00:12:24 -0700571
Thomas Chou50c54a52009-10-07 14:16:43 +0000572 ethoc_ack_irq(priv, pending);
Thierry Redinga1702852009-03-27 00:12:24 -0700573
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000574 /* We always handle the dropped packet interrupt */
Thierry Redinga1702852009-03-27 00:12:24 -0700575 if (pending & INT_MASK_BUSY) {
Florian Fainelli38b4bc22016-12-04 12:40:30 -0800576 dev_dbg(&dev->dev, "packet dropped\n");
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000577 dev->stats.rx_dropped++;
Thierry Redinga1702852009-03-27 00:12:24 -0700578 }
579
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000580 /* Handle receive/transmit event by switching to polling */
581 if (pending & (INT_MASK_TX | INT_MASK_RX)) {
582 ethoc_disable_irq(priv, INT_MASK_TX | INT_MASK_RX);
583 napi_schedule(&priv->napi);
Thierry Redinga1702852009-03-27 00:12:24 -0700584 }
585
Thierry Redinga1702852009-03-27 00:12:24 -0700586 return IRQ_HANDLED;
587}
588
589static int ethoc_get_mac_address(struct net_device *dev, void *addr)
590{
591 struct ethoc *priv = netdev_priv(dev);
592 u8 *mac = (u8 *)addr;
593 u32 reg;
594
595 reg = ethoc_read(priv, MAC_ADDR0);
596 mac[2] = (reg >> 24) & 0xff;
597 mac[3] = (reg >> 16) & 0xff;
598 mac[4] = (reg >> 8) & 0xff;
599 mac[5] = (reg >> 0) & 0xff;
600
601 reg = ethoc_read(priv, MAC_ADDR1);
602 mac[0] = (reg >> 8) & 0xff;
603 mac[1] = (reg >> 0) & 0xff;
604
605 return 0;
606}
607
608static int ethoc_poll(struct napi_struct *napi, int budget)
609{
610 struct ethoc *priv = container_of(napi, struct ethoc, napi);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000611 int rx_work_done = 0;
612 int tx_work_done = 0;
Thierry Redinga1702852009-03-27 00:12:24 -0700613
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000614 rx_work_done = ethoc_rx(priv->netdev, budget);
615 tx_work_done = ethoc_tx(priv->netdev, budget);
616
617 if (rx_work_done < budget && tx_work_done < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -0800618 napi_complete_done(napi, rx_work_done);
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000619 ethoc_enable_irq(priv, INT_MASK_TX | INT_MASK_RX);
Thierry Redinga1702852009-03-27 00:12:24 -0700620 }
621
Jonas Bonnfa98eb02010-11-25 02:30:29 +0000622 return rx_work_done;
Thierry Redinga1702852009-03-27 00:12:24 -0700623}
624
625static int ethoc_mdio_read(struct mii_bus *bus, int phy, int reg)
626{
Thierry Redinga1702852009-03-27 00:12:24 -0700627 struct ethoc *priv = bus->priv;
Jonas Bonn8dac4282010-11-25 02:30:30 +0000628 int i;
Thierry Redinga1702852009-03-27 00:12:24 -0700629
630 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
631 ethoc_write(priv, MIICOMMAND, MIICOMMAND_READ);
632
Barry Grussling72aa8e12013-01-27 18:44:36 +0000633 for (i = 0; i < 5; i++) {
Thierry Redinga1702852009-03-27 00:12:24 -0700634 u32 status = ethoc_read(priv, MIISTATUS);
635 if (!(status & MIISTATUS_BUSY)) {
636 u32 data = ethoc_read(priv, MIIRX_DATA);
637 /* reset MII command register */
638 ethoc_write(priv, MIICOMMAND, 0);
639 return data;
640 }
Barry Grussling72aa8e12013-01-27 18:44:36 +0000641 usleep_range(100, 200);
Thierry Redinga1702852009-03-27 00:12:24 -0700642 }
643
644 return -EBUSY;
645}
646
647static int ethoc_mdio_write(struct mii_bus *bus, int phy, int reg, u16 val)
648{
Thierry Redinga1702852009-03-27 00:12:24 -0700649 struct ethoc *priv = bus->priv;
Jonas Bonn8dac4282010-11-25 02:30:30 +0000650 int i;
Thierry Redinga1702852009-03-27 00:12:24 -0700651
652 ethoc_write(priv, MIIADDRESS, MIIADDRESS_ADDR(phy, reg));
653 ethoc_write(priv, MIITX_DATA, val);
654 ethoc_write(priv, MIICOMMAND, MIICOMMAND_WRITE);
655
Barry Grussling72aa8e12013-01-27 18:44:36 +0000656 for (i = 0; i < 5; i++) {
Thierry Redinga1702852009-03-27 00:12:24 -0700657 u32 stat = ethoc_read(priv, MIISTATUS);
Jonas Bonnb46773d2010-06-11 02:47:39 +0000658 if (!(stat & MIISTATUS_BUSY)) {
659 /* reset MII command register */
660 ethoc_write(priv, MIICOMMAND, 0);
Thierry Redinga1702852009-03-27 00:12:24 -0700661 return 0;
Jonas Bonnb46773d2010-06-11 02:47:39 +0000662 }
Barry Grussling72aa8e12013-01-27 18:44:36 +0000663 usleep_range(100, 200);
Thierry Redinga1702852009-03-27 00:12:24 -0700664 }
665
666 return -EBUSY;
667}
668
Thierry Redinga1702852009-03-27 00:12:24 -0700669static void ethoc_mdio_poll(struct net_device *dev)
670{
Florian Fainelliabf7e532016-12-04 12:40:28 -0800671 struct ethoc *priv = netdev_priv(dev);
672 struct phy_device *phydev = dev->phydev;
673 bool changed = false;
674 u32 mode;
675
676 if (priv->old_link != phydev->link) {
677 changed = true;
678 priv->old_link = phydev->link;
679 }
680
681 if (priv->old_duplex != phydev->duplex) {
682 changed = true;
683 priv->old_duplex = phydev->duplex;
684 }
685
686 if (!changed)
687 return;
688
689 mode = ethoc_read(priv, MODER);
690 if (phydev->duplex == DUPLEX_FULL)
691 mode |= MODER_FULLD;
692 else
693 mode &= ~MODER_FULLD;
694 ethoc_write(priv, MODER, mode);
695
696 phy_print_status(phydev);
Thierry Redinga1702852009-03-27 00:12:24 -0700697}
698
Bill Pembertona0a4efe2012-12-03 09:24:09 -0500699static int ethoc_mdio_probe(struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700700{
701 struct ethoc *priv = netdev_priv(dev);
702 struct phy_device *phy;
Jonas Bonn637f33b82010-06-11 02:47:37 +0000703 int err;
Thierry Redinga1702852009-03-27 00:12:24 -0700704
Barry Grussling72aa8e12013-01-27 18:44:36 +0000705 if (priv->phy_id != -1)
Andrew Lunn7f854422016-01-06 20:11:18 +0100706 phy = mdiobus_get_phy(priv->mdio, priv->phy_id);
Barry Grussling72aa8e12013-01-27 18:44:36 +0000707 else
Jonas Bonn637f33b82010-06-11 02:47:37 +0000708 phy = phy_find_first(priv->mdio);
Thierry Redinga1702852009-03-27 00:12:24 -0700709
Cai Huoqing015a22f2021-09-15 22:58:27 +0800710 if (!phy)
711 return dev_err_probe(&dev->dev, -ENXIO, "no PHY found\n");
Thierry Redinga1702852009-03-27 00:12:24 -0700712
Florian Fainelliabf7e532016-12-04 12:40:28 -0800713 priv->old_duplex = -1;
714 priv->old_link = -1;
715
Florian Fainellif9a8f832013-01-14 00:52:52 +0000716 err = phy_connect_direct(dev, phy, ethoc_mdio_poll,
717 PHY_INTERFACE_MODE_GMII);
Cai Huoqing015a22f2021-09-15 22:58:27 +0800718 if (err)
719 return dev_err_probe(&dev->dev, err, "could not attach to PHY\n");
Thierry Redinga1702852009-03-27 00:12:24 -0700720
Andrew Lunn58056c12018-09-12 01:53:11 +0200721 phy_set_max_speed(phy, SPEED_100);
Max Filippov445a48c2014-02-04 03:33:09 +0400722
Thierry Redinga1702852009-03-27 00:12:24 -0700723 return 0;
724}
725
726static int ethoc_open(struct net_device *dev)
727{
728 struct ethoc *priv = netdev_priv(dev);
Thierry Redinga1702852009-03-27 00:12:24 -0700729 int ret;
730
731 ret = request_irq(dev->irq, ethoc_interrupt, IRQF_SHARED,
732 dev->name, dev);
733 if (ret)
734 return ret;
735
Max Filippovd220b942017-06-05 18:31:16 -0700736 napi_enable(&priv->napi);
737
David S. Miller5cf3e032010-07-07 18:23:19 -0700738 ethoc_init_ring(priv, dev->mem_start);
Thierry Redinga1702852009-03-27 00:12:24 -0700739 ethoc_reset(priv);
740
741 if (netif_queue_stopped(dev)) {
742 dev_dbg(&dev->dev, " resuming queue\n");
743 netif_wake_queue(dev);
744 } else {
745 dev_dbg(&dev->dev, " starting queue\n");
746 netif_start_queue(dev);
747 }
748
Florian Fainelliabf7e532016-12-04 12:40:28 -0800749 priv->old_link = -1;
750 priv->old_duplex = -1;
751
Philippe Reynes11331fc2016-07-15 09:59:11 +0200752 phy_start(dev->phydev);
Thierry Redinga1702852009-03-27 00:12:24 -0700753
754 if (netif_msg_ifup(priv)) {
755 dev_info(&dev->dev, "I/O: %08lx Memory: %08lx-%08lx\n",
756 dev->base_addr, dev->mem_start, dev->mem_end);
757 }
758
759 return 0;
760}
761
762static int ethoc_stop(struct net_device *dev)
763{
764 struct ethoc *priv = netdev_priv(dev);
765
766 napi_disable(&priv->napi);
767
Philippe Reynes11331fc2016-07-15 09:59:11 +0200768 if (dev->phydev)
769 phy_stop(dev->phydev);
Thierry Redinga1702852009-03-27 00:12:24 -0700770
771 ethoc_disable_rx_and_tx(priv);
772 free_irq(dev->irq, dev);
773
774 if (!netif_queue_stopped(dev))
775 netif_stop_queue(dev);
776
777 return 0;
778}
779
780static int ethoc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
781{
782 struct ethoc *priv = netdev_priv(dev);
783 struct mii_ioctl_data *mdio = if_mii(ifr);
784 struct phy_device *phy = NULL;
785
786 if (!netif_running(dev))
787 return -EINVAL;
788
789 if (cmd != SIOCGMIIPHY) {
790 if (mdio->phy_id >= PHY_MAX_ADDR)
791 return -ERANGE;
792
Andrew Lunn7f854422016-01-06 20:11:18 +0100793 phy = mdiobus_get_phy(priv->mdio, mdio->phy_id);
Thierry Redinga1702852009-03-27 00:12:24 -0700794 if (!phy)
795 return -ENODEV;
796 } else {
Philippe Reynes11331fc2016-07-15 09:59:11 +0200797 phy = dev->phydev;
Thierry Redinga1702852009-03-27 00:12:24 -0700798 }
799
Richard Cochran28b04112010-07-17 08:48:55 +0000800 return phy_mii_ioctl(phy, ifr, cmd);
Thierry Redinga1702852009-03-27 00:12:24 -0700801}
802
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000803static void ethoc_do_set_mac_address(struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700804{
805 struct ethoc *priv = netdev_priv(dev);
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000806 unsigned char *mac = dev->dev_addr;
Danny Kukawka939d2252012-02-17 05:43:29 +0000807
Thierry Redinga1702852009-03-27 00:12:24 -0700808 ethoc_write(priv, MAC_ADDR0, (mac[2] << 24) | (mac[3] << 16) |
809 (mac[4] << 8) | (mac[5] << 0));
810 ethoc_write(priv, MAC_ADDR1, (mac[0] << 8) | (mac[1] << 0));
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000811}
Thierry Redinga1702852009-03-27 00:12:24 -0700812
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000813static int ethoc_set_mac_address(struct net_device *dev, void *p)
814{
815 const struct sockaddr *addr = p;
Danny Kukawka939d2252012-02-17 05:43:29 +0000816
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000817 if (!is_valid_ether_addr(addr->sa_data))
818 return -EADDRNOTAVAIL;
Jakub Kicinskia96d3172021-10-01 14:32:20 -0700819 eth_hw_addr_set(dev, addr->sa_data);
Jiri Pirkoefc61a32013-01-06 03:25:45 +0000820 ethoc_do_set_mac_address(dev);
Thierry Redinga1702852009-03-27 00:12:24 -0700821 return 0;
822}
823
824static void ethoc_set_multicast_list(struct net_device *dev)
825{
826 struct ethoc *priv = netdev_priv(dev);
827 u32 mode = ethoc_read(priv, MODER);
Jiri Pirko22bedad32010-04-01 21:22:57 +0000828 struct netdev_hw_addr *ha;
Thierry Redinga1702852009-03-27 00:12:24 -0700829 u32 hash[2] = { 0, 0 };
830
831 /* set loopback mode if requested */
832 if (dev->flags & IFF_LOOPBACK)
833 mode |= MODER_LOOP;
834 else
835 mode &= ~MODER_LOOP;
836
837 /* receive broadcast frames if requested */
838 if (dev->flags & IFF_BROADCAST)
839 mode &= ~MODER_BRO;
840 else
841 mode |= MODER_BRO;
842
843 /* enable promiscuous mode if requested */
844 if (dev->flags & IFF_PROMISC)
845 mode |= MODER_PRO;
846 else
847 mode &= ~MODER_PRO;
848
849 ethoc_write(priv, MODER, mode);
850
851 /* receive multicast frames */
852 if (dev->flags & IFF_ALLMULTI) {
853 hash[0] = 0xffffffff;
854 hash[1] = 0xffffffff;
855 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +0000856 netdev_for_each_mc_addr(ha, dev) {
857 u32 crc = ether_crc(ETH_ALEN, ha->addr);
Thierry Redinga1702852009-03-27 00:12:24 -0700858 int bit = (crc >> 26) & 0x3f;
859 hash[bit >> 5] |= 1 << (bit & 0x1f);
860 }
861 }
862
863 ethoc_write(priv, ETH_HASH0, hash[0]);
864 ethoc_write(priv, ETH_HASH1, hash[1]);
865}
866
867static int ethoc_change_mtu(struct net_device *dev, int new_mtu)
868{
869 return -ENOSYS;
870}
871
Michael S. Tsirkin0290bd22019-12-10 09:23:51 -0500872static void ethoc_tx_timeout(struct net_device *dev, unsigned int txqueue)
Thierry Redinga1702852009-03-27 00:12:24 -0700873{
874 struct ethoc *priv = netdev_priv(dev);
875 u32 pending = ethoc_read(priv, INT_SOURCE);
876 if (likely(pending))
877 ethoc_interrupt(dev->irq, dev);
878}
879
Stephen Hemminger613573252009-08-31 19:50:58 +0000880static netdev_tx_t ethoc_start_xmit(struct sk_buff *skb, struct net_device *dev)
Thierry Redinga1702852009-03-27 00:12:24 -0700881{
882 struct ethoc *priv = netdev_priv(dev);
883 struct ethoc_bd bd;
884 unsigned int entry;
885 void *dest;
886
Florian Fainelliee6c21b2016-07-12 16:04:36 -0700887 if (skb_put_padto(skb, ETHOC_ZLEN)) {
888 dev->stats.tx_errors++;
889 goto out_no_free;
890 }
891
Thierry Redinga1702852009-03-27 00:12:24 -0700892 if (unlikely(skb->len > ETHOC_BUFSIZ)) {
Kulikov Vasiliy57616ee2010-07-05 02:13:31 +0000893 dev->stats.tx_errors++;
Patrick McHardy3790c8c2009-06-12 03:00:35 +0000894 goto out;
Thierry Redinga1702852009-03-27 00:12:24 -0700895 }
896
897 entry = priv->cur_tx % priv->num_tx;
898 spin_lock_irq(&priv->lock);
899 priv->cur_tx++;
900
901 ethoc_read_bd(priv, entry, &bd);
902 if (unlikely(skb->len < ETHOC_ZLEN))
903 bd.stat |= TX_BD_PAD;
904 else
905 bd.stat &= ~TX_BD_PAD;
906
Jonas Bonnf8555ad02010-06-11 02:47:35 +0000907 dest = priv->vma[entry];
Thierry Redinga1702852009-03-27 00:12:24 -0700908 memcpy_toio(dest, skb->data, skb->len);
909
910 bd.stat &= ~(TX_BD_STATS | TX_BD_LEN_MASK);
911 bd.stat |= TX_BD_LEN(skb->len);
912 ethoc_write_bd(priv, entry, &bd);
913
914 bd.stat |= TX_BD_READY;
915 ethoc_write_bd(priv, entry, &bd);
916
917 if (priv->cur_tx == (priv->dty_tx + priv->num_tx)) {
918 dev_dbg(&dev->dev, "stopping queue\n");
919 netif_stop_queue(dev);
920 }
921
Thierry Redinga1702852009-03-27 00:12:24 -0700922 spin_unlock_irq(&priv->lock);
Richard Cochran68f51392011-06-12 02:19:04 +0000923 skb_tx_timestamp(skb);
Patrick McHardy3790c8c2009-06-12 03:00:35 +0000924out:
925 dev_kfree_skb(skb);
Florian Fainelliee6c21b2016-07-12 16:04:36 -0700926out_no_free:
Thierry Redinga1702852009-03-27 00:12:24 -0700927 return NETDEV_TX_OK;
928}
929
Max Filippov11129092014-01-31 09:41:06 +0400930static int ethoc_get_regs_len(struct net_device *netdev)
931{
932 return ETH_END;
933}
934
935static void ethoc_get_regs(struct net_device *dev, struct ethtool_regs *regs,
936 void *p)
937{
938 struct ethoc *priv = netdev_priv(dev);
939 u32 *regs_buff = p;
940 unsigned i;
941
942 regs->version = 0;
943 for (i = 0; i < ETH_END / sizeof(u32); ++i)
944 regs_buff[i] = ethoc_read(priv, i * sizeof(u32));
945}
946
Max Filippovbee7bac2014-01-31 09:41:07 +0400947static void ethoc_get_ringparam(struct net_device *dev,
948 struct ethtool_ringparam *ring)
949{
950 struct ethoc *priv = netdev_priv(dev);
951
952 ring->rx_max_pending = priv->num_bd - 1;
953 ring->rx_mini_max_pending = 0;
954 ring->rx_jumbo_max_pending = 0;
955 ring->tx_max_pending = priv->num_bd - 1;
956
957 ring->rx_pending = priv->num_rx;
958 ring->rx_mini_pending = 0;
959 ring->rx_jumbo_pending = 0;
960 ring->tx_pending = priv->num_tx;
961}
962
963static int ethoc_set_ringparam(struct net_device *dev,
964 struct ethtool_ringparam *ring)
965{
966 struct ethoc *priv = netdev_priv(dev);
967
968 if (ring->tx_pending < 1 || ring->rx_pending < 1 ||
969 ring->tx_pending + ring->rx_pending > priv->num_bd)
970 return -EINVAL;
971 if (ring->rx_mini_pending || ring->rx_jumbo_pending)
972 return -EINVAL;
973
974 if (netif_running(dev)) {
975 netif_tx_disable(dev);
976 ethoc_disable_rx_and_tx(priv);
977 ethoc_disable_irq(priv, INT_MASK_TX | INT_MASK_RX);
978 synchronize_irq(dev->irq);
979 }
980
981 priv->num_tx = rounddown_pow_of_two(ring->tx_pending);
982 priv->num_rx = ring->rx_pending;
983 ethoc_init_ring(priv, dev->mem_start);
984
985 if (netif_running(dev)) {
986 ethoc_enable_irq(priv, INT_MASK_TX | INT_MASK_RX);
987 ethoc_enable_rx_and_tx(priv);
988 netif_wake_queue(dev);
989 }
990 return 0;
991}
992
Tobias Klausera870a972017-01-17 15:01:08 +0100993static const struct ethtool_ops ethoc_ethtool_ops = {
Max Filippov11129092014-01-31 09:41:06 +0400994 .get_regs_len = ethoc_get_regs_len,
995 .get_regs = ethoc_get_regs,
Florian Fainelli3d3ba562016-11-15 11:19:46 -0800996 .nway_reset = phy_ethtool_nway_reset,
Max Filippovfba91102014-01-31 09:41:04 +0400997 .get_link = ethtool_op_get_link,
Max Filippovbee7bac2014-01-31 09:41:07 +0400998 .get_ringparam = ethoc_get_ringparam,
999 .set_ringparam = ethoc_set_ringparam,
Max Filippovfba91102014-01-31 09:41:04 +04001000 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynes87e544b2016-07-15 09:59:12 +02001001 .get_link_ksettings = phy_ethtool_get_link_ksettings,
1002 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Max Filippovfba91102014-01-31 09:41:04 +04001003};
1004
Thierry Redinga1702852009-03-27 00:12:24 -07001005static const struct net_device_ops ethoc_netdev_ops = {
1006 .ndo_open = ethoc_open,
1007 .ndo_stop = ethoc_stop,
Arnd Bergmanna7605372021-07-27 15:45:13 +02001008 .ndo_eth_ioctl = ethoc_ioctl,
Thierry Redinga1702852009-03-27 00:12:24 -07001009 .ndo_set_mac_address = ethoc_set_mac_address,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001010 .ndo_set_rx_mode = ethoc_set_multicast_list,
Thierry Redinga1702852009-03-27 00:12:24 -07001011 .ndo_change_mtu = ethoc_change_mtu,
1012 .ndo_tx_timeout = ethoc_tx_timeout,
Thierry Redinga1702852009-03-27 00:12:24 -07001013 .ndo_start_xmit = ethoc_start_xmit,
1014};
1015
1016/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001017 * ethoc_probe - initialize OpenCores ethernet MAC
Jesse Brandeburgd0ea5cb2020-09-25 15:24:45 -07001018 * @pdev: platform device
Thierry Redinga1702852009-03-27 00:12:24 -07001019 */
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001020static int ethoc_probe(struct platform_device *pdev)
Thierry Redinga1702852009-03-27 00:12:24 -07001021{
1022 struct net_device *netdev = NULL;
1023 struct resource *res = NULL;
1024 struct resource *mmio = NULL;
1025 struct resource *mem = NULL;
1026 struct ethoc *priv = NULL;
Jonas Bonnc527f812010-06-11 02:47:34 +00001027 int num_bd;
Thierry Redinga1702852009-03-27 00:12:24 -07001028 int ret = 0;
Max Filippova13aff02014-02-04 03:33:10 +04001029 struct ethoc_platform_data *pdata = dev_get_platdata(&pdev->dev);
1030 u32 eth_clkfreq = pdata ? pdata->eth_clkfreq : 0;
Thierry Redinga1702852009-03-27 00:12:24 -07001031
1032 /* allocate networking device */
1033 netdev = alloc_etherdev(sizeof(struct ethoc));
1034 if (!netdev) {
Thierry Redinga1702852009-03-27 00:12:24 -07001035 ret = -ENOMEM;
1036 goto out;
1037 }
1038
1039 SET_NETDEV_DEV(netdev, &pdev->dev);
1040 platform_set_drvdata(pdev, netdev);
1041
1042 /* obtain I/O memory space */
1043 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1044 if (!res) {
1045 dev_err(&pdev->dev, "cannot obtain I/O memory space\n");
1046 ret = -ENXIO;
1047 goto free;
1048 }
1049
1050 mmio = devm_request_mem_region(&pdev->dev, res->start,
Tobias Klauserd8645842010-01-15 01:48:22 -08001051 resource_size(res), res->name);
Julia Lawall463889e2009-07-27 06:13:30 +00001052 if (!mmio) {
Thierry Redinga1702852009-03-27 00:12:24 -07001053 dev_err(&pdev->dev, "cannot request I/O memory space\n");
1054 ret = -ENXIO;
1055 goto free;
1056 }
1057
1058 netdev->base_addr = mmio->start;
1059
1060 /* obtain buffer memory space */
1061 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Thomas Chou0baa0802009-10-04 23:33:20 +00001062 if (res) {
1063 mem = devm_request_mem_region(&pdev->dev, res->start,
Tobias Klauserd8645842010-01-15 01:48:22 -08001064 resource_size(res), res->name);
Thomas Chou0baa0802009-10-04 23:33:20 +00001065 if (!mem) {
1066 dev_err(&pdev->dev, "cannot request memory space\n");
1067 ret = -ENXIO;
1068 goto free;
1069 }
1070
1071 netdev->mem_start = mem->start;
1072 netdev->mem_end = mem->end;
Thierry Redinga1702852009-03-27 00:12:24 -07001073 }
1074
Thierry Redinga1702852009-03-27 00:12:24 -07001075
1076 /* obtain device IRQ number */
1077 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1078 if (!res) {
1079 dev_err(&pdev->dev, "cannot obtain IRQ\n");
1080 ret = -ENXIO;
1081 goto free;
1082 }
1083
1084 netdev->irq = res->start;
1085
1086 /* setup driver-private data */
1087 priv = netdev_priv(netdev);
1088 priv->netdev = netdev;
1089
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +01001090 priv->iobase = devm_ioremap(&pdev->dev, netdev->base_addr,
Tobias Klauserd8645842010-01-15 01:48:22 -08001091 resource_size(mmio));
Thierry Redinga1702852009-03-27 00:12:24 -07001092 if (!priv->iobase) {
1093 dev_err(&pdev->dev, "cannot remap I/O memory space\n");
1094 ret = -ENXIO;
Florian Fainelli386512d2016-07-12 16:04:35 -07001095 goto free;
Thierry Redinga1702852009-03-27 00:12:24 -07001096 }
1097
Thomas Chou0baa0802009-10-04 23:33:20 +00001098 if (netdev->mem_end) {
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +01001099 priv->membase = devm_ioremap(&pdev->dev,
Tobias Klauserd8645842010-01-15 01:48:22 -08001100 netdev->mem_start, resource_size(mem));
Thomas Chou0baa0802009-10-04 23:33:20 +00001101 if (!priv->membase) {
1102 dev_err(&pdev->dev, "cannot remap memory space\n");
1103 ret = -ENXIO;
Florian Fainelli386512d2016-07-12 16:04:35 -07001104 goto free;
Thomas Chou0baa0802009-10-04 23:33:20 +00001105 }
1106 } else {
1107 /* Allocate buffer memory */
Jonas Bonna71fba92010-06-11 02:47:40 +00001108 priv->membase = dmam_alloc_coherent(&pdev->dev,
Thomas Chou0baa0802009-10-04 23:33:20 +00001109 buffer_size, (void *)&netdev->mem_start,
1110 GFP_KERNEL);
1111 if (!priv->membase) {
1112 dev_err(&pdev->dev, "cannot allocate %dB buffer\n",
1113 buffer_size);
1114 ret = -ENOMEM;
Florian Fainelli386512d2016-07-12 16:04:35 -07001115 goto free;
Thomas Chou0baa0802009-10-04 23:33:20 +00001116 }
1117 netdev->mem_end = netdev->mem_start + buffer_size;
Thierry Redinga1702852009-03-27 00:12:24 -07001118 }
1119
Max Filippov06e60e592015-09-22 14:27:16 +03001120 priv->big_endian = pdata ? pdata->big_endian :
1121 of_device_is_big_endian(pdev->dev.of_node);
1122
Jonas Bonnc527f812010-06-11 02:47:34 +00001123 /* calculate the number of TX/RX buffers, maximum 128 supported */
1124 num_bd = min_t(unsigned int,
1125 128, (netdev->mem_end - netdev->mem_start + 1) / ETHOC_BUFSIZ);
Jonas Bonn6a632622010-11-25 02:30:32 +00001126 if (num_bd < 4) {
1127 ret = -ENODEV;
Florian Fainelli386512d2016-07-12 16:04:35 -07001128 goto free;
Jonas Bonn6a632622010-11-25 02:30:32 +00001129 }
Max Filippovbee7bac2014-01-31 09:41:07 +04001130 priv->num_bd = num_bd;
Jonas Bonn6a632622010-11-25 02:30:32 +00001131 /* num_tx must be a power of two */
1132 priv->num_tx = rounddown_pow_of_two(num_bd >> 1);
Jonas Bonnc527f812010-06-11 02:47:34 +00001133 priv->num_rx = num_bd - priv->num_tx;
1134
Jonas Bonn6a632622010-11-25 02:30:32 +00001135 dev_dbg(&pdev->dev, "ethoc: num_tx: %d num_rx: %d\n",
1136 priv->num_tx, priv->num_rx);
1137
Kees Cooka86854d2018-06-12 14:07:58 -07001138 priv->vma = devm_kcalloc(&pdev->dev, num_bd, sizeof(void *),
1139 GFP_KERNEL);
Jonas Bonnf8555ad02010-06-11 02:47:35 +00001140 if (!priv->vma) {
1141 ret = -ENOMEM;
Florian Fainelli386512d2016-07-12 16:04:35 -07001142 goto free;
Jonas Bonnf8555ad02010-06-11 02:47:35 +00001143 }
1144
Thierry Redinga1702852009-03-27 00:12:24 -07001145 /* Allow the platform setup code to pass in a MAC address. */
Max Filippova13aff02014-02-04 03:33:10 +04001146 if (pdata) {
Tobias Klauserde6b08f2017-03-17 11:52:15 +01001147 ether_addr_copy(netdev->dev_addr, pdata->hwaddr);
Thierry Redinga1702852009-03-27 00:12:24 -07001148 priv->phy_id = pdata->phy_id;
Jonas Bonne0f42582010-11-25 02:30:25 +00001149 } else {
Michael Walle83216e32021-04-12 19:47:17 +02001150 of_get_mac_address(pdev->dev.of_node, netdev->dev_addr);
Tobias Klauser444c5f92015-09-09 11:24:29 +02001151 priv->phy_id = -1;
Thierry Redinga1702852009-03-27 00:12:24 -07001152 }
1153
1154 /* Check that the given MAC address is valid. If it isn't, read the
Barry Grussling72aa8e12013-01-27 18:44:36 +00001155 * current MAC from the controller.
1156 */
Thierry Redinga1702852009-03-27 00:12:24 -07001157 if (!is_valid_ether_addr(netdev->dev_addr))
1158 ethoc_get_mac_address(netdev, netdev->dev_addr);
1159
1160 /* Check the MAC again for validity, if it still isn't choose and
Barry Grussling72aa8e12013-01-27 18:44:36 +00001161 * program a random one.
1162 */
Tobias Klauser6d6a5052017-02-16 13:54:32 +01001163 if (!is_valid_ether_addr(netdev->dev_addr))
1164 eth_hw_addr_random(netdev);
Thierry Redinga1702852009-03-27 00:12:24 -07001165
Jiri Pirkoefc61a32013-01-06 03:25:45 +00001166 ethoc_do_set_mac_address(netdev);
Danny Kukawka939d2252012-02-17 05:43:29 +00001167
Max Filippova13aff02014-02-04 03:33:10 +04001168 /* Allow the platform setup code to adjust MII management bus clock. */
1169 if (!eth_clkfreq) {
1170 struct clk *clk = devm_clk_get(&pdev->dev, NULL);
1171
1172 if (!IS_ERR(clk)) {
1173 priv->clk = clk;
1174 clk_prepare_enable(clk);
1175 eth_clkfreq = clk_get_rate(clk);
1176 }
1177 }
1178 if (eth_clkfreq) {
1179 u32 clkdiv = MIIMODER_CLKDIV(eth_clkfreq / 2500000 + 1);
1180
1181 if (!clkdiv)
1182 clkdiv = 2;
1183 dev_dbg(&pdev->dev, "setting MII clkdiv to %u\n", clkdiv);
1184 ethoc_write(priv, MIIMODER,
1185 (ethoc_read(priv, MIIMODER) & MIIMODER_NOPRE) |
1186 clkdiv);
1187 }
1188
Thierry Redinga1702852009-03-27 00:12:24 -07001189 /* register MII bus */
1190 priv->mdio = mdiobus_alloc();
1191 if (!priv->mdio) {
1192 ret = -ENOMEM;
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001193 goto free2;
Thierry Redinga1702852009-03-27 00:12:24 -07001194 }
1195
1196 priv->mdio->name = "ethoc-mdio";
1197 snprintf(priv->mdio->id, MII_BUS_ID_SIZE, "%s-%d",
1198 priv->mdio->name, pdev->id);
1199 priv->mdio->read = ethoc_mdio_read;
1200 priv->mdio->write = ethoc_mdio_write;
Thierry Redinga1702852009-03-27 00:12:24 -07001201 priv->mdio->priv = priv;
1202
Thierry Redinga1702852009-03-27 00:12:24 -07001203 ret = mdiobus_register(priv->mdio);
1204 if (ret) {
1205 dev_err(&netdev->dev, "failed to register MDIO bus\n");
Dinghao Liu5d41f9b2020-12-23 19:06:12 +08001206 goto free3;
Thierry Redinga1702852009-03-27 00:12:24 -07001207 }
1208
1209 ret = ethoc_mdio_probe(netdev);
1210 if (ret) {
1211 dev_err(&netdev->dev, "failed to probe MDIO bus\n");
1212 goto error;
1213 }
1214
Thierry Redinga1702852009-03-27 00:12:24 -07001215 /* setup the net_device structure */
1216 netdev->netdev_ops = &ethoc_netdev_ops;
1217 netdev->watchdog_timeo = ETHOC_TIMEOUT;
1218 netdev->features |= 0;
Max Filippovfba91102014-01-31 09:41:04 +04001219 netdev->ethtool_ops = &ethoc_ethtool_ops;
Thierry Redinga1702852009-03-27 00:12:24 -07001220
1221 /* setup NAPI */
Thierry Redinga1702852009-03-27 00:12:24 -07001222 netif_napi_add(netdev, &priv->napi, ethoc_poll, 64);
1223
Thierry Redinga1702852009-03-27 00:12:24 -07001224 spin_lock_init(&priv->lock);
1225
1226 ret = register_netdev(netdev);
1227 if (ret < 0) {
1228 dev_err(&netdev->dev, "failed to register interface\n");
Thomas Chouee02a4e2010-05-23 16:44:02 +00001229 goto error2;
Thierry Redinga1702852009-03-27 00:12:24 -07001230 }
1231
1232 goto out;
1233
Thomas Chouee02a4e2010-05-23 16:44:02 +00001234error2:
1235 netif_napi_del(&priv->napi);
Thierry Redinga1702852009-03-27 00:12:24 -07001236error:
1237 mdiobus_unregister(priv->mdio);
Dinghao Liu5d41f9b2020-12-23 19:06:12 +08001238free3:
Thierry Redinga1702852009-03-27 00:12:24 -07001239 mdiobus_free(priv->mdio);
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001240free2:
YueHaibing76e597e2018-05-16 19:18:22 +08001241 clk_disable_unprepare(priv->clk);
Colin Ian Kingbfa49cf2016-06-01 14:16:50 +01001242free:
Thierry Redinga1702852009-03-27 00:12:24 -07001243 free_netdev(netdev);
1244out:
1245 return ret;
1246}
1247
1248/**
Ben Hutchings49ce9c22012-07-10 10:56:00 +00001249 * ethoc_remove - shutdown OpenCores ethernet MAC
Thierry Redinga1702852009-03-27 00:12:24 -07001250 * @pdev: platform device
1251 */
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001252static int ethoc_remove(struct platform_device *pdev)
Thierry Redinga1702852009-03-27 00:12:24 -07001253{
1254 struct net_device *netdev = platform_get_drvdata(pdev);
1255 struct ethoc *priv = netdev_priv(netdev);
1256
Thierry Redinga1702852009-03-27 00:12:24 -07001257 if (netdev) {
Thomas Chouee02a4e2010-05-23 16:44:02 +00001258 netif_napi_del(&priv->napi);
Philippe Reynes11331fc2016-07-15 09:59:11 +02001259 phy_disconnect(netdev->phydev);
Thierry Redinga1702852009-03-27 00:12:24 -07001260
1261 if (priv->mdio) {
1262 mdiobus_unregister(priv->mdio);
Thierry Redinga1702852009-03-27 00:12:24 -07001263 mdiobus_free(priv->mdio);
1264 }
YueHaibing76e597e2018-05-16 19:18:22 +08001265 clk_disable_unprepare(priv->clk);
Thierry Redinga1702852009-03-27 00:12:24 -07001266 unregister_netdev(netdev);
1267 free_netdev(netdev);
1268 }
1269
1270 return 0;
1271}
1272
1273#ifdef CONFIG_PM
1274static int ethoc_suspend(struct platform_device *pdev, pm_message_t state)
1275{
1276 return -ENOSYS;
1277}
1278
1279static int ethoc_resume(struct platform_device *pdev)
1280{
1281 return -ENOSYS;
1282}
1283#else
1284# define ethoc_suspend NULL
1285# define ethoc_resume NULL
1286#endif
1287
Fabian Frederickfa2b1832015-03-17 19:37:35 +01001288static const struct of_device_id ethoc_match[] = {
Grant Likelyc9e358d2011-01-21 09:24:48 -07001289 { .compatible = "opencores,ethoc", },
Jonas Bonne0f42582010-11-25 02:30:25 +00001290 {},
1291};
1292MODULE_DEVICE_TABLE(of, ethoc_match);
Jonas Bonne0f42582010-11-25 02:30:25 +00001293
Thierry Redinga1702852009-03-27 00:12:24 -07001294static struct platform_driver ethoc_driver = {
1295 .probe = ethoc_probe,
Bill Pembertona0a4efe2012-12-03 09:24:09 -05001296 .remove = ethoc_remove,
Thierry Redinga1702852009-03-27 00:12:24 -07001297 .suspend = ethoc_suspend,
1298 .resume = ethoc_resume,
1299 .driver = {
1300 .name = "ethoc",
Jonas Bonne0f42582010-11-25 02:30:25 +00001301 .of_match_table = ethoc_match,
Thierry Redinga1702852009-03-27 00:12:24 -07001302 },
1303};
1304
Axel Lindb62f682011-11-27 16:44:17 +00001305module_platform_driver(ethoc_driver);
Thierry Redinga1702852009-03-27 00:12:24 -07001306
1307MODULE_AUTHOR("Thierry Reding <thierry.reding@avionic-design.de>");
1308MODULE_DESCRIPTION("OpenCores Ethernet MAC driver");
1309MODULE_LICENSE("GPL v2");
1310