blob: f210005dd0b6de231c1c8cc18ec64e59543d39a4 [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>
Simon Glassd0a5a0b2015-07-06 16:47:45 -060044#include <dm.h>
Thierry Redingd58acdc2014-12-09 22:25:26 -070045#include <errno.h>
wdenka8bd82d2004-04-18 22:03:42 +000046#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060047#include <memalign.h>
wdenka8bd82d2004-04-18 22:03:42 +000048#include <net.h>
Simon Glassd0a5a0b2015-07-06 16:47:45 -060049#ifndef CONFIG_DM_ETH
Ben Warren02d69892008-08-31 09:49:42 -070050#include <netdev.h>
Simon Glassd0a5a0b2015-07-06 16:47:45 -060051#endif
wdenka8bd82d2004-04-18 22:03:42 +000052#include <asm/io.h>
53#include <pci.h>
54
wdenka8bd82d2004-04-18 22:03:42 +000055#undef DEBUG_RTL8169
56#undef DEBUG_RTL8169_TX
57#undef DEBUG_RTL8169_RX
58
59#define drv_version "v1.5"
60#define drv_date "01-17-2004"
61
Thierry Reding744152f2015-03-20 12:41:21 +010062static unsigned long ioaddr;
wdenka8bd82d2004-04-18 22:03:42 +000063
64/* Condensed operations for readability. */
wdenka8bd82d2004-04-18 22:03:42 +000065#define currticks() get_timer(0)
wdenka8bd82d2004-04-18 22:03:42 +000066
67/* media options */
68#define MAX_UNITS 8
69static int media[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1 };
70
71/* MAC address length*/
72#define MAC_ADDR_LEN 6
73
74/* max supported gigabit ethernet frame size -- must be at least (dev->mtu+14+4).*/
75#define MAX_ETH_FRAME_SIZE 1536
76
77#define TX_FIFO_THRESH 256 /* In bytes */
78
79#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
80#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
81#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
82#define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
83#define RxPacketMaxSize 0x0800 /* Maximum size supported is 16K-1 */
84#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
85
86#define NUM_TX_DESC 1 /* Number of Tx descriptor registers */
Thierry Redingc94bbfd2014-12-09 22:25:24 -070087#ifdef CONFIG_SYS_RX_ETH_BUFFER
88 #define NUM_RX_DESC CONFIG_SYS_RX_ETH_BUFFER
89#else
90 #define NUM_RX_DESC 4 /* Number of Rx descriptor registers */
91#endif
wdenka8bd82d2004-04-18 22:03:42 +000092#define RX_BUF_SIZE 1536 /* Rx Buffer size */
93#define RX_BUF_LEN 8192
94
95#define RTL_MIN_IO_SIZE 0x80
96#define TX_TIMEOUT (6*HZ)
97
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +010098/* write/read MMIO register. Notice: {read,write}[wl] do the necessary swapping */
Thierry Reding744152f2015-03-20 12:41:21 +010099#define RTL_W8(reg, val8) writeb((val8), ioaddr + (reg))
100#define RTL_W16(reg, val16) writew((val16), ioaddr + (reg))
101#define RTL_W32(reg, val32) writel((val32), ioaddr + (reg))
102#define RTL_R8(reg) readb(ioaddr + (reg))
103#define RTL_R16(reg) readw(ioaddr + (reg))
104#define RTL_R32(reg) readl(ioaddr + (reg))
wdenka8bd82d2004-04-18 22:03:42 +0000105
106#define ETH_FRAME_LEN MAX_ETH_FRAME_SIZE
107#define ETH_ALEN MAC_ADDR_LEN
108#define ETH_ZLEN 60
109
Thierry Reding744152f2015-03-20 12:41:21 +0100110#define bus_to_phys(a) pci_mem_to_phys((pci_dev_t)(unsigned long)dev->priv, \
111 (pci_addr_t)(unsigned long)a)
112#define phys_to_bus(a) pci_phys_to_mem((pci_dev_t)(unsigned long)dev->priv, \
113 (phys_addr_t)a)
Yoshihiro Shimodad65e34d2009-02-25 14:27:29 +0900114
wdenka8bd82d2004-04-18 22:03:42 +0000115enum RTL8169_registers {
116 MAC0 = 0, /* Ethernet hardware address. */
117 MAR0 = 8, /* Multicast filter. */
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900118 TxDescStartAddrLow = 0x20,
119 TxDescStartAddrHigh = 0x24,
120 TxHDescStartAddrLow = 0x28,
121 TxHDescStartAddrHigh = 0x2c,
wdenka8bd82d2004-04-18 22:03:42 +0000122 FLASH = 0x30,
123 ERSR = 0x36,
124 ChipCmd = 0x37,
125 TxPoll = 0x38,
126 IntrMask = 0x3C,
127 IntrStatus = 0x3E,
128 TxConfig = 0x40,
129 RxConfig = 0x44,
130 RxMissed = 0x4C,
131 Cfg9346 = 0x50,
132 Config0 = 0x51,
133 Config1 = 0x52,
134 Config2 = 0x53,
135 Config3 = 0x54,
136 Config4 = 0x55,
137 Config5 = 0x56,
138 MultiIntr = 0x5C,
139 PHYAR = 0x60,
140 TBICSR = 0x64,
141 TBI_ANAR = 0x68,
142 TBI_LPAR = 0x6A,
143 PHYstatus = 0x6C,
144 RxMaxSize = 0xDA,
145 CPlusCmd = 0xE0,
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900146 RxDescStartAddrLow = 0xE4,
147 RxDescStartAddrHigh = 0xE8,
wdenka8bd82d2004-04-18 22:03:42 +0000148 EarlyTxThres = 0xEC,
149 FuncEvent = 0xF0,
150 FuncEventMask = 0xF4,
151 FuncPresetState = 0xF8,
152 FuncForceEvent = 0xFC,
153};
154
155enum RTL8169_register_content {
156 /*InterruptStatusBits */
157 SYSErr = 0x8000,
158 PCSTimeout = 0x4000,
159 SWInt = 0x0100,
160 TxDescUnavail = 0x80,
161 RxFIFOOver = 0x40,
162 RxUnderrun = 0x20,
163 RxOverflow = 0x10,
164 TxErr = 0x08,
165 TxOK = 0x04,
166 RxErr = 0x02,
167 RxOK = 0x01,
168
169 /*RxStatusDesc */
170 RxRES = 0x00200000,
171 RxCRC = 0x00080000,
172 RxRUNT = 0x00100000,
173 RxRWT = 0x00400000,
174
175 /*ChipCmdBits */
176 CmdReset = 0x10,
177 CmdRxEnb = 0x08,
178 CmdTxEnb = 0x04,
179 RxBufEmpty = 0x01,
180
181 /*Cfg9346Bits */
182 Cfg9346_Lock = 0x00,
183 Cfg9346_Unlock = 0xC0,
184
185 /*rx_mode_bits */
186 AcceptErr = 0x20,
187 AcceptRunt = 0x10,
188 AcceptBroadcast = 0x08,
189 AcceptMulticast = 0x04,
190 AcceptMyPhys = 0x02,
191 AcceptAllPhys = 0x01,
192
193 /*RxConfigBits */
194 RxCfgFIFOShift = 13,
195 RxCfgDMAShift = 8,
196
197 /*TxConfigBits */
198 TxInterFrameGapShift = 24,
199 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
200
201 /*rtl8169_PHYstatus */
202 TBI_Enable = 0x80,
203 TxFlowCtrl = 0x40,
204 RxFlowCtrl = 0x20,
205 _1000bpsF = 0x10,
206 _100bps = 0x08,
207 _10bps = 0x04,
208 LinkStatus = 0x02,
209 FullDup = 0x01,
210
211 /*GIGABIT_PHY_registers */
212 PHY_CTRL_REG = 0,
213 PHY_STAT_REG = 1,
214 PHY_AUTO_NEGO_REG = 4,
215 PHY_1000_CTRL_REG = 9,
216
217 /*GIGABIT_PHY_REG_BIT */
218 PHY_Restart_Auto_Nego = 0x0200,
219 PHY_Enable_Auto_Nego = 0x1000,
220
221 /* PHY_STAT_REG = 1; */
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100222 PHY_Auto_Nego_Comp = 0x0020,
wdenka8bd82d2004-04-18 22:03:42 +0000223
224 /* PHY_AUTO_NEGO_REG = 4; */
225 PHY_Cap_10_Half = 0x0020,
226 PHY_Cap_10_Full = 0x0040,
227 PHY_Cap_100_Half = 0x0080,
228 PHY_Cap_100_Full = 0x0100,
229
230 /* PHY_1000_CTRL_REG = 9; */
231 PHY_Cap_1000_Full = 0x0200,
232
233 PHY_Cap_Null = 0x0,
234
235 /*_MediaType*/
236 _10_Half = 0x01,
237 _10_Full = 0x02,
238 _100_Half = 0x04,
239 _100_Full = 0x08,
240 _1000_Full = 0x10,
241
242 /*_TBICSRBit*/
243 TBILinkOK = 0x02000000,
244};
245
246static struct {
247 const char *name;
248 u8 version; /* depend on RTL8169 docs */
249 u32 RxConfigMask; /* should clear the bits supported by this chip */
250} rtl_chip_info[] = {
251 {"RTL-8169", 0x00, 0xff7e1880,},
252 {"RTL-8169", 0x04, 0xff7e1880,},
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900253 {"RTL-8169", 0x00, 0xff7e1880,},
254 {"RTL-8169s/8110s", 0x02, 0xff7e1880,},
255 {"RTL-8169s/8110s", 0x04, 0xff7e1880,},
256 {"RTL-8169sb/8110sb", 0x10, 0xff7e1880,},
257 {"RTL-8169sc/8110sc", 0x18, 0xff7e1880,},
258 {"RTL-8168b/8111sb", 0x30, 0xff7e1880,},
259 {"RTL-8168b/8111sb", 0x38, 0xff7e1880,},
Thierry Reding22872862013-09-20 16:03:43 +0200260 {"RTL-8168d/8111d", 0x28, 0xff7e1880,},
Thierry Reding65a66912013-09-20 16:03:44 +0200261 {"RTL-8168evl/8111evl", 0x2e, 0xff7e1880,},
Thierry Redingcc0856c2014-12-09 22:25:27 -0700262 {"RTL-8168/8111g", 0x4c, 0xff7e1880,},
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900263 {"RTL-8101e", 0x34, 0xff7e1880,},
264 {"RTL-8100e", 0x32, 0xff7e1880,},
wdenka8bd82d2004-04-18 22:03:42 +0000265};
266
267enum _DescStatusBit {
268 OWNbit = 0x80000000,
269 EORbit = 0x40000000,
270 FSbit = 0x20000000,
271 LSbit = 0x10000000,
272};
273
274struct TxDesc {
275 u32 status;
276 u32 vlan_tag;
277 u32 buf_addr;
278 u32 buf_Haddr;
279};
280
281struct RxDesc {
282 u32 status;
283 u32 vlan_tag;
284 u32 buf_addr;
285 u32 buf_Haddr;
286};
287
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600288static unsigned char rxdata[RX_BUF_LEN];
289
Thierry Redingdad3ba02014-12-09 22:25:25 -0700290#define RTL8169_DESC_SIZE 16
wdenka8bd82d2004-04-18 22:03:42 +0000291
Thierry Redingdad3ba02014-12-09 22:25:25 -0700292#if ARCH_DMA_MINALIGN > 256
293# define RTL8169_ALIGN ARCH_DMA_MINALIGN
294#else
295# define RTL8169_ALIGN 256
296#endif
297
298/*
299 * Warn if the cache-line size is larger than the descriptor size. In such
300 * cases the driver will likely fail because the CPU needs to flush the cache
301 * when requeuing RX buffers, therefore descriptors written by the hardware
302 * may be discarded.
Thierry Redingd58acdc2014-12-09 22:25:26 -0700303 *
304 * This can be fixed by defining CONFIG_SYS_NONCACHED_MEMORY which will cause
305 * the driver to allocate descriptors from a pool of non-cached memory.
Thierry Redingdad3ba02014-12-09 22:25:25 -0700306 */
307#if RTL8169_DESC_SIZE < ARCH_DMA_MINALIGN
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600308#if !defined(CONFIG_SYS_NONCACHED_MEMORY) && \
309 !defined(CONFIG_SYS_DCACHE_OFF) && !defined(CONFIG_X86)
Thierry Redingdad3ba02014-12-09 22:25:25 -0700310#warning cache-line size is larger than descriptor size
311#endif
Thierry Redingd58acdc2014-12-09 22:25:26 -0700312#endif
wdenka8bd82d2004-04-18 22:03:42 +0000313
Thierry Redingdad3ba02014-12-09 22:25:25 -0700314/*
315 * Create a static buffer of size RX_BUF_SZ for each TX Descriptor. All
316 * descriptors point to a part of this buffer.
317 */
318DEFINE_ALIGN_BUFFER(u8, txb, NUM_TX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
319
320/*
321 * Create a static buffer of size RX_BUF_SZ for each RX Descriptor. All
322 * descriptors point to a part of this buffer.
323 */
324DEFINE_ALIGN_BUFFER(u8, rxb, NUM_RX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
wdenka8bd82d2004-04-18 22:03:42 +0000325
326struct rtl8169_private {
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600327 ulong iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000328 void *mmio_addr; /* memory map physical address */
329 int chipset;
330 unsigned long cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
331 unsigned long cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
332 unsigned long dirty_tx;
wdenka8bd82d2004-04-18 22:03:42 +0000333 struct TxDesc *TxDescArray; /* Index of 256-alignment Tx Descriptor buffer */
334 struct RxDesc *RxDescArray; /* Index of 256-alignment Rx Descriptor buffer */
335 unsigned char *RxBufferRings; /* Index of Rx Buffer */
336 unsigned char *RxBufferRing[NUM_RX_DESC]; /* Index of Rx Buffer array */
337 unsigned char *Tx_skbuff[NUM_TX_DESC];
338} tpx;
339
340static struct rtl8169_private *tpc;
341
342static const u16 rtl8169_intr_mask =
343 SYSErr | PCSTimeout | RxUnderrun | RxOverflow | RxFIFOOver | TxErr |
344 TxOK | RxErr | RxOK;
345static const unsigned int rtl8169_rx_config =
346 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
347
348static struct pci_device_id supported[] = {
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600349 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167) },
350 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168) },
351 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169) },
wdenka8bd82d2004-04-18 22:03:42 +0000352 {}
353};
354
355void mdio_write(int RegAddr, int value)
356{
357 int i;
358
359 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
360 udelay(1000);
361
362 for (i = 2000; i > 0; i--) {
363 /* Check if the RTL8169 has completed writing to the specified MII register */
364 if (!(RTL_R32(PHYAR) & 0x80000000)) {
365 break;
366 } else {
367 udelay(100);
368 }
369 }
370}
371
372int mdio_read(int RegAddr)
373{
374 int i, value = -1;
375
376 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
377 udelay(1000);
378
379 for (i = 2000; i > 0; i--) {
380 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
381 if (RTL_R32(PHYAR) & 0x80000000) {
382 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
383 break;
384 } else {
385 udelay(100);
386 }
387 }
388 return value;
389}
390
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600391static int rtl8169_init_board(unsigned long dev_iobase, const char *name)
wdenka8bd82d2004-04-18 22:03:42 +0000392{
393 int i;
394 u32 tmp;
395
396#ifdef DEBUG_RTL8169
397 printf ("%s\n", __FUNCTION__);
398#endif
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600399 ioaddr = dev_iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000400
401 /* Soft reset the chip. */
402 RTL_W8(ChipCmd, CmdReset);
403
404 /* Check that the chip has finished the reset. */
405 for (i = 1000; i > 0; i--)
406 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
407 break;
408 else
409 udelay(10);
410
411 /* identify chip attached to board */
412 tmp = RTL_R32(TxConfig);
413 tmp = ((tmp & 0x7c000000) + ((tmp & 0x00800000) << 2)) >> 24;
414
415 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--){
416 if (tmp == rtl_chip_info[i].version) {
417 tpc->chipset = i;
418 goto match;
419 }
420 }
421
422 /* if unknown chip, assume array element #0, original RTL-8169 in this case */
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600423 printf("PCI device %s: unknown chip version, assuming RTL-8169\n",
424 name);
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200425 printf("PCI device: TxConfig = 0x%lX\n", (unsigned long) RTL_R32(TxConfig));
wdenka8bd82d2004-04-18 22:03:42 +0000426 tpc->chipset = 0;
427
428match:
429 return 0;
430}
431
Thierry Reding22ece0e2013-09-20 16:03:42 +0200432/*
Thierry Redingd58acdc2014-12-09 22:25:26 -0700433 * TX and RX descriptors are 16 bytes. This causes problems with the cache
434 * maintenance on CPUs where the cache-line size exceeds the size of these
435 * descriptors. What will happen is that when the driver receives a packet
436 * it will be immediately requeued for the hardware to reuse. The CPU will
437 * therefore need to flush the cache-line containing the descriptor, which
438 * will cause all other descriptors in the same cache-line to be flushed
439 * along with it. If one of those descriptors had been written to by the
440 * device those changes (and the associated packet) will be lost.
441 *
442 * To work around this, we make use of non-cached memory if available. If
443 * descriptors are mapped uncached there's no need to manually flush them
444 * or invalidate them.
445 *
446 * Note that this only applies to descriptors. The packet data buffers do
447 * not have the same constraints since they are 1536 bytes large, so they
448 * are unlikely to share cache-lines.
449 */
450static void *rtl_alloc_descs(unsigned int num)
451{
452 size_t size = num * RTL8169_DESC_SIZE;
453
454#ifdef CONFIG_SYS_NONCACHED_MEMORY
455 return (void *)noncached_alloc(size, RTL8169_ALIGN);
456#else
457 return memalign(RTL8169_ALIGN, size);
458#endif
459}
460
461/*
Thierry Reding22ece0e2013-09-20 16:03:42 +0200462 * Cache maintenance functions. These are simple wrappers around the more
463 * general purpose flush_cache() and invalidate_dcache_range() functions.
464 */
465
466static void rtl_inval_rx_desc(struct RxDesc *desc)
467{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700468#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200469 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
470 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
471
472 invalidate_dcache_range(start, end);
Thierry Redingd58acdc2014-12-09 22:25:26 -0700473#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200474}
475
476static void rtl_flush_rx_desc(struct RxDesc *desc)
477{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700478#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200479 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Redingd58acdc2014-12-09 22:25:26 -0700480#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200481}
482
483static void rtl_inval_tx_desc(struct TxDesc *desc)
484{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700485#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200486 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
487 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
488
489 invalidate_dcache_range(start, end);
Thierry Redingd58acdc2014-12-09 22:25:26 -0700490#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200491}
492
493static void rtl_flush_tx_desc(struct TxDesc *desc)
494{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700495#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200496 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Redingd58acdc2014-12-09 22:25:26 -0700497#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200498}
499
500static void rtl_inval_buffer(void *buf, size_t size)
501{
502 unsigned long start = (unsigned long)buf & ~(ARCH_DMA_MINALIGN - 1);
503 unsigned long end = ALIGN(start + size, ARCH_DMA_MINALIGN);
504
505 invalidate_dcache_range(start, end);
506}
507
508static void rtl_flush_buffer(void *buf, size_t size)
509{
510 flush_cache((unsigned long)buf, size);
511}
512
wdenka8bd82d2004-04-18 22:03:42 +0000513/**************************************************************************
514RECV - Receive a frame
515***************************************************************************/
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600516static int rtl_recv_common(pci_dev_t bdf, unsigned long dev_iobase,
517 uchar **packetp)
wdenka8bd82d2004-04-18 22:03:42 +0000518{
519 /* return true if there's an ethernet packet ready to read */
520 /* nic->packet should contain data on return */
521 /* nic->packetlen should contain length of data */
522 int cur_rx;
523 int length = 0;
524
525#ifdef DEBUG_RTL8169_RX
526 printf ("%s\n", __FUNCTION__);
527#endif
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600528 ioaddr = dev_iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000529
530 cur_rx = tpc->cur_rx;
Thierry Reding22ece0e2013-09-20 16:03:42 +0200531
532 rtl_inval_rx_desc(&tpc->RxDescArray[cur_rx]);
533
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100534 if ((le32_to_cpu(tpc->RxDescArray[cur_rx].status) & OWNbit) == 0) {
535 if (!(le32_to_cpu(tpc->RxDescArray[cur_rx].status) & RxRES)) {
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100536 length = (int) (le32_to_cpu(tpc->RxDescArray[cur_rx].
537 status) & 0x00001FFF) - 4;
wdenka8bd82d2004-04-18 22:03:42 +0000538
Thierry Reding22ece0e2013-09-20 16:03:42 +0200539 rtl_inval_buffer(tpc->RxBufferRing[cur_rx], length);
wdenka8bd82d2004-04-18 22:03:42 +0000540 memcpy(rxdata, tpc->RxBufferRing[cur_rx], length);
wdenka8bd82d2004-04-18 22:03:42 +0000541
542 if (cur_rx == NUM_RX_DESC - 1)
543 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100544 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000545 else
546 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100547 cpu_to_le32(OWNbit + RX_BUF_SIZE);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600548 tpc->RxDescArray[cur_rx].buf_addr = cpu_to_le32(
549 pci_mem_to_phys(bdf, (pci_addr_t)(unsigned long)
550 tpc->RxBufferRing[cur_rx]));
Thierry Reding22ece0e2013-09-20 16:03:42 +0200551 rtl_flush_rx_desc(&tpc->RxDescArray[cur_rx]);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600552#ifdef CONFIG_DM_ETH
553 *packetp = rxdata;
554#else
Joe Hershberger1fd92db2015-04-08 01:41:06 -0500555 net_process_received_packet(rxdata, length);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600556#endif
wdenka8bd82d2004-04-18 22:03:42 +0000557 } else {
558 puts("Error Rx");
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600559 length = -EIO;
wdenka8bd82d2004-04-18 22:03:42 +0000560 }
561 cur_rx = (cur_rx + 1) % NUM_RX_DESC;
562 tpc->cur_rx = cur_rx;
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600563 return length;
wdenka8bd82d2004-04-18 22:03:42 +0000564
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900565 } else {
566 ushort sts = RTL_R8(IntrStatus);
567 RTL_W8(IntrStatus, sts & ~(TxErr | RxErr | SYSErr));
568 udelay(100); /* wait */
wdenka8bd82d2004-04-18 22:03:42 +0000569 }
570 tpc->cur_rx = cur_rx;
571 return (0); /* initially as this is called to flush the input */
572}
573
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600574#ifdef CONFIG_DM_ETH
575int rtl8169_eth_recv(struct udevice *dev, int flags, uchar **packetp)
576{
577 struct rtl8169_private *priv = dev_get_priv(dev);
578
Simon Glass21ccce12015-11-29 13:17:47 -0700579 return rtl_recv_common(dm_pci_get_bdf(dev), priv->iobase, packetp);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600580}
581#else
582static int rtl_recv(struct eth_device *dev)
583{
Stephen Warrenf3ba5522015-10-02 17:44:34 -0600584 return rtl_recv_common((pci_dev_t)(unsigned long)dev->priv,
585 dev->iobase, NULL);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600586}
587#endif /* nCONFIG_DM_ETH */
588
wdenka8bd82d2004-04-18 22:03:42 +0000589#define HZ 1000
590/**************************************************************************
591SEND - Transmit a frame
592***************************************************************************/
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600593static int rtl_send_common(pci_dev_t bdf, unsigned long dev_iobase,
594 void *packet, int length)
wdenka8bd82d2004-04-18 22:03:42 +0000595{
596 /* send the packet to destination */
597
598 u32 to;
599 u8 *ptxb;
600 int entry = tpc->cur_tx % NUM_TX_DESC;
601 u32 len = length;
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100602 int ret;
wdenka8bd82d2004-04-18 22:03:42 +0000603
604#ifdef DEBUG_RTL8169_TX
605 int stime = currticks();
606 printf ("%s\n", __FUNCTION__);
607 printf("sending %d bytes\n", len);
608#endif
609
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600610 ioaddr = dev_iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000611
612 /* point to the current txb incase multiple tx_rings are used */
613 ptxb = tpc->Tx_skbuff[entry * MAX_ETH_FRAME_SIZE];
614 memcpy(ptxb, (char *)packet, (int)length);
Thierry Reding22ece0e2013-09-20 16:03:42 +0200615 rtl_flush_buffer(ptxb, length);
wdenka8bd82d2004-04-18 22:03:42 +0000616
617 while (len < ETH_ZLEN)
618 ptxb[len++] = '\0';
619
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900620 tpc->TxDescArray[entry].buf_Haddr = 0;
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600621 tpc->TxDescArray[entry].buf_addr = cpu_to_le32(
622 pci_mem_to_phys(bdf, (pci_addr_t)(unsigned long)ptxb));
wdenka8bd82d2004-04-18 22:03:42 +0000623 if (entry != (NUM_TX_DESC - 1)) {
624 tpc->TxDescArray[entry].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100625 cpu_to_le32((OWNbit | FSbit | LSbit) |
626 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka8bd82d2004-04-18 22:03:42 +0000627 } else {
628 tpc->TxDescArray[entry].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100629 cpu_to_le32((OWNbit | EORbit | FSbit | LSbit) |
630 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka8bd82d2004-04-18 22:03:42 +0000631 }
Thierry Reding22ece0e2013-09-20 16:03:42 +0200632 rtl_flush_tx_desc(&tpc->TxDescArray[entry]);
wdenka8bd82d2004-04-18 22:03:42 +0000633 RTL_W8(TxPoll, 0x40); /* set polling bit */
634
635 tpc->cur_tx++;
636 to = currticks() + TX_TIMEOUT;
Yoshihiro Shimodad4c02e62009-02-25 14:27:24 +0900637 do {
Thierry Reding22ece0e2013-09-20 16:03:42 +0200638 rtl_inval_tx_desc(&tpc->TxDescArray[entry]);
Yoshihiro Shimodad4c02e62009-02-25 14:27:24 +0900639 } while ((le32_to_cpu(tpc->TxDescArray[entry].status) & OWNbit)
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100640 && (currticks() < to)); /* wait */
wdenka8bd82d2004-04-18 22:03:42 +0000641
642 if (currticks() >= to) {
643#ifdef DEBUG_RTL8169_TX
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200644 puts("tx timeout/error\n");
645 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000646#endif
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100647 ret = 0;
wdenka8bd82d2004-04-18 22:03:42 +0000648 } else {
649#ifdef DEBUG_RTL8169_TX
650 puts("tx done\n");
651#endif
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100652 ret = length;
wdenka8bd82d2004-04-18 22:03:42 +0000653 }
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100654 /* Delay to make net console (nc) work properly */
655 udelay(20);
656 return ret;
wdenka8bd82d2004-04-18 22:03:42 +0000657}
658
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600659#ifdef CONFIG_DM_ETH
660int rtl8169_eth_send(struct udevice *dev, void *packet, int length)
661{
662 struct rtl8169_private *priv = dev_get_priv(dev);
663
Simon Glass21ccce12015-11-29 13:17:47 -0700664 return rtl_send_common(dm_pci_get_bdf(dev), priv->iobase, packet,
665 length);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600666}
667
668#else
669static int rtl_send(struct eth_device *dev, void *packet, int length)
670{
Stephen Warrenf3ba5522015-10-02 17:44:34 -0600671 return rtl_send_common((pci_dev_t)(unsigned long)dev->priv,
672 dev->iobase, packet, length);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600673}
674#endif
675
676static void rtl8169_set_rx_mode(void)
wdenka8bd82d2004-04-18 22:03:42 +0000677{
678 u32 mc_filter[2]; /* Multicast hash filter */
679 int rx_mode;
680 u32 tmp = 0;
681
682#ifdef DEBUG_RTL8169
683 printf ("%s\n", __FUNCTION__);
684#endif
685
686 /* IFF_ALLMULTI */
687 /* Too many to filter perfectly -- accept all multicasts. */
688 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
689 mc_filter[1] = mc_filter[0] = 0xffffffff;
690
691 tmp = rtl8169_rx_config | rx_mode | (RTL_R32(RxConfig) &
692 rtl_chip_info[tpc->chipset].RxConfigMask);
693
694 RTL_W32(RxConfig, tmp);
695 RTL_W32(MAR0 + 0, mc_filter[0]);
696 RTL_W32(MAR0 + 4, mc_filter[1]);
697}
698
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600699static void rtl8169_hw_start(pci_dev_t bdf)
wdenka8bd82d2004-04-18 22:03:42 +0000700{
701 u32 i;
702
703#ifdef DEBUG_RTL8169
704 int stime = currticks();
705 printf ("%s\n", __FUNCTION__);
706#endif
707
708#if 0
709 /* Soft reset the chip. */
710 RTL_W8(ChipCmd, CmdReset);
711
712 /* Check that the chip has finished the reset. */
713 for (i = 1000; i > 0; i--) {
714 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
715 break;
716 else
717 udelay(10);
718 }
719#endif
720
721 RTL_W8(Cfg9346, Cfg9346_Unlock);
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900722
723 /* RTL-8169sb/8110sb or previous version */
724 if (tpc->chipset <= 5)
725 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
726
wdenka8bd82d2004-04-18 22:03:42 +0000727 RTL_W8(EarlyTxThres, EarlyTxThld);
728
729 /* For gigabit rtl8169 */
730 RTL_W16(RxMaxSize, RxPacketMaxSize);
731
732 /* Set Rx Config register */
733 i = rtl8169_rx_config | (RTL_R32(RxConfig) &
734 rtl_chip_info[tpc->chipset].RxConfigMask);
735 RTL_W32(RxConfig, i);
736
737 /* Set DMA burst size and Interframe Gap Time */
738 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
739 (InterFrameGap << TxInterFrameGapShift));
740
741
742 tpc->cur_rx = 0;
743
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600744 RTL_W32(TxDescStartAddrLow, pci_mem_to_phys(bdf,
745 (pci_addr_t)(unsigned long)tpc->TxDescArray));
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900746 RTL_W32(TxDescStartAddrHigh, (unsigned long)0);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600747 RTL_W32(RxDescStartAddrLow, pci_mem_to_phys(
748 bdf, (pci_addr_t)(unsigned long)tpc->RxDescArray));
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900749 RTL_W32(RxDescStartAddrHigh, (unsigned long)0);
750
751 /* RTL-8169sc/8110sc or later version */
752 if (tpc->chipset > 5)
753 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
754
wdenka8bd82d2004-04-18 22:03:42 +0000755 RTL_W8(Cfg9346, Cfg9346_Lock);
756 udelay(10);
757
758 RTL_W32(RxMissed, 0);
759
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600760 rtl8169_set_rx_mode();
wdenka8bd82d2004-04-18 22:03:42 +0000761
762 /* no early-rx interrupts */
763 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
764
765#ifdef DEBUG_RTL8169
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200766 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000767#endif
768}
769
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600770static void rtl8169_init_ring(pci_dev_t bdf)
wdenka8bd82d2004-04-18 22:03:42 +0000771{
772 int i;
773
774#ifdef DEBUG_RTL8169
775 int stime = currticks();
776 printf ("%s\n", __FUNCTION__);
777#endif
778
779 tpc->cur_rx = 0;
780 tpc->cur_tx = 0;
781 tpc->dirty_tx = 0;
782 memset(tpc->TxDescArray, 0x0, NUM_TX_DESC * sizeof(struct TxDesc));
783 memset(tpc->RxDescArray, 0x0, NUM_RX_DESC * sizeof(struct RxDesc));
784
785 for (i = 0; i < NUM_TX_DESC; i++) {
786 tpc->Tx_skbuff[i] = &txb[i];
787 }
788
789 for (i = 0; i < NUM_RX_DESC; i++) {
790 if (i == (NUM_RX_DESC - 1))
791 tpc->RxDescArray[i].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100792 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000793 else
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100794 tpc->RxDescArray[i].status =
795 cpu_to_le32(OWNbit + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000796
797 tpc->RxBufferRing[i] = &rxb[i * RX_BUF_SIZE];
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600798 tpc->RxDescArray[i].buf_addr = cpu_to_le32(pci_mem_to_phys(
799 bdf, (pci_addr_t)(unsigned long)tpc->RxBufferRing[i]));
Thierry Reding22ece0e2013-09-20 16:03:42 +0200800 rtl_flush_rx_desc(&tpc->RxDescArray[i]);
wdenka8bd82d2004-04-18 22:03:42 +0000801 }
802
803#ifdef DEBUG_RTL8169
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200804 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000805#endif
806}
807
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600808static void rtl8169_common_start(pci_dev_t bdf, unsigned char *enetaddr)
wdenka8bd82d2004-04-18 22:03:42 +0000809{
810 int i;
wdenka8bd82d2004-04-18 22:03:42 +0000811
812#ifdef DEBUG_RTL8169
813 int stime = currticks();
814 printf ("%s\n", __FUNCTION__);
815#endif
816
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600817 rtl8169_init_ring(bdf);
818 rtl8169_hw_start(bdf);
wdenka8bd82d2004-04-18 22:03:42 +0000819 /* Construct a perfect filter frame with the mac address as first match
820 * and broadcast for all others */
821 for (i = 0; i < 192; i++)
822 txb[i] = 0xFF;
823
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600824 txb[0] = enetaddr[0];
825 txb[1] = enetaddr[1];
826 txb[2] = enetaddr[2];
827 txb[3] = enetaddr[3];
828 txb[4] = enetaddr[4];
829 txb[5] = enetaddr[5];
wdenka8bd82d2004-04-18 22:03:42 +0000830
831#ifdef DEBUG_RTL8169
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200832 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000833#endif
834}
835
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600836#ifdef CONFIG_DM_ETH
837static int rtl8169_eth_start(struct udevice *dev)
838{
839 struct eth_pdata *plat = dev_get_platdata(dev);
840
Simon Glass21ccce12015-11-29 13:17:47 -0700841 rtl8169_common_start(dm_pci_get_bdf(dev), plat->enetaddr);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600842
843 return 0;
844}
845#else
wdenka8bd82d2004-04-18 22:03:42 +0000846/**************************************************************************
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600847RESET - Finish setting up the ethernet interface
wdenka8bd82d2004-04-18 22:03:42 +0000848***************************************************************************/
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600849static int rtl_reset(struct eth_device *dev, bd_t *bis)
850{
Stephen Warrenf3ba5522015-10-02 17:44:34 -0600851 rtl8169_common_start((pci_dev_t)(unsigned long)dev->priv,
852 dev->enetaddr);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600853
854 return 0;
855}
856#endif /* nCONFIG_DM_ETH */
857
858static void rtl_halt_common(unsigned long dev_iobase)
wdenka8bd82d2004-04-18 22:03:42 +0000859{
860 int i;
861
862#ifdef DEBUG_RTL8169
863 printf ("%s\n", __FUNCTION__);
864#endif
865
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600866 ioaddr = dev_iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000867
868 /* Stop the chip's Tx and Rx DMA processes. */
869 RTL_W8(ChipCmd, 0x00);
870
871 /* Disable interrupts by clearing the interrupt mask. */
872 RTL_W16(IntrMask, 0x0000);
873
874 RTL_W32(RxMissed, 0);
875
wdenka8bd82d2004-04-18 22:03:42 +0000876 for (i = 0; i < NUM_RX_DESC; i++) {
877 tpc->RxBufferRing[i] = NULL;
878 }
879}
880
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600881#ifdef CONFIG_DM_ETH
882void rtl8169_eth_stop(struct udevice *dev)
883{
884 struct rtl8169_private *priv = dev_get_priv(dev);
885
886 rtl_halt_common(priv->iobase);
887}
888#else
889/**************************************************************************
890HALT - Turn off ethernet interface
891***************************************************************************/
892static void rtl_halt(struct eth_device *dev)
893{
894 rtl_halt_common(dev->iobase);
895}
896#endif
897
wdenka8bd82d2004-04-18 22:03:42 +0000898/**************************************************************************
899INIT - Look for an adapter, this routine's visible to the outside
900***************************************************************************/
901
902#define board_found 1
903#define valid_link 0
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600904static int rtl_init(unsigned long dev_ioaddr, const char *name,
905 unsigned char *enetaddr)
wdenka8bd82d2004-04-18 22:03:42 +0000906{
907 static int board_idx = -1;
wdenka8bd82d2004-04-18 22:03:42 +0000908 int i, rc;
909 int option = -1, Cap10_100 = 0, Cap1000 = 0;
910
911#ifdef DEBUG_RTL8169
912 printf ("%s\n", __FUNCTION__);
913#endif
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600914 ioaddr = dev_ioaddr;
wdenka8bd82d2004-04-18 22:03:42 +0000915
916 board_idx++;
917
wdenka8bd82d2004-04-18 22:03:42 +0000918 /* point to private storage */
919 tpc = &tpx;
920
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600921 rc = rtl8169_init_board(ioaddr, name);
wdenka8bd82d2004-04-18 22:03:42 +0000922 if (rc)
923 return rc;
924
925 /* Get MAC address. FIXME: read EEPROM */
926 for (i = 0; i < MAC_ADDR_LEN; i++)
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600927 enetaddr[i] = RTL_R8(MAC0 + i);
wdenka8bd82d2004-04-18 22:03:42 +0000928
929#ifdef DEBUG_RTL8169
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900930 printf("chipset = %d\n", tpc->chipset);
wdenka8bd82d2004-04-18 22:03:42 +0000931 printf("MAC Address");
932 for (i = 0; i < MAC_ADDR_LEN; i++)
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600933 printf(":%02x", enetaddr[i]);
wdenka8bd82d2004-04-18 22:03:42 +0000934 putc('\n');
935#endif
936
937#ifdef DEBUG_RTL8169
938 /* Print out some hardware info */
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600939 printf("%s: at ioaddr 0x%lx\n", name, ioaddr);
wdenka8bd82d2004-04-18 22:03:42 +0000940#endif
941
942 /* if TBI is not endbled */
943 if (!(RTL_R8(PHYstatus) & TBI_Enable)) {
944 int val = mdio_read(PHY_AUTO_NEGO_REG);
945
946 option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx];
947 /* Force RTL8169 in 10/100/1000 Full/Half mode. */
948 if (option > 0) {
949#ifdef DEBUG_RTL8169
950 printf("%s: Force-mode Enabled.\n", dev->name);
951#endif
952 Cap10_100 = 0, Cap1000 = 0;
953 switch (option) {
954 case _10_Half:
955 Cap10_100 = PHY_Cap_10_Half;
956 Cap1000 = PHY_Cap_Null;
957 break;
958 case _10_Full:
959 Cap10_100 = PHY_Cap_10_Full;
960 Cap1000 = PHY_Cap_Null;
961 break;
962 case _100_Half:
963 Cap10_100 = PHY_Cap_100_Half;
964 Cap1000 = PHY_Cap_Null;
965 break;
966 case _100_Full:
967 Cap10_100 = PHY_Cap_100_Full;
968 Cap1000 = PHY_Cap_Null;
969 break;
970 case _1000_Full:
971 Cap10_100 = PHY_Cap_Null;
972 Cap1000 = PHY_Cap_1000_Full;
973 break;
974 default:
975 break;
976 }
977 mdio_write(PHY_AUTO_NEGO_REG, Cap10_100 | (val & 0x1F)); /* leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
978 mdio_write(PHY_1000_CTRL_REG, Cap1000);
979 } else {
980#ifdef DEBUG_RTL8169
981 printf("%s: Auto-negotiation Enabled.\n",
982 dev->name);
983#endif
984 /* enable 10/100 Full/Half Mode, leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
985 mdio_write(PHY_AUTO_NEGO_REG,
986 PHY_Cap_10_Half | PHY_Cap_10_Full |
987 PHY_Cap_100_Half | PHY_Cap_100_Full |
988 (val & 0x1F));
989
990 /* enable 1000 Full Mode */
991 mdio_write(PHY_1000_CTRL_REG, PHY_Cap_1000_Full);
992
993 }
994
995 /* Enable auto-negotiation and restart auto-nigotiation */
996 mdio_write(PHY_CTRL_REG,
997 PHY_Enable_Auto_Nego | PHY_Restart_Auto_Nego);
998 udelay(100);
999
1000 /* wait for auto-negotiation process */
1001 for (i = 10000; i > 0; i--) {
1002 /* check if auto-negotiation complete */
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +01001003 if (mdio_read(PHY_STAT_REG) & PHY_Auto_Nego_Comp) {
wdenka8bd82d2004-04-18 22:03:42 +00001004 udelay(100);
1005 option = RTL_R8(PHYstatus);
1006 if (option & _1000bpsF) {
1007#ifdef DEBUG_RTL8169
1008 printf("%s: 1000Mbps Full-duplex operation.\n",
1009 dev->name);
1010#endif
1011 } else {
1012#ifdef DEBUG_RTL8169
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +01001013 printf("%s: %sMbps %s-duplex operation.\n",
1014 dev->name,
1015 (option & _100bps) ? "100" :
1016 "10",
1017 (option & FullDup) ? "Full" :
1018 "Half");
wdenka8bd82d2004-04-18 22:03:42 +00001019#endif
1020 }
1021 break;
1022 } else {
1023 udelay(100);
1024 }
1025 } /* end for-loop to wait for auto-negotiation process */
1026
1027 } else {
1028 udelay(100);
1029#ifdef DEBUG_RTL8169
1030 printf
1031 ("%s: 1000Mbps Full-duplex operation, TBI Link %s!\n",
1032 dev->name,
1033 (RTL_R32(TBICSR) & TBILinkOK) ? "OK" : "Failed");
1034#endif
1035 }
1036
Thierry Redingdad3ba02014-12-09 22:25:25 -07001037
Thierry Redingd58acdc2014-12-09 22:25:26 -07001038 tpc->RxDescArray = rtl_alloc_descs(NUM_RX_DESC);
1039 if (!tpc->RxDescArray)
1040 return -ENOMEM;
1041
1042 tpc->TxDescArray = rtl_alloc_descs(NUM_TX_DESC);
1043 if (!tpc->TxDescArray)
1044 return -ENOMEM;
1045
1046 return 0;
wdenka8bd82d2004-04-18 22:03:42 +00001047}
1048
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001049#ifndef CONFIG_DM_ETH
wdenka8bd82d2004-04-18 22:03:42 +00001050int rtl8169_initialize(bd_t *bis)
1051{
1052 pci_dev_t devno;
1053 int card_number = 0;
1054 struct eth_device *dev;
1055 u32 iobase;
1056 int idx=0;
1057
1058 while(1){
Thierry Reding22872862013-09-20 16:03:43 +02001059 unsigned int region;
1060 u16 device;
Thierry Redingd58acdc2014-12-09 22:25:26 -07001061 int err;
Thierry Reding22872862013-09-20 16:03:43 +02001062
wdenka8bd82d2004-04-18 22:03:42 +00001063 /* Find RTL8169 */
1064 if ((devno = pci_find_devices(supported, idx++)) < 0)
1065 break;
1066
Thierry Reding22872862013-09-20 16:03:43 +02001067 pci_read_config_word(devno, PCI_DEVICE_ID, &device);
1068 switch (device) {
1069 case 0x8168:
1070 region = 2;
1071 break;
1072
1073 default:
1074 region = 1;
1075 break;
1076 }
1077
1078 pci_read_config_dword(devno, PCI_BASE_ADDRESS_0 + (region * 4), &iobase);
wdenka8bd82d2004-04-18 22:03:42 +00001079 iobase &= ~0xf;
1080
1081 debug ("rtl8169: REALTEK RTL8169 @0x%x\n", iobase);
1082
1083 dev = (struct eth_device *)malloc(sizeof *dev);
Nobuhiro Iwamatsuf4eaef72010-10-19 14:03:38 +09001084 if (!dev) {
1085 printf("Can not allocate memory of rtl8169\n");
1086 break;
1087 }
wdenka8bd82d2004-04-18 22:03:42 +00001088
Nobuhiro Iwamatsuf4eaef72010-10-19 14:03:38 +09001089 memset(dev, 0, sizeof(*dev));
wdenka8bd82d2004-04-18 22:03:42 +00001090 sprintf (dev->name, "RTL8169#%d", card_number);
1091
Thierry Reding744152f2015-03-20 12:41:21 +01001092 dev->priv = (void *)(unsigned long)devno;
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +01001093 dev->iobase = (int)pci_mem_to_phys(devno, iobase);
wdenka8bd82d2004-04-18 22:03:42 +00001094
1095 dev->init = rtl_reset;
1096 dev->halt = rtl_halt;
1097 dev->send = rtl_send;
1098 dev->recv = rtl_recv;
1099
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001100 err = rtl_init(dev->iobase, dev->name, dev->enetaddr);
Thierry Redingd58acdc2014-12-09 22:25:26 -07001101 if (err < 0) {
1102 printf(pr_fmt("failed to initialize card: %d\n"), err);
1103 free(dev);
1104 continue;
1105 }
wdenka8bd82d2004-04-18 22:03:42 +00001106
Thierry Redingd58acdc2014-12-09 22:25:26 -07001107 eth_register (dev);
wdenka8bd82d2004-04-18 22:03:42 +00001108
1109 card_number++;
1110 }
1111 return card_number;
1112}
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001113#endif
1114
1115#ifdef CONFIG_DM_ETH
1116static int rtl8169_eth_probe(struct udevice *dev)
1117{
1118 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
1119 struct rtl8169_private *priv = dev_get_priv(dev);
1120 struct eth_pdata *plat = dev_get_platdata(dev);
1121 u32 iobase;
1122 int region;
1123 int ret;
1124
1125 debug("rtl8169: REALTEK RTL8169 @0x%x\n", iobase);
1126 switch (pplat->device) {
1127 case 0x8168:
1128 region = 2;
1129 break;
1130 default:
1131 region = 1;
1132 break;
1133 }
Simon Glass21ccce12015-11-29 13:17:47 -07001134 pci_read_config32(dm_pci_get_bdf(dev), PCI_BASE_ADDRESS_0 + region * 4,
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001135 &iobase);
1136 iobase &= ~0xf;
Simon Glass21ccce12015-11-29 13:17:47 -07001137 priv->iobase = (int)pci_mem_to_phys(dm_pci_get_bdf(dev), iobase);
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001138
1139 ret = rtl_init(priv->iobase, dev->name, plat->enetaddr);
1140 if (ret < 0) {
1141 printf(pr_fmt("failed to initialize card: %d\n"), ret);
1142 return ret;
1143 }
1144
1145 return 0;
1146}
1147
1148static const struct eth_ops rtl8169_eth_ops = {
1149 .start = rtl8169_eth_start,
1150 .send = rtl8169_eth_send,
1151 .recv = rtl8169_eth_recv,
1152 .stop = rtl8169_eth_stop,
1153};
1154
1155static const struct udevice_id rtl8169_eth_ids[] = {
1156 { .compatible = "realtek,rtl8169" },
1157 { }
1158};
1159
1160U_BOOT_DRIVER(eth_rtl8169) = {
1161 .name = "eth_rtl8169",
1162 .id = UCLASS_ETH,
1163 .of_match = rtl8169_eth_ids,
1164 .probe = rtl8169_eth_probe,
1165 .ops = &rtl8169_eth_ops,
1166 .priv_auto_alloc_size = sizeof(struct rtl8169_private),
1167 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
1168};
1169
1170U_BOOT_PCI_DEVICE(eth_rtl8169, supported);
1171#endif