blob: c47485a969cd1d009ed33bb0f5f641345649eb4c [file] [log] [blame]
wdenka6270482004-04-18 22:03:42 +00001/*
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 Denkd79de1d2013-07-08 09:37:19 +020014 * SPDX-License-Identifier: GPL-2.0+
wdenka6270482004-04-18 22:03:42 +000015*
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 Liakhovetskide20a4f2007-11-20 13:14:20 +010039/*
40 * 26 August 2006 Mihai Georgian <u-boot@linuxnotincluded.org.uk>
41 * Modified to use le32_to_cpu and cpu_to_le32 properly
42 */
wdenka6270482004-04-18 22:03:42 +000043#include <common.h>
44#include <malloc.h>
45#include <net.h>
Ben Warren26425a62008-08-31 09:49:42 -070046#include <netdev.h>
wdenka6270482004-04-18 22:03:42 +000047#include <asm/io.h>
48#include <pci.h>
49
wdenka6270482004-04-18 22:03:42 +000050#undef DEBUG_RTL8169
51#undef DEBUG_RTL8169_TX
52#undef DEBUG_RTL8169_RX
53
54#define drv_version "v1.5"
55#define drv_date "01-17-2004"
56
57static u32 ioaddr;
58
59/* Condensed operations for readability. */
wdenka6270482004-04-18 22:03:42 +000060#define currticks() get_timer(0)
wdenka6270482004-04-18 22:03:42 +000061
62/* media options */
63#define MAX_UNITS 8
64static int media[MAX_UNITS] = { -1, -1, -1, -1, -1, -1, -1, -1 };
65
66/* MAC address length*/
67#define MAC_ADDR_LEN 6
68
69/* max supported gigabit ethernet frame size -- must be at least (dev->mtu+14+4).*/
70#define MAX_ETH_FRAME_SIZE 1536
71
72#define TX_FIFO_THRESH 256 /* In bytes */
73
74#define RX_FIFO_THRESH 7 /* 7 means NO threshold, Rx buffer level before first PCI xfer. */
75#define RX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
76#define TX_DMA_BURST 6 /* Maximum PCI burst, '6' is 1024 */
77#define EarlyTxThld 0x3F /* 0x3F means NO early transmit */
78#define RxPacketMaxSize 0x0800 /* Maximum size supported is 16K-1 */
79#define InterFrameGap 0x03 /* 3 means InterFrameGap = the shortest one */
80
81#define NUM_TX_DESC 1 /* Number of Tx descriptor registers */
82#define NUM_RX_DESC 4 /* Number of Rx descriptor registers */
83#define RX_BUF_SIZE 1536 /* Rx Buffer size */
84#define RX_BUF_LEN 8192
85
86#define RTL_MIN_IO_SIZE 0x80
87#define TX_TIMEOUT (6*HZ)
88
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +010089/* write/read MMIO register. Notice: {read,write}[wl] do the necessary swapping */
wdenka6270482004-04-18 22:03:42 +000090#define RTL_W8(reg, val8) writeb ((val8), ioaddr + (reg))
91#define RTL_W16(reg, val16) writew ((val16), ioaddr + (reg))
92#define RTL_W32(reg, val32) writel ((val32), ioaddr + (reg))
93#define RTL_R8(reg) readb (ioaddr + (reg))
94#define RTL_R16(reg) readw (ioaddr + (reg))
95#define RTL_R32(reg) ((unsigned long) readl (ioaddr + (reg)))
96
97#define ETH_FRAME_LEN MAX_ETH_FRAME_SIZE
98#define ETH_ALEN MAC_ADDR_LEN
99#define ETH_ZLEN 60
100
Yoshihiro Shimoda2b904942009-02-25 14:27:29 +0900101#define bus_to_phys(a) pci_mem_to_phys((pci_dev_t)dev->priv, (pci_addr_t)a)
102#define phys_to_bus(a) pci_phys_to_mem((pci_dev_t)dev->priv, (phys_addr_t)a)
103
wdenka6270482004-04-18 22:03:42 +0000104enum RTL8169_registers {
105 MAC0 = 0, /* Ethernet hardware address. */
106 MAR0 = 8, /* Multicast filter. */
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900107 TxDescStartAddrLow = 0x20,
108 TxDescStartAddrHigh = 0x24,
109 TxHDescStartAddrLow = 0x28,
110 TxHDescStartAddrHigh = 0x2c,
wdenka6270482004-04-18 22:03:42 +0000111 FLASH = 0x30,
112 ERSR = 0x36,
113 ChipCmd = 0x37,
114 TxPoll = 0x38,
115 IntrMask = 0x3C,
116 IntrStatus = 0x3E,
117 TxConfig = 0x40,
118 RxConfig = 0x44,
119 RxMissed = 0x4C,
120 Cfg9346 = 0x50,
121 Config0 = 0x51,
122 Config1 = 0x52,
123 Config2 = 0x53,
124 Config3 = 0x54,
125 Config4 = 0x55,
126 Config5 = 0x56,
127 MultiIntr = 0x5C,
128 PHYAR = 0x60,
129 TBICSR = 0x64,
130 TBI_ANAR = 0x68,
131 TBI_LPAR = 0x6A,
132 PHYstatus = 0x6C,
133 RxMaxSize = 0xDA,
134 CPlusCmd = 0xE0,
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900135 RxDescStartAddrLow = 0xE4,
136 RxDescStartAddrHigh = 0xE8,
wdenka6270482004-04-18 22:03:42 +0000137 EarlyTxThres = 0xEC,
138 FuncEvent = 0xF0,
139 FuncEventMask = 0xF4,
140 FuncPresetState = 0xF8,
141 FuncForceEvent = 0xFC,
142};
143
144enum RTL8169_register_content {
145 /*InterruptStatusBits */
146 SYSErr = 0x8000,
147 PCSTimeout = 0x4000,
148 SWInt = 0x0100,
149 TxDescUnavail = 0x80,
150 RxFIFOOver = 0x40,
151 RxUnderrun = 0x20,
152 RxOverflow = 0x10,
153 TxErr = 0x08,
154 TxOK = 0x04,
155 RxErr = 0x02,
156 RxOK = 0x01,
157
158 /*RxStatusDesc */
159 RxRES = 0x00200000,
160 RxCRC = 0x00080000,
161 RxRUNT = 0x00100000,
162 RxRWT = 0x00400000,
163
164 /*ChipCmdBits */
165 CmdReset = 0x10,
166 CmdRxEnb = 0x08,
167 CmdTxEnb = 0x04,
168 RxBufEmpty = 0x01,
169
170 /*Cfg9346Bits */
171 Cfg9346_Lock = 0x00,
172 Cfg9346_Unlock = 0xC0,
173
174 /*rx_mode_bits */
175 AcceptErr = 0x20,
176 AcceptRunt = 0x10,
177 AcceptBroadcast = 0x08,
178 AcceptMulticast = 0x04,
179 AcceptMyPhys = 0x02,
180 AcceptAllPhys = 0x01,
181
182 /*RxConfigBits */
183 RxCfgFIFOShift = 13,
184 RxCfgDMAShift = 8,
185
186 /*TxConfigBits */
187 TxInterFrameGapShift = 24,
188 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
189
190 /*rtl8169_PHYstatus */
191 TBI_Enable = 0x80,
192 TxFlowCtrl = 0x40,
193 RxFlowCtrl = 0x20,
194 _1000bpsF = 0x10,
195 _100bps = 0x08,
196 _10bps = 0x04,
197 LinkStatus = 0x02,
198 FullDup = 0x01,
199
200 /*GIGABIT_PHY_registers */
201 PHY_CTRL_REG = 0,
202 PHY_STAT_REG = 1,
203 PHY_AUTO_NEGO_REG = 4,
204 PHY_1000_CTRL_REG = 9,
205
206 /*GIGABIT_PHY_REG_BIT */
207 PHY_Restart_Auto_Nego = 0x0200,
208 PHY_Enable_Auto_Nego = 0x1000,
209
210 /* PHY_STAT_REG = 1; */
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100211 PHY_Auto_Nego_Comp = 0x0020,
wdenka6270482004-04-18 22:03:42 +0000212
213 /* PHY_AUTO_NEGO_REG = 4; */
214 PHY_Cap_10_Half = 0x0020,
215 PHY_Cap_10_Full = 0x0040,
216 PHY_Cap_100_Half = 0x0080,
217 PHY_Cap_100_Full = 0x0100,
218
219 /* PHY_1000_CTRL_REG = 9; */
220 PHY_Cap_1000_Full = 0x0200,
221
222 PHY_Cap_Null = 0x0,
223
224 /*_MediaType*/
225 _10_Half = 0x01,
226 _10_Full = 0x02,
227 _100_Half = 0x04,
228 _100_Full = 0x08,
229 _1000_Full = 0x10,
230
231 /*_TBICSRBit*/
232 TBILinkOK = 0x02000000,
233};
234
235static struct {
236 const char *name;
237 u8 version; /* depend on RTL8169 docs */
238 u32 RxConfigMask; /* should clear the bits supported by this chip */
239} rtl_chip_info[] = {
240 {"RTL-8169", 0x00, 0xff7e1880,},
241 {"RTL-8169", 0x04, 0xff7e1880,},
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900242 {"RTL-8169", 0x00, 0xff7e1880,},
243 {"RTL-8169s/8110s", 0x02, 0xff7e1880,},
244 {"RTL-8169s/8110s", 0x04, 0xff7e1880,},
245 {"RTL-8169sb/8110sb", 0x10, 0xff7e1880,},
246 {"RTL-8169sc/8110sc", 0x18, 0xff7e1880,},
247 {"RTL-8168b/8111sb", 0x30, 0xff7e1880,},
248 {"RTL-8168b/8111sb", 0x38, 0xff7e1880,},
Thierry Reding625bcbe2013-09-20 16:03:44 +0200249 {"RTL-8168evl/8111evl", 0x2e, 0xff7e1880,},
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900250 {"RTL-8101e", 0x34, 0xff7e1880,},
251 {"RTL-8100e", 0x32, 0xff7e1880,},
wdenka6270482004-04-18 22:03:42 +0000252};
253
254enum _DescStatusBit {
255 OWNbit = 0x80000000,
256 EORbit = 0x40000000,
257 FSbit = 0x20000000,
258 LSbit = 0x10000000,
259};
260
261struct TxDesc {
262 u32 status;
263 u32 vlan_tag;
264 u32 buf_addr;
265 u32 buf_Haddr;
266};
267
268struct RxDesc {
269 u32 status;
270 u32 vlan_tag;
271 u32 buf_addr;
272 u32 buf_Haddr;
273};
274
275/* Define the TX Descriptor */
276static u8 tx_ring[NUM_TX_DESC * sizeof(struct TxDesc) + 256];
277/* __attribute__ ((aligned(256))); */
278
279/* Create a static buffer of size RX_BUF_SZ for each
280TX Descriptor. All descriptors point to a
281part of this buffer */
282static unsigned char txb[NUM_TX_DESC * RX_BUF_SIZE];
283
284/* Define the RX Descriptor */
285static u8 rx_ring[NUM_RX_DESC * sizeof(struct TxDesc) + 256];
286 /* __attribute__ ((aligned(256))); */
287
288/* Create a static buffer of size RX_BUF_SZ for each
289RX Descriptor All descriptors point to a
290part of this buffer */
291static unsigned char rxb[NUM_RX_DESC * RX_BUF_SIZE];
292
293struct rtl8169_private {
294 void *mmio_addr; /* memory map physical address */
295 int chipset;
296 unsigned long cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
297 unsigned long cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
298 unsigned long dirty_tx;
299 unsigned char *TxDescArrays; /* Index of Tx Descriptor buffer */
300 unsigned char *RxDescArrays; /* Index of Rx Descriptor buffer */
301 struct TxDesc *TxDescArray; /* Index of 256-alignment Tx Descriptor buffer */
302 struct RxDesc *RxDescArray; /* Index of 256-alignment Rx Descriptor buffer */
303 unsigned char *RxBufferRings; /* Index of Rx Buffer */
304 unsigned char *RxBufferRing[NUM_RX_DESC]; /* Index of Rx Buffer array */
305 unsigned char *Tx_skbuff[NUM_TX_DESC];
306} tpx;
307
308static struct rtl8169_private *tpc;
309
310static const u16 rtl8169_intr_mask =
311 SYSErr | PCSTimeout | RxUnderrun | RxOverflow | RxFIFOOver | TxErr |
312 TxOK | RxErr | RxOK;
313static const unsigned int rtl8169_rx_config =
314 (RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
315
316static struct pci_device_id supported[] = {
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900317 {PCI_VENDOR_ID_REALTEK, 0x8167},
wdenka6270482004-04-18 22:03:42 +0000318 {PCI_VENDOR_ID_REALTEK, 0x8169},
319 {}
320};
321
322void mdio_write(int RegAddr, int value)
323{
324 int i;
325
326 RTL_W32(PHYAR, 0x80000000 | (RegAddr & 0xFF) << 16 | value);
327 udelay(1000);
328
329 for (i = 2000; i > 0; i--) {
330 /* Check if the RTL8169 has completed writing to the specified MII register */
331 if (!(RTL_R32(PHYAR) & 0x80000000)) {
332 break;
333 } else {
334 udelay(100);
335 }
336 }
337}
338
339int mdio_read(int RegAddr)
340{
341 int i, value = -1;
342
343 RTL_W32(PHYAR, 0x0 | (RegAddr & 0xFF) << 16);
344 udelay(1000);
345
346 for (i = 2000; i > 0; i--) {
347 /* Check if the RTL8169 has completed retrieving data from the specified MII register */
348 if (RTL_R32(PHYAR) & 0x80000000) {
349 value = (int) (RTL_R32(PHYAR) & 0xFFFF);
350 break;
351 } else {
352 udelay(100);
353 }
354 }
355 return value;
356}
357
wdenka6270482004-04-18 22:03:42 +0000358static int rtl8169_init_board(struct eth_device *dev)
359{
360 int i;
361 u32 tmp;
362
363#ifdef DEBUG_RTL8169
364 printf ("%s\n", __FUNCTION__);
365#endif
366 ioaddr = dev->iobase;
367
368 /* Soft reset the chip. */
369 RTL_W8(ChipCmd, CmdReset);
370
371 /* Check that the chip has finished the reset. */
372 for (i = 1000; i > 0; i--)
373 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
374 break;
375 else
376 udelay(10);
377
378 /* identify chip attached to board */
379 tmp = RTL_R32(TxConfig);
380 tmp = ((tmp & 0x7c000000) + ((tmp & 0x00800000) << 2)) >> 24;
381
382 for (i = ARRAY_SIZE(rtl_chip_info) - 1; i >= 0; i--){
383 if (tmp == rtl_chip_info[i].version) {
384 tpc->chipset = i;
385 goto match;
386 }
387 }
388
389 /* if unknown chip, assume array element #0, original RTL-8169 in this case */
390 printf("PCI device %s: unknown chip version, assuming RTL-8169\n", dev->name);
Wolfgang Denk8d541882008-07-10 13:16:09 +0200391 printf("PCI device: TxConfig = 0x%lX\n", (unsigned long) RTL_R32(TxConfig));
wdenka6270482004-04-18 22:03:42 +0000392 tpc->chipset = 0;
393
394match:
395 return 0;
396}
397
Thierry Reding5c1ba962013-09-20 16:03:42 +0200398/*
399 * Cache maintenance functions. These are simple wrappers around the more
400 * general purpose flush_cache() and invalidate_dcache_range() functions.
401 */
402
403static void rtl_inval_rx_desc(struct RxDesc *desc)
404{
405 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
406 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
407
408 invalidate_dcache_range(start, end);
409}
410
411static void rtl_flush_rx_desc(struct RxDesc *desc)
412{
413 flush_cache((unsigned long)desc, sizeof(*desc));
414}
415
416static void rtl_inval_tx_desc(struct TxDesc *desc)
417{
418 unsigned long start = (unsigned long)desc & ~(ARCH_DMA_MINALIGN - 1);
419 unsigned long end = ALIGN(start + sizeof(*desc), ARCH_DMA_MINALIGN);
420
421 invalidate_dcache_range(start, end);
422}
423
424static void rtl_flush_tx_desc(struct TxDesc *desc)
425{
426 flush_cache((unsigned long)desc, sizeof(*desc));
427}
428
429static void rtl_inval_buffer(void *buf, size_t size)
430{
431 unsigned long start = (unsigned long)buf & ~(ARCH_DMA_MINALIGN - 1);
432 unsigned long end = ALIGN(start + size, ARCH_DMA_MINALIGN);
433
434 invalidate_dcache_range(start, end);
435}
436
437static void rtl_flush_buffer(void *buf, size_t size)
438{
439 flush_cache((unsigned long)buf, size);
440}
441
wdenka6270482004-04-18 22:03:42 +0000442/**************************************************************************
443RECV - Receive a frame
444***************************************************************************/
445static int rtl_recv(struct eth_device *dev)
446{
447 /* return true if there's an ethernet packet ready to read */
448 /* nic->packet should contain data on return */
449 /* nic->packetlen should contain length of data */
450 int cur_rx;
451 int length = 0;
452
453#ifdef DEBUG_RTL8169_RX
454 printf ("%s\n", __FUNCTION__);
455#endif
456 ioaddr = dev->iobase;
457
458 cur_rx = tpc->cur_rx;
Thierry Reding5c1ba962013-09-20 16:03:42 +0200459
460 rtl_inval_rx_desc(&tpc->RxDescArray[cur_rx]);
461
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100462 if ((le32_to_cpu(tpc->RxDescArray[cur_rx].status) & OWNbit) == 0) {
463 if (!(le32_to_cpu(tpc->RxDescArray[cur_rx].status) & RxRES)) {
wdenka6270482004-04-18 22:03:42 +0000464 unsigned char rxdata[RX_BUF_LEN];
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100465 length = (int) (le32_to_cpu(tpc->RxDescArray[cur_rx].
466 status) & 0x00001FFF) - 4;
wdenka6270482004-04-18 22:03:42 +0000467
Thierry Reding5c1ba962013-09-20 16:03:42 +0200468 rtl_inval_buffer(tpc->RxBufferRing[cur_rx], length);
wdenka6270482004-04-18 22:03:42 +0000469 memcpy(rxdata, tpc->RxBufferRing[cur_rx], length);
470 NetReceive(rxdata, length);
471
472 if (cur_rx == NUM_RX_DESC - 1)
473 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100474 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000475 else
476 tpc->RxDescArray[cur_rx].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100477 cpu_to_le32(OWNbit + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000478 tpc->RxDescArray[cur_rx].buf_addr =
Yoshihiro Shimoda2b904942009-02-25 14:27:29 +0900479 cpu_to_le32(bus_to_phys(tpc->RxBufferRing[cur_rx]));
Thierry Reding5c1ba962013-09-20 16:03:42 +0200480 rtl_flush_rx_desc(&tpc->RxDescArray[cur_rx]);
wdenka6270482004-04-18 22:03:42 +0000481 } else {
482 puts("Error Rx");
483 }
484 cur_rx = (cur_rx + 1) % NUM_RX_DESC;
485 tpc->cur_rx = cur_rx;
486 return 1;
487
Nobuhiro Iwamatsu1338d1f2008-03-08 09:25:49 +0900488 } else {
489 ushort sts = RTL_R8(IntrStatus);
490 RTL_W8(IntrStatus, sts & ~(TxErr | RxErr | SYSErr));
491 udelay(100); /* wait */
wdenka6270482004-04-18 22:03:42 +0000492 }
493 tpc->cur_rx = cur_rx;
494 return (0); /* initially as this is called to flush the input */
495}
496
497#define HZ 1000
498/**************************************************************************
499SEND - Transmit a frame
500***************************************************************************/
Joe Hershbergerd8836d12012-05-22 18:09:57 +0000501static int rtl_send(struct eth_device *dev, void *packet, int length)
wdenka6270482004-04-18 22:03:42 +0000502{
503 /* send the packet to destination */
504
505 u32 to;
506 u8 *ptxb;
507 int entry = tpc->cur_tx % NUM_TX_DESC;
508 u32 len = length;
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100509 int ret;
wdenka6270482004-04-18 22:03:42 +0000510
511#ifdef DEBUG_RTL8169_TX
512 int stime = currticks();
513 printf ("%s\n", __FUNCTION__);
514 printf("sending %d bytes\n", len);
515#endif
516
517 ioaddr = dev->iobase;
518
519 /* point to the current txb incase multiple tx_rings are used */
520 ptxb = tpc->Tx_skbuff[entry * MAX_ETH_FRAME_SIZE];
521 memcpy(ptxb, (char *)packet, (int)length);
Thierry Reding5c1ba962013-09-20 16:03:42 +0200522 rtl_flush_buffer(ptxb, length);
wdenka6270482004-04-18 22:03:42 +0000523
524 while (len < ETH_ZLEN)
525 ptxb[len++] = '\0';
526
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900527 tpc->TxDescArray[entry].buf_Haddr = 0;
Yoshihiro Shimoda2b904942009-02-25 14:27:29 +0900528 tpc->TxDescArray[entry].buf_addr = cpu_to_le32(bus_to_phys(ptxb));
wdenka6270482004-04-18 22:03:42 +0000529 if (entry != (NUM_TX_DESC - 1)) {
530 tpc->TxDescArray[entry].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100531 cpu_to_le32((OWNbit | FSbit | LSbit) |
532 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka6270482004-04-18 22:03:42 +0000533 } else {
534 tpc->TxDescArray[entry].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100535 cpu_to_le32((OWNbit | EORbit | FSbit | LSbit) |
536 ((len > ETH_ZLEN) ? len : ETH_ZLEN));
wdenka6270482004-04-18 22:03:42 +0000537 }
Thierry Reding5c1ba962013-09-20 16:03:42 +0200538 rtl_flush_tx_desc(&tpc->TxDescArray[entry]);
wdenka6270482004-04-18 22:03:42 +0000539 RTL_W8(TxPoll, 0x40); /* set polling bit */
540
541 tpc->cur_tx++;
542 to = currticks() + TX_TIMEOUT;
Yoshihiro Shimoda4a465662009-02-25 14:27:24 +0900543 do {
Thierry Reding5c1ba962013-09-20 16:03:42 +0200544 rtl_inval_tx_desc(&tpc->TxDescArray[entry]);
Yoshihiro Shimoda4a465662009-02-25 14:27:24 +0900545 } while ((le32_to_cpu(tpc->TxDescArray[entry].status) & OWNbit)
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100546 && (currticks() < to)); /* wait */
wdenka6270482004-04-18 22:03:42 +0000547
548 if (currticks() >= to) {
549#ifdef DEBUG_RTL8169_TX
Thierry Reding20ac8692013-09-20 16:03:41 +0200550 puts("tx timeout/error\n");
551 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000552#endif
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100553 ret = 0;
wdenka6270482004-04-18 22:03:42 +0000554 } else {
555#ifdef DEBUG_RTL8169_TX
556 puts("tx done\n");
557#endif
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100558 ret = length;
wdenka6270482004-04-18 22:03:42 +0000559 }
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100560 /* Delay to make net console (nc) work properly */
561 udelay(20);
562 return ret;
wdenka6270482004-04-18 22:03:42 +0000563}
564
565static void rtl8169_set_rx_mode(struct eth_device *dev)
566{
567 u32 mc_filter[2]; /* Multicast hash filter */
568 int rx_mode;
569 u32 tmp = 0;
570
571#ifdef DEBUG_RTL8169
572 printf ("%s\n", __FUNCTION__);
573#endif
574
575 /* IFF_ALLMULTI */
576 /* Too many to filter perfectly -- accept all multicasts. */
577 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
578 mc_filter[1] = mc_filter[0] = 0xffffffff;
579
580 tmp = rtl8169_rx_config | rx_mode | (RTL_R32(RxConfig) &
581 rtl_chip_info[tpc->chipset].RxConfigMask);
582
583 RTL_W32(RxConfig, tmp);
584 RTL_W32(MAR0 + 0, mc_filter[0]);
585 RTL_W32(MAR0 + 4, mc_filter[1]);
586}
587
588static void rtl8169_hw_start(struct eth_device *dev)
589{
590 u32 i;
591
592#ifdef DEBUG_RTL8169
593 int stime = currticks();
594 printf ("%s\n", __FUNCTION__);
595#endif
596
597#if 0
598 /* Soft reset the chip. */
599 RTL_W8(ChipCmd, CmdReset);
600
601 /* Check that the chip has finished the reset. */
602 for (i = 1000; i > 0; i--) {
603 if ((RTL_R8(ChipCmd) & CmdReset) == 0)
604 break;
605 else
606 udelay(10);
607 }
608#endif
609
610 RTL_W8(Cfg9346, Cfg9346_Unlock);
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900611
612 /* RTL-8169sb/8110sb or previous version */
613 if (tpc->chipset <= 5)
614 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
615
wdenka6270482004-04-18 22:03:42 +0000616 RTL_W8(EarlyTxThres, EarlyTxThld);
617
618 /* For gigabit rtl8169 */
619 RTL_W16(RxMaxSize, RxPacketMaxSize);
620
621 /* Set Rx Config register */
622 i = rtl8169_rx_config | (RTL_R32(RxConfig) &
623 rtl_chip_info[tpc->chipset].RxConfigMask);
624 RTL_W32(RxConfig, i);
625
626 /* Set DMA burst size and Interframe Gap Time */
627 RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
628 (InterFrameGap << TxInterFrameGapShift));
629
630
631 tpc->cur_rx = 0;
632
Yoshihiro Shimoda2b904942009-02-25 14:27:29 +0900633 RTL_W32(TxDescStartAddrLow, bus_to_phys(tpc->TxDescArray));
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900634 RTL_W32(TxDescStartAddrHigh, (unsigned long)0);
Yoshihiro Shimoda2b904942009-02-25 14:27:29 +0900635 RTL_W32(RxDescStartAddrLow, bus_to_phys(tpc->RxDescArray));
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900636 RTL_W32(RxDescStartAddrHigh, (unsigned long)0);
637
638 /* RTL-8169sc/8110sc or later version */
639 if (tpc->chipset > 5)
640 RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
641
wdenka6270482004-04-18 22:03:42 +0000642 RTL_W8(Cfg9346, Cfg9346_Lock);
643 udelay(10);
644
645 RTL_W32(RxMissed, 0);
646
647 rtl8169_set_rx_mode(dev);
648
649 /* no early-rx interrupts */
650 RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
651
652#ifdef DEBUG_RTL8169
Thierry Reding20ac8692013-09-20 16:03:41 +0200653 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000654#endif
655}
656
657static void rtl8169_init_ring(struct eth_device *dev)
658{
659 int i;
660
661#ifdef DEBUG_RTL8169
662 int stime = currticks();
663 printf ("%s\n", __FUNCTION__);
664#endif
665
666 tpc->cur_rx = 0;
667 tpc->cur_tx = 0;
668 tpc->dirty_tx = 0;
669 memset(tpc->TxDescArray, 0x0, NUM_TX_DESC * sizeof(struct TxDesc));
670 memset(tpc->RxDescArray, 0x0, NUM_RX_DESC * sizeof(struct RxDesc));
671
672 for (i = 0; i < NUM_TX_DESC; i++) {
673 tpc->Tx_skbuff[i] = &txb[i];
674 }
675
676 for (i = 0; i < NUM_RX_DESC; i++) {
677 if (i == (NUM_RX_DESC - 1))
678 tpc->RxDescArray[i].status =
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100679 cpu_to_le32((OWNbit | EORbit) + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000680 else
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100681 tpc->RxDescArray[i].status =
682 cpu_to_le32(OWNbit + RX_BUF_SIZE);
wdenka6270482004-04-18 22:03:42 +0000683
684 tpc->RxBufferRing[i] = &rxb[i * RX_BUF_SIZE];
685 tpc->RxDescArray[i].buf_addr =
Yoshihiro Shimoda2b904942009-02-25 14:27:29 +0900686 cpu_to_le32(bus_to_phys(tpc->RxBufferRing[i]));
Thierry Reding5c1ba962013-09-20 16:03:42 +0200687 rtl_flush_rx_desc(&tpc->RxDescArray[i]);
wdenka6270482004-04-18 22:03:42 +0000688 }
689
690#ifdef DEBUG_RTL8169
Thierry Reding20ac8692013-09-20 16:03:41 +0200691 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000692#endif
693}
694
695/**************************************************************************
696RESET - Finish setting up the ethernet interface
697***************************************************************************/
Ben Warrende9fcb52008-01-09 18:15:53 -0500698static int rtl_reset(struct eth_device *dev, bd_t *bis)
wdenka6270482004-04-18 22:03:42 +0000699{
700 int i;
wdenka6270482004-04-18 22:03:42 +0000701
702#ifdef DEBUG_RTL8169
703 int stime = currticks();
704 printf ("%s\n", __FUNCTION__);
705#endif
706
707 tpc->TxDescArrays = tx_ring;
wdenka6270482004-04-18 22:03:42 +0000708 /* Tx Desscriptor needs 256 bytes alignment; */
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100709 tpc->TxDescArray = (struct TxDesc *) ((unsigned long)(tpc->TxDescArrays +
710 255) & ~255);
wdenka6270482004-04-18 22:03:42 +0000711
712 tpc->RxDescArrays = rx_ring;
713 /* Rx Desscriptor needs 256 bytes alignment; */
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100714 tpc->RxDescArray = (struct RxDesc *) ((unsigned long)(tpc->RxDescArrays +
715 255) & ~255);
wdenka6270482004-04-18 22:03:42 +0000716
717 rtl8169_init_ring(dev);
718 rtl8169_hw_start(dev);
719 /* Construct a perfect filter frame with the mac address as first match
720 * and broadcast for all others */
721 for (i = 0; i < 192; i++)
722 txb[i] = 0xFF;
723
724 txb[0] = dev->enetaddr[0];
725 txb[1] = dev->enetaddr[1];
726 txb[2] = dev->enetaddr[2];
727 txb[3] = dev->enetaddr[3];
728 txb[4] = dev->enetaddr[4];
729 txb[5] = dev->enetaddr[5];
730
731#ifdef DEBUG_RTL8169
Thierry Reding20ac8692013-09-20 16:03:41 +0200732 printf("%s elapsed time : %lu\n", __func__, currticks()-stime);
wdenka6270482004-04-18 22:03:42 +0000733#endif
Ben Warrende9fcb52008-01-09 18:15:53 -0500734 return 0;
wdenka6270482004-04-18 22:03:42 +0000735}
736
737/**************************************************************************
738HALT - Turn off ethernet interface
739***************************************************************************/
740static void rtl_halt(struct eth_device *dev)
741{
742 int i;
743
744#ifdef DEBUG_RTL8169
745 printf ("%s\n", __FUNCTION__);
746#endif
747
748 ioaddr = dev->iobase;
749
750 /* Stop the chip's Tx and Rx DMA processes. */
751 RTL_W8(ChipCmd, 0x00);
752
753 /* Disable interrupts by clearing the interrupt mask. */
754 RTL_W16(IntrMask, 0x0000);
755
756 RTL_W32(RxMissed, 0);
757
758 tpc->TxDescArrays = NULL;
759 tpc->RxDescArrays = NULL;
760 tpc->TxDescArray = NULL;
761 tpc->RxDescArray = NULL;
762 for (i = 0; i < NUM_RX_DESC; i++) {
763 tpc->RxBufferRing[i] = NULL;
764 }
765}
766
767/**************************************************************************
768INIT - Look for an adapter, this routine's visible to the outside
769***************************************************************************/
770
771#define board_found 1
772#define valid_link 0
773static int rtl_init(struct eth_device *dev, bd_t *bis)
774{
775 static int board_idx = -1;
wdenka6270482004-04-18 22:03:42 +0000776 int i, rc;
777 int option = -1, Cap10_100 = 0, Cap1000 = 0;
778
779#ifdef DEBUG_RTL8169
780 printf ("%s\n", __FUNCTION__);
781#endif
782
783 ioaddr = dev->iobase;
784
785 board_idx++;
786
wdenka6270482004-04-18 22:03:42 +0000787 /* point to private storage */
788 tpc = &tpx;
789
790 rc = rtl8169_init_board(dev);
791 if (rc)
792 return rc;
793
794 /* Get MAC address. FIXME: read EEPROM */
795 for (i = 0; i < MAC_ADDR_LEN; i++)
Mike Frysingerb2039652009-02-11 19:01:26 -0500796 dev->enetaddr[i] = RTL_R8(MAC0 + i);
wdenka6270482004-04-18 22:03:42 +0000797
798#ifdef DEBUG_RTL8169
Yoshihiro Shimoda2877a112008-07-09 21:07:34 +0900799 printf("chipset = %d\n", tpc->chipset);
wdenka6270482004-04-18 22:03:42 +0000800 printf("MAC Address");
801 for (i = 0; i < MAC_ADDR_LEN; i++)
802 printf(":%02x", dev->enetaddr[i]);
803 putc('\n');
804#endif
805
806#ifdef DEBUG_RTL8169
807 /* Print out some hardware info */
808 printf("%s: at ioaddr 0x%x\n", dev->name, ioaddr);
809#endif
810
811 /* if TBI is not endbled */
812 if (!(RTL_R8(PHYstatus) & TBI_Enable)) {
813 int val = mdio_read(PHY_AUTO_NEGO_REG);
814
815 option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx];
816 /* Force RTL8169 in 10/100/1000 Full/Half mode. */
817 if (option > 0) {
818#ifdef DEBUG_RTL8169
819 printf("%s: Force-mode Enabled.\n", dev->name);
820#endif
821 Cap10_100 = 0, Cap1000 = 0;
822 switch (option) {
823 case _10_Half:
824 Cap10_100 = PHY_Cap_10_Half;
825 Cap1000 = PHY_Cap_Null;
826 break;
827 case _10_Full:
828 Cap10_100 = PHY_Cap_10_Full;
829 Cap1000 = PHY_Cap_Null;
830 break;
831 case _100_Half:
832 Cap10_100 = PHY_Cap_100_Half;
833 Cap1000 = PHY_Cap_Null;
834 break;
835 case _100_Full:
836 Cap10_100 = PHY_Cap_100_Full;
837 Cap1000 = PHY_Cap_Null;
838 break;
839 case _1000_Full:
840 Cap10_100 = PHY_Cap_Null;
841 Cap1000 = PHY_Cap_1000_Full;
842 break;
843 default:
844 break;
845 }
846 mdio_write(PHY_AUTO_NEGO_REG, Cap10_100 | (val & 0x1F)); /* leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
847 mdio_write(PHY_1000_CTRL_REG, Cap1000);
848 } else {
849#ifdef DEBUG_RTL8169
850 printf("%s: Auto-negotiation Enabled.\n",
851 dev->name);
852#endif
853 /* enable 10/100 Full/Half Mode, leave PHY_AUTO_NEGO_REG bit4:0 unchanged */
854 mdio_write(PHY_AUTO_NEGO_REG,
855 PHY_Cap_10_Half | PHY_Cap_10_Full |
856 PHY_Cap_100_Half | PHY_Cap_100_Full |
857 (val & 0x1F));
858
859 /* enable 1000 Full Mode */
860 mdio_write(PHY_1000_CTRL_REG, PHY_Cap_1000_Full);
861
862 }
863
864 /* Enable auto-negotiation and restart auto-nigotiation */
865 mdio_write(PHY_CTRL_REG,
866 PHY_Enable_Auto_Nego | PHY_Restart_Auto_Nego);
867 udelay(100);
868
869 /* wait for auto-negotiation process */
870 for (i = 10000; i > 0; i--) {
871 /* check if auto-negotiation complete */
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100872 if (mdio_read(PHY_STAT_REG) & PHY_Auto_Nego_Comp) {
wdenka6270482004-04-18 22:03:42 +0000873 udelay(100);
874 option = RTL_R8(PHYstatus);
875 if (option & _1000bpsF) {
876#ifdef DEBUG_RTL8169
877 printf("%s: 1000Mbps Full-duplex operation.\n",
878 dev->name);
879#endif
880 } else {
881#ifdef DEBUG_RTL8169
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100882 printf("%s: %sMbps %s-duplex operation.\n",
883 dev->name,
884 (option & _100bps) ? "100" :
885 "10",
886 (option & FullDup) ? "Full" :
887 "Half");
wdenka6270482004-04-18 22:03:42 +0000888#endif
889 }
890 break;
891 } else {
892 udelay(100);
893 }
894 } /* end for-loop to wait for auto-negotiation process */
895
896 } else {
897 udelay(100);
898#ifdef DEBUG_RTL8169
899 printf
900 ("%s: 1000Mbps Full-duplex operation, TBI Link %s!\n",
901 dev->name,
902 (RTL_R32(TBICSR) & TBILinkOK) ? "OK" : "Failed");
903#endif
904 }
905
906 return 1;
907}
908
909int rtl8169_initialize(bd_t *bis)
910{
911 pci_dev_t devno;
912 int card_number = 0;
913 struct eth_device *dev;
914 u32 iobase;
915 int idx=0;
916
917 while(1){
918 /* Find RTL8169 */
919 if ((devno = pci_find_devices(supported, idx++)) < 0)
920 break;
921
922 pci_read_config_dword(devno, PCI_BASE_ADDRESS_1, &iobase);
923 iobase &= ~0xf;
924
925 debug ("rtl8169: REALTEK RTL8169 @0x%x\n", iobase);
926
927 dev = (struct eth_device *)malloc(sizeof *dev);
Nobuhiro Iwamatsuc834e442010-10-19 14:03:38 +0900928 if (!dev) {
929 printf("Can not allocate memory of rtl8169\n");
930 break;
931 }
wdenka6270482004-04-18 22:03:42 +0000932
Nobuhiro Iwamatsuc834e442010-10-19 14:03:38 +0900933 memset(dev, 0, sizeof(*dev));
wdenka6270482004-04-18 22:03:42 +0000934 sprintf (dev->name, "RTL8169#%d", card_number);
935
936 dev->priv = (void *) devno;
Guennadi Liakhovetskide20a4f2007-11-20 13:14:20 +0100937 dev->iobase = (int)pci_mem_to_phys(devno, iobase);
wdenka6270482004-04-18 22:03:42 +0000938
939 dev->init = rtl_reset;
940 dev->halt = rtl_halt;
941 dev->send = rtl_send;
942 dev->recv = rtl_recv;
943
944 eth_register (dev);
945
946 rtl_init(dev, bis);
947
948 card_number++;
949 }
950 return card_number;
951}