blob: c9c07a5a8ffe7f1a963b0e09b0ec7334913a56f9 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenka6270482004-04-18 22:03:42 +00002/*
3 * rtl8169.c : U-Boot driver for the RealTek RTL8169
4 *
5 * Masami Komiya (mkomiya@sonare.it)
6 *
7 * Most part is taken from r8169.c of etherboot
8 *
9 */
10
11/**************************************************************************
12* r8169.c: Etherboot device driver for the RealTek RTL-8169 Gigabit
13* Written 2003 by Timothy Legge <tlegge@rogers.com>
14*
wdenka6270482004-04-18 22:03:42 +000015* Portions of this code based on:
16* r8169.c: A RealTek RTL-8169 Gigabit Ethernet driver
17* for Linux kernel 2.4.x.
18*
19* Written 2002 ShuChen <shuchen@realtek.com.tw>
20* See Linux Driver for full information
21*
22* Linux Driver Version 1.27a, 10.02.2002
23*
24* Thanks to:
25* Jean Chen of RealTek Semiconductor Corp. for
26* providing the evaluation NIC used to develop
27* this driver. RealTek's support for Etherboot
28* is appreciated.
29*
30* REVISION HISTORY:
31* ================
32*
33* v1.0 11-26-2003 timlegge Initial port of Linux driver
34* v1.5 01-17-2004 timlegge Initial driver output cleanup
35*
36* Indent Options: indent -kr -i8
37***************************************************************************/
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +010038/*
39 * 26 August 2006 Mihai Georgian <u-boot@linuxnotincluded.org.uk>
40 * Modified to use le32_to_cpu and cpu_to_le32 properly
41 */
wdenka6270482004-04-18 22:03:42 +000042#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -070043#include <cpu_func.h>
Simon Glassf2acb532015-07-06 16:47:45 -060044#include <dm.h>
Thierry Reding209c6482014-12-09 22:25:26 -070045#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060046#include <log.h>
wdenka6270482004-04-18 22:03:42 +000047#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060048#include <memalign.h>
wdenka6270482004-04-18 22:03:42 +000049#include <net.h>
Simon Glass274e0b02020-05-10 11:39:56 -060050#include <asm/cache.h>
wdenka6270482004-04-18 22:03:42 +000051#include <asm/io.h>
52#include <pci.h>
Simon Glassdbd79542020-05-10 11:40:11 -060053#include <linux/delay.h>
wdenka6270482004-04-18 22:03:42 +000054
wdenka6270482004-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 Reding207edd62015-03-20 12:41:21 +010062static unsigned long ioaddr;
wdenka6270482004-04-18 22:03:42 +000063
64/* Condensed operations for readability. */
wdenka6270482004-04-18 22:03:42 +000065#define currticks() get_timer(0)
wdenka6270482004-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 Reding75856e32014-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
wdenka6270482004-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 Liakhovetskide20a4f2007-11-20 13:14:20 +010098/* write/read MMIO register. Notice: {read,write}[wl] do the necessary swapping */
Thierry Reding207edd62015-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))
wdenka6270482004-04-18 22:03:42 +0000105
Thierry Reding207edd62015-03-20 12:41:21 +0100106#define bus_to_phys(a) pci_mem_to_phys((pci_dev_t)(unsigned long)dev->priv, \
107 (pci_addr_t)(unsigned long)a)
108#define phys_to_bus(a) pci_phys_to_mem((pci_dev_t)(unsigned long)dev->priv, \
109 (phys_addr_t)a)
Yoshihiro Shimoda2b904942009-02-25 14:27:29 +0900110
wdenka6270482004-04-18 22:03:42 +0000111enum RTL8169_registers {
112 MAC0 = 0, /* Ethernet hardware address. */
113 MAR0 = 8, /* Multicast filter. */
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900114 TxDescStartAddrLow = 0x20,
115 TxDescStartAddrHigh = 0x24,
116 TxHDescStartAddrLow = 0x28,
117 TxHDescStartAddrHigh = 0x2c,
wdenka6270482004-04-18 22:03:42 +0000118 FLASH = 0x30,
119 ERSR = 0x36,
120 ChipCmd = 0x37,
121 TxPoll = 0x38,
122 IntrMask = 0x3C,
123 IntrStatus = 0x3E,
124 TxConfig = 0x40,
125 RxConfig = 0x44,
126 RxMissed = 0x4C,
127 Cfg9346 = 0x50,
128 Config0 = 0x51,
129 Config1 = 0x52,
130 Config2 = 0x53,
131 Config3 = 0x54,
132 Config4 = 0x55,
133 Config5 = 0x56,
134 MultiIntr = 0x5C,
135 PHYAR = 0x60,
136 TBICSR = 0x64,
137 TBI_ANAR = 0x68,
138 TBI_LPAR = 0x6A,
139 PHYstatus = 0x6C,
140 RxMaxSize = 0xDA,
141 CPlusCmd = 0xE0,
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900142 RxDescStartAddrLow = 0xE4,
143 RxDescStartAddrHigh = 0xE8,
wdenka6270482004-04-18 22:03:42 +0000144 EarlyTxThres = 0xEC,
145 FuncEvent = 0xF0,
146 FuncEventMask = 0xF4,
147 FuncPresetState = 0xF8,
148 FuncForceEvent = 0xFC,
149};
150
151enum RTL8169_register_content {
152 /*InterruptStatusBits */
153 SYSErr = 0x8000,
154 PCSTimeout = 0x4000,
155 SWInt = 0x0100,
156 TxDescUnavail = 0x80,
157 RxFIFOOver = 0x40,
158 RxUnderrun = 0x20,
159 RxOverflow = 0x10,
160 TxErr = 0x08,
161 TxOK = 0x04,
162 RxErr = 0x02,
163 RxOK = 0x01,
164
165 /*RxStatusDesc */
166 RxRES = 0x00200000,
167 RxCRC = 0x00080000,
168 RxRUNT = 0x00100000,
169 RxRWT = 0x00400000,
170
171 /*ChipCmdBits */
172 CmdReset = 0x10,
173 CmdRxEnb = 0x08,
174 CmdTxEnb = 0x04,
175 RxBufEmpty = 0x01,
176
177 /*Cfg9346Bits */
178 Cfg9346_Lock = 0x00,
179 Cfg9346_Unlock = 0xC0,
180
181 /*rx_mode_bits */
182 AcceptErr = 0x20,
183 AcceptRunt = 0x10,
184 AcceptBroadcast = 0x08,
185 AcceptMulticast = 0x04,
186 AcceptMyPhys = 0x02,
187 AcceptAllPhys = 0x01,
188
189 /*RxConfigBits */
190 RxCfgFIFOShift = 13,
191 RxCfgDMAShift = 8,
192
193 /*TxConfigBits */
194 TxInterFrameGapShift = 24,
195 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
196
197 /*rtl8169_PHYstatus */
198 TBI_Enable = 0x80,
199 TxFlowCtrl = 0x40,
200 RxFlowCtrl = 0x20,
201 _1000bpsF = 0x10,
202 _100bps = 0x08,
203 _10bps = 0x04,
204 LinkStatus = 0x02,
205 FullDup = 0x01,
206
207 /*GIGABIT_PHY_registers */
208 PHY_CTRL_REG = 0,
209 PHY_STAT_REG = 1,
210 PHY_AUTO_NEGO_REG = 4,
211 PHY_1000_CTRL_REG = 9,
212
213 /*GIGABIT_PHY_REG_BIT */
214 PHY_Restart_Auto_Nego = 0x0200,
215 PHY_Enable_Auto_Nego = 0x1000,
216
217 /* PHY_STAT_REG = 1; */
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100218 PHY_Auto_Nego_Comp = 0x0020,
wdenka6270482004-04-18 22:03:42 +0000219
220 /* PHY_AUTO_NEGO_REG = 4; */
221 PHY_Cap_10_Half = 0x0020,
222 PHY_Cap_10_Full = 0x0040,
223 PHY_Cap_100_Half = 0x0080,
224 PHY_Cap_100_Full = 0x0100,
225
226 /* PHY_1000_CTRL_REG = 9; */
227 PHY_Cap_1000_Full = 0x0200,
228
229 PHY_Cap_Null = 0x0,
230
231 /*_MediaType*/
232 _10_Half = 0x01,
233 _10_Full = 0x02,
234 _100_Half = 0x04,
235 _100_Full = 0x08,
236 _1000_Full = 0x10,
237
238 /*_TBICSRBit*/
239 TBILinkOK = 0x02000000,
Tom Warrenf9f4a1c2020-03-26 15:59:13 -0700240
241 /* FuncEvent/Misc */
242 RxDv_Gated_En = 0x80000,
wdenka6270482004-04-18 22:03:42 +0000243};
244
245static struct {
246 const char *name;
247 u8 version; /* depend on RTL8169 docs */
248 u32 RxConfigMask; /* should clear the bits supported by this chip */
249} rtl_chip_info[] = {
250 {"RTL-8169", 0x00, 0xff7e1880,},
251 {"RTL-8169", 0x04, 0xff7e1880,},
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900252 {"RTL-8169", 0x00, 0xff7e1880,},
253 {"RTL-8169s/8110s", 0x02, 0xff7e1880,},
254 {"RTL-8169s/8110s", 0x04, 0xff7e1880,},
255 {"RTL-8169sb/8110sb", 0x10, 0xff7e1880,},
256 {"RTL-8169sc/8110sc", 0x18, 0xff7e1880,},
257 {"RTL-8168b/8111sb", 0x30, 0xff7e1880,},
258 {"RTL-8168b/8111sb", 0x38, 0xff7e1880,},
Thierry Reding64c5e232019-09-11 19:19:06 +0200259 {"RTL-8168c/8111c", 0x3c, 0xff7e1880,},
Thierry Reding433f3122013-09-20 16:03:43 +0200260 {"RTL-8168d/8111d", 0x28, 0xff7e1880,},
Thierry Reding625bcbe2013-09-20 16:03:44 +0200261 {"RTL-8168evl/8111evl", 0x2e, 0xff7e1880,},
Thierry Reding93428552014-12-09 22:25:27 -0700262 {"RTL-8168/8111g", 0x4c, 0xff7e1880,},
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900263 {"RTL-8101e", 0x34, 0xff7e1880,},
264 {"RTL-8100e", 0x32, 0xff7e1880,},
Thierry Reding6137e412019-04-16 18:20:30 +0200265 {"RTL-8168h/8111h", 0x54, 0xff7e1880,},
wdenka6270482004-04-18 22:03:42 +0000266};
267
268enum _DescStatusBit {
269 OWNbit = 0x80000000,
270 EORbit = 0x40000000,
271 FSbit = 0x20000000,
272 LSbit = 0x10000000,
273};
274
275struct TxDesc {
276 u32 status;
277 u32 vlan_tag;
278 u32 buf_addr;
279 u32 buf_Haddr;
280};
281
282struct RxDesc {
283 u32 status;
284 u32 vlan_tag;
285 u32 buf_addr;
286 u32 buf_Haddr;
287};
288
Simon Glassf2acb532015-07-06 16:47:45 -0600289static unsigned char rxdata[RX_BUF_LEN];
290
Thierry Redingbcc8e4d2014-12-09 22:25:25 -0700291#define RTL8169_DESC_SIZE 16
292
293#if ARCH_DMA_MINALIGN > 256
294# define RTL8169_ALIGN ARCH_DMA_MINALIGN
295#else
296# define RTL8169_ALIGN 256
297#endif
298
299/*
300 * Warn if the cache-line size is larger than the descriptor size. In such
301 * cases the driver will likely fail because the CPU needs to flush the cache
302 * when requeuing RX buffers, therefore descriptors written by the hardware
303 * may be discarded.
Thierry Reding209c6482014-12-09 22:25:26 -0700304 *
305 * This can be fixed by defining CONFIG_SYS_NONCACHED_MEMORY which will cause
306 * the driver to allocate descriptors from a pool of non-cached memory.
Thierry Redingbcc8e4d2014-12-09 22:25:25 -0700307 */
308#if RTL8169_DESC_SIZE < ARCH_DMA_MINALIGN
Simon Glassf2acb532015-07-06 16:47:45 -0600309#if !defined(CONFIG_SYS_NONCACHED_MEMORY) && \
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400310 !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_X86)
Thierry Redingbcc8e4d2014-12-09 22:25:25 -0700311#warning cache-line size is larger than descriptor size
312#endif
Thierry Reding209c6482014-12-09 22:25:26 -0700313#endif
wdenka6270482004-04-18 22:03:42 +0000314
Thierry Redingbcc8e4d2014-12-09 22:25:25 -0700315/*
316 * Create a static buffer of size RX_BUF_SZ for each TX Descriptor. All
317 * descriptors point to a part of this buffer.
318 */
319DEFINE_ALIGN_BUFFER(u8, txb, NUM_TX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
320
321/*
322 * Create a static buffer of size RX_BUF_SZ for each RX Descriptor. All
323 * descriptors point to a part of this buffer.
324 */
325DEFINE_ALIGN_BUFFER(u8, rxb, NUM_RX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
wdenka6270482004-04-18 22:03:42 +0000326
327struct rtl8169_private {
Simon Glassf2acb532015-07-06 16:47:45 -0600328 ulong iobase;
wdenka6270482004-04-18 22:03:42 +0000329 void *mmio_addr; /* memory map physical address */
330 int chipset;
331 unsigned long cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
332 unsigned long cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
333 unsigned long dirty_tx;
wdenka6270482004-04-18 22:03:42 +0000334 struct TxDesc *TxDescArray; /* Index of 256-alignment Tx Descriptor buffer */
335 struct RxDesc *RxDescArray; /* Index of 256-alignment Rx Descriptor buffer */
336 unsigned char *RxBufferRings; /* Index of Rx Buffer */
337 unsigned char *RxBufferRing[NUM_RX_DESC]; /* Index of Rx Buffer array */
338 unsigned char *Tx_skbuff[NUM_TX_DESC];
339} tpx;
340
341static struct rtl8169_private *tpc;
342
wdenka6270482004-04-18 22:03:42 +0000343static const unsigned int rtl8169_rx_config =
344 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
345
346static struct pci_device_id supported[] = {
Simon Glassf2acb532015-07-06 16:47:45 -0600347 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167) },
348 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168) },
349 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169) },
wdenka6270482004-04-18 22:03:42 +0000350 {}
351};
352
353void mdio_write(int RegAddr, int value)
354{
355 int i;
356
357 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
358 udelay(1000);
359
360 for (i = 2000; i > 0; i--) {
361 /* Check if the RTL8169 has completed writing to the specified MII register */
362 if (!(RTL_R32(PHYAR) & 0x80000000)) {
363 break;
364 } else {
365 udelay(100);
366 }
367 }
368}
369
370int mdio_read(int RegAddr)
371{
372 int i, value = -1;
373
374 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
375 udelay(1000);
376
377 for (i = 2000; i > 0; i--) {
378 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
379 if (RTL_R32(PHYAR) & 0x80000000) {
380 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
381 break;
382 } else {
383 udelay(100);
384 }
385 }
386 return value;
387}
388
Simon Glassf2acb532015-07-06 16:47:45 -0600389static int rtl8169_init_board(unsigned long dev_iobase, const char *name)
wdenka6270482004-04-18 22:03:42 +0000390{
391 int i;
392 u32 tmp;
393
394#ifdef DEBUG_RTL8169
395 printf ("%s\n", __FUNCTION__);
396#endif
Simon Glassf2acb532015-07-06 16:47:45 -0600397 ioaddr = dev_iobase;
wdenka6270482004-04-18 22:03:42 +0000398
399 /* Soft reset the chip. */
400 RTL_W8(ChipCmd, CmdReset);
401
402 /* Check that the chip has finished the reset. */
403 for (i = 1000; i > 0; i--)
404 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
405 break;
406 else
407 udelay(10);
408
409 /* identify chip attached to board */
410 tmp = RTL_R32(TxConfig);
411 tmp = ((tmp & 0x7c000000) + ((tmp & 0x00800000) << 2)) >> 24;
412
413 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--){
414 if (tmp == rtl_chip_info[i].version) {
415 tpc->chipset = i;
416 goto match;
417 }
418 }
419
420 /* if unknown chip, assume array element #0, original RTL-8169 in this case */
Simon Glassf2acb532015-07-06 16:47:45 -0600421 printf("PCI device %s: unknown chip version, assuming RTL-8169\n",
422 name);
Wolfgang Denk8d541882008-07-10 13:16:09 +0200423 printf("PCI device: TxConfig = 0x%lX\n", (unsigned long) RTL_R32(TxConfig));
wdenka6270482004-04-18 22:03:42 +0000424 tpc->chipset = 0;
425
426match:
427 return 0;
428}
429
Thierry Reding5c1ba962013-09-20 16:03:42 +0200430/*
Thierry Reding209c6482014-12-09 22:25:26 -0700431 * TX and RX descriptors are 16 bytes. This causes problems with the cache
432 * maintenance on CPUs where the cache-line size exceeds the size of these
433 * descriptors. What will happen is that when the driver receives a packet
434 * it will be immediately requeued for the hardware to reuse. The CPU will
435 * therefore need to flush the cache-line containing the descriptor, which
436 * will cause all other descriptors in the same cache-line to be flushed
437 * along with it. If one of those descriptors had been written to by the
438 * device those changes (and the associated packet) will be lost.
439 *
440 * To work around this, we make use of non-cached memory if available. If
441 * descriptors are mapped uncached there's no need to manually flush them
442 * or invalidate them.
443 *
444 * Note that this only applies to descriptors. The packet data buffers do
445 * not have the same constraints since they are 1536 bytes large, so they
446 * are unlikely to share cache-lines.
447 */
448static void *rtl_alloc_descs(unsigned int num)
449{
450 size_t size = num * RTL8169_DESC_SIZE;
451
452#ifdef CONFIG_SYS_NONCACHED_MEMORY
453 return (void *)noncached_alloc(size, RTL8169_ALIGN);
454#else
455 return memalign(RTL8169_ALIGN, size);
456#endif
457}
458
459/*
Thierry Reding5c1ba962013-09-20 16:03:42 +0200460 * Cache maintenance functions. These are simple wrappers around the more
461 * general purpose flush_cache() and invalidate_dcache_range() functions.
462 */
463
464static void rtl_inval_rx_desc(struct RxDesc *desc)
465{
Thierry Reding209c6482014-12-09 22:25:26 -0700466#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding5c1ba962013-09-20 16:03:42 +0200467 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
468 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
469
470 invalidate_dcache_range(start, end);
Thierry Reding209c6482014-12-09 22:25:26 -0700471#endif
Thierry Reding5c1ba962013-09-20 16:03:42 +0200472}
473
474static void rtl_flush_rx_desc(struct RxDesc *desc)
475{
Thierry Reding209c6482014-12-09 22:25:26 -0700476#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding5c1ba962013-09-20 16:03:42 +0200477 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Reding209c6482014-12-09 22:25:26 -0700478#endif
Thierry Reding5c1ba962013-09-20 16:03:42 +0200479}
480
481static void rtl_inval_tx_desc(struct TxDesc *desc)
482{
Thierry Reding209c6482014-12-09 22:25:26 -0700483#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding5c1ba962013-09-20 16:03:42 +0200484 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
485 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
486
487 invalidate_dcache_range(start, end);
Thierry Reding209c6482014-12-09 22:25:26 -0700488#endif
Thierry Reding5c1ba962013-09-20 16:03:42 +0200489}
490
491static void rtl_flush_tx_desc(struct TxDesc *desc)
492{
Thierry Reding209c6482014-12-09 22:25:26 -0700493#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding5c1ba962013-09-20 16:03:42 +0200494 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Reding209c6482014-12-09 22:25:26 -0700495#endif
Thierry Reding5c1ba962013-09-20 16:03:42 +0200496}
497
498static void rtl_inval_buffer(void *buf, size_t size)
499{
500 unsigned long start = (unsigned long)buf & ~(ARCH_DMA_MINALIGN - 1);
501 unsigned long end = ALIGN(start + size, ARCH_DMA_MINALIGN);
502
503 invalidate_dcache_range(start, end);
504}
505
506static void rtl_flush_buffer(void *buf, size_t size)
507{
508 flush_cache((unsigned long)buf, size);
509}
510
wdenka6270482004-04-18 22:03:42 +0000511/**************************************************************************
512RECV - Receive a frame
513***************************************************************************/
Simon Glass86621d42015-11-29 13:18:04 -0700514static int rtl_recv_common(struct udevice *dev, unsigned long dev_iobase,
515 uchar **packetp)
wdenka6270482004-04-18 22:03:42 +0000516{
517 /* return true if there's an ethernet packet ready to read */
518 /* nic->packet should contain data on return */
519 /* nic->packetlen should contain length of data */
520 int cur_rx;
521 int length = 0;
522
523#ifdef DEBUG_RTL8169_RX
524 printf ("%s\n", __FUNCTION__);
525#endif
Simon Glassf2acb532015-07-06 16:47:45 -0600526 ioaddr = dev_iobase;
wdenka6270482004-04-18 22:03:42 +0000527
528 cur_rx = tpc->cur_rx;
Thierry Reding5c1ba962013-09-20 16:03:42 +0200529
530 rtl_inval_rx_desc(&tpc->RxDescArray[cur_rx]);
531
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100532 if ((le32_to_cpu(tpc->RxDescArray[cur_rx].status) & OWNbit) == 0) {
533 if (!(le32_to_cpu(tpc->RxDescArray[cur_rx].status) & RxRES)) {
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100534 length = (int) (le32_to_cpu(tpc->RxDescArray[cur_rx].
535 status) & 0x00001FFF) - 4;
wdenka6270482004-04-18 22:03:42 +0000536
Thierry Reding5c1ba962013-09-20 16:03:42 +0200537 rtl_inval_buffer(tpc->RxBufferRing[cur_rx], length);
wdenka6270482004-04-18 22:03:42 +0000538 memcpy(rxdata, tpc->RxBufferRing[cur_rx], length);
wdenka6270482004-04-18 22:03:42 +0000539
540 if (cur_rx == NUM_RX_DESC - 1)
541 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100542 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000543 else
544 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100545 cpu_to_le32(OWNbit + RX_BUF_SIZE);
Simon Glassf2acb532015-07-06 16:47:45 -0600546 tpc->RxDescArray[cur_rx].buf_addr = cpu_to_le32(
Simon Glass86621d42015-11-29 13:18:04 -0700547 dm_pci_mem_to_phys(dev,
548 (pci_addr_t)(unsigned long)
549 tpc->RxBufferRing[cur_rx]));
Thierry Reding5c1ba962013-09-20 16:03:42 +0200550 rtl_flush_rx_desc(&tpc->RxDescArray[cur_rx]);
Simon Glassf2acb532015-07-06 16:47:45 -0600551 *packetp = rxdata;
wdenka6270482004-04-18 22:03:42 +0000552 } else {
553 puts("Error Rx");
Simon Glassf2acb532015-07-06 16:47:45 -0600554 length = -EIO;
wdenka6270482004-04-18 22:03:42 +0000555 }
556 cur_rx = (cur_rx + 1) % NUM_RX_DESC;
557 tpc->cur_rx = cur_rx;
Simon Glassf2acb532015-07-06 16:47:45 -0600558 return length;
wdenka6270482004-04-18 22:03:42 +0000559
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900560 } else {
561 ushort sts = RTL_R8(IntrStatus);
562 RTL_W8(IntrStatus, sts & ~(TxErr | RxErr | SYSErr));
563 udelay(100); /* wait */
wdenka6270482004-04-18 22:03:42 +0000564 }
565 tpc->cur_rx = cur_rx;
566 return (0); /* initially as this is called to flush the input */
567}
Simon Glassf2acb532015-07-06 16:47:45 -0600568
Simon Glassf2acb532015-07-06 16:47:45 -0600569int rtl8169_eth_recv(struct udevice *dev, int flags, uchar **packetp)
570{
571 struct rtl8169_private *priv = dev_get_priv(dev);
572
Simon Glass86621d42015-11-29 13:18:04 -0700573 return rtl_recv_common(dev, priv->iobase, packetp);
Simon Glassf2acb532015-07-06 16:47:45 -0600574}
wdenka6270482004-04-18 22:03:42 +0000575
576#define HZ 1000
577/**************************************************************************
578SEND - Transmit a frame
579***************************************************************************/
Simon Glass86621d42015-11-29 13:18:04 -0700580static int rtl_send_common(struct udevice *dev, unsigned long dev_iobase,
Simon Glassf2acb532015-07-06 16:47:45 -0600581 void *packet, int length)
wdenka6270482004-04-18 22:03:42 +0000582{
583 /* send the packet to destination */
584
585 u32 to;
586 u8 *ptxb;
587 int entry = tpc->cur_tx % NUM_TX_DESC;
588 u32 len = length;
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100589 int ret;
wdenka6270482004-04-18 22:03:42 +0000590
591#ifdef DEBUG_RTL8169_TX
592 int stime = currticks();
593 printf ("%s\n", __FUNCTION__);
594 printf("sending %d bytes\n", len);
595#endif
596
Simon Glassf2acb532015-07-06 16:47:45 -0600597 ioaddr = dev_iobase;
wdenka6270482004-04-18 22:03:42 +0000598
599 /* point to the current txb incase multiple tx_rings are used */
600 ptxb = tpc->Tx_skbuff[entry * MAX_ETH_FRAME_SIZE];
601 memcpy(ptxb, (char *)packet, (int)length);
602
603 while (len < ETH_ZLEN)
604 ptxb[len++] = '\0';
605
Peter Chubb1b0d36a2016-09-14 01:29:03 +0000606 rtl_flush_buffer(ptxb, ALIGN(len, RTL8169_ALIGN));
607
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900608 tpc->TxDescArray[entry].buf_Haddr = 0;
Simon Glassf2acb532015-07-06 16:47:45 -0600609 tpc->TxDescArray[entry].buf_addr = cpu_to_le32(
Simon Glass86621d42015-11-29 13:18:04 -0700610 dm_pci_mem_to_phys(dev, (pci_addr_t)(unsigned long)ptxb));
wdenka6270482004-04-18 22:03:42 +0000611 if (entry != (NUM_TX_DESC - 1)) {
612 tpc->TxDescArray[entry].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100613 cpu_to_le32((OWNbit | FSbit | LSbit) |
614 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka6270482004-04-18 22:03:42 +0000615 } else {
616 tpc->TxDescArray[entry].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100617 cpu_to_le32((OWNbit | EORbit | FSbit | LSbit) |
618 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka6270482004-04-18 22:03:42 +0000619 }
Thierry Reding5c1ba962013-09-20 16:03:42 +0200620 rtl_flush_tx_desc(&tpc->TxDescArray[entry]);
wdenka6270482004-04-18 22:03:42 +0000621 RTL_W8(TxPoll, 0x40); /* set polling bit */
622
623 tpc->cur_tx++;
624 to = currticks() + TX_TIMEOUT;
Yoshihiro Shimoda4a465662009-02-25 14:27:24 +0900625 do {
Thierry Reding5c1ba962013-09-20 16:03:42 +0200626 rtl_inval_tx_desc(&tpc->TxDescArray[entry]);
Yoshihiro Shimoda4a465662009-02-25 14:27:24 +0900627 } while ((le32_to_cpu(tpc->TxDescArray[entry].status) & OWNbit)
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100628 && (currticks() < to)); /* wait */
wdenka6270482004-04-18 22:03:42 +0000629
630 if (currticks() >= to) {
631#ifdef DEBUG_RTL8169_TX
Thierry Reding20ac8692013-09-20 16:03:41 +0200632 puts("tx timeout/error\n");
633 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000634#endif
Oleksandr Tymoshenko51d22bb2016-07-01 13:22:00 -0700635 ret = -ETIMEDOUT;
wdenka6270482004-04-18 22:03:42 +0000636 } else {
637#ifdef DEBUG_RTL8169_TX
638 puts("tx done\n");
639#endif
Oleksandr Tymoshenko51d22bb2016-07-01 13:22:00 -0700640 ret = 0;
wdenka6270482004-04-18 22:03:42 +0000641 }
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100642 /* Delay to make net console (nc) work properly */
643 udelay(20);
644 return ret;
wdenka6270482004-04-18 22:03:42 +0000645}
646
Simon Glassf2acb532015-07-06 16:47:45 -0600647int rtl8169_eth_send(struct udevice *dev, void *packet, int length)
648{
649 struct rtl8169_private *priv = dev_get_priv(dev);
650
Simon Glass86621d42015-11-29 13:18:04 -0700651 return rtl_send_common(dev, priv->iobase, packet, length);
Simon Glassf2acb532015-07-06 16:47:45 -0600652}
Simon Glassf2acb532015-07-06 16:47:45 -0600653
654static void rtl8169_set_rx_mode(void)
wdenka6270482004-04-18 22:03:42 +0000655{
656 u32 mc_filter[2]; /* Multicast hash filter */
657 int rx_mode;
658 u32 tmp = 0;
659
660#ifdef DEBUG_RTL8169
661 printf ("%s\n", __FUNCTION__);
662#endif
663
664 /* IFF_ALLMULTI */
665 /* Too many to filter perfectly -- accept all multicasts. */
666 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
667 mc_filter[1] = mc_filter[0] = 0xffffffff;
668
669 tmp = rtl8169_rx_config | rx_mode | (RTL_R32(RxConfig) &
670 rtl_chip_info[tpc->chipset].RxConfigMask);
671
672 RTL_W32(RxConfig, tmp);
673 RTL_W32(MAR0 + 0, mc_filter[0]);
674 RTL_W32(MAR0 + 4, mc_filter[1]);
675}
676
Simon Glass86621d42015-11-29 13:18:04 -0700677static void rtl8169_hw_start(struct udevice *dev)
wdenka6270482004-04-18 22:03:42 +0000678{
679 u32 i;
680
681#ifdef DEBUG_RTL8169
682 int stime = currticks();
683 printf ("%s\n", __FUNCTION__);
684#endif
685
686#if 0
687 /* Soft reset the chip. */
688 RTL_W8(ChipCmd, CmdReset);
689
690 /* Check that the chip has finished the reset. */
691 for (i = 1000; i > 0; i--) {
692 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
693 break;
694 else
695 udelay(10);
696 }
697#endif
698
699 RTL_W8(Cfg9346, Cfg9346_Unlock);
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900700
701 /* RTL-8169sb/8110sb or previous version */
702 if (tpc->chipset <= 5)
703 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
704
wdenka6270482004-04-18 22:03:42 +0000705 RTL_W8(EarlyTxThres, EarlyTxThld);
706
707 /* For gigabit rtl8169 */
708 RTL_W16(RxMaxSize, RxPacketMaxSize);
709
710 /* Set Rx Config register */
711 i = rtl8169_rx_config | (RTL_R32(RxConfig) &
712 rtl_chip_info[tpc->chipset].RxConfigMask);
713 RTL_W32(RxConfig, i);
714
715 /* Set DMA burst size and Interframe Gap Time */
716 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
717 (InterFrameGap << TxInterFrameGapShift));
718
719
720 tpc->cur_rx = 0;
721
Simon Glass86621d42015-11-29 13:18:04 -0700722 RTL_W32(TxDescStartAddrLow, dm_pci_mem_to_phys(dev,
Simon Glassf2acb532015-07-06 16:47:45 -0600723 (pci_addr_t)(unsigned long)tpc->TxDescArray));
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900724 RTL_W32(TxDescStartAddrHigh, (unsigned long)0);
Simon Glass86621d42015-11-29 13:18:04 -0700725 RTL_W32(RxDescStartAddrLow, dm_pci_mem_to_phys(
726 dev, (pci_addr_t)(unsigned long)tpc->RxDescArray));
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900727 RTL_W32(RxDescStartAddrHigh, (unsigned long)0);
728
729 /* RTL-8169sc/8110sc or later version */
730 if (tpc->chipset > 5)
731 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
732
wdenka6270482004-04-18 22:03:42 +0000733 RTL_W8(Cfg9346, Cfg9346_Lock);
734 udelay(10);
735
736 RTL_W32(RxMissed, 0);
737
Simon Glassf2acb532015-07-06 16:47:45 -0600738 rtl8169_set_rx_mode();
wdenka6270482004-04-18 22:03:42 +0000739
740 /* no early-rx interrupts */
741 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
742
743#ifdef DEBUG_RTL8169
Thierry Reding20ac8692013-09-20 16:03:41 +0200744 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000745#endif
746}
747
Simon Glass86621d42015-11-29 13:18:04 -0700748static void rtl8169_init_ring(struct udevice *dev)
wdenka6270482004-04-18 22:03:42 +0000749{
750 int i;
751
752#ifdef DEBUG_RTL8169
753 int stime = currticks();
754 printf ("%s\n", __FUNCTION__);
755#endif
756
757 tpc->cur_rx = 0;
758 tpc->cur_tx = 0;
759 tpc->dirty_tx = 0;
760 memset(tpc->TxDescArray, 0x0, NUM_TX_DESC * sizeof(struct TxDesc));
761 memset(tpc->RxDescArray, 0x0, NUM_RX_DESC * sizeof(struct RxDesc));
762
763 for (i = 0; i < NUM_TX_DESC; i++) {
764 tpc->Tx_skbuff[i] = &txb[i];
765 }
766
767 for (i = 0; i < NUM_RX_DESC; i++) {
768 if (i == (NUM_RX_DESC - 1))
769 tpc->RxDescArray[i].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100770 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000771 else
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100772 tpc->RxDescArray[i].status =
773 cpu_to_le32(OWNbit + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000774
775 tpc->RxBufferRing[i] = &rxb[i * RX_BUF_SIZE];
Simon Glass86621d42015-11-29 13:18:04 -0700776 tpc->RxDescArray[i].buf_addr = cpu_to_le32(dm_pci_mem_to_phys(
777 dev, (pci_addr_t)(unsigned long)tpc->RxBufferRing[i]));
Thierry Reding5c1ba962013-09-20 16:03:42 +0200778 rtl_flush_rx_desc(&tpc->RxDescArray[i]);
wdenka6270482004-04-18 22:03:42 +0000779 }
780
781#ifdef DEBUG_RTL8169
Thierry Reding20ac8692013-09-20 16:03:41 +0200782 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000783#endif
784}
785
Stephen Warren9fe7fb52016-04-26 15:29:00 -0600786static void rtl8169_common_start(struct udevice *dev, unsigned char *enetaddr,
787 unsigned long dev_iobase)
wdenka6270482004-04-18 22:03:42 +0000788{
789 int i;
wdenka6270482004-04-18 22:03:42 +0000790
791#ifdef DEBUG_RTL8169
792 int stime = currticks();
793 printf ("%s\n", __FUNCTION__);
794#endif
795
Stephen Warren9fe7fb52016-04-26 15:29:00 -0600796 ioaddr = dev_iobase;
797
Simon Glass86621d42015-11-29 13:18:04 -0700798 rtl8169_init_ring(dev);
799 rtl8169_hw_start(dev);
wdenka6270482004-04-18 22:03:42 +0000800 /* Construct a perfect filter frame with the mac address as first match
801 * and broadcast for all others */
802 for (i = 0; i < 192; i++)
803 txb[i] = 0xFF;
804
Simon Glassf2acb532015-07-06 16:47:45 -0600805 txb[0] = enetaddr[0];
806 txb[1] = enetaddr[1];
807 txb[2] = enetaddr[2];
808 txb[3] = enetaddr[3];
809 txb[4] = enetaddr[4];
810 txb[5] = enetaddr[5];
wdenka6270482004-04-18 22:03:42 +0000811
812#ifdef DEBUG_RTL8169
Thierry Reding20ac8692013-09-20 16:03:41 +0200813 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000814#endif
815}
816
Simon Glassf2acb532015-07-06 16:47:45 -0600817static int rtl8169_eth_start(struct udevice *dev)
818{
Simon Glassfa20e932020-12-03 16:55:20 -0700819 struct eth_pdata *plat = dev_get_plat(dev);
Stephen Warren9fe7fb52016-04-26 15:29:00 -0600820 struct rtl8169_private *priv = dev_get_priv(dev);
Simon Glassf2acb532015-07-06 16:47:45 -0600821
Stephen Warren9fe7fb52016-04-26 15:29:00 -0600822 rtl8169_common_start(dev, plat->enetaddr, priv->iobase);
Simon Glassf2acb532015-07-06 16:47:45 -0600823
824 return 0;
825}
Simon Glassf2acb532015-07-06 16:47:45 -0600826
827static void rtl_halt_common(unsigned long dev_iobase)
wdenka6270482004-04-18 22:03:42 +0000828{
829 int i;
830
831#ifdef DEBUG_RTL8169
832 printf ("%s\n", __FUNCTION__);
833#endif
834
Simon Glassf2acb532015-07-06 16:47:45 -0600835 ioaddr = dev_iobase;
wdenka6270482004-04-18 22:03:42 +0000836
837 /* Stop the chip's Tx and Rx DMA processes. */
838 RTL_W8(ChipCmd, 0x00);
839
840 /* Disable interrupts by clearing the interrupt mask. */
841 RTL_W16(IntrMask, 0x0000);
842
843 RTL_W32(RxMissed, 0);
844
wdenka6270482004-04-18 22:03:42 +0000845 for (i = 0; i < NUM_RX_DESC; i++) {
846 tpc->RxBufferRing[i] = NULL;
847 }
848}
Simon Glassf2acb532015-07-06 16:47:45 -0600849
Simon Glassf2acb532015-07-06 16:47:45 -0600850void rtl8169_eth_stop(struct udevice *dev)
851{
852 struct rtl8169_private *priv = dev_get_priv(dev);
853
854 rtl_halt_common(priv->iobase);
855}
wdenka6270482004-04-18 22:03:42 +0000856
Thierry Redinga02d60f2019-04-16 18:20:29 +0200857static int rtl8169_write_hwaddr(struct udevice *dev)
858{
Simon Glassfa20e932020-12-03 16:55:20 -0700859 struct eth_pdata *plat = dev_get_plat(dev);
Thierry Redinga02d60f2019-04-16 18:20:29 +0200860 unsigned int i;
861
862 RTL_W8(Cfg9346, Cfg9346_Unlock);
863
864 for (i = 0; i < MAC_ADDR_LEN; i++)
865 RTL_W8(MAC0 + i, plat->enetaddr[i]);
866
867 RTL_W8(Cfg9346, Cfg9346_Lock);
868
869 return 0;
870}
Thierry Redinga02d60f2019-04-16 18:20:29 +0200871
wdenka6270482004-04-18 22:03:42 +0000872/**************************************************************************
873INIT - Look for an adapter, this routine's visible to the outside
874***************************************************************************/
875
876#define board_found 1
877#define valid_link 0
Simon Glassf2acb532015-07-06 16:47:45 -0600878static int rtl_init(unsigned long dev_ioaddr, const char *name,
879 unsigned char *enetaddr)
wdenka6270482004-04-18 22:03:42 +0000880{
881 static int board_idx = -1;
wdenka6270482004-04-18 22:03:42 +0000882 int i, rc;
883 int option = -1, Cap10_100 = 0, Cap1000 = 0;
884
885#ifdef DEBUG_RTL8169
886 printf ("%s\n", __FUNCTION__);
887#endif
Simon Glassf2acb532015-07-06 16:47:45 -0600888 ioaddr = dev_ioaddr;
wdenka6270482004-04-18 22:03:42 +0000889
890 board_idx++;
891
wdenka6270482004-04-18 22:03:42 +0000892 /* point to private storage */
893 tpc = &tpx;
894
Simon Glassf2acb532015-07-06 16:47:45 -0600895 rc = rtl8169_init_board(ioaddr, name);
wdenka6270482004-04-18 22:03:42 +0000896 if (rc)
897 return rc;
898
899 /* Get MAC address. FIXME: read EEPROM */
900 for (i = 0; i < MAC_ADDR_LEN; i++)
Simon Glassf2acb532015-07-06 16:47:45 -0600901 enetaddr[i] = RTL_R8(MAC0 + i);
wdenka6270482004-04-18 22:03:42 +0000902
903#ifdef DEBUG_RTL8169
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900904 printf("chipset = %d\n", tpc->chipset);
wdenka6270482004-04-18 22:03:42 +0000905 printf("MAC Address");
906 for (i = 0; i < MAC_ADDR_LEN; i++)
Simon Glassf2acb532015-07-06 16:47:45 -0600907 printf(":%02x", enetaddr[i]);
wdenka6270482004-04-18 22:03:42 +0000908 putc('\n');
909#endif
910
911#ifdef DEBUG_RTL8169
912 /* Print out some hardware info */
Simon Glassf2acb532015-07-06 16:47:45 -0600913 printf("%s: at ioaddr 0x%lx\n", name, ioaddr);
wdenka6270482004-04-18 22:03:42 +0000914#endif
915
916 /* if TBI is not endbled */
917 if (!(RTL_R8(PHYstatus) & TBI_Enable)) {
918 int val = mdio_read(PHY_AUTO_NEGO_REG);
919
920 option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx];
921 /* Force RTL8169 in 10/100/1000 Full/Half mode. */
922 if (option > 0) {
923#ifdef DEBUG_RTL8169
Bin Mengdbb099f2016-03-17 23:27:44 -0700924 printf("%s: Force-mode Enabled.\n", name);
wdenka6270482004-04-18 22:03:42 +0000925#endif
926 Cap10_100 = 0, Cap1000 = 0;
927 switch (option) {
928 case _10_Half:
929 Cap10_100 = PHY_Cap_10_Half;
930 Cap1000 = PHY_Cap_Null;
931 break;
932 case _10_Full:
933 Cap10_100 = PHY_Cap_10_Full;
934 Cap1000 = PHY_Cap_Null;
935 break;
936 case _100_Half:
937 Cap10_100 = PHY_Cap_100_Half;
938 Cap1000 = PHY_Cap_Null;
939 break;
940 case _100_Full:
941 Cap10_100 = PHY_Cap_100_Full;
942 Cap1000 = PHY_Cap_Null;
943 break;
944 case _1000_Full:
945 Cap10_100 = PHY_Cap_Null;
946 Cap1000 = PHY_Cap_1000_Full;
947 break;
948 default:
949 break;
950 }
951 mdio_write(PHY_AUTO_NEGO_REG, Cap10_100 | (val & 0x1F)); /* leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
952 mdio_write(PHY_1000_CTRL_REG, Cap1000);
953 } else {
954#ifdef DEBUG_RTL8169
955 printf("%s: Auto-negotiation Enabled.\n",
Bin Mengdbb099f2016-03-17 23:27:44 -0700956 name);
wdenka6270482004-04-18 22:03:42 +0000957#endif
958 /* enable 10/100 Full/Half Mode, leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
959 mdio_write(PHY_AUTO_NEGO_REG,
960 PHY_Cap_10_Half | PHY_Cap_10_Full |
961 PHY_Cap_100_Half | PHY_Cap_100_Full |
962 (val & 0x1F));
963
964 /* enable 1000 Full Mode */
965 mdio_write(PHY_1000_CTRL_REG, PHY_Cap_1000_Full);
966
967 }
968
969 /* Enable auto-negotiation and restart auto-nigotiation */
970 mdio_write(PHY_CTRL_REG,
971 PHY_Enable_Auto_Nego | PHY_Restart_Auto_Nego);
972 udelay(100);
973
974 /* wait for auto-negotiation process */
975 for (i = 10000; i > 0; i--) {
976 /* check if auto-negotiation complete */
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100977 if (mdio_read(PHY_STAT_REG) & PHY_Auto_Nego_Comp) {
wdenka6270482004-04-18 22:03:42 +0000978 udelay(100);
979 option = RTL_R8(PHYstatus);
980 if (option & _1000bpsF) {
981#ifdef DEBUG_RTL8169
982 printf("%s: 1000Mbps Full-duplex operation.\n",
Bin Mengdbb099f2016-03-17 23:27:44 -0700983 name);
wdenka6270482004-04-18 22:03:42 +0000984#endif
985 } else {
986#ifdef DEBUG_RTL8169
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100987 printf("%s: %sMbps %s-duplex operation.\n",
Bin Mengdbb099f2016-03-17 23:27:44 -0700988 name,
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100989 (option & _100bps) ? "100" :
990 "10",
991 (option & FullDup) ? "Full" :
992 "Half");
wdenka6270482004-04-18 22:03:42 +0000993#endif
994 }
995 break;
996 } else {
997 udelay(100);
998 }
999 } /* end for-loop to wait for auto-negotiation process */
1000
1001 } else {
1002 udelay(100);
1003#ifdef DEBUG_RTL8169
1004 printf
1005 ("%s: 1000Mbps Full-duplex operation, TBI Link %s!\n",
Bin Mengdbb099f2016-03-17 23:27:44 -07001006 name,
wdenka6270482004-04-18 22:03:42 +00001007 (RTL_R32(TBICSR) & TBILinkOK) ? "OK" : "Failed");
1008#endif
1009 }
1010
Thierry Reding209c6482014-12-09 22:25:26 -07001011
1012 tpc->RxDescArray = rtl_alloc_descs(NUM_RX_DESC);
1013 if (!tpc->RxDescArray)
1014 return -ENOMEM;
Thierry Redingbcc8e4d2014-12-09 22:25:25 -07001015
Thierry Reding209c6482014-12-09 22:25:26 -07001016 tpc->TxDescArray = rtl_alloc_descs(NUM_TX_DESC);
1017 if (!tpc->TxDescArray)
1018 return -ENOMEM;
1019
1020 return 0;
wdenka6270482004-04-18 22:03:42 +00001021}
Simon Glassf2acb532015-07-06 16:47:45 -06001022
Simon Glassf2acb532015-07-06 16:47:45 -06001023static int rtl8169_eth_probe(struct udevice *dev)
1024{
Simon Glassb75b15b2020-12-03 16:55:23 -07001025 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
Simon Glassf2acb532015-07-06 16:47:45 -06001026 struct rtl8169_private *priv = dev_get_priv(dev);
Simon Glassfa20e932020-12-03 16:55:20 -07001027 struct eth_pdata *plat = dev_get_plat(dev);
Simon Glassf2acb532015-07-06 16:47:45 -06001028 u32 iobase;
1029 int region;
1030 int ret;
1031
1032 debug("rtl8169: REALTEK RTL8169 @0x%x\n", iobase);
1033 switch (pplat->device) {
1034 case 0x8168:
1035 region = 2;
1036 break;
1037 default:
1038 region = 1;
1039 break;
1040 }
Simon Glass86621d42015-11-29 13:18:04 -07001041 dm_pci_read_config32(dev, PCI_BASE_ADDRESS_0 + region * 4, &iobase);
Simon Glassf2acb532015-07-06 16:47:45 -06001042 iobase &= ~0xf;
Simon Glass86621d42015-11-29 13:18:04 -07001043 priv->iobase = (int)dm_pci_mem_to_phys(dev, iobase);
Simon Glassf2acb532015-07-06 16:47:45 -06001044
1045 ret = rtl_init(priv->iobase, dev->name, plat->enetaddr);
1046 if (ret < 0) {
1047 printf(pr_fmt("failed to initialize card: %d\n"), ret);
1048 return ret;
1049 }
1050
Tom Warrenf9f4a1c2020-03-26 15:59:13 -07001051 /*
1052 * WAR for DHCP failure after rebooting from kernel.
1053 * Clear RxDv_Gated_En bit which was set by kernel driver.
1054 * Without this, U-Boot can't get an IP via DHCP.
1055 * Register (FuncEvent, aka MISC) and RXDV_GATED_EN bit are from
1056 * the r8169.c kernel driver.
1057 */
1058
1059 u32 val = RTL_R32(FuncEvent);
1060 debug("%s: FuncEvent/Misc (0xF0) = 0x%08X\n", __func__, val);
1061 val &= ~RxDv_Gated_En;
1062 RTL_W32(FuncEvent, val);
1063
Simon Glassf2acb532015-07-06 16:47:45 -06001064 return 0;
1065}
1066
1067static const struct eth_ops rtl8169_eth_ops = {
1068 .start = rtl8169_eth_start,
1069 .send = rtl8169_eth_send,
1070 .recv = rtl8169_eth_recv,
1071 .stop = rtl8169_eth_stop,
Thierry Redinga02d60f2019-04-16 18:20:29 +02001072 .write_hwaddr = rtl8169_write_hwaddr,
Simon Glassf2acb532015-07-06 16:47:45 -06001073};
1074
1075static const struct udevice_id rtl8169_eth_ids[] = {
1076 { .compatible = "realtek,rtl8169" },
1077 { }
1078};
1079
1080U_BOOT_DRIVER(eth_rtl8169) = {
1081 .name = "eth_rtl8169",
1082 .id = UCLASS_ETH,
1083 .of_match = rtl8169_eth_ids,
1084 .probe = rtl8169_eth_probe,
1085 .ops = &rtl8169_eth_ops,
Simon Glass8a2b47f2020-12-03 16:55:17 -07001086 .priv_auto = sizeof(struct rtl8169_private),
Simon Glass71fa5b42020-12-03 16:55:18 -07001087 .plat_auto = sizeof(struct eth_pdata),
Simon Glassf2acb532015-07-06 16:47:45 -06001088};
1089
1090U_BOOT_PCI_DEVICE(eth_rtl8169, supported);