Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 2 | /* |
| 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 | * |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 15 | * 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 Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 38 | /* |
| 39 | * 26 August 2006 Mihai Georgian <u-boot@linuxnotincluded.org.uk> |
| 40 | * Modified to use le32_to_cpu and cpu_to_le32 properly |
| 41 | */ |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 42 | #include <common.h> |
Simon Glass | 6333448 | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 43 | #include <cpu_func.h> |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 44 | #include <dm.h> |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 45 | #include <errno.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 46 | #include <log.h> |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 47 | #include <malloc.h> |
Simon Glass | 2dd337a | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 48 | #include <memalign.h> |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 49 | #include <net.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 50 | #include <asm/cache.h> |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 51 | #include <asm/io.h> |
| 52 | #include <pci.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 53 | #include <linux/delay.h> |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 54 | |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 55 | #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 Reding | 207edd6 | 2015-03-20 12:41:21 +0100 | [diff] [blame] | 62 | static unsigned long ioaddr; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 63 | |
| 64 | /* Condensed operations for readability. */ |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 65 | #define currticks() get_timer(0) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 66 | |
| 67 | /* media options */ |
| 68 | #define MAX_UNITS 8 |
| 69 | static 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 Reding | 75856e3 | 2014-12-09 22:25:24 -0700 | [diff] [blame] | 87 | #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 |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 92 | #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 Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 98 | /* write/read MMIO register. Notice: {read,write}[wl] do the necessary swapping */ |
Thierry Reding | 207edd6 | 2015-03-20 12:41:21 +0100 | [diff] [blame] | 99 | #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)) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 105 | |
Thierry Reding | 207edd6 | 2015-03-20 12:41:21 +0100 | [diff] [blame] | 106 | #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 Shimoda | 2b90494 | 2009-02-25 14:27:29 +0900 | [diff] [blame] | 110 | |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 111 | enum RTL8169_registers { |
| 112 | MAC0 = 0, /* Ethernet hardware address. */ |
| 113 | MAR0 = 8, /* Multicast filter. */ |
Yoshihiro Shimoda | 2877a11 | 2008-07-09 21:07:34 +0900 | [diff] [blame] | 114 | TxDescStartAddrLow = 0x20, |
| 115 | TxDescStartAddrHigh = 0x24, |
| 116 | TxHDescStartAddrLow = 0x28, |
| 117 | TxHDescStartAddrHigh = 0x2c, |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 118 | FLASH = 0x30, |
| 119 | ERSR = 0x36, |
| 120 | ChipCmd = 0x37, |
| 121 | TxPoll = 0x38, |
| 122 | IntrMask = 0x3C, |
| 123 | IntrStatus = 0x3E, |
| 124 | TxConfig = 0x40, |
| 125 | RxConfig = 0x44, |
| 126 | RxMissed = 0x4C, |
| 127 | Cfg9346 = 0x50, |
| 128 | Config0 = 0x51, |
| 129 | Config1 = 0x52, |
| 130 | Config2 = 0x53, |
| 131 | Config3 = 0x54, |
| 132 | Config4 = 0x55, |
| 133 | Config5 = 0x56, |
| 134 | MultiIntr = 0x5C, |
| 135 | PHYAR = 0x60, |
| 136 | TBICSR = 0x64, |
| 137 | TBI_ANAR = 0x68, |
| 138 | TBI_LPAR = 0x6A, |
| 139 | PHYstatus = 0x6C, |
| 140 | RxMaxSize = 0xDA, |
| 141 | CPlusCmd = 0xE0, |
Yoshihiro Shimoda | 2877a11 | 2008-07-09 21:07:34 +0900 | [diff] [blame] | 142 | RxDescStartAddrLow = 0xE4, |
| 143 | RxDescStartAddrHigh = 0xE8, |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 144 | EarlyTxThres = 0xEC, |
| 145 | FuncEvent = 0xF0, |
| 146 | FuncEventMask = 0xF4, |
| 147 | FuncPresetState = 0xF8, |
| 148 | FuncForceEvent = 0xFC, |
| 149 | }; |
| 150 | |
| 151 | enum RTL8169_register_content { |
| 152 | /*InterruptStatusBits */ |
| 153 | SYSErr = 0x8000, |
| 154 | PCSTimeout = 0x4000, |
| 155 | SWInt = 0x0100, |
| 156 | TxDescUnavail = 0x80, |
| 157 | RxFIFOOver = 0x40, |
| 158 | RxUnderrun = 0x20, |
| 159 | RxOverflow = 0x10, |
| 160 | TxErr = 0x08, |
| 161 | TxOK = 0x04, |
| 162 | RxErr = 0x02, |
| 163 | RxOK = 0x01, |
| 164 | |
| 165 | /*RxStatusDesc */ |
| 166 | RxRES = 0x00200000, |
| 167 | RxCRC = 0x00080000, |
| 168 | RxRUNT = 0x00100000, |
| 169 | RxRWT = 0x00400000, |
| 170 | |
| 171 | /*ChipCmdBits */ |
| 172 | CmdReset = 0x10, |
| 173 | CmdRxEnb = 0x08, |
| 174 | CmdTxEnb = 0x04, |
| 175 | RxBufEmpty = 0x01, |
| 176 | |
| 177 | /*Cfg9346Bits */ |
| 178 | Cfg9346_Lock = 0x00, |
| 179 | Cfg9346_Unlock = 0xC0, |
| 180 | |
| 181 | /*rx_mode_bits */ |
| 182 | AcceptErr = 0x20, |
| 183 | AcceptRunt = 0x10, |
| 184 | AcceptBroadcast = 0x08, |
| 185 | AcceptMulticast = 0x04, |
| 186 | AcceptMyPhys = 0x02, |
| 187 | AcceptAllPhys = 0x01, |
| 188 | |
| 189 | /*RxConfigBits */ |
| 190 | RxCfgFIFOShift = 13, |
| 191 | RxCfgDMAShift = 8, |
| 192 | |
| 193 | /*TxConfigBits */ |
| 194 | TxInterFrameGapShift = 24, |
| 195 | TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */ |
| 196 | |
| 197 | /*rtl8169_PHYstatus */ |
| 198 | TBI_Enable = 0x80, |
| 199 | TxFlowCtrl = 0x40, |
| 200 | RxFlowCtrl = 0x20, |
| 201 | _1000bpsF = 0x10, |
| 202 | _100bps = 0x08, |
| 203 | _10bps = 0x04, |
| 204 | LinkStatus = 0x02, |
| 205 | FullDup = 0x01, |
| 206 | |
| 207 | /*GIGABIT_PHY_registers */ |
| 208 | PHY_CTRL_REG = 0, |
| 209 | PHY_STAT_REG = 1, |
| 210 | PHY_AUTO_NEGO_REG = 4, |
| 211 | PHY_1000_CTRL_REG = 9, |
| 212 | |
| 213 | /*GIGABIT_PHY_REG_BIT */ |
| 214 | PHY_Restart_Auto_Nego = 0x0200, |
| 215 | PHY_Enable_Auto_Nego = 0x1000, |
| 216 | |
| 217 | /* PHY_STAT_REG = 1; */ |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 218 | PHY_Auto_Nego_Comp = 0x0020, |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 219 | |
| 220 | /* PHY_AUTO_NEGO_REG = 4; */ |
| 221 | PHY_Cap_10_Half = 0x0020, |
| 222 | PHY_Cap_10_Full = 0x0040, |
| 223 | PHY_Cap_100_Half = 0x0080, |
| 224 | PHY_Cap_100_Full = 0x0100, |
| 225 | |
| 226 | /* PHY_1000_CTRL_REG = 9; */ |
| 227 | PHY_Cap_1000_Full = 0x0200, |
| 228 | |
| 229 | PHY_Cap_Null = 0x0, |
| 230 | |
| 231 | /*_MediaType*/ |
| 232 | _10_Half = 0x01, |
| 233 | _10_Full = 0x02, |
| 234 | _100_Half = 0x04, |
| 235 | _100_Full = 0x08, |
| 236 | _1000_Full = 0x10, |
| 237 | |
| 238 | /*_TBICSRBit*/ |
| 239 | TBILinkOK = 0x02000000, |
Tom Warren | f9f4a1c | 2020-03-26 15:59:13 -0700 | [diff] [blame] | 240 | |
| 241 | /* FuncEvent/Misc */ |
| 242 | RxDv_Gated_En = 0x80000, |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 243 | }; |
| 244 | |
| 245 | static struct { |
| 246 | const char *name; |
| 247 | u8 version; /* depend on RTL8169 docs */ |
| 248 | u32 RxConfigMask; /* should clear the bits supported by this chip */ |
| 249 | } rtl_chip_info[] = { |
| 250 | {"RTL-8169", 0x00, 0xff7e1880,}, |
| 251 | {"RTL-8169", 0x04, 0xff7e1880,}, |
Nobuhiro Iwamatsu | 1338d1f | 2008-03-08 09:25:49 +0900 | [diff] [blame] | 252 | {"RTL-8169", 0x00, 0xff7e1880,}, |
| 253 | {"RTL-8169s/8110s", 0x02, 0xff7e1880,}, |
| 254 | {"RTL-8169s/8110s", 0x04, 0xff7e1880,}, |
| 255 | {"RTL-8169sb/8110sb", 0x10, 0xff7e1880,}, |
| 256 | {"RTL-8169sc/8110sc", 0x18, 0xff7e1880,}, |
| 257 | {"RTL-8168b/8111sb", 0x30, 0xff7e1880,}, |
| 258 | {"RTL-8168b/8111sb", 0x38, 0xff7e1880,}, |
Thierry Reding | 64c5e23 | 2019-09-11 19:19:06 +0200 | [diff] [blame] | 259 | {"RTL-8168c/8111c", 0x3c, 0xff7e1880,}, |
Thierry Reding | 433f312 | 2013-09-20 16:03:43 +0200 | [diff] [blame] | 260 | {"RTL-8168d/8111d", 0x28, 0xff7e1880,}, |
Thierry Reding | 625bcbe | 2013-09-20 16:03:44 +0200 | [diff] [blame] | 261 | {"RTL-8168evl/8111evl", 0x2e, 0xff7e1880,}, |
Thierry Reding | 9342855 | 2014-12-09 22:25:27 -0700 | [diff] [blame] | 262 | {"RTL-8168/8111g", 0x4c, 0xff7e1880,}, |
Nobuhiro Iwamatsu | 1338d1f | 2008-03-08 09:25:49 +0900 | [diff] [blame] | 263 | {"RTL-8101e", 0x34, 0xff7e1880,}, |
| 264 | {"RTL-8100e", 0x32, 0xff7e1880,}, |
Thierry Reding | 6137e41 | 2019-04-16 18:20:30 +0200 | [diff] [blame] | 265 | {"RTL-8168h/8111h", 0x54, 0xff7e1880,}, |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 266 | }; |
| 267 | |
| 268 | enum _DescStatusBit { |
| 269 | OWNbit = 0x80000000, |
| 270 | EORbit = 0x40000000, |
| 271 | FSbit = 0x20000000, |
| 272 | LSbit = 0x10000000, |
| 273 | }; |
| 274 | |
| 275 | struct TxDesc { |
| 276 | u32 status; |
| 277 | u32 vlan_tag; |
| 278 | u32 buf_addr; |
| 279 | u32 buf_Haddr; |
| 280 | }; |
| 281 | |
| 282 | struct RxDesc { |
| 283 | u32 status; |
| 284 | u32 vlan_tag; |
| 285 | u32 buf_addr; |
| 286 | u32 buf_Haddr; |
| 287 | }; |
| 288 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 289 | static unsigned char rxdata[RX_BUF_LEN]; |
| 290 | |
Thierry Reding | bcc8e4d | 2014-12-09 22:25:25 -0700 | [diff] [blame] | 291 | #define RTL8169_DESC_SIZE 16 |
| 292 | |
| 293 | #if ARCH_DMA_MINALIGN > 256 |
| 294 | # define RTL8169_ALIGN ARCH_DMA_MINALIGN |
| 295 | #else |
| 296 | # define RTL8169_ALIGN 256 |
| 297 | #endif |
| 298 | |
| 299 | /* |
| 300 | * Warn if the cache-line size is larger than the descriptor size. In such |
| 301 | * cases the driver will likely fail because the CPU needs to flush the cache |
| 302 | * when requeuing RX buffers, therefore descriptors written by the hardware |
| 303 | * may be discarded. |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 304 | * |
| 305 | * This can be fixed by defining CONFIG_SYS_NONCACHED_MEMORY which will cause |
| 306 | * the driver to allocate descriptors from a pool of non-cached memory. |
Thierry Reding | bcc8e4d | 2014-12-09 22:25:25 -0700 | [diff] [blame] | 307 | */ |
| 308 | #if RTL8169_DESC_SIZE < ARCH_DMA_MINALIGN |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 309 | #if !defined(CONFIG_SYS_NONCACHED_MEMORY) && \ |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 310 | !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_X86) |
Thierry Reding | bcc8e4d | 2014-12-09 22:25:25 -0700 | [diff] [blame] | 311 | #warning cache-line size is larger than descriptor size |
| 312 | #endif |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 313 | #endif |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 314 | |
Thierry Reding | bcc8e4d | 2014-12-09 22:25:25 -0700 | [diff] [blame] | 315 | /* |
| 316 | * Create a static buffer of size RX_BUF_SZ for each TX Descriptor. All |
| 317 | * descriptors point to a part of this buffer. |
| 318 | */ |
| 319 | DEFINE_ALIGN_BUFFER(u8, txb, NUM_TX_DESC * RX_BUF_SIZE, RTL8169_ALIGN); |
| 320 | |
| 321 | /* |
| 322 | * Create a static buffer of size RX_BUF_SZ for each RX Descriptor. All |
| 323 | * descriptors point to a part of this buffer. |
| 324 | */ |
| 325 | DEFINE_ALIGN_BUFFER(u8, rxb, NUM_RX_DESC * RX_BUF_SIZE, RTL8169_ALIGN); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 326 | |
| 327 | struct rtl8169_private { |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 328 | ulong iobase; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 329 | void *mmio_addr; /* memory map physical address */ |
| 330 | int chipset; |
| 331 | unsigned long cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */ |
| 332 | unsigned long cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */ |
| 333 | unsigned long dirty_tx; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 334 | struct TxDesc *TxDescArray; /* Index of 256-alignment Tx Descriptor buffer */ |
| 335 | struct RxDesc *RxDescArray; /* Index of 256-alignment Rx Descriptor buffer */ |
| 336 | unsigned char *RxBufferRings; /* Index of Rx Buffer */ |
| 337 | unsigned char *RxBufferRing[NUM_RX_DESC]; /* Index of Rx Buffer array */ |
| 338 | unsigned char *Tx_skbuff[NUM_TX_DESC]; |
| 339 | } tpx; |
| 340 | |
| 341 | static struct rtl8169_private *tpc; |
| 342 | |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 343 | static const unsigned int rtl8169_rx_config = |
| 344 | (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift); |
| 345 | |
| 346 | static struct pci_device_id supported[] = { |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 347 | { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8167) }, |
| 348 | { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8168) }, |
| 349 | { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169) }, |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 350 | {} |
| 351 | }; |
| 352 | |
| 353 | void mdio_write(int RegAddr, int value) |
| 354 | { |
| 355 | int i; |
| 356 | |
| 357 | RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value); |
| 358 | udelay(1000); |
| 359 | |
| 360 | for (i = 2000; i > 0; i--) { |
| 361 | /* Check if the RTL8169 has completed writing to the specified MII register */ |
| 362 | if (!(RTL_R32(PHYAR) & 0x80000000)) { |
| 363 | break; |
| 364 | } else { |
| 365 | udelay(100); |
| 366 | } |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | int mdio_read(int RegAddr) |
| 371 | { |
| 372 | int i, value = -1; |
| 373 | |
| 374 | RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16); |
| 375 | udelay(1000); |
| 376 | |
| 377 | for (i = 2000; i > 0; i--) { |
| 378 | /* Check if the RTL8169 has completed retrieving data from the specified MII register */ |
| 379 | if (RTL_R32(PHYAR) & 0x80000000) { |
| 380 | value = (int) (RTL_R32(PHYAR) & 0xFFFF); |
| 381 | break; |
| 382 | } else { |
| 383 | udelay(100); |
| 384 | } |
| 385 | } |
| 386 | return value; |
| 387 | } |
| 388 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 389 | static int rtl8169_init_board(unsigned long dev_iobase, const char *name) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 390 | { |
| 391 | int i; |
| 392 | u32 tmp; |
| 393 | |
| 394 | #ifdef DEBUG_RTL8169 |
| 395 | printf ("%s\n", __FUNCTION__); |
| 396 | #endif |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 397 | ioaddr = dev_iobase; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 398 | |
| 399 | /* Soft reset the chip. */ |
| 400 | RTL_W8(ChipCmd, CmdReset); |
| 401 | |
| 402 | /* Check that the chip has finished the reset. */ |
| 403 | for (i = 1000; i > 0; i--) |
| 404 | if ((RTL_R8(ChipCmd) & CmdReset) == 0) |
| 405 | break; |
| 406 | else |
| 407 | udelay(10); |
| 408 | |
| 409 | /* identify chip attached to board */ |
| 410 | tmp = RTL_R32(TxConfig); |
| 411 | tmp = ((tmp & 0x7c000000) + ((tmp & 0x00800000) << 2)) >> 24; |
| 412 | |
| 413 | for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--){ |
| 414 | if (tmp == rtl_chip_info[i].version) { |
| 415 | tpc->chipset = i; |
| 416 | goto match; |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | /* if unknown chip, assume array element #0, original RTL-8169 in this case */ |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 421 | printf("PCI device %s: unknown chip version, assuming RTL-8169\n", |
| 422 | name); |
Wolfgang Denk | 8d54188 | 2008-07-10 13:16:09 +0200 | [diff] [blame] | 423 | printf("PCI device: TxConfig = 0x%lX\n", (unsigned long) RTL_R32(TxConfig)); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 424 | tpc->chipset = 0; |
| 425 | |
| 426 | match: |
| 427 | return 0; |
| 428 | } |
| 429 | |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 430 | /* |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 431 | * TX and RX descriptors are 16 bytes. This causes problems with the cache |
| 432 | * maintenance on CPUs where the cache-line size exceeds the size of these |
| 433 | * descriptors. What will happen is that when the driver receives a packet |
| 434 | * it will be immediately requeued for the hardware to reuse. The CPU will |
| 435 | * therefore need to flush the cache-line containing the descriptor, which |
| 436 | * will cause all other descriptors in the same cache-line to be flushed |
| 437 | * along with it. If one of those descriptors had been written to by the |
| 438 | * device those changes (and the associated packet) will be lost. |
| 439 | * |
| 440 | * To work around this, we make use of non-cached memory if available. If |
| 441 | * descriptors are mapped uncached there's no need to manually flush them |
| 442 | * or invalidate them. |
| 443 | * |
| 444 | * Note that this only applies to descriptors. The packet data buffers do |
| 445 | * not have the same constraints since they are 1536 bytes large, so they |
| 446 | * are unlikely to share cache-lines. |
| 447 | */ |
| 448 | static void *rtl_alloc_descs(unsigned int num) |
| 449 | { |
| 450 | size_t size = num * RTL8169_DESC_SIZE; |
| 451 | |
| 452 | #ifdef CONFIG_SYS_NONCACHED_MEMORY |
| 453 | return (void *)noncached_alloc(size, RTL8169_ALIGN); |
| 454 | #else |
| 455 | return memalign(RTL8169_ALIGN, size); |
| 456 | #endif |
| 457 | } |
| 458 | |
| 459 | /* |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 460 | * Cache maintenance functions. These are simple wrappers around the more |
| 461 | * general purpose flush_cache() and invalidate_dcache_range() functions. |
| 462 | */ |
| 463 | |
| 464 | static void rtl_inval_rx_desc(struct RxDesc *desc) |
| 465 | { |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 466 | #ifndef CONFIG_SYS_NONCACHED_MEMORY |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 467 | unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1); |
| 468 | unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN); |
| 469 | |
| 470 | invalidate_dcache_range(start, end); |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 471 | #endif |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 472 | } |
| 473 | |
| 474 | static void rtl_flush_rx_desc(struct RxDesc *desc) |
| 475 | { |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 476 | #ifndef CONFIG_SYS_NONCACHED_MEMORY |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 477 | flush_cache((unsigned long)desc, sizeof(*desc)); |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 478 | #endif |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | static void rtl_inval_tx_desc(struct TxDesc *desc) |
| 482 | { |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 483 | #ifndef CONFIG_SYS_NONCACHED_MEMORY |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 484 | unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1); |
| 485 | unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN); |
| 486 | |
| 487 | invalidate_dcache_range(start, end); |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 488 | #endif |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | static void rtl_flush_tx_desc(struct TxDesc *desc) |
| 492 | { |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 493 | #ifndef CONFIG_SYS_NONCACHED_MEMORY |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 494 | flush_cache((unsigned long)desc, sizeof(*desc)); |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 495 | #endif |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | static void rtl_inval_buffer(void *buf, size_t size) |
| 499 | { |
| 500 | unsigned long start = (unsigned long)buf & ~(ARCH_DMA_MINALIGN - 1); |
| 501 | unsigned long end = ALIGN(start + size, ARCH_DMA_MINALIGN); |
| 502 | |
| 503 | invalidate_dcache_range(start, end); |
| 504 | } |
| 505 | |
| 506 | static void rtl_flush_buffer(void *buf, size_t size) |
| 507 | { |
| 508 | flush_cache((unsigned long)buf, size); |
| 509 | } |
| 510 | |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 511 | /************************************************************************** |
| 512 | RECV - Receive a frame |
| 513 | ***************************************************************************/ |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 514 | static int rtl_recv_common(struct udevice *dev, unsigned long dev_iobase, |
| 515 | uchar **packetp) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 516 | { |
| 517 | /* return true if there's an ethernet packet ready to read */ |
| 518 | /* nic->packet should contain data on return */ |
| 519 | /* nic->packetlen should contain length of data */ |
| 520 | int cur_rx; |
| 521 | int length = 0; |
| 522 | |
| 523 | #ifdef DEBUG_RTL8169_RX |
| 524 | printf ("%s\n", __FUNCTION__); |
| 525 | #endif |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 526 | ioaddr = dev_iobase; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 527 | |
| 528 | cur_rx = tpc->cur_rx; |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 529 | |
| 530 | rtl_inval_rx_desc(&tpc->RxDescArray[cur_rx]); |
| 531 | |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 532 | if ((le32_to_cpu(tpc->RxDescArray[cur_rx].status) & OWNbit) == 0) { |
| 533 | if (!(le32_to_cpu(tpc->RxDescArray[cur_rx].status) & RxRES)) { |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 534 | length = (int) (le32_to_cpu(tpc->RxDescArray[cur_rx]. |
| 535 | status) & 0x00001FFF) - 4; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 536 | |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 537 | rtl_inval_buffer(tpc->RxBufferRing[cur_rx], length); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 538 | memcpy(rxdata, tpc->RxBufferRing[cur_rx], length); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 539 | |
| 540 | if (cur_rx == NUM_RX_DESC - 1) |
| 541 | tpc->RxDescArray[cur_rx].status = |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 542 | cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 543 | else |
| 544 | tpc->RxDescArray[cur_rx].status = |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 545 | cpu_to_le32(OWNbit + RX_BUF_SIZE); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 546 | tpc->RxDescArray[cur_rx].buf_addr = cpu_to_le32( |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 547 | dm_pci_mem_to_phys(dev, |
| 548 | (pci_addr_t)(unsigned long) |
| 549 | tpc->RxBufferRing[cur_rx])); |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 550 | rtl_flush_rx_desc(&tpc->RxDescArray[cur_rx]); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 551 | *packetp = rxdata; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 552 | } else { |
| 553 | puts("Error Rx"); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 554 | length = -EIO; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 555 | } |
| 556 | cur_rx = (cur_rx + 1) % NUM_RX_DESC; |
| 557 | tpc->cur_rx = cur_rx; |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 558 | return length; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 559 | |
Nobuhiro Iwamatsu | 1338d1f | 2008-03-08 09:25:49 +0900 | [diff] [blame] | 560 | } else { |
| 561 | ushort sts = RTL_R8(IntrStatus); |
| 562 | RTL_W8(IntrStatus, sts & ~(TxErr | RxErr | SYSErr)); |
| 563 | udelay(100); /* wait */ |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 564 | } |
| 565 | tpc->cur_rx = cur_rx; |
| 566 | return (0); /* initially as this is called to flush the input */ |
| 567 | } |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 568 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 569 | int rtl8169_eth_recv(struct udevice *dev, int flags, uchar **packetp) |
| 570 | { |
| 571 | struct rtl8169_private *priv = dev_get_priv(dev); |
| 572 | |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 573 | return rtl_recv_common(dev, priv->iobase, packetp); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 574 | } |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 575 | |
| 576 | #define HZ 1000 |
| 577 | /************************************************************************** |
| 578 | SEND - Transmit a frame |
| 579 | ***************************************************************************/ |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 580 | static int rtl_send_common(struct udevice *dev, unsigned long dev_iobase, |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 581 | void *packet, int length) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 582 | { |
| 583 | /* send the packet to destination */ |
| 584 | |
| 585 | u32 to; |
| 586 | u8 *ptxb; |
| 587 | int entry = tpc->cur_tx % NUM_TX_DESC; |
| 588 | u32 len = length; |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 589 | int ret; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 590 | |
| 591 | #ifdef DEBUG_RTL8169_TX |
| 592 | int stime = currticks(); |
| 593 | printf ("%s\n", __FUNCTION__); |
| 594 | printf("sending %d bytes\n", len); |
| 595 | #endif |
| 596 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 597 | ioaddr = dev_iobase; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 598 | |
| 599 | /* point to the current txb incase multiple tx_rings are used */ |
| 600 | ptxb = tpc->Tx_skbuff[entry * MAX_ETH_FRAME_SIZE]; |
| 601 | memcpy(ptxb, (char *)packet, (int)length); |
| 602 | |
| 603 | while (len < ETH_ZLEN) |
| 604 | ptxb[len++] = '\0'; |
| 605 | |
Peter Chubb | 1b0d36a | 2016-09-14 01:29:03 +0000 | [diff] [blame] | 606 | rtl_flush_buffer(ptxb, ALIGN(len, RTL8169_ALIGN)); |
| 607 | |
Yoshihiro Shimoda | 2877a11 | 2008-07-09 21:07:34 +0900 | [diff] [blame] | 608 | tpc->TxDescArray[entry].buf_Haddr = 0; |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 609 | tpc->TxDescArray[entry].buf_addr = cpu_to_le32( |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 610 | dm_pci_mem_to_phys(dev, (pci_addr_t)(unsigned long)ptxb)); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 611 | if (entry != (NUM_TX_DESC - 1)) { |
| 612 | tpc->TxDescArray[entry].status = |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 613 | cpu_to_le32((OWNbit | FSbit | LSbit) | |
| 614 | ((len > ETH_ZLEN) ? len : ETH_ZLEN)); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 615 | } else { |
| 616 | tpc->TxDescArray[entry].status = |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 617 | cpu_to_le32((OWNbit | EORbit | FSbit | LSbit) | |
| 618 | ((len > ETH_ZLEN) ? len : ETH_ZLEN)); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 619 | } |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 620 | rtl_flush_tx_desc(&tpc->TxDescArray[entry]); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 621 | RTL_W8(TxPoll, 0x40); /* set polling bit */ |
| 622 | |
| 623 | tpc->cur_tx++; |
| 624 | to = currticks() + TX_TIMEOUT; |
Yoshihiro Shimoda | 4a46566 | 2009-02-25 14:27:24 +0900 | [diff] [blame] | 625 | do { |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 626 | rtl_inval_tx_desc(&tpc->TxDescArray[entry]); |
Yoshihiro Shimoda | 4a46566 | 2009-02-25 14:27:24 +0900 | [diff] [blame] | 627 | } while ((le32_to_cpu(tpc->TxDescArray[entry].status) & OWNbit) |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 628 | && (currticks() < to)); /* wait */ |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 629 | |
| 630 | if (currticks() >= to) { |
| 631 | #ifdef DEBUG_RTL8169_TX |
Thierry Reding | 20ac869 | 2013-09-20 16:03:41 +0200 | [diff] [blame] | 632 | puts("tx timeout/error\n"); |
| 633 | printf("%s elapsed time : %lu\n", __func__, currticks()-stime); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 634 | #endif |
Oleksandr Tymoshenko | 51d22bb | 2016-07-01 13:22:00 -0700 | [diff] [blame] | 635 | ret = -ETIMEDOUT; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 636 | } else { |
| 637 | #ifdef DEBUG_RTL8169_TX |
| 638 | puts("tx done\n"); |
| 639 | #endif |
Oleksandr Tymoshenko | 51d22bb | 2016-07-01 13:22:00 -0700 | [diff] [blame] | 640 | ret = 0; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 641 | } |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 642 | /* Delay to make net console (nc) work properly */ |
| 643 | udelay(20); |
| 644 | return ret; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 645 | } |
| 646 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 647 | int rtl8169_eth_send(struct udevice *dev, void *packet, int length) |
| 648 | { |
| 649 | struct rtl8169_private *priv = dev_get_priv(dev); |
| 650 | |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 651 | return rtl_send_common(dev, priv->iobase, packet, length); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 652 | } |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 653 | |
| 654 | static void rtl8169_set_rx_mode(void) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 655 | { |
| 656 | u32 mc_filter[2]; /* Multicast hash filter */ |
| 657 | int rx_mode; |
| 658 | u32 tmp = 0; |
| 659 | |
| 660 | #ifdef DEBUG_RTL8169 |
| 661 | printf ("%s\n", __FUNCTION__); |
| 662 | #endif |
| 663 | |
| 664 | /* IFF_ALLMULTI */ |
| 665 | /* Too many to filter perfectly -- accept all multicasts. */ |
| 666 | rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys; |
| 667 | mc_filter[1] = mc_filter[0] = 0xffffffff; |
| 668 | |
| 669 | tmp = rtl8169_rx_config | rx_mode | (RTL_R32(RxConfig) & |
| 670 | rtl_chip_info[tpc->chipset].RxConfigMask); |
| 671 | |
| 672 | RTL_W32(RxConfig, tmp); |
| 673 | RTL_W32(MAR0 + 0, mc_filter[0]); |
| 674 | RTL_W32(MAR0 + 4, mc_filter[1]); |
| 675 | } |
| 676 | |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 677 | static void rtl8169_hw_start(struct udevice *dev) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 678 | { |
| 679 | u32 i; |
| 680 | |
| 681 | #ifdef DEBUG_RTL8169 |
| 682 | int stime = currticks(); |
| 683 | printf ("%s\n", __FUNCTION__); |
| 684 | #endif |
| 685 | |
| 686 | #if 0 |
| 687 | /* Soft reset the chip. */ |
| 688 | RTL_W8(ChipCmd, CmdReset); |
| 689 | |
| 690 | /* Check that the chip has finished the reset. */ |
| 691 | for (i = 1000; i > 0; i--) { |
| 692 | if ((RTL_R8(ChipCmd) & CmdReset) == 0) |
| 693 | break; |
| 694 | else |
| 695 | udelay(10); |
| 696 | } |
| 697 | #endif |
| 698 | |
| 699 | RTL_W8(Cfg9346, Cfg9346_Unlock); |
Yoshihiro Shimoda | 2877a11 | 2008-07-09 21:07:34 +0900 | [diff] [blame] | 700 | |
| 701 | /* RTL-8169sb/8110sb or previous version */ |
| 702 | if (tpc->chipset <= 5) |
| 703 | RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb); |
| 704 | |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 705 | RTL_W8(EarlyTxThres, EarlyTxThld); |
| 706 | |
| 707 | /* For gigabit rtl8169 */ |
| 708 | RTL_W16(RxMaxSize, RxPacketMaxSize); |
| 709 | |
| 710 | /* Set Rx Config register */ |
| 711 | i = rtl8169_rx_config | (RTL_R32(RxConfig) & |
| 712 | rtl_chip_info[tpc->chipset].RxConfigMask); |
| 713 | RTL_W32(RxConfig, i); |
| 714 | |
| 715 | /* Set DMA burst size and Interframe Gap Time */ |
| 716 | RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) | |
| 717 | (InterFrameGap << TxInterFrameGapShift)); |
| 718 | |
| 719 | |
| 720 | tpc->cur_rx = 0; |
| 721 | |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 722 | RTL_W32(TxDescStartAddrLow, dm_pci_mem_to_phys(dev, |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 723 | (pci_addr_t)(unsigned long)tpc->TxDescArray)); |
Yoshihiro Shimoda | 2877a11 | 2008-07-09 21:07:34 +0900 | [diff] [blame] | 724 | RTL_W32(TxDescStartAddrHigh, (unsigned long)0); |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 725 | RTL_W32(RxDescStartAddrLow, dm_pci_mem_to_phys( |
| 726 | dev, (pci_addr_t)(unsigned long)tpc->RxDescArray)); |
Yoshihiro Shimoda | 2877a11 | 2008-07-09 21:07:34 +0900 | [diff] [blame] | 727 | RTL_W32(RxDescStartAddrHigh, (unsigned long)0); |
| 728 | |
| 729 | /* RTL-8169sc/8110sc or later version */ |
| 730 | if (tpc->chipset > 5) |
| 731 | RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb); |
| 732 | |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 733 | RTL_W8(Cfg9346, Cfg9346_Lock); |
| 734 | udelay(10); |
| 735 | |
| 736 | RTL_W32(RxMissed, 0); |
| 737 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 738 | rtl8169_set_rx_mode(); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 739 | |
| 740 | /* no early-rx interrupts */ |
| 741 | RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000); |
| 742 | |
| 743 | #ifdef DEBUG_RTL8169 |
Thierry Reding | 20ac869 | 2013-09-20 16:03:41 +0200 | [diff] [blame] | 744 | printf("%s elapsed time : %lu\n", __func__, currticks()-stime); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 745 | #endif |
| 746 | } |
| 747 | |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 748 | static void rtl8169_init_ring(struct udevice *dev) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 749 | { |
| 750 | int i; |
| 751 | |
| 752 | #ifdef DEBUG_RTL8169 |
| 753 | int stime = currticks(); |
| 754 | printf ("%s\n", __FUNCTION__); |
| 755 | #endif |
| 756 | |
| 757 | tpc->cur_rx = 0; |
| 758 | tpc->cur_tx = 0; |
| 759 | tpc->dirty_tx = 0; |
| 760 | memset(tpc->TxDescArray, 0x0, NUM_TX_DESC * sizeof(struct TxDesc)); |
| 761 | memset(tpc->RxDescArray, 0x0, NUM_RX_DESC * sizeof(struct RxDesc)); |
| 762 | |
| 763 | for (i = 0; i < NUM_TX_DESC; i++) { |
| 764 | tpc->Tx_skbuff[i] = &txb[i]; |
| 765 | } |
| 766 | |
| 767 | for (i = 0; i < NUM_RX_DESC; i++) { |
| 768 | if (i == (NUM_RX_DESC - 1)) |
| 769 | tpc->RxDescArray[i].status = |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 770 | cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 771 | else |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 772 | tpc->RxDescArray[i].status = |
| 773 | cpu_to_le32(OWNbit + RX_BUF_SIZE); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 774 | |
| 775 | tpc->RxBufferRing[i] = &rxb[i * RX_BUF_SIZE]; |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 776 | tpc->RxDescArray[i].buf_addr = cpu_to_le32(dm_pci_mem_to_phys( |
| 777 | dev, (pci_addr_t)(unsigned long)tpc->RxBufferRing[i])); |
Thierry Reding | 5c1ba96 | 2013-09-20 16:03:42 +0200 | [diff] [blame] | 778 | rtl_flush_rx_desc(&tpc->RxDescArray[i]); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 779 | } |
| 780 | |
| 781 | #ifdef DEBUG_RTL8169 |
Thierry Reding | 20ac869 | 2013-09-20 16:03:41 +0200 | [diff] [blame] | 782 | printf("%s elapsed time : %lu\n", __func__, currticks()-stime); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 783 | #endif |
| 784 | } |
| 785 | |
Stephen Warren | 9fe7fb5 | 2016-04-26 15:29:00 -0600 | [diff] [blame] | 786 | static void rtl8169_common_start(struct udevice *dev, unsigned char *enetaddr, |
| 787 | unsigned long dev_iobase) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 788 | { |
| 789 | int i; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 790 | |
| 791 | #ifdef DEBUG_RTL8169 |
| 792 | int stime = currticks(); |
| 793 | printf ("%s\n", __FUNCTION__); |
| 794 | #endif |
| 795 | |
Stephen Warren | 9fe7fb5 | 2016-04-26 15:29:00 -0600 | [diff] [blame] | 796 | ioaddr = dev_iobase; |
| 797 | |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 798 | rtl8169_init_ring(dev); |
| 799 | rtl8169_hw_start(dev); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 800 | /* Construct a perfect filter frame with the mac address as first match |
| 801 | * and broadcast for all others */ |
| 802 | for (i = 0; i < 192; i++) |
| 803 | txb[i] = 0xFF; |
| 804 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 805 | txb[0] = enetaddr[0]; |
| 806 | txb[1] = enetaddr[1]; |
| 807 | txb[2] = enetaddr[2]; |
| 808 | txb[3] = enetaddr[3]; |
| 809 | txb[4] = enetaddr[4]; |
| 810 | txb[5] = enetaddr[5]; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 811 | |
| 812 | #ifdef DEBUG_RTL8169 |
Thierry Reding | 20ac869 | 2013-09-20 16:03:41 +0200 | [diff] [blame] | 813 | printf("%s elapsed time : %lu\n", __func__, currticks()-stime); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 814 | #endif |
| 815 | } |
| 816 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 817 | static int rtl8169_eth_start(struct udevice *dev) |
| 818 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 819 | struct eth_pdata *plat = dev_get_plat(dev); |
Stephen Warren | 9fe7fb5 | 2016-04-26 15:29:00 -0600 | [diff] [blame] | 820 | struct rtl8169_private *priv = dev_get_priv(dev); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 821 | |
Stephen Warren | 9fe7fb5 | 2016-04-26 15:29:00 -0600 | [diff] [blame] | 822 | rtl8169_common_start(dev, plat->enetaddr, priv->iobase); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 823 | |
| 824 | return 0; |
| 825 | } |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 826 | |
| 827 | static void rtl_halt_common(unsigned long dev_iobase) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 828 | { |
| 829 | int i; |
| 830 | |
| 831 | #ifdef DEBUG_RTL8169 |
| 832 | printf ("%s\n", __FUNCTION__); |
| 833 | #endif |
| 834 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 835 | ioaddr = dev_iobase; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 836 | |
| 837 | /* Stop the chip's Tx and Rx DMA processes. */ |
| 838 | RTL_W8(ChipCmd, 0x00); |
| 839 | |
| 840 | /* Disable interrupts by clearing the interrupt mask. */ |
| 841 | RTL_W16(IntrMask, 0x0000); |
| 842 | |
| 843 | RTL_W32(RxMissed, 0); |
| 844 | |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 845 | for (i = 0; i < NUM_RX_DESC; i++) { |
| 846 | tpc->RxBufferRing[i] = NULL; |
| 847 | } |
| 848 | } |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 849 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 850 | void rtl8169_eth_stop(struct udevice *dev) |
| 851 | { |
| 852 | struct rtl8169_private *priv = dev_get_priv(dev); |
| 853 | |
| 854 | rtl_halt_common(priv->iobase); |
| 855 | } |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 856 | |
Thierry Reding | a02d60f | 2019-04-16 18:20:29 +0200 | [diff] [blame] | 857 | static int rtl8169_write_hwaddr(struct udevice *dev) |
| 858 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 859 | struct eth_pdata *plat = dev_get_plat(dev); |
Thierry Reding | a02d60f | 2019-04-16 18:20:29 +0200 | [diff] [blame] | 860 | unsigned int i; |
| 861 | |
| 862 | RTL_W8(Cfg9346, Cfg9346_Unlock); |
| 863 | |
| 864 | for (i = 0; i < MAC_ADDR_LEN; i++) |
| 865 | RTL_W8(MAC0 + i, plat->enetaddr[i]); |
| 866 | |
| 867 | RTL_W8(Cfg9346, Cfg9346_Lock); |
| 868 | |
| 869 | return 0; |
| 870 | } |
Thierry Reding | a02d60f | 2019-04-16 18:20:29 +0200 | [diff] [blame] | 871 | |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 872 | /************************************************************************** |
| 873 | INIT - Look for an adapter, this routine's visible to the outside |
| 874 | ***************************************************************************/ |
| 875 | |
| 876 | #define board_found 1 |
| 877 | #define valid_link 0 |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 878 | static int rtl_init(unsigned long dev_ioaddr, const char *name, |
| 879 | unsigned char *enetaddr) |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 880 | { |
| 881 | static int board_idx = -1; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 882 | int i, rc; |
| 883 | int option = -1, Cap10_100 = 0, Cap1000 = 0; |
| 884 | |
| 885 | #ifdef DEBUG_RTL8169 |
| 886 | printf ("%s\n", __FUNCTION__); |
| 887 | #endif |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 888 | ioaddr = dev_ioaddr; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 889 | |
| 890 | board_idx++; |
| 891 | |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 892 | /* point to private storage */ |
| 893 | tpc = &tpx; |
| 894 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 895 | rc = rtl8169_init_board(ioaddr, name); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 896 | if (rc) |
| 897 | return rc; |
| 898 | |
| 899 | /* Get MAC address. FIXME: read EEPROM */ |
| 900 | for (i = 0; i < MAC_ADDR_LEN; i++) |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 901 | enetaddr[i] = RTL_R8(MAC0 + i); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 902 | |
| 903 | #ifdef DEBUG_RTL8169 |
Yoshihiro Shimoda | 2877a11 | 2008-07-09 21:07:34 +0900 | [diff] [blame] | 904 | printf("chipset = %d\n", tpc->chipset); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 905 | printf("MAC Address"); |
| 906 | for (i = 0; i < MAC_ADDR_LEN; i++) |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 907 | printf(":%02x", enetaddr[i]); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 908 | putc('\n'); |
| 909 | #endif |
| 910 | |
| 911 | #ifdef DEBUG_RTL8169 |
| 912 | /* Print out some hardware info */ |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 913 | printf("%s: at ioaddr 0x%lx\n", name, ioaddr); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 914 | #endif |
| 915 | |
| 916 | /* if TBI is not endbled */ |
| 917 | if (!(RTL_R8(PHYstatus) & TBI_Enable)) { |
| 918 | int val = mdio_read(PHY_AUTO_NEGO_REG); |
| 919 | |
| 920 | option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx]; |
| 921 | /* Force RTL8169 in 10/100/1000 Full/Half mode. */ |
| 922 | if (option > 0) { |
| 923 | #ifdef DEBUG_RTL8169 |
Bin Meng | dbb099f | 2016-03-17 23:27:44 -0700 | [diff] [blame] | 924 | printf("%s: Force-mode Enabled.\n", name); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 925 | #endif |
| 926 | Cap10_100 = 0, Cap1000 = 0; |
| 927 | switch (option) { |
| 928 | case _10_Half: |
| 929 | Cap10_100 = PHY_Cap_10_Half; |
| 930 | Cap1000 = PHY_Cap_Null; |
| 931 | break; |
| 932 | case _10_Full: |
| 933 | Cap10_100 = PHY_Cap_10_Full; |
| 934 | Cap1000 = PHY_Cap_Null; |
| 935 | break; |
| 936 | case _100_Half: |
| 937 | Cap10_100 = PHY_Cap_100_Half; |
| 938 | Cap1000 = PHY_Cap_Null; |
| 939 | break; |
| 940 | case _100_Full: |
| 941 | Cap10_100 = PHY_Cap_100_Full; |
| 942 | Cap1000 = PHY_Cap_Null; |
| 943 | break; |
| 944 | case _1000_Full: |
| 945 | Cap10_100 = PHY_Cap_Null; |
| 946 | Cap1000 = PHY_Cap_1000_Full; |
| 947 | break; |
| 948 | default: |
| 949 | break; |
| 950 | } |
| 951 | mdio_write(PHY_AUTO_NEGO_REG, Cap10_100 | (val & 0x1F)); /* leave PHY_AUTO_NEGO_REG bit4:0 unchanged */ |
| 952 | mdio_write(PHY_1000_CTRL_REG, Cap1000); |
| 953 | } else { |
| 954 | #ifdef DEBUG_RTL8169 |
| 955 | printf("%s: Auto-negotiation Enabled.\n", |
Bin Meng | dbb099f | 2016-03-17 23:27:44 -0700 | [diff] [blame] | 956 | name); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 957 | #endif |
| 958 | /* enable 10/100 Full/Half Mode, leave PHY_AUTO_NEGO_REG bit4:0 unchanged */ |
| 959 | mdio_write(PHY_AUTO_NEGO_REG, |
| 960 | PHY_Cap_10_Half | PHY_Cap_10_Full | |
| 961 | PHY_Cap_100_Half | PHY_Cap_100_Full | |
| 962 | (val & 0x1F)); |
| 963 | |
| 964 | /* enable 1000 Full Mode */ |
| 965 | mdio_write(PHY_1000_CTRL_REG, PHY_Cap_1000_Full); |
| 966 | |
| 967 | } |
| 968 | |
| 969 | /* Enable auto-negotiation and restart auto-nigotiation */ |
| 970 | mdio_write(PHY_CTRL_REG, |
| 971 | PHY_Enable_Auto_Nego | PHY_Restart_Auto_Nego); |
| 972 | udelay(100); |
| 973 | |
| 974 | /* wait for auto-negotiation process */ |
| 975 | for (i = 10000; i > 0; i--) { |
| 976 | /* check if auto-negotiation complete */ |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 977 | if (mdio_read(PHY_STAT_REG) & PHY_Auto_Nego_Comp) { |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 978 | udelay(100); |
| 979 | option = RTL_R8(PHYstatus); |
| 980 | if (option & _1000bpsF) { |
| 981 | #ifdef DEBUG_RTL8169 |
| 982 | printf("%s: 1000Mbps Full-duplex operation.\n", |
Bin Meng | dbb099f | 2016-03-17 23:27:44 -0700 | [diff] [blame] | 983 | name); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 984 | #endif |
| 985 | } else { |
| 986 | #ifdef DEBUG_RTL8169 |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 987 | printf("%s: %sMbps %s-duplex operation.\n", |
Bin Meng | dbb099f | 2016-03-17 23:27:44 -0700 | [diff] [blame] | 988 | name, |
Guennadi Liakhovetski | de20a4f | 2007-11-20 13:14:20 +0100 | [diff] [blame] | 989 | (option & _100bps) ? "100" : |
| 990 | "10", |
| 991 | (option & FullDup) ? "Full" : |
| 992 | "Half"); |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 993 | #endif |
| 994 | } |
| 995 | break; |
| 996 | } else { |
| 997 | udelay(100); |
| 998 | } |
| 999 | } /* end for-loop to wait for auto-negotiation process */ |
| 1000 | |
| 1001 | } else { |
| 1002 | udelay(100); |
| 1003 | #ifdef DEBUG_RTL8169 |
| 1004 | printf |
| 1005 | ("%s: 1000Mbps Full-duplex operation, TBI Link %s!\n", |
Bin Meng | dbb099f | 2016-03-17 23:27:44 -0700 | [diff] [blame] | 1006 | name, |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 1007 | (RTL_R32(TBICSR) & TBILinkOK) ? "OK" : "Failed"); |
| 1008 | #endif |
| 1009 | } |
| 1010 | |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 1011 | |
| 1012 | tpc->RxDescArray = rtl_alloc_descs(NUM_RX_DESC); |
| 1013 | if (!tpc->RxDescArray) |
| 1014 | return -ENOMEM; |
Thierry Reding | bcc8e4d | 2014-12-09 22:25:25 -0700 | [diff] [blame] | 1015 | |
Thierry Reding | 209c648 | 2014-12-09 22:25:26 -0700 | [diff] [blame] | 1016 | tpc->TxDescArray = rtl_alloc_descs(NUM_TX_DESC); |
| 1017 | if (!tpc->TxDescArray) |
| 1018 | return -ENOMEM; |
| 1019 | |
| 1020 | return 0; |
wdenk | a627048 | 2004-04-18 22:03:42 +0000 | [diff] [blame] | 1021 | } |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 1022 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 1023 | static int rtl8169_eth_probe(struct udevice *dev) |
| 1024 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 1025 | struct pci_child_plat *pplat = dev_get_parent_plat(dev); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 1026 | struct rtl8169_private *priv = dev_get_priv(dev); |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 1027 | struct eth_pdata *plat = dev_get_plat(dev); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 1028 | u32 iobase; |
| 1029 | int region; |
| 1030 | int ret; |
| 1031 | |
| 1032 | debug("rtl8169: REALTEK RTL8169 @0x%x\n", iobase); |
| 1033 | switch (pplat->device) { |
| 1034 | case 0x8168: |
| 1035 | region = 2; |
| 1036 | break; |
| 1037 | default: |
| 1038 | region = 1; |
| 1039 | break; |
| 1040 | } |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 1041 | dm_pci_read_config32(dev, PCI_BASE_ADDRESS_0 + region * 4, &iobase); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 1042 | iobase &= ~0xf; |
Simon Glass | 86621d4 | 2015-11-29 13:18:04 -0700 | [diff] [blame] | 1043 | priv->iobase = (int)dm_pci_mem_to_phys(dev, iobase); |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 1044 | |
| 1045 | ret = rtl_init(priv->iobase, dev->name, plat->enetaddr); |
| 1046 | if (ret < 0) { |
| 1047 | printf(pr_fmt("failed to initialize card: %d\n"), ret); |
| 1048 | return ret; |
| 1049 | } |
| 1050 | |
Tom Warren | f9f4a1c | 2020-03-26 15:59:13 -0700 | [diff] [blame] | 1051 | /* |
| 1052 | * WAR for DHCP failure after rebooting from kernel. |
| 1053 | * Clear RxDv_Gated_En bit which was set by kernel driver. |
| 1054 | * Without this, U-Boot can't get an IP via DHCP. |
| 1055 | * Register (FuncEvent, aka MISC) and RXDV_GATED_EN bit are from |
| 1056 | * the r8169.c kernel driver. |
| 1057 | */ |
| 1058 | |
| 1059 | u32 val = RTL_R32(FuncEvent); |
| 1060 | debug("%s: FuncEvent/Misc (0xF0) = 0x%08X\n", __func__, val); |
| 1061 | val &= ~RxDv_Gated_En; |
| 1062 | RTL_W32(FuncEvent, val); |
| 1063 | |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 1064 | return 0; |
| 1065 | } |
| 1066 | |
| 1067 | static const struct eth_ops rtl8169_eth_ops = { |
| 1068 | .start = rtl8169_eth_start, |
| 1069 | .send = rtl8169_eth_send, |
| 1070 | .recv = rtl8169_eth_recv, |
| 1071 | .stop = rtl8169_eth_stop, |
Thierry Reding | a02d60f | 2019-04-16 18:20:29 +0200 | [diff] [blame] | 1072 | .write_hwaddr = rtl8169_write_hwaddr, |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 1073 | }; |
| 1074 | |
| 1075 | static const struct udevice_id rtl8169_eth_ids[] = { |
| 1076 | { .compatible = "realtek,rtl8169" }, |
| 1077 | { } |
| 1078 | }; |
| 1079 | |
| 1080 | U_BOOT_DRIVER(eth_rtl8169) = { |
| 1081 | .name = "eth_rtl8169", |
| 1082 | .id = UCLASS_ETH, |
| 1083 | .of_match = rtl8169_eth_ids, |
| 1084 | .probe = rtl8169_eth_probe, |
| 1085 | .ops = &rtl8169_eth_ops, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 1086 | .priv_auto = sizeof(struct rtl8169_private), |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 1087 | .plat_auto = sizeof(struct eth_pdata), |
Simon Glass | f2acb53 | 2015-07-06 16:47:45 -0600 | [diff] [blame] | 1088 | }; |
| 1089 | |
| 1090 | U_BOOT_PCI_DEVICE(eth_rtl8169, supported); |