blob: edcae88a3fc5be371da5e4fc91066a97685e82e4 [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 */
Simon Glass63334482019-11-14 12:57:39 -070042#include <cpu_func.h>
Simon Glassf2acb532015-07-06 16:47:45 -060043#include <dm.h>
Thierry Reding209c6482014-12-09 22:25:26 -070044#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060045#include <log.h>
wdenka6270482004-04-18 22:03:42 +000046#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060047#include <memalign.h>
wdenka6270482004-04-18 22:03:42 +000048#include <net.h>
Simon Glass274e0b02020-05-10 11:39:56 -060049#include <asm/cache.h>
wdenka6270482004-04-18 22:03:42 +000050#include <asm/io.h>
51#include <pci.h>
Simon Glassdbd79542020-05-10 11:40:11 -060052#include <linux/delay.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060053#include <linux/printk.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 */
Minda Chen94aa9632023-07-20 19:37:26 +080099#define RTL_W8(reg, val8) writeb((val8), (void *)(ioaddr + (reg)))
100#define RTL_W16(reg, val16) writew((val16), (void *)(ioaddr + (reg)))
101#define RTL_W32(reg, val32) writel((val32), (void *)(ioaddr + (reg)))
102#define RTL_R8(reg) readb((void *)(ioaddr + (reg)))
103#define RTL_R16(reg) readw((void *)(ioaddr + (reg)))
104#define RTL_R32(reg) readl((void *)(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,
Eugen Hristev07b12d92023-04-25 16:06:58 +0300121 TxPoll_8169 = 0x38,
122 IntrMask_8169 = 0x3C,
123 IntrStatus_8169 = 0x3E,
wdenka6270482004-04-18 22:03:42 +0000124 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
Eugen Hristev07b12d92023-04-25 16:06:58 +0300151enum RTL8125_registers {
152 IntrMask_8125 = 0x38,
153 IntrStatus_8125 = 0x3C,
154 TxPoll_8125 = 0x90,
155};
156
wdenka6270482004-04-18 22:03:42 +0000157enum RTL8169_register_content {
158 /*InterruptStatusBits */
159 SYSErr = 0x8000,
160 PCSTimeout = 0x4000,
161 SWInt = 0x0100,
162 TxDescUnavail = 0x80,
163 RxFIFOOver = 0x40,
164 RxUnderrun = 0x20,
165 RxOverflow = 0x10,
166 TxErr = 0x08,
167 TxOK = 0x04,
168 RxErr = 0x02,
169 RxOK = 0x01,
170
171 /*RxStatusDesc */
172 RxRES = 0x00200000,
173 RxCRC = 0x00080000,
174 RxRUNT = 0x00100000,
175 RxRWT = 0x00400000,
176
177 /*ChipCmdBits */
178 CmdReset = 0x10,
179 CmdRxEnb = 0x08,
180 CmdTxEnb = 0x04,
181 RxBufEmpty = 0x01,
182
183 /*Cfg9346Bits */
184 Cfg9346_Lock = 0x00,
185 Cfg9346_Unlock = 0xC0,
186
187 /*rx_mode_bits */
188 AcceptErr = 0x20,
189 AcceptRunt = 0x10,
190 AcceptBroadcast = 0x08,
191 AcceptMulticast = 0x04,
192 AcceptMyPhys = 0x02,
193 AcceptAllPhys = 0x01,
194
195 /*RxConfigBits */
196 RxCfgFIFOShift = 13,
197 RxCfgDMAShift = 8,
198
199 /*TxConfigBits */
200 TxInterFrameGapShift = 24,
201 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
202
203 /*rtl8169_PHYstatus */
204 TBI_Enable = 0x80,
205 TxFlowCtrl = 0x40,
206 RxFlowCtrl = 0x20,
207 _1000bpsF = 0x10,
208 _100bps = 0x08,
209 _10bps = 0x04,
210 LinkStatus = 0x02,
211 FullDup = 0x01,
212
213 /*GIGABIT_PHY_registers */
214 PHY_CTRL_REG = 0,
215 PHY_STAT_REG = 1,
216 PHY_AUTO_NEGO_REG = 4,
217 PHY_1000_CTRL_REG = 9,
218
219 /*GIGABIT_PHY_REG_BIT */
220 PHY_Restart_Auto_Nego = 0x0200,
221 PHY_Enable_Auto_Nego = 0x1000,
222
223 /* PHY_STAT_REG = 1; */
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100224 PHY_Auto_Nego_Comp = 0x0020,
wdenka6270482004-04-18 22:03:42 +0000225
226 /* PHY_AUTO_NEGO_REG = 4; */
227 PHY_Cap_10_Half = 0x0020,
228 PHY_Cap_10_Full = 0x0040,
229 PHY_Cap_100_Half = 0x0080,
230 PHY_Cap_100_Full = 0x0100,
231
232 /* PHY_1000_CTRL_REG = 9; */
233 PHY_Cap_1000_Full = 0x0200,
234
235 PHY_Cap_Null = 0x0,
236
237 /*_MediaType*/
238 _10_Half = 0x01,
239 _10_Full = 0x02,
240 _100_Half = 0x04,
241 _100_Full = 0x08,
242 _1000_Full = 0x10,
243
244 /*_TBICSRBit*/
245 TBILinkOK = 0x02000000,
Tom Warrenf9f4a1c2020-03-26 15:59:13 -0700246
247 /* FuncEvent/Misc */
248 RxDv_Gated_En = 0x80000,
wdenka6270482004-04-18 22:03:42 +0000249};
250
251static struct {
252 const char *name;
253 u8 version; /* depend on RTL8169 docs */
254 u32 RxConfigMask; /* should clear the bits supported by this chip */
255} rtl_chip_info[] = {
256 {"RTL-8169", 0x00, 0xff7e1880,},
257 {"RTL-8169", 0x04, 0xff7e1880,},
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900258 {"RTL-8169", 0x00, 0xff7e1880,},
259 {"RTL-8169s/8110s", 0x02, 0xff7e1880,},
260 {"RTL-8169s/8110s", 0x04, 0xff7e1880,},
261 {"RTL-8169sb/8110sb", 0x10, 0xff7e1880,},
262 {"RTL-8169sc/8110sc", 0x18, 0xff7e1880,},
263 {"RTL-8168b/8111sb", 0x30, 0xff7e1880,},
264 {"RTL-8168b/8111sb", 0x38, 0xff7e1880,},
Thierry Reding64c5e232019-09-11 19:19:06 +0200265 {"RTL-8168c/8111c", 0x3c, 0xff7e1880,},
Thierry Reding433f3122013-09-20 16:03:43 +0200266 {"RTL-8168d/8111d", 0x28, 0xff7e1880,},
Thierry Reding625bcbe2013-09-20 16:03:44 +0200267 {"RTL-8168evl/8111evl", 0x2e, 0xff7e1880,},
Thierry Reding93428552014-12-09 22:25:27 -0700268 {"RTL-8168/8111g", 0x4c, 0xff7e1880,},
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900269 {"RTL-8101e", 0x34, 0xff7e1880,},
270 {"RTL-8100e", 0x32, 0xff7e1880,},
Thierry Reding6137e412019-04-16 18:20:30 +0200271 {"RTL-8168h/8111h", 0x54, 0xff7e1880,},
Eugen Hristev07b12d92023-04-25 16:06:58 +0300272 {"RTL-8125B", 0x64, 0xff7e1880,},
wdenka6270482004-04-18 22:03:42 +0000273};
274
275enum _DescStatusBit {
276 OWNbit = 0x80000000,
277 EORbit = 0x40000000,
278 FSbit = 0x20000000,
279 LSbit = 0x10000000,
280};
281
282struct TxDesc {
283 u32 status;
284 u32 vlan_tag;
285 u32 buf_addr;
286 u32 buf_Haddr;
287};
288
289struct RxDesc {
290 u32 status;
291 u32 vlan_tag;
292 u32 buf_addr;
293 u32 buf_Haddr;
294};
295
Simon Glassf2acb532015-07-06 16:47:45 -0600296static unsigned char rxdata[RX_BUF_LEN];
297
Thierry Redingbcc8e4d2014-12-09 22:25:25 -0700298#define RTL8169_DESC_SIZE 16
299
300#if ARCH_DMA_MINALIGN > 256
301# define RTL8169_ALIGN ARCH_DMA_MINALIGN
302#else
303# define RTL8169_ALIGN 256
304#endif
305
306/*
307 * Warn if the cache-line size is larger than the descriptor size. In such
308 * cases the driver will likely fail because the CPU needs to flush the cache
309 * when requeuing RX buffers, therefore descriptors written by the hardware
310 * may be discarded.
Thierry Reding209c6482014-12-09 22:25:26 -0700311 *
312 * This can be fixed by defining CONFIG_SYS_NONCACHED_MEMORY which will cause
313 * the driver to allocate descriptors from a pool of non-cached memory.
Minda Chend2387262023-07-20 19:37:27 +0800314 *
315 * Hardware maintain D-cache coherency in RISC-V architecture.
Thierry Redingbcc8e4d2014-12-09 22:25:25 -0700316 */
317#if RTL8169_DESC_SIZE < ARCH_DMA_MINALIGN
Simon Glassf2acb532015-07-06 16:47:45 -0600318#if !defined(CONFIG_SYS_NONCACHED_MEMORY) && \
Minda Chend2387262023-07-20 19:37:27 +0800319 !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_X86) && !defined(CONFIG_RISCV)
Thierry Redingbcc8e4d2014-12-09 22:25:25 -0700320#warning cache-line size is larger than descriptor size
321#endif
Thierry Reding209c6482014-12-09 22:25:26 -0700322#endif
wdenka6270482004-04-18 22:03:42 +0000323
Thierry Redingbcc8e4d2014-12-09 22:25:25 -0700324/*
325 * Create a static buffer of size RX_BUF_SZ for each TX Descriptor. All
326 * descriptors point to a part of this buffer.
327 */
328DEFINE_ALIGN_BUFFER(u8, txb, NUM_TX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
329
330/*
331 * Create a static buffer of size RX_BUF_SZ for each RX Descriptor. All
332 * descriptors point to a part of this buffer.
333 */
334DEFINE_ALIGN_BUFFER(u8, rxb, NUM_RX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
wdenka6270482004-04-18 22:03:42 +0000335
336struct rtl8169_private {
Simon Glassf2acb532015-07-06 16:47:45 -0600337 ulong iobase;
wdenka6270482004-04-18 22:03:42 +0000338 void *mmio_addr; /* memory map physical address */
339 int chipset;
340 unsigned long cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
341 unsigned long cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
342 unsigned long dirty_tx;
wdenka6270482004-04-18 22:03:42 +0000343 struct TxDesc *TxDescArray; /* Index of 256-alignment Tx Descriptor buffer */
344 struct RxDesc *RxDescArray; /* Index of 256-alignment Rx Descriptor buffer */
345 unsigned char *RxBufferRings; /* Index of Rx Buffer */
346 unsigned char *RxBufferRing[NUM_RX_DESC]; /* Index of Rx Buffer array */
347 unsigned char *Tx_skbuff[NUM_TX_DESC];
348} tpx;
349
350static struct rtl8169_private *tpc;
351
wdenka6270482004-04-18 22:03:42 +0000352static const unsigned int rtl8169_rx_config =
353 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
354
355static struct pci_device_id supported[] = {
Minda Chenbcb96bd2023-07-20 19:37:28 +0800356 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8125) },
357 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8161) },
Simon Glassf2acb532015-07-06 16:47:45 -0600358 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167) },
359 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168) },
360 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169) },
wdenka6270482004-04-18 22:03:42 +0000361 {}
362};
363
364void mdio_write(int RegAddr, int value)
365{
366 int i;
367
368 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
369 udelay(1000);
370
371 for (i = 2000; i > 0; i--) {
372 /* Check if the RTL8169 has completed writing to the specified MII register */
373 if (!(RTL_R32(PHYAR) & 0x80000000)) {
374 break;
375 } else {
376 udelay(100);
377 }
378 }
379}
380
381int mdio_read(int RegAddr)
382{
383 int i, value = -1;
384
385 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
386 udelay(1000);
387
388 for (i = 2000; i > 0; i--) {
389 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
390 if (RTL_R32(PHYAR) & 0x80000000) {
391 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
392 break;
393 } else {
394 udelay(100);
395 }
396 }
397 return value;
398}
399
Simon Glassf2acb532015-07-06 16:47:45 -0600400static int rtl8169_init_board(unsigned long dev_iobase, const char *name)
wdenka6270482004-04-18 22:03:42 +0000401{
402 int i;
403 u32 tmp;
404
405#ifdef DEBUG_RTL8169
406 printf ("%s\n", __FUNCTION__);
407#endif
Simon Glassf2acb532015-07-06 16:47:45 -0600408 ioaddr = dev_iobase;
wdenka6270482004-04-18 22:03:42 +0000409
410 /* Soft reset the chip. */
411 RTL_W8(ChipCmd, CmdReset);
412
413 /* Check that the chip has finished the reset. */
414 for (i = 1000; i > 0; i--)
415 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
416 break;
417 else
418 udelay(10);
419
420 /* identify chip attached to board */
421 tmp = RTL_R32(TxConfig);
422 tmp = ((tmp & 0x7c000000) + ((tmp & 0x00800000) << 2)) >> 24;
423
424 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--){
425 if (tmp == rtl_chip_info[i].version) {
426 tpc->chipset = i;
427 goto match;
428 }
429 }
430
431 /* if unknown chip, assume array element #0, original RTL-8169 in this case */
Simon Glassf2acb532015-07-06 16:47:45 -0600432 printf("PCI device %s: unknown chip version, assuming RTL-8169\n",
433 name);
Wolfgang Denk8d541882008-07-10 13:16:09 +0200434 printf("PCI device: TxConfig = 0x%lX\n", (unsigned long) RTL_R32(TxConfig));
wdenka6270482004-04-18 22:03:42 +0000435 tpc->chipset = 0;
436
437match:
438 return 0;
439}
440
Thierry Reding5c1ba962013-09-20 16:03:42 +0200441/*
Thierry Reding209c6482014-12-09 22:25:26 -0700442 * TX and RX descriptors are 16 bytes. This causes problems with the cache
443 * maintenance on CPUs where the cache-line size exceeds the size of these
444 * descriptors. What will happen is that when the driver receives a packet
445 * it will be immediately requeued for the hardware to reuse. The CPU will
446 * therefore need to flush the cache-line containing the descriptor, which
447 * will cause all other descriptors in the same cache-line to be flushed
448 * along with it. If one of those descriptors had been written to by the
449 * device those changes (and the associated packet) will be lost.
450 *
451 * To work around this, we make use of non-cached memory if available. If
452 * descriptors are mapped uncached there's no need to manually flush them
453 * or invalidate them.
454 *
455 * Note that this only applies to descriptors. The packet data buffers do
456 * not have the same constraints since they are 1536 bytes large, so they
457 * are unlikely to share cache-lines.
458 */
459static void *rtl_alloc_descs(unsigned int num)
460{
461 size_t size = num * RTL8169_DESC_SIZE;
462
463#ifdef CONFIG_SYS_NONCACHED_MEMORY
464 return (void *)noncached_alloc(size, RTL8169_ALIGN);
465#else
466 return memalign(RTL8169_ALIGN, size);
467#endif
468}
469
470/*
Thierry Reding5c1ba962013-09-20 16:03:42 +0200471 * Cache maintenance functions. These are simple wrappers around the more
472 * general purpose flush_cache() and invalidate_dcache_range() functions.
473 */
474
475static void rtl_inval_rx_desc(struct RxDesc *desc)
476{
Thierry Reding209c6482014-12-09 22:25:26 -0700477#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding5c1ba962013-09-20 16:03:42 +0200478 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
479 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
480
481 invalidate_dcache_range(start, end);
Thierry Reding209c6482014-12-09 22:25:26 -0700482#endif
Thierry Reding5c1ba962013-09-20 16:03:42 +0200483}
484
485static void rtl_flush_rx_desc(struct RxDesc *desc)
486{
Thierry Reding209c6482014-12-09 22:25:26 -0700487#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding5c1ba962013-09-20 16:03:42 +0200488 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Reding209c6482014-12-09 22:25:26 -0700489#endif
Thierry Reding5c1ba962013-09-20 16:03:42 +0200490}
491
492static void rtl_inval_tx_desc(struct TxDesc *desc)
493{
Thierry Reding209c6482014-12-09 22:25:26 -0700494#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding5c1ba962013-09-20 16:03:42 +0200495 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
496 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
497
498 invalidate_dcache_range(start, end);
Thierry Reding209c6482014-12-09 22:25:26 -0700499#endif
Thierry Reding5c1ba962013-09-20 16:03:42 +0200500}
501
502static void rtl_flush_tx_desc(struct TxDesc *desc)
503{
Thierry Reding209c6482014-12-09 22:25:26 -0700504#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding5c1ba962013-09-20 16:03:42 +0200505 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Reding209c6482014-12-09 22:25:26 -0700506#endif
Thierry Reding5c1ba962013-09-20 16:03:42 +0200507}
508
509static void rtl_inval_buffer(void *buf, size_t size)
510{
511 unsigned long start = (unsigned long)buf & ~(ARCH_DMA_MINALIGN - 1);
512 unsigned long end = ALIGN(start + size, ARCH_DMA_MINALIGN);
513
514 invalidate_dcache_range(start, end);
515}
516
517static void rtl_flush_buffer(void *buf, size_t size)
518{
519 flush_cache((unsigned long)buf, size);
520}
521
wdenka6270482004-04-18 22:03:42 +0000522/**************************************************************************
523RECV - Receive a frame
524***************************************************************************/
Simon Glass86621d42015-11-29 13:18:04 -0700525static int rtl_recv_common(struct udevice *dev, unsigned long dev_iobase,
526 uchar **packetp)
wdenka6270482004-04-18 22:03:42 +0000527{
528 /* return true if there's an ethernet packet ready to read */
529 /* nic->packet should contain data on return */
530 /* nic->packetlen should contain length of data */
Eugen Hristev07b12d92023-04-25 16:06:58 +0300531 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
wdenka6270482004-04-18 22:03:42 +0000532 int cur_rx;
533 int length = 0;
534
535#ifdef DEBUG_RTL8169_RX
536 printf ("%s\n", __FUNCTION__);
537#endif
Simon Glassf2acb532015-07-06 16:47:45 -0600538 ioaddr = dev_iobase;
wdenka6270482004-04-18 22:03:42 +0000539
540 cur_rx = tpc->cur_rx;
Thierry Reding5c1ba962013-09-20 16:03:42 +0200541
542 rtl_inval_rx_desc(&tpc->RxDescArray[cur_rx]);
543
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100544 if ((le32_to_cpu(tpc->RxDescArray[cur_rx].status) & OWNbit) == 0) {
545 if (!(le32_to_cpu(tpc->RxDescArray[cur_rx].status) & RxRES)) {
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100546 length = (int) (le32_to_cpu(tpc->RxDescArray[cur_rx].
547 status) & 0x00001FFF) - 4;
wdenka6270482004-04-18 22:03:42 +0000548
Thierry Reding5c1ba962013-09-20 16:03:42 +0200549 rtl_inval_buffer(tpc->RxBufferRing[cur_rx], length);
wdenka6270482004-04-18 22:03:42 +0000550 memcpy(rxdata, tpc->RxBufferRing[cur_rx], length);
wdenka6270482004-04-18 22:03:42 +0000551
552 if (cur_rx == NUM_RX_DESC - 1)
553 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100554 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000555 else
556 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100557 cpu_to_le32(OWNbit + RX_BUF_SIZE);
Simon Glassf2acb532015-07-06 16:47:45 -0600558 tpc->RxDescArray[cur_rx].buf_addr = cpu_to_le32(
Simon Glass86621d42015-11-29 13:18:04 -0700559 dm_pci_mem_to_phys(dev,
560 (pci_addr_t)(unsigned long)
561 tpc->RxBufferRing[cur_rx]));
Thierry Reding5c1ba962013-09-20 16:03:42 +0200562 rtl_flush_rx_desc(&tpc->RxDescArray[cur_rx]);
Simon Glassf2acb532015-07-06 16:47:45 -0600563 *packetp = rxdata;
wdenka6270482004-04-18 22:03:42 +0000564 } else {
565 puts("Error Rx");
Simon Glassf2acb532015-07-06 16:47:45 -0600566 length = -EIO;
wdenka6270482004-04-18 22:03:42 +0000567 }
568 cur_rx = (cur_rx + 1) % NUM_RX_DESC;
569 tpc->cur_rx = cur_rx;
Simon Glassf2acb532015-07-06 16:47:45 -0600570 return length;
wdenka6270482004-04-18 22:03:42 +0000571
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900572 } else {
Eugen Hristev07b12d92023-04-25 16:06:58 +0300573 u32 IntrStatus = IntrStatus_8169;
574
575 if (pplat->device == 0x8125)
576 IntrStatus = IntrStatus_8125;
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900577 ushort sts = RTL_R8(IntrStatus);
578 RTL_W8(IntrStatus, sts & ~(TxErr | RxErr | SYSErr));
579 udelay(100); /* wait */
wdenka6270482004-04-18 22:03:42 +0000580 }
581 tpc->cur_rx = cur_rx;
582 return (0); /* initially as this is called to flush the input */
583}
Simon Glassf2acb532015-07-06 16:47:45 -0600584
Simon Glassf2acb532015-07-06 16:47:45 -0600585int rtl8169_eth_recv(struct udevice *dev, int flags, uchar **packetp)
586{
587 struct rtl8169_private *priv = dev_get_priv(dev);
588
Simon Glass86621d42015-11-29 13:18:04 -0700589 return rtl_recv_common(dev, priv->iobase, packetp);
Simon Glassf2acb532015-07-06 16:47:45 -0600590}
wdenka6270482004-04-18 22:03:42 +0000591
592#define HZ 1000
593/**************************************************************************
594SEND - Transmit a frame
595***************************************************************************/
Simon Glass86621d42015-11-29 13:18:04 -0700596static int rtl_send_common(struct udevice *dev, unsigned long dev_iobase,
Simon Glassf2acb532015-07-06 16:47:45 -0600597 void *packet, int length)
wdenka6270482004-04-18 22:03:42 +0000598{
599 /* send the packet to destination */
600
Eugen Hristev07b12d92023-04-25 16:06:58 +0300601 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
wdenka6270482004-04-18 22:03:42 +0000602 u32 to;
603 u8 *ptxb;
604 int entry = tpc->cur_tx % NUM_TX_DESC;
605 u32 len = length;
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100606 int ret;
wdenka6270482004-04-18 22:03:42 +0000607
608#ifdef DEBUG_RTL8169_TX
609 int stime = currticks();
610 printf ("%s\n", __FUNCTION__);
611 printf("sending %d bytes\n", len);
612#endif
613
Simon Glassf2acb532015-07-06 16:47:45 -0600614 ioaddr = dev_iobase;
wdenka6270482004-04-18 22:03:42 +0000615
616 /* point to the current txb incase multiple tx_rings are used */
617 ptxb = tpc->Tx_skbuff[entry * MAX_ETH_FRAME_SIZE];
618 memcpy(ptxb, (char *)packet, (int)length);
619
620 while (len < ETH_ZLEN)
621 ptxb[len++] = '\0';
622
Peter Chubb1b0d36a2016-09-14 01:29:03 +0000623 rtl_flush_buffer(ptxb, ALIGN(len, RTL8169_ALIGN));
624
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900625 tpc->TxDescArray[entry].buf_Haddr = 0;
Simon Glassf2acb532015-07-06 16:47:45 -0600626 tpc->TxDescArray[entry].buf_addr = cpu_to_le32(
Simon Glass86621d42015-11-29 13:18:04 -0700627 dm_pci_mem_to_phys(dev, (pci_addr_t)(unsigned long)ptxb));
wdenka6270482004-04-18 22:03:42 +0000628 if (entry != (NUM_TX_DESC - 1)) {
629 tpc->TxDescArray[entry].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100630 cpu_to_le32((OWNbit | FSbit | LSbit) |
631 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka6270482004-04-18 22:03:42 +0000632 } else {
633 tpc->TxDescArray[entry].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100634 cpu_to_le32((OWNbit | EORbit | FSbit | LSbit) |
635 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka6270482004-04-18 22:03:42 +0000636 }
Thierry Reding5c1ba962013-09-20 16:03:42 +0200637 rtl_flush_tx_desc(&tpc->TxDescArray[entry]);
Eugen Hristev07b12d92023-04-25 16:06:58 +0300638 if (pplat->device == 0x8125)
639 RTL_W8(TxPoll_8125, 0x1); /* set polling bit */
640 else
641 RTL_W8(TxPoll_8169, 0x40); /* set polling bit */
wdenka6270482004-04-18 22:03:42 +0000642
643 tpc->cur_tx++;
644 to = currticks() + TX_TIMEOUT;
Yoshihiro Shimoda4a465662009-02-25 14:27:24 +0900645 do {
Thierry Reding5c1ba962013-09-20 16:03:42 +0200646 rtl_inval_tx_desc(&tpc->TxDescArray[entry]);
Yoshihiro Shimoda4a465662009-02-25 14:27:24 +0900647 } while ((le32_to_cpu(tpc->TxDescArray[entry].status) & OWNbit)
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100648 && (currticks() < to)); /* wait */
wdenka6270482004-04-18 22:03:42 +0000649
650 if (currticks() >= to) {
651#ifdef DEBUG_RTL8169_TX
Thierry Reding20ac8692013-09-20 16:03:41 +0200652 puts("tx timeout/error\n");
653 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000654#endif
Oleksandr Tymoshenko51d22bb2016-07-01 13:22:00 -0700655 ret = -ETIMEDOUT;
wdenka6270482004-04-18 22:03:42 +0000656 } else {
657#ifdef DEBUG_RTL8169_TX
658 puts("tx done\n");
659#endif
Oleksandr Tymoshenko51d22bb2016-07-01 13:22:00 -0700660 ret = 0;
wdenka6270482004-04-18 22:03:42 +0000661 }
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100662 /* Delay to make net console (nc) work properly */
663 udelay(20);
664 return ret;
wdenka6270482004-04-18 22:03:42 +0000665}
666
Simon Glassf2acb532015-07-06 16:47:45 -0600667int rtl8169_eth_send(struct udevice *dev, void *packet, int length)
668{
669 struct rtl8169_private *priv = dev_get_priv(dev);
670
Simon Glass86621d42015-11-29 13:18:04 -0700671 return rtl_send_common(dev, priv->iobase, packet, length);
Simon Glassf2acb532015-07-06 16:47:45 -0600672}
Simon Glassf2acb532015-07-06 16:47:45 -0600673
674static void rtl8169_set_rx_mode(void)
wdenka6270482004-04-18 22:03:42 +0000675{
676 u32 mc_filter[2]; /* Multicast hash filter */
677 int rx_mode;
678 u32 tmp = 0;
679
680#ifdef DEBUG_RTL8169
681 printf ("%s\n", __FUNCTION__);
682#endif
683
684 /* IFF_ALLMULTI */
685 /* Too many to filter perfectly -- accept all multicasts. */
686 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
687 mc_filter[1] = mc_filter[0] = 0xffffffff;
688
689 tmp = rtl8169_rx_config | rx_mode | (RTL_R32(RxConfig) &
690 rtl_chip_info[tpc->chipset].RxConfigMask);
691
692 RTL_W32(RxConfig, tmp);
693 RTL_W32(MAR0 + 0, mc_filter[0]);
694 RTL_W32(MAR0 + 4, mc_filter[1]);
695}
696
Simon Glass86621d42015-11-29 13:18:04 -0700697static void rtl8169_hw_start(struct udevice *dev)
wdenka6270482004-04-18 22:03:42 +0000698{
699 u32 i;
700
701#ifdef DEBUG_RTL8169
702 int stime = currticks();
703 printf ("%s\n", __FUNCTION__);
704#endif
705
706#if 0
707 /* Soft reset the chip. */
708 RTL_W8(ChipCmd, CmdReset);
709
710 /* Check that the chip has finished the reset. */
711 for (i = 1000; i > 0; i--) {
712 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
713 break;
714 else
715 udelay(10);
716 }
717#endif
718
719 RTL_W8(Cfg9346, Cfg9346_Unlock);
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900720
721 /* RTL-8169sb/8110sb or previous version */
722 if (tpc->chipset <= 5)
723 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
724
wdenka6270482004-04-18 22:03:42 +0000725 RTL_W8(EarlyTxThres, EarlyTxThld);
726
727 /* For gigabit rtl8169 */
728 RTL_W16(RxMaxSize, RxPacketMaxSize);
729
730 /* Set Rx Config register */
731 i = rtl8169_rx_config | (RTL_R32(RxConfig) &
732 rtl_chip_info[tpc->chipset].RxConfigMask);
733 RTL_W32(RxConfig, i);
734
735 /* Set DMA burst size and Interframe Gap Time */
736 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
737 (InterFrameGap << TxInterFrameGapShift));
738
wdenka6270482004-04-18 22:03:42 +0000739 tpc->cur_rx = 0;
740
Simon Glass86621d42015-11-29 13:18:04 -0700741 RTL_W32(TxDescStartAddrLow, dm_pci_mem_to_phys(dev,
Simon Glassf2acb532015-07-06 16:47:45 -0600742 (pci_addr_t)(unsigned long)tpc->TxDescArray));
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900743 RTL_W32(TxDescStartAddrHigh, (unsigned long)0);
Simon Glass86621d42015-11-29 13:18:04 -0700744 RTL_W32(RxDescStartAddrLow, dm_pci_mem_to_phys(
745 dev, (pci_addr_t)(unsigned long)tpc->RxDescArray));
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900746 RTL_W32(RxDescStartAddrHigh, (unsigned long)0);
747
748 /* RTL-8169sc/8110sc or later version */
749 if (tpc->chipset > 5)
750 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
751
wdenka6270482004-04-18 22:03:42 +0000752 RTL_W8(Cfg9346, Cfg9346_Lock);
753 udelay(10);
754
755 RTL_W32(RxMissed, 0);
756
Simon Glassf2acb532015-07-06 16:47:45 -0600757 rtl8169_set_rx_mode();
wdenka6270482004-04-18 22:03:42 +0000758
759 /* no early-rx interrupts */
760 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
761
762#ifdef DEBUG_RTL8169
Thierry Reding20ac8692013-09-20 16:03:41 +0200763 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000764#endif
765}
766
Simon Glass86621d42015-11-29 13:18:04 -0700767static void rtl8169_init_ring(struct udevice *dev)
wdenka6270482004-04-18 22:03:42 +0000768{
769 int i;
770
771#ifdef DEBUG_RTL8169
772 int stime = currticks();
773 printf ("%s\n", __FUNCTION__);
774#endif
775
776 tpc->cur_rx = 0;
777 tpc->cur_tx = 0;
778 tpc->dirty_tx = 0;
779 memset(tpc->TxDescArray, 0x0, NUM_TX_DESC * sizeof(struct TxDesc));
780 memset(tpc->RxDescArray, 0x0, NUM_RX_DESC * sizeof(struct RxDesc));
781
782 for (i = 0; i < NUM_TX_DESC; i++) {
783 tpc->Tx_skbuff[i] = &txb[i];
784 }
785
786 for (i = 0; i < NUM_RX_DESC; i++) {
787 if (i == (NUM_RX_DESC - 1))
788 tpc->RxDescArray[i].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100789 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000790 else
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100791 tpc->RxDescArray[i].status =
792 cpu_to_le32(OWNbit + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000793
794 tpc->RxBufferRing[i] = &rxb[i * RX_BUF_SIZE];
Simon Glass86621d42015-11-29 13:18:04 -0700795 tpc->RxDescArray[i].buf_addr = cpu_to_le32(dm_pci_mem_to_phys(
796 dev, (pci_addr_t)(unsigned long)tpc->RxBufferRing[i]));
Thierry Reding5c1ba962013-09-20 16:03:42 +0200797 rtl_flush_rx_desc(&tpc->RxDescArray[i]);
wdenka6270482004-04-18 22:03:42 +0000798 }
799
800#ifdef DEBUG_RTL8169
Thierry Reding20ac8692013-09-20 16:03:41 +0200801 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000802#endif
803}
804
Stephen Warren9fe7fb52016-04-26 15:29:00 -0600805static void rtl8169_common_start(struct udevice *dev, unsigned char *enetaddr,
806 unsigned long dev_iobase)
wdenka6270482004-04-18 22:03:42 +0000807{
808 int i;
wdenka6270482004-04-18 22:03:42 +0000809
810#ifdef DEBUG_RTL8169
811 int stime = currticks();
812 printf ("%s\n", __FUNCTION__);
813#endif
814
Stephen Warren9fe7fb52016-04-26 15:29:00 -0600815 ioaddr = dev_iobase;
816
Simon Glass86621d42015-11-29 13:18:04 -0700817 rtl8169_init_ring(dev);
818 rtl8169_hw_start(dev);
wdenka6270482004-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 Glassf2acb532015-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];
wdenka6270482004-04-18 22:03:42 +0000830
831#ifdef DEBUG_RTL8169
Thierry Reding20ac8692013-09-20 16:03:41 +0200832 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000833#endif
834}
835
Simon Glassf2acb532015-07-06 16:47:45 -0600836static int rtl8169_eth_start(struct udevice *dev)
837{
Simon Glassfa20e932020-12-03 16:55:20 -0700838 struct eth_pdata *plat = dev_get_plat(dev);
Stephen Warren9fe7fb52016-04-26 15:29:00 -0600839 struct rtl8169_private *priv = dev_get_priv(dev);
Simon Glassf2acb532015-07-06 16:47:45 -0600840
Stephen Warren9fe7fb52016-04-26 15:29:00 -0600841 rtl8169_common_start(dev, plat->enetaddr, priv->iobase);
Simon Glassf2acb532015-07-06 16:47:45 -0600842
843 return 0;
844}
Simon Glassf2acb532015-07-06 16:47:45 -0600845
Eugen Hristev07b12d92023-04-25 16:06:58 +0300846static void rtl_halt_common(struct udevice *dev)
wdenka6270482004-04-18 22:03:42 +0000847{
Eugen Hristev07b12d92023-04-25 16:06:58 +0300848 struct rtl8169_private *priv = dev_get_priv(dev);
849 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
wdenka6270482004-04-18 22:03:42 +0000850 int i;
851
852#ifdef DEBUG_RTL8169
853 printf ("%s\n", __FUNCTION__);
854#endif
855
Eugen Hristev07b12d92023-04-25 16:06:58 +0300856 ioaddr = priv->iobase;
wdenka6270482004-04-18 22:03:42 +0000857
858 /* Stop the chip's Tx and Rx DMA processes. */
859 RTL_W8(ChipCmd, 0x00);
860
861 /* Disable interrupts by clearing the interrupt mask. */
Eugen Hristev07b12d92023-04-25 16:06:58 +0300862 if (pplat->device == 0x8125)
863 RTL_W16(IntrMask_8125, 0x0000);
864 else
865 RTL_W16(IntrMask_8169, 0x0000);
wdenka6270482004-04-18 22:03:42 +0000866
867 RTL_W32(RxMissed, 0);
868
wdenka6270482004-04-18 22:03:42 +0000869 for (i = 0; i < NUM_RX_DESC; i++) {
870 tpc->RxBufferRing[i] = NULL;
871 }
872}
Simon Glassf2acb532015-07-06 16:47:45 -0600873
Simon Glassf2acb532015-07-06 16:47:45 -0600874void rtl8169_eth_stop(struct udevice *dev)
875{
Eugen Hristev07b12d92023-04-25 16:06:58 +0300876 rtl_halt_common(dev);
Simon Glassf2acb532015-07-06 16:47:45 -0600877}
wdenka6270482004-04-18 22:03:42 +0000878
Thierry Redinga02d60f2019-04-16 18:20:29 +0200879static int rtl8169_write_hwaddr(struct udevice *dev)
880{
Simon Glassfa20e932020-12-03 16:55:20 -0700881 struct eth_pdata *plat = dev_get_plat(dev);
Thierry Redinga02d60f2019-04-16 18:20:29 +0200882 unsigned int i;
883
884 RTL_W8(Cfg9346, Cfg9346_Unlock);
885
886 for (i = 0; i < MAC_ADDR_LEN; i++)
887 RTL_W8(MAC0 + i, plat->enetaddr[i]);
888
889 RTL_W8(Cfg9346, Cfg9346_Lock);
890
891 return 0;
892}
Thierry Redinga02d60f2019-04-16 18:20:29 +0200893
wdenka6270482004-04-18 22:03:42 +0000894/**************************************************************************
895INIT - Look for an adapter, this routine's visible to the outside
896***************************************************************************/
897
898#define board_found 1
899#define valid_link 0
Simon Glassf2acb532015-07-06 16:47:45 -0600900static int rtl_init(unsigned long dev_ioaddr, const char *name,
901 unsigned char *enetaddr)
wdenka6270482004-04-18 22:03:42 +0000902{
903 static int board_idx = -1;
wdenka6270482004-04-18 22:03:42 +0000904 int i, rc;
905 int option = -1, Cap10_100 = 0, Cap1000 = 0;
906
907#ifdef DEBUG_RTL8169
908 printf ("%s\n", __FUNCTION__);
909#endif
Simon Glassf2acb532015-07-06 16:47:45 -0600910 ioaddr = dev_ioaddr;
wdenka6270482004-04-18 22:03:42 +0000911
912 board_idx++;
913
wdenka6270482004-04-18 22:03:42 +0000914 /* point to private storage */
915 tpc = &tpx;
916
Simon Glassf2acb532015-07-06 16:47:45 -0600917 rc = rtl8169_init_board(ioaddr, name);
wdenka6270482004-04-18 22:03:42 +0000918 if (rc)
919 return rc;
920
921 /* Get MAC address. FIXME: read EEPROM */
922 for (i = 0; i < MAC_ADDR_LEN; i++)
Simon Glassf2acb532015-07-06 16:47:45 -0600923 enetaddr[i] = RTL_R8(MAC0 + i);
wdenka6270482004-04-18 22:03:42 +0000924
925#ifdef DEBUG_RTL8169
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900926 printf("chipset = %d\n", tpc->chipset);
wdenka6270482004-04-18 22:03:42 +0000927 printf("MAC Address");
928 for (i = 0; i < MAC_ADDR_LEN; i++)
Simon Glassf2acb532015-07-06 16:47:45 -0600929 printf(":%02x", enetaddr[i]);
wdenka6270482004-04-18 22:03:42 +0000930 putc('\n');
931#endif
932
933#ifdef DEBUG_RTL8169
934 /* Print out some hardware info */
Simon Glassf2acb532015-07-06 16:47:45 -0600935 printf("%s: at ioaddr 0x%lx\n", name, ioaddr);
wdenka6270482004-04-18 22:03:42 +0000936#endif
937
938 /* if TBI is not endbled */
939 if (!(RTL_R8(PHYstatus) & TBI_Enable)) {
940 int val = mdio_read(PHY_AUTO_NEGO_REG);
941
942 option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx];
943 /* Force RTL8169 in 10/100/1000 Full/Half mode. */
944 if (option > 0) {
945#ifdef DEBUG_RTL8169
Bin Mengdbb099f2016-03-17 23:27:44 -0700946 printf("%s: Force-mode Enabled.\n", name);
wdenka6270482004-04-18 22:03:42 +0000947#endif
948 Cap10_100 = 0, Cap1000 = 0;
949 switch (option) {
950 case _10_Half:
951 Cap10_100 = PHY_Cap_10_Half;
952 Cap1000 = PHY_Cap_Null;
953 break;
954 case _10_Full:
955 Cap10_100 = PHY_Cap_10_Full;
956 Cap1000 = PHY_Cap_Null;
957 break;
958 case _100_Half:
959 Cap10_100 = PHY_Cap_100_Half;
960 Cap1000 = PHY_Cap_Null;
961 break;
962 case _100_Full:
963 Cap10_100 = PHY_Cap_100_Full;
964 Cap1000 = PHY_Cap_Null;
965 break;
966 case _1000_Full:
967 Cap10_100 = PHY_Cap_Null;
968 Cap1000 = PHY_Cap_1000_Full;
969 break;
970 default:
971 break;
972 }
973 mdio_write(PHY_AUTO_NEGO_REG, Cap10_100 | (val & 0x1F)); /* leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
974 mdio_write(PHY_1000_CTRL_REG, Cap1000);
975 } else {
976#ifdef DEBUG_RTL8169
977 printf("%s: Auto-negotiation Enabled.\n",
Bin Mengdbb099f2016-03-17 23:27:44 -0700978 name);
wdenka6270482004-04-18 22:03:42 +0000979#endif
980 /* enable 10/100 Full/Half Mode, leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
981 mdio_write(PHY_AUTO_NEGO_REG,
982 PHY_Cap_10_Half | PHY_Cap_10_Full |
983 PHY_Cap_100_Half | PHY_Cap_100_Full |
984 (val & 0x1F));
985
986 /* enable 1000 Full Mode */
987 mdio_write(PHY_1000_CTRL_REG, PHY_Cap_1000_Full);
988
989 }
990
991 /* Enable auto-negotiation and restart auto-nigotiation */
992 mdio_write(PHY_CTRL_REG,
993 PHY_Enable_Auto_Nego | PHY_Restart_Auto_Nego);
994 udelay(100);
995
996 /* wait for auto-negotiation process */
997 for (i = 10000; i > 0; i--) {
998 /* check if auto-negotiation complete */
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100999 if (mdio_read(PHY_STAT_REG) & PHY_Auto_Nego_Comp) {
wdenka6270482004-04-18 22:03:42 +00001000 udelay(100);
1001 option = RTL_R8(PHYstatus);
1002 if (option & _1000bpsF) {
1003#ifdef DEBUG_RTL8169
1004 printf("%s: 1000Mbps Full-duplex operation.\n",
Bin Mengdbb099f2016-03-17 23:27:44 -07001005 name);
wdenka6270482004-04-18 22:03:42 +00001006#endif
1007 } else {
1008#ifdef DEBUG_RTL8169
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +01001009 printf("%s: %sMbps %s-duplex operation.\n",
Bin Mengdbb099f2016-03-17 23:27:44 -07001010 name,
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +01001011 (option & _100bps) ? "100" :
1012 "10",
1013 (option & FullDup) ? "Full" :
1014 "Half");
wdenka6270482004-04-18 22:03:42 +00001015#endif
1016 }
1017 break;
1018 } else {
1019 udelay(100);
1020 }
1021 } /* end for-loop to wait for auto-negotiation process */
1022
1023 } else {
1024 udelay(100);
1025#ifdef DEBUG_RTL8169
1026 printf
1027 ("%s: 1000Mbps Full-duplex operation, TBI Link %s!\n",
Bin Mengdbb099f2016-03-17 23:27:44 -07001028 name,
wdenka6270482004-04-18 22:03:42 +00001029 (RTL_R32(TBICSR) & TBILinkOK) ? "OK" : "Failed");
1030#endif
1031 }
1032
Thierry Reding209c6482014-12-09 22:25:26 -07001033 tpc->RxDescArray = rtl_alloc_descs(NUM_RX_DESC);
1034 if (!tpc->RxDescArray)
1035 return -ENOMEM;
Thierry Redingbcc8e4d2014-12-09 22:25:25 -07001036
Thierry Reding209c6482014-12-09 22:25:26 -07001037 tpc->TxDescArray = rtl_alloc_descs(NUM_TX_DESC);
1038 if (!tpc->TxDescArray)
1039 return -ENOMEM;
1040
1041 return 0;
wdenka6270482004-04-18 22:03:42 +00001042}
Simon Glassf2acb532015-07-06 16:47:45 -06001043
Simon Glassf2acb532015-07-06 16:47:45 -06001044static int rtl8169_eth_probe(struct udevice *dev)
1045{
Simon Glassb75b15b2020-12-03 16:55:23 -07001046 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
Simon Glassf2acb532015-07-06 16:47:45 -06001047 struct rtl8169_private *priv = dev_get_priv(dev);
Simon Glassfa20e932020-12-03 16:55:20 -07001048 struct eth_pdata *plat = dev_get_plat(dev);
Simon Glassf2acb532015-07-06 16:47:45 -06001049 int region;
1050 int ret;
1051
Simon Glassf2acb532015-07-06 16:47:45 -06001052 switch (pplat->device) {
Eugen Hristev07b12d92023-04-25 16:06:58 +03001053 case 0x8125:
Minda Chenbcb96bd2023-07-20 19:37:28 +08001054 case 0x8161:
1055 case 0x8168:
Simon Glassf2acb532015-07-06 16:47:45 -06001056 region = 2;
1057 break;
1058 default:
1059 region = 1;
1060 break;
1061 }
Eugen Hristev07b12d92023-04-25 16:06:58 +03001062
1063 priv->iobase = (ulong)dm_pci_map_bar(dev,
1064 PCI_BASE_ADDRESS_0 + region * 4,
1065 0, 0,
1066 PCI_REGION_TYPE, PCI_REGION_MEM);
Simon Glassf2acb532015-07-06 16:47:45 -06001067
Eugen Hristev07b12d92023-04-25 16:06:58 +03001068 debug("rtl8169: REALTEK RTL8169 @0x%lx\n", priv->iobase);
Simon Glassf2acb532015-07-06 16:47:45 -06001069 ret = rtl_init(priv->iobase, dev->name, plat->enetaddr);
1070 if (ret < 0) {
1071 printf(pr_fmt("failed to initialize card: %d\n"), ret);
1072 return ret;
1073 }
1074
Tom Warrenf9f4a1c2020-03-26 15:59:13 -07001075 /*
1076 * WAR for DHCP failure after rebooting from kernel.
1077 * Clear RxDv_Gated_En bit which was set by kernel driver.
1078 * Without this, U-Boot can't get an IP via DHCP.
1079 * Register (FuncEvent, aka MISC) and RXDV_GATED_EN bit are from
1080 * the r8169.c kernel driver.
1081 */
1082
1083 u32 val = RTL_R32(FuncEvent);
1084 debug("%s: FuncEvent/Misc (0xF0) = 0x%08X\n", __func__, val);
1085 val &= ~RxDv_Gated_En;
1086 RTL_W32(FuncEvent, val);
1087
Simon Glassf2acb532015-07-06 16:47:45 -06001088 return 0;
1089}
1090
1091static const struct eth_ops rtl8169_eth_ops = {
1092 .start = rtl8169_eth_start,
1093 .send = rtl8169_eth_send,
1094 .recv = rtl8169_eth_recv,
1095 .stop = rtl8169_eth_stop,
Thierry Redinga02d60f2019-04-16 18:20:29 +02001096 .write_hwaddr = rtl8169_write_hwaddr,
Simon Glassf2acb532015-07-06 16:47:45 -06001097};
1098
1099static const struct udevice_id rtl8169_eth_ids[] = {
1100 { .compatible = "realtek,rtl8169" },
1101 { }
1102};
1103
1104U_BOOT_DRIVER(eth_rtl8169) = {
1105 .name = "eth_rtl8169",
1106 .id = UCLASS_ETH,
1107 .of_match = rtl8169_eth_ids,
1108 .probe = rtl8169_eth_probe,
1109 .ops = &rtl8169_eth_ops,
Simon Glass8a2b47f2020-12-03 16:55:17 -07001110 .priv_auto = sizeof(struct rtl8169_private),
Simon Glass71fa5b42020-12-03 16:55:18 -07001111 .plat_auto = sizeof(struct eth_pdata),
Simon Glassf2acb532015-07-06 16:47:45 -06001112};
1113
1114U_BOOT_PCI_DEVICE(eth_rtl8169, supported);