blob: 2276a465e7878c4dbfd1ccf7ccd9c76103e08b2f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenka8bd82d2004-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*
wdenka8bd82d2004-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 Liakhovetski6a5e1d72007-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 */
wdenka8bd82d2004-04-18 22:03:42 +000042#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070043#include <cpu_func.h>
Simon Glassd0a5a0b2015-07-06 16:47:45 -060044#include <dm.h>
Thierry Redingd58acdc2014-12-09 22:25:26 -070045#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060046#include <log.h>
wdenka8bd82d2004-04-18 22:03:42 +000047#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060048#include <memalign.h>
wdenka8bd82d2004-04-18 22:03:42 +000049#include <net.h>
Simon Glass90526e92020-05-10 11:39:56 -060050#include <asm/cache.h>
wdenka8bd82d2004-04-18 22:03:42 +000051#include <asm/io.h>
52#include <pci.h>
Simon Glassc05ed002020-05-10 11:40:11 -060053#include <linux/delay.h>
wdenka8bd82d2004-04-18 22:03:42 +000054
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
Thierry Reding744152f2015-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 Shimodad65e34d2009-02-25 14:27:29 +0900110
wdenka8bd82d2004-04-18 22:03:42 +0000111enum RTL8169_registers {
112 MAC0 = 0, /* Ethernet hardware address. */
113 MAR0 = 8, /* Multicast filter. */
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900114 TxDescStartAddrLow = 0x20,
115 TxDescStartAddrHigh = 0x24,
116 TxHDescStartAddrLow = 0x28,
117 TxHDescStartAddrHigh = 0x2c,
wdenka8bd82d2004-04-18 22:03:42 +0000118 FLASH = 0x30,
119 ERSR = 0x36,
120 ChipCmd = 0x37,
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300121 TxPoll_8169 = 0x38,
122 IntrMask_8169 = 0x3C,
123 IntrStatus_8169 = 0x3E,
wdenka8bd82d2004-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 Shimodadb70b842008-07-09 21:07:34 +0900142 RxDescStartAddrLow = 0xE4,
143 RxDescStartAddrHigh = 0xE8,
wdenka8bd82d2004-04-18 22:03:42 +0000144 EarlyTxThres = 0xEC,
145 FuncEvent = 0xF0,
146 FuncEventMask = 0xF4,
147 FuncPresetState = 0xF8,
148 FuncForceEvent = 0xFC,
149};
150
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300151enum RTL8125_registers {
152 IntrMask_8125 = 0x38,
153 IntrStatus_8125 = 0x3C,
154 TxPoll_8125 = 0x90,
155};
156
wdenka8bd82d2004-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 Liakhovetski6a5e1d72007-11-20 13:14:20 +0100224 PHY_Auto_Nego_Comp = 0x0020,
wdenka8bd82d2004-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 Warrena7a435e2020-03-26 15:59:13 -0700246
247 /* FuncEvent/Misc */
248 RxDv_Gated_En = 0x80000,
wdenka8bd82d2004-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 Iwamatsud75469d2008-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 Reding945dd962019-09-11 19:19:06 +0200265 {"RTL-8168c/8111c", 0x3c, 0xff7e1880,},
Thierry Reding22872862013-09-20 16:03:43 +0200266 {"RTL-8168d/8111d", 0x28, 0xff7e1880,},
Thierry Reding65a66912013-09-20 16:03:44 +0200267 {"RTL-8168evl/8111evl", 0x2e, 0xff7e1880,},
Thierry Redingcc0856c2014-12-09 22:25:27 -0700268 {"RTL-8168/8111g", 0x4c, 0xff7e1880,},
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900269 {"RTL-8101e", 0x34, 0xff7e1880,},
270 {"RTL-8100e", 0x32, 0xff7e1880,},
Thierry Redingcdd69ac2019-04-16 18:20:30 +0200271 {"RTL-8168h/8111h", 0x54, 0xff7e1880,},
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300272 {"RTL-8125B", 0x64, 0xff7e1880,},
wdenka8bd82d2004-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 Glassd0a5a0b2015-07-06 16:47:45 -0600296static unsigned char rxdata[RX_BUF_LEN];
297
Thierry Redingdad3ba02014-12-09 22:25:25 -0700298#define RTL8169_DESC_SIZE 16
wdenka8bd82d2004-04-18 22:03:42 +0000299
Thierry Redingdad3ba02014-12-09 22:25:25 -0700300#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 Redingd58acdc2014-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.
Thierry Redingdad3ba02014-12-09 22:25:25 -0700314 */
315#if RTL8169_DESC_SIZE < ARCH_DMA_MINALIGN
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600316#if !defined(CONFIG_SYS_NONCACHED_MEMORY) && \
Trevor Woerner10015022019-05-03 09:41:00 -0400317 !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_X86)
Thierry Redingdad3ba02014-12-09 22:25:25 -0700318#warning cache-line size is larger than descriptor size
319#endif
Thierry Redingd58acdc2014-12-09 22:25:26 -0700320#endif
wdenka8bd82d2004-04-18 22:03:42 +0000321
Thierry Redingdad3ba02014-12-09 22:25:25 -0700322/*
323 * Create a static buffer of size RX_BUF_SZ for each TX Descriptor. All
324 * descriptors point to a part of this buffer.
325 */
326DEFINE_ALIGN_BUFFER(u8, txb, NUM_TX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
327
328/*
329 * Create a static buffer of size RX_BUF_SZ for each RX Descriptor. All
330 * descriptors point to a part of this buffer.
331 */
332DEFINE_ALIGN_BUFFER(u8, rxb, NUM_RX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
wdenka8bd82d2004-04-18 22:03:42 +0000333
334struct rtl8169_private {
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600335 ulong iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000336 void *mmio_addr; /* memory map physical address */
337 int chipset;
338 unsigned long cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
339 unsigned long cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
340 unsigned long dirty_tx;
wdenka8bd82d2004-04-18 22:03:42 +0000341 struct TxDesc *TxDescArray; /* Index of 256-alignment Tx Descriptor buffer */
342 struct RxDesc *RxDescArray; /* Index of 256-alignment Rx Descriptor buffer */
343 unsigned char *RxBufferRings; /* Index of Rx Buffer */
344 unsigned char *RxBufferRing[NUM_RX_DESC]; /* Index of Rx Buffer array */
345 unsigned char *Tx_skbuff[NUM_TX_DESC];
346} tpx;
347
348static struct rtl8169_private *tpc;
349
wdenka8bd82d2004-04-18 22:03:42 +0000350static const unsigned int rtl8169_rx_config =
351 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
352
353static struct pci_device_id supported[] = {
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600354 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167) },
355 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168) },
356 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169) },
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300357 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8125) },
wdenka8bd82d2004-04-18 22:03:42 +0000358 {}
359};
360
361void mdio_write(int RegAddr, int value)
362{
363 int i;
364
365 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
366 udelay(1000);
367
368 for (i = 2000; i > 0; i--) {
369 /* Check if the RTL8169 has completed writing to the specified MII register */
370 if (!(RTL_R32(PHYAR) & 0x80000000)) {
371 break;
372 } else {
373 udelay(100);
374 }
375 }
376}
377
378int mdio_read(int RegAddr)
379{
380 int i, value = -1;
381
382 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
383 udelay(1000);
384
385 for (i = 2000; i > 0; i--) {
386 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
387 if (RTL_R32(PHYAR) & 0x80000000) {
388 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
389 break;
390 } else {
391 udelay(100);
392 }
393 }
394 return value;
395}
396
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600397static int rtl8169_init_board(unsigned long dev_iobase, const char *name)
wdenka8bd82d2004-04-18 22:03:42 +0000398{
399 int i;
400 u32 tmp;
401
402#ifdef DEBUG_RTL8169
403 printf ("%s\n", __FUNCTION__);
404#endif
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600405 ioaddr = dev_iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000406
407 /* Soft reset the chip. */
408 RTL_W8(ChipCmd, CmdReset);
409
410 /* Check that the chip has finished the reset. */
411 for (i = 1000; i > 0; i--)
412 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
413 break;
414 else
415 udelay(10);
416
417 /* identify chip attached to board */
418 tmp = RTL_R32(TxConfig);
419 tmp = ((tmp & 0x7c000000) + ((tmp & 0x00800000) << 2)) >> 24;
420
421 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--){
422 if (tmp == rtl_chip_info[i].version) {
423 tpc->chipset = i;
424 goto match;
425 }
426 }
427
428 /* if unknown chip, assume array element #0, original RTL-8169 in this case */
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600429 printf("PCI device %s: unknown chip version, assuming RTL-8169\n",
430 name);
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200431 printf("PCI device: TxConfig = 0x%lX\n", (unsigned long) RTL_R32(TxConfig));
wdenka8bd82d2004-04-18 22:03:42 +0000432 tpc->chipset = 0;
433
434match:
435 return 0;
436}
437
Thierry Reding22ece0e2013-09-20 16:03:42 +0200438/*
Thierry Redingd58acdc2014-12-09 22:25:26 -0700439 * TX and RX descriptors are 16 bytes. This causes problems with the cache
440 * maintenance on CPUs where the cache-line size exceeds the size of these
441 * descriptors. What will happen is that when the driver receives a packet
442 * it will be immediately requeued for the hardware to reuse. The CPU will
443 * therefore need to flush the cache-line containing the descriptor, which
444 * will cause all other descriptors in the same cache-line to be flushed
445 * along with it. If one of those descriptors had been written to by the
446 * device those changes (and the associated packet) will be lost.
447 *
448 * To work around this, we make use of non-cached memory if available. If
449 * descriptors are mapped uncached there's no need to manually flush them
450 * or invalidate them.
451 *
452 * Note that this only applies to descriptors. The packet data buffers do
453 * not have the same constraints since they are 1536 bytes large, so they
454 * are unlikely to share cache-lines.
455 */
456static void *rtl_alloc_descs(unsigned int num)
457{
458 size_t size = num * RTL8169_DESC_SIZE;
459
460#ifdef CONFIG_SYS_NONCACHED_MEMORY
461 return (void *)noncached_alloc(size, RTL8169_ALIGN);
462#else
463 return memalign(RTL8169_ALIGN, size);
464#endif
465}
466
467/*
Thierry Reding22ece0e2013-09-20 16:03:42 +0200468 * Cache maintenance functions. These are simple wrappers around the more
469 * general purpose flush_cache() and invalidate_dcache_range() functions.
470 */
471
472static void rtl_inval_rx_desc(struct RxDesc *desc)
473{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700474#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200475 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
476 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
477
478 invalidate_dcache_range(start, end);
Thierry Redingd58acdc2014-12-09 22:25:26 -0700479#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200480}
481
482static void rtl_flush_rx_desc(struct RxDesc *desc)
483{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700484#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200485 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Redingd58acdc2014-12-09 22:25:26 -0700486#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200487}
488
489static void rtl_inval_tx_desc(struct TxDesc *desc)
490{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700491#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200492 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
493 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
494
495 invalidate_dcache_range(start, end);
Thierry Redingd58acdc2014-12-09 22:25:26 -0700496#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200497}
498
499static void rtl_flush_tx_desc(struct TxDesc *desc)
500{
Thierry Redingd58acdc2014-12-09 22:25:26 -0700501#ifndef CONFIG_SYS_NONCACHED_MEMORY
Thierry Reding22ece0e2013-09-20 16:03:42 +0200502 flush_cache((unsigned long)desc, sizeof(*desc));
Thierry Redingd58acdc2014-12-09 22:25:26 -0700503#endif
Thierry Reding22ece0e2013-09-20 16:03:42 +0200504}
505
506static void rtl_inval_buffer(void *buf, size_t size)
507{
508 unsigned long start = (unsigned long)buf & ~(ARCH_DMA_MINALIGN - 1);
509 unsigned long end = ALIGN(start + size, ARCH_DMA_MINALIGN);
510
511 invalidate_dcache_range(start, end);
512}
513
514static void rtl_flush_buffer(void *buf, size_t size)
515{
516 flush_cache((unsigned long)buf, size);
517}
518
wdenka8bd82d2004-04-18 22:03:42 +0000519/**************************************************************************
520RECV - Receive a frame
521***************************************************************************/
Simon Glass552ddbe2015-11-29 13:18:04 -0700522static int rtl_recv_common(struct udevice *dev, unsigned long dev_iobase,
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600523 uchar **packetp)
wdenka8bd82d2004-04-18 22:03:42 +0000524{
525 /* return true if there's an ethernet packet ready to read */
526 /* nic->packet should contain data on return */
527 /* nic->packetlen should contain length of data */
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300528 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
wdenka8bd82d2004-04-18 22:03:42 +0000529 int cur_rx;
530 int length = 0;
531
532#ifdef DEBUG_RTL8169_RX
533 printf ("%s\n", __FUNCTION__);
534#endif
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600535 ioaddr = dev_iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000536
537 cur_rx = tpc->cur_rx;
Thierry Reding22ece0e2013-09-20 16:03:42 +0200538
539 rtl_inval_rx_desc(&tpc->RxDescArray[cur_rx]);
540
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100541 if ((le32_to_cpu(tpc->RxDescArray[cur_rx].status) & OWNbit) == 0) {
542 if (!(le32_to_cpu(tpc->RxDescArray[cur_rx].status) & RxRES)) {
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100543 length = (int) (le32_to_cpu(tpc->RxDescArray[cur_rx].
544 status) & 0x00001FFF) - 4;
wdenka8bd82d2004-04-18 22:03:42 +0000545
Thierry Reding22ece0e2013-09-20 16:03:42 +0200546 rtl_inval_buffer(tpc->RxBufferRing[cur_rx], length);
wdenka8bd82d2004-04-18 22:03:42 +0000547 memcpy(rxdata, tpc->RxBufferRing[cur_rx], length);
wdenka8bd82d2004-04-18 22:03:42 +0000548
549 if (cur_rx == NUM_RX_DESC - 1)
550 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100551 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000552 else
553 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100554 cpu_to_le32(OWNbit + RX_BUF_SIZE);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600555 tpc->RxDescArray[cur_rx].buf_addr = cpu_to_le32(
Simon Glass552ddbe2015-11-29 13:18:04 -0700556 dm_pci_mem_to_phys(dev,
557 (pci_addr_t)(unsigned long)
558 tpc->RxBufferRing[cur_rx]));
Thierry Reding22ece0e2013-09-20 16:03:42 +0200559 rtl_flush_rx_desc(&tpc->RxDescArray[cur_rx]);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600560 *packetp = rxdata;
wdenka8bd82d2004-04-18 22:03:42 +0000561 } else {
562 puts("Error Rx");
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600563 length = -EIO;
wdenka8bd82d2004-04-18 22:03:42 +0000564 }
565 cur_rx = (cur_rx + 1) % NUM_RX_DESC;
566 tpc->cur_rx = cur_rx;
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600567 return length;
wdenka8bd82d2004-04-18 22:03:42 +0000568
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900569 } else {
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300570 u32 IntrStatus = IntrStatus_8169;
571
572 if (pplat->device == 0x8125)
573 IntrStatus = IntrStatus_8125;
Nobuhiro Iwamatsud75469d2008-03-08 09:25:49 +0900574 ushort sts = RTL_R8(IntrStatus);
575 RTL_W8(IntrStatus, sts & ~(TxErr | RxErr | SYSErr));
576 udelay(100); /* wait */
wdenka8bd82d2004-04-18 22:03:42 +0000577 }
578 tpc->cur_rx = cur_rx;
579 return (0); /* initially as this is called to flush the input */
580}
581
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600582int rtl8169_eth_recv(struct udevice *dev, int flags, uchar **packetp)
583{
584 struct rtl8169_private *priv = dev_get_priv(dev);
585
Simon Glass552ddbe2015-11-29 13:18:04 -0700586 return rtl_recv_common(dev, priv->iobase, packetp);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600587}
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600588
wdenka8bd82d2004-04-18 22:03:42 +0000589#define HZ 1000
590/**************************************************************************
591SEND - Transmit a frame
592***************************************************************************/
Simon Glass552ddbe2015-11-29 13:18:04 -0700593static int rtl_send_common(struct udevice *dev, unsigned long dev_iobase,
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600594 void *packet, int length)
wdenka8bd82d2004-04-18 22:03:42 +0000595{
596 /* send the packet to destination */
597
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300598 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
wdenka8bd82d2004-04-18 22:03:42 +0000599 u32 to;
600 u8 *ptxb;
601 int entry = tpc->cur_tx % NUM_TX_DESC;
602 u32 len = length;
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100603 int ret;
wdenka8bd82d2004-04-18 22:03:42 +0000604
605#ifdef DEBUG_RTL8169_TX
606 int stime = currticks();
607 printf ("%s\n", __FUNCTION__);
608 printf("sending %d bytes\n", len);
609#endif
610
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600611 ioaddr = dev_iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000612
613 /* point to the current txb incase multiple tx_rings are used */
614 ptxb = tpc->Tx_skbuff[entry * MAX_ETH_FRAME_SIZE];
615 memcpy(ptxb, (char *)packet, (int)length);
616
617 while (len < ETH_ZLEN)
618 ptxb[len++] = '\0';
619
Peter Chubb73776472016-09-14 01:29:03 +0000620 rtl_flush_buffer(ptxb, ALIGN(len, RTL8169_ALIGN));
621
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900622 tpc->TxDescArray[entry].buf_Haddr = 0;
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600623 tpc->TxDescArray[entry].buf_addr = cpu_to_le32(
Simon Glass552ddbe2015-11-29 13:18:04 -0700624 dm_pci_mem_to_phys(dev, (pci_addr_t)(unsigned long)ptxb));
wdenka8bd82d2004-04-18 22:03:42 +0000625 if (entry != (NUM_TX_DESC - 1)) {
626 tpc->TxDescArray[entry].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100627 cpu_to_le32((OWNbit | FSbit | LSbit) |
628 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka8bd82d2004-04-18 22:03:42 +0000629 } else {
630 tpc->TxDescArray[entry].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100631 cpu_to_le32((OWNbit | EORbit | FSbit | LSbit) |
632 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka8bd82d2004-04-18 22:03:42 +0000633 }
Thierry Reding22ece0e2013-09-20 16:03:42 +0200634 rtl_flush_tx_desc(&tpc->TxDescArray[entry]);
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300635 if (pplat->device == 0x8125)
636 RTL_W8(TxPoll_8125, 0x1); /* set polling bit */
637 else
638 RTL_W8(TxPoll_8169, 0x40); /* set polling bit */
wdenka8bd82d2004-04-18 22:03:42 +0000639
640 tpc->cur_tx++;
641 to = currticks() + TX_TIMEOUT;
Yoshihiro Shimodad4c02e62009-02-25 14:27:24 +0900642 do {
Thierry Reding22ece0e2013-09-20 16:03:42 +0200643 rtl_inval_tx_desc(&tpc->TxDescArray[entry]);
Yoshihiro Shimodad4c02e62009-02-25 14:27:24 +0900644 } while ((le32_to_cpu(tpc->TxDescArray[entry].status) & OWNbit)
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100645 && (currticks() < to)); /* wait */
wdenka8bd82d2004-04-18 22:03:42 +0000646
647 if (currticks() >= to) {
648#ifdef DEBUG_RTL8169_TX
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200649 puts("tx timeout/error\n");
650 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000651#endif
Oleksandr Tymoshenko4c64c4d2016-07-01 13:22:00 -0700652 ret = -ETIMEDOUT;
wdenka8bd82d2004-04-18 22:03:42 +0000653 } else {
654#ifdef DEBUG_RTL8169_TX
655 puts("tx done\n");
656#endif
Oleksandr Tymoshenko4c64c4d2016-07-01 13:22:00 -0700657 ret = 0;
wdenka8bd82d2004-04-18 22:03:42 +0000658 }
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100659 /* Delay to make net console (nc) work properly */
660 udelay(20);
661 return ret;
wdenka8bd82d2004-04-18 22:03:42 +0000662}
663
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600664int rtl8169_eth_send(struct udevice *dev, void *packet, int length)
665{
666 struct rtl8169_private *priv = dev_get_priv(dev);
667
Simon Glass552ddbe2015-11-29 13:18:04 -0700668 return rtl_send_common(dev, priv->iobase, packet, length);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600669}
670
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600671static void rtl8169_set_rx_mode(void)
wdenka8bd82d2004-04-18 22:03:42 +0000672{
673 u32 mc_filter[2]; /* Multicast hash filter */
674 int rx_mode;
675 u32 tmp = 0;
676
677#ifdef DEBUG_RTL8169
678 printf ("%s\n", __FUNCTION__);
679#endif
680
681 /* IFF_ALLMULTI */
682 /* Too many to filter perfectly -- accept all multicasts. */
683 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
684 mc_filter[1] = mc_filter[0] = 0xffffffff;
685
686 tmp = rtl8169_rx_config | rx_mode | (RTL_R32(RxConfig) &
687 rtl_chip_info[tpc->chipset].RxConfigMask);
688
689 RTL_W32(RxConfig, tmp);
690 RTL_W32(MAR0 + 0, mc_filter[0]);
691 RTL_W32(MAR0 + 4, mc_filter[1]);
692}
693
Simon Glass552ddbe2015-11-29 13:18:04 -0700694static void rtl8169_hw_start(struct udevice *dev)
wdenka8bd82d2004-04-18 22:03:42 +0000695{
696 u32 i;
697
698#ifdef DEBUG_RTL8169
699 int stime = currticks();
700 printf ("%s\n", __FUNCTION__);
701#endif
702
703#if 0
704 /* Soft reset the chip. */
705 RTL_W8(ChipCmd, CmdReset);
706
707 /* Check that the chip has finished the reset. */
708 for (i = 1000; i > 0; i--) {
709 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
710 break;
711 else
712 udelay(10);
713 }
714#endif
715
716 RTL_W8(Cfg9346, Cfg9346_Unlock);
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900717
718 /* RTL-8169sb/8110sb or previous version */
719 if (tpc->chipset <= 5)
720 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
721
wdenka8bd82d2004-04-18 22:03:42 +0000722 RTL_W8(EarlyTxThres, EarlyTxThld);
723
724 /* For gigabit rtl8169 */
725 RTL_W16(RxMaxSize, RxPacketMaxSize);
726
727 /* Set Rx Config register */
728 i = rtl8169_rx_config | (RTL_R32(RxConfig) &
729 rtl_chip_info[tpc->chipset].RxConfigMask);
730 RTL_W32(RxConfig, i);
731
732 /* Set DMA burst size and Interframe Gap Time */
733 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
734 (InterFrameGap << TxInterFrameGapShift));
735
736
737 tpc->cur_rx = 0;
738
Simon Glass552ddbe2015-11-29 13:18:04 -0700739 RTL_W32(TxDescStartAddrLow, dm_pci_mem_to_phys(dev,
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600740 (pci_addr_t)(unsigned long)tpc->TxDescArray));
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900741 RTL_W32(TxDescStartAddrHigh, (unsigned long)0);
Simon Glass552ddbe2015-11-29 13:18:04 -0700742 RTL_W32(RxDescStartAddrLow, dm_pci_mem_to_phys(
743 dev, (pci_addr_t)(unsigned long)tpc->RxDescArray));
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900744 RTL_W32(RxDescStartAddrHigh, (unsigned long)0);
745
746 /* RTL-8169sc/8110sc or later version */
747 if (tpc->chipset > 5)
748 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
749
wdenka8bd82d2004-04-18 22:03:42 +0000750 RTL_W8(Cfg9346, Cfg9346_Lock);
751 udelay(10);
752
753 RTL_W32(RxMissed, 0);
754
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600755 rtl8169_set_rx_mode();
wdenka8bd82d2004-04-18 22:03:42 +0000756
757 /* no early-rx interrupts */
758 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
759
760#ifdef DEBUG_RTL8169
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200761 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000762#endif
763}
764
Simon Glass552ddbe2015-11-29 13:18:04 -0700765static void rtl8169_init_ring(struct udevice *dev)
wdenka8bd82d2004-04-18 22:03:42 +0000766{
767 int i;
768
769#ifdef DEBUG_RTL8169
770 int stime = currticks();
771 printf ("%s\n", __FUNCTION__);
772#endif
773
774 tpc->cur_rx = 0;
775 tpc->cur_tx = 0;
776 tpc->dirty_tx = 0;
777 memset(tpc->TxDescArray, 0x0, NUM_TX_DESC * sizeof(struct TxDesc));
778 memset(tpc->RxDescArray, 0x0, NUM_RX_DESC * sizeof(struct RxDesc));
779
780 for (i = 0; i < NUM_TX_DESC; i++) {
781 tpc->Tx_skbuff[i] = &txb[i];
782 }
783
784 for (i = 0; i < NUM_RX_DESC; i++) {
785 if (i == (NUM_RX_DESC - 1))
786 tpc->RxDescArray[i].status =
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100787 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000788 else
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100789 tpc->RxDescArray[i].status =
790 cpu_to_le32(OWNbit + RX_BUF_SIZE);
wdenka8bd82d2004-04-18 22:03:42 +0000791
792 tpc->RxBufferRing[i] = &rxb[i * RX_BUF_SIZE];
Simon Glass552ddbe2015-11-29 13:18:04 -0700793 tpc->RxDescArray[i].buf_addr = cpu_to_le32(dm_pci_mem_to_phys(
794 dev, (pci_addr_t)(unsigned long)tpc->RxBufferRing[i]));
Thierry Reding22ece0e2013-09-20 16:03:42 +0200795 rtl_flush_rx_desc(&tpc->RxDescArray[i]);
wdenka8bd82d2004-04-18 22:03:42 +0000796 }
797
798#ifdef DEBUG_RTL8169
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200799 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000800#endif
801}
802
Stephen Warrendad7b742016-04-26 15:29:00 -0600803static void rtl8169_common_start(struct udevice *dev, unsigned char *enetaddr,
804 unsigned long dev_iobase)
wdenka8bd82d2004-04-18 22:03:42 +0000805{
806 int i;
wdenka8bd82d2004-04-18 22:03:42 +0000807
808#ifdef DEBUG_RTL8169
809 int stime = currticks();
810 printf ("%s\n", __FUNCTION__);
811#endif
812
Stephen Warrendad7b742016-04-26 15:29:00 -0600813 ioaddr = dev_iobase;
814
Simon Glass552ddbe2015-11-29 13:18:04 -0700815 rtl8169_init_ring(dev);
816 rtl8169_hw_start(dev);
wdenka8bd82d2004-04-18 22:03:42 +0000817 /* Construct a perfect filter frame with the mac address as first match
818 * and broadcast for all others */
819 for (i = 0; i < 192; i++)
820 txb[i] = 0xFF;
821
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600822 txb[0] = enetaddr[0];
823 txb[1] = enetaddr[1];
824 txb[2] = enetaddr[2];
825 txb[3] = enetaddr[3];
826 txb[4] = enetaddr[4];
827 txb[5] = enetaddr[5];
wdenka8bd82d2004-04-18 22:03:42 +0000828
829#ifdef DEBUG_RTL8169
Thierry Reding7a36b9c2013-09-20 16:03:41 +0200830 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka8bd82d2004-04-18 22:03:42 +0000831#endif
832}
833
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600834static int rtl8169_eth_start(struct udevice *dev)
835{
Simon Glassc69cda22020-12-03 16:55:20 -0700836 struct eth_pdata *plat = dev_get_plat(dev);
Stephen Warrendad7b742016-04-26 15:29:00 -0600837 struct rtl8169_private *priv = dev_get_priv(dev);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600838
Stephen Warrendad7b742016-04-26 15:29:00 -0600839 rtl8169_common_start(dev, plat->enetaddr, priv->iobase);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600840
841 return 0;
842}
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600843
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300844static void rtl_halt_common(struct udevice *dev)
wdenka8bd82d2004-04-18 22:03:42 +0000845{
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300846 struct rtl8169_private *priv = dev_get_priv(dev);
847 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
wdenka8bd82d2004-04-18 22:03:42 +0000848 int i;
849
850#ifdef DEBUG_RTL8169
851 printf ("%s\n", __FUNCTION__);
852#endif
853
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300854 ioaddr = priv->iobase;
wdenka8bd82d2004-04-18 22:03:42 +0000855
856 /* Stop the chip's Tx and Rx DMA processes. */
857 RTL_W8(ChipCmd, 0x00);
858
859 /* Disable interrupts by clearing the interrupt mask. */
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300860 if (pplat->device == 0x8125)
861 RTL_W16(IntrMask_8125, 0x0000);
862 else
863 RTL_W16(IntrMask_8169, 0x0000);
wdenka8bd82d2004-04-18 22:03:42 +0000864
865 RTL_W32(RxMissed, 0);
866
wdenka8bd82d2004-04-18 22:03:42 +0000867 for (i = 0; i < NUM_RX_DESC; i++) {
868 tpc->RxBufferRing[i] = NULL;
869 }
870}
871
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600872void rtl8169_eth_stop(struct udevice *dev)
873{
Eugen Hristevbcbb64b2023-04-25 16:06:58 +0300874 rtl_halt_common(dev);
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600875}
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600876
Thierry Redingb6054b52019-04-16 18:20:29 +0200877static int rtl8169_write_hwaddr(struct udevice *dev)
878{
Simon Glassc69cda22020-12-03 16:55:20 -0700879 struct eth_pdata *plat = dev_get_plat(dev);
Thierry Redingb6054b52019-04-16 18:20:29 +0200880 unsigned int i;
881
882 RTL_W8(Cfg9346, Cfg9346_Unlock);
883
884 for (i = 0; i < MAC_ADDR_LEN; i++)
885 RTL_W8(MAC0 + i, plat->enetaddr[i]);
886
887 RTL_W8(Cfg9346, Cfg9346_Lock);
888
889 return 0;
890}
Thierry Redingb6054b52019-04-16 18:20:29 +0200891
wdenka8bd82d2004-04-18 22:03:42 +0000892/**************************************************************************
893INIT - Look for an adapter, this routine's visible to the outside
894***************************************************************************/
895
896#define board_found 1
897#define valid_link 0
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600898static int rtl_init(unsigned long dev_ioaddr, const char *name,
899 unsigned char *enetaddr)
wdenka8bd82d2004-04-18 22:03:42 +0000900{
901 static int board_idx = -1;
wdenka8bd82d2004-04-18 22:03:42 +0000902 int i, rc;
903 int option = -1, Cap10_100 = 0, Cap1000 = 0;
904
905#ifdef DEBUG_RTL8169
906 printf ("%s\n", __FUNCTION__);
907#endif
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600908 ioaddr = dev_ioaddr;
wdenka8bd82d2004-04-18 22:03:42 +0000909
910 board_idx++;
911
wdenka8bd82d2004-04-18 22:03:42 +0000912 /* point to private storage */
913 tpc = &tpx;
914
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600915 rc = rtl8169_init_board(ioaddr, name);
wdenka8bd82d2004-04-18 22:03:42 +0000916 if (rc)
917 return rc;
918
919 /* Get MAC address. FIXME: read EEPROM */
920 for (i = 0; i < MAC_ADDR_LEN; i++)
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600921 enetaddr[i] = RTL_R8(MAC0 + i);
wdenka8bd82d2004-04-18 22:03:42 +0000922
923#ifdef DEBUG_RTL8169
Yoshihiro Shimodadb70b842008-07-09 21:07:34 +0900924 printf("chipset = %d\n", tpc->chipset);
wdenka8bd82d2004-04-18 22:03:42 +0000925 printf("MAC Address");
926 for (i = 0; i < MAC_ADDR_LEN; i++)
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600927 printf(":%02x", enetaddr[i]);
wdenka8bd82d2004-04-18 22:03:42 +0000928 putc('\n');
929#endif
930
931#ifdef DEBUG_RTL8169
932 /* Print out some hardware info */
Simon Glassd0a5a0b2015-07-06 16:47:45 -0600933 printf("%s: at ioaddr 0x%lx\n", name, ioaddr);
wdenka8bd82d2004-04-18 22:03:42 +0000934#endif
935
936 /* if TBI is not endbled */
937 if (!(RTL_R8(PHYstatus) & TBI_Enable)) {
938 int val = mdio_read(PHY_AUTO_NEGO_REG);
939
940 option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx];
941 /* Force RTL8169 in 10/100/1000 Full/Half mode. */
942 if (option > 0) {
943#ifdef DEBUG_RTL8169
Bin Mengdbe25382016-03-17 23:27:44 -0700944 printf("%s: Force-mode Enabled.\n", name);
wdenka8bd82d2004-04-18 22:03:42 +0000945#endif
946 Cap10_100 = 0, Cap1000 = 0;
947 switch (option) {
948 case _10_Half:
949 Cap10_100 = PHY_Cap_10_Half;
950 Cap1000 = PHY_Cap_Null;
951 break;
952 case _10_Full:
953 Cap10_100 = PHY_Cap_10_Full;
954 Cap1000 = PHY_Cap_Null;
955 break;
956 case _100_Half:
957 Cap10_100 = PHY_Cap_100_Half;
958 Cap1000 = PHY_Cap_Null;
959 break;
960 case _100_Full:
961 Cap10_100 = PHY_Cap_100_Full;
962 Cap1000 = PHY_Cap_Null;
963 break;
964 case _1000_Full:
965 Cap10_100 = PHY_Cap_Null;
966 Cap1000 = PHY_Cap_1000_Full;
967 break;
968 default:
969 break;
970 }
971 mdio_write(PHY_AUTO_NEGO_REG, Cap10_100 | (val & 0x1F)); /* leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
972 mdio_write(PHY_1000_CTRL_REG, Cap1000);
973 } else {
974#ifdef DEBUG_RTL8169
975 printf("%s: Auto-negotiation Enabled.\n",
Bin Mengdbe25382016-03-17 23:27:44 -0700976 name);
wdenka8bd82d2004-04-18 22:03:42 +0000977#endif
978 /* enable 10/100 Full/Half Mode, leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
979 mdio_write(PHY_AUTO_NEGO_REG,
980 PHY_Cap_10_Half | PHY_Cap_10_Full |
981 PHY_Cap_100_Half | PHY_Cap_100_Full |
982 (val & 0x1F));
983
984 /* enable 1000 Full Mode */
985 mdio_write(PHY_1000_CTRL_REG, PHY_Cap_1000_Full);
986
987 }
988
989 /* Enable auto-negotiation and restart auto-nigotiation */
990 mdio_write(PHY_CTRL_REG,
991 PHY_Enable_Auto_Nego | PHY_Restart_Auto_Nego);
992 udelay(100);
993
994 /* wait for auto-negotiation process */
995 for (i = 10000; i > 0; i--) {
996 /* check if auto-negotiation complete */
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +0100997 if (mdio_read(PHY_STAT_REG) & PHY_Auto_Nego_Comp) {
wdenka8bd82d2004-04-18 22:03:42 +0000998 udelay(100);
999 option = RTL_R8(PHYstatus);
1000 if (option & _1000bpsF) {
1001#ifdef DEBUG_RTL8169
1002 printf("%s: 1000Mbps Full-duplex operation.\n",
Bin Mengdbe25382016-03-17 23:27:44 -07001003 name);
wdenka8bd82d2004-04-18 22:03:42 +00001004#endif
1005 } else {
1006#ifdef DEBUG_RTL8169
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +01001007 printf("%s: %sMbps %s-duplex operation.\n",
Bin Mengdbe25382016-03-17 23:27:44 -07001008 name,
Guennadi Liakhovetski6a5e1d72007-11-20 13:14:20 +01001009 (option & _100bps) ? "100" :
1010 "10",
1011 (option & FullDup) ? "Full" :
1012 "Half");
wdenka8bd82d2004-04-18 22:03:42 +00001013#endif
1014 }
1015 break;
1016 } else {
1017 udelay(100);
1018 }
1019 } /* end for-loop to wait for auto-negotiation process */
1020
1021 } else {
1022 udelay(100);
1023#ifdef DEBUG_RTL8169
1024 printf
1025 ("%s: 1000Mbps Full-duplex operation, TBI Link %s!\n",
Bin Mengdbe25382016-03-17 23:27:44 -07001026 name,
wdenka8bd82d2004-04-18 22:03:42 +00001027 (RTL_R32(TBICSR) & TBILinkOK) ? "OK" : "Failed");
1028#endif
1029 }
1030
Thierry Redingdad3ba02014-12-09 22:25:25 -07001031
Thierry Redingd58acdc2014-12-09 22:25:26 -07001032 tpc->RxDescArray = rtl_alloc_descs(NUM_RX_DESC);
1033 if (!tpc->RxDescArray)
1034 return -ENOMEM;
1035
1036 tpc->TxDescArray = rtl_alloc_descs(NUM_TX_DESC);
1037 if (!tpc->TxDescArray)
1038 return -ENOMEM;
1039
1040 return 0;
wdenka8bd82d2004-04-18 22:03:42 +00001041}
1042
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001043static int rtl8169_eth_probe(struct udevice *dev)
1044{
Simon Glass8a8d24b2020-12-03 16:55:23 -07001045 struct pci_child_plat *pplat = dev_get_parent_plat(dev);
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001046 struct rtl8169_private *priv = dev_get_priv(dev);
Simon Glassc69cda22020-12-03 16:55:20 -07001047 struct eth_pdata *plat = dev_get_plat(dev);
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001048 int region;
1049 int ret;
1050
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001051 switch (pplat->device) {
1052 case 0x8168:
Eugen Hristevbcbb64b2023-04-25 16:06:58 +03001053 case 0x8125:
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001054 region = 2;
1055 break;
1056 default:
1057 region = 1;
1058 break;
1059 }
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001060
Eugen Hristevbcbb64b2023-04-25 16:06:58 +03001061 priv->iobase = (ulong)dm_pci_map_bar(dev,
1062 PCI_BASE_ADDRESS_0 + region * 4,
1063 0, 0,
1064 PCI_REGION_TYPE, PCI_REGION_MEM);
1065
1066 debug("rtl8169: REALTEK RTL8169 @0x%lx\n", priv->iobase);
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001067 ret = rtl_init(priv->iobase, dev->name, plat->enetaddr);
1068 if (ret < 0) {
1069 printf(pr_fmt("failed to initialize card: %d\n"), ret);
1070 return ret;
1071 }
1072
Tom Warrena7a435e2020-03-26 15:59:13 -07001073 /*
1074 * WAR for DHCP failure after rebooting from kernel.
1075 * Clear RxDv_Gated_En bit which was set by kernel driver.
1076 * Without this, U-Boot can't get an IP via DHCP.
1077 * Register (FuncEvent, aka MISC) and RXDV_GATED_EN bit are from
1078 * the r8169.c kernel driver.
1079 */
1080
1081 u32 val = RTL_R32(FuncEvent);
1082 debug("%s: FuncEvent/Misc (0xF0) = 0x%08X\n", __func__, val);
1083 val &= ~RxDv_Gated_En;
1084 RTL_W32(FuncEvent, val);
1085
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001086 return 0;
1087}
1088
1089static const struct eth_ops rtl8169_eth_ops = {
1090 .start = rtl8169_eth_start,
1091 .send = rtl8169_eth_send,
1092 .recv = rtl8169_eth_recv,
1093 .stop = rtl8169_eth_stop,
Thierry Redingb6054b52019-04-16 18:20:29 +02001094 .write_hwaddr = rtl8169_write_hwaddr,
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001095};
1096
1097static const struct udevice_id rtl8169_eth_ids[] = {
1098 { .compatible = "realtek,rtl8169" },
1099 { }
1100};
1101
1102U_BOOT_DRIVER(eth_rtl8169) = {
1103 .name = "eth_rtl8169",
1104 .id = UCLASS_ETH,
1105 .of_match = rtl8169_eth_ids,
1106 .probe = rtl8169_eth_probe,
1107 .ops = &rtl8169_eth_ops,
Simon Glass41575d82020-12-03 16:55:17 -07001108 .priv_auto = sizeof(struct rtl8169_private),
Simon Glasscaa4daa2020-12-03 16:55:18 -07001109 .plat_auto = sizeof(struct eth_pdata),
Simon Glassd0a5a0b2015-07-06 16:47:45 -06001110};
1111
1112U_BOOT_PCI_DEVICE(eth_rtl8169, supported);