blob: cea6701203815e05f37d46040b3fb76d18bed5bf [file] [log] [blame]
wdenka8bd82d2004-04-18 22:03:42 +00001/*
2 * rtl8169.c : U-Boot driver for the RealTek RTL8169
3 *
4 * Masami Komiya (mkomiya@sonare.it)
5 *
6 * Most part is taken from r8169.c of etherboot
7 *
8 */
9
10/**************************************************************************
11* r8169.c: Etherboot device driver for the RealTek RTL-8169 Gigabit
12* Written 2003 by Timothy Legge <tlegge@rogers.com>
13*
Wolfgang Denk1a459662013-07-08 09:37:19 +020014 * SPDX-License-Identifier: GPL-2.0+
wdenka8bd82d2004-04-18 22:03:42 +000015*
16* Portions of this code based on:
17* r8169.c: A RealTek RTL-8169 Gigabit Ethernet driver
18* for Linux kernel 2.4.x.
19*
20* Written 2002 ShuChen <shuchen@realtek.com.tw>
21* See Linux Driver for full information
22*
23* Linux Driver Version 1.27a, 10.02.2002
24*
25* Thanks to:
26* Jean Chen of RealTek Semiconductor Corp. for
27* providing the evaluation NIC used to develop
28* this driver. RealTek's support for Etherboot
29* is appreciated.
30*
31* REVISION HISTORY:
32* ================
33*
34* v1.0 11-26-2003 timlegge Initial port of Linux driver
35* v1.5 01-17-2004 timlegge Initial driver output cleanup
36*
37* Indent Options: indent -kr -i8
38***************************************************************************/
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +010039/*
40 * 26 August 2006 Mihai Georgian <u-boot@linuxnotincluded.org.uk>
41 * Modified to use le32_to_cpu and cpu_to_le32 properly
42 */
wdenka8bd82d2004-04-18 22:03:42 +000043#include <common.h>
Thierry Redingd58acdc2014-12-09 22:25:26 -070044#include <errno.h>
wdenka8bd82d2004-04-18 22:03:42 +000045#include <malloc.h>
46#include <net.h>
Ben Warren02d69892008-08-31 09:49:42 -070047#include <netdev.h>
wdenka8bd82d2004-04-18 22:03:42 +000048#include <asm/io.h>
49#include <pci.h>
50
wdenka8bd82d2004-04-18 22:03:42 +000051#undef DEBUG_RTL8169
52#undef DEBUG_RTL8169_TX
53#undef DEBUG_RTL8169_RX
54
55#define drv_version "v1.5"
56#define drv_date "01-17-2004"
57
58static u32 ioaddr;
59
60/* Condensed operations for readability. */
wdenka8bd82d2004-04-18 22:03:42 +000061#define currticks() get_timer(0)
wdenka8bd82d2004-04-18 22:03:42 +000062
63/* media options */
64#define MAX_UNITS 8
65static int media[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1 };
66
67/* MAC address length*/
68#define MAC_ADDR_LEN 6
69
70/* max supported gigabit ethernet frame size -- must be at least (dev->mtu+14+4).*/
71#define MAX_ETH_FRAME_SIZE 1536
72
73#define TX_FIFO_THRESH 256 /* In bytes */
74
75#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
76#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
77#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
78#define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
79#define RxPacketMaxSize 0x0800 /* Maximum size supported is 16K-1 */
80#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
81
82#define NUM_TX_DESC 1 /* Number of Tx descriptor registers */
Thierry Redingc94bbfd2014-12-09 22:25:24 -070083#ifdef CONFIG_SYS_RX_ETH_BUFFER
84 #define NUM_RX_DESC CONFIG_SYS_RX_ETH_BUFFER
85#else
86 #define NUM_RX_DESC 4 /* Number of Rx descriptor registers */
87#endif
wdenka8bd82d2004-04-18 22:03:42 +000088#define RX_BUF_SIZE 1536 /* Rx Buffer size */
89#define RX_BUF_LEN 8192
90
91#define RTL_MIN_IO_SIZE 0x80
92#define TX_TIMEOUT (6*HZ)
93
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +010094/* write/read MMIO register. Notice: {read,write}[wl] do the necessary swapping */
wdenka8bd82d2004-04-18 22:03:42 +000095#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
96#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
97#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
98#define RTL_R8(reg) readb (ioaddr + (reg))
99#define RTL_R16(reg) readw (ioaddr + (reg))
100#define RTL_R32(reg) ((unsigned long) readl (ioaddr + (reg)))
101
102#define ETH_FRAME_LEN MAX_ETH_FRAME_SIZE
103#define ETH_ALEN MAC_ADDR_LEN
104#define ETH_ZLEN 60
105
Yoshihiro Shimodad65e34d2009-02-25 14:27:29 +0900106#define bus_to_phys(a) pci_mem_to_phys((pci_dev_t)dev->priv, (pci_addr_t)a)
107#define phys_to_bus(a) pci_phys_to_mem((pci_dev_t)dev->priv, (phys_addr_t)a)
108
wdenka8bd82d2004-04-18 22:03:42 +0000109enum RTL8169_registers {
110 MAC0 = 0, /* Ethernet hardware address. */
111 MAR0 = 8, /* Multicast filter. */
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900112 TxDescStartAddrLow = 0x20,
113 TxDescStartAddrHigh = 0x24,
114 TxHDescStartAddrLow = 0x28,
115 TxHDescStartAddrHigh = 0x2c,
wdenka8bd82d2004-04-18 22:03:42 +0000116 FLASH = 0x30,
117 ERSR = 0x36,
118 ChipCmd = 0x37,
119 TxPoll = 0x38,
120 IntrMask = 0x3C,
121 IntrStatus = 0x3E,
122 TxConfig = 0x40,
123 RxConfig = 0x44,
124 RxMissed = 0x4C,
125 Cfg9346 = 0x50,
126 Config0 = 0x51,
127 Config1 = 0x52,
128 Config2 = 0x53,
129 Config3 = 0x54,
130 Config4 = 0x55,
131 Config5 = 0x56,
132 MultiIntr = 0x5C,
133 PHYAR = 0x60,
134 TBICSR = 0x64,
135 TBI_ANAR = 0x68,
136 TBI_LPAR = 0x6A,
137 PHYstatus = 0x6C,
138 RxMaxSize = 0xDA,
139 CPlusCmd = 0xE0,
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900140 RxDescStartAddrLow = 0xE4,
141 RxDescStartAddrHigh = 0xE8,
wdenka8bd82d2004-04-18 22:03:42 +0000142 EarlyTxThres = 0xEC,
143 FuncEvent = 0xF0,
144 FuncEventMask = 0xF4,
145 FuncPresetState = 0xF8,
146 FuncForceEvent = 0xFC,
147};
148
149enum RTL8169_register_content {
150 /*InterruptStatusBits */
151 SYSErr = 0x8000,
152 PCSTimeout = 0x4000,
153 SWInt = 0x0100,
154 TxDescUnavail = 0x80,
155 RxFIFOOver = 0x40,
156 RxUnderrun = 0x20,
157 RxOverflow = 0x10,
158 TxErr = 0x08,
159 TxOK = 0x04,
160 RxErr = 0x02,
161 RxOK = 0x01,
162
163 /*RxStatusDesc */
164 RxRES = 0x00200000,
165 RxCRC = 0x00080000,
166 RxRUNT = 0x00100000,
167 RxRWT = 0x00400000,
168
169 /*ChipCmdBits */
170 CmdReset = 0x10,
171 CmdRxEnb = 0x08,
172 CmdTxEnb = 0x04,
173 RxBufEmpty = 0x01,
174
175 /*Cfg9346Bits */
176 Cfg9346_Lock = 0x00,
177 Cfg9346_Unlock = 0xC0,
178
179 /*rx_mode_bits */
180 AcceptErr = 0x20,
181 AcceptRunt = 0x10,
182 AcceptBroadcast = 0x08,
183 AcceptMulticast = 0x04,
184 AcceptMyPhys = 0x02,
185 AcceptAllPhys = 0x01,
186
187 /*RxConfigBits */
188 RxCfgFIFOShift = 13,
189 RxCfgDMAShift = 8,
190
191 /*TxConfigBits */
192 TxInterFrameGapShift = 24,
193 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
194
195 /*rtl8169_PHYstatus */
196 TBI_Enable = 0x80,
197 TxFlowCtrl = 0x40,
198 RxFlowCtrl = 0x20,
199 _1000bpsF = 0x10,
200 _100bps = 0x08,
201 _10bps = 0x04,
202 LinkStatus = 0x02,
203 FullDup = 0x01,
204
205 /*GIGABIT_PHY_registers */
206 PHY_CTRL_REG = 0,
207 PHY_STAT_REG = 1,
208 PHY_AUTO_NEGO_REG = 4,
209 PHY_1000_CTRL_REG = 9,
210
211 /*GIGABIT_PHY_REG_BIT */
212 PHY_Restart_Auto_Nego = 0x0200,
213 PHY_Enable_Auto_Nego = 0x1000,
214
215 /* PHY_STAT_REG = 1; */
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100216 PHY_Auto_Nego_Comp = 0x0020,
wdenka8bd82d2004-04-18 22:03:42 +0000217
218 /* PHY_AUTO_NEGO_REG = 4; */
219 PHY_Cap_10_Half = 0x0020,
220 PHY_Cap_10_Full = 0x0040,
221 PHY_Cap_100_Half = 0x0080,
222 PHY_Cap_100_Full = 0x0100,
223
224 /* PHY_1000_CTRL_REG = 9; */
225 PHY_Cap_1000_Full = 0x0200,
226
227 PHY_Cap_Null = 0x0,
228
229 /*_MediaType*/
230 _10_Half = 0x01,
231 _10_Full = 0x02,
232 _100_Half = 0x04,
233 _100_Full = 0x08,
234 _1000_Full = 0x10,
235
236 /*_TBICSRBit*/
237 TBILinkOK = 0x02000000,
238};
239
240static struct {
241 const char *name;
242 u8 version; /* depend on RTL8169 docs */
243 u32 RxConfigMask; /* should clear the bits supported by this chip */
244} rtl_chip_info[] = {
245 {"RTL-8169", 0x00, 0xff7e1880,},
246 {"RTL-8169", 0x04, 0xff7e1880,},
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900247 {"RTL-8169", 0x00, 0xff7e1880,},
248 {"RTL-8169s/8110s", 0x02, 0xff7e1880,},
249 {"RTL-8169s/8110s", 0x04, 0xff7e1880,},
250 {"RTL-8169sb/8110sb", 0x10, 0xff7e1880,},
251 {"RTL-8169sc/8110sc", 0x18, 0xff7e1880,},
252 {"RTL-8168b/8111sb", 0x30, 0xff7e1880,},
253 {"RTL-8168b/8111sb", 0x38, 0xff7e1880,},
Thierry Reding22872862013-09-20 16:03:43 +0200254 {"RTL-8168d/8111d", 0x28, 0xff7e1880,},
Thierry Reding65a66912013-09-20 16:03:44 +0200255 {"RTL-8168evl/8111evl", 0x2e, 0xff7e1880,},
Thierry Redingcc0856c2014-12-09 22:25:27 -0700256 {"RTL-8168/8111g", 0x4c, 0xff7e1880,},
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900257 {"RTL-8101e", 0x34, 0xff7e1880,},
258 {"RTL-8100e", 0x32, 0xff7e1880,},
wdenka8bd82d2004-04-18 22:03:42 +0000259};
260
261enum _DescStatusBit {
262 OWNbit = 0x80000000,
263 EORbit = 0x40000000,
264 FSbit = 0x20000000,
265 LSbit = 0x10000000,
266};
267
268struct TxDesc {
269 u32 status;
270 u32 vlan_tag;
271 u32 buf_addr;
272 u32 buf_Haddr;
273};
274
275struct RxDesc {
276 u32 status;
277 u32 vlan_tag;
278 u32 buf_addr;
279 u32 buf_Haddr;
280};
281
Thierry Redingdad3ba02014-12-09 22:25:25 -0700282#define RTL8169_DESC_SIZE 16
wdenka8bd82d2004-04-18 22:03:42 +0000283
Thierry Redingdad3ba02014-12-09 22:25:25 -0700284#if ARCH_DMA_MINALIGN > 256
285# define RTL8169_ALIGN ARCH_DMA_MINALIGN
286#else
287# define RTL8169_ALIGN 256
288#endif
289
290/*
291 * Warn if the cache-line size is larger than the descriptor size. In such
292 * cases the driver will likely fail because the CPU needs to flush the cache
293 * when requeuing RX buffers, therefore descriptors written by the hardware
294 * may be discarded.
Thierry Redingd58acdc2014-12-09 22:25:26 -0700295 *
296 * This can be fixed by defining CONFIG_SYS_NONCACHED_MEMORY which will cause
297 * the driver to allocate descriptors from a pool of non-cached memory.
Thierry Redingdad3ba02014-12-09 22:25:25 -0700298 */
299#if RTL8169_DESC_SIZE < ARCH_DMA_MINALIGN
Thierry Redingd58acdc2014-12-09 22:25:26 -0700300#if !defined(CONFIG_SYS_NONCACHED_MEMORY) && !defined(CONFIG_SYS_DCACHE_OFF)
Thierry Redingdad3ba02014-12-09 22:25:25 -0700301#warning cache-line size is larger than descriptor size
302#endif
Thierry Redingd58acdc2014-12-09 22:25:26 -0700303#endif
wdenka8bd82d2004-04-18 22:03:42 +0000304
Thierry Redingdad3ba02014-12-09 22:25:25 -0700305/*
306 * Create a static buffer of size RX_BUF_SZ for each TX Descriptor. All
307 * descriptors point to a part of this buffer.
308 */
309DEFINE_ALIGN_BUFFER(u8, txb, NUM_TX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
310
311/*
312 * Create a static buffer of size RX_BUF_SZ for each RX Descriptor. All
313 * descriptors point to a part of this buffer.
314 */
315DEFINE_ALIGN_BUFFER(u8, rxb, NUM_RX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
wdenka8bd82d2004-04-18 22:03:42 +0000316
317struct rtl8169_private {
318 void *mmio_addr; /* memory map physical address */
319 int chipset;
320 unsigned long cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
321 unsigned long cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
322 unsigned long dirty_tx;
wdenka8bd82d2004-04-18 22:03:42 +0000323 struct TxDesc *TxDescArray; /* Index of 256-alignment Tx Descriptor buffer */
324 struct RxDesc *RxDescArray; /* Index of 256-alignment Rx Descriptor buffer */
325 unsigned char *RxBufferRings; /* Index of Rx Buffer */
326 unsigned char *RxBufferRing[NUM_RX_DESC]; /* Index of Rx Buffer array */
327 unsigned char *Tx_skbuff[NUM_TX_DESC];
328} tpx;
329
330static struct rtl8169_private *tpc;
331
332static const u16 rtl8169_intr_mask =
333 SYSErr | PCSTimeout | RxUnderrun | RxOverflow | RxFIFOOver | TxErr |
334 TxOK | RxErr | RxOK;
335static const unsigned int rtl8169_rx_config =
336 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
337
338static struct pci_device_id supported[] = {
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900339 {PCI_VENDOR_ID_REALTEK, 0x8167},
Thierry Reding22872862013-09-20 16:03:43 +0200340 {PCI_VENDOR_ID_REALTEK, 0x8168},
wdenka8bd82d2004-04-18 22:03:42 +0000341 {PCI_VENDOR_ID_REALTEK, 0x8169},
342 {}
343};
344
345void mdio_write(int RegAddr, int value)
346{
347 int i;
348
349 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
350 udelay(1000);
351
352 for (i = 2000; i > 0; i--) {
353 /* Check if the RTL8169 has completed writing to the specified MII register */
354 if (!(RTL_R32(PHYAR) & 0x80000000)) {
355 break;
356 } else {
357 udelay(100);
358 }
359 }
360}
361
362int mdio_read(int RegAddr)
363{
364 int i, value = -1;
365
366 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
367 udelay(1000);
368
369 for (i = 2000; i > 0; i--) {
370 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
371 if (RTL_R32(PHYAR) & 0x80000000) {
372 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
373 break;
374 } else {
375 udelay(100);
376 }
377 }
378 return value;
379}
380
wdenka8bd82d2004-04-18 22:03:42 +0000381static int rtl8169_init_board(struct eth_device *dev)
382{
383 int i;
384 u32 tmp;
385
386#ifdef DEBUG_RTL8169
387 printf ("%s\n", __FUNCTION__);
388#endif
389 ioaddr = dev->iobase;
390
391 /* Soft reset the chip. */
392 RTL_W8(ChipCmd, CmdReset);
393
394 /* Check that the chip has finished the reset. */
395 for (i = 1000; i > 0; i--)
396 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
397 break;
398 else
399 udelay(10);
400
401 /* identify chip attached to board */
402 tmp = RTL_R32(TxConfig);
403 tmp = ((tmp & 0x7c000000) + ((tmp & 0x00800000) << 2)) >> 24;
404
405 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--){
406 if (tmp == rtl_chip_info[i].version) {
407 tpc->chipset = i;
408 goto match;
409 }
410 }
411
412 /* if unknown chip, assume array element #0, original RTL-8169 in this case */
413 printf("PCI device %s: unknown chip version, assuming RTL-8169\n", dev->name);
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200414 printf("PCI device: TxConfig = 0x%lX\n", (unsigned long) RTL_R32(TxConfig));
wdenka8bd82d2004-04-18 22:03:42 +0000415 tpc->chipset = 0;
416
417match:
418 return 0;
419}
420
Thierry Reding22ece0e2013-09-20 16:03:42 +0200421/*
Thierry Redingd58acdc2014-12-09 22:25:26 -0700422 * TX and RX descriptors are 16 bytes. This causes problems with the cache
423 * maintenance on CPUs where the cache-line size exceeds the size of these
424 * descriptors. What will happen is that when the driver receives a packet
425 * it will be immediately requeued for the hardware to reuse. The CPU will
426 * therefore need to flush the cache-line containing the descriptor, which
427 * will cause all other descriptors in the same cache-line to be flushed
428 * along with it. If one of those descriptors had been written to by the
429 * device those changes (and the associated packet) will be lost.
430 *
431 * To work around this, we make use of non-cached memory if available. If
432 * descriptors are mapped uncached there's no need to manually flush them
433 * or invalidate them.
434 *
435 * Note that this only applies to descriptors. The packet data buffers do
436 * not have the same constraints since they are 1536 bytes large, so they
437 * are unlikely to share cache-lines.
438 */
439static void *rtl_alloc_descs(unsigned int num)
440{
441 size_t size = num * RTL8169_DESC_SIZE;
442
443#ifdef CONFIG_SYS_NONCACHED_MEMORY
444 return (void *)noncached_alloc(size, RTL8169_ALIGN);
445#else
446 return memalign(RTL8169_ALIGN, size);
447#endif
448}
449
450/*
Thierry Reding22ece0e2013-09-20 16:03:42 +0200451 * Cache maintenance functions. These are simple wrappers around the more
452 * general purpose flush_cache() and invalidate_dcache_range() functions.
453 */
454
455static void rtl_inval_rx_desc(struct RxDesc *desc)
456{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700457#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200458 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
459 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
460
461 invalidate_dcache_range(start, end);
Thierry Redingd58acdc2014-12-09 22:25:26 -0700462#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200463}
464
465static void rtl_flush_rx_desc(struct RxDesc *desc)
466{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700467#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200468 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Redingd58acdc2014-12-09 22:25:26 -0700469#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200470}
471
472static void rtl_inval_tx_desc(struct TxDesc *desc)
473{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700474#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200475 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
476 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
477
478 invalidate_dcache_range(start, end);
Thierry Redingd58acdc2014-12-09 22:25:26 -0700479#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200480}
481
482static void rtl_flush_tx_desc(struct TxDesc *desc)
483{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700484#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200485 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Redingd58acdc2014-12-09 22:25:26 -0700486#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200487}
488
489static void rtl_inval_buffer(void *buf, size_t size)
490{
491 unsigned long start = (unsigned long)buf & ~(ARCH_DMA_MINALIGN - 1);
492 unsigned long end = ALIGN(start + size, ARCH_DMA_MINALIGN);
493
494 invalidate_dcache_range(start, end);
495}
496
497static void rtl_flush_buffer(void *buf, size_t size)
498{
499 flush_cache((unsigned long)buf, size);
500}
501
wdenka8bd82d2004-04-18 22:03:42 +0000502/**************************************************************************
503RECV - Receive a frame
504***************************************************************************/
505static int rtl_recv(struct eth_device *dev)
506{
507 /* return true if there's an ethernet packet ready to read */
508 /* nic->packet should contain data on return */
509 /* nic->packetlen should contain length of data */
510 int cur_rx;
511 int length = 0;
512
513#ifdef DEBUG_RTL8169_RX
514 printf ("%s\n", __FUNCTION__);
515#endif
516 ioaddr = dev->iobase;
517
518 cur_rx = tpc->cur_rx;
Thierry Reding22ece0e2013-09-20 16:03:42 +0200519
520 rtl_inval_rx_desc(&tpc->RxDescArray[cur_rx]);
521
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100522 if ((le32_to_cpu(tpc->RxDescArray[cur_rx].status) & OWNbit) == 0) {
523 if (!(le32_to_cpu(tpc->RxDescArray[cur_rx].status) & RxRES)) {
wdenka8bd82d2004-04-18 22:03:42 +0000524 unsigned char rxdata[RX_BUF_LEN];
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100525 length = (int) (le32_to_cpu(tpc->RxDescArray[cur_rx].
526 status) & 0x00001FFF) - 4;
wdenka8bd82d2004-04-18 22:03:42 +0000527
Thierry Reding22ece0e2013-09-20 16:03:42 +0200528 rtl_inval_buffer(tpc->RxBufferRing[cur_rx], length);
wdenka8bd82d2004-04-18 22:03:42 +0000529 memcpy(rxdata, tpc->RxBufferRing[cur_rx], length);
wdenka8bd82d2004-04-18 22:03:42 +0000530
531 if (cur_rx == NUM_RX_DESC - 1)
532 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100533 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000534 else
535 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100536 cpu_to_le32(OWNbit + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000537 tpc->RxDescArray[cur_rx].buf_addr =
Yoshihiro Shimodad65e34d2009-02-25 14:27:29 +0900538 cpu_to_le32(bus_to_phys(tpc->RxBufferRing[cur_rx]));
Thierry Reding22ece0e2013-09-20 16:03:42 +0200539 rtl_flush_rx_desc(&tpc->RxDescArray[cur_rx]);
Thierry Reding5d9f4232014-08-28 12:38:03 +0200540
541 NetReceive(rxdata, length);
wdenka8bd82d2004-04-18 22:03:42 +0000542 } else {
543 puts("Error Rx");
544 }
545 cur_rx = (cur_rx + 1) % NUM_RX_DESC;
546 tpc->cur_rx = cur_rx;
547 return 1;
548
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900549 } else {
550 ushort sts = RTL_R8(IntrStatus);
551 RTL_W8(IntrStatus, sts & ~(TxErr | RxErr | SYSErr));
552 udelay(100); /* wait */
wdenka8bd82d2004-04-18 22:03:42 +0000553 }
554 tpc->cur_rx = cur_rx;
555 return (0); /* initially as this is called to flush the input */
556}
557
558#define HZ 1000
559/**************************************************************************
560SEND - Transmit a frame
561***************************************************************************/
Joe Hershbergerd1527b52012-05-22 18:09:57 +0000562static int rtl_send(struct eth_device *dev, void *packet, int length)
wdenka8bd82d2004-04-18 22:03:42 +0000563{
564 /* send the packet to destination */
565
566 u32 to;
567 u8 *ptxb;
568 int entry = tpc->cur_tx % NUM_TX_DESC;
569 u32 len = length;
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100570 int ret;
wdenka8bd82d2004-04-18 22:03:42 +0000571
572#ifdef DEBUG_RTL8169_TX
573 int stime = currticks();
574 printf ("%s\n", __FUNCTION__);
575 printf("sending %d bytes\n", len);
576#endif
577
578 ioaddr = dev->iobase;
579
580 /* point to the current txb incase multiple tx_rings are used */
581 ptxb = tpc->Tx_skbuff[entry * MAX_ETH_FRAME_SIZE];
582 memcpy(ptxb, (char *)packet, (int)length);
Thierry Reding22ece0e2013-09-20 16:03:42 +0200583 rtl_flush_buffer(ptxb, length);
wdenka8bd82d2004-04-18 22:03:42 +0000584
585 while (len < ETH_ZLEN)
586 ptxb[len++] = '\0';
587
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900588 tpc->TxDescArray[entry].buf_Haddr = 0;
Yoshihiro Shimodad65e34d2009-02-25 14:27:29 +0900589 tpc->TxDescArray[entry].buf_addr = cpu_to_le32(bus_to_phys(ptxb));
wdenka8bd82d2004-04-18 22:03:42 +0000590 if (entry != (NUM_TX_DESC - 1)) {
591 tpc->TxDescArray[entry].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100592 cpu_to_le32((OWNbit | FSbit | LSbit) |
593 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka8bd82d2004-04-18 22:03:42 +0000594 } else {
595 tpc->TxDescArray[entry].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100596 cpu_to_le32((OWNbit | EORbit | FSbit | LSbit) |
597 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka8bd82d2004-04-18 22:03:42 +0000598 }
Thierry Reding22ece0e2013-09-20 16:03:42 +0200599 rtl_flush_tx_desc(&tpc->TxDescArray[entry]);
wdenka8bd82d2004-04-18 22:03:42 +0000600 RTL_W8(TxPoll, 0x40); /* set polling bit */
601
602 tpc->cur_tx++;
603 to = currticks() + TX_TIMEOUT;
Yoshihiro Shimodad4c02e62009-02-25 14:27:24 +0900604 do {
Thierry Reding22ece0e2013-09-20 16:03:42 +0200605 rtl_inval_tx_desc(&tpc->TxDescArray[entry]);
Yoshihiro Shimodad4c02e62009-02-25 14:27:24 +0900606 } while ((le32_to_cpu(tpc->TxDescArray[entry].status) & OWNbit)
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100607 && (currticks() < to)); /* wait */
wdenka8bd82d2004-04-18 22:03:42 +0000608
609 if (currticks() >= to) {
610#ifdef DEBUG_RTL8169_TX
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200611 puts("tx timeout/error\n");
612 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000613#endif
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100614 ret = 0;
wdenka8bd82d2004-04-18 22:03:42 +0000615 } else {
616#ifdef DEBUG_RTL8169_TX
617 puts("tx done\n");
618#endif
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100619 ret = length;
wdenka8bd82d2004-04-18 22:03:42 +0000620 }
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100621 /* Delay to make net console (nc) work properly */
622 udelay(20);
623 return ret;
wdenka8bd82d2004-04-18 22:03:42 +0000624}
625
626static void rtl8169_set_rx_mode(struct eth_device *dev)
627{
628 u32 mc_filter[2]; /* Multicast hash filter */
629 int rx_mode;
630 u32 tmp = 0;
631
632#ifdef DEBUG_RTL8169
633 printf ("%s\n", __FUNCTION__);
634#endif
635
636 /* IFF_ALLMULTI */
637 /* Too many to filter perfectly -- accept all multicasts. */
638 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
639 mc_filter[1] = mc_filter[0] = 0xffffffff;
640
641 tmp = rtl8169_rx_config | rx_mode | (RTL_R32(RxConfig) &
642 rtl_chip_info[tpc->chipset].RxConfigMask);
643
644 RTL_W32(RxConfig, tmp);
645 RTL_W32(MAR0 + 0, mc_filter[0]);
646 RTL_W32(MAR0 + 4, mc_filter[1]);
647}
648
649static void rtl8169_hw_start(struct eth_device *dev)
650{
651 u32 i;
652
653#ifdef DEBUG_RTL8169
654 int stime = currticks();
655 printf ("%s\n", __FUNCTION__);
656#endif
657
658#if 0
659 /* Soft reset the chip. */
660 RTL_W8(ChipCmd, CmdReset);
661
662 /* Check that the chip has finished the reset. */
663 for (i = 1000; i > 0; i--) {
664 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
665 break;
666 else
667 udelay(10);
668 }
669#endif
670
671 RTL_W8(Cfg9346, Cfg9346_Unlock);
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900672
673 /* RTL-8169sb/8110sb or previous version */
674 if (tpc->chipset <= 5)
675 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
676
wdenka8bd82d2004-04-18 22:03:42 +0000677 RTL_W8(EarlyTxThres, EarlyTxThld);
678
679 /* For gigabit rtl8169 */
680 RTL_W16(RxMaxSize, RxPacketMaxSize);
681
682 /* Set Rx Config register */
683 i = rtl8169_rx_config | (RTL_R32(RxConfig) &
684 rtl_chip_info[tpc->chipset].RxConfigMask);
685 RTL_W32(RxConfig, i);
686
687 /* Set DMA burst size and Interframe Gap Time */
688 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
689 (InterFrameGap << TxInterFrameGapShift));
690
691
692 tpc->cur_rx = 0;
693
Yoshihiro Shimodad65e34d2009-02-25 14:27:29 +0900694 RTL_W32(TxDescStartAddrLow, bus_to_phys(tpc->TxDescArray));
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900695 RTL_W32(TxDescStartAddrHigh, (unsigned long)0);
Yoshihiro Shimodad65e34d2009-02-25 14:27:29 +0900696 RTL_W32(RxDescStartAddrLow, bus_to_phys(tpc->RxDescArray));
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900697 RTL_W32(RxDescStartAddrHigh, (unsigned long)0);
698
699 /* RTL-8169sc/8110sc or later version */
700 if (tpc->chipset > 5)
701 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
702
wdenka8bd82d2004-04-18 22:03:42 +0000703 RTL_W8(Cfg9346, Cfg9346_Lock);
704 udelay(10);
705
706 RTL_W32(RxMissed, 0);
707
708 rtl8169_set_rx_mode(dev);
709
710 /* no early-rx interrupts */
711 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
712
713#ifdef DEBUG_RTL8169
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200714 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000715#endif
716}
717
718static void rtl8169_init_ring(struct eth_device *dev)
719{
720 int i;
721
722#ifdef DEBUG_RTL8169
723 int stime = currticks();
724 printf ("%s\n", __FUNCTION__);
725#endif
726
727 tpc->cur_rx = 0;
728 tpc->cur_tx = 0;
729 tpc->dirty_tx = 0;
730 memset(tpc->TxDescArray, 0x0, NUM_TX_DESC * sizeof(struct TxDesc));
731 memset(tpc->RxDescArray, 0x0, NUM_RX_DESC * sizeof(struct RxDesc));
732
733 for (i = 0; i < NUM_TX_DESC; i++) {
734 tpc->Tx_skbuff[i] = &txb[i];
735 }
736
737 for (i = 0; i < NUM_RX_DESC; i++) {
738 if (i == (NUM_RX_DESC - 1))
739 tpc->RxDescArray[i].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100740 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000741 else
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100742 tpc->RxDescArray[i].status =
743 cpu_to_le32(OWNbit + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000744
745 tpc->RxBufferRing[i] = &rxb[i * RX_BUF_SIZE];
746 tpc->RxDescArray[i].buf_addr =
Yoshihiro Shimodad65e34d2009-02-25 14:27:29 +0900747 cpu_to_le32(bus_to_phys(tpc->RxBufferRing[i]));
Thierry Reding22ece0e2013-09-20 16:03:42 +0200748 rtl_flush_rx_desc(&tpc->RxDescArray[i]);
wdenka8bd82d2004-04-18 22:03:42 +0000749 }
750
751#ifdef DEBUG_RTL8169
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200752 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000753#endif
754}
755
756/**************************************************************************
757RESET - Finish setting up the ethernet interface
758***************************************************************************/
Ben Warren422b1a02008-01-09 18:15:53 -0500759static int rtl_reset(struct eth_device *dev, bd_t *bis)
wdenka8bd82d2004-04-18 22:03:42 +0000760{
761 int i;
wdenka8bd82d2004-04-18 22:03:42 +0000762
763#ifdef DEBUG_RTL8169
764 int stime = currticks();
765 printf ("%s\n", __FUNCTION__);
766#endif
767
wdenka8bd82d2004-04-18 22:03:42 +0000768 rtl8169_init_ring(dev);
769 rtl8169_hw_start(dev);
770 /* Construct a perfect filter frame with the mac address as first match
771 * and broadcast for all others */
772 for (i = 0; i < 192; i++)
773 txb[i] = 0xFF;
774
775 txb[0] = dev->enetaddr[0];
776 txb[1] = dev->enetaddr[1];
777 txb[2] = dev->enetaddr[2];
778 txb[3] = dev->enetaddr[3];
779 txb[4] = dev->enetaddr[4];
780 txb[5] = dev->enetaddr[5];
781
782#ifdef DEBUG_RTL8169
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200783 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000784#endif
Ben Warren422b1a02008-01-09 18:15:53 -0500785 return 0;
wdenka8bd82d2004-04-18 22:03:42 +0000786}
787
788/**************************************************************************
789HALT - Turn off ethernet interface
790***************************************************************************/
791static void rtl_halt(struct eth_device *dev)
792{
793 int i;
794
795#ifdef DEBUG_RTL8169
796 printf ("%s\n", __FUNCTION__);
797#endif
798
799 ioaddr = dev->iobase;
800
801 /* Stop the chip's Tx and Rx DMA processes. */
802 RTL_W8(ChipCmd, 0x00);
803
804 /* Disable interrupts by clearing the interrupt mask. */
805 RTL_W16(IntrMask, 0x0000);
806
807 RTL_W32(RxMissed, 0);
808
wdenka8bd82d2004-04-18 22:03:42 +0000809 for (i = 0; i < NUM_RX_DESC; i++) {
810 tpc->RxBufferRing[i] = NULL;
811 }
812}
813
814/**************************************************************************
815INIT - Look for an adapter, this routine's visible to the outside
816***************************************************************************/
817
818#define board_found 1
819#define valid_link 0
820static int rtl_init(struct eth_device *dev, bd_t *bis)
821{
822 static int board_idx = -1;
wdenka8bd82d2004-04-18 22:03:42 +0000823 int i, rc;
824 int option = -1, Cap10_100 = 0, Cap1000 = 0;
825
826#ifdef DEBUG_RTL8169
827 printf ("%s\n", __FUNCTION__);
828#endif
829
830 ioaddr = dev->iobase;
831
832 board_idx++;
833
wdenka8bd82d2004-04-18 22:03:42 +0000834 /* point to private storage */
835 tpc = &tpx;
836
837 rc = rtl8169_init_board(dev);
838 if (rc)
839 return rc;
840
841 /* Get MAC address. FIXME: read EEPROM */
842 for (i = 0; i < MAC_ADDR_LEN; i++)
Mike Frysingerd3f87142009-02-11 19:01:26 -0500843 dev->enetaddr[i] = RTL_R8(MAC0 + i);
wdenka8bd82d2004-04-18 22:03:42 +0000844
845#ifdef DEBUG_RTL8169
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900846 printf("chipset = %d\n", tpc->chipset);
wdenka8bd82d2004-04-18 22:03:42 +0000847 printf("MAC Address");
848 for (i = 0; i < MAC_ADDR_LEN; i++)
849 printf(":%02x", dev->enetaddr[i]);
850 putc('\n');
851#endif
852
853#ifdef DEBUG_RTL8169
854 /* Print out some hardware info */
855 printf("%s: at ioaddr 0x%x\n", dev->name, ioaddr);
856#endif
857
858 /* if TBI is not endbled */
859 if (!(RTL_R8(PHYstatus) & TBI_Enable)) {
860 int val = mdio_read(PHY_AUTO_NEGO_REG);
861
862 option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx];
863 /* Force RTL8169 in 10/100/1000 Full/Half mode. */
864 if (option > 0) {
865#ifdef DEBUG_RTL8169
866 printf("%s: Force-mode Enabled.\n", dev->name);
867#endif
868 Cap10_100 = 0, Cap1000 = 0;
869 switch (option) {
870 case _10_Half:
871 Cap10_100 = PHY_Cap_10_Half;
872 Cap1000 = PHY_Cap_Null;
873 break;
874 case _10_Full:
875 Cap10_100 = PHY_Cap_10_Full;
876 Cap1000 = PHY_Cap_Null;
877 break;
878 case _100_Half:
879 Cap10_100 = PHY_Cap_100_Half;
880 Cap1000 = PHY_Cap_Null;
881 break;
882 case _100_Full:
883 Cap10_100 = PHY_Cap_100_Full;
884 Cap1000 = PHY_Cap_Null;
885 break;
886 case _1000_Full:
887 Cap10_100 = PHY_Cap_Null;
888 Cap1000 = PHY_Cap_1000_Full;
889 break;
890 default:
891 break;
892 }
893 mdio_write(PHY_AUTO_NEGO_REG, Cap10_100 | (val & 0x1F)); /* leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
894 mdio_write(PHY_1000_CTRL_REG, Cap1000);
895 } else {
896#ifdef DEBUG_RTL8169
897 printf("%s: Auto-negotiation Enabled.\n",
898 dev->name);
899#endif
900 /* enable 10/100 Full/Half Mode, leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
901 mdio_write(PHY_AUTO_NEGO_REG,
902 PHY_Cap_10_Half | PHY_Cap_10_Full |
903 PHY_Cap_100_Half | PHY_Cap_100_Full |
904 (val & 0x1F));
905
906 /* enable 1000 Full Mode */
907 mdio_write(PHY_1000_CTRL_REG, PHY_Cap_1000_Full);
908
909 }
910
911 /* Enable auto-negotiation and restart auto-nigotiation */
912 mdio_write(PHY_CTRL_REG,
913 PHY_Enable_Auto_Nego | PHY_Restart_Auto_Nego);
914 udelay(100);
915
916 /* wait for auto-negotiation process */
917 for (i = 10000; i > 0; i--) {
918 /* check if auto-negotiation complete */
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100919 if (mdio_read(PHY_STAT_REG) & PHY_Auto_Nego_Comp) {
wdenka8bd82d2004-04-18 22:03:42 +0000920 udelay(100);
921 option = RTL_R8(PHYstatus);
922 if (option & _1000bpsF) {
923#ifdef DEBUG_RTL8169
924 printf("%s: 1000Mbps Full-duplex operation.\n",
925 dev->name);
926#endif
927 } else {
928#ifdef DEBUG_RTL8169
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100929 printf("%s: %sMbps %s-duplex operation.\n",
930 dev->name,
931 (option & _100bps) ? "100" :
932 "10",
933 (option & FullDup) ? "Full" :
934 "Half");
wdenka8bd82d2004-04-18 22:03:42 +0000935#endif
936 }
937 break;
938 } else {
939 udelay(100);
940 }
941 } /* end for-loop to wait for auto-negotiation process */
942
943 } else {
944 udelay(100);
945#ifdef DEBUG_RTL8169
946 printf
947 ("%s: 1000Mbps Full-duplex operation, TBI Link %s!\n",
948 dev->name,
949 (RTL_R32(TBICSR) & TBILinkOK) ? "OK" : "Failed");
950#endif
951 }
952
Thierry Redingdad3ba02014-12-09 22:25:25 -0700953
Thierry Redingd58acdc2014-12-09 22:25:26 -0700954 tpc->RxDescArray = rtl_alloc_descs(NUM_RX_DESC);
955 if (!tpc->RxDescArray)
956 return -ENOMEM;
957
958 tpc->TxDescArray = rtl_alloc_descs(NUM_TX_DESC);
959 if (!tpc->TxDescArray)
960 return -ENOMEM;
961
962 return 0;
wdenka8bd82d2004-04-18 22:03:42 +0000963}
964
965int rtl8169_initialize(bd_t *bis)
966{
967 pci_dev_t devno;
968 int card_number = 0;
969 struct eth_device *dev;
970 u32 iobase;
971 int idx=0;
972
973 while(1){
Thierry Reding22872862013-09-20 16:03:43 +0200974 unsigned int region;
975 u16 device;
Thierry Redingd58acdc2014-12-09 22:25:26 -0700976 int err;
Thierry Reding22872862013-09-20 16:03:43 +0200977
wdenka8bd82d2004-04-18 22:03:42 +0000978 /* Find RTL8169 */
979 if ((devno = pci_find_devices(supported, idx++)) < 0)
980 break;
981
Thierry Reding22872862013-09-20 16:03:43 +0200982 pci_read_config_word(devno, PCI_DEVICE_ID, &device);
983 switch (device) {
984 case 0x8168:
985 region = 2;
986 break;
987
988 default:
989 region = 1;
990 break;
991 }
992
993 pci_read_config_dword(devno, PCI_BASE_ADDRESS_0 + (region * 4), &iobase);
wdenka8bd82d2004-04-18 22:03:42 +0000994 iobase &= ~0xf;
995
996 debug ("rtl8169: REALTEK RTL8169 @0x%x\n", iobase);
997
998 dev = (struct eth_device *)malloc(sizeof *dev);
Nobuhiro Iwamatsuf4eaef72010-10-19 14:03:38 +0900999 if (!dev) {
1000 printf("Can not allocate memory of rtl8169\n");
1001 break;
1002 }
wdenka8bd82d2004-04-18 22:03:42 +00001003
Nobuhiro Iwamatsuf4eaef72010-10-19 14:03:38 +09001004 memset(dev, 0, sizeof(*dev));
wdenka8bd82d2004-04-18 22:03:42 +00001005 sprintf (dev->name, "RTL8169#%d", card_number);
1006
1007 dev->priv = (void *) devno;
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +01001008 dev->iobase = (int)pci_mem_to_phys(devno, iobase);
wdenka8bd82d2004-04-18 22:03:42 +00001009
1010 dev->init = rtl_reset;
1011 dev->halt = rtl_halt;
1012 dev->send = rtl_send;
1013 dev->recv = rtl_recv;
1014
Thierry Redingd58acdc2014-12-09 22:25:26 -07001015 err = rtl_init(dev, bis);
1016 if (err < 0) {
1017 printf(pr_fmt("failed to initialize card: %d\n"), err);
1018 free(dev);
1019 continue;
1020 }
wdenka8bd82d2004-04-18 22:03:42 +00001021
Thierry Redingd58acdc2014-12-09 22:25:26 -07001022 eth_register (dev);
wdenka8bd82d2004-04-18 22:03:42 +00001023
1024 card_number++;
1025 }
1026 return card_number;
1027}