1 // SPDX-License-Identifier: GPL-2.0+
3 * rtl8169.c : U-Boot driver for the RealTek RTL8169
7 * Most part is taken from r8169.c of etherboot
11 /**************************************************************************
12 * r8169.c: Etherboot device driver for the RealTek RTL-8169 Gigabit
15 * Portions of this code based on:
16 * r8169.c: A RealTek RTL-8169 Gigabit Ethernet driver
17 * for Linux kernel 2.4.x.
20 * See Linux Driver for full information
22 * Linux Driver Version 1.27a, 10.02.2002
25 * Jean Chen of RealTek Semiconductor Corp. for
26 * providing the evaluation NIC used to develop
27 * this driver. RealTek's support for Etherboot
33 * v1.0 11-26-2003 timlegge Initial port of Linux driver
34 * v1.5 01-17-2004 timlegge Initial driver output cleanup
36 * Indent Options: indent -kr -i8
37 ***************************************************************************/
40 * Modified to use le32_to_cpu and cpu_to_le32 properly
53 #include <asm/cache.h>
56 #include <linux/delay.h>
59 #undef DEBUG_RTL8169_TX
60 #undef DEBUG_RTL8169_RX
62 #define drv_version "v1.5"
63 #define drv_date "01-17-2004"
65 static unsigned long ioaddr;
67 /* Condensed operations for readability. */
68 #define currticks() get_timer(0)
72 static int media[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1 };
74 /* MAC address length*/
75 #define MAC_ADDR_LEN 6
77 /* max supported gigabit ethernet frame size -- must be at least (dev->mtu+14+4).*/
78 #define MAX_ETH_FRAME_SIZE 1536
80 #define TX_FIFO_THRESH 256 /* In bytes */
82 #define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
83 #define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
84 #define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
85 #define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
86 #define RxPacketMaxSize 0x0800 /* Maximum size supported is 16K-1 */
87 #define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
89 #define NUM_TX_DESC 1 /* Number of Tx descriptor registers */
90 #ifdef CONFIG_SYS_RX_ETH_BUFFER
91 #define NUM_RX_DESC CONFIG_SYS_RX_ETH_BUFFER
93 #define NUM_RX_DESC 4 /* Number of Rx descriptor registers */
95 #define RX_BUF_SIZE 1536 /* Rx Buffer size */
96 #define RX_BUF_LEN 8192
98 #define RTL_MIN_IO_SIZE 0x80
99 #define TX_TIMEOUT (6*HZ)
101 /* write/read MMIO register. Notice: {read,write}[wl] do the necessary swapping */
102 #define RTL_W8(reg, val8) writeb((val8), ioaddr + (reg))
103 #define RTL_W16(reg, val16) writew((val16), ioaddr + (reg))
104 #define RTL_W32(reg, val32) writel((val32), ioaddr + (reg))
105 #define RTL_R8(reg) readb(ioaddr + (reg))
106 #define RTL_R16(reg) readw(ioaddr + (reg))
107 #define RTL_R32(reg) readl(ioaddr + (reg))
109 #define bus_to_phys(a) pci_mem_to_phys((pci_dev_t)(unsigned long)dev->priv, \
110 (pci_addr_t)(unsigned long)a)
111 #define phys_to_bus(a) pci_phys_to_mem((pci_dev_t)(unsigned long)dev->priv, \
114 enum RTL8169_registers {
115 MAC0 = 0, /* Ethernet hardware address. */
116 MAR0 = 8, /* Multicast filter. */
117 TxDescStartAddrLow = 0x20,
118 TxDescStartAddrHigh = 0x24,
119 TxHDescStartAddrLow = 0x28,
120 TxHDescStartAddrHigh = 0x2c,
145 RxDescStartAddrLow = 0xE4,
146 RxDescStartAddrHigh = 0xE8,
149 FuncEventMask = 0xF4,
150 FuncPresetState = 0xF8,
151 FuncForceEvent = 0xFC,
154 enum RTL8169_register_content {
155 /*InterruptStatusBits */
159 TxDescUnavail = 0x80,
182 Cfg9346_Unlock = 0xC0,
187 AcceptBroadcast = 0x08,
188 AcceptMulticast = 0x04,
190 AcceptAllPhys = 0x01,
197 TxInterFrameGapShift = 24,
198 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
200 /*rtl8169_PHYstatus */
210 /*GIGABIT_PHY_registers */
213 PHY_AUTO_NEGO_REG = 4,
214 PHY_1000_CTRL_REG = 9,
216 /*GIGABIT_PHY_REG_BIT */
217 PHY_Restart_Auto_Nego = 0x0200,
218 PHY_Enable_Auto_Nego = 0x1000,
220 /* PHY_STAT_REG = 1; */
221 PHY_Auto_Nego_Comp = 0x0020,
223 /* PHY_AUTO_NEGO_REG = 4; */
224 PHY_Cap_10_Half = 0x0020,
225 PHY_Cap_10_Full = 0x0040,
226 PHY_Cap_100_Half = 0x0080,
227 PHY_Cap_100_Full = 0x0100,
229 /* PHY_1000_CTRL_REG = 9; */
230 PHY_Cap_1000_Full = 0x0200,
242 TBILinkOK = 0x02000000,
245 RxDv_Gated_En = 0x80000,
250 u8 version; /* depend on RTL8169 docs */
251 u32 RxConfigMask; /* should clear the bits supported by this chip */
252 } rtl_chip_info[] = {
253 {"RTL-8169", 0x00, 0xff7e1880,},
254 {"RTL-8169", 0x04, 0xff7e1880,},
255 {"RTL-8169", 0x00, 0xff7e1880,},
256 {"RTL-8169s/8110s", 0x02, 0xff7e1880,},
257 {"RTL-8169s/8110s", 0x04, 0xff7e1880,},
258 {"RTL-8169sb/8110sb", 0x10, 0xff7e1880,},
259 {"RTL-8169sc/8110sc", 0x18, 0xff7e1880,},
260 {"RTL-8168b/8111sb", 0x30, 0xff7e1880,},
261 {"RTL-8168b/8111sb", 0x38, 0xff7e1880,},
262 {"RTL-8168c/8111c", 0x3c, 0xff7e1880,},
263 {"RTL-8168d/8111d", 0x28, 0xff7e1880,},
264 {"RTL-8168evl/8111evl", 0x2e, 0xff7e1880,},
265 {"RTL-8168/8111g", 0x4c, 0xff7e1880,},
266 {"RTL-8101e", 0x34, 0xff7e1880,},
267 {"RTL-8100e", 0x32, 0xff7e1880,},
268 {"RTL-8168h/8111h", 0x54, 0xff7e1880,},
271 enum _DescStatusBit {
292 static unsigned char rxdata[RX_BUF_LEN];
294 #define RTL8169_DESC_SIZE 16
296 #if ARCH_DMA_MINALIGN > 256
297 # define RTL8169_ALIGN ARCH_DMA_MINALIGN
299 # define RTL8169_ALIGN 256
303 * Warn if the cache-line size is larger than the descriptor size. In such
304 * cases the driver will likely fail because the CPU needs to flush the cache
305 * when requeuing RX buffers, therefore descriptors written by the hardware
308 * This can be fixed by defining CONFIG_SYS_NONCACHED_MEMORY which will cause
309 * the driver to allocate descriptors from a pool of non-cached memory.
311 #if RTL8169_DESC_SIZE < ARCH_DMA_MINALIGN
312 #if !defined(CONFIG_SYS_NONCACHED_MEMORY) && \
313 !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_X86)
314 #warning cache-line size is larger than descriptor size
319 * Create a static buffer of size RX_BUF_SZ for each TX Descriptor. All
320 * descriptors point to a part of this buffer.
322 DEFINE_ALIGN_BUFFER(u8, txb, NUM_TX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
325 * Create a static buffer of size RX_BUF_SZ for each RX Descriptor. All
326 * descriptors point to a part of this buffer.
328 DEFINE_ALIGN_BUFFER(u8, rxb, NUM_RX_DESC * RX_BUF_SIZE, RTL8169_ALIGN);
330 struct rtl8169_private {
332 void *mmio_addr; /* memory map physical address */
334 unsigned long cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
335 unsigned long cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
336 unsigned long dirty_tx;
337 struct TxDesc *TxDescArray; /* Index of 256-alignment Tx Descriptor buffer */
338 struct RxDesc *RxDescArray; /* Index of 256-alignment Rx Descriptor buffer */
339 unsigned char *RxBufferRings; /* Index of Rx Buffer */
340 unsigned char *RxBufferRing[NUM_RX_DESC]; /* Index of Rx Buffer array */
341 unsigned char *Tx_skbuff[NUM_TX_DESC];
344 static struct rtl8169_private *tpc;
346 static const unsigned int rtl8169_rx_config =
347 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
349 static struct pci_device_id supported[] = {
350 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167) },
351 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168) },
352 { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169) },
356 void mdio_write(int RegAddr, int value)
360 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
363 for (i = 2000; i > 0; i--) {
364 /* Check if the RTL8169 has completed writing to the specified MII register */
365 if (!(RTL_R32(PHYAR) & 0x80000000)) {
373 int mdio_read(int RegAddr)
377 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
380 for (i = 2000; i > 0; i--) {
381 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
382 if (RTL_R32(PHYAR) & 0x80000000) {
383 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
392 static int rtl8169_init_board(unsigned long dev_iobase, const char *name)
398 printf ("%s\n", __FUNCTION__);
402 /* Soft reset the chip. */
403 RTL_W8(ChipCmd, CmdReset);
405 /* Check that the chip has finished the reset. */
406 for (i = 1000; i > 0; i--)
407 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
412 /* identify chip attached to board */
413 tmp = RTL_R32(TxConfig);
414 tmp = ((tmp & 0x7c000000) + ((tmp & 0x00800000) << 2)) >> 24;
416 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--){
417 if (tmp == rtl_chip_info[i].version) {
423 /* if unknown chip, assume array element #0, original RTL-8169 in this case */
424 printf("PCI device %s: unknown chip version, assuming RTL-8169\n",
426 printf("PCI device: TxConfig = 0x%lX\n", (unsigned long) RTL_R32(TxConfig));
434 * TX and RX descriptors are 16 bytes. This causes problems with the cache
435 * maintenance on CPUs where the cache-line size exceeds the size of these
436 * descriptors. What will happen is that when the driver receives a packet
437 * it will be immediately requeued for the hardware to reuse. The CPU will
438 * therefore need to flush the cache-line containing the descriptor, which
439 * will cause all other descriptors in the same cache-line to be flushed
440 * along with it. If one of those descriptors had been written to by the
441 * device those changes (and the associated packet) will be lost.
443 * To work around this, we make use of non-cached memory if available. If
444 * descriptors are mapped uncached there's no need to manually flush them
445 * or invalidate them.
447 * Note that this only applies to descriptors. The packet data buffers do
448 * not have the same constraints since they are 1536 bytes large, so they
449 * are unlikely to share cache-lines.
451 static void *rtl_alloc_descs(unsigned int num)
453 size_t size = num * RTL8169_DESC_SIZE;
455 #ifdef CONFIG_SYS_NONCACHED_MEMORY
456 return (void *)noncached_alloc(size, RTL8169_ALIGN);
458 return memalign(RTL8169_ALIGN, size);
463 * Cache maintenance functions. These are simple wrappers around the more
464 * general purpose flush_cache() and invalidate_dcache_range() functions.
467 static void rtl_inval_rx_desc(struct RxDesc *desc)
469 #ifndef CONFIG_SYS_NONCACHED_MEMORY
470 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
471 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
473 invalidate_dcache_range(start, end);
477 static void rtl_flush_rx_desc(struct RxDesc *desc)
479 #ifndef CONFIG_SYS_NONCACHED_MEMORY
480 flush_cache((unsigned long)desc, sizeof(*desc));
484 static void rtl_inval_tx_desc(struct TxDesc *desc)
486 #ifndef CONFIG_SYS_NONCACHED_MEMORY
487 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
488 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
490 invalidate_dcache_range(start, end);
494 static void rtl_flush_tx_desc(struct TxDesc *desc)
496 #ifndef CONFIG_SYS_NONCACHED_MEMORY
497 flush_cache((unsigned long)desc, sizeof(*desc));
501 static void rtl_inval_buffer(void *buf, size_t size)
503 unsigned long start = (unsigned long)buf & ~(ARCH_DMA_MINALIGN - 1);
504 unsigned long end = ALIGN(start + size, ARCH_DMA_MINALIGN);
506 invalidate_dcache_range(start, end);
509 static void rtl_flush_buffer(void *buf, size_t size)
511 flush_cache((unsigned long)buf, size);
514 /**************************************************************************
515 RECV - Receive a frame
516 ***************************************************************************/
518 static int rtl_recv_common(struct udevice *dev, unsigned long dev_iobase,
521 static int rtl_recv_common(pci_dev_t dev, unsigned long dev_iobase,
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 */
531 #ifdef DEBUG_RTL8169_RX
532 printf ("%s\n", __FUNCTION__);
536 cur_rx = tpc->cur_rx;
538 rtl_inval_rx_desc(&tpc->RxDescArray[cur_rx]);
540 if ((le32_to_cpu(tpc->RxDescArray[cur_rx].status) & OWNbit) == 0) {
541 if (!(le32_to_cpu(tpc->RxDescArray[cur_rx].status) & RxRES)) {
542 length = (int) (le32_to_cpu(tpc->RxDescArray[cur_rx].
543 status) & 0x00001FFF) - 4;
545 rtl_inval_buffer(tpc->RxBufferRing[cur_rx], length);
546 memcpy(rxdata, tpc->RxBufferRing[cur_rx], length);
548 if (cur_rx == NUM_RX_DESC - 1)
549 tpc->RxDescArray[cur_rx].status =
550 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
552 tpc->RxDescArray[cur_rx].status =
553 cpu_to_le32(OWNbit + RX_BUF_SIZE);
555 tpc->RxDescArray[cur_rx].buf_addr = cpu_to_le32(
556 dm_pci_mem_to_phys(dev,
557 (pci_addr_t)(unsigned long)
558 tpc->RxBufferRing[cur_rx]));
560 tpc->RxDescArray[cur_rx].buf_addr = cpu_to_le32(
561 pci_mem_to_phys(dev, (pci_addr_t)(unsigned long)
562 tpc->RxBufferRing[cur_rx]));
564 rtl_flush_rx_desc(&tpc->RxDescArray[cur_rx]);
568 net_process_received_packet(rxdata, length);
574 cur_rx = (cur_rx + 1) % NUM_RX_DESC;
575 tpc->cur_rx = cur_rx;
579 ushort sts = RTL_R8(IntrStatus);
580 RTL_W8(IntrStatus, sts & ~(TxErr | RxErr | SYSErr));
581 udelay(100); /* wait */
583 tpc->cur_rx = cur_rx;
584 return (0); /* initially as this is called to flush the input */
588 int rtl8169_eth_recv(struct udevice *dev, int flags, uchar **packetp)
590 struct rtl8169_private *priv = dev_get_priv(dev);
592 return rtl_recv_common(dev, priv->iobase, packetp);
595 static int rtl_recv(struct eth_device *dev)
597 return rtl_recv_common((pci_dev_t)(unsigned long)dev->priv,
600 #endif /* nCONFIG_DM_ETH */
603 /**************************************************************************
604 SEND - Transmit a frame
605 ***************************************************************************/
607 static int rtl_send_common(struct udevice *dev, unsigned long dev_iobase,
608 void *packet, int length)
610 static int rtl_send_common(pci_dev_t dev, unsigned long dev_iobase,
611 void *packet, int length)
614 /* send the packet to destination */
618 int entry = tpc->cur_tx % NUM_TX_DESC;
622 #ifdef DEBUG_RTL8169_TX
623 int stime = currticks();
624 printf ("%s\n", __FUNCTION__);
625 printf("sending %d bytes\n", len);
630 /* point to the current txb incase multiple tx_rings are used */
631 ptxb = tpc->Tx_skbuff[entry * MAX_ETH_FRAME_SIZE];
632 memcpy(ptxb, (char *)packet, (int)length);
634 while (len < ETH_ZLEN)
637 rtl_flush_buffer(ptxb, ALIGN(len, RTL8169_ALIGN));
639 tpc->TxDescArray[entry].buf_Haddr = 0;
641 tpc->TxDescArray[entry].buf_addr = cpu_to_le32(
642 dm_pci_mem_to_phys(dev, (pci_addr_t)(unsigned long)ptxb));
644 tpc->TxDescArray[entry].buf_addr = cpu_to_le32(
645 pci_mem_to_phys(dev, (pci_addr_t)(unsigned long)ptxb));
647 if (entry != (NUM_TX_DESC - 1)) {
648 tpc->TxDescArray[entry].status =
649 cpu_to_le32((OWNbit | FSbit | LSbit) |
650 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
652 tpc->TxDescArray[entry].status =
653 cpu_to_le32((OWNbit | EORbit | FSbit | LSbit) |
654 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
656 rtl_flush_tx_desc(&tpc->TxDescArray[entry]);
657 RTL_W8(TxPoll, 0x40); /* set polling bit */
660 to = currticks() + TX_TIMEOUT;
662 rtl_inval_tx_desc(&tpc->TxDescArray[entry]);
663 } while ((le32_to_cpu(tpc->TxDescArray[entry].status) & OWNbit)
664 && (currticks() < to)); /* wait */
666 if (currticks() >= to) {
667 #ifdef DEBUG_RTL8169_TX
668 puts("tx timeout/error\n");
669 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
673 #ifdef DEBUG_RTL8169_TX
678 /* Delay to make net console (nc) work properly */
684 int rtl8169_eth_send(struct udevice *dev, void *packet, int length)
686 struct rtl8169_private *priv = dev_get_priv(dev);
688 return rtl_send_common(dev, priv->iobase, packet, length);
692 static int rtl_send(struct eth_device *dev, void *packet, int length)
694 return rtl_send_common((pci_dev_t)(unsigned long)dev->priv,
695 dev->iobase, packet, length);
699 static void rtl8169_set_rx_mode(void)
701 u32 mc_filter[2]; /* Multicast hash filter */
706 printf ("%s\n", __FUNCTION__);
710 /* Too many to filter perfectly -- accept all multicasts. */
711 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
712 mc_filter[1] = mc_filter[0] = 0xffffffff;
714 tmp = rtl8169_rx_config | rx_mode | (RTL_R32(RxConfig) &
715 rtl_chip_info[tpc->chipset].RxConfigMask);
717 RTL_W32(RxConfig, tmp);
718 RTL_W32(MAR0 + 0, mc_filter[0]);
719 RTL_W32(MAR0 + 4, mc_filter[1]);
723 static void rtl8169_hw_start(struct udevice *dev)
725 static void rtl8169_hw_start(pci_dev_t dev)
731 int stime = currticks();
732 printf ("%s\n", __FUNCTION__);
736 /* Soft reset the chip. */
737 RTL_W8(ChipCmd, CmdReset);
739 /* Check that the chip has finished the reset. */
740 for (i = 1000; i > 0; i--) {
741 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
748 RTL_W8(Cfg9346, Cfg9346_Unlock);
750 /* RTL-8169sb/8110sb or previous version */
751 if (tpc->chipset <= 5)
752 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
754 RTL_W8(EarlyTxThres, EarlyTxThld);
756 /* For gigabit rtl8169 */
757 RTL_W16(RxMaxSize, RxPacketMaxSize);
759 /* Set Rx Config register */
760 i = rtl8169_rx_config | (RTL_R32(RxConfig) &
761 rtl_chip_info[tpc->chipset].RxConfigMask);
762 RTL_W32(RxConfig, i);
764 /* Set DMA burst size and Interframe Gap Time */
765 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
766 (InterFrameGap << TxInterFrameGapShift));
772 RTL_W32(TxDescStartAddrLow, dm_pci_mem_to_phys(dev,
773 (pci_addr_t)(unsigned long)tpc->TxDescArray));
775 RTL_W32(TxDescStartAddrLow, pci_mem_to_phys(dev,
776 (pci_addr_t)(unsigned long)tpc->TxDescArray));
778 RTL_W32(TxDescStartAddrHigh, (unsigned long)0);
780 RTL_W32(RxDescStartAddrLow, dm_pci_mem_to_phys(
781 dev, (pci_addr_t)(unsigned long)tpc->RxDescArray));
783 RTL_W32(RxDescStartAddrLow, pci_mem_to_phys(
784 dev, (pci_addr_t)(unsigned long)tpc->RxDescArray));
786 RTL_W32(RxDescStartAddrHigh, (unsigned long)0);
788 /* RTL-8169sc/8110sc or later version */
789 if (tpc->chipset > 5)
790 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
792 RTL_W8(Cfg9346, Cfg9346_Lock);
795 RTL_W32(RxMissed, 0);
797 rtl8169_set_rx_mode();
799 /* no early-rx interrupts */
800 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
803 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
808 static void rtl8169_init_ring(struct udevice *dev)
810 static void rtl8169_init_ring(pci_dev_t dev)
816 int stime = currticks();
817 printf ("%s\n", __FUNCTION__);
823 memset(tpc->TxDescArray, 0x0, NUM_TX_DESC * sizeof(struct TxDesc));
824 memset(tpc->RxDescArray, 0x0, NUM_RX_DESC * sizeof(struct RxDesc));
826 for (i = 0; i < NUM_TX_DESC; i++) {
827 tpc->Tx_skbuff[i] = &txb[i];
830 for (i = 0; i < NUM_RX_DESC; i++) {
831 if (i == (NUM_RX_DESC - 1))
832 tpc->RxDescArray[i].status =
833 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
835 tpc->RxDescArray[i].status =
836 cpu_to_le32(OWNbit + RX_BUF_SIZE);
838 tpc->RxBufferRing[i] = &rxb[i * RX_BUF_SIZE];
840 tpc->RxDescArray[i].buf_addr = cpu_to_le32(dm_pci_mem_to_phys(
841 dev, (pci_addr_t)(unsigned long)tpc->RxBufferRing[i]));
843 tpc->RxDescArray[i].buf_addr = cpu_to_le32(pci_mem_to_phys(
844 dev, (pci_addr_t)(unsigned long)tpc->RxBufferRing[i]));
846 rtl_flush_rx_desc(&tpc->RxDescArray[i]);
850 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
855 static void rtl8169_common_start(struct udevice *dev, unsigned char *enetaddr,
856 unsigned long dev_iobase)
858 static void rtl8169_common_start(pci_dev_t dev, unsigned char *enetaddr,
859 unsigned long dev_iobase)
865 int stime = currticks();
866 printf ("%s\n", __FUNCTION__);
871 rtl8169_init_ring(dev);
872 rtl8169_hw_start(dev);
873 /* Construct a perfect filter frame with the mac address as first match
874 * and broadcast for all others */
875 for (i = 0; i < 192; i++)
878 txb[0] = enetaddr[0];
879 txb[1] = enetaddr[1];
880 txb[2] = enetaddr[2];
881 txb[3] = enetaddr[3];
882 txb[4] = enetaddr[4];
883 txb[5] = enetaddr[5];
886 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
891 static int rtl8169_eth_start(struct udevice *dev)
893 struct eth_pdata *plat = dev_get_platdata(dev);
894 struct rtl8169_private *priv = dev_get_priv(dev);
896 rtl8169_common_start(dev, plat->enetaddr, priv->iobase);
901 /**************************************************************************
902 RESET - Finish setting up the ethernet interface
903 ***************************************************************************/
904 static int rtl_reset(struct eth_device *dev, struct bd_info *bis)
906 rtl8169_common_start((pci_dev_t)(unsigned long)dev->priv,
907 dev->enetaddr, dev->iobase);
911 #endif /* nCONFIG_DM_ETH */
913 static void rtl_halt_common(unsigned long dev_iobase)
918 printf ("%s\n", __FUNCTION__);
923 /* Stop the chip's Tx and Rx DMA processes. */
924 RTL_W8(ChipCmd, 0x00);
926 /* Disable interrupts by clearing the interrupt mask. */
927 RTL_W16(IntrMask, 0x0000);
929 RTL_W32(RxMissed, 0);
931 for (i = 0; i < NUM_RX_DESC; i++) {
932 tpc->RxBufferRing[i] = NULL;
937 void rtl8169_eth_stop(struct udevice *dev)
939 struct rtl8169_private *priv = dev_get_priv(dev);
941 rtl_halt_common(priv->iobase);
944 /**************************************************************************
945 HALT - Turn off ethernet interface
946 ***************************************************************************/
947 static void rtl_halt(struct eth_device *dev)
949 rtl_halt_common(dev->iobase);
954 static int rtl8169_write_hwaddr(struct udevice *dev)
956 struct eth_pdata *plat = dev_get_platdata(dev);
959 RTL_W8(Cfg9346, Cfg9346_Unlock);
961 for (i = 0; i < MAC_ADDR_LEN; i++)
962 RTL_W8(MAC0 + i, plat->enetaddr[i]);
964 RTL_W8(Cfg9346, Cfg9346_Lock);
970 /**************************************************************************
971 INIT - Look for an adapter, this routine's visible to the outside
972 ***************************************************************************/
974 #define board_found 1
976 static int rtl_init(unsigned long dev_ioaddr, const char *name,
977 unsigned char *enetaddr)
979 static int board_idx = -1;
981 int option = -1, Cap10_100 = 0, Cap1000 = 0;
984 printf ("%s\n", __FUNCTION__);
990 /* point to private storage */
993 rc = rtl8169_init_board(ioaddr, name);
997 /* Get MAC address. FIXME: read EEPROM */
998 for (i = 0; i < MAC_ADDR_LEN; i++)
999 enetaddr[i] = RTL_R8(MAC0 + i);
1001 #ifdef DEBUG_RTL8169
1002 printf("chipset = %d\n", tpc->chipset);
1003 printf("MAC Address");
1004 for (i = 0; i < MAC_ADDR_LEN; i++)
1005 printf(":%02x", enetaddr[i]);
1009 #ifdef DEBUG_RTL8169
1010 /* Print out some hardware info */
1011 printf("%s: at ioaddr 0x%lx\n", name, ioaddr);
1014 /* if TBI is not endbled */
1015 if (!(RTL_R8(PHYstatus) & TBI_Enable)) {
1016 int val = mdio_read(PHY_AUTO_NEGO_REG);
1018 option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx];
1019 /* Force RTL8169 in 10/100/1000 Full/Half mode. */
1021 #ifdef DEBUG_RTL8169
1022 printf("%s: Force-mode Enabled.\n", name);
1024 Cap10_100 = 0, Cap1000 = 0;
1027 Cap10_100 = PHY_Cap_10_Half;
1028 Cap1000 = PHY_Cap_Null;
1031 Cap10_100 = PHY_Cap_10_Full;
1032 Cap1000 = PHY_Cap_Null;
1035 Cap10_100 = PHY_Cap_100_Half;
1036 Cap1000 = PHY_Cap_Null;
1039 Cap10_100 = PHY_Cap_100_Full;
1040 Cap1000 = PHY_Cap_Null;
1043 Cap10_100 = PHY_Cap_Null;
1044 Cap1000 = PHY_Cap_1000_Full;
1049 mdio_write(PHY_AUTO_NEGO_REG, Cap10_100 | (val & 0x1F)); /* leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
1050 mdio_write(PHY_1000_CTRL_REG, Cap1000);
1052 #ifdef DEBUG_RTL8169
1053 printf("%s: Auto-negotiation Enabled.\n",
1056 /* enable 10/100 Full/Half Mode, leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
1057 mdio_write(PHY_AUTO_NEGO_REG,
1058 PHY_Cap_10_Half | PHY_Cap_10_Full |
1059 PHY_Cap_100_Half | PHY_Cap_100_Full |
1062 /* enable 1000 Full Mode */
1063 mdio_write(PHY_1000_CTRL_REG, PHY_Cap_1000_Full);
1067 /* Enable auto-negotiation and restart auto-nigotiation */
1068 mdio_write(PHY_CTRL_REG,
1069 PHY_Enable_Auto_Nego | PHY_Restart_Auto_Nego);
1072 /* wait for auto-negotiation process */
1073 for (i = 10000; i > 0; i--) {
1074 /* check if auto-negotiation complete */
1075 if (mdio_read(PHY_STAT_REG) & PHY_Auto_Nego_Comp) {
1077 option = RTL_R8(PHYstatus);
1078 if (option & _1000bpsF) {
1079 #ifdef DEBUG_RTL8169
1080 printf("%s: 1000Mbps Full-duplex operation.\n",
1084 #ifdef DEBUG_RTL8169
1085 printf("%s: %sMbps %s-duplex operation.\n",
1087 (option & _100bps) ? "100" :
1089 (option & FullDup) ? "Full" :
1097 } /* end for-loop to wait for auto-negotiation process */
1101 #ifdef DEBUG_RTL8169
1103 ("%s: 1000Mbps Full-duplex operation, TBI Link %s!\n",
1105 (RTL_R32(TBICSR) & TBILinkOK) ? "OK" : "Failed");
1110 tpc->RxDescArray = rtl_alloc_descs(NUM_RX_DESC);
1111 if (!tpc->RxDescArray)
1114 tpc->TxDescArray = rtl_alloc_descs(NUM_TX_DESC);
1115 if (!tpc->TxDescArray)
1121 #ifndef CONFIG_DM_ETH
1122 int rtl8169_initialize(struct bd_info *bis)
1125 int card_number = 0;
1126 struct eth_device *dev;
1131 unsigned int region;
1136 if ((devno = pci_find_devices(supported, idx++)) < 0)
1139 pci_read_config_word(devno, PCI_DEVICE_ID, &device);
1150 pci_read_config_dword(devno, PCI_BASE_ADDRESS_0 + (region * 4), &iobase);
1153 debug ("rtl8169: REALTEK RTL8169 @0x%x\n", iobase);
1155 dev = (struct eth_device *)malloc(sizeof *dev);
1157 printf("Can not allocate memory of rtl8169\n");
1161 memset(dev, 0, sizeof(*dev));
1162 sprintf (dev->name, "RTL8169#%d", card_number);
1164 dev->priv = (void *)(unsigned long)devno;
1165 dev->iobase = (int)pci_mem_to_phys(devno, iobase);
1167 dev->init = rtl_reset;
1168 dev->halt = rtl_halt;
1169 dev->send = rtl_send;
1170 dev->recv = rtl_recv;
1172 err = rtl_init(dev->iobase, dev->name, dev->enetaddr);
1174 printf(pr_fmt("failed to initialize card: %d\n"), err);
1187 #ifdef CONFIG_DM_ETH
1188 static int rtl8169_eth_probe(struct udevice *dev)
1190 struct pci_child_platdata *pplat = dev_get_parent_platdata(dev);
1191 struct rtl8169_private *priv = dev_get_priv(dev);
1192 struct eth_pdata *plat = dev_get_platdata(dev);
1197 debug("rtl8169: REALTEK RTL8169 @0x%x\n", iobase);
1198 switch (pplat->device) {
1206 dm_pci_read_config32(dev, PCI_BASE_ADDRESS_0 + region * 4, &iobase);
1208 priv->iobase = (int)dm_pci_mem_to_phys(dev, iobase);
1210 ret = rtl_init(priv->iobase, dev->name, plat->enetaddr);
1212 printf(pr_fmt("failed to initialize card: %d\n"), ret);
1217 * WAR for DHCP failure after rebooting from kernel.
1218 * Clear RxDv_Gated_En bit which was set by kernel driver.
1219 * Without this, U-Boot can't get an IP via DHCP.
1220 * Register (FuncEvent, aka MISC) and RXDV_GATED_EN bit are from
1221 * the r8169.c kernel driver.
1224 u32 val = RTL_R32(FuncEvent);
1225 debug("%s: FuncEvent/Misc (0xF0) = 0x%08X\n", __func__, val);
1226 val &= ~RxDv_Gated_En;
1227 RTL_W32(FuncEvent, val);
1232 static const struct eth_ops rtl8169_eth_ops = {
1233 .start = rtl8169_eth_start,
1234 .send = rtl8169_eth_send,
1235 .recv = rtl8169_eth_recv,
1236 .stop = rtl8169_eth_stop,
1237 .write_hwaddr = rtl8169_write_hwaddr,
1240 static const struct udevice_id rtl8169_eth_ids[] = {
1241 { .compatible = "realtek,rtl8169" },
1245 U_BOOT_DRIVER(eth_rtl8169) = {
1246 .name = "eth_rtl8169",
1248 .of_match = rtl8169_eth_ids,
1249 .probe = rtl8169_eth_probe,
1250 .ops = &rtl8169_eth_ops,
1251 .priv_auto_alloc_size = sizeof(struct rtl8169_private),
1252 .platdata_auto_alloc_size = sizeof(struct eth_pdata),
1255 U_BOOT_PCI_DEVICE(eth_rtl8169, supported);