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