devices/r8169-2.6.35-ethercat.c
changeset 2277 ec3420474c5c
child 2278 116355beeea5
equal deleted inserted replaced
2275:966753774101 2277:ec3420474c5c
       
     1 /*
       
     2 * r8169.c: RealTek 8169/8168/8101 ethernet driver.
       
     3 *
       
     4 * Copyright (c) 2002 ShuChen <shuchen@realtek.com.tw>
       
     5 * Copyright (c) 2003 - 2007 Francois Romieu <romieu@fr.zoreil.com>
       
     6 * Copyright (c) a lot of people too. Please respect their work.
       
     7  *
       
     8  * See MAINTAINERS file for support contact information.
       
     9  */
       
    10 
       
    11 #include <linux/module.h>
       
    12 #include <linux/moduleparam.h>
       
    13 #include <linux/pci.h>
       
    14 #include <linux/netdevice.h>
       
    15 #include <linux/etherdevice.h>
       
    16 #include <linux/delay.h>
       
    17 #include <linux/ethtool.h>
       
    18 #include <linux/mii.h>
       
    19 #include <linux/if_vlan.h>
       
    20 #include <linux/crc32.h>
       
    21 #include <linux/in.h>
       
    22 #include <linux/ip.h>
       
    23 #include <linux/tcp.h>
       
    24 #include <linux/init.h>
       
    25 #include <linux/dma-mapping.h>
       
    26 #include <linux/pm_runtime.h>
       
    27 
       
    28 #include <asm/system.h>
       
    29 #include <asm/io.h>
       
    30 #include <asm/irq.h>
       
    31 #include "../globals.h"
       
    32 #include "ecdev.h"
       
    33 
       
    34 #define RTL8169_VERSION "2.3LK-NAPI"
       
    35 #define MODULENAME "ec_r8169"
       
    36 #define PFX MODULENAME ": "
       
    37 
       
    38 #ifdef RTL8169_DEBUG
       
    39 #define assert(expr) \
       
    40 	if (!(expr)) {					\
       
    41 		printk( "Assertion failed! %s,%s,%s,line=%d\n",	\
       
    42 		#expr,__FILE__,__func__,__LINE__);		\
       
    43 	}
       
    44 #define dprintk(fmt, args...) \
       
    45 	do { printk(KERN_DEBUG PFX fmt, ## args); } while (0)
       
    46 #else
       
    47 #define assert(expr) do {} while (0)
       
    48 #define dprintk(fmt, args...)	do {} while (0)
       
    49 #endif /* RTL8169_DEBUG */
       
    50 
       
    51 #define R8169_MSG_DEFAULT \
       
    52 	(NETIF_MSG_DRV | NETIF_MSG_PROBE | NETIF_MSG_IFUP | NETIF_MSG_IFDOWN)
       
    53 
       
    54 #define TX_BUFFS_AVAIL(tp) \
       
    55 	(tp->dirty_tx + NUM_TX_DESC - tp->cur_tx - 1)
       
    56 
       
    57 /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
       
    58    The RTL chips use a 64 element hash table based on the Ethernet CRC. */
       
    59 static const int multicast_filter_limit = 32;
       
    60 
       
    61 /* MAC address length */
       
    62 #define MAC_ADDR_LEN	6
       
    63 
       
    64 #define MAX_READ_REQUEST_SHIFT	12
       
    65 #define RX_FIFO_THRESH	7	/* 7 means NO threshold, Rx buffer level before first PCI xfer. */
       
    66 #define RX_DMA_BURST	6	/* Maximum PCI burst, '6' is 1024 */
       
    67 #define TX_DMA_BURST	6	/* Maximum PCI burst, '6' is 1024 */
       
    68 #define EarlyTxThld	0x3F	/* 0x3F means NO early transmit */
       
    69 #define SafeMtu		0x1c20	/* ... actually life sucks beyond ~7k */
       
    70 #define InterFrameGap	0x03	/* 3 means InterFrameGap = the shortest one */
       
    71 
       
    72 #define R8169_REGS_SIZE		256
       
    73 #define R8169_NAPI_WEIGHT	64
       
    74 #define NUM_TX_DESC	64	/* Number of Tx descriptor registers */
       
    75 #define NUM_RX_DESC	256	/* Number of Rx descriptor registers */
       
    76 #define RX_BUF_SIZE	1536	/* Rx Buffer size */
       
    77 #define R8169_TX_RING_BYTES	(NUM_TX_DESC * sizeof(struct TxDesc))
       
    78 #define R8169_RX_RING_BYTES	(NUM_RX_DESC * sizeof(struct RxDesc))
       
    79 
       
    80 #define RTL8169_TX_TIMEOUT	(6*HZ)
       
    81 #define RTL8169_PHY_TIMEOUT	(10*HZ)
       
    82 
       
    83 #define RTL_EEPROM_SIG		cpu_to_le32(0x8129)
       
    84 #define RTL_EEPROM_SIG_MASK	cpu_to_le32(0xffff)
       
    85 #define RTL_EEPROM_SIG_ADDR	0x0000
       
    86 
       
    87 /* write/read MMIO register */
       
    88 #define RTL_W8(reg, val8)	writeb ((val8), ioaddr + (reg))
       
    89 #define RTL_W16(reg, val16)	writew ((val16), ioaddr + (reg))
       
    90 #define RTL_W32(reg, val32)	writel ((val32), ioaddr + (reg))
       
    91 #define RTL_R8(reg)		readb (ioaddr + (reg))
       
    92 #define RTL_R16(reg)		readw (ioaddr + (reg))
       
    93 #define RTL_R32(reg)		((unsigned long) readl (ioaddr + (reg)))
       
    94 
       
    95 enum mac_version {
       
    96 	RTL_GIGA_MAC_NONE   = 0x00,
       
    97 	RTL_GIGA_MAC_VER_01 = 0x01, // 8169
       
    98 	RTL_GIGA_MAC_VER_02 = 0x02, // 8169S
       
    99 	RTL_GIGA_MAC_VER_03 = 0x03, // 8110S
       
   100 	RTL_GIGA_MAC_VER_04 = 0x04, // 8169SB
       
   101 	RTL_GIGA_MAC_VER_05 = 0x05, // 8110SCd
       
   102 	RTL_GIGA_MAC_VER_06 = 0x06, // 8110SCe
       
   103 	RTL_GIGA_MAC_VER_07 = 0x07, // 8102e
       
   104 	RTL_GIGA_MAC_VER_08 = 0x08, // 8102e
       
   105 	RTL_GIGA_MAC_VER_09 = 0x09, // 8102e
       
   106 	RTL_GIGA_MAC_VER_10 = 0x0a, // 8101e
       
   107 	RTL_GIGA_MAC_VER_11 = 0x0b, // 8168Bb
       
   108 	RTL_GIGA_MAC_VER_12 = 0x0c, // 8168Be
       
   109 	RTL_GIGA_MAC_VER_13 = 0x0d, // 8101Eb
       
   110 	RTL_GIGA_MAC_VER_14 = 0x0e, // 8101 ?
       
   111 	RTL_GIGA_MAC_VER_15 = 0x0f, // 8101 ?
       
   112 	RTL_GIGA_MAC_VER_16 = 0x11, // 8101Ec
       
   113 	RTL_GIGA_MAC_VER_17 = 0x10, // 8168Bf
       
   114 	RTL_GIGA_MAC_VER_18 = 0x12, // 8168CP
       
   115 	RTL_GIGA_MAC_VER_19 = 0x13, // 8168C
       
   116 	RTL_GIGA_MAC_VER_20 = 0x14, // 8168C
       
   117 	RTL_GIGA_MAC_VER_21 = 0x15, // 8168C
       
   118 	RTL_GIGA_MAC_VER_22 = 0x16, // 8168C
       
   119 	RTL_GIGA_MAC_VER_23 = 0x17, // 8168CP
       
   120 	RTL_GIGA_MAC_VER_24 = 0x18, // 8168CP
       
   121 	RTL_GIGA_MAC_VER_25 = 0x19, // 8168D
       
   122 	RTL_GIGA_MAC_VER_26 = 0x1a, // 8168D
       
   123 	RTL_GIGA_MAC_VER_27 = 0x1b  // 8168DP
       
   124 };
       
   125 
       
   126 #define _R(NAME,MAC,MASK) \
       
   127 	{ .name = NAME, .mac_version = MAC, .RxConfigMask = MASK }
       
   128 
       
   129 static const struct {
       
   130 	const char *name;
       
   131 	u8 mac_version;
       
   132 	u32 RxConfigMask;	/* Clears the bits supported by this chip */
       
   133 } rtl_chip_info[] = {
       
   134 	_R("RTL8169",		RTL_GIGA_MAC_VER_01, 0xff7e1880), // 8169
       
   135 	_R("RTL8169s",		RTL_GIGA_MAC_VER_02, 0xff7e1880), // 8169S
       
   136 	_R("RTL8110s",		RTL_GIGA_MAC_VER_03, 0xff7e1880), // 8110S
       
   137 	_R("RTL8169sb/8110sb",	RTL_GIGA_MAC_VER_04, 0xff7e1880), // 8169SB
       
   138 	_R("RTL8169sc/8110sc",	RTL_GIGA_MAC_VER_05, 0xff7e1880), // 8110SCd
       
   139 	_R("RTL8169sc/8110sc",	RTL_GIGA_MAC_VER_06, 0xff7e1880), // 8110SCe
       
   140 	_R("RTL8102e",		RTL_GIGA_MAC_VER_07, 0xff7e1880), // PCI-E
       
   141 	_R("RTL8102e",		RTL_GIGA_MAC_VER_08, 0xff7e1880), // PCI-E
       
   142 	_R("RTL8102e",		RTL_GIGA_MAC_VER_09, 0xff7e1880), // PCI-E
       
   143 	_R("RTL8101e",		RTL_GIGA_MAC_VER_10, 0xff7e1880), // PCI-E
       
   144 	_R("RTL8168b/8111b",	RTL_GIGA_MAC_VER_11, 0xff7e1880), // PCI-E
       
   145 	_R("RTL8168b/8111b",	RTL_GIGA_MAC_VER_12, 0xff7e1880), // PCI-E
       
   146 	_R("RTL8101e",		RTL_GIGA_MAC_VER_13, 0xff7e1880), // PCI-E 8139
       
   147 	_R("RTL8100e",		RTL_GIGA_MAC_VER_14, 0xff7e1880), // PCI-E 8139
       
   148 	_R("RTL8100e",		RTL_GIGA_MAC_VER_15, 0xff7e1880), // PCI-E 8139
       
   149 	_R("RTL8168b/8111b",	RTL_GIGA_MAC_VER_17, 0xff7e1880), // PCI-E
       
   150 	_R("RTL8101e",		RTL_GIGA_MAC_VER_16, 0xff7e1880), // PCI-E
       
   151 	_R("RTL8168cp/8111cp",	RTL_GIGA_MAC_VER_18, 0xff7e1880), // PCI-E
       
   152 	_R("RTL8168c/8111c",	RTL_GIGA_MAC_VER_19, 0xff7e1880), // PCI-E
       
   153 	_R("RTL8168c/8111c",	RTL_GIGA_MAC_VER_20, 0xff7e1880), // PCI-E
       
   154 	_R("RTL8168c/8111c",	RTL_GIGA_MAC_VER_21, 0xff7e1880), // PCI-E
       
   155 	_R("RTL8168c/8111c",	RTL_GIGA_MAC_VER_22, 0xff7e1880), // PCI-E
       
   156 	_R("RTL8168cp/8111cp",	RTL_GIGA_MAC_VER_23, 0xff7e1880), // PCI-E
       
   157 	_R("RTL8168cp/8111cp",	RTL_GIGA_MAC_VER_24, 0xff7e1880), // PCI-E
       
   158 	_R("RTL8168d/8111d",	RTL_GIGA_MAC_VER_25, 0xff7e1880), // PCI-E
       
   159 	_R("RTL8168d/8111d",	RTL_GIGA_MAC_VER_26, 0xff7e1880), // PCI-E
       
   160 	_R("RTL8168dp/8111dp",	RTL_GIGA_MAC_VER_27, 0xff7e1880)  // PCI-E
       
   161 };
       
   162 #undef _R
       
   163 
       
   164 enum cfg_version {
       
   165 	RTL_CFG_0 = 0x00,
       
   166 	RTL_CFG_1,
       
   167 	RTL_CFG_2
       
   168 };
       
   169 
       
   170 static void rtl_hw_start_8169(struct net_device *);
       
   171 static void rtl_hw_start_8168(struct net_device *);
       
   172 static void rtl_hw_start_8101(struct net_device *);
       
   173 
       
   174 static DEFINE_PCI_DEVICE_TABLE(rtl8169_pci_tbl) = {
       
   175 	{ PCI_DEVICE(PCI_VENDOR_ID_REALTEK,	0x8129), 0, 0, RTL_CFG_0 },
       
   176 	{ PCI_DEVICE(PCI_VENDOR_ID_REALTEK,	0x8136), 0, 0, RTL_CFG_2 },
       
   177 	{ PCI_DEVICE(PCI_VENDOR_ID_REALTEK,	0x8167), 0, 0, RTL_CFG_0 },
       
   178 	{ PCI_DEVICE(PCI_VENDOR_ID_REALTEK,	0x8168), 0, 0, RTL_CFG_1 },
       
   179 	{ PCI_DEVICE(PCI_VENDOR_ID_REALTEK,	0x8169), 0, 0, RTL_CFG_0 },
       
   180 	{ PCI_DEVICE(PCI_VENDOR_ID_DLINK,	0x4300), 0, 0, RTL_CFG_0 },
       
   181 	{ PCI_DEVICE(PCI_VENDOR_ID_AT,		0xc107), 0, 0, RTL_CFG_0 },
       
   182 	{ PCI_DEVICE(0x16ec,			0x0116), 0, 0, RTL_CFG_0 },
       
   183 	{ PCI_VENDOR_ID_LINKSYS,		0x1032,
       
   184 		PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 },
       
   185 	{ 0x0001,				0x8168,
       
   186 		PCI_ANY_ID, 0x2410, 0, 0, RTL_CFG_2 },
       
   187 	{0,},
       
   188 };
       
   189 
       
   190 /* prevent driver from being loaded automatically */
       
   191 //MODULE_DEVICE_TABLE(pci, rtl8169_pci_tbl);
       
   192 
       
   193 /*
       
   194  * we set our copybreak very high so that we don't have
       
   195  * to allocate 16k frames all the time (see note in
       
   196  * rtl8169_open()
       
   197  */
       
   198 static int rx_copybreak = 16383;
       
   199 static int use_dac;
       
   200 static struct {
       
   201 	u32 msg_enable;
       
   202 } debug = { -1 };
       
   203 
       
   204 enum rtl_registers {
       
   205 	MAC0		= 0,	/* Ethernet hardware address. */
       
   206 	MAC4		= 4,
       
   207 	MAR0		= 8,	/* Multicast filter. */
       
   208 	CounterAddrLow		= 0x10,
       
   209 	CounterAddrHigh		= 0x14,
       
   210 	TxDescStartAddrLow	= 0x20,
       
   211 	TxDescStartAddrHigh	= 0x24,
       
   212 	TxHDescStartAddrLow	= 0x28,
       
   213 	TxHDescStartAddrHigh	= 0x2c,
       
   214 	FLASH		= 0x30,
       
   215 	ERSR		= 0x36,
       
   216 	ChipCmd		= 0x37,
       
   217 	TxPoll		= 0x38,
       
   218 	IntrMask	= 0x3c,
       
   219 	IntrStatus	= 0x3e,
       
   220 	TxConfig	= 0x40,
       
   221 	RxConfig	= 0x44,
       
   222 	RxMissed	= 0x4c,
       
   223 	Cfg9346		= 0x50,
       
   224 	Config0		= 0x51,
       
   225 	Config1		= 0x52,
       
   226 	Config2		= 0x53,
       
   227 	Config3		= 0x54,
       
   228 	Config4		= 0x55,
       
   229 	Config5		= 0x56,
       
   230 	MultiIntr	= 0x5c,
       
   231 	PHYAR		= 0x60,
       
   232 	PHYstatus	= 0x6c,
       
   233 	RxMaxSize	= 0xda,
       
   234 	CPlusCmd	= 0xe0,
       
   235 	IntrMitigate	= 0xe2,
       
   236 	RxDescAddrLow	= 0xe4,
       
   237 	RxDescAddrHigh	= 0xe8,
       
   238 	EarlyTxThres	= 0xec,
       
   239 	FuncEvent	= 0xf0,
       
   240 	FuncEventMask	= 0xf4,
       
   241 	FuncPresetState	= 0xf8,
       
   242 	FuncForceEvent	= 0xfc,
       
   243 };
       
   244 
       
   245 enum rtl8110_registers {
       
   246 	TBICSR			= 0x64,
       
   247 	TBI_ANAR		= 0x68,
       
   248 	TBI_LPAR		= 0x6a,
       
   249 };
       
   250 
       
   251 enum rtl8168_8101_registers {
       
   252 	CSIDR			= 0x64,
       
   253 	CSIAR			= 0x68,
       
   254 #define	CSIAR_FLAG			0x80000000
       
   255 #define	CSIAR_WRITE_CMD			0x80000000
       
   256 #define	CSIAR_BYTE_ENABLE		0x0f
       
   257 #define	CSIAR_BYTE_ENABLE_SHIFT		12
       
   258 #define	CSIAR_ADDR_MASK			0x0fff
       
   259 
       
   260 	EPHYAR			= 0x80,
       
   261 #define	EPHYAR_FLAG			0x80000000
       
   262 #define	EPHYAR_WRITE_CMD		0x80000000
       
   263 #define	EPHYAR_REG_MASK			0x1f
       
   264 #define	EPHYAR_REG_SHIFT		16
       
   265 #define	EPHYAR_DATA_MASK		0xffff
       
   266 	DBG_REG			= 0xd1,
       
   267 #define	FIX_NAK_1			(1 << 4)
       
   268 #define	FIX_NAK_2			(1 << 3)
       
   269 	EFUSEAR			= 0xdc,
       
   270 #define	EFUSEAR_FLAG			0x80000000
       
   271 #define	EFUSEAR_WRITE_CMD		0x80000000
       
   272 #define	EFUSEAR_READ_CMD		0x00000000
       
   273 #define	EFUSEAR_REG_MASK		0x03ff
       
   274 #define	EFUSEAR_REG_SHIFT		8
       
   275 #define	EFUSEAR_DATA_MASK		0xff
       
   276 };
       
   277 
       
   278 enum rtl_register_content {
       
   279 	/* InterruptStatusBits */
       
   280 	SYSErr		= 0x8000,
       
   281 	PCSTimeout	= 0x4000,
       
   282 	SWInt		= 0x0100,
       
   283 	TxDescUnavail	= 0x0080,
       
   284 	RxFIFOOver	= 0x0040,
       
   285 	LinkChg		= 0x0020,
       
   286 	RxOverflow	= 0x0010,
       
   287 	TxErr		= 0x0008,
       
   288 	TxOK		= 0x0004,
       
   289 	RxErr		= 0x0002,
       
   290 	RxOK		= 0x0001,
       
   291 
       
   292 	/* RxStatusDesc */
       
   293 	RxFOVF	= (1 << 23),
       
   294 	RxRWT	= (1 << 22),
       
   295 	RxRES	= (1 << 21),
       
   296 	RxRUNT	= (1 << 20),
       
   297 	RxCRC	= (1 << 19),
       
   298 
       
   299 	/* ChipCmdBits */
       
   300 	CmdReset	= 0x10,
       
   301 	CmdRxEnb	= 0x08,
       
   302 	CmdTxEnb	= 0x04,
       
   303 	RxBufEmpty	= 0x01,
       
   304 
       
   305 	/* TXPoll register p.5 */
       
   306 	HPQ		= 0x80,		/* Poll cmd on the high prio queue */
       
   307 	NPQ		= 0x40,		/* Poll cmd on the low prio queue */
       
   308 	FSWInt		= 0x01,		/* Forced software interrupt */
       
   309 
       
   310 	/* Cfg9346Bits */
       
   311 	Cfg9346_Lock	= 0x00,
       
   312 	Cfg9346_Unlock	= 0xc0,
       
   313 
       
   314 	/* rx_mode_bits */
       
   315 	AcceptErr	= 0x20,
       
   316 	AcceptRunt	= 0x10,
       
   317 	AcceptBroadcast	= 0x08,
       
   318 	AcceptMulticast	= 0x04,
       
   319 	AcceptMyPhys	= 0x02,
       
   320 	AcceptAllPhys	= 0x01,
       
   321 
       
   322 	/* RxConfigBits */
       
   323 	RxCfgFIFOShift	= 13,
       
   324 	RxCfgDMAShift	=  8,
       
   325 
       
   326 	/* TxConfigBits */
       
   327 	TxInterFrameGapShift = 24,
       
   328 	TxDMAShift = 8,	/* DMA burst value (0-7) is shift this many bits */
       
   329 
       
   330 	/* Config1 register p.24 */
       
   331 	LEDS1		= (1 << 7),
       
   332 	LEDS0		= (1 << 6),
       
   333 	MSIEnable	= (1 << 5),	/* Enable Message Signaled Interrupt */
       
   334 	Speed_down	= (1 << 4),
       
   335 	MEMMAP		= (1 << 3),
       
   336 	IOMAP		= (1 << 2),
       
   337 	VPD		= (1 << 1),
       
   338 	PMEnable	= (1 << 0),	/* Power Management Enable */
       
   339 
       
   340 	/* Config2 register p. 25 */
       
   341 	PCI_Clock_66MHz = 0x01,
       
   342 	PCI_Clock_33MHz = 0x00,
       
   343 
       
   344 	/* Config3 register p.25 */
       
   345 	MagicPacket	= (1 << 5),	/* Wake up when receives a Magic Packet */
       
   346 	LinkUp		= (1 << 4),	/* Wake up when the cable connection is re-established */
       
   347 	Beacon_en	= (1 << 0),	/* 8168 only. Reserved in the 8168b */
       
   348 
       
   349 	/* Config5 register p.27 */
       
   350 	BWF		= (1 << 6),	/* Accept Broadcast wakeup frame */
       
   351 	MWF		= (1 << 5),	/* Accept Multicast wakeup frame */
       
   352 	UWF		= (1 << 4),	/* Accept Unicast wakeup frame */
       
   353 	LanWake		= (1 << 1),	/* LanWake enable/disable */
       
   354 	PMEStatus	= (1 << 0),	/* PME status can be reset by PCI RST# */
       
   355 
       
   356 	/* TBICSR p.28 */
       
   357 	TBIReset	= 0x80000000,
       
   358 	TBILoopback	= 0x40000000,
       
   359 	TBINwEnable	= 0x20000000,
       
   360 	TBINwRestart	= 0x10000000,
       
   361 	TBILinkOk	= 0x02000000,
       
   362 	TBINwComplete	= 0x01000000,
       
   363 
       
   364 	/* CPlusCmd p.31 */
       
   365 	EnableBist	= (1 << 15),	// 8168 8101
       
   366 	Mac_dbgo_oe	= (1 << 14),	// 8168 8101
       
   367 	Normal_mode	= (1 << 13),	// unused
       
   368 	Force_half_dup	= (1 << 12),	// 8168 8101
       
   369 	Force_rxflow_en	= (1 << 11),	// 8168 8101
       
   370 	Force_txflow_en	= (1 << 10),	// 8168 8101
       
   371 	Cxpl_dbg_sel	= (1 << 9),	// 8168 8101
       
   372 	ASF		= (1 << 8),	// 8168 8101
       
   373 	PktCntrDisable	= (1 << 7),	// 8168 8101
       
   374 	Mac_dbgo_sel	= 0x001c,	// 8168
       
   375 	RxVlan		= (1 << 6),
       
   376 	RxChkSum	= (1 << 5),
       
   377 	PCIDAC		= (1 << 4),
       
   378 	PCIMulRW	= (1 << 3),
       
   379 	INTT_0		= 0x0000,	// 8168
       
   380 	INTT_1		= 0x0001,	// 8168
       
   381 	INTT_2		= 0x0002,	// 8168
       
   382 	INTT_3		= 0x0003,	// 8168
       
   383 
       
   384 	/* rtl8169_PHYstatus */
       
   385 	TBI_Enable	= 0x80,
       
   386 	TxFlowCtrl	= 0x40,
       
   387 	RxFlowCtrl	= 0x20,
       
   388 	_1000bpsF	= 0x10,
       
   389 	_100bps		= 0x08,
       
   390 	_10bps		= 0x04,
       
   391 	LinkStatus	= 0x02,
       
   392 	FullDup		= 0x01,
       
   393 
       
   394 	/* _TBICSRBit */
       
   395 	TBILinkOK	= 0x02000000,
       
   396 
       
   397 	/* DumpCounterCommand */
       
   398 	CounterDump	= 0x8,
       
   399 };
       
   400 
       
   401 enum desc_status_bit {
       
   402 	DescOwn		= (1 << 31), /* Descriptor is owned by NIC */
       
   403 	RingEnd		= (1 << 30), /* End of descriptor ring */
       
   404 	FirstFrag	= (1 << 29), /* First segment of a packet */
       
   405 	LastFrag	= (1 << 28), /* Final segment of a packet */
       
   406 
       
   407 	/* Tx private */
       
   408 	LargeSend	= (1 << 27), /* TCP Large Send Offload (TSO) */
       
   409 	MSSShift	= 16,        /* MSS value position */
       
   410 	MSSMask		= 0xfff,     /* MSS value + LargeSend bit: 12 bits */
       
   411 	IPCS		= (1 << 18), /* Calculate IP checksum */
       
   412 	UDPCS		= (1 << 17), /* Calculate UDP/IP checksum */
       
   413 	TCPCS		= (1 << 16), /* Calculate TCP/IP checksum */
       
   414 	TxVlanTag	= (1 << 17), /* Add VLAN tag */
       
   415 
       
   416 	/* Rx private */
       
   417 	PID1		= (1 << 18), /* Protocol ID bit 1/2 */
       
   418 	PID0		= (1 << 17), /* Protocol ID bit 2/2 */
       
   419 
       
   420 #define RxProtoUDP	(PID1)
       
   421 #define RxProtoTCP	(PID0)
       
   422 #define RxProtoIP	(PID1 | PID0)
       
   423 #define RxProtoMask	RxProtoIP
       
   424 
       
   425 	IPFail		= (1 << 16), /* IP checksum failed */
       
   426 	UDPFail		= (1 << 15), /* UDP/IP checksum failed */
       
   427 	TCPFail		= (1 << 14), /* TCP/IP checksum failed */
       
   428 	RxVlanTag	= (1 << 16), /* VLAN tag available */
       
   429 };
       
   430 
       
   431 #define RsvdMask	0x3fffc000
       
   432 
       
   433 struct TxDesc {
       
   434 	__le32 opts1;
       
   435 	__le32 opts2;
       
   436 	__le64 addr;
       
   437 };
       
   438 
       
   439 struct RxDesc {
       
   440 	__le32 opts1;
       
   441 	__le32 opts2;
       
   442 	__le64 addr;
       
   443 };
       
   444 
       
   445 struct ring_info {
       
   446 	struct sk_buff	*skb;
       
   447 	u32		len;
       
   448 	u8		__pad[sizeof(void *) - sizeof(u32)];
       
   449 };
       
   450 
       
   451 enum features {
       
   452 	RTL_FEATURE_WOL		= (1 << 0),
       
   453 	RTL_FEATURE_MSI		= (1 << 1),
       
   454 	RTL_FEATURE_GMII	= (1 << 2),
       
   455 };
       
   456 
       
   457 struct rtl8169_counters {
       
   458 	__le64	tx_packets;
       
   459 	__le64	rx_packets;
       
   460 	__le64	tx_errors;
       
   461 	__le32	rx_errors;
       
   462 	__le16	rx_missed;
       
   463 	__le16	align_errors;
       
   464 	__le32	tx_one_collision;
       
   465 	__le32	tx_multi_collision;
       
   466 	__le64	rx_unicast;
       
   467 	__le64	rx_broadcast;
       
   468 	__le32	rx_multicast;
       
   469 	__le16	tx_aborted;
       
   470 	__le16	tx_underun;
       
   471 };
       
   472 
       
   473 struct rtl8169_private {
       
   474 	void __iomem *mmio_addr;	/* memory map physical address */
       
   475 	struct pci_dev *pci_dev;	/* Index of PCI device */
       
   476 	struct net_device *dev;
       
   477 	struct napi_struct napi;
       
   478 	spinlock_t lock;		/* spin lock flag */
       
   479 	u32 msg_enable;
       
   480 	int chipset;
       
   481 	int mac_version;
       
   482 	u32 cur_rx; /* Index into the Rx descriptor buffer of next Rx pkt. */
       
   483 	u32 cur_tx; /* Index into the Tx descriptor buffer of next Rx pkt. */
       
   484 	u32 dirty_rx;
       
   485 	u32 dirty_tx;
       
   486 	struct TxDesc *TxDescArray;	/* 256-aligned Tx descriptor ring */
       
   487 	struct RxDesc *RxDescArray;	/* 256-aligned Rx descriptor ring */
       
   488 	dma_addr_t TxPhyAddr;
       
   489 	dma_addr_t RxPhyAddr;
       
   490 	struct sk_buff *Rx_skbuff[NUM_RX_DESC];	/* Rx data buffers */
       
   491 	struct ring_info tx_skb[NUM_TX_DESC];	/* Tx data buffers */
       
   492 	unsigned align;
       
   493 	unsigned rx_buf_sz;
       
   494 	struct timer_list timer;
       
   495 	u16 cp_cmd;
       
   496 	u16 intr_event;
       
   497 	u16 napi_event;
       
   498 	u16 intr_mask;
       
   499 	int phy_1000_ctrl_reg;
       
   500 #ifdef CONFIG_R8169_VLAN
       
   501 	struct vlan_group *vlgrp;
       
   502 #endif
       
   503 	int (*set_speed)(struct net_device *, u8 autoneg, u16 speed, u8 duplex);
       
   504 	int (*get_settings)(struct net_device *, struct ethtool_cmd *);
       
   505 	void (*phy_reset_enable)(void __iomem *);
       
   506 	void (*hw_start)(struct net_device *);
       
   507 	unsigned int (*phy_reset_pending)(void __iomem *);
       
   508 	unsigned int (*link_ok)(void __iomem *);
       
   509 	int (*do_ioctl)(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd);
       
   510 	int pcie_cap;
       
   511 	struct delayed_work task;
       
   512 	unsigned features;
       
   513 
       
   514 	struct mii_if_info mii;
       
   515 	struct rtl8169_counters counters;
       
   516 	u32 saved_wolopts;
       
   517 
       
   518 	ec_device_t *ecdev;
       
   519 	unsigned long ec_watchdog_jiffies;
       
   520 };
       
   521 
       
   522 MODULE_AUTHOR("Realtek and the Linux r8169 crew <netdev@vger.kernel.org>");
       
   523 MODULE_DESCRIPTION("RealTek RTL-8169 Gigabit Ethernet driver (EtherCAT)");
       
   524 module_param(rx_copybreak, int, 0);
       
   525 MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
       
   526 module_param(use_dac, int, 0);
       
   527 MODULE_PARM_DESC(use_dac, "Enable PCI DAC. Unsafe on 32 bit PCI slot.");
       
   528 module_param_named(debug, debug.msg_enable, int, 0);
       
   529 MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
       
   530 MODULE_LICENSE("GPL");
       
   531 MODULE_VERSION(EC_MASTER_VERSION);
       
   532 
       
   533 static int rtl8169_open(struct net_device *dev);
       
   534 static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
       
   535 				      struct net_device *dev);
       
   536 static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance);
       
   537 static int rtl8169_init_ring(struct net_device *dev);
       
   538 static void rtl_hw_start(struct net_device *dev);
       
   539 static int rtl8169_close(struct net_device *dev);
       
   540 static void rtl_set_rx_mode(struct net_device *dev);
       
   541 static void rtl8169_tx_timeout(struct net_device *dev);
       
   542 static struct net_device_stats *rtl8169_get_stats(struct net_device *dev);
       
   543 static int rtl8169_rx_interrupt(struct net_device *, struct rtl8169_private *,
       
   544 				void __iomem *, u32 budget);
       
   545 static int rtl8169_change_mtu(struct net_device *dev, int new_mtu);
       
   546 static void rtl8169_down(struct net_device *dev);
       
   547 static void rtl8169_rx_clear(struct rtl8169_private *tp);
       
   548 static void ec_poll(struct net_device *dev);
       
   549 static int rtl8169_poll(struct napi_struct *napi, int budget);
       
   550 
       
   551 static const unsigned int rtl8169_rx_config =
       
   552 	(RX_FIFO_THRESH << RxCfgFIFOShift) | (RX_DMA_BURST << RxCfgDMAShift);
       
   553 
       
   554 static void mdio_write(void __iomem *ioaddr, int reg_addr, int value)
       
   555 {
       
   556 	int i;
       
   557 
       
   558 	RTL_W32(PHYAR, 0x80000000 | (reg_addr & 0x1f) << 16 | (value & 0xffff));
       
   559 
       
   560 	for (i = 20; i > 0; i--) {
       
   561 		/*
       
   562 		 * Check if the RTL8169 has completed writing to the specified
       
   563 		 * MII register.
       
   564 		 */
       
   565 		if (!(RTL_R32(PHYAR) & 0x80000000))
       
   566 			break;
       
   567 		udelay(25);
       
   568 	}
       
   569 	/*
       
   570 	 * According to hardware specs a 20us delay is required after write
       
   571 	 * complete indication, but before sending next command.
       
   572 	 */
       
   573 	udelay(20);
       
   574 }
       
   575 
       
   576 static int mdio_read(void __iomem *ioaddr, int reg_addr)
       
   577 {
       
   578 	int i, value = -1;
       
   579 
       
   580 	RTL_W32(PHYAR, 0x0 | (reg_addr & 0x1f) << 16);
       
   581 
       
   582 	for (i = 20; i > 0; i--) {
       
   583 		/*
       
   584 		 * Check if the RTL8169 has completed retrieving data from
       
   585 		 * the specified MII register.
       
   586 		 */
       
   587 		if (RTL_R32(PHYAR) & 0x80000000) {
       
   588 			value = RTL_R32(PHYAR) & 0xffff;
       
   589 			break;
       
   590 		}
       
   591 		udelay(25);
       
   592 	}
       
   593 	/*
       
   594 	 * According to hardware specs a 20us delay is required after read
       
   595 	 * complete indication, but before sending next command.
       
   596 	 */
       
   597 	udelay(20);
       
   598 
       
   599 	return value;
       
   600 }
       
   601 
       
   602 static void mdio_patch(void __iomem *ioaddr, int reg_addr, int value)
       
   603 {
       
   604 	mdio_write(ioaddr, reg_addr, mdio_read(ioaddr, reg_addr) | value);
       
   605 }
       
   606 
       
   607 static void mdio_plus_minus(void __iomem *ioaddr, int reg_addr, int p, int m)
       
   608 {
       
   609 	int val;
       
   610 
       
   611 	val = mdio_read(ioaddr, reg_addr);
       
   612 	mdio_write(ioaddr, reg_addr, (val | p) & ~m);
       
   613 }
       
   614 
       
   615 static void rtl_mdio_write(struct net_device *dev, int phy_id, int location,
       
   616 			   int val)
       
   617 {
       
   618 	struct rtl8169_private *tp = netdev_priv(dev);
       
   619 	void __iomem *ioaddr = tp->mmio_addr;
       
   620 
       
   621 	mdio_write(ioaddr, location, val);
       
   622 }
       
   623 
       
   624 static int rtl_mdio_read(struct net_device *dev, int phy_id, int location)
       
   625 {
       
   626 	struct rtl8169_private *tp = netdev_priv(dev);
       
   627 	void __iomem *ioaddr = tp->mmio_addr;
       
   628 
       
   629 	return mdio_read(ioaddr, location);
       
   630 }
       
   631 
       
   632 static void rtl_ephy_write(void __iomem *ioaddr, int reg_addr, int value)
       
   633 {
       
   634 	unsigned int i;
       
   635 
       
   636 	RTL_W32(EPHYAR, EPHYAR_WRITE_CMD | (value & EPHYAR_DATA_MASK) |
       
   637 		(reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
       
   638 
       
   639 	for (i = 0; i < 100; i++) {
       
   640 		if (!(RTL_R32(EPHYAR) & EPHYAR_FLAG))
       
   641 			break;
       
   642 		udelay(10);
       
   643 	}
       
   644 }
       
   645 
       
   646 static u16 rtl_ephy_read(void __iomem *ioaddr, int reg_addr)
       
   647 {
       
   648 	u16 value = 0xffff;
       
   649 	unsigned int i;
       
   650 
       
   651 	RTL_W32(EPHYAR, (reg_addr & EPHYAR_REG_MASK) << EPHYAR_REG_SHIFT);
       
   652 
       
   653 	for (i = 0; i < 100; i++) {
       
   654 		if (RTL_R32(EPHYAR) & EPHYAR_FLAG) {
       
   655 			value = RTL_R32(EPHYAR) & EPHYAR_DATA_MASK;
       
   656 			break;
       
   657 		}
       
   658 		udelay(10);
       
   659 	}
       
   660 
       
   661 	return value;
       
   662 }
       
   663 
       
   664 static void rtl_csi_write(void __iomem *ioaddr, int addr, int value)
       
   665 {
       
   666 	unsigned int i;
       
   667 
       
   668 	RTL_W32(CSIDR, value);
       
   669 	RTL_W32(CSIAR, CSIAR_WRITE_CMD | (addr & CSIAR_ADDR_MASK) |
       
   670 		CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
       
   671 
       
   672 	for (i = 0; i < 100; i++) {
       
   673 		if (!(RTL_R32(CSIAR) & CSIAR_FLAG))
       
   674 			break;
       
   675 		udelay(10);
       
   676 	}
       
   677 }
       
   678 
       
   679 static u32 rtl_csi_read(void __iomem *ioaddr, int addr)
       
   680 {
       
   681 	u32 value = ~0x00;
       
   682 	unsigned int i;
       
   683 
       
   684 	RTL_W32(CSIAR, (addr & CSIAR_ADDR_MASK) |
       
   685 		CSIAR_BYTE_ENABLE << CSIAR_BYTE_ENABLE_SHIFT);
       
   686 
       
   687 	for (i = 0; i < 100; i++) {
       
   688 		if (RTL_R32(CSIAR) & CSIAR_FLAG) {
       
   689 			value = RTL_R32(CSIDR);
       
   690 			break;
       
   691 		}
       
   692 		udelay(10);
       
   693 	}
       
   694 
       
   695 	return value;
       
   696 }
       
   697 
       
   698 static u8 rtl8168d_efuse_read(void __iomem *ioaddr, int reg_addr)
       
   699 {
       
   700 	u8 value = 0xff;
       
   701 	unsigned int i;
       
   702 
       
   703 	RTL_W32(EFUSEAR, (reg_addr & EFUSEAR_REG_MASK) << EFUSEAR_REG_SHIFT);
       
   704 
       
   705 	for (i = 0; i < 300; i++) {
       
   706 		if (RTL_R32(EFUSEAR) & EFUSEAR_FLAG) {
       
   707 			value = RTL_R32(EFUSEAR) & EFUSEAR_DATA_MASK;
       
   708 			break;
       
   709 		}
       
   710 		udelay(100);
       
   711 	}
       
   712 
       
   713 	return value;
       
   714 }
       
   715 
       
   716 static void rtl8169_irq_mask_and_ack(void __iomem *ioaddr)
       
   717 {
       
   718 	RTL_W16(IntrMask, 0x0000);
       
   719 
       
   720 	RTL_W16(IntrStatus, 0xffff);
       
   721 }
       
   722 
       
   723 static void rtl8169_asic_down(void __iomem *ioaddr)
       
   724 {
       
   725 	RTL_W8(ChipCmd, 0x00);
       
   726 	rtl8169_irq_mask_and_ack(ioaddr);
       
   727 	RTL_R16(CPlusCmd);
       
   728 }
       
   729 
       
   730 static unsigned int rtl8169_tbi_reset_pending(void __iomem *ioaddr)
       
   731 {
       
   732 	return RTL_R32(TBICSR) & TBIReset;
       
   733 }
       
   734 
       
   735 static unsigned int rtl8169_xmii_reset_pending(void __iomem *ioaddr)
       
   736 {
       
   737 	return mdio_read(ioaddr, MII_BMCR) & BMCR_RESET;
       
   738 }
       
   739 
       
   740 static unsigned int rtl8169_tbi_link_ok(void __iomem *ioaddr)
       
   741 {
       
   742 	return RTL_R32(TBICSR) & TBILinkOk;
       
   743 }
       
   744 
       
   745 static unsigned int rtl8169_xmii_link_ok(void __iomem *ioaddr)
       
   746 {
       
   747 	return RTL_R8(PHYstatus) & LinkStatus;
       
   748 }
       
   749 
       
   750 static void rtl8169_tbi_reset_enable(void __iomem *ioaddr)
       
   751 {
       
   752 	RTL_W32(TBICSR, RTL_R32(TBICSR) | TBIReset);
       
   753 }
       
   754 
       
   755 static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
       
   756 {
       
   757 	unsigned int val;
       
   758 
       
   759 	val = mdio_read(ioaddr, MII_BMCR) | BMCR_RESET;
       
   760 	mdio_write(ioaddr, MII_BMCR, val & 0xffff);
       
   761 }
       
   762 
       
   763 static void rtl8169_check_link_status(struct net_device *dev,
       
   764 				      struct rtl8169_private *tp,
       
   765 				      void __iomem *ioaddr)
       
   766 {
       
   767 	unsigned long flags;
       
   768 
       
   769 	if (tp->ecdev) {
       
   770 		ecdev_set_link(tp->ecdev, tp->link_ok(ioaddr) ? 1 : 0);
       
   771 		return;
       
   772 	}
       
   773 
       
   774 	spin_lock_irqsave(&tp->lock, flags);
       
   775 	if (tp->link_ok(ioaddr)) {
       
   776 		/* This is to cancel a scheduled suspend if there's one. */
       
   777 		pm_request_resume(&tp->pci_dev->dev);
       
   778 		netif_carrier_on(dev);
       
   779 		netif_info(tp, ifup, dev, "link up\n");
       
   780 	} else {
       
   781 		netif_carrier_off(dev);
       
   782 		netif_info(tp, ifdown, dev, "link down\n");
       
   783 		pm_schedule_suspend(&tp->pci_dev->dev, 100);
       
   784 	}
       
   785 	spin_unlock_irqrestore(&tp->lock, flags);
       
   786 }
       
   787 
       
   788 #define WAKE_ANY (WAKE_PHY | WAKE_MAGIC | WAKE_UCAST | WAKE_BCAST | WAKE_MCAST)
       
   789 
       
   790 static u32 __rtl8169_get_wol(struct rtl8169_private *tp)
       
   791 {
       
   792 	void __iomem *ioaddr = tp->mmio_addr;
       
   793 	u8 options;
       
   794 	u32 wolopts = 0;
       
   795 
       
   796 	options = RTL_R8(Config1);
       
   797 	if (!(options & PMEnable))
       
   798 		return 0;
       
   799 
       
   800 	options = RTL_R8(Config3);
       
   801 	if (options & LinkUp)
       
   802 		wolopts |= WAKE_PHY;
       
   803 	if (options & MagicPacket)
       
   804 		wolopts |= WAKE_MAGIC;
       
   805 
       
   806 	options = RTL_R8(Config5);
       
   807 	if (options & UWF)
       
   808 		wolopts |= WAKE_UCAST;
       
   809 	if (options & BWF)
       
   810 		wolopts |= WAKE_BCAST;
       
   811 	if (options & MWF)
       
   812 		wolopts |= WAKE_MCAST;
       
   813 
       
   814 	return wolopts;
       
   815 }
       
   816 
       
   817 static void rtl8169_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
       
   818 {
       
   819 	struct rtl8169_private *tp = netdev_priv(dev);
       
   820 
       
   821 	spin_lock_irq(&tp->lock);
       
   822 
       
   823 	wol->supported = WAKE_ANY;
       
   824 	wol->wolopts = __rtl8169_get_wol(tp);
       
   825 
       
   826 	spin_unlock_irq(&tp->lock);
       
   827 }
       
   828 
       
   829 static void __rtl8169_set_wol(struct rtl8169_private *tp, u32 wolopts)
       
   830 {
       
   831 	void __iomem *ioaddr = tp->mmio_addr;
       
   832 	unsigned int i;
       
   833 	static const struct {
       
   834 		u32 opt;
       
   835 		u16 reg;
       
   836 		u8  mask;
       
   837 	} cfg[] = {
       
   838 		{ WAKE_ANY,   Config1, PMEnable },
       
   839 		{ WAKE_PHY,   Config3, LinkUp },
       
   840 		{ WAKE_MAGIC, Config3, MagicPacket },
       
   841 		{ WAKE_UCAST, Config5, UWF },
       
   842 		{ WAKE_BCAST, Config5, BWF },
       
   843 		{ WAKE_MCAST, Config5, MWF },
       
   844 		{ WAKE_ANY,   Config5, LanWake }
       
   845 	};
       
   846 
       
   847 	RTL_W8(Cfg9346, Cfg9346_Unlock);
       
   848 
       
   849 	for (i = 0; i < ARRAY_SIZE(cfg); i++) {
       
   850 		u8 options = RTL_R8(cfg[i].reg) & ~cfg[i].mask;
       
   851 		if (wolopts & cfg[i].opt)
       
   852 			options |= cfg[i].mask;
       
   853 		RTL_W8(cfg[i].reg, options);
       
   854 	}
       
   855 
       
   856 	RTL_W8(Cfg9346, Cfg9346_Lock);
       
   857 }
       
   858 
       
   859 static int rtl8169_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
       
   860 {
       
   861 	struct rtl8169_private *tp = netdev_priv(dev);
       
   862 
       
   863 	spin_lock_irq(&tp->lock);
       
   864 
       
   865 	if (wol->wolopts)
       
   866 		tp->features |= RTL_FEATURE_WOL;
       
   867 	else
       
   868 		tp->features &= ~RTL_FEATURE_WOL;
       
   869 	__rtl8169_set_wol(tp, wol->wolopts);
       
   870 	device_set_wakeup_enable(&tp->pci_dev->dev, wol->wolopts);
       
   871 
       
   872 	spin_unlock_irq(&tp->lock);
       
   873 
       
   874 	return 0;
       
   875 }
       
   876 
       
   877 static void rtl8169_get_drvinfo(struct net_device *dev,
       
   878 				struct ethtool_drvinfo *info)
       
   879 {
       
   880 	struct rtl8169_private *tp = netdev_priv(dev);
       
   881 
       
   882 	strcpy(info->driver, MODULENAME);
       
   883 	strcpy(info->version, RTL8169_VERSION);
       
   884 	strcpy(info->bus_info, pci_name(tp->pci_dev));
       
   885 }
       
   886 
       
   887 static int rtl8169_get_regs_len(struct net_device *dev)
       
   888 {
       
   889 	return R8169_REGS_SIZE;
       
   890 }
       
   891 
       
   892 static int rtl8169_set_speed_tbi(struct net_device *dev,
       
   893 				 u8 autoneg, u16 speed, u8 duplex)
       
   894 {
       
   895 	struct rtl8169_private *tp = netdev_priv(dev);
       
   896 	void __iomem *ioaddr = tp->mmio_addr;
       
   897 	int ret = 0;
       
   898 	u32 reg;
       
   899 
       
   900 	reg = RTL_R32(TBICSR);
       
   901 	if ((autoneg == AUTONEG_DISABLE) && (speed == SPEED_1000) &&
       
   902 	    (duplex == DUPLEX_FULL)) {
       
   903 		RTL_W32(TBICSR, reg & ~(TBINwEnable | TBINwRestart));
       
   904 	} else if (autoneg == AUTONEG_ENABLE)
       
   905 		RTL_W32(TBICSR, reg | TBINwEnable | TBINwRestart);
       
   906 	else {
       
   907 		netif_warn(tp, link, dev,
       
   908 			   "incorrect speed setting refused in TBI mode\n");
       
   909 		ret = -EOPNOTSUPP;
       
   910 	}
       
   911 
       
   912 	return ret;
       
   913 }
       
   914 
       
   915 static int rtl8169_set_speed_xmii(struct net_device *dev,
       
   916 				  u8 autoneg, u16 speed, u8 duplex)
       
   917 {
       
   918 	struct rtl8169_private *tp = netdev_priv(dev);
       
   919 	void __iomem *ioaddr = tp->mmio_addr;
       
   920 	int giga_ctrl, bmcr;
       
   921 
       
   922 	if (autoneg == AUTONEG_ENABLE) {
       
   923 		int auto_nego;
       
   924 
       
   925 		auto_nego = mdio_read(ioaddr, MII_ADVERTISE);
       
   926 		auto_nego |= (ADVERTISE_10HALF | ADVERTISE_10FULL |
       
   927 			      ADVERTISE_100HALF | ADVERTISE_100FULL);
       
   928 		auto_nego |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
       
   929 
       
   930 		giga_ctrl = mdio_read(ioaddr, MII_CTRL1000);
       
   931 		giga_ctrl &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
       
   932 
       
   933 		/* The 8100e/8101e/8102e do Fast Ethernet only. */
       
   934 		if ((tp->mac_version != RTL_GIGA_MAC_VER_07) &&
       
   935 		    (tp->mac_version != RTL_GIGA_MAC_VER_08) &&
       
   936 		    (tp->mac_version != RTL_GIGA_MAC_VER_09) &&
       
   937 		    (tp->mac_version != RTL_GIGA_MAC_VER_10) &&
       
   938 		    (tp->mac_version != RTL_GIGA_MAC_VER_13) &&
       
   939 		    (tp->mac_version != RTL_GIGA_MAC_VER_14) &&
       
   940 		    (tp->mac_version != RTL_GIGA_MAC_VER_15) &&
       
   941 		    (tp->mac_version != RTL_GIGA_MAC_VER_16)) {
       
   942 			giga_ctrl |= ADVERTISE_1000FULL | ADVERTISE_1000HALF;
       
   943 		} else {
       
   944 			netif_info(tp, link, dev,
       
   945 				   "PHY does not support 1000Mbps\n");
       
   946 		}
       
   947 
       
   948 		bmcr = BMCR_ANENABLE | BMCR_ANRESTART;
       
   949 
       
   950 		if ((tp->mac_version == RTL_GIGA_MAC_VER_11) ||
       
   951 		    (tp->mac_version == RTL_GIGA_MAC_VER_12) ||
       
   952 		    (tp->mac_version >= RTL_GIGA_MAC_VER_17)) {
       
   953 			/*
       
   954 			 * Wake up the PHY.
       
   955 			 * Vendor specific (0x1f) and reserved (0x0e) MII
       
   956 			 * registers.
       
   957 			 */
       
   958 			mdio_write(ioaddr, 0x1f, 0x0000);
       
   959 			mdio_write(ioaddr, 0x0e, 0x0000);
       
   960 		}
       
   961 
       
   962 		mdio_write(ioaddr, MII_ADVERTISE, auto_nego);
       
   963 		mdio_write(ioaddr, MII_CTRL1000, giga_ctrl);
       
   964 	} else {
       
   965 		giga_ctrl = 0;
       
   966 
       
   967 		if (speed == SPEED_10)
       
   968 			bmcr = 0;
       
   969 		else if (speed == SPEED_100)
       
   970 			bmcr = BMCR_SPEED100;
       
   971 		else
       
   972 			return -EINVAL;
       
   973 
       
   974 		if (duplex == DUPLEX_FULL)
       
   975 			bmcr |= BMCR_FULLDPLX;
       
   976 
       
   977 		mdio_write(ioaddr, 0x1f, 0x0000);
       
   978 	}
       
   979 
       
   980 	tp->phy_1000_ctrl_reg = giga_ctrl;
       
   981 
       
   982 	mdio_write(ioaddr, MII_BMCR, bmcr);
       
   983 
       
   984 	if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
       
   985 	    (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
       
   986 		if ((speed == SPEED_100) && (autoneg != AUTONEG_ENABLE)) {
       
   987 			mdio_write(ioaddr, 0x17, 0x2138);
       
   988 			mdio_write(ioaddr, 0x0e, 0x0260);
       
   989 		} else {
       
   990 			mdio_write(ioaddr, 0x17, 0x2108);
       
   991 			mdio_write(ioaddr, 0x0e, 0x0000);
       
   992 		}
       
   993 	}
       
   994 
       
   995 	return 0;
       
   996 }
       
   997 
       
   998 static int rtl8169_set_speed(struct net_device *dev,
       
   999 			     u8 autoneg, u16 speed, u8 duplex)
       
  1000 {
       
  1001 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1002 	int ret;
       
  1003 
       
  1004 	ret = tp->set_speed(dev, autoneg, speed, duplex);
       
  1005 
       
  1006 	if (netif_running(dev) && (tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
       
  1007 		mod_timer(&tp->timer, jiffies + RTL8169_PHY_TIMEOUT);
       
  1008 
       
  1009 	return ret;
       
  1010 }
       
  1011 
       
  1012 static int rtl8169_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
       
  1013 {
       
  1014 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1015 	unsigned long flags;
       
  1016 	int ret;
       
  1017 
       
  1018 	spin_lock_irqsave(&tp->lock, flags);
       
  1019 	ret = rtl8169_set_speed(dev, cmd->autoneg, cmd->speed, cmd->duplex);
       
  1020 	spin_unlock_irqrestore(&tp->lock, flags);
       
  1021 
       
  1022 	return ret;
       
  1023 }
       
  1024 
       
  1025 static u32 rtl8169_get_rx_csum(struct net_device *dev)
       
  1026 {
       
  1027 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1028 
       
  1029 	return tp->cp_cmd & RxChkSum;
       
  1030 }
       
  1031 
       
  1032 static int rtl8169_set_rx_csum(struct net_device *dev, u32 data)
       
  1033 {
       
  1034 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1035 	void __iomem *ioaddr = tp->mmio_addr;
       
  1036 	unsigned long flags;
       
  1037 
       
  1038 	spin_lock_irqsave(&tp->lock, flags);
       
  1039 
       
  1040 	if (data)
       
  1041 		tp->cp_cmd |= RxChkSum;
       
  1042 	else
       
  1043 		tp->cp_cmd &= ~RxChkSum;
       
  1044 
       
  1045 	RTL_W16(CPlusCmd, tp->cp_cmd);
       
  1046 	RTL_R16(CPlusCmd);
       
  1047 
       
  1048 	spin_unlock_irqrestore(&tp->lock, flags);
       
  1049 
       
  1050 	return 0;
       
  1051 }
       
  1052 
       
  1053 #ifdef CONFIG_R8169_VLAN
       
  1054 
       
  1055 static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
       
  1056 				      struct sk_buff *skb)
       
  1057 {
       
  1058 	return (tp->vlgrp && vlan_tx_tag_present(skb)) ?
       
  1059 		TxVlanTag | swab16(vlan_tx_tag_get(skb)) : 0x00;
       
  1060 }
       
  1061 
       
  1062 static void rtl8169_vlan_rx_register(struct net_device *dev,
       
  1063 				     struct vlan_group *grp)
       
  1064 {
       
  1065 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1066 	void __iomem *ioaddr = tp->mmio_addr;
       
  1067 	unsigned long flags;
       
  1068 
       
  1069 	spin_lock_irqsave(&tp->lock, flags);
       
  1070 	tp->vlgrp = grp;
       
  1071 	/*
       
  1072 	 * Do not disable RxVlan on 8110SCd.
       
  1073 	 */
       
  1074 	if (tp->vlgrp || (tp->mac_version == RTL_GIGA_MAC_VER_05))
       
  1075 		tp->cp_cmd |= RxVlan;
       
  1076 	else
       
  1077 		tp->cp_cmd &= ~RxVlan;
       
  1078 	RTL_W16(CPlusCmd, tp->cp_cmd);
       
  1079 	RTL_R16(CPlusCmd);
       
  1080 	spin_unlock_irqrestore(&tp->lock, flags);
       
  1081 }
       
  1082 
       
  1083 static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
       
  1084 			       struct sk_buff *skb, int polling)
       
  1085 {
       
  1086 	u32 opts2 = le32_to_cpu(desc->opts2);
       
  1087 	struct vlan_group *vlgrp = tp->vlgrp;
       
  1088 	int ret;
       
  1089 
       
  1090 	if (vlgrp && (opts2 & RxVlanTag)) {
       
  1091 		__vlan_hwaccel_rx(skb, vlgrp, swab16(opts2 & 0xffff), polling);
       
  1092 		ret = 0;
       
  1093 	} else
       
  1094 		ret = -1;
       
  1095 	desc->opts2 = 0;
       
  1096 	return ret;
       
  1097 }
       
  1098 
       
  1099 #else /* !CONFIG_R8169_VLAN */
       
  1100 
       
  1101 static inline u32 rtl8169_tx_vlan_tag(struct rtl8169_private *tp,
       
  1102 				      struct sk_buff *skb)
       
  1103 {
       
  1104 	return 0;
       
  1105 }
       
  1106 
       
  1107 static int rtl8169_rx_vlan_skb(struct rtl8169_private *tp, struct RxDesc *desc,
       
  1108 			       struct sk_buff *skb, int polling)
       
  1109 {
       
  1110 	return -1;
       
  1111 }
       
  1112 
       
  1113 #endif
       
  1114 
       
  1115 static int rtl8169_gset_tbi(struct net_device *dev, struct ethtool_cmd *cmd)
       
  1116 {
       
  1117 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1118 	void __iomem *ioaddr = tp->mmio_addr;
       
  1119 	u32 status;
       
  1120 
       
  1121 	cmd->supported =
       
  1122 		SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg | SUPPORTED_FIBRE;
       
  1123 	cmd->port = PORT_FIBRE;
       
  1124 	cmd->transceiver = XCVR_INTERNAL;
       
  1125 
       
  1126 	status = RTL_R32(TBICSR);
       
  1127 	cmd->advertising = (status & TBINwEnable) ?  ADVERTISED_Autoneg : 0;
       
  1128 	cmd->autoneg = !!(status & TBINwEnable);
       
  1129 
       
  1130 	cmd->speed = SPEED_1000;
       
  1131 	cmd->duplex = DUPLEX_FULL; /* Always set */
       
  1132 
       
  1133 	return 0;
       
  1134 }
       
  1135 
       
  1136 static int rtl8169_gset_xmii(struct net_device *dev, struct ethtool_cmd *cmd)
       
  1137 {
       
  1138 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1139 
       
  1140 	return mii_ethtool_gset(&tp->mii, cmd);
       
  1141 }
       
  1142 
       
  1143 static int rtl8169_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
       
  1144 {
       
  1145 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1146 	unsigned long flags;
       
  1147 	int rc;
       
  1148 
       
  1149 	spin_lock_irqsave(&tp->lock, flags);
       
  1150 
       
  1151 	rc = tp->get_settings(dev, cmd);
       
  1152 
       
  1153 	spin_unlock_irqrestore(&tp->lock, flags);
       
  1154 	return rc;
       
  1155 }
       
  1156 
       
  1157 static void rtl8169_get_regs(struct net_device *dev, struct ethtool_regs *regs,
       
  1158 			     void *p)
       
  1159 {
       
  1160 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1161 	unsigned long flags;
       
  1162 
       
  1163 	if (regs->len > R8169_REGS_SIZE)
       
  1164 		regs->len = R8169_REGS_SIZE;
       
  1165 
       
  1166 	spin_lock_irqsave(&tp->lock, flags);
       
  1167 	memcpy_fromio(p, tp->mmio_addr, regs->len);
       
  1168 	spin_unlock_irqrestore(&tp->lock, flags);
       
  1169 }
       
  1170 
       
  1171 static u32 rtl8169_get_msglevel(struct net_device *dev)
       
  1172 {
       
  1173 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1174 
       
  1175 	return tp->msg_enable;
       
  1176 }
       
  1177 
       
  1178 static void rtl8169_set_msglevel(struct net_device *dev, u32 value)
       
  1179 {
       
  1180 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1181 
       
  1182 	tp->msg_enable = value;
       
  1183 }
       
  1184 
       
  1185 static const char rtl8169_gstrings[][ETH_GSTRING_LEN] = {
       
  1186 	"tx_packets",
       
  1187 	"rx_packets",
       
  1188 	"tx_errors",
       
  1189 	"rx_errors",
       
  1190 	"rx_missed",
       
  1191 	"align_errors",
       
  1192 	"tx_single_collisions",
       
  1193 	"tx_multi_collisions",
       
  1194 	"unicast",
       
  1195 	"broadcast",
       
  1196 	"multicast",
       
  1197 	"tx_aborted",
       
  1198 	"tx_underrun",
       
  1199 };
       
  1200 
       
  1201 static int rtl8169_get_sset_count(struct net_device *dev, int sset)
       
  1202 {
       
  1203 	switch (sset) {
       
  1204 	case ETH_SS_STATS:
       
  1205 		return ARRAY_SIZE(rtl8169_gstrings);
       
  1206 	default:
       
  1207 		return -EOPNOTSUPP;
       
  1208 	}
       
  1209 }
       
  1210 
       
  1211 static void rtl8169_update_counters(struct net_device *dev)
       
  1212 {
       
  1213 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1214 	void __iomem *ioaddr = tp->mmio_addr;
       
  1215 	struct rtl8169_counters *counters;
       
  1216 	dma_addr_t paddr;
       
  1217 	u32 cmd;
       
  1218 	int wait = 1000;
       
  1219 
       
  1220 	/*
       
  1221 	 * Some chips are unable to dump tally counters when the receiver
       
  1222 	 * is disabled.
       
  1223 	 */
       
  1224 	if ((RTL_R8(ChipCmd) & CmdRxEnb) == 0)
       
  1225 		return;
       
  1226 
       
  1227 	counters = pci_alloc_consistent(tp->pci_dev, sizeof(*counters), &paddr);
       
  1228 	if (!counters)
       
  1229 		return;
       
  1230 
       
  1231 	RTL_W32(CounterAddrHigh, (u64)paddr >> 32);
       
  1232 	cmd = (u64)paddr & DMA_BIT_MASK(32);
       
  1233 	RTL_W32(CounterAddrLow, cmd);
       
  1234 	RTL_W32(CounterAddrLow, cmd | CounterDump);
       
  1235 
       
  1236 	while (wait--) {
       
  1237 		if ((RTL_R32(CounterAddrLow) & CounterDump) == 0) {
       
  1238 			/* copy updated counters */
       
  1239 			memcpy(&tp->counters, counters, sizeof(*counters));
       
  1240 			break;
       
  1241 		}
       
  1242 		udelay(10);
       
  1243 	}
       
  1244 
       
  1245 	RTL_W32(CounterAddrLow, 0);
       
  1246 	RTL_W32(CounterAddrHigh, 0);
       
  1247 
       
  1248 	pci_free_consistent(tp->pci_dev, sizeof(*counters), counters, paddr);
       
  1249 }
       
  1250 
       
  1251 static void rtl8169_get_ethtool_stats(struct net_device *dev,
       
  1252 				      struct ethtool_stats *stats, u64 *data)
       
  1253 {
       
  1254 	struct rtl8169_private *tp = netdev_priv(dev);
       
  1255 
       
  1256 	ASSERT_RTNL();
       
  1257 
       
  1258 	rtl8169_update_counters(dev);
       
  1259 
       
  1260 	data[0] = le64_to_cpu(tp->counters.tx_packets);
       
  1261 	data[1] = le64_to_cpu(tp->counters.rx_packets);
       
  1262 	data[2] = le64_to_cpu(tp->counters.tx_errors);
       
  1263 	data[3] = le32_to_cpu(tp->counters.rx_errors);
       
  1264 	data[4] = le16_to_cpu(tp->counters.rx_missed);
       
  1265 	data[5] = le16_to_cpu(tp->counters.align_errors);
       
  1266 	data[6] = le32_to_cpu(tp->counters.tx_one_collision);
       
  1267 	data[7] = le32_to_cpu(tp->counters.tx_multi_collision);
       
  1268 	data[8] = le64_to_cpu(tp->counters.rx_unicast);
       
  1269 	data[9] = le64_to_cpu(tp->counters.rx_broadcast);
       
  1270 	data[10] = le32_to_cpu(tp->counters.rx_multicast);
       
  1271 	data[11] = le16_to_cpu(tp->counters.tx_aborted);
       
  1272 	data[12] = le16_to_cpu(tp->counters.tx_underun);
       
  1273 }
       
  1274 
       
  1275 static void rtl8169_get_strings(struct net_device *dev, u32 stringset, u8 *data)
       
  1276 {
       
  1277 	switch(stringset) {
       
  1278 	case ETH_SS_STATS:
       
  1279 		memcpy(data, *rtl8169_gstrings, sizeof(rtl8169_gstrings));
       
  1280 		break;
       
  1281 	}
       
  1282 }
       
  1283 
       
  1284 static const struct ethtool_ops rtl8169_ethtool_ops = {
       
  1285 	.get_drvinfo		= rtl8169_get_drvinfo,
       
  1286 	.get_regs_len		= rtl8169_get_regs_len,
       
  1287 	.get_link		= ethtool_op_get_link,
       
  1288 	.get_settings		= rtl8169_get_settings,
       
  1289 	.set_settings		= rtl8169_set_settings,
       
  1290 	.get_msglevel		= rtl8169_get_msglevel,
       
  1291 	.set_msglevel		= rtl8169_set_msglevel,
       
  1292 	.get_rx_csum		= rtl8169_get_rx_csum,
       
  1293 	.set_rx_csum		= rtl8169_set_rx_csum,
       
  1294 	.set_tx_csum		= ethtool_op_set_tx_csum,
       
  1295 	.set_sg			= ethtool_op_set_sg,
       
  1296 	.set_tso		= ethtool_op_set_tso,
       
  1297 	.get_regs		= rtl8169_get_regs,
       
  1298 	.get_wol		= rtl8169_get_wol,
       
  1299 	.set_wol		= rtl8169_set_wol,
       
  1300 	.get_strings		= rtl8169_get_strings,
       
  1301 	.get_sset_count		= rtl8169_get_sset_count,
       
  1302 	.get_ethtool_stats	= rtl8169_get_ethtool_stats,
       
  1303 };
       
  1304 
       
  1305 static void rtl8169_get_mac_version(struct rtl8169_private *tp,
       
  1306 				    void __iomem *ioaddr)
       
  1307 {
       
  1308 	/*
       
  1309 	 * The driver currently handles the 8168Bf and the 8168Be identically
       
  1310 	 * but they can be identified more specifically through the test below
       
  1311 	 * if needed:
       
  1312 	 *
       
  1313 	 * (RTL_R32(TxConfig) & 0x700000) == 0x500000 ? 8168Bf : 8168Be
       
  1314 	 *
       
  1315 	 * Same thing for the 8101Eb and the 8101Ec:
       
  1316 	 *
       
  1317 	 * (RTL_R32(TxConfig) & 0x700000) == 0x200000 ? 8101Eb : 8101Ec
       
  1318 	 */
       
  1319 	static const struct {
       
  1320 		u32 mask;
       
  1321 		u32 val;
       
  1322 		int mac_version;
       
  1323 	} mac_info[] = {
       
  1324 		/* 8168D family. */
       
  1325 		{ 0x7cf00000, 0x28300000,	RTL_GIGA_MAC_VER_26 },
       
  1326 		{ 0x7cf00000, 0x28100000,	RTL_GIGA_MAC_VER_25 },
       
  1327 		{ 0x7c800000, 0x28800000,	RTL_GIGA_MAC_VER_27 },
       
  1328 		{ 0x7c800000, 0x28000000,	RTL_GIGA_MAC_VER_26 },
       
  1329 
       
  1330 		/* 8168C family. */
       
  1331 		{ 0x7cf00000, 0x3cb00000,	RTL_GIGA_MAC_VER_24 },
       
  1332 		{ 0x7cf00000, 0x3c900000,	RTL_GIGA_MAC_VER_23 },
       
  1333 		{ 0x7cf00000, 0x3c800000,	RTL_GIGA_MAC_VER_18 },
       
  1334 		{ 0x7c800000, 0x3c800000,	RTL_GIGA_MAC_VER_24 },
       
  1335 		{ 0x7cf00000, 0x3c000000,	RTL_GIGA_MAC_VER_19 },
       
  1336 		{ 0x7cf00000, 0x3c200000,	RTL_GIGA_MAC_VER_20 },
       
  1337 		{ 0x7cf00000, 0x3c300000,	RTL_GIGA_MAC_VER_21 },
       
  1338 		{ 0x7cf00000, 0x3c400000,	RTL_GIGA_MAC_VER_22 },
       
  1339 		{ 0x7c800000, 0x3c000000,	RTL_GIGA_MAC_VER_22 },
       
  1340 
       
  1341 		/* 8168B family. */
       
  1342 		{ 0x7cf00000, 0x38000000,	RTL_GIGA_MAC_VER_12 },
       
  1343 		{ 0x7cf00000, 0x38500000,	RTL_GIGA_MAC_VER_17 },
       
  1344 		{ 0x7c800000, 0x38000000,	RTL_GIGA_MAC_VER_17 },
       
  1345 		{ 0x7c800000, 0x30000000,	RTL_GIGA_MAC_VER_11 },
       
  1346 
       
  1347 		/* 8101 family. */
       
  1348 		{ 0x7cf00000, 0x34a00000,	RTL_GIGA_MAC_VER_09 },
       
  1349 		{ 0x7cf00000, 0x24a00000,	RTL_GIGA_MAC_VER_09 },
       
  1350 		{ 0x7cf00000, 0x34900000,	RTL_GIGA_MAC_VER_08 },
       
  1351 		{ 0x7cf00000, 0x24900000,	RTL_GIGA_MAC_VER_08 },
       
  1352 		{ 0x7cf00000, 0x34800000,	RTL_GIGA_MAC_VER_07 },
       
  1353 		{ 0x7cf00000, 0x24800000,	RTL_GIGA_MAC_VER_07 },
       
  1354 		{ 0x7cf00000, 0x34000000,	RTL_GIGA_MAC_VER_13 },
       
  1355 		{ 0x7cf00000, 0x34300000,	RTL_GIGA_MAC_VER_10 },
       
  1356 		{ 0x7cf00000, 0x34200000,	RTL_GIGA_MAC_VER_16 },
       
  1357 		{ 0x7c800000, 0x34800000,	RTL_GIGA_MAC_VER_09 },
       
  1358 		{ 0x7c800000, 0x24800000,	RTL_GIGA_MAC_VER_09 },
       
  1359 		{ 0x7c800000, 0x34000000,	RTL_GIGA_MAC_VER_16 },
       
  1360 		/* FIXME: where did these entries come from ? -- FR */
       
  1361 		{ 0xfc800000, 0x38800000,	RTL_GIGA_MAC_VER_15 },
       
  1362 		{ 0xfc800000, 0x30800000,	RTL_GIGA_MAC_VER_14 },
       
  1363 
       
  1364 		/* 8110 family. */
       
  1365 		{ 0xfc800000, 0x98000000,	RTL_GIGA_MAC_VER_06 },
       
  1366 		{ 0xfc800000, 0x18000000,	RTL_GIGA_MAC_VER_05 },
       
  1367 		{ 0xfc800000, 0x10000000,	RTL_GIGA_MAC_VER_04 },
       
  1368 		{ 0xfc800000, 0x04000000,	RTL_GIGA_MAC_VER_03 },
       
  1369 		{ 0xfc800000, 0x00800000,	RTL_GIGA_MAC_VER_02 },
       
  1370 		{ 0xfc800000, 0x00000000,	RTL_GIGA_MAC_VER_01 },
       
  1371 
       
  1372 		/* Catch-all */
       
  1373 		{ 0x00000000, 0x00000000,	RTL_GIGA_MAC_NONE   }
       
  1374 	}, *p = mac_info;
       
  1375 	u32 reg;
       
  1376 
       
  1377 	reg = RTL_R32(TxConfig);
       
  1378 	while ((reg & p->mask) != p->val)
       
  1379 		p++;
       
  1380 	tp->mac_version = p->mac_version;
       
  1381 }
       
  1382 
       
  1383 static void rtl8169_print_mac_version(struct rtl8169_private *tp)
       
  1384 {
       
  1385 	dprintk("mac_version = 0x%02x\n", tp->mac_version);
       
  1386 }
       
  1387 
       
  1388 struct phy_reg {
       
  1389 	u16 reg;
       
  1390 	u16 val;
       
  1391 };
       
  1392 
       
  1393 static void rtl_phy_write(void __iomem *ioaddr, const struct phy_reg *regs, int len)
       
  1394 {
       
  1395 	while (len-- > 0) {
       
  1396 		mdio_write(ioaddr, regs->reg, regs->val);
       
  1397 		regs++;
       
  1398 	}
       
  1399 }
       
  1400 
       
  1401 static void rtl8169s_hw_phy_config(void __iomem *ioaddr)
       
  1402 {
       
  1403 	static const struct phy_reg phy_reg_init[] = {
       
  1404 		{ 0x1f, 0x0001 },
       
  1405 		{ 0x06, 0x006e },
       
  1406 		{ 0x08, 0x0708 },
       
  1407 		{ 0x15, 0x4000 },
       
  1408 		{ 0x18, 0x65c7 },
       
  1409 
       
  1410 		{ 0x1f, 0x0001 },
       
  1411 		{ 0x03, 0x00a1 },
       
  1412 		{ 0x02, 0x0008 },
       
  1413 		{ 0x01, 0x0120 },
       
  1414 		{ 0x00, 0x1000 },
       
  1415 		{ 0x04, 0x0800 },
       
  1416 		{ 0x04, 0x0000 },
       
  1417 
       
  1418 		{ 0x03, 0xff41 },
       
  1419 		{ 0x02, 0xdf60 },
       
  1420 		{ 0x01, 0x0140 },
       
  1421 		{ 0x00, 0x0077 },
       
  1422 		{ 0x04, 0x7800 },
       
  1423 		{ 0x04, 0x7000 },
       
  1424 
       
  1425 		{ 0x03, 0x802f },
       
  1426 		{ 0x02, 0x4f02 },
       
  1427 		{ 0x01, 0x0409 },
       
  1428 		{ 0x00, 0xf0f9 },
       
  1429 		{ 0x04, 0x9800 },
       
  1430 		{ 0x04, 0x9000 },
       
  1431 
       
  1432 		{ 0x03, 0xdf01 },
       
  1433 		{ 0x02, 0xdf20 },
       
  1434 		{ 0x01, 0xff95 },
       
  1435 		{ 0x00, 0xba00 },
       
  1436 		{ 0x04, 0xa800 },
       
  1437 		{ 0x04, 0xa000 },
       
  1438 
       
  1439 		{ 0x03, 0xff41 },
       
  1440 		{ 0x02, 0xdf20 },
       
  1441 		{ 0x01, 0x0140 },
       
  1442 		{ 0x00, 0x00bb },
       
  1443 		{ 0x04, 0xb800 },
       
  1444 		{ 0x04, 0xb000 },
       
  1445 
       
  1446 		{ 0x03, 0xdf41 },
       
  1447 		{ 0x02, 0xdc60 },
       
  1448 		{ 0x01, 0x6340 },
       
  1449 		{ 0x00, 0x007d },
       
  1450 		{ 0x04, 0xd800 },
       
  1451 		{ 0x04, 0xd000 },
       
  1452 
       
  1453 		{ 0x03, 0xdf01 },
       
  1454 		{ 0x02, 0xdf20 },
       
  1455 		{ 0x01, 0x100a },
       
  1456 		{ 0x00, 0xa0ff },
       
  1457 		{ 0x04, 0xf800 },
       
  1458 		{ 0x04, 0xf000 },
       
  1459 
       
  1460 		{ 0x1f, 0x0000 },
       
  1461 		{ 0x0b, 0x0000 },
       
  1462 		{ 0x00, 0x9200 }
       
  1463 	};
       
  1464 
       
  1465 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1466 }
       
  1467 
       
  1468 static void rtl8169sb_hw_phy_config(void __iomem *ioaddr)
       
  1469 {
       
  1470 	static const struct phy_reg phy_reg_init[] = {
       
  1471 		{ 0x1f, 0x0002 },
       
  1472 		{ 0x01, 0x90d0 },
       
  1473 		{ 0x1f, 0x0000 }
       
  1474 	};
       
  1475 
       
  1476 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1477 }
       
  1478 
       
  1479 static void rtl8169scd_hw_phy_config_quirk(struct rtl8169_private *tp,
       
  1480 					   void __iomem *ioaddr)
       
  1481 {
       
  1482 	struct pci_dev *pdev = tp->pci_dev;
       
  1483 	u16 vendor_id, device_id;
       
  1484 
       
  1485 	pci_read_config_word(pdev, PCI_SUBSYSTEM_VENDOR_ID, &vendor_id);
       
  1486 	pci_read_config_word(pdev, PCI_SUBSYSTEM_ID, &device_id);
       
  1487 
       
  1488 	if ((vendor_id != PCI_VENDOR_ID_GIGABYTE) || (device_id != 0xe000))
       
  1489 		return;
       
  1490 
       
  1491 	mdio_write(ioaddr, 0x1f, 0x0001);
       
  1492 	mdio_write(ioaddr, 0x10, 0xf01b);
       
  1493 	mdio_write(ioaddr, 0x1f, 0x0000);
       
  1494 }
       
  1495 
       
  1496 static void rtl8169scd_hw_phy_config(struct rtl8169_private *tp,
       
  1497 				     void __iomem *ioaddr)
       
  1498 {
       
  1499 	static const struct phy_reg phy_reg_init[] = {
       
  1500 		{ 0x1f, 0x0001 },
       
  1501 		{ 0x04, 0x0000 },
       
  1502 		{ 0x03, 0x00a1 },
       
  1503 		{ 0x02, 0x0008 },
       
  1504 		{ 0x01, 0x0120 },
       
  1505 		{ 0x00, 0x1000 },
       
  1506 		{ 0x04, 0x0800 },
       
  1507 		{ 0x04, 0x9000 },
       
  1508 		{ 0x03, 0x802f },
       
  1509 		{ 0x02, 0x4f02 },
       
  1510 		{ 0x01, 0x0409 },
       
  1511 		{ 0x00, 0xf099 },
       
  1512 		{ 0x04, 0x9800 },
       
  1513 		{ 0x04, 0xa000 },
       
  1514 		{ 0x03, 0xdf01 },
       
  1515 		{ 0x02, 0xdf20 },
       
  1516 		{ 0x01, 0xff95 },
       
  1517 		{ 0x00, 0xba00 },
       
  1518 		{ 0x04, 0xa800 },
       
  1519 		{ 0x04, 0xf000 },
       
  1520 		{ 0x03, 0xdf01 },
       
  1521 		{ 0x02, 0xdf20 },
       
  1522 		{ 0x01, 0x101a },
       
  1523 		{ 0x00, 0xa0ff },
       
  1524 		{ 0x04, 0xf800 },
       
  1525 		{ 0x04, 0x0000 },
       
  1526 		{ 0x1f, 0x0000 },
       
  1527 
       
  1528 		{ 0x1f, 0x0001 },
       
  1529 		{ 0x10, 0xf41b },
       
  1530 		{ 0x14, 0xfb54 },
       
  1531 		{ 0x18, 0xf5c7 },
       
  1532 		{ 0x1f, 0x0000 },
       
  1533 
       
  1534 		{ 0x1f, 0x0001 },
       
  1535 		{ 0x17, 0x0cc0 },
       
  1536 		{ 0x1f, 0x0000 }
       
  1537 	};
       
  1538 
       
  1539 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1540 
       
  1541 	rtl8169scd_hw_phy_config_quirk(tp, ioaddr);
       
  1542 }
       
  1543 
       
  1544 static void rtl8169sce_hw_phy_config(void __iomem *ioaddr)
       
  1545 {
       
  1546 	static const struct phy_reg phy_reg_init[] = {
       
  1547 		{ 0x1f, 0x0001 },
       
  1548 		{ 0x04, 0x0000 },
       
  1549 		{ 0x03, 0x00a1 },
       
  1550 		{ 0x02, 0x0008 },
       
  1551 		{ 0x01, 0x0120 },
       
  1552 		{ 0x00, 0x1000 },
       
  1553 		{ 0x04, 0x0800 },
       
  1554 		{ 0x04, 0x9000 },
       
  1555 		{ 0x03, 0x802f },
       
  1556 		{ 0x02, 0x4f02 },
       
  1557 		{ 0x01, 0x0409 },
       
  1558 		{ 0x00, 0xf099 },
       
  1559 		{ 0x04, 0x9800 },
       
  1560 		{ 0x04, 0xa000 },
       
  1561 		{ 0x03, 0xdf01 },
       
  1562 		{ 0x02, 0xdf20 },
       
  1563 		{ 0x01, 0xff95 },
       
  1564 		{ 0x00, 0xba00 },
       
  1565 		{ 0x04, 0xa800 },
       
  1566 		{ 0x04, 0xf000 },
       
  1567 		{ 0x03, 0xdf01 },
       
  1568 		{ 0x02, 0xdf20 },
       
  1569 		{ 0x01, 0x101a },
       
  1570 		{ 0x00, 0xa0ff },
       
  1571 		{ 0x04, 0xf800 },
       
  1572 		{ 0x04, 0x0000 },
       
  1573 		{ 0x1f, 0x0000 },
       
  1574 
       
  1575 		{ 0x1f, 0x0001 },
       
  1576 		{ 0x0b, 0x8480 },
       
  1577 		{ 0x1f, 0x0000 },
       
  1578 
       
  1579 		{ 0x1f, 0x0001 },
       
  1580 		{ 0x18, 0x67c7 },
       
  1581 		{ 0x04, 0x2000 },
       
  1582 		{ 0x03, 0x002f },
       
  1583 		{ 0x02, 0x4360 },
       
  1584 		{ 0x01, 0x0109 },
       
  1585 		{ 0x00, 0x3022 },
       
  1586 		{ 0x04, 0x2800 },
       
  1587 		{ 0x1f, 0x0000 },
       
  1588 
       
  1589 		{ 0x1f, 0x0001 },
       
  1590 		{ 0x17, 0x0cc0 },
       
  1591 		{ 0x1f, 0x0000 }
       
  1592 	};
       
  1593 
       
  1594 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1595 }
       
  1596 
       
  1597 static void rtl8168bb_hw_phy_config(void __iomem *ioaddr)
       
  1598 {
       
  1599 	static const struct phy_reg phy_reg_init[] = {
       
  1600 		{ 0x10, 0xf41b },
       
  1601 		{ 0x1f, 0x0000 }
       
  1602 	};
       
  1603 
       
  1604 	mdio_write(ioaddr, 0x1f, 0x0001);
       
  1605 	mdio_patch(ioaddr, 0x16, 1 << 0);
       
  1606 
       
  1607 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1608 }
       
  1609 
       
  1610 static void rtl8168bef_hw_phy_config(void __iomem *ioaddr)
       
  1611 {
       
  1612 	static const struct phy_reg phy_reg_init[] = {
       
  1613 		{ 0x1f, 0x0001 },
       
  1614 		{ 0x10, 0xf41b },
       
  1615 		{ 0x1f, 0x0000 }
       
  1616 	};
       
  1617 
       
  1618 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1619 }
       
  1620 
       
  1621 static void rtl8168cp_1_hw_phy_config(void __iomem *ioaddr)
       
  1622 {
       
  1623 	static const struct phy_reg phy_reg_init[] = {
       
  1624 		{ 0x1f, 0x0000 },
       
  1625 		{ 0x1d, 0x0f00 },
       
  1626 		{ 0x1f, 0x0002 },
       
  1627 		{ 0x0c, 0x1ec8 },
       
  1628 		{ 0x1f, 0x0000 }
       
  1629 	};
       
  1630 
       
  1631 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1632 }
       
  1633 
       
  1634 static void rtl8168cp_2_hw_phy_config(void __iomem *ioaddr)
       
  1635 {
       
  1636 	static const struct phy_reg phy_reg_init[] = {
       
  1637 		{ 0x1f, 0x0001 },
       
  1638 		{ 0x1d, 0x3d98 },
       
  1639 		{ 0x1f, 0x0000 }
       
  1640 	};
       
  1641 
       
  1642 	mdio_write(ioaddr, 0x1f, 0x0000);
       
  1643 	mdio_patch(ioaddr, 0x14, 1 << 5);
       
  1644 	mdio_patch(ioaddr, 0x0d, 1 << 5);
       
  1645 
       
  1646 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1647 }
       
  1648 
       
  1649 static void rtl8168c_1_hw_phy_config(void __iomem *ioaddr)
       
  1650 {
       
  1651 	static const struct phy_reg phy_reg_init[] = {
       
  1652 		{ 0x1f, 0x0001 },
       
  1653 		{ 0x12, 0x2300 },
       
  1654 		{ 0x1f, 0x0002 },
       
  1655 		{ 0x00, 0x88d4 },
       
  1656 		{ 0x01, 0x82b1 },
       
  1657 		{ 0x03, 0x7002 },
       
  1658 		{ 0x08, 0x9e30 },
       
  1659 		{ 0x09, 0x01f0 },
       
  1660 		{ 0x0a, 0x5500 },
       
  1661 		{ 0x0c, 0x00c8 },
       
  1662 		{ 0x1f, 0x0003 },
       
  1663 		{ 0x12, 0xc096 },
       
  1664 		{ 0x16, 0x000a },
       
  1665 		{ 0x1f, 0x0000 },
       
  1666 		{ 0x1f, 0x0000 },
       
  1667 		{ 0x09, 0x2000 },
       
  1668 		{ 0x09, 0x0000 }
       
  1669 	};
       
  1670 
       
  1671 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1672 
       
  1673 	mdio_patch(ioaddr, 0x14, 1 << 5);
       
  1674 	mdio_patch(ioaddr, 0x0d, 1 << 5);
       
  1675 	mdio_write(ioaddr, 0x1f, 0x0000);
       
  1676 }
       
  1677 
       
  1678 static void rtl8168c_2_hw_phy_config(void __iomem *ioaddr)
       
  1679 {
       
  1680 	static const struct phy_reg phy_reg_init[] = {
       
  1681 		{ 0x1f, 0x0001 },
       
  1682 		{ 0x12, 0x2300 },
       
  1683 		{ 0x03, 0x802f },
       
  1684 		{ 0x02, 0x4f02 },
       
  1685 		{ 0x01, 0x0409 },
       
  1686 		{ 0x00, 0xf099 },
       
  1687 		{ 0x04, 0x9800 },
       
  1688 		{ 0x04, 0x9000 },
       
  1689 		{ 0x1d, 0x3d98 },
       
  1690 		{ 0x1f, 0x0002 },
       
  1691 		{ 0x0c, 0x7eb8 },
       
  1692 		{ 0x06, 0x0761 },
       
  1693 		{ 0x1f, 0x0003 },
       
  1694 		{ 0x16, 0x0f0a },
       
  1695 		{ 0x1f, 0x0000 }
       
  1696 	};
       
  1697 
       
  1698 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1699 
       
  1700 	mdio_patch(ioaddr, 0x16, 1 << 0);
       
  1701 	mdio_patch(ioaddr, 0x14, 1 << 5);
       
  1702 	mdio_patch(ioaddr, 0x0d, 1 << 5);
       
  1703 	mdio_write(ioaddr, 0x1f, 0x0000);
       
  1704 }
       
  1705 
       
  1706 static void rtl8168c_3_hw_phy_config(void __iomem *ioaddr)
       
  1707 {
       
  1708 	static const struct phy_reg phy_reg_init[] = {
       
  1709 		{ 0x1f, 0x0001 },
       
  1710 		{ 0x12, 0x2300 },
       
  1711 		{ 0x1d, 0x3d98 },
       
  1712 		{ 0x1f, 0x0002 },
       
  1713 		{ 0x0c, 0x7eb8 },
       
  1714 		{ 0x06, 0x5461 },
       
  1715 		{ 0x1f, 0x0003 },
       
  1716 		{ 0x16, 0x0f0a },
       
  1717 		{ 0x1f, 0x0000 }
       
  1718 	};
       
  1719 
       
  1720 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  1721 
       
  1722 	mdio_patch(ioaddr, 0x16, 1 << 0);
       
  1723 	mdio_patch(ioaddr, 0x14, 1 << 5);
       
  1724 	mdio_patch(ioaddr, 0x0d, 1 << 5);
       
  1725 	mdio_write(ioaddr, 0x1f, 0x0000);
       
  1726 }
       
  1727 
       
  1728 static void rtl8168c_4_hw_phy_config(void __iomem *ioaddr)
       
  1729 {
       
  1730 	rtl8168c_3_hw_phy_config(ioaddr);
       
  1731 }
       
  1732 
       
  1733 static void rtl8168d_1_hw_phy_config(void __iomem *ioaddr)
       
  1734 {
       
  1735 	static const struct phy_reg phy_reg_init_0[] = {
       
  1736 		{ 0x1f, 0x0001 },
       
  1737 		{ 0x06, 0x4064 },
       
  1738 		{ 0x07, 0x2863 },
       
  1739 		{ 0x08, 0x059c },
       
  1740 		{ 0x09, 0x26b4 },
       
  1741 		{ 0x0a, 0x6a19 },
       
  1742 		{ 0x0b, 0xdcc8 },
       
  1743 		{ 0x10, 0xf06d },
       
  1744 		{ 0x14, 0x7f68 },
       
  1745 		{ 0x18, 0x7fd9 },
       
  1746 		{ 0x1c, 0xf0ff },
       
  1747 		{ 0x1d, 0x3d9c },
       
  1748 		{ 0x1f, 0x0003 },
       
  1749 		{ 0x12, 0xf49f },
       
  1750 		{ 0x13, 0x070b },
       
  1751 		{ 0x1a, 0x05ad },
       
  1752 		{ 0x14, 0x94c0 }
       
  1753 	};
       
  1754 	static const struct phy_reg phy_reg_init_1[] = {
       
  1755 		{ 0x1f, 0x0002 },
       
  1756 		{ 0x06, 0x5561 },
       
  1757 		{ 0x1f, 0x0005 },
       
  1758 		{ 0x05, 0x8332 },
       
  1759 		{ 0x06, 0x5561 }
       
  1760 	};
       
  1761 	static const struct phy_reg phy_reg_init_2[] = {
       
  1762 		{ 0x1f, 0x0005 },
       
  1763 		{ 0x05, 0xffc2 },
       
  1764 		{ 0x1f, 0x0005 },
       
  1765 		{ 0x05, 0x8000 },
       
  1766 		{ 0x06, 0xf8f9 },
       
  1767 		{ 0x06, 0xfaef },
       
  1768 		{ 0x06, 0x59ee },
       
  1769 		{ 0x06, 0xf8ea },
       
  1770 		{ 0x06, 0x00ee },
       
  1771 		{ 0x06, 0xf8eb },
       
  1772 		{ 0x06, 0x00e0 },
       
  1773 		{ 0x06, 0xf87c },
       
  1774 		{ 0x06, 0xe1f8 },
       
  1775 		{ 0x06, 0x7d59 },
       
  1776 		{ 0x06, 0x0fef },
       
  1777 		{ 0x06, 0x0139 },
       
  1778 		{ 0x06, 0x029e },
       
  1779 		{ 0x06, 0x06ef },
       
  1780 		{ 0x06, 0x1039 },
       
  1781 		{ 0x06, 0x089f },
       
  1782 		{ 0x06, 0x2aee },
       
  1783 		{ 0x06, 0xf8ea },
       
  1784 		{ 0x06, 0x00ee },
       
  1785 		{ 0x06, 0xf8eb },
       
  1786 		{ 0x06, 0x01e0 },
       
  1787 		{ 0x06, 0xf87c },
       
  1788 		{ 0x06, 0xe1f8 },
       
  1789 		{ 0x06, 0x7d58 },
       
  1790 		{ 0x06, 0x409e },
       
  1791 		{ 0x06, 0x0f39 },
       
  1792 		{ 0x06, 0x46aa },
       
  1793 		{ 0x06, 0x0bbf },
       
  1794 		{ 0x06, 0x8290 },
       
  1795 		{ 0x06, 0xd682 },
       
  1796 		{ 0x06, 0x9802 },
       
  1797 		{ 0x06, 0x014f },
       
  1798 		{ 0x06, 0xae09 },
       
  1799 		{ 0x06, 0xbf82 },
       
  1800 		{ 0x06, 0x98d6 },
       
  1801 		{ 0x06, 0x82a0 },
       
  1802 		{ 0x06, 0x0201 },
       
  1803 		{ 0x06, 0x4fef },
       
  1804 		{ 0x06, 0x95fe },
       
  1805 		{ 0x06, 0xfdfc },
       
  1806 		{ 0x06, 0x05f8 },
       
  1807 		{ 0x06, 0xf9fa },
       
  1808 		{ 0x06, 0xeef8 },
       
  1809 		{ 0x06, 0xea00 },
       
  1810 		{ 0x06, 0xeef8 },
       
  1811 		{ 0x06, 0xeb00 },
       
  1812 		{ 0x06, 0xe2f8 },
       
  1813 		{ 0x06, 0x7ce3 },
       
  1814 		{ 0x06, 0xf87d },
       
  1815 		{ 0x06, 0xa511 },
       
  1816 		{ 0x06, 0x1112 },
       
  1817 		{ 0x06, 0xd240 },
       
  1818 		{ 0x06, 0xd644 },
       
  1819 		{ 0x06, 0x4402 },
       
  1820 		{ 0x06, 0x8217 },
       
  1821 		{ 0x06, 0xd2a0 },
       
  1822 		{ 0x06, 0xd6aa },
       
  1823 		{ 0x06, 0xaa02 },
       
  1824 		{ 0x06, 0x8217 },
       
  1825 		{ 0x06, 0xae0f },
       
  1826 		{ 0x06, 0xa544 },
       
  1827 		{ 0x06, 0x4402 },
       
  1828 		{ 0x06, 0xae4d },
       
  1829 		{ 0x06, 0xa5aa },
       
  1830 		{ 0x06, 0xaa02 },
       
  1831 		{ 0x06, 0xae47 },
       
  1832 		{ 0x06, 0xaf82 },
       
  1833 		{ 0x06, 0x13ee },
       
  1834 		{ 0x06, 0x834e },
       
  1835 		{ 0x06, 0x00ee },
       
  1836 		{ 0x06, 0x834d },
       
  1837 		{ 0x06, 0x0fee },
       
  1838 		{ 0x06, 0x834c },
       
  1839 		{ 0x06, 0x0fee },
       
  1840 		{ 0x06, 0x834f },
       
  1841 		{ 0x06, 0x00ee },
       
  1842 		{ 0x06, 0x8351 },
       
  1843 		{ 0x06, 0x00ee },
       
  1844 		{ 0x06, 0x834a },
       
  1845 		{ 0x06, 0xffee },
       
  1846 		{ 0x06, 0x834b },
       
  1847 		{ 0x06, 0xffe0 },
       
  1848 		{ 0x06, 0x8330 },
       
  1849 		{ 0x06, 0xe183 },
       
  1850 		{ 0x06, 0x3158 },
       
  1851 		{ 0x06, 0xfee4 },
       
  1852 		{ 0x06, 0xf88a },
       
  1853 		{ 0x06, 0xe5f8 },
       
  1854 		{ 0x06, 0x8be0 },
       
  1855 		{ 0x06, 0x8332 },
       
  1856 		{ 0x06, 0xe183 },
       
  1857 		{ 0x06, 0x3359 },
       
  1858 		{ 0x06, 0x0fe2 },
       
  1859 		{ 0x06, 0x834d },
       
  1860 		{ 0x06, 0x0c24 },
       
  1861 		{ 0x06, 0x5af0 },
       
  1862 		{ 0x06, 0x1e12 },
       
  1863 		{ 0x06, 0xe4f8 },
       
  1864 		{ 0x06, 0x8ce5 },
       
  1865 		{ 0x06, 0xf88d },
       
  1866 		{ 0x06, 0xaf82 },
       
  1867 		{ 0x06, 0x13e0 },
       
  1868 		{ 0x06, 0x834f },
       
  1869 		{ 0x06, 0x10e4 },
       
  1870 		{ 0x06, 0x834f },
       
  1871 		{ 0x06, 0xe083 },
       
  1872 		{ 0x06, 0x4e78 },
       
  1873 		{ 0x06, 0x009f },
       
  1874 		{ 0x06, 0x0ae0 },
       
  1875 		{ 0x06, 0x834f },
       
  1876 		{ 0x06, 0xa010 },
       
  1877 		{ 0x06, 0xa5ee },
       
  1878 		{ 0x06, 0x834e },
       
  1879 		{ 0x06, 0x01e0 },
       
  1880 		{ 0x06, 0x834e },
       
  1881 		{ 0x06, 0x7805 },
       
  1882 		{ 0x06, 0x9e9a },
       
  1883 		{ 0x06, 0xe083 },
       
  1884 		{ 0x06, 0x4e78 },
       
  1885 		{ 0x06, 0x049e },
       
  1886 		{ 0x06, 0x10e0 },
       
  1887 		{ 0x06, 0x834e },
       
  1888 		{ 0x06, 0x7803 },
       
  1889 		{ 0x06, 0x9e0f },
       
  1890 		{ 0x06, 0xe083 },
       
  1891 		{ 0x06, 0x4e78 },
       
  1892 		{ 0x06, 0x019e },
       
  1893 		{ 0x06, 0x05ae },
       
  1894 		{ 0x06, 0x0caf },
       
  1895 		{ 0x06, 0x81f8 },
       
  1896 		{ 0x06, 0xaf81 },
       
  1897 		{ 0x06, 0xa3af },
       
  1898 		{ 0x06, 0x81dc },
       
  1899 		{ 0x06, 0xaf82 },
       
  1900 		{ 0x06, 0x13ee },
       
  1901 		{ 0x06, 0x8348 },
       
  1902 		{ 0x06, 0x00ee },
       
  1903 		{ 0x06, 0x8349 },
       
  1904 		{ 0x06, 0x00e0 },
       
  1905 		{ 0x06, 0x8351 },
       
  1906 		{ 0x06, 0x10e4 },
       
  1907 		{ 0x06, 0x8351 },
       
  1908 		{ 0x06, 0x5801 },
       
  1909 		{ 0x06, 0x9fea },
       
  1910 		{ 0x06, 0xd000 },
       
  1911 		{ 0x06, 0xd180 },
       
  1912 		{ 0x06, 0x1f66 },
       
  1913 		{ 0x06, 0xe2f8 },
       
  1914 		{ 0x06, 0xeae3 },
       
  1915 		{ 0x06, 0xf8eb },
       
  1916 		{ 0x06, 0x5af8 },
       
  1917 		{ 0x06, 0x1e20 },
       
  1918 		{ 0x06, 0xe6f8 },
       
  1919 		{ 0x06, 0xeae5 },
       
  1920 		{ 0x06, 0xf8eb },
       
  1921 		{ 0x06, 0xd302 },
       
  1922 		{ 0x06, 0xb3fe },
       
  1923 		{ 0x06, 0xe2f8 },
       
  1924 		{ 0x06, 0x7cef },
       
  1925 		{ 0x06, 0x325b },
       
  1926 		{ 0x06, 0x80e3 },
       
  1927 		{ 0x06, 0xf87d },
       
  1928 		{ 0x06, 0x9e03 },
       
  1929 		{ 0x06, 0x7dff },
       
  1930 		{ 0x06, 0xff0d },
       
  1931 		{ 0x06, 0x581c },
       
  1932 		{ 0x06, 0x551a },
       
  1933 		{ 0x06, 0x6511 },
       
  1934 		{ 0x06, 0xa190 },
       
  1935 		{ 0x06, 0xd3e2 },
       
  1936 		{ 0x06, 0x8348 },
       
  1937 		{ 0x06, 0xe383 },
       
  1938 		{ 0x06, 0x491b },
       
  1939 		{ 0x06, 0x56ab },
       
  1940 		{ 0x06, 0x08ef },
       
  1941 		{ 0x06, 0x56e6 },
       
  1942 		{ 0x06, 0x8348 },
       
  1943 		{ 0x06, 0xe783 },
       
  1944 		{ 0x06, 0x4910 },
       
  1945 		{ 0x06, 0xd180 },
       
  1946 		{ 0x06, 0x1f66 },
       
  1947 		{ 0x06, 0xa004 },
       
  1948 		{ 0x06, 0xb9e2 },
       
  1949 		{ 0x06, 0x8348 },
       
  1950 		{ 0x06, 0xe383 },
       
  1951 		{ 0x06, 0x49ef },
       
  1952 		{ 0x06, 0x65e2 },
       
  1953 		{ 0x06, 0x834a },
       
  1954 		{ 0x06, 0xe383 },
       
  1955 		{ 0x06, 0x4b1b },
       
  1956 		{ 0x06, 0x56aa },
       
  1957 		{ 0x06, 0x0eef },
       
  1958 		{ 0x06, 0x56e6 },
       
  1959 		{ 0x06, 0x834a },
       
  1960 		{ 0x06, 0xe783 },
       
  1961 		{ 0x06, 0x4be2 },
       
  1962 		{ 0x06, 0x834d },
       
  1963 		{ 0x06, 0xe683 },
       
  1964 		{ 0x06, 0x4ce0 },
       
  1965 		{ 0x06, 0x834d },
       
  1966 		{ 0x06, 0xa000 },
       
  1967 		{ 0x06, 0x0caf },
       
  1968 		{ 0x06, 0x81dc },
       
  1969 		{ 0x06, 0xe083 },
       
  1970 		{ 0x06, 0x4d10 },
       
  1971 		{ 0x06, 0xe483 },
       
  1972 		{ 0x06, 0x4dae },
       
  1973 		{ 0x06, 0x0480 },
       
  1974 		{ 0x06, 0xe483 },
       
  1975 		{ 0x06, 0x4de0 },
       
  1976 		{ 0x06, 0x834e },
       
  1977 		{ 0x06, 0x7803 },
       
  1978 		{ 0x06, 0x9e0b },
       
  1979 		{ 0x06, 0xe083 },
       
  1980 		{ 0x06, 0x4e78 },
       
  1981 		{ 0x06, 0x049e },
       
  1982 		{ 0x06, 0x04ee },
       
  1983 		{ 0x06, 0x834e },
       
  1984 		{ 0x06, 0x02e0 },
       
  1985 		{ 0x06, 0x8332 },
       
  1986 		{ 0x06, 0xe183 },
       
  1987 		{ 0x06, 0x3359 },
       
  1988 		{ 0x06, 0x0fe2 },
       
  1989 		{ 0x06, 0x834d },
       
  1990 		{ 0x06, 0x0c24 },
       
  1991 		{ 0x06, 0x5af0 },
       
  1992 		{ 0x06, 0x1e12 },
       
  1993 		{ 0x06, 0xe4f8 },
       
  1994 		{ 0x06, 0x8ce5 },
       
  1995 		{ 0x06, 0xf88d },
       
  1996 		{ 0x06, 0xe083 },
       
  1997 		{ 0x06, 0x30e1 },
       
  1998 		{ 0x06, 0x8331 },
       
  1999 		{ 0x06, 0x6801 },
       
  2000 		{ 0x06, 0xe4f8 },
       
  2001 		{ 0x06, 0x8ae5 },
       
  2002 		{ 0x06, 0xf88b },
       
  2003 		{ 0x06, 0xae37 },
       
  2004 		{ 0x06, 0xee83 },
       
  2005 		{ 0x06, 0x4e03 },
       
  2006 		{ 0x06, 0xe083 },
       
  2007 		{ 0x06, 0x4ce1 },
       
  2008 		{ 0x06, 0x834d },
       
  2009 		{ 0x06, 0x1b01 },
       
  2010 		{ 0x06, 0x9e04 },
       
  2011 		{ 0x06, 0xaaa1 },
       
  2012 		{ 0x06, 0xaea8 },
       
  2013 		{ 0x06, 0xee83 },
       
  2014 		{ 0x06, 0x4e04 },
       
  2015 		{ 0x06, 0xee83 },
       
  2016 		{ 0x06, 0x4f00 },
       
  2017 		{ 0x06, 0xaeab },
       
  2018 		{ 0x06, 0xe083 },
       
  2019 		{ 0x06, 0x4f78 },
       
  2020 		{ 0x06, 0x039f },
       
  2021 		{ 0x06, 0x14ee },
       
  2022 		{ 0x06, 0x834e },
       
  2023 		{ 0x06, 0x05d2 },
       
  2024 		{ 0x06, 0x40d6 },
       
  2025 		{ 0x06, 0x5554 },
       
  2026 		{ 0x06, 0x0282 },
       
  2027 		{ 0x06, 0x17d2 },
       
  2028 		{ 0x06, 0xa0d6 },
       
  2029 		{ 0x06, 0xba00 },
       
  2030 		{ 0x06, 0x0282 },
       
  2031 		{ 0x06, 0x17fe },
       
  2032 		{ 0x06, 0xfdfc },
       
  2033 		{ 0x06, 0x05f8 },
       
  2034 		{ 0x06, 0xe0f8 },
       
  2035 		{ 0x06, 0x60e1 },
       
  2036 		{ 0x06, 0xf861 },
       
  2037 		{ 0x06, 0x6802 },
       
  2038 		{ 0x06, 0xe4f8 },
       
  2039 		{ 0x06, 0x60e5 },
       
  2040 		{ 0x06, 0xf861 },
       
  2041 		{ 0x06, 0xe0f8 },
       
  2042 		{ 0x06, 0x48e1 },
       
  2043 		{ 0x06, 0xf849 },
       
  2044 		{ 0x06, 0x580f },
       
  2045 		{ 0x06, 0x1e02 },
       
  2046 		{ 0x06, 0xe4f8 },
       
  2047 		{ 0x06, 0x48e5 },
       
  2048 		{ 0x06, 0xf849 },
       
  2049 		{ 0x06, 0xd000 },
       
  2050 		{ 0x06, 0x0282 },
       
  2051 		{ 0x06, 0x5bbf },
       
  2052 		{ 0x06, 0x8350 },
       
  2053 		{ 0x06, 0xef46 },
       
  2054 		{ 0x06, 0xdc19 },
       
  2055 		{ 0x06, 0xddd0 },
       
  2056 		{ 0x06, 0x0102 },
       
  2057 		{ 0x06, 0x825b },
       
  2058 		{ 0x06, 0x0282 },
       
  2059 		{ 0x06, 0x77e0 },
       
  2060 		{ 0x06, 0xf860 },
       
  2061 		{ 0x06, 0xe1f8 },
       
  2062 		{ 0x06, 0x6158 },
       
  2063 		{ 0x06, 0xfde4 },
       
  2064 		{ 0x06, 0xf860 },
       
  2065 		{ 0x06, 0xe5f8 },
       
  2066 		{ 0x06, 0x61fc },
       
  2067 		{ 0x06, 0x04f9 },
       
  2068 		{ 0x06, 0xfafb },
       
  2069 		{ 0x06, 0xc6bf },
       
  2070 		{ 0x06, 0xf840 },
       
  2071 		{ 0x06, 0xbe83 },
       
  2072 		{ 0x06, 0x50a0 },
       
  2073 		{ 0x06, 0x0101 },
       
  2074 		{ 0x06, 0x071b },
       
  2075 		{ 0x06, 0x89cf },
       
  2076 		{ 0x06, 0xd208 },
       
  2077 		{ 0x06, 0xebdb },
       
  2078 		{ 0x06, 0x19b2 },
       
  2079 		{ 0x06, 0xfbff },
       
  2080 		{ 0x06, 0xfefd },
       
  2081 		{ 0x06, 0x04f8 },
       
  2082 		{ 0x06, 0xe0f8 },
       
  2083 		{ 0x06, 0x48e1 },
       
  2084 		{ 0x06, 0xf849 },
       
  2085 		{ 0x06, 0x6808 },
       
  2086 		{ 0x06, 0xe4f8 },
       
  2087 		{ 0x06, 0x48e5 },
       
  2088 		{ 0x06, 0xf849 },
       
  2089 		{ 0x06, 0x58f7 },
       
  2090 		{ 0x06, 0xe4f8 },
       
  2091 		{ 0x06, 0x48e5 },
       
  2092 		{ 0x06, 0xf849 },
       
  2093 		{ 0x06, 0xfc04 },
       
  2094 		{ 0x06, 0x4d20 },
       
  2095 		{ 0x06, 0x0002 },
       
  2096 		{ 0x06, 0x4e22 },
       
  2097 		{ 0x06, 0x0002 },
       
  2098 		{ 0x06, 0x4ddf },
       
  2099 		{ 0x06, 0xff01 },
       
  2100 		{ 0x06, 0x4edd },
       
  2101 		{ 0x06, 0xff01 },
       
  2102 		{ 0x05, 0x83d4 },
       
  2103 		{ 0x06, 0x8000 },
       
  2104 		{ 0x05, 0x83d8 },
       
  2105 		{ 0x06, 0x8051 },
       
  2106 		{ 0x02, 0x6010 },
       
  2107 		{ 0x03, 0xdc00 },
       
  2108 		{ 0x05, 0xfff6 },
       
  2109 		{ 0x06, 0x00fc },
       
  2110 		{ 0x1f, 0x0000 },
       
  2111 
       
  2112 		{ 0x1f, 0x0000 },
       
  2113 		{ 0x0d, 0xf880 },
       
  2114 		{ 0x1f, 0x0000 }
       
  2115 	};
       
  2116 
       
  2117 	rtl_phy_write(ioaddr, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
       
  2118 
       
  2119 	mdio_write(ioaddr, 0x1f, 0x0002);
       
  2120 	mdio_plus_minus(ioaddr, 0x0b, 0x0010, 0x00ef);
       
  2121 	mdio_plus_minus(ioaddr, 0x0c, 0xa200, 0x5d00);
       
  2122 
       
  2123 	rtl_phy_write(ioaddr, phy_reg_init_1, ARRAY_SIZE(phy_reg_init_1));
       
  2124 
       
  2125 	if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
       
  2126 		static const struct phy_reg phy_reg_init[] = {
       
  2127 			{ 0x1f, 0x0002 },
       
  2128 			{ 0x05, 0x669a },
       
  2129 			{ 0x1f, 0x0005 },
       
  2130 			{ 0x05, 0x8330 },
       
  2131 			{ 0x06, 0x669a },
       
  2132 			{ 0x1f, 0x0002 }
       
  2133 		};
       
  2134 		int val;
       
  2135 
       
  2136 		rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  2137 
       
  2138 		val = mdio_read(ioaddr, 0x0d);
       
  2139 
       
  2140 		if ((val & 0x00ff) != 0x006c) {
       
  2141 			static const u32 set[] = {
       
  2142 				0x0065, 0x0066, 0x0067, 0x0068,
       
  2143 				0x0069, 0x006a, 0x006b, 0x006c
       
  2144 			};
       
  2145 			int i;
       
  2146 
       
  2147 			mdio_write(ioaddr, 0x1f, 0x0002);
       
  2148 
       
  2149 			val &= 0xff00;
       
  2150 			for (i = 0; i < ARRAY_SIZE(set); i++)
       
  2151 				mdio_write(ioaddr, 0x0d, val | set[i]);
       
  2152 		}
       
  2153 	} else {
       
  2154 		static const struct phy_reg phy_reg_init[] = {
       
  2155 			{ 0x1f, 0x0002 },
       
  2156 			{ 0x05, 0x6662 },
       
  2157 			{ 0x1f, 0x0005 },
       
  2158 			{ 0x05, 0x8330 },
       
  2159 			{ 0x06, 0x6662 }
       
  2160 		};
       
  2161 
       
  2162 		rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  2163 	}
       
  2164 
       
  2165 	mdio_write(ioaddr, 0x1f, 0x0002);
       
  2166 	mdio_patch(ioaddr, 0x0d, 0x0300);
       
  2167 	mdio_patch(ioaddr, 0x0f, 0x0010);
       
  2168 
       
  2169 	mdio_write(ioaddr, 0x1f, 0x0002);
       
  2170 	mdio_plus_minus(ioaddr, 0x02, 0x0100, 0x0600);
       
  2171 	mdio_plus_minus(ioaddr, 0x03, 0x0000, 0xe000);
       
  2172 
       
  2173 	rtl_phy_write(ioaddr, phy_reg_init_2, ARRAY_SIZE(phy_reg_init_2));
       
  2174 }
       
  2175 
       
  2176 static void rtl8168d_2_hw_phy_config(void __iomem *ioaddr)
       
  2177 {
       
  2178 	static const struct phy_reg phy_reg_init_0[] = {
       
  2179 		{ 0x1f, 0x0001 },
       
  2180 		{ 0x06, 0x4064 },
       
  2181 		{ 0x07, 0x2863 },
       
  2182 		{ 0x08, 0x059c },
       
  2183 		{ 0x09, 0x26b4 },
       
  2184 		{ 0x0a, 0x6a19 },
       
  2185 		{ 0x0b, 0xdcc8 },
       
  2186 		{ 0x10, 0xf06d },
       
  2187 		{ 0x14, 0x7f68 },
       
  2188 		{ 0x18, 0x7fd9 },
       
  2189 		{ 0x1c, 0xf0ff },
       
  2190 		{ 0x1d, 0x3d9c },
       
  2191 		{ 0x1f, 0x0003 },
       
  2192 		{ 0x12, 0xf49f },
       
  2193 		{ 0x13, 0x070b },
       
  2194 		{ 0x1a, 0x05ad },
       
  2195 		{ 0x14, 0x94c0 },
       
  2196 
       
  2197 		{ 0x1f, 0x0002 },
       
  2198 		{ 0x06, 0x5561 },
       
  2199 		{ 0x1f, 0x0005 },
       
  2200 		{ 0x05, 0x8332 },
       
  2201 		{ 0x06, 0x5561 }
       
  2202 	};
       
  2203 	static const struct phy_reg phy_reg_init_1[] = {
       
  2204 		{ 0x1f, 0x0005 },
       
  2205 		{ 0x05, 0xffc2 },
       
  2206 		{ 0x1f, 0x0005 },
       
  2207 		{ 0x05, 0x8000 },
       
  2208 		{ 0x06, 0xf8f9 },
       
  2209 		{ 0x06, 0xfaee },
       
  2210 		{ 0x06, 0xf8ea },
       
  2211 		{ 0x06, 0x00ee },
       
  2212 		{ 0x06, 0xf8eb },
       
  2213 		{ 0x06, 0x00e2 },
       
  2214 		{ 0x06, 0xf87c },
       
  2215 		{ 0x06, 0xe3f8 },
       
  2216 		{ 0x06, 0x7da5 },
       
  2217 		{ 0x06, 0x1111 },
       
  2218 		{ 0x06, 0x12d2 },
       
  2219 		{ 0x06, 0x40d6 },
       
  2220 		{ 0x06, 0x4444 },
       
  2221 		{ 0x06, 0x0281 },
       
  2222 		{ 0x06, 0xc6d2 },
       
  2223 		{ 0x06, 0xa0d6 },
       
  2224 		{ 0x06, 0xaaaa },
       
  2225 		{ 0x06, 0x0281 },
       
  2226 		{ 0x06, 0xc6ae },
       
  2227 		{ 0x06, 0x0fa5 },
       
  2228 		{ 0x06, 0x4444 },
       
  2229 		{ 0x06, 0x02ae },
       
  2230 		{ 0x06, 0x4da5 },
       
  2231 		{ 0x06, 0xaaaa },
       
  2232 		{ 0x06, 0x02ae },
       
  2233 		{ 0x06, 0x47af },
       
  2234 		{ 0x06, 0x81c2 },
       
  2235 		{ 0x06, 0xee83 },
       
  2236 		{ 0x06, 0x4e00 },
       
  2237 		{ 0x06, 0xee83 },
       
  2238 		{ 0x06, 0x4d0f },
       
  2239 		{ 0x06, 0xee83 },
       
  2240 		{ 0x06, 0x4c0f },
       
  2241 		{ 0x06, 0xee83 },
       
  2242 		{ 0x06, 0x4f00 },
       
  2243 		{ 0x06, 0xee83 },
       
  2244 		{ 0x06, 0x5100 },
       
  2245 		{ 0x06, 0xee83 },
       
  2246 		{ 0x06, 0x4aff },
       
  2247 		{ 0x06, 0xee83 },
       
  2248 		{ 0x06, 0x4bff },
       
  2249 		{ 0x06, 0xe083 },
       
  2250 		{ 0x06, 0x30e1 },
       
  2251 		{ 0x06, 0x8331 },
       
  2252 		{ 0x06, 0x58fe },
       
  2253 		{ 0x06, 0xe4f8 },
       
  2254 		{ 0x06, 0x8ae5 },
       
  2255 		{ 0x06, 0xf88b },
       
  2256 		{ 0x06, 0xe083 },
       
  2257 		{ 0x06, 0x32e1 },
       
  2258 		{ 0x06, 0x8333 },
       
  2259 		{ 0x06, 0x590f },
       
  2260 		{ 0x06, 0xe283 },
       
  2261 		{ 0x06, 0x4d0c },
       
  2262 		{ 0x06, 0x245a },
       
  2263 		{ 0x06, 0xf01e },
       
  2264 		{ 0x06, 0x12e4 },
       
  2265 		{ 0x06, 0xf88c },
       
  2266 		{ 0x06, 0xe5f8 },
       
  2267 		{ 0x06, 0x8daf },
       
  2268 		{ 0x06, 0x81c2 },
       
  2269 		{ 0x06, 0xe083 },
       
  2270 		{ 0x06, 0x4f10 },
       
  2271 		{ 0x06, 0xe483 },
       
  2272 		{ 0x06, 0x4fe0 },
       
  2273 		{ 0x06, 0x834e },
       
  2274 		{ 0x06, 0x7800 },
       
  2275 		{ 0x06, 0x9f0a },
       
  2276 		{ 0x06, 0xe083 },
       
  2277 		{ 0x06, 0x4fa0 },
       
  2278 		{ 0x06, 0x10a5 },
       
  2279 		{ 0x06, 0xee83 },
       
  2280 		{ 0x06, 0x4e01 },
       
  2281 		{ 0x06, 0xe083 },
       
  2282 		{ 0x06, 0x4e78 },
       
  2283 		{ 0x06, 0x059e },
       
  2284 		{ 0x06, 0x9ae0 },
       
  2285 		{ 0x06, 0x834e },
       
  2286 		{ 0x06, 0x7804 },
       
  2287 		{ 0x06, 0x9e10 },
       
  2288 		{ 0x06, 0xe083 },
       
  2289 		{ 0x06, 0x4e78 },
       
  2290 		{ 0x06, 0x039e },
       
  2291 		{ 0x06, 0x0fe0 },
       
  2292 		{ 0x06, 0x834e },
       
  2293 		{ 0x06, 0x7801 },
       
  2294 		{ 0x06, 0x9e05 },
       
  2295 		{ 0x06, 0xae0c },
       
  2296 		{ 0x06, 0xaf81 },
       
  2297 		{ 0x06, 0xa7af },
       
  2298 		{ 0x06, 0x8152 },
       
  2299 		{ 0x06, 0xaf81 },
       
  2300 		{ 0x06, 0x8baf },
       
  2301 		{ 0x06, 0x81c2 },
       
  2302 		{ 0x06, 0xee83 },
       
  2303 		{ 0x06, 0x4800 },
       
  2304 		{ 0x06, 0xee83 },
       
  2305 		{ 0x06, 0x4900 },
       
  2306 		{ 0x06, 0xe083 },
       
  2307 		{ 0x06, 0x5110 },
       
  2308 		{ 0x06, 0xe483 },
       
  2309 		{ 0x06, 0x5158 },
       
  2310 		{ 0x06, 0x019f },
       
  2311 		{ 0x06, 0xead0 },
       
  2312 		{ 0x06, 0x00d1 },
       
  2313 		{ 0x06, 0x801f },
       
  2314 		{ 0x06, 0x66e2 },
       
  2315 		{ 0x06, 0xf8ea },
       
  2316 		{ 0x06, 0xe3f8 },
       
  2317 		{ 0x06, 0xeb5a },
       
  2318 		{ 0x06, 0xf81e },
       
  2319 		{ 0x06, 0x20e6 },
       
  2320 		{ 0x06, 0xf8ea },
       
  2321 		{ 0x06, 0xe5f8 },
       
  2322 		{ 0x06, 0xebd3 },
       
  2323 		{ 0x06, 0x02b3 },
       
  2324 		{ 0x06, 0xfee2 },
       
  2325 		{ 0x06, 0xf87c },
       
  2326 		{ 0x06, 0xef32 },
       
  2327 		{ 0x06, 0x5b80 },
       
  2328 		{ 0x06, 0xe3f8 },
       
  2329 		{ 0x06, 0x7d9e },
       
  2330 		{ 0x06, 0x037d },
       
  2331 		{ 0x06, 0xffff },
       
  2332 		{ 0x06, 0x0d58 },
       
  2333 		{ 0x06, 0x1c55 },
       
  2334 		{ 0x06, 0x1a65 },
       
  2335 		{ 0x06, 0x11a1 },
       
  2336 		{ 0x06, 0x90d3 },
       
  2337 		{ 0x06, 0xe283 },
       
  2338 		{ 0x06, 0x48e3 },
       
  2339 		{ 0x06, 0x8349 },
       
  2340 		{ 0x06, 0x1b56 },
       
  2341 		{ 0x06, 0xab08 },
       
  2342 		{ 0x06, 0xef56 },
       
  2343 		{ 0x06, 0xe683 },
       
  2344 		{ 0x06, 0x48e7 },
       
  2345 		{ 0x06, 0x8349 },
       
  2346 		{ 0x06, 0x10d1 },
       
  2347 		{ 0x06, 0x801f },
       
  2348 		{ 0x06, 0x66a0 },
       
  2349 		{ 0x06, 0x04b9 },
       
  2350 		{ 0x06, 0xe283 },
       
  2351 		{ 0x06, 0x48e3 },
       
  2352 		{ 0x06, 0x8349 },
       
  2353 		{ 0x06, 0xef65 },
       
  2354 		{ 0x06, 0xe283 },
       
  2355 		{ 0x06, 0x4ae3 },
       
  2356 		{ 0x06, 0x834b },
       
  2357 		{ 0x06, 0x1b56 },
       
  2358 		{ 0x06, 0xaa0e },
       
  2359 		{ 0x06, 0xef56 },
       
  2360 		{ 0x06, 0xe683 },
       
  2361 		{ 0x06, 0x4ae7 },
       
  2362 		{ 0x06, 0x834b },
       
  2363 		{ 0x06, 0xe283 },
       
  2364 		{ 0x06, 0x4de6 },
       
  2365 		{ 0x06, 0x834c },
       
  2366 		{ 0x06, 0xe083 },
       
  2367 		{ 0x06, 0x4da0 },
       
  2368 		{ 0x06, 0x000c },
       
  2369 		{ 0x06, 0xaf81 },
       
  2370 		{ 0x06, 0x8be0 },
       
  2371 		{ 0x06, 0x834d },
       
  2372 		{ 0x06, 0x10e4 },
       
  2373 		{ 0x06, 0x834d },
       
  2374 		{ 0x06, 0xae04 },
       
  2375 		{ 0x06, 0x80e4 },
       
  2376 		{ 0x06, 0x834d },
       
  2377 		{ 0x06, 0xe083 },
       
  2378 		{ 0x06, 0x4e78 },
       
  2379 		{ 0x06, 0x039e },
       
  2380 		{ 0x06, 0x0be0 },
       
  2381 		{ 0x06, 0x834e },
       
  2382 		{ 0x06, 0x7804 },
       
  2383 		{ 0x06, 0x9e04 },
       
  2384 		{ 0x06, 0xee83 },
       
  2385 		{ 0x06, 0x4e02 },
       
  2386 		{ 0x06, 0xe083 },
       
  2387 		{ 0x06, 0x32e1 },
       
  2388 		{ 0x06, 0x8333 },
       
  2389 		{ 0x06, 0x590f },
       
  2390 		{ 0x06, 0xe283 },
       
  2391 		{ 0x06, 0x4d0c },
       
  2392 		{ 0x06, 0x245a },
       
  2393 		{ 0x06, 0xf01e },
       
  2394 		{ 0x06, 0x12e4 },
       
  2395 		{ 0x06, 0xf88c },
       
  2396 		{ 0x06, 0xe5f8 },
       
  2397 		{ 0x06, 0x8de0 },
       
  2398 		{ 0x06, 0x8330 },
       
  2399 		{ 0x06, 0xe183 },
       
  2400 		{ 0x06, 0x3168 },
       
  2401 		{ 0x06, 0x01e4 },
       
  2402 		{ 0x06, 0xf88a },
       
  2403 		{ 0x06, 0xe5f8 },
       
  2404 		{ 0x06, 0x8bae },
       
  2405 		{ 0x06, 0x37ee },
       
  2406 		{ 0x06, 0x834e },
       
  2407 		{ 0x06, 0x03e0 },
       
  2408 		{ 0x06, 0x834c },
       
  2409 		{ 0x06, 0xe183 },
       
  2410 		{ 0x06, 0x4d1b },
       
  2411 		{ 0x06, 0x019e },
       
  2412 		{ 0x06, 0x04aa },
       
  2413 		{ 0x06, 0xa1ae },
       
  2414 		{ 0x06, 0xa8ee },
       
  2415 		{ 0x06, 0x834e },
       
  2416 		{ 0x06, 0x04ee },
       
  2417 		{ 0x06, 0x834f },
       
  2418 		{ 0x06, 0x00ae },
       
  2419 		{ 0x06, 0xabe0 },
       
  2420 		{ 0x06, 0x834f },
       
  2421 		{ 0x06, 0x7803 },
       
  2422 		{ 0x06, 0x9f14 },
       
  2423 		{ 0x06, 0xee83 },
       
  2424 		{ 0x06, 0x4e05 },
       
  2425 		{ 0x06, 0xd240 },
       
  2426 		{ 0x06, 0xd655 },
       
  2427 		{ 0x06, 0x5402 },
       
  2428 		{ 0x06, 0x81c6 },
       
  2429 		{ 0x06, 0xd2a0 },
       
  2430 		{ 0x06, 0xd6ba },
       
  2431 		{ 0x06, 0x0002 },
       
  2432 		{ 0x06, 0x81c6 },
       
  2433 		{ 0x06, 0xfefd },
       
  2434 		{ 0x06, 0xfc05 },
       
  2435 		{ 0x06, 0xf8e0 },
       
  2436 		{ 0x06, 0xf860 },
       
  2437 		{ 0x06, 0xe1f8 },
       
  2438 		{ 0x06, 0x6168 },
       
  2439 		{ 0x06, 0x02e4 },
       
  2440 		{ 0x06, 0xf860 },
       
  2441 		{ 0x06, 0xe5f8 },
       
  2442 		{ 0x06, 0x61e0 },
       
  2443 		{ 0x06, 0xf848 },
       
  2444 		{ 0x06, 0xe1f8 },
       
  2445 		{ 0x06, 0x4958 },
       
  2446 		{ 0x06, 0x0f1e },
       
  2447 		{ 0x06, 0x02e4 },
       
  2448 		{ 0x06, 0xf848 },
       
  2449 		{ 0x06, 0xe5f8 },
       
  2450 		{ 0x06, 0x49d0 },
       
  2451 		{ 0x06, 0x0002 },
       
  2452 		{ 0x06, 0x820a },
       
  2453 		{ 0x06, 0xbf83 },
       
  2454 		{ 0x06, 0x50ef },
       
  2455 		{ 0x06, 0x46dc },
       
  2456 		{ 0x06, 0x19dd },
       
  2457 		{ 0x06, 0xd001 },
       
  2458 		{ 0x06, 0x0282 },
       
  2459 		{ 0x06, 0x0a02 },
       
  2460 		{ 0x06, 0x8226 },
       
  2461 		{ 0x06, 0xe0f8 },
       
  2462 		{ 0x06, 0x60e1 },
       
  2463 		{ 0x06, 0xf861 },
       
  2464 		{ 0x06, 0x58fd },
       
  2465 		{ 0x06, 0xe4f8 },
       
  2466 		{ 0x06, 0x60e5 },
       
  2467 		{ 0x06, 0xf861 },
       
  2468 		{ 0x06, 0xfc04 },
       
  2469 		{ 0x06, 0xf9fa },
       
  2470 		{ 0x06, 0xfbc6 },
       
  2471 		{ 0x06, 0xbff8 },
       
  2472 		{ 0x06, 0x40be },
       
  2473 		{ 0x06, 0x8350 },
       
  2474 		{ 0x06, 0xa001 },
       
  2475 		{ 0x06, 0x0107 },
       
  2476 		{ 0x06, 0x1b89 },
       
  2477 		{ 0x06, 0xcfd2 },
       
  2478 		{ 0x06, 0x08eb },
       
  2479 		{ 0x06, 0xdb19 },
       
  2480 		{ 0x06, 0xb2fb },
       
  2481 		{ 0x06, 0xfffe },
       
  2482 		{ 0x06, 0xfd04 },
       
  2483 		{ 0x06, 0xf8e0 },
       
  2484 		{ 0x06, 0xf848 },
       
  2485 		{ 0x06, 0xe1f8 },
       
  2486 		{ 0x06, 0x4968 },
       
  2487 		{ 0x06, 0x08e4 },
       
  2488 		{ 0x06, 0xf848 },
       
  2489 		{ 0x06, 0xe5f8 },
       
  2490 		{ 0x06, 0x4958 },
       
  2491 		{ 0x06, 0xf7e4 },
       
  2492 		{ 0x06, 0xf848 },
       
  2493 		{ 0x06, 0xe5f8 },
       
  2494 		{ 0x06, 0x49fc },
       
  2495 		{ 0x06, 0x044d },
       
  2496 		{ 0x06, 0x2000 },
       
  2497 		{ 0x06, 0x024e },
       
  2498 		{ 0x06, 0x2200 },
       
  2499 		{ 0x06, 0x024d },
       
  2500 		{ 0x06, 0xdfff },
       
  2501 		{ 0x06, 0x014e },
       
  2502 		{ 0x06, 0xddff },
       
  2503 		{ 0x06, 0x0100 },
       
  2504 		{ 0x05, 0x83d8 },
       
  2505 		{ 0x06, 0x8000 },
       
  2506 		{ 0x03, 0xdc00 },
       
  2507 		{ 0x05, 0xfff6 },
       
  2508 		{ 0x06, 0x00fc },
       
  2509 		{ 0x1f, 0x0000 },
       
  2510 
       
  2511 		{ 0x1f, 0x0000 },
       
  2512 		{ 0x0d, 0xf880 },
       
  2513 		{ 0x1f, 0x0000 }
       
  2514 	};
       
  2515 
       
  2516 	rtl_phy_write(ioaddr, phy_reg_init_0, ARRAY_SIZE(phy_reg_init_0));
       
  2517 
       
  2518 	if (rtl8168d_efuse_read(ioaddr, 0x01) == 0xb1) {
       
  2519 		static const struct phy_reg phy_reg_init[] = {
       
  2520 			{ 0x1f, 0x0002 },
       
  2521 			{ 0x05, 0x669a },
       
  2522 			{ 0x1f, 0x0005 },
       
  2523 			{ 0x05, 0x8330 },
       
  2524 			{ 0x06, 0x669a },
       
  2525 
       
  2526 			{ 0x1f, 0x0002 }
       
  2527 		};
       
  2528 		int val;
       
  2529 
       
  2530 		rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  2531 
       
  2532 		val = mdio_read(ioaddr, 0x0d);
       
  2533 		if ((val & 0x00ff) != 0x006c) {
       
  2534 			u32 set[] = {
       
  2535 				0x0065, 0x0066, 0x0067, 0x0068,
       
  2536 				0x0069, 0x006a, 0x006b, 0x006c
       
  2537 			};
       
  2538 			int i;
       
  2539 
       
  2540 			mdio_write(ioaddr, 0x1f, 0x0002);
       
  2541 
       
  2542 			val &= 0xff00;
       
  2543 			for (i = 0; i < ARRAY_SIZE(set); i++)
       
  2544 				mdio_write(ioaddr, 0x0d, val | set[i]);
       
  2545 		}
       
  2546 	} else {
       
  2547 		static const struct phy_reg phy_reg_init[] = {
       
  2548 			{ 0x1f, 0x0002 },
       
  2549 			{ 0x05, 0x2642 },
       
  2550 			{ 0x1f, 0x0005 },
       
  2551 			{ 0x05, 0x8330 },
       
  2552 			{ 0x06, 0x2642 }
       
  2553 		};
       
  2554 
       
  2555 		rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  2556 	}
       
  2557 
       
  2558 	mdio_write(ioaddr, 0x1f, 0x0002);
       
  2559 	mdio_plus_minus(ioaddr, 0x02, 0x0100, 0x0600);
       
  2560 	mdio_plus_minus(ioaddr, 0x03, 0x0000, 0xe000);
       
  2561 
       
  2562 	mdio_write(ioaddr, 0x1f, 0x0001);
       
  2563 	mdio_write(ioaddr, 0x17, 0x0cc0);
       
  2564 
       
  2565 	mdio_write(ioaddr, 0x1f, 0x0002);
       
  2566 	mdio_patch(ioaddr, 0x0f, 0x0017);
       
  2567 
       
  2568 	rtl_phy_write(ioaddr, phy_reg_init_1, ARRAY_SIZE(phy_reg_init_1));
       
  2569 }
       
  2570 
       
  2571 static void rtl8168d_3_hw_phy_config(void __iomem *ioaddr)
       
  2572 {
       
  2573 	static const struct phy_reg phy_reg_init[] = {
       
  2574 		{ 0x1f, 0x0002 },
       
  2575 		{ 0x10, 0x0008 },
       
  2576 		{ 0x0d, 0x006c },
       
  2577 
       
  2578 		{ 0x1f, 0x0000 },
       
  2579 		{ 0x0d, 0xf880 },
       
  2580 
       
  2581 		{ 0x1f, 0x0001 },
       
  2582 		{ 0x17, 0x0cc0 },
       
  2583 
       
  2584 		{ 0x1f, 0x0001 },
       
  2585 		{ 0x0b, 0xa4d8 },
       
  2586 		{ 0x09, 0x281c },
       
  2587 		{ 0x07, 0x2883 },
       
  2588 		{ 0x0a, 0x6b35 },
       
  2589 		{ 0x1d, 0x3da4 },
       
  2590 		{ 0x1c, 0xeffd },
       
  2591 		{ 0x14, 0x7f52 },
       
  2592 		{ 0x18, 0x7fc6 },
       
  2593 		{ 0x08, 0x0601 },
       
  2594 		{ 0x06, 0x4063 },
       
  2595 		{ 0x10, 0xf074 },
       
  2596 		{ 0x1f, 0x0003 },
       
  2597 		{ 0x13, 0x0789 },
       
  2598 		{ 0x12, 0xf4bd },
       
  2599 		{ 0x1a, 0x04fd },
       
  2600 		{ 0x14, 0x84b0 },
       
  2601 		{ 0x1f, 0x0000 },
       
  2602 		{ 0x00, 0x9200 },
       
  2603 
       
  2604 		{ 0x1f, 0x0005 },
       
  2605 		{ 0x01, 0x0340 },
       
  2606 		{ 0x1f, 0x0001 },
       
  2607 		{ 0x04, 0x4000 },
       
  2608 		{ 0x03, 0x1d21 },
       
  2609 		{ 0x02, 0x0c32 },
       
  2610 		{ 0x01, 0x0200 },
       
  2611 		{ 0x00, 0x5554 },
       
  2612 		{ 0x04, 0x4800 },
       
  2613 		{ 0x04, 0x4000 },
       
  2614 		{ 0x04, 0xf000 },
       
  2615 		{ 0x03, 0xdf01 },
       
  2616 		{ 0x02, 0xdf20 },
       
  2617 		{ 0x01, 0x101a },
       
  2618 		{ 0x00, 0xa0ff },
       
  2619 		{ 0x04, 0xf800 },
       
  2620 		{ 0x04, 0xf000 },
       
  2621 		{ 0x1f, 0x0000 },
       
  2622 
       
  2623 		{ 0x1f, 0x0007 },
       
  2624 		{ 0x1e, 0x0023 },
       
  2625 		{ 0x16, 0x0000 },
       
  2626 		{ 0x1f, 0x0000 }
       
  2627 	};
       
  2628 
       
  2629 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  2630 }
       
  2631 
       
  2632 static void rtl8102e_hw_phy_config(void __iomem *ioaddr)
       
  2633 {
       
  2634 	static const struct phy_reg phy_reg_init[] = {
       
  2635 		{ 0x1f, 0x0003 },
       
  2636 		{ 0x08, 0x441d },
       
  2637 		{ 0x01, 0x9100 },
       
  2638 		{ 0x1f, 0x0000 }
       
  2639 	};
       
  2640 
       
  2641 	mdio_write(ioaddr, 0x1f, 0x0000);
       
  2642 	mdio_patch(ioaddr, 0x11, 1 << 12);
       
  2643 	mdio_patch(ioaddr, 0x19, 1 << 13);
       
  2644 	mdio_patch(ioaddr, 0x10, 1 << 15);
       
  2645 
       
  2646 	rtl_phy_write(ioaddr, phy_reg_init, ARRAY_SIZE(phy_reg_init));
       
  2647 }
       
  2648 
       
  2649 static void rtl_hw_phy_config(struct net_device *dev)
       
  2650 {
       
  2651 	struct rtl8169_private *tp = netdev_priv(dev);
       
  2652 	void __iomem *ioaddr = tp->mmio_addr;
       
  2653 
       
  2654 	rtl8169_print_mac_version(tp);
       
  2655 
       
  2656 	switch (tp->mac_version) {
       
  2657 	case RTL_GIGA_MAC_VER_01:
       
  2658 		break;
       
  2659 	case RTL_GIGA_MAC_VER_02:
       
  2660 	case RTL_GIGA_MAC_VER_03:
       
  2661 		rtl8169s_hw_phy_config(ioaddr);
       
  2662 		break;
       
  2663 	case RTL_GIGA_MAC_VER_04:
       
  2664 		rtl8169sb_hw_phy_config(ioaddr);
       
  2665 		break;
       
  2666 	case RTL_GIGA_MAC_VER_05:
       
  2667 		rtl8169scd_hw_phy_config(tp, ioaddr);
       
  2668 		break;
       
  2669 	case RTL_GIGA_MAC_VER_06:
       
  2670 		rtl8169sce_hw_phy_config(ioaddr);
       
  2671 		break;
       
  2672 	case RTL_GIGA_MAC_VER_07:
       
  2673 	case RTL_GIGA_MAC_VER_08:
       
  2674 	case RTL_GIGA_MAC_VER_09:
       
  2675 		rtl8102e_hw_phy_config(ioaddr);
       
  2676 		break;
       
  2677 	case RTL_GIGA_MAC_VER_11:
       
  2678 		rtl8168bb_hw_phy_config(ioaddr);
       
  2679 		break;
       
  2680 	case RTL_GIGA_MAC_VER_12:
       
  2681 		rtl8168bef_hw_phy_config(ioaddr);
       
  2682 		break;
       
  2683 	case RTL_GIGA_MAC_VER_17:
       
  2684 		rtl8168bef_hw_phy_config(ioaddr);
       
  2685 		break;
       
  2686 	case RTL_GIGA_MAC_VER_18:
       
  2687 		rtl8168cp_1_hw_phy_config(ioaddr);
       
  2688 		break;
       
  2689 	case RTL_GIGA_MAC_VER_19:
       
  2690 		rtl8168c_1_hw_phy_config(ioaddr);
       
  2691 		break;
       
  2692 	case RTL_GIGA_MAC_VER_20:
       
  2693 		rtl8168c_2_hw_phy_config(ioaddr);
       
  2694 		break;
       
  2695 	case RTL_GIGA_MAC_VER_21:
       
  2696 		rtl8168c_3_hw_phy_config(ioaddr);
       
  2697 		break;
       
  2698 	case RTL_GIGA_MAC_VER_22:
       
  2699 		rtl8168c_4_hw_phy_config(ioaddr);
       
  2700 		break;
       
  2701 	case RTL_GIGA_MAC_VER_23:
       
  2702 	case RTL_GIGA_MAC_VER_24:
       
  2703 		rtl8168cp_2_hw_phy_config(ioaddr);
       
  2704 		break;
       
  2705 	case RTL_GIGA_MAC_VER_25:
       
  2706 		rtl8168d_1_hw_phy_config(ioaddr);
       
  2707 		break;
       
  2708 	case RTL_GIGA_MAC_VER_26:
       
  2709 		rtl8168d_2_hw_phy_config(ioaddr);
       
  2710 		break;
       
  2711 	case RTL_GIGA_MAC_VER_27:
       
  2712 		rtl8168d_3_hw_phy_config(ioaddr);
       
  2713 		break;
       
  2714 
       
  2715 	default:
       
  2716 		break;
       
  2717 	}
       
  2718 }
       
  2719 
       
  2720 static void rtl8169_phy_timer(unsigned long __opaque)
       
  2721 {
       
  2722 	struct net_device *dev = (struct net_device *)__opaque;
       
  2723 	struct rtl8169_private *tp = netdev_priv(dev);
       
  2724 	struct timer_list *timer = &tp->timer;
       
  2725 	void __iomem *ioaddr = tp->mmio_addr;
       
  2726 	unsigned long timeout = RTL8169_PHY_TIMEOUT;
       
  2727 
       
  2728 	assert(tp->mac_version > RTL_GIGA_MAC_VER_01);
       
  2729 
       
  2730 	if (!(tp->phy_1000_ctrl_reg & ADVERTISE_1000FULL))
       
  2731 		return;
       
  2732 
       
  2733 	if (!tp->ecdev)
       
  2734 		spin_lock_irq(&tp->lock);
       
  2735 
       
  2736 	if (tp->phy_reset_pending(ioaddr)) {
       
  2737 		/*
       
  2738 		 * A busy loop could burn quite a few cycles on nowadays CPU.
       
  2739 		 * Let's delay the execution of the timer for a few ticks.
       
  2740 		 */
       
  2741 		timeout = HZ/10;
       
  2742 		goto out_mod_timer;
       
  2743 	}
       
  2744 
       
  2745 	if (tp->link_ok(ioaddr))
       
  2746 		goto out_unlock;
       
  2747 
       
  2748 	netif_warn(tp, link, dev, "PHY reset until link up\n");
       
  2749 
       
  2750 	tp->phy_reset_enable(ioaddr);
       
  2751 
       
  2752 out_mod_timer:
       
  2753 	if (!tp->ecdev)
       
  2754 		mod_timer(timer, jiffies + timeout);
       
  2755 out_unlock:
       
  2756 	if (!tp->ecdev)
       
  2757 		spin_unlock_irq(&tp->lock);
       
  2758 }
       
  2759 
       
  2760 static inline void rtl8169_delete_timer(struct net_device *dev)
       
  2761 {
       
  2762 	struct rtl8169_private *tp = netdev_priv(dev);
       
  2763 	struct timer_list *timer = &tp->timer;
       
  2764 
       
  2765 	if (tp->ecdev || tp->mac_version <= RTL_GIGA_MAC_VER_01)
       
  2766 		return;
       
  2767 
       
  2768 	del_timer_sync(timer);
       
  2769 }
       
  2770 
       
  2771 static inline void rtl8169_request_timer(struct net_device *dev)
       
  2772 {
       
  2773 	struct rtl8169_private *tp = netdev_priv(dev);
       
  2774 	struct timer_list *timer = &tp->timer;
       
  2775 
       
  2776 	if (tp->ecdev || tp->mac_version <= RTL_GIGA_MAC_VER_01)
       
  2777 		return;
       
  2778 
       
  2779 	mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
       
  2780 }
       
  2781 
       
  2782 #ifdef CONFIG_NET_POLL_CONTROLLER
       
  2783 /*
       
  2784  * Polling 'interrupt' - used by things like netconsole to send skbs
       
  2785  * without having to re-enable interrupts. It's not called while
       
  2786  * the interrupt routine is executing.
       
  2787  */
       
  2788 static void rtl8169_netpoll(struct net_device *dev)
       
  2789 {
       
  2790 	struct rtl8169_private *tp = netdev_priv(dev);
       
  2791 	struct pci_dev *pdev = tp->pci_dev;
       
  2792 
       
  2793 	disable_irq(pdev->irq);
       
  2794 	rtl8169_interrupt(pdev->irq, dev);
       
  2795 	enable_irq(pdev->irq);
       
  2796 }
       
  2797 #endif
       
  2798 
       
  2799 static void rtl8169_release_board(struct pci_dev *pdev, struct net_device *dev,
       
  2800 				  void __iomem *ioaddr)
       
  2801 {
       
  2802 	iounmap(ioaddr);
       
  2803 	pci_release_regions(pdev);
       
  2804 	pci_clear_mwi(pdev);
       
  2805 	pci_disable_device(pdev);
       
  2806 	free_netdev(dev);
       
  2807 }
       
  2808 
       
  2809 static void rtl8169_phy_reset(struct net_device *dev,
       
  2810 			      struct rtl8169_private *tp)
       
  2811 {
       
  2812 	void __iomem *ioaddr = tp->mmio_addr;
       
  2813 	unsigned int i;
       
  2814 
       
  2815 	tp->phy_reset_enable(ioaddr);
       
  2816 	for (i = 0; i < 100; i++) {
       
  2817 		if (!tp->phy_reset_pending(ioaddr))
       
  2818 			return;
       
  2819 		msleep(1);
       
  2820 	}
       
  2821 	netif_err(tp, link, dev, "PHY reset failed\n");
       
  2822 }
       
  2823 
       
  2824 static void rtl8169_init_phy(struct net_device *dev, struct rtl8169_private *tp)
       
  2825 {
       
  2826 	void __iomem *ioaddr = tp->mmio_addr;
       
  2827 
       
  2828 	rtl_hw_phy_config(dev);
       
  2829 
       
  2830 	if (tp->mac_version <= RTL_GIGA_MAC_VER_06) {
       
  2831 		dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
       
  2832 		RTL_W8(0x82, 0x01);
       
  2833 	}
       
  2834 
       
  2835 	pci_write_config_byte(tp->pci_dev, PCI_LATENCY_TIMER, 0x40);
       
  2836 
       
  2837 	if (tp->mac_version <= RTL_GIGA_MAC_VER_06)
       
  2838 		pci_write_config_byte(tp->pci_dev, PCI_CACHE_LINE_SIZE, 0x08);
       
  2839 
       
  2840 	if (tp->mac_version == RTL_GIGA_MAC_VER_02) {
       
  2841 		dprintk("Set MAC Reg C+CR Offset 0x82h = 0x01h\n");
       
  2842 		RTL_W8(0x82, 0x01);
       
  2843 		dprintk("Set PHY Reg 0x0bh = 0x00h\n");
       
  2844 		mdio_write(ioaddr, 0x0b, 0x0000); //w 0x0b 15 0 0
       
  2845 	}
       
  2846 
       
  2847 	rtl8169_phy_reset(dev, tp);
       
  2848 
       
  2849 	/*
       
  2850 	 * rtl8169_set_speed_xmii takes good care of the Fast Ethernet
       
  2851 	 * only 8101. Don't panic.
       
  2852 	 */
       
  2853 	rtl8169_set_speed(dev, AUTONEG_ENABLE, SPEED_1000, DUPLEX_FULL);
       
  2854 
       
  2855 	if (RTL_R8(PHYstatus) & TBI_Enable)
       
  2856 		netif_info(tp, link, dev, "TBI auto-negotiating\n");
       
  2857 }
       
  2858 
       
  2859 static void rtl_rar_set(struct rtl8169_private *tp, u8 *addr)
       
  2860 {
       
  2861 	void __iomem *ioaddr = tp->mmio_addr;
       
  2862 	u32 high;
       
  2863 	u32 low;
       
  2864 
       
  2865 	low  = addr[0] | (addr[1] << 8) | (addr[2] << 16) | (addr[3] << 24);
       
  2866 	high = addr[4] | (addr[5] << 8);
       
  2867 
       
  2868 	spin_lock_irq(&tp->lock);
       
  2869 
       
  2870 	RTL_W8(Cfg9346, Cfg9346_Unlock);
       
  2871 
       
  2872 	RTL_W32(MAC4, high);
       
  2873 	RTL_R32(MAC4);
       
  2874 
       
  2875 	RTL_W32(MAC0, low);
       
  2876 	RTL_R32(MAC0);
       
  2877 
       
  2878 	RTL_W8(Cfg9346, Cfg9346_Lock);
       
  2879 
       
  2880 	spin_unlock_irq(&tp->lock);
       
  2881 }
       
  2882 
       
  2883 static int rtl_set_mac_address(struct net_device *dev, void *p)
       
  2884 {
       
  2885 	struct rtl8169_private *tp = netdev_priv(dev);
       
  2886 	struct sockaddr *addr = p;
       
  2887 
       
  2888 	if (!is_valid_ether_addr(addr->sa_data))
       
  2889 		return -EADDRNOTAVAIL;
       
  2890 
       
  2891 	memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
       
  2892 
       
  2893 	rtl_rar_set(tp, dev->dev_addr);
       
  2894 
       
  2895 	return 0;
       
  2896 }
       
  2897 
       
  2898 static int rtl8169_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
       
  2899 {
       
  2900 	struct rtl8169_private *tp = netdev_priv(dev);
       
  2901 	struct mii_ioctl_data *data = if_mii(ifr);
       
  2902 
       
  2903 	return netif_running(dev) ? tp->do_ioctl(tp, data, cmd) : -ENODEV;
       
  2904 }
       
  2905 
       
  2906 static int rtl_xmii_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
       
  2907 {
       
  2908 	switch (cmd) {
       
  2909 	case SIOCGMIIPHY:
       
  2910 		data->phy_id = 32; /* Internal PHY */
       
  2911 		return 0;
       
  2912 
       
  2913 	case SIOCGMIIREG:
       
  2914 		data->val_out = mdio_read(tp->mmio_addr, data->reg_num & 0x1f);
       
  2915 		return 0;
       
  2916 
       
  2917 	case SIOCSMIIREG:
       
  2918 		mdio_write(tp->mmio_addr, data->reg_num & 0x1f, data->val_in);
       
  2919 		return 0;
       
  2920 	}
       
  2921 	return -EOPNOTSUPP;
       
  2922 }
       
  2923 
       
  2924 static int rtl_tbi_ioctl(struct rtl8169_private *tp, struct mii_ioctl_data *data, int cmd)
       
  2925 {
       
  2926 	return -EOPNOTSUPP;
       
  2927 }
       
  2928 
       
  2929 static const struct rtl_cfg_info {
       
  2930 	void (*hw_start)(struct net_device *);
       
  2931 	unsigned int region;
       
  2932 	unsigned int align;
       
  2933 	u16 intr_event;
       
  2934 	u16 napi_event;
       
  2935 	unsigned features;
       
  2936 	u8 default_ver;
       
  2937 } rtl_cfg_infos [] = {
       
  2938 	[RTL_CFG_0] = {
       
  2939 		.hw_start	= rtl_hw_start_8169,
       
  2940 		.region		= 1,
       
  2941 		.align		= 0,
       
  2942 		.intr_event	= SYSErr | LinkChg | RxOverflow |
       
  2943 				  RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
       
  2944 		.napi_event	= RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
       
  2945 		.features	= RTL_FEATURE_GMII,
       
  2946 		.default_ver	= RTL_GIGA_MAC_VER_01,
       
  2947 	},
       
  2948 	[RTL_CFG_1] = {
       
  2949 		.hw_start	= rtl_hw_start_8168,
       
  2950 		.region		= 2,
       
  2951 		.align		= 8,
       
  2952 		.intr_event	= SYSErr | LinkChg | RxOverflow |
       
  2953 				  TxErr | TxOK | RxOK | RxErr,
       
  2954 		.napi_event	= TxErr | TxOK | RxOK | RxOverflow,
       
  2955 		.features	= RTL_FEATURE_GMII | RTL_FEATURE_MSI,
       
  2956 		.default_ver	= RTL_GIGA_MAC_VER_11,
       
  2957 	},
       
  2958 	[RTL_CFG_2] = {
       
  2959 		.hw_start	= rtl_hw_start_8101,
       
  2960 		.region		= 2,
       
  2961 		.align		= 8,
       
  2962 		.intr_event	= SYSErr | LinkChg | RxOverflow | PCSTimeout |
       
  2963 				  RxFIFOOver | TxErr | TxOK | RxOK | RxErr,
       
  2964 		.napi_event	= RxFIFOOver | TxErr | TxOK | RxOK | RxOverflow,
       
  2965 		.features	= RTL_FEATURE_MSI,
       
  2966 		.default_ver	= RTL_GIGA_MAC_VER_13,
       
  2967 	}
       
  2968 };
       
  2969 
       
  2970 /* Cfg9346_Unlock assumed. */
       
  2971 static unsigned rtl_try_msi(struct pci_dev *pdev, void __iomem *ioaddr,
       
  2972 			    const struct rtl_cfg_info *cfg)
       
  2973 {
       
  2974 	unsigned msi = 0;
       
  2975 	u8 cfg2;
       
  2976 
       
  2977 	cfg2 = RTL_R8(Config2) & ~MSIEnable;
       
  2978 	if (cfg->features & RTL_FEATURE_MSI) {
       
  2979 		if (pci_enable_msi(pdev)) {
       
  2980 			dev_info(&pdev->dev, "no MSI. Back to INTx.\n");
       
  2981 		} else {
       
  2982 			cfg2 |= MSIEnable;
       
  2983 			msi = RTL_FEATURE_MSI;
       
  2984 		}
       
  2985 	}
       
  2986 	RTL_W8(Config2, cfg2);
       
  2987 	return msi;
       
  2988 }
       
  2989 
       
  2990 static void rtl_disable_msi(struct pci_dev *pdev, struct rtl8169_private *tp)
       
  2991 {
       
  2992 	if (tp->features & RTL_FEATURE_MSI) {
       
  2993 		pci_disable_msi(pdev);
       
  2994 		tp->features &= ~RTL_FEATURE_MSI;
       
  2995 	}
       
  2996 }
       
  2997 
       
  2998 static const struct net_device_ops rtl8169_netdev_ops = {
       
  2999 	.ndo_open		= rtl8169_open,
       
  3000 	.ndo_stop		= rtl8169_close,
       
  3001 	.ndo_get_stats		= rtl8169_get_stats,
       
  3002 	.ndo_start_xmit		= rtl8169_start_xmit,
       
  3003 	.ndo_tx_timeout		= rtl8169_tx_timeout,
       
  3004 	.ndo_validate_addr	= eth_validate_addr,
       
  3005 	.ndo_change_mtu		= rtl8169_change_mtu,
       
  3006 	.ndo_set_mac_address	= rtl_set_mac_address,
       
  3007 	.ndo_do_ioctl		= rtl8169_ioctl,
       
  3008 	.ndo_set_multicast_list	= rtl_set_rx_mode,
       
  3009 #ifdef CONFIG_R8169_VLAN
       
  3010 	.ndo_vlan_rx_register	= rtl8169_vlan_rx_register,
       
  3011 #endif
       
  3012 #ifdef CONFIG_NET_POLL_CONTROLLER
       
  3013 	.ndo_poll_controller	= rtl8169_netpoll,
       
  3014 #endif
       
  3015 
       
  3016 };
       
  3017 
       
  3018 static int __devinit
       
  3019 rtl8169_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
       
  3020 {
       
  3021 	const struct rtl_cfg_info *cfg = rtl_cfg_infos + ent->driver_data;
       
  3022 	const unsigned int region = cfg->region;
       
  3023 	struct rtl8169_private *tp;
       
  3024 	struct mii_if_info *mii;
       
  3025 	struct net_device *dev;
       
  3026 	void __iomem *ioaddr;
       
  3027 	unsigned int i;
       
  3028 	int rc;
       
  3029 
       
  3030 	if (netif_msg_drv(&debug)) {
       
  3031 		printk(KERN_INFO "%s Gigabit Ethernet driver %s loaded\n",
       
  3032 		       MODULENAME, RTL8169_VERSION);
       
  3033 	}
       
  3034 
       
  3035 	dev = alloc_etherdev(sizeof (*tp));
       
  3036 	if (!dev) {
       
  3037 		if (netif_msg_drv(&debug))
       
  3038 			dev_err(&pdev->dev, "unable to alloc new ethernet\n");
       
  3039 		rc = -ENOMEM;
       
  3040 		goto out;
       
  3041 	}
       
  3042 
       
  3043 	SET_NETDEV_DEV(dev, &pdev->dev);
       
  3044 	dev->netdev_ops = &rtl8169_netdev_ops;
       
  3045 	tp = netdev_priv(dev);
       
  3046 	tp->dev = dev;
       
  3047 	tp->pci_dev = pdev;
       
  3048 	tp->msg_enable = netif_msg_init(debug.msg_enable, R8169_MSG_DEFAULT);
       
  3049 
       
  3050 	mii = &tp->mii;
       
  3051 	mii->dev = dev;
       
  3052 	mii->mdio_read = rtl_mdio_read;
       
  3053 	mii->mdio_write = rtl_mdio_write;
       
  3054 	mii->phy_id_mask = 0x1f;
       
  3055 	mii->reg_num_mask = 0x1f;
       
  3056 	mii->supports_gmii = !!(cfg->features & RTL_FEATURE_GMII);
       
  3057 
       
  3058 	/* enable device (incl. PCI PM wakeup and hotplug setup) */
       
  3059 	rc = pci_enable_device(pdev);
       
  3060 	if (rc < 0) {
       
  3061 		netif_err(tp, probe, dev, "enable failure\n");
       
  3062 		goto err_out_free_dev_1;
       
  3063 	}
       
  3064 
       
  3065 	if (pci_set_mwi(pdev) < 0)
       
  3066 		netif_info(tp, probe, dev, "Mem-Wr-Inval unavailable\n");
       
  3067 
       
  3068 	/* make sure PCI base addr 1 is MMIO */
       
  3069 	if (!(pci_resource_flags(pdev, region) & IORESOURCE_MEM)) {
       
  3070 		netif_err(tp, probe, dev,
       
  3071 			  "region #%d not an MMIO resource, aborting\n",
       
  3072 			  region);
       
  3073 		rc = -ENODEV;
       
  3074 		goto err_out_mwi_2;
       
  3075 	}
       
  3076 
       
  3077 	/* check for weird/broken PCI region reporting */
       
  3078 	if (pci_resource_len(pdev, region) < R8169_REGS_SIZE) {
       
  3079 		netif_err(tp, probe, dev,
       
  3080 			  "Invalid PCI region size(s), aborting\n");
       
  3081 		rc = -ENODEV;
       
  3082 		goto err_out_mwi_2;
       
  3083 	}
       
  3084 
       
  3085 	rc = pci_request_regions(pdev, MODULENAME);
       
  3086 	if (rc < 0) {
       
  3087 		netif_err(tp, probe, dev, "could not request regions\n");
       
  3088 		goto err_out_mwi_2;
       
  3089 	}
       
  3090 
       
  3091 	tp->cp_cmd = PCIMulRW | RxChkSum;
       
  3092 
       
  3093 	if ((sizeof(dma_addr_t) > 4) &&
       
  3094 	    !pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) && use_dac) {
       
  3095 		tp->cp_cmd |= PCIDAC;
       
  3096 		dev->features |= NETIF_F_HIGHDMA;
       
  3097 	} else {
       
  3098 		rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
       
  3099 		if (rc < 0) {
       
  3100 			netif_err(tp, probe, dev, "DMA configuration failed\n");
       
  3101 			goto err_out_free_res_3;
       
  3102 		}
       
  3103 	}
       
  3104 
       
  3105 	/* ioremap MMIO region */
       
  3106 	ioaddr = ioremap(pci_resource_start(pdev, region), R8169_REGS_SIZE);
       
  3107 	if (!ioaddr) {
       
  3108 		netif_err(tp, probe, dev, "cannot remap MMIO, aborting\n");
       
  3109 		rc = -EIO;
       
  3110 		goto err_out_free_res_3;
       
  3111 	}
       
  3112 
       
  3113 	tp->pcie_cap = pci_find_capability(pdev, PCI_CAP_ID_EXP);
       
  3114 	if (!tp->pcie_cap)
       
  3115 		netif_info(tp, probe, dev, "no PCI Express capability\n");
       
  3116 
       
  3117 	RTL_W16(IntrMask, 0x0000);
       
  3118 
       
  3119 	/* Soft reset the chip. */
       
  3120 	RTL_W8(ChipCmd, CmdReset);
       
  3121 
       
  3122 	/* Check that the chip has finished the reset. */
       
  3123 	for (i = 0; i < 100; i++) {
       
  3124 		if ((RTL_R8(ChipCmd) & CmdReset) == 0)
       
  3125 			break;
       
  3126 		msleep_interruptible(1);
       
  3127 	}
       
  3128 
       
  3129 	RTL_W16(IntrStatus, 0xffff);
       
  3130 
       
  3131 	pci_set_master(pdev);
       
  3132 
       
  3133 	/* Identify chip attached to board */
       
  3134 	rtl8169_get_mac_version(tp, ioaddr);
       
  3135 
       
  3136 	/* Use appropriate default if unknown */
       
  3137 	if (tp->mac_version == RTL_GIGA_MAC_NONE) {
       
  3138 		netif_notice(tp, probe, dev,
       
  3139 			     "unknown MAC, using family default\n");
       
  3140 		tp->mac_version = cfg->default_ver;
       
  3141 	}
       
  3142 
       
  3143 	rtl8169_print_mac_version(tp);
       
  3144 
       
  3145 	for (i = 0; i < ARRAY_SIZE(rtl_chip_info); i++) {
       
  3146 		if (tp->mac_version == rtl_chip_info[i].mac_version)
       
  3147 			break;
       
  3148 	}
       
  3149 	if (i == ARRAY_SIZE(rtl_chip_info)) {
       
  3150 		dev_err(&pdev->dev,
       
  3151 			"driver bug, MAC version not found in rtl_chip_info\n");
       
  3152 		goto err_out_msi_4;
       
  3153 	}
       
  3154 	tp->chipset = i;
       
  3155 
       
  3156 	RTL_W8(Cfg9346, Cfg9346_Unlock);
       
  3157 	RTL_W8(Config1, RTL_R8(Config1) | PMEnable);
       
  3158 	RTL_W8(Config5, RTL_R8(Config5) & PMEStatus);
       
  3159 	if ((RTL_R8(Config3) & (LinkUp | MagicPacket)) != 0)
       
  3160 		tp->features |= RTL_FEATURE_WOL;
       
  3161 	if ((RTL_R8(Config5) & (UWF | BWF | MWF)) != 0)
       
  3162 		tp->features |= RTL_FEATURE_WOL;
       
  3163 	tp->features |= rtl_try_msi(pdev, ioaddr, cfg);
       
  3164 	RTL_W8(Cfg9346, Cfg9346_Lock);
       
  3165 
       
  3166 	if ((tp->mac_version <= RTL_GIGA_MAC_VER_06) &&
       
  3167 	    (RTL_R8(PHYstatus) & TBI_Enable)) {
       
  3168 		tp->set_speed = rtl8169_set_speed_tbi;
       
  3169 		tp->get_settings = rtl8169_gset_tbi;
       
  3170 		tp->phy_reset_enable = rtl8169_tbi_reset_enable;
       
  3171 		tp->phy_reset_pending = rtl8169_tbi_reset_pending;
       
  3172 		tp->link_ok = rtl8169_tbi_link_ok;
       
  3173 		tp->do_ioctl = rtl_tbi_ioctl;
       
  3174 
       
  3175 		tp->phy_1000_ctrl_reg = ADVERTISE_1000FULL; /* Implied by TBI */
       
  3176 	} else {
       
  3177 		tp->set_speed = rtl8169_set_speed_xmii;
       
  3178 		tp->get_settings = rtl8169_gset_xmii;
       
  3179 		tp->phy_reset_enable = rtl8169_xmii_reset_enable;
       
  3180 		tp->phy_reset_pending = rtl8169_xmii_reset_pending;
       
  3181 		tp->link_ok = rtl8169_xmii_link_ok;
       
  3182 		tp->do_ioctl = rtl_xmii_ioctl;
       
  3183 	}
       
  3184 
       
  3185 	spin_lock_init(&tp->lock);
       
  3186 
       
  3187 	tp->mmio_addr = ioaddr;
       
  3188 
       
  3189 	/* Get MAC address */
       
  3190 	for (i = 0; i < MAC_ADDR_LEN; i++)
       
  3191 		dev->dev_addr[i] = RTL_R8(MAC0 + i);
       
  3192 	memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
       
  3193 
       
  3194 	SET_ETHTOOL_OPS(dev, &rtl8169_ethtool_ops);
       
  3195 	dev->watchdog_timeo = RTL8169_TX_TIMEOUT;
       
  3196 	dev->irq = pdev->irq;
       
  3197 	dev->base_addr = (unsigned long) ioaddr;
       
  3198 
       
  3199 	netif_napi_add(dev, &tp->napi, rtl8169_poll, R8169_NAPI_WEIGHT);
       
  3200 
       
  3201 #ifdef CONFIG_R8169_VLAN
       
  3202 	dev->features |= NETIF_F_HW_VLAN_TX | NETIF_F_HW_VLAN_RX;
       
  3203 #endif
       
  3204 
       
  3205 	tp->intr_mask = 0xffff;
       
  3206 	tp->align = cfg->align;
       
  3207 	tp->hw_start = cfg->hw_start;
       
  3208 	tp->intr_event = cfg->intr_event;
       
  3209 	tp->napi_event = cfg->napi_event;
       
  3210 
       
  3211 	init_timer(&tp->timer);
       
  3212 	tp->timer.data = (unsigned long) dev;
       
  3213 	tp->timer.function = rtl8169_phy_timer;
       
  3214 
       
  3215 	// offer device to EtherCAT master module
       
  3216 	tp->ecdev = ecdev_offer(dev, ec_poll, THIS_MODULE);
       
  3217 
       
  3218 	if (!tp->ecdev) {
       
  3219 		rc = register_netdev(dev);
       
  3220 		if (rc < 0)
       
  3221 			goto err_out_msi_4;
       
  3222 	}
       
  3223 
       
  3224 	pci_set_drvdata(pdev, dev);
       
  3225 
       
  3226 	netif_info(tp, probe, dev, "%s at 0x%lx, %pM, XID %08x IRQ %d\n",
       
  3227 		   rtl_chip_info[tp->chipset].name,
       
  3228 		   dev->base_addr, dev->dev_addr,
       
  3229 		   (u32)(RTL_R32(TxConfig) & 0x9cf0f8ff), dev->irq);
       
  3230 
       
  3231 	rtl8169_init_phy(dev, tp);
       
  3232 
       
  3233 	/*
       
  3234 	 * Pretend we are using VLANs; This bypasses a nasty bug where
       
  3235 	 * Interrupts stop flowing on high load on 8110SCd controllers.
       
  3236 	 */
       
  3237 	if (tp->mac_version == RTL_GIGA_MAC_VER_05)
       
  3238 		RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | RxVlan);
       
  3239 
       
  3240 	device_set_wakeup_enable(&pdev->dev, tp->features & RTL_FEATURE_WOL);
       
  3241 
       
  3242 	if (pci_dev_run_wake(pdev)) {
       
  3243 		pm_runtime_set_active(&pdev->dev);
       
  3244 		pm_runtime_enable(&pdev->dev);
       
  3245 	}
       
  3246 	pm_runtime_idle(&pdev->dev);
       
  3247 
       
  3248 out:
       
  3249 	return rc;
       
  3250 
       
  3251 err_out_msi_4:
       
  3252 	rtl_disable_msi(pdev, tp);
       
  3253 	iounmap(ioaddr);
       
  3254 err_out_free_res_3:
       
  3255 	pci_release_regions(pdev);
       
  3256 err_out_mwi_2:
       
  3257 	pci_clear_mwi(pdev);
       
  3258 	pci_disable_device(pdev);
       
  3259 err_out_free_dev_1:
       
  3260 	free_netdev(dev);
       
  3261 	goto out;
       
  3262 }
       
  3263 
       
  3264 static void __devexit rtl8169_remove_one(struct pci_dev *pdev)
       
  3265 {
       
  3266 	struct net_device *dev = pci_get_drvdata(pdev);
       
  3267 	struct rtl8169_private *tp = netdev_priv(dev);
       
  3268 
       
  3269 	pm_runtime_get_sync(&pdev->dev);
       
  3270 
       
  3271 	flush_scheduled_work();
       
  3272 
       
  3273 	if (tp->ecdev) {
       
  3274 		ecdev_close(tp->ecdev);
       
  3275 		ecdev_withdraw(tp->ecdev);
       
  3276 	} else {
       
  3277 		unregister_netdev(dev);
       
  3278 	}
       
  3279 
       
  3280 	if (pci_dev_run_wake(pdev)) {
       
  3281 		pm_runtime_disable(&pdev->dev);
       
  3282 		pm_runtime_set_suspended(&pdev->dev);
       
  3283 	}
       
  3284 	pm_runtime_put_noidle(&pdev->dev);
       
  3285 
       
  3286 	/* restore original MAC address */
       
  3287 	rtl_rar_set(tp, dev->perm_addr);
       
  3288 
       
  3289 	rtl_disable_msi(pdev, tp);
       
  3290 	rtl8169_release_board(pdev, dev, tp->mmio_addr);
       
  3291 	pci_set_drvdata(pdev, NULL);
       
  3292 }
       
  3293 
       
  3294 static void rtl8169_set_rxbufsize(struct rtl8169_private *tp,
       
  3295 				  unsigned int mtu)
       
  3296 {
       
  3297 	unsigned int max_frame = mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
       
  3298 
       
  3299 	if (max_frame != 16383)
       
  3300 		printk(KERN_WARNING PFX "WARNING! Changing of MTU on this "
       
  3301 			"NIC may lead to frame reception errors!\n");
       
  3302 
       
  3303 	tp->rx_buf_sz = (max_frame > RX_BUF_SIZE) ? max_frame : RX_BUF_SIZE;
       
  3304 }
       
  3305 
       
  3306 static int rtl8169_open(struct net_device *dev)
       
  3307 {
       
  3308 	struct rtl8169_private *tp = netdev_priv(dev);
       
  3309 	struct pci_dev *pdev = tp->pci_dev;
       
  3310 	int retval = -ENOMEM;
       
  3311 
       
  3312 	pm_runtime_get_sync(&pdev->dev);
       
  3313 
       
  3314 	/*
       
  3315 	 * Note that we use a magic value here, its wierd I know
       
  3316 	 * its done because, some subset of rtl8169 hardware suffers from
       
  3317 	 * a problem in which frames received that are longer than
       
  3318 	 * the size set in RxMaxSize register return garbage sizes
       
  3319 	 * when received.  To avoid this we need to turn off filtering,
       
  3320 	 * which is done by setting a value of 16383 in the RxMaxSize register
       
  3321 	 * and allocating 16k frames to handle the largest possible rx value
       
  3322 	 * thats what the magic math below does.
       
  3323 	 */
       
  3324 	rtl8169_set_rxbufsize(tp, 16383 - VLAN_ETH_HLEN - ETH_FCS_LEN);
       
  3325 
       
  3326 	/*
       
  3327 	 * Rx and Tx desscriptors needs 256 bytes alignment.
       
  3328 	 * pci_alloc_consistent provides more.
       
  3329 	 */
       
  3330 	tp->TxDescArray = pci_alloc_consistent(pdev, R8169_TX_RING_BYTES,
       
  3331 					       &tp->TxPhyAddr);
       
  3332 	if (!tp->TxDescArray)
       
  3333 		goto err_pm_runtime_put;
       
  3334 
       
  3335 	tp->RxDescArray = pci_alloc_consistent(pdev, R8169_RX_RING_BYTES,
       
  3336 					       &tp->RxPhyAddr);
       
  3337 	if (!tp->RxDescArray)
       
  3338 		goto err_free_tx_0;
       
  3339 
       
  3340 	retval = rtl8169_init_ring(dev);
       
  3341 	if (retval < 0)
       
  3342 		goto err_free_rx_1;
       
  3343 
       
  3344 	INIT_DELAYED_WORK(&tp->task, NULL);
       
  3345 
       
  3346 	smp_mb();
       
  3347 
       
  3348 	if (!tp->ecdev) {
       
  3349 		retval = request_irq(dev->irq, rtl8169_interrupt,
       
  3350 				(tp->features & RTL_FEATURE_MSI) ? 0 : IRQF_SHARED,
       
  3351 				dev->name, dev);
       
  3352 		if (retval < 0)
       
  3353 			goto err_release_ring_2;
       
  3354 
       
  3355 		napi_enable(&tp->napi);
       
  3356 	}
       
  3357 
       
  3358 	rtl_hw_start(dev);
       
  3359 
       
  3360 	rtl8169_request_timer(dev);
       
  3361 
       
  3362 	tp->saved_wolopts = 0;
       
  3363 	pm_runtime_put_noidle(&pdev->dev);
       
  3364 
       
  3365 	rtl8169_check_link_status(dev, tp, tp->mmio_addr);
       
  3366 out:
       
  3367 	return retval;
       
  3368 
       
  3369 err_release_ring_2:
       
  3370 	rtl8169_rx_clear(tp);
       
  3371 err_free_rx_1:
       
  3372 	pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
       
  3373 			    tp->RxPhyAddr);
       
  3374 	tp->RxDescArray = NULL;
       
  3375 err_free_tx_0:
       
  3376 	pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
       
  3377 			    tp->TxPhyAddr);
       
  3378 	tp->TxDescArray = NULL;
       
  3379 err_pm_runtime_put:
       
  3380 	pm_runtime_put_noidle(&pdev->dev);
       
  3381 	goto out;
       
  3382 }
       
  3383 
       
  3384 static void rtl8169_hw_reset(void __iomem *ioaddr)
       
  3385 {
       
  3386 	/* Disable interrupts */
       
  3387 	rtl8169_irq_mask_and_ack(ioaddr);
       
  3388 
       
  3389 	/* Reset the chipset */
       
  3390 	RTL_W8(ChipCmd, CmdReset);
       
  3391 
       
  3392 	/* PCI commit */
       
  3393 	RTL_R8(ChipCmd);
       
  3394 }
       
  3395 
       
  3396 static void rtl_set_rx_tx_config_registers(struct rtl8169_private *tp)
       
  3397 {
       
  3398 	void __iomem *ioaddr = tp->mmio_addr;
       
  3399 	u32 cfg = rtl8169_rx_config;
       
  3400 
       
  3401 	cfg |= (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
       
  3402 	RTL_W32(RxConfig, cfg);
       
  3403 
       
  3404 	/* Set DMA burst size and Interframe Gap Time */
       
  3405 	RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
       
  3406 		(InterFrameGap << TxInterFrameGapShift));
       
  3407 }
       
  3408 
       
  3409 static void rtl_hw_start(struct net_device *dev)
       
  3410 {
       
  3411 	struct rtl8169_private *tp = netdev_priv(dev);
       
  3412 	void __iomem *ioaddr = tp->mmio_addr;
       
  3413 	unsigned int i;
       
  3414 
       
  3415 	/* Soft reset the chip. */
       
  3416 	RTL_W8(ChipCmd, CmdReset);
       
  3417 
       
  3418 	/* Check that the chip has finished the reset. */
       
  3419 	for (i = 0; i < 100; i++) {
       
  3420 		if ((RTL_R8(ChipCmd) & CmdReset) == 0)
       
  3421 			break;
       
  3422 		msleep_interruptible(1);
       
  3423 	}
       
  3424 
       
  3425 	tp->hw_start(dev);
       
  3426 
       
  3427 	if (!tp->ecdev)
       
  3428 		netif_start_queue(dev);
       
  3429 }
       
  3430 
       
  3431 
       
  3432 static void rtl_set_rx_tx_desc_registers(struct rtl8169_private *tp,
       
  3433 					 void __iomem *ioaddr)
       
  3434 {
       
  3435 	/*
       
  3436 	 * Magic spell: some iop3xx ARM board needs the TxDescAddrHigh
       
  3437 	 * register to be written before TxDescAddrLow to work.
       
  3438 	 * Switching from MMIO to I/O access fixes the issue as well.
       
  3439 	 */
       
  3440 	RTL_W32(TxDescStartAddrHigh, ((u64) tp->TxPhyAddr) >> 32);
       
  3441 	RTL_W32(TxDescStartAddrLow, ((u64) tp->TxPhyAddr) & DMA_BIT_MASK(32));
       
  3442 	RTL_W32(RxDescAddrHigh, ((u64) tp->RxPhyAddr) >> 32);
       
  3443 	RTL_W32(RxDescAddrLow, ((u64) tp->RxPhyAddr) & DMA_BIT_MASK(32));
       
  3444 }
       
  3445 
       
  3446 static u16 rtl_rw_cpluscmd(void __iomem *ioaddr)
       
  3447 {
       
  3448 	u16 cmd;
       
  3449 
       
  3450 	cmd = RTL_R16(CPlusCmd);
       
  3451 	RTL_W16(CPlusCmd, cmd);
       
  3452 	return cmd;
       
  3453 }
       
  3454 
       
  3455 static void rtl_set_rx_max_size(void __iomem *ioaddr, unsigned int rx_buf_sz)
       
  3456 {
       
  3457 	/* Low hurts. Let's disable the filtering. */
       
  3458 	RTL_W16(RxMaxSize, rx_buf_sz + 1);
       
  3459 }
       
  3460 
       
  3461 static void rtl8169_set_magic_reg(void __iomem *ioaddr, unsigned mac_version)
       
  3462 {
       
  3463 	static const struct {
       
  3464 		u32 mac_version;
       
  3465 		u32 clk;
       
  3466 		u32 val;
       
  3467 	} cfg2_info [] = {
       
  3468 		{ RTL_GIGA_MAC_VER_05, PCI_Clock_33MHz, 0x000fff00 }, // 8110SCd
       
  3469 		{ RTL_GIGA_MAC_VER_05, PCI_Clock_66MHz, 0x000fffff },
       
  3470 		{ RTL_GIGA_MAC_VER_06, PCI_Clock_33MHz, 0x00ffff00 }, // 8110SCe
       
  3471 		{ RTL_GIGA_MAC_VER_06, PCI_Clock_66MHz, 0x00ffffff }
       
  3472 	}, *p = cfg2_info;
       
  3473 	unsigned int i;
       
  3474 	u32 clk;
       
  3475 
       
  3476 	clk = RTL_R8(Config2) & PCI_Clock_66MHz;
       
  3477 	for (i = 0; i < ARRAY_SIZE(cfg2_info); i++, p++) {
       
  3478 		if ((p->mac_version == mac_version) && (p->clk == clk)) {
       
  3479 			RTL_W32(0x7c, p->val);
       
  3480 			break;
       
  3481 		}
       
  3482 	}
       
  3483 }
       
  3484 
       
  3485 static void rtl_hw_start_8169(struct net_device *dev)
       
  3486 {
       
  3487 	struct rtl8169_private *tp = netdev_priv(dev);
       
  3488 	void __iomem *ioaddr = tp->mmio_addr;
       
  3489 	struct pci_dev *pdev = tp->pci_dev;
       
  3490 
       
  3491 	if (tp->mac_version == RTL_GIGA_MAC_VER_05) {
       
  3492 		RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) | PCIMulRW);
       
  3493 		pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, 0x08);
       
  3494 	}
       
  3495 
       
  3496 	RTL_W8(Cfg9346, Cfg9346_Unlock);
       
  3497 	if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
       
  3498 	    (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
       
  3499 	    (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
       
  3500 	    (tp->mac_version == RTL_GIGA_MAC_VER_04))
       
  3501 		RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
       
  3502 
       
  3503 	RTL_W8(EarlyTxThres, EarlyTxThld);
       
  3504 
       
  3505 	rtl_set_rx_max_size(ioaddr, tp->rx_buf_sz);
       
  3506 
       
  3507 	if ((tp->mac_version == RTL_GIGA_MAC_VER_01) ||
       
  3508 	    (tp->mac_version == RTL_GIGA_MAC_VER_02) ||
       
  3509 	    (tp->mac_version == RTL_GIGA_MAC_VER_03) ||
       
  3510 	    (tp->mac_version == RTL_GIGA_MAC_VER_04))
       
  3511 		rtl_set_rx_tx_config_registers(tp);
       
  3512 
       
  3513 	tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
       
  3514 
       
  3515 	if ((tp->mac_version == RTL_GIGA_MAC_VER_02) ||
       
  3516 	    (tp->mac_version == RTL_GIGA_MAC_VER_03)) {
       
  3517 		dprintk("Set MAC Reg C+CR Offset 0xE0. "
       
  3518 			"Bit-3 and bit-14 MUST be 1\n");
       
  3519 		tp->cp_cmd |= (1 << 14);
       
  3520 	}
       
  3521 
       
  3522 	RTL_W16(CPlusCmd, tp->cp_cmd);
       
  3523 
       
  3524 	rtl8169_set_magic_reg(ioaddr, tp->mac_version);
       
  3525 
       
  3526 	/*
       
  3527 	 * Undocumented corner. Supposedly:
       
  3528 	 * (TxTimer << 12) | (TxPackets << 8) | (RxTimer << 4) | RxPackets
       
  3529 	 */
       
  3530 	RTL_W16(IntrMitigate, 0x0000);
       
  3531 
       
  3532 	rtl_set_rx_tx_desc_registers(tp, ioaddr);
       
  3533 
       
  3534 	if ((tp->mac_version != RTL_GIGA_MAC_VER_01) &&
       
  3535 	    (tp->mac_version != RTL_GIGA_MAC_VER_02) &&
       
  3536 	    (tp->mac_version != RTL_GIGA_MAC_VER_03) &&
       
  3537 	    (tp->mac_version != RTL_GIGA_MAC_VER_04)) {
       
  3538 		RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
       
  3539 		rtl_set_rx_tx_config_registers(tp);
       
  3540 	}
       
  3541 
       
  3542 	RTL_W8(Cfg9346, Cfg9346_Lock);
       
  3543 
       
  3544 	/* Initially a 10 us delay. Turned it into a PCI commit. - FR */
       
  3545 	RTL_R8(IntrMask);
       
  3546 
       
  3547 	RTL_W32(RxMissed, 0);
       
  3548 
       
  3549 	rtl_set_rx_mode(dev);
       
  3550 
       
  3551 	/* no early-rx interrupts */
       
  3552 	RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
       
  3553 
       
  3554 	/* Enable all known interrupts by setting the interrupt mask. */
       
  3555 	if (!tp->ecdev)
       
  3556 		RTL_W16(IntrMask, tp->intr_event);
       
  3557 }
       
  3558 
       
  3559 static void rtl_tx_performance_tweak(struct pci_dev *pdev, u16 force)
       
  3560 {
       
  3561 	struct net_device *dev = pci_get_drvdata(pdev);
       
  3562 	struct rtl8169_private *tp = netdev_priv(dev);
       
  3563 	int cap = tp->pcie_cap;
       
  3564 
       
  3565 	if (cap) {
       
  3566 		u16 ctl;
       
  3567 
       
  3568 		pci_read_config_word(pdev, cap + PCI_EXP_DEVCTL, &ctl);
       
  3569 		ctl = (ctl & ~PCI_EXP_DEVCTL_READRQ) | force;
       
  3570 		pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL, ctl);
       
  3571 	}
       
  3572 }
       
  3573 
       
  3574 static void rtl_csi_access_enable(void __iomem *ioaddr)
       
  3575 {
       
  3576 	u32 csi;
       
  3577 
       
  3578 	csi = rtl_csi_read(ioaddr, 0x070c) & 0x00ffffff;
       
  3579 	rtl_csi_write(ioaddr, 0x070c, csi | 0x27000000);
       
  3580 }
       
  3581 
       
  3582 struct ephy_info {
       
  3583 	unsigned int offset;
       
  3584 	u16 mask;
       
  3585 	u16 bits;
       
  3586 };
       
  3587 
       
  3588 static void rtl_ephy_init(void __iomem *ioaddr, const struct ephy_info *e, int len)
       
  3589 {
       
  3590 	u16 w;
       
  3591 
       
  3592 	while (len-- > 0) {
       
  3593 		w = (rtl_ephy_read(ioaddr, e->offset) & ~e->mask) | e->bits;
       
  3594 		rtl_ephy_write(ioaddr, e->offset, w);
       
  3595 		e++;
       
  3596 	}
       
  3597 }
       
  3598 
       
  3599 static void rtl_disable_clock_request(struct pci_dev *pdev)
       
  3600 {
       
  3601 	struct net_device *dev = pci_get_drvdata(pdev);
       
  3602 	struct rtl8169_private *tp = netdev_priv(dev);
       
  3603 	int cap = tp->pcie_cap;
       
  3604 
       
  3605 	if (cap) {
       
  3606 		u16 ctl;
       
  3607 
       
  3608 		pci_read_config_word(pdev, cap + PCI_EXP_LNKCTL, &ctl);
       
  3609 		ctl &= ~PCI_EXP_LNKCTL_CLKREQ_EN;
       
  3610 		pci_write_config_word(pdev, cap + PCI_EXP_LNKCTL, ctl);
       
  3611 	}
       
  3612 }
       
  3613 
       
  3614 #define R8168_CPCMD_QUIRK_MASK (\
       
  3615 	EnableBist | \
       
  3616 	Mac_dbgo_oe | \
       
  3617 	Force_half_dup | \
       
  3618 	Force_rxflow_en | \
       
  3619 	Force_txflow_en | \
       
  3620 	Cxpl_dbg_sel | \
       
  3621 	ASF | \
       
  3622 	PktCntrDisable | \
       
  3623 	Mac_dbgo_sel)
       
  3624 
       
  3625 static void rtl_hw_start_8168bb(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3626 {
       
  3627 	RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
       
  3628 
       
  3629 	RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
       
  3630 
       
  3631 	rtl_tx_performance_tweak(pdev,
       
  3632 		(0x5 << MAX_READ_REQUEST_SHIFT) | PCI_EXP_DEVCTL_NOSNOOP_EN);
       
  3633 }
       
  3634 
       
  3635 static void rtl_hw_start_8168bef(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3636 {
       
  3637 	rtl_hw_start_8168bb(ioaddr, pdev);
       
  3638 
       
  3639 	RTL_W8(EarlyTxThres, EarlyTxThld);
       
  3640 
       
  3641 	RTL_W8(Config4, RTL_R8(Config4) & ~(1 << 0));
       
  3642 }
       
  3643 
       
  3644 static void __rtl_hw_start_8168cp(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3645 {
       
  3646 	RTL_W8(Config1, RTL_R8(Config1) | Speed_down);
       
  3647 
       
  3648 	RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
       
  3649 
       
  3650 	rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
       
  3651 
       
  3652 	rtl_disable_clock_request(pdev);
       
  3653 
       
  3654 	RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
       
  3655 }
       
  3656 
       
  3657 static void rtl_hw_start_8168cp_1(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3658 {
       
  3659 	static const struct ephy_info e_info_8168cp[] = {
       
  3660 		{ 0x01, 0,	0x0001 },
       
  3661 		{ 0x02, 0x0800,	0x1000 },
       
  3662 		{ 0x03, 0,	0x0042 },
       
  3663 		{ 0x06, 0x0080,	0x0000 },
       
  3664 		{ 0x07, 0,	0x2000 }
       
  3665 	};
       
  3666 
       
  3667 	rtl_csi_access_enable(ioaddr);
       
  3668 
       
  3669 	rtl_ephy_init(ioaddr, e_info_8168cp, ARRAY_SIZE(e_info_8168cp));
       
  3670 
       
  3671 	__rtl_hw_start_8168cp(ioaddr, pdev);
       
  3672 }
       
  3673 
       
  3674 static void rtl_hw_start_8168cp_2(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3675 {
       
  3676 	rtl_csi_access_enable(ioaddr);
       
  3677 
       
  3678 	RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
       
  3679 
       
  3680 	rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
       
  3681 
       
  3682 	RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
       
  3683 }
       
  3684 
       
  3685 static void rtl_hw_start_8168cp_3(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3686 {
       
  3687 	rtl_csi_access_enable(ioaddr);
       
  3688 
       
  3689 	RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
       
  3690 
       
  3691 	/* Magic. */
       
  3692 	RTL_W8(DBG_REG, 0x20);
       
  3693 
       
  3694 	RTL_W8(EarlyTxThres, EarlyTxThld);
       
  3695 
       
  3696 	rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
       
  3697 
       
  3698 	RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
       
  3699 }
       
  3700 
       
  3701 static void rtl_hw_start_8168c_1(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3702 {
       
  3703 	static const struct ephy_info e_info_8168c_1[] = {
       
  3704 		{ 0x02, 0x0800,	0x1000 },
       
  3705 		{ 0x03, 0,	0x0002 },
       
  3706 		{ 0x06, 0x0080,	0x0000 }
       
  3707 	};
       
  3708 
       
  3709 	rtl_csi_access_enable(ioaddr);
       
  3710 
       
  3711 	RTL_W8(DBG_REG, 0x06 | FIX_NAK_1 | FIX_NAK_2);
       
  3712 
       
  3713 	rtl_ephy_init(ioaddr, e_info_8168c_1, ARRAY_SIZE(e_info_8168c_1));
       
  3714 
       
  3715 	__rtl_hw_start_8168cp(ioaddr, pdev);
       
  3716 }
       
  3717 
       
  3718 static void rtl_hw_start_8168c_2(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3719 {
       
  3720 	static const struct ephy_info e_info_8168c_2[] = {
       
  3721 		{ 0x01, 0,	0x0001 },
       
  3722 		{ 0x03, 0x0400,	0x0220 }
       
  3723 	};
       
  3724 
       
  3725 	rtl_csi_access_enable(ioaddr);
       
  3726 
       
  3727 	rtl_ephy_init(ioaddr, e_info_8168c_2, ARRAY_SIZE(e_info_8168c_2));
       
  3728 
       
  3729 	__rtl_hw_start_8168cp(ioaddr, pdev);
       
  3730 }
       
  3731 
       
  3732 static void rtl_hw_start_8168c_3(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3733 {
       
  3734 	rtl_hw_start_8168c_2(ioaddr, pdev);
       
  3735 }
       
  3736 
       
  3737 static void rtl_hw_start_8168c_4(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3738 {
       
  3739 	rtl_csi_access_enable(ioaddr);
       
  3740 
       
  3741 	__rtl_hw_start_8168cp(ioaddr, pdev);
       
  3742 }
       
  3743 
       
  3744 static void rtl_hw_start_8168d(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3745 {
       
  3746 	rtl_csi_access_enable(ioaddr);
       
  3747 
       
  3748 	rtl_disable_clock_request(pdev);
       
  3749 
       
  3750 	RTL_W8(EarlyTxThres, EarlyTxThld);
       
  3751 
       
  3752 	rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
       
  3753 
       
  3754 	RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R8168_CPCMD_QUIRK_MASK);
       
  3755 }
       
  3756 
       
  3757 static void rtl_hw_start_8168(struct net_device *dev)
       
  3758 {
       
  3759 	struct rtl8169_private *tp = netdev_priv(dev);
       
  3760 	void __iomem *ioaddr = tp->mmio_addr;
       
  3761 	struct pci_dev *pdev = tp->pci_dev;
       
  3762 
       
  3763 	RTL_W8(Cfg9346, Cfg9346_Unlock);
       
  3764 
       
  3765 	RTL_W8(EarlyTxThres, EarlyTxThld);
       
  3766 
       
  3767 	rtl_set_rx_max_size(ioaddr, tp->rx_buf_sz);
       
  3768 
       
  3769 	tp->cp_cmd |= RTL_R16(CPlusCmd) | PktCntrDisable | INTT_1;
       
  3770 
       
  3771 	RTL_W16(CPlusCmd, tp->cp_cmd);
       
  3772 
       
  3773 	RTL_W16(IntrMitigate, 0x5151);
       
  3774 
       
  3775 	/* Work around for RxFIFO overflow. */
       
  3776 	if (tp->mac_version == RTL_GIGA_MAC_VER_11) {
       
  3777 		tp->intr_event |= RxFIFOOver | PCSTimeout;
       
  3778 		tp->intr_event &= ~RxOverflow;
       
  3779 	}
       
  3780 
       
  3781 	rtl_set_rx_tx_desc_registers(tp, ioaddr);
       
  3782 
       
  3783 	rtl_set_rx_mode(dev);
       
  3784 
       
  3785 	RTL_W32(TxConfig, (TX_DMA_BURST << TxDMAShift) |
       
  3786 		(InterFrameGap << TxInterFrameGapShift));
       
  3787 
       
  3788 	RTL_R8(IntrMask);
       
  3789 
       
  3790 	switch (tp->mac_version) {
       
  3791 	case RTL_GIGA_MAC_VER_11:
       
  3792 		rtl_hw_start_8168bb(ioaddr, pdev);
       
  3793 	break;
       
  3794 
       
  3795 	case RTL_GIGA_MAC_VER_12:
       
  3796 	case RTL_GIGA_MAC_VER_17:
       
  3797 		rtl_hw_start_8168bef(ioaddr, pdev);
       
  3798 	break;
       
  3799 
       
  3800 	case RTL_GIGA_MAC_VER_18:
       
  3801 		rtl_hw_start_8168cp_1(ioaddr, pdev);
       
  3802 	break;
       
  3803 
       
  3804 	case RTL_GIGA_MAC_VER_19:
       
  3805 		rtl_hw_start_8168c_1(ioaddr, pdev);
       
  3806 	break;
       
  3807 
       
  3808 	case RTL_GIGA_MAC_VER_20:
       
  3809 		rtl_hw_start_8168c_2(ioaddr, pdev);
       
  3810 	break;
       
  3811 
       
  3812 	case RTL_GIGA_MAC_VER_21:
       
  3813 		rtl_hw_start_8168c_3(ioaddr, pdev);
       
  3814 	break;
       
  3815 
       
  3816 	case RTL_GIGA_MAC_VER_22:
       
  3817 		rtl_hw_start_8168c_4(ioaddr, pdev);
       
  3818 	break;
       
  3819 
       
  3820 	case RTL_GIGA_MAC_VER_23:
       
  3821 		rtl_hw_start_8168cp_2(ioaddr, pdev);
       
  3822 	break;
       
  3823 
       
  3824 	case RTL_GIGA_MAC_VER_24:
       
  3825 		rtl_hw_start_8168cp_3(ioaddr, pdev);
       
  3826 	break;
       
  3827 
       
  3828 	case RTL_GIGA_MAC_VER_25:
       
  3829 	case RTL_GIGA_MAC_VER_26:
       
  3830 	case RTL_GIGA_MAC_VER_27:
       
  3831 		rtl_hw_start_8168d(ioaddr, pdev);
       
  3832 	break;
       
  3833 
       
  3834 	default:
       
  3835 		printk(KERN_ERR PFX "%s: unknown chipset (mac_version = %d).\n",
       
  3836 			dev->name, tp->mac_version);
       
  3837 	break;
       
  3838 	}
       
  3839 
       
  3840 	RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
       
  3841 
       
  3842 	RTL_W8(Cfg9346, Cfg9346_Lock);
       
  3843 
       
  3844 	RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xF000);
       
  3845 
       
  3846 	if (!tp->ecdev)
       
  3847 		RTL_W16(IntrMask, tp->intr_event);
       
  3848 }
       
  3849 
       
  3850 #define R810X_CPCMD_QUIRK_MASK (\
       
  3851 	EnableBist | \
       
  3852 	Mac_dbgo_oe | \
       
  3853 	Force_half_dup | \
       
  3854 	Force_rxflow_en | \
       
  3855 	Force_txflow_en | \
       
  3856 	Cxpl_dbg_sel | \
       
  3857 	ASF | \
       
  3858 	PktCntrDisable | \
       
  3859 	PCIDAC | \
       
  3860 	PCIMulRW)
       
  3861 
       
  3862 static void rtl_hw_start_8102e_1(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3863 {
       
  3864 	static const struct ephy_info e_info_8102e_1[] = {
       
  3865 		{ 0x01,	0, 0x6e65 },
       
  3866 		{ 0x02,	0, 0x091f },
       
  3867 		{ 0x03,	0, 0xc2f9 },
       
  3868 		{ 0x06,	0, 0xafb5 },
       
  3869 		{ 0x07,	0, 0x0e00 },
       
  3870 		{ 0x19,	0, 0xec80 },
       
  3871 		{ 0x01,	0, 0x2e65 },
       
  3872 		{ 0x01,	0, 0x6e65 }
       
  3873 	};
       
  3874 	u8 cfg1;
       
  3875 
       
  3876 	rtl_csi_access_enable(ioaddr);
       
  3877 
       
  3878 	RTL_W8(DBG_REG, FIX_NAK_1);
       
  3879 
       
  3880 	rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
       
  3881 
       
  3882 	RTL_W8(Config1,
       
  3883 	       LEDS1 | LEDS0 | Speed_down | MEMMAP | IOMAP | VPD | PMEnable);
       
  3884 	RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
       
  3885 
       
  3886 	cfg1 = RTL_R8(Config1);
       
  3887 	if ((cfg1 & LEDS0) && (cfg1 & LEDS1))
       
  3888 		RTL_W8(Config1, cfg1 & ~LEDS0);
       
  3889 
       
  3890 	RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
       
  3891 
       
  3892 	rtl_ephy_init(ioaddr, e_info_8102e_1, ARRAY_SIZE(e_info_8102e_1));
       
  3893 }
       
  3894 
       
  3895 static void rtl_hw_start_8102e_2(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3896 {
       
  3897 	rtl_csi_access_enable(ioaddr);
       
  3898 
       
  3899 	rtl_tx_performance_tweak(pdev, 0x5 << MAX_READ_REQUEST_SHIFT);
       
  3900 
       
  3901 	RTL_W8(Config1, MEMMAP | IOMAP | VPD | PMEnable);
       
  3902 	RTL_W8(Config3, RTL_R8(Config3) & ~Beacon_en);
       
  3903 
       
  3904 	RTL_W16(CPlusCmd, RTL_R16(CPlusCmd) & ~R810X_CPCMD_QUIRK_MASK);
       
  3905 }
       
  3906 
       
  3907 static void rtl_hw_start_8102e_3(void __iomem *ioaddr, struct pci_dev *pdev)
       
  3908 {
       
  3909 	rtl_hw_start_8102e_2(ioaddr, pdev);
       
  3910 
       
  3911 	rtl_ephy_write(ioaddr, 0x03, 0xc2f9);
       
  3912 }
       
  3913 
       
  3914 static void rtl_hw_start_8101(struct net_device *dev)
       
  3915 {
       
  3916 	struct rtl8169_private *tp = netdev_priv(dev);
       
  3917 	void __iomem *ioaddr = tp->mmio_addr;
       
  3918 	struct pci_dev *pdev = tp->pci_dev;
       
  3919 
       
  3920 	if ((tp->mac_version == RTL_GIGA_MAC_VER_13) ||
       
  3921 	    (tp->mac_version == RTL_GIGA_MAC_VER_16)) {
       
  3922 		int cap = tp->pcie_cap;
       
  3923 
       
  3924 		if (cap) {
       
  3925 			pci_write_config_word(pdev, cap + PCI_EXP_DEVCTL,
       
  3926 					      PCI_EXP_DEVCTL_NOSNOOP_EN);
       
  3927 		}
       
  3928 	}
       
  3929 
       
  3930 	switch (tp->mac_version) {
       
  3931 	case RTL_GIGA_MAC_VER_07:
       
  3932 		rtl_hw_start_8102e_1(ioaddr, pdev);
       
  3933 		break;
       
  3934 
       
  3935 	case RTL_GIGA_MAC_VER_08:
       
  3936 		rtl_hw_start_8102e_3(ioaddr, pdev);
       
  3937 		break;
       
  3938 
       
  3939 	case RTL_GIGA_MAC_VER_09:
       
  3940 		rtl_hw_start_8102e_2(ioaddr, pdev);
       
  3941 		break;
       
  3942 	}
       
  3943 
       
  3944 	RTL_W8(Cfg9346, Cfg9346_Unlock);
       
  3945 
       
  3946 	RTL_W8(EarlyTxThres, EarlyTxThld);
       
  3947 
       
  3948 	rtl_set_rx_max_size(ioaddr, tp->rx_buf_sz);
       
  3949 
       
  3950 	tp->cp_cmd |= rtl_rw_cpluscmd(ioaddr) | PCIMulRW;
       
  3951 
       
  3952 	RTL_W16(CPlusCmd, tp->cp_cmd);
       
  3953 
       
  3954 	RTL_W16(IntrMitigate, 0x0000);
       
  3955 
       
  3956 	rtl_set_rx_tx_desc_registers(tp, ioaddr);
       
  3957 
       
  3958 	RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
       
  3959 	rtl_set_rx_tx_config_registers(tp);
       
  3960 
       
  3961 	RTL_W8(Cfg9346, Cfg9346_Lock);
       
  3962 
       
  3963 	RTL_R8(IntrMask);
       
  3964 
       
  3965 	rtl_set_rx_mode(dev);
       
  3966 
       
  3967 	RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb);
       
  3968 
       
  3969 	RTL_W16(MultiIntr, RTL_R16(MultiIntr) & 0xf000);
       
  3970 
       
  3971 	if (!tp->ecdev)
       
  3972 		RTL_W16(IntrMask, tp->intr_event);
       
  3973 }
       
  3974 
       
  3975 static int rtl8169_change_mtu(struct net_device *dev, int new_mtu)
       
  3976 {
       
  3977 	struct rtl8169_private *tp = netdev_priv(dev);
       
  3978 	int ret = 0;
       
  3979 
       
  3980 	if (new_mtu < ETH_ZLEN || new_mtu > SafeMtu)
       
  3981 		return -EINVAL;
       
  3982 
       
  3983 	dev->mtu = new_mtu;
       
  3984 
       
  3985 	if (!netif_running(dev))
       
  3986 		goto out;
       
  3987 
       
  3988 	rtl8169_down(dev);
       
  3989 
       
  3990 	rtl8169_set_rxbufsize(tp, dev->mtu);
       
  3991 
       
  3992 	ret = rtl8169_init_ring(dev);
       
  3993 	if (ret < 0)
       
  3994 		goto out;
       
  3995 
       
  3996 	napi_enable(&tp->napi);
       
  3997 
       
  3998 	rtl_hw_start(dev);
       
  3999 
       
  4000 	rtl8169_request_timer(dev);
       
  4001 
       
  4002 out:
       
  4003 	return ret;
       
  4004 }
       
  4005 
       
  4006 static inline void rtl8169_make_unusable_by_asic(struct RxDesc *desc)
       
  4007 {
       
  4008 	desc->addr = cpu_to_le64(0x0badbadbadbadbadull);
       
  4009 	desc->opts1 &= ~cpu_to_le32(DescOwn | RsvdMask);
       
  4010 }
       
  4011 
       
  4012 static void rtl8169_free_rx_skb(struct rtl8169_private *tp,
       
  4013 				struct sk_buff **sk_buff, struct RxDesc *desc)
       
  4014 {
       
  4015 	struct pci_dev *pdev = tp->pci_dev;
       
  4016 
       
  4017 	pci_unmap_single(pdev, le64_to_cpu(desc->addr), tp->rx_buf_sz,
       
  4018 			 PCI_DMA_FROMDEVICE);
       
  4019 	dev_kfree_skb(*sk_buff);
       
  4020 	*sk_buff = NULL;
       
  4021 	rtl8169_make_unusable_by_asic(desc);
       
  4022 }
       
  4023 
       
  4024 static inline void rtl8169_mark_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
       
  4025 {
       
  4026 	u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
       
  4027 
       
  4028 	desc->opts1 = cpu_to_le32(DescOwn | eor | rx_buf_sz);
       
  4029 }
       
  4030 
       
  4031 static inline void rtl8169_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
       
  4032 				       u32 rx_buf_sz)
       
  4033 {
       
  4034 	desc->addr = cpu_to_le64(mapping);
       
  4035 	wmb();
       
  4036 	rtl8169_mark_to_asic(desc, rx_buf_sz);
       
  4037 }
       
  4038 
       
  4039 static struct sk_buff *rtl8169_alloc_rx_skb(struct pci_dev *pdev,
       
  4040 					    struct net_device *dev,
       
  4041 					    struct RxDesc *desc, int rx_buf_sz,
       
  4042 					    unsigned int align, gfp_t gfp)
       
  4043 {
       
  4044 	struct sk_buff *skb;
       
  4045 	dma_addr_t mapping;
       
  4046 	unsigned int pad;
       
  4047 
       
  4048 	pad = align ? align : NET_IP_ALIGN;
       
  4049 
       
  4050 	skb = __netdev_alloc_skb(dev, rx_buf_sz + pad, gfp);
       
  4051 	if (!skb)
       
  4052 		goto err_out;
       
  4053 
       
  4054 	skb_reserve(skb, align ? ((pad - 1) & (unsigned long)skb->data) : pad);
       
  4055 
       
  4056 	mapping = pci_map_single(pdev, skb->data, rx_buf_sz,
       
  4057 				 PCI_DMA_FROMDEVICE);
       
  4058 
       
  4059 	rtl8169_map_to_asic(desc, mapping, rx_buf_sz);
       
  4060 out:
       
  4061 	return skb;
       
  4062 
       
  4063 err_out:
       
  4064 	rtl8169_make_unusable_by_asic(desc);
       
  4065 	goto out;
       
  4066 }
       
  4067 
       
  4068 static void rtl8169_rx_clear(struct rtl8169_private *tp)
       
  4069 {
       
  4070 	unsigned int i;
       
  4071 
       
  4072 	for (i = 0; i < NUM_RX_DESC; i++) {
       
  4073 		if (tp->Rx_skbuff[i]) {
       
  4074 			rtl8169_free_rx_skb(tp, tp->Rx_skbuff + i,
       
  4075 					    tp->RxDescArray + i);
       
  4076 		}
       
  4077 	}
       
  4078 }
       
  4079 
       
  4080 static u32 rtl8169_rx_fill(struct rtl8169_private *tp, struct net_device *dev,
       
  4081 			   u32 start, u32 end, gfp_t gfp)
       
  4082 {
       
  4083 	u32 cur;
       
  4084 
       
  4085 	for (cur = start; end - cur != 0; cur++) {
       
  4086 		struct sk_buff *skb;
       
  4087 		unsigned int i = cur % NUM_RX_DESC;
       
  4088 
       
  4089 		WARN_ON((s32)(end - cur) < 0);
       
  4090 
       
  4091 		if (tp->Rx_skbuff[i])
       
  4092 			continue;
       
  4093 
       
  4094 		skb = rtl8169_alloc_rx_skb(tp->pci_dev, dev,
       
  4095 					   tp->RxDescArray + i,
       
  4096 					   tp->rx_buf_sz, tp->align, gfp);
       
  4097 		if (!skb)
       
  4098 			break;
       
  4099 
       
  4100 		tp->Rx_skbuff[i] = skb;
       
  4101 	}
       
  4102 	return cur - start;
       
  4103 }
       
  4104 
       
  4105 static inline void rtl8169_mark_as_last_descriptor(struct RxDesc *desc)
       
  4106 {
       
  4107 	desc->opts1 |= cpu_to_le32(RingEnd);
       
  4108 }
       
  4109 
       
  4110 static void rtl8169_init_ring_indexes(struct rtl8169_private *tp)
       
  4111 {
       
  4112 	tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
       
  4113 }
       
  4114 
       
  4115 static int rtl8169_init_ring(struct net_device *dev)
       
  4116 {
       
  4117 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4118 
       
  4119 	rtl8169_init_ring_indexes(tp);
       
  4120 
       
  4121 	memset(tp->tx_skb, 0x0, NUM_TX_DESC * sizeof(struct ring_info));
       
  4122 	memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
       
  4123 
       
  4124 	if (rtl8169_rx_fill(tp, dev, 0, NUM_RX_DESC, GFP_KERNEL) != NUM_RX_DESC)
       
  4125 		goto err_out;
       
  4126 
       
  4127 	rtl8169_mark_as_last_descriptor(tp->RxDescArray + NUM_RX_DESC - 1);
       
  4128 
       
  4129 	return 0;
       
  4130 
       
  4131 err_out:
       
  4132 	rtl8169_rx_clear(tp);
       
  4133 	return -ENOMEM;
       
  4134 }
       
  4135 
       
  4136 static void rtl8169_unmap_tx_skb(struct pci_dev *pdev, struct ring_info *tx_skb,
       
  4137 				 struct TxDesc *desc)
       
  4138 {
       
  4139 	unsigned int len = tx_skb->len;
       
  4140 
       
  4141 	pci_unmap_single(pdev, le64_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
       
  4142 	desc->opts1 = 0x00;
       
  4143 	desc->opts2 = 0x00;
       
  4144 	desc->addr = 0x00;
       
  4145 	tx_skb->len = 0;
       
  4146 }
       
  4147 
       
  4148 static void rtl8169_tx_clear(struct rtl8169_private *tp)
       
  4149 {
       
  4150 	unsigned int i;
       
  4151 
       
  4152 	for (i = tp->dirty_tx; i < tp->dirty_tx + NUM_TX_DESC; i++) {
       
  4153 		unsigned int entry = i % NUM_TX_DESC;
       
  4154 		struct ring_info *tx_skb = tp->tx_skb + entry;
       
  4155 		unsigned int len = tx_skb->len;
       
  4156 
       
  4157 		if (len) {
       
  4158 			struct sk_buff *skb = tx_skb->skb;
       
  4159 
       
  4160 			rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb,
       
  4161 					     tp->TxDescArray + entry);
       
  4162 			if (skb) {
       
  4163 				if (!tp->ecdev)
       
  4164 					dev_kfree_skb(skb);
       
  4165 				tx_skb->skb = NULL;
       
  4166 			}
       
  4167 			tp->dev->stats.tx_dropped++;
       
  4168 		}
       
  4169 	}
       
  4170 	tp->cur_tx = tp->dirty_tx = 0;
       
  4171 }
       
  4172 
       
  4173 static void rtl8169_schedule_work(struct net_device *dev, work_func_t task)
       
  4174 {
       
  4175 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4176 
       
  4177 	PREPARE_DELAYED_WORK(&tp->task, task);
       
  4178 	schedule_delayed_work(&tp->task, 4);
       
  4179 }
       
  4180 
       
  4181 static void rtl8169_wait_for_quiescence(struct net_device *dev)
       
  4182 {
       
  4183 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4184 	void __iomem *ioaddr = tp->mmio_addr;
       
  4185 
       
  4186 	synchronize_irq(dev->irq);
       
  4187 
       
  4188 	/* Wait for any pending NAPI task to complete */
       
  4189 	napi_disable(&tp->napi);
       
  4190 
       
  4191 	rtl8169_irq_mask_and_ack(ioaddr);
       
  4192 
       
  4193 	tp->intr_mask = 0xffff;
       
  4194 	RTL_W16(IntrMask, tp->intr_event);
       
  4195 	napi_enable(&tp->napi);
       
  4196 }
       
  4197 
       
  4198 static void rtl8169_reinit_task(struct work_struct *work)
       
  4199 {
       
  4200 	struct rtl8169_private *tp =
       
  4201 		container_of(work, struct rtl8169_private, task.work);
       
  4202 	struct net_device *dev = tp->dev;
       
  4203 	int ret;
       
  4204 
       
  4205 	rtnl_lock();
       
  4206 
       
  4207 	if (!netif_running(dev))
       
  4208 		goto out_unlock;
       
  4209 
       
  4210 	rtl8169_wait_for_quiescence(dev);
       
  4211 	rtl8169_close(dev);
       
  4212 
       
  4213 	ret = rtl8169_open(dev);
       
  4214 	if (unlikely(ret < 0)) {
       
  4215 		if (net_ratelimit())
       
  4216 			netif_err(tp, drv, dev,
       
  4217 				  "reinit failure (status = %d). Rescheduling\n",
       
  4218 				  ret);
       
  4219 		rtl8169_schedule_work(dev, rtl8169_reinit_task);
       
  4220 	}
       
  4221 
       
  4222 out_unlock:
       
  4223 	rtnl_unlock();
       
  4224 }
       
  4225 
       
  4226 static void rtl8169_reset_task(struct work_struct *work)
       
  4227 {
       
  4228 	struct rtl8169_private *tp =
       
  4229 		container_of(work, struct rtl8169_private, task.work);
       
  4230 	struct net_device *dev = tp->dev;
       
  4231 
       
  4232 	rtnl_lock();
       
  4233 
       
  4234 	if (!netif_running(dev))
       
  4235 		goto out_unlock;
       
  4236 
       
  4237 	rtl8169_wait_for_quiescence(dev);
       
  4238 
       
  4239 	rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, ~(u32)0);
       
  4240 	rtl8169_tx_clear(tp);
       
  4241 
       
  4242 	if (tp->dirty_rx == tp->cur_rx) {
       
  4243 		rtl8169_init_ring_indexes(tp);
       
  4244 		rtl_hw_start(dev);
       
  4245 		netif_wake_queue(dev);
       
  4246 		rtl8169_check_link_status(dev, tp, tp->mmio_addr);
       
  4247 	} else {
       
  4248 		if (net_ratelimit())
       
  4249 			netif_emerg(tp, intr, dev, "Rx buffers shortage\n");
       
  4250 		rtl8169_schedule_work(dev, rtl8169_reset_task);
       
  4251 	}
       
  4252 
       
  4253 out_unlock:
       
  4254 	rtnl_unlock();
       
  4255 }
       
  4256 
       
  4257 static void rtl8169_tx_timeout(struct net_device *dev)
       
  4258 {
       
  4259 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4260 
       
  4261 	if (tp->ecdev)
       
  4262 		return;
       
  4263 
       
  4264 	rtl8169_hw_reset(tp->mmio_addr);
       
  4265 
       
  4266 	/* Let's wait a bit while any (async) irq lands on */
       
  4267 	rtl8169_schedule_work(dev, rtl8169_reset_task);
       
  4268 }
       
  4269 
       
  4270 static int rtl8169_xmit_frags(struct rtl8169_private *tp, struct sk_buff *skb,
       
  4271 			      u32 opts1)
       
  4272 {
       
  4273 	struct skb_shared_info *info = skb_shinfo(skb);
       
  4274 	unsigned int cur_frag, entry;
       
  4275 	struct TxDesc * uninitialized_var(txd);
       
  4276 
       
  4277 	entry = tp->cur_tx;
       
  4278 	for (cur_frag = 0; cur_frag < info->nr_frags; cur_frag++) {
       
  4279 		skb_frag_t *frag = info->frags + cur_frag;
       
  4280 		dma_addr_t mapping;
       
  4281 		u32 status, len;
       
  4282 		void *addr;
       
  4283 
       
  4284 		entry = (entry + 1) % NUM_TX_DESC;
       
  4285 
       
  4286 		txd = tp->TxDescArray + entry;
       
  4287 		len = frag->size;
       
  4288 		addr = ((void *) page_address(frag->page)) + frag->page_offset;
       
  4289 		mapping = pci_map_single(tp->pci_dev, addr, len, PCI_DMA_TODEVICE);
       
  4290 
       
  4291 		/* anti gcc 2.95.3 bugware (sic) */
       
  4292 		status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
       
  4293 
       
  4294 		txd->opts1 = cpu_to_le32(status);
       
  4295 		txd->addr = cpu_to_le64(mapping);
       
  4296 
       
  4297 		tp->tx_skb[entry].len = len;
       
  4298 	}
       
  4299 
       
  4300 	if (cur_frag) {
       
  4301 		tp->tx_skb[entry].skb = skb;
       
  4302 		txd->opts1 |= cpu_to_le32(LastFrag);
       
  4303 	}
       
  4304 
       
  4305 	return cur_frag;
       
  4306 }
       
  4307 
       
  4308 static inline u32 rtl8169_tso_csum(struct sk_buff *skb, struct net_device *dev)
       
  4309 {
       
  4310 	if (dev->features & NETIF_F_TSO) {
       
  4311 		u32 mss = skb_shinfo(skb)->gso_size;
       
  4312 
       
  4313 		if (mss)
       
  4314 			return LargeSend | ((mss & MSSMask) << MSSShift);
       
  4315 	}
       
  4316 	if (skb->ip_summed == CHECKSUM_PARTIAL) {
       
  4317 		const struct iphdr *ip = ip_hdr(skb);
       
  4318 
       
  4319 		if (ip->protocol == IPPROTO_TCP)
       
  4320 			return IPCS | TCPCS;
       
  4321 		else if (ip->protocol == IPPROTO_UDP)
       
  4322 			return IPCS | UDPCS;
       
  4323 		WARN_ON(1);	/* we need a WARN() */
       
  4324 	}
       
  4325 	return 0;
       
  4326 }
       
  4327 
       
  4328 static netdev_tx_t rtl8169_start_xmit(struct sk_buff *skb,
       
  4329 				      struct net_device *dev)
       
  4330 {
       
  4331 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4332 	unsigned int frags, entry = tp->cur_tx % NUM_TX_DESC;
       
  4333 	struct TxDesc *txd = tp->TxDescArray + entry;
       
  4334 	void __iomem *ioaddr = tp->mmio_addr;
       
  4335 	dma_addr_t mapping;
       
  4336 	u32 status, len;
       
  4337 	u32 opts1;
       
  4338 
       
  4339 	if (unlikely(TX_BUFFS_AVAIL(tp) < skb_shinfo(skb)->nr_frags)) {
       
  4340 		netif_err(tp, drv, dev, "BUG! Tx Ring full when queue awake!\n");
       
  4341 		goto err_stop;
       
  4342 	}
       
  4343 
       
  4344 	if (unlikely(le32_to_cpu(txd->opts1) & DescOwn))
       
  4345 		goto err_stop;
       
  4346 
       
  4347 	opts1 = DescOwn | rtl8169_tso_csum(skb, dev);
       
  4348 
       
  4349 	frags = rtl8169_xmit_frags(tp, skb, opts1);
       
  4350 	if (frags) {
       
  4351 		len = skb_headlen(skb);
       
  4352 		opts1 |= FirstFrag;
       
  4353 	} else {
       
  4354 		len = skb->len;
       
  4355 		opts1 |= FirstFrag | LastFrag;
       
  4356 		tp->tx_skb[entry].skb = skb;
       
  4357 	}
       
  4358 
       
  4359 	mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
       
  4360 
       
  4361 	tp->tx_skb[entry].len = len;
       
  4362 	txd->addr = cpu_to_le64(mapping);
       
  4363 	txd->opts2 = cpu_to_le32(rtl8169_tx_vlan_tag(tp, skb));
       
  4364 
       
  4365 	wmb();
       
  4366 
       
  4367 	/* anti gcc 2.95.3 bugware (sic) */
       
  4368 	status = opts1 | len | (RingEnd * !((entry + 1) % NUM_TX_DESC));
       
  4369 	txd->opts1 = cpu_to_le32(status);
       
  4370 
       
  4371 	tp->cur_tx += frags + 1;
       
  4372 
       
  4373 	wmb();
       
  4374 
       
  4375 	RTL_W8(TxPoll, NPQ);	/* set polling bit */
       
  4376 
       
  4377 	if (!tp->ecdev && TX_BUFFS_AVAIL(tp) < MAX_SKB_FRAGS) {
       
  4378 		netif_stop_queue(dev);
       
  4379 		smp_rmb();
       
  4380 		if (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)
       
  4381 			netif_wake_queue(dev);
       
  4382 	}
       
  4383 
       
  4384 	return NETDEV_TX_OK;
       
  4385 
       
  4386 err_stop:
       
  4387 	if (!tp->ecdev)
       
  4388 		netif_stop_queue(dev);
       
  4389 	dev->stats.tx_dropped++;
       
  4390 	return NETDEV_TX_BUSY;
       
  4391 }
       
  4392 
       
  4393 static void rtl8169_pcierr_interrupt(struct net_device *dev)
       
  4394 {
       
  4395 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4396 	struct pci_dev *pdev = tp->pci_dev;
       
  4397 	void __iomem *ioaddr = tp->mmio_addr;
       
  4398 	u16 pci_status, pci_cmd;
       
  4399 
       
  4400 	pci_read_config_word(pdev, PCI_COMMAND, &pci_cmd);
       
  4401 	pci_read_config_word(pdev, PCI_STATUS, &pci_status);
       
  4402 
       
  4403 	netif_err(tp, intr, dev, "PCI error (cmd = 0x%04x, status = 0x%04x)\n",
       
  4404 		  pci_cmd, pci_status);
       
  4405 
       
  4406 	/*
       
  4407 	 * The recovery sequence below admits a very elaborated explanation:
       
  4408 	 * - it seems to work;
       
  4409 	 * - I did not see what else could be done;
       
  4410 	 * - it makes iop3xx happy.
       
  4411 	 *
       
  4412 	 * Feel free to adjust to your needs.
       
  4413 	 */
       
  4414 	if (pdev->broken_parity_status)
       
  4415 		pci_cmd &= ~PCI_COMMAND_PARITY;
       
  4416 	else
       
  4417 		pci_cmd |= PCI_COMMAND_SERR | PCI_COMMAND_PARITY;
       
  4418 
       
  4419 	pci_write_config_word(pdev, PCI_COMMAND, pci_cmd);
       
  4420 
       
  4421 	pci_write_config_word(pdev, PCI_STATUS,
       
  4422 		pci_status & (PCI_STATUS_DETECTED_PARITY |
       
  4423 		PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_REC_MASTER_ABORT |
       
  4424 		PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_SIG_TARGET_ABORT));
       
  4425 
       
  4426 	/* The infamous DAC f*ckup only happens at boot time */
       
  4427 	if ((tp->cp_cmd & PCIDAC) && !tp->dirty_rx && !tp->cur_rx) {
       
  4428 		netif_info(tp, intr, dev, "disabling PCI DAC\n");
       
  4429 		tp->cp_cmd &= ~PCIDAC;
       
  4430 		RTL_W16(CPlusCmd, tp->cp_cmd);
       
  4431 		dev->features &= ~NETIF_F_HIGHDMA;
       
  4432 	}
       
  4433 
       
  4434 	rtl8169_hw_reset(ioaddr);
       
  4435 
       
  4436 	rtl8169_schedule_work(dev, rtl8169_reinit_task);
       
  4437 }
       
  4438 
       
  4439 static void rtl8169_tx_interrupt(struct net_device *dev,
       
  4440 				 struct rtl8169_private *tp,
       
  4441 				 void __iomem *ioaddr)
       
  4442 {
       
  4443 	unsigned int dirty_tx, tx_left;
       
  4444 
       
  4445 	dirty_tx = tp->dirty_tx;
       
  4446 	smp_rmb();
       
  4447 	tx_left = tp->cur_tx - dirty_tx;
       
  4448 
       
  4449 	while (tx_left > 0) {
       
  4450 		unsigned int entry = dirty_tx % NUM_TX_DESC;
       
  4451 		struct ring_info *tx_skb = tp->tx_skb + entry;
       
  4452 		u32 len = tx_skb->len;
       
  4453 		u32 status;
       
  4454 
       
  4455 		rmb();
       
  4456 		status = le32_to_cpu(tp->TxDescArray[entry].opts1);
       
  4457 		if (status & DescOwn)
       
  4458 			break;
       
  4459 
       
  4460 		dev->stats.tx_bytes += len;
       
  4461 		dev->stats.tx_packets++;
       
  4462 
       
  4463 		rtl8169_unmap_tx_skb(tp->pci_dev, tx_skb, tp->TxDescArray + entry);
       
  4464 
       
  4465 		if (status & LastFrag) {
       
  4466 			if (!tp->ecdev)
       
  4467 				dev_kfree_skb(tx_skb->skb);
       
  4468 			tx_skb->skb = NULL;
       
  4469 		}
       
  4470 		dirty_tx++;
       
  4471 		tx_left--;
       
  4472 	}
       
  4473 
       
  4474 	if (tp->dirty_tx != dirty_tx) {
       
  4475 		tp->dirty_tx = dirty_tx;
       
  4476 		smp_wmb();
       
  4477 		if (!tp->ecdev && netif_queue_stopped(dev) &&
       
  4478 		    (TX_BUFFS_AVAIL(tp) >= MAX_SKB_FRAGS)) {
       
  4479 			netif_wake_queue(dev);
       
  4480 		}
       
  4481 		/*
       
  4482 		 * 8168 hack: TxPoll requests are lost when the Tx packets are
       
  4483 		 * too close. Let's kick an extra TxPoll request when a burst
       
  4484 		 * of start_xmit activity is detected (if it is not detected,
       
  4485 		 * it is slow enough). -- FR
       
  4486 		 */
       
  4487 		smp_rmb();
       
  4488 		if (tp->cur_tx != dirty_tx)
       
  4489 			RTL_W8(TxPoll, NPQ);
       
  4490 	}
       
  4491 }
       
  4492 
       
  4493 static inline int rtl8169_fragmented_frame(u32 status)
       
  4494 {
       
  4495 	return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
       
  4496 }
       
  4497 
       
  4498 static inline void rtl8169_rx_csum(struct sk_buff *skb, struct RxDesc *desc)
       
  4499 {
       
  4500 	u32 opts1 = le32_to_cpu(desc->opts1);
       
  4501 	u32 status = opts1 & RxProtoMask;
       
  4502 
       
  4503 	if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
       
  4504 	    ((status == RxProtoUDP) && !(opts1 & UDPFail)) ||
       
  4505 	    ((status == RxProtoIP) && !(opts1 & IPFail)))
       
  4506 		skb->ip_summed = CHECKSUM_UNNECESSARY;
       
  4507 	else
       
  4508 		skb->ip_summed = CHECKSUM_NONE;
       
  4509 }
       
  4510 
       
  4511 static inline bool rtl8169_try_rx_copy(struct sk_buff **sk_buff,
       
  4512 				       struct rtl8169_private *tp, int pkt_size,
       
  4513 				       dma_addr_t addr)
       
  4514 {
       
  4515 	struct sk_buff *skb;
       
  4516 	bool done = false;
       
  4517 
       
  4518 	if (pkt_size >= rx_copybreak)
       
  4519 		goto out;
       
  4520 
       
  4521 	skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
       
  4522 	if (!skb)
       
  4523 		goto out;
       
  4524 
       
  4525 	pci_dma_sync_single_for_cpu(tp->pci_dev, addr, pkt_size,
       
  4526 				    PCI_DMA_FROMDEVICE);
       
  4527 	skb_copy_from_linear_data(*sk_buff, skb->data, pkt_size);
       
  4528 	*sk_buff = skb;
       
  4529 	done = true;
       
  4530 out:
       
  4531 	return done;
       
  4532 }
       
  4533 
       
  4534 /*
       
  4535  * Warning : rtl8169_rx_interrupt() might be called :
       
  4536  * 1) from NAPI (softirq) context
       
  4537  *	(polling = 1 : we should call netif_receive_skb())
       
  4538  * 2) from process context (rtl8169_reset_task())
       
  4539  *	(polling = 0 : we must call netif_rx() instead)
       
  4540  */
       
  4541 static int rtl8169_rx_interrupt(struct net_device *dev,
       
  4542 				struct rtl8169_private *tp,
       
  4543 				void __iomem *ioaddr, u32 budget)
       
  4544 {
       
  4545 	unsigned int cur_rx, rx_left;
       
  4546 	unsigned int delta, count;
       
  4547 	int polling = (budget != ~(u32)0) ? 1 : 0;
       
  4548 
       
  4549 	cur_rx = tp->cur_rx;
       
  4550 	rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
       
  4551 	rx_left = min(rx_left, budget);
       
  4552 
       
  4553 	for (; rx_left > 0; rx_left--, cur_rx++) {
       
  4554 		unsigned int entry = cur_rx % NUM_RX_DESC;
       
  4555 		struct RxDesc *desc = tp->RxDescArray + entry;
       
  4556 		u32 status;
       
  4557 
       
  4558 		rmb();
       
  4559 		status = le32_to_cpu(desc->opts1);
       
  4560 
       
  4561 		if (status & DescOwn)
       
  4562 			break;
       
  4563 		if (unlikely(status & RxRES)) {
       
  4564 			netif_info(tp, rx_err, dev, "Rx ERROR. status = %08x\n",
       
  4565 				   status);
       
  4566 			dev->stats.rx_errors++;
       
  4567 			if (status & (RxRWT | RxRUNT))
       
  4568 				dev->stats.rx_length_errors++;
       
  4569 			if (status & RxCRC)
       
  4570 				dev->stats.rx_crc_errors++;
       
  4571 			if (status & RxFOVF) {
       
  4572 				if (!tp->ecdev)
       
  4573 					rtl8169_schedule_work(dev, rtl8169_reset_task);
       
  4574 				dev->stats.rx_fifo_errors++;
       
  4575 			}
       
  4576 			rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
       
  4577 		} else {
       
  4578 			struct sk_buff *skb = tp->Rx_skbuff[entry];
       
  4579 			dma_addr_t addr = le64_to_cpu(desc->addr);
       
  4580 			int pkt_size = (status & 0x00001FFF) - 4;
       
  4581 			struct pci_dev *pdev = tp->pci_dev;
       
  4582 
       
  4583 			/*
       
  4584 			 * The driver does not support incoming fragmented
       
  4585 			 * frames. They are seen as a symptom of over-mtu
       
  4586 			 * sized frames.
       
  4587 			 */
       
  4588 			if (unlikely(rtl8169_fragmented_frame(status))) {
       
  4589 				dev->stats.rx_dropped++;
       
  4590 				dev->stats.rx_length_errors++;
       
  4591 				rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
       
  4592 				continue;
       
  4593 			}
       
  4594 
       
  4595 			rtl8169_rx_csum(skb, desc);
       
  4596 
       
  4597 			if (tp->ecdev) {
       
  4598 				/* reusing parts of rtl8169_try_rx_copy() */
       
  4599 				pci_dma_sync_single_for_cpu(pdev, addr, pkt_size,
       
  4600 						PCI_DMA_FROMDEVICE);
       
  4601 
       
  4602 				ecdev_receive(tp->ecdev, skb->data, pkt_size);
       
  4603 
       
  4604 				pci_dma_sync_single_for_device(pdev, addr,
       
  4605 					pkt_size, PCI_DMA_FROMDEVICE);
       
  4606 				rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
       
  4607 
       
  4608 				// No need to detect link status as
       
  4609 				// long as frames are received: Reset watchdog.
       
  4610 				tp->ec_watchdog_jiffies = jiffies;
       
  4611 			} else {
       
  4612 				if (rtl8169_try_rx_copy(&skb, tp, pkt_size, addr)) {
       
  4613 					pci_dma_sync_single_for_device(pdev, addr,
       
  4614 						pkt_size, PCI_DMA_FROMDEVICE);
       
  4615 					rtl8169_mark_to_asic(desc, tp->rx_buf_sz);
       
  4616 				} else {
       
  4617 					pci_unmap_single(pdev, addr, tp->rx_buf_sz,
       
  4618 							 PCI_DMA_FROMDEVICE);
       
  4619 					tp->Rx_skbuff[entry] = NULL;
       
  4620 				}
       
  4621 
       
  4622 				skb_put(skb, pkt_size);
       
  4623 				skb->protocol = eth_type_trans(skb, dev);
       
  4624 
       
  4625 				if (rtl8169_rx_vlan_skb(tp, desc, skb, polling) < 0) {
       
  4626 					if (likely(polling))
       
  4627 						netif_receive_skb(skb);
       
  4628 					else
       
  4629 						netif_rx(skb);
       
  4630 				}
       
  4631 			}
       
  4632 
       
  4633 			dev->stats.rx_bytes += pkt_size;
       
  4634 			dev->stats.rx_packets++;
       
  4635 		}
       
  4636 
       
  4637 		/* Work around for AMD plateform. */
       
  4638 		if ((desc->opts2 & cpu_to_le32(0xfffe000)) &&
       
  4639 		    (tp->mac_version == RTL_GIGA_MAC_VER_05)) {
       
  4640 			desc->opts2 = 0;
       
  4641 			cur_rx++;
       
  4642 		}
       
  4643 	}
       
  4644 
       
  4645 	count = cur_rx - tp->cur_rx;
       
  4646 	tp->cur_rx = cur_rx;
       
  4647 
       
  4648 	delta = rtl8169_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx, GFP_ATOMIC);
       
  4649 	if (!delta && count)
       
  4650 		netif_info(tp, intr, dev, "no Rx buffer allocated\n");
       
  4651 	tp->dirty_rx += delta;
       
  4652 
       
  4653 	/*
       
  4654 	 * FIXME: until there is periodic timer to try and refill the ring,
       
  4655 	 * a temporary shortage may definitely kill the Rx process.
       
  4656 	 * - disable the asic to try and avoid an overflow and kick it again
       
  4657 	 *   after refill ?
       
  4658 	 * - how do others driver handle this condition (Uh oh...).
       
  4659 	 */
       
  4660 	if (tp->dirty_rx + NUM_RX_DESC == tp->cur_rx)
       
  4661 		netif_emerg(tp, intr, dev, "Rx buffers exhausted\n");
       
  4662 
       
  4663 	return count;
       
  4664 }
       
  4665 
       
  4666 static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
       
  4667 {
       
  4668 	struct net_device *dev = dev_instance;
       
  4669 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4670 	void __iomem *ioaddr = tp->mmio_addr;
       
  4671 	int handled = 0;
       
  4672 	int status;
       
  4673 
       
  4674 	/* loop handling interrupts until we have no new ones or
       
  4675 	 * we hit a invalid/hotplug case.
       
  4676 	 */
       
  4677 	status = RTL_R16(IntrStatus);
       
  4678 	while (status && status != 0xffff) {
       
  4679 		handled = 1;
       
  4680 
       
  4681 		/* Handle all of the error cases first. These will reset
       
  4682 		 * the chip, so just exit the loop.
       
  4683 		 */
       
  4684 		if (unlikely(!tp->ecdev && !netif_running(dev))) {
       
  4685 			rtl8169_asic_down(ioaddr);
       
  4686 			break;
       
  4687 		}
       
  4688 
       
  4689 		/* Work around for rx fifo overflow */
       
  4690 		if (unlikely(status & RxFIFOOver) &&
       
  4691 		(tp->mac_version == RTL_GIGA_MAC_VER_11)) {
       
  4692 			netif_stop_queue(dev);
       
  4693 			rtl8169_tx_timeout(dev);
       
  4694 			break;
       
  4695 		}
       
  4696 
       
  4697 		if (unlikely(status & SYSErr)) {
       
  4698 			rtl8169_pcierr_interrupt(dev);
       
  4699 			break;
       
  4700 		}
       
  4701 
       
  4702 		if (status & LinkChg)
       
  4703 			rtl8169_check_link_status(dev, tp, ioaddr);
       
  4704 
       
  4705 		/* We need to see the lastest version of tp->intr_mask to
       
  4706 		 * avoid ignoring an MSI interrupt and having to wait for
       
  4707 		 * another event which may never come.
       
  4708 		 */
       
  4709 		smp_rmb();
       
  4710 		if (status & tp->intr_mask & tp->napi_event) {
       
  4711 			RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
       
  4712 			tp->intr_mask = ~tp->napi_event;
       
  4713 
       
  4714 			if (likely(napi_schedule_prep(&tp->napi)))
       
  4715 				__napi_schedule(&tp->napi);
       
  4716 			else
       
  4717 				netif_info(tp, intr, dev,
       
  4718 					   "interrupt %04x in poll\n", status);
       
  4719 		}
       
  4720 
       
  4721 		/* We only get a new MSI interrupt when all active irq
       
  4722 		 * sources on the chip have been acknowledged. So, ack
       
  4723 		 * everything we've seen and check if new sources have become
       
  4724 		 * active to avoid blocking all interrupts from the chip.
       
  4725 		 */
       
  4726 		RTL_W16(IntrStatus,
       
  4727 			(status & RxFIFOOver) ? (status | RxOverflow) : status);
       
  4728 		status = RTL_R16(IntrStatus);
       
  4729 	}
       
  4730 
       
  4731 	return IRQ_RETVAL(handled);
       
  4732 }
       
  4733 
       
  4734 static void ec_poll(struct net_device *dev)
       
  4735 {
       
  4736 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4737 	struct pci_dev *pdev = tp->pci_dev;
       
  4738 
       
  4739 	rtl8169_interrupt(pdev->irq, dev);
       
  4740 	rtl8169_rx_interrupt(dev, tp, tp->mmio_addr, 100); // FIXME
       
  4741 	rtl8169_tx_interrupt(dev, tp, tp->mmio_addr);
       
  4742 
       
  4743 	if (jiffies - tp->ec_watchdog_jiffies >= 2 * HZ) {
       
  4744 		rtl8169_phy_timer((unsigned long) dev);
       
  4745 		tp->ec_watchdog_jiffies = jiffies;
       
  4746 	}
       
  4747 }
       
  4748 
       
  4749 static int rtl8169_poll(struct napi_struct *napi, int budget)
       
  4750 {
       
  4751 	struct rtl8169_private *tp = container_of(napi, struct rtl8169_private, napi);
       
  4752 	struct net_device *dev = tp->dev;
       
  4753 	void __iomem *ioaddr = tp->mmio_addr;
       
  4754 	int work_done;
       
  4755 
       
  4756 	work_done = rtl8169_rx_interrupt(dev, tp, ioaddr, (u32) budget);
       
  4757 	rtl8169_tx_interrupt(dev, tp, ioaddr);
       
  4758 
       
  4759 	if (work_done < budget) {
       
  4760 		napi_complete(napi);
       
  4761 
       
  4762 		/* We need for force the visibility of tp->intr_mask
       
  4763 		 * for other CPUs, as we can loose an MSI interrupt
       
  4764 		 * and potentially wait for a retransmit timeout if we don't.
       
  4765 		 * The posted write to IntrMask is safe, as it will
       
  4766 		 * eventually make it to the chip and we won't loose anything
       
  4767 		 * until it does.
       
  4768 		 */
       
  4769 		tp->intr_mask = 0xffff;
       
  4770 		wmb();
       
  4771 		RTL_W16(IntrMask, tp->intr_event);
       
  4772 	}
       
  4773 
       
  4774 	return work_done;
       
  4775 }
       
  4776 
       
  4777 static void rtl8169_rx_missed(struct net_device *dev, void __iomem *ioaddr)
       
  4778 {
       
  4779 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4780 
       
  4781 	if (tp->mac_version > RTL_GIGA_MAC_VER_06)
       
  4782 		return;
       
  4783 
       
  4784 	dev->stats.rx_missed_errors += (RTL_R32(RxMissed) & 0xffffff);
       
  4785 	RTL_W32(RxMissed, 0);
       
  4786 }
       
  4787 
       
  4788 static void rtl8169_down(struct net_device *dev)
       
  4789 {
       
  4790 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4791 	void __iomem *ioaddr = tp->mmio_addr;
       
  4792 	unsigned int intrmask;
       
  4793 
       
  4794 	if (!tp->ecdev) {
       
  4795 		rtl8169_delete_timer(dev);
       
  4796 
       
  4797 		netif_stop_queue(dev);
       
  4798 
       
  4799 		napi_disable(&tp->napi);
       
  4800 	}
       
  4801 
       
  4802 core_down:
       
  4803 	if (!tp->ecdev) {
       
  4804 		spin_lock_irq(&tp->lock);
       
  4805 	}
       
  4806 
       
  4807 	rtl8169_asic_down(ioaddr);
       
  4808 
       
  4809 	rtl8169_rx_missed(dev, ioaddr);
       
  4810 
       
  4811 	if (!tp->ecdev) {
       
  4812 		spin_unlock_irq(&tp->lock);
       
  4813 
       
  4814 		synchronize_irq(dev->irq);
       
  4815 	}
       
  4816 
       
  4817 	/* Give a racing hard_start_xmit a few cycles to complete. */
       
  4818 	synchronize_sched();  /* FIXME: should this be synchronize_irq()? */
       
  4819 
       
  4820 	/*
       
  4821 	 * And now for the 50k$ question: are IRQ disabled or not ?
       
  4822 	 *
       
  4823 	 * Two paths lead here:
       
  4824 	 * 1) dev->close
       
  4825 	 *    -> netif_running() is available to sync the current code and the
       
  4826 	 *       IRQ handler. See rtl8169_interrupt for details.
       
  4827 	 * 2) dev->change_mtu
       
  4828 	 *    -> rtl8169_poll can not be issued again and re-enable the
       
  4829 	 *       interruptions. Let's simply issue the IRQ down sequence again.
       
  4830 	 *
       
  4831 	 * No loop if hotpluged or major error (0xffff).
       
  4832 	 */
       
  4833 	intrmask = RTL_R16(IntrMask);
       
  4834 	if (intrmask && (intrmask != 0xffff))
       
  4835 		goto core_down;
       
  4836 
       
  4837 	rtl8169_tx_clear(tp);
       
  4838 
       
  4839 	rtl8169_rx_clear(tp);
       
  4840 }
       
  4841 
       
  4842 static int rtl8169_close(struct net_device *dev)
       
  4843 {
       
  4844 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4845 	struct pci_dev *pdev = tp->pci_dev;
       
  4846 
       
  4847 	pm_runtime_get_sync(&pdev->dev);
       
  4848 
       
  4849 	/* update counters before going down */
       
  4850 	rtl8169_update_counters(dev);
       
  4851 
       
  4852 	rtl8169_down(dev);
       
  4853 
       
  4854 	if (!tp->ecdev)
       
  4855 		free_irq(dev->irq, dev);
       
  4856 
       
  4857 	pci_free_consistent(pdev, R8169_RX_RING_BYTES, tp->RxDescArray,
       
  4858 			    tp->RxPhyAddr);
       
  4859 	pci_free_consistent(pdev, R8169_TX_RING_BYTES, tp->TxDescArray,
       
  4860 			    tp->TxPhyAddr);
       
  4861 	tp->TxDescArray = NULL;
       
  4862 	tp->RxDescArray = NULL;
       
  4863 
       
  4864 	pm_runtime_put_sync(&pdev->dev);
       
  4865 
       
  4866 	return 0;
       
  4867 }
       
  4868 
       
  4869 static void rtl_set_rx_mode(struct net_device *dev)
       
  4870 {
       
  4871 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4872 	void __iomem *ioaddr = tp->mmio_addr;
       
  4873 	unsigned long flags;
       
  4874 	u32 mc_filter[2];	/* Multicast hash filter */
       
  4875 	int rx_mode;
       
  4876 	u32 tmp = 0;
       
  4877 
       
  4878 	if (dev->flags & IFF_PROMISC) {
       
  4879 		/* Unconditionally log net taps. */
       
  4880 		netif_notice(tp, link, dev, "Promiscuous mode enabled\n");
       
  4881 		rx_mode =
       
  4882 		    AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
       
  4883 		    AcceptAllPhys;
       
  4884 		mc_filter[1] = mc_filter[0] = 0xffffffff;
       
  4885 	} else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
       
  4886 		   (dev->flags & IFF_ALLMULTI)) {
       
  4887 		/* Too many to filter perfectly -- accept all multicasts. */
       
  4888 		rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
       
  4889 		mc_filter[1] = mc_filter[0] = 0xffffffff;
       
  4890 	} else {
       
  4891 		struct netdev_hw_addr *ha;
       
  4892 
       
  4893 		rx_mode = AcceptBroadcast | AcceptMyPhys;
       
  4894 		mc_filter[1] = mc_filter[0] = 0;
       
  4895 		netdev_for_each_mc_addr(ha, dev) {
       
  4896 			int bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
       
  4897 			mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
       
  4898 			rx_mode |= AcceptMulticast;
       
  4899 		}
       
  4900 	}
       
  4901 
       
  4902 	spin_lock_irqsave(&tp->lock, flags);
       
  4903 
       
  4904 	tmp = rtl8169_rx_config | rx_mode |
       
  4905 	      (RTL_R32(RxConfig) & rtl_chip_info[tp->chipset].RxConfigMask);
       
  4906 
       
  4907 	if (tp->mac_version > RTL_GIGA_MAC_VER_06) {
       
  4908 		u32 data = mc_filter[0];
       
  4909 
       
  4910 		mc_filter[0] = swab32(mc_filter[1]);
       
  4911 		mc_filter[1] = swab32(data);
       
  4912 	}
       
  4913 
       
  4914 	RTL_W32(MAR0 + 4, mc_filter[1]);
       
  4915 	RTL_W32(MAR0 + 0, mc_filter[0]);
       
  4916 
       
  4917 	RTL_W32(RxConfig, tmp);
       
  4918 
       
  4919 	spin_unlock_irqrestore(&tp->lock, flags);
       
  4920 }
       
  4921 
       
  4922 /**
       
  4923  *  rtl8169_get_stats - Get rtl8169 read/write statistics
       
  4924  *  @dev: The Ethernet Device to get statistics for
       
  4925  *
       
  4926  *  Get TX/RX statistics for rtl8169
       
  4927  */
       
  4928 static struct net_device_stats *rtl8169_get_stats(struct net_device *dev)
       
  4929 {
       
  4930 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4931 	void __iomem *ioaddr = tp->mmio_addr;
       
  4932 	unsigned long flags;
       
  4933 
       
  4934 	if (netif_running(dev)) {
       
  4935 		spin_lock_irqsave(&tp->lock, flags);
       
  4936 		rtl8169_rx_missed(dev, ioaddr);
       
  4937 		spin_unlock_irqrestore(&tp->lock, flags);
       
  4938 	}
       
  4939 
       
  4940 	return &dev->stats;
       
  4941 }
       
  4942 
       
  4943 static void rtl8169_net_suspend(struct net_device *dev)
       
  4944 {
       
  4945 	if (!netif_running(dev))
       
  4946 		return;
       
  4947 
       
  4948 	netif_device_detach(dev);
       
  4949 	netif_stop_queue(dev);
       
  4950 }
       
  4951 
       
  4952 #ifdef CONFIG_PM
       
  4953 
       
  4954 static int rtl8169_suspend(struct device *device)
       
  4955 {
       
  4956 	struct pci_dev *pdev = to_pci_dev(device);
       
  4957 	struct net_device *dev = pci_get_drvdata(pdev);
       
  4958 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4959 
       
  4960 	if (tp->ecdev)
       
  4961 		return -EBUSY;
       
  4962 
       
  4963 	rtl8169_net_suspend(dev);
       
  4964 
       
  4965 	return 0;
       
  4966 }
       
  4967 
       
  4968 static void __rtl8169_resume(struct net_device *dev)
       
  4969 {
       
  4970 	netif_device_attach(dev);
       
  4971 	rtl8169_schedule_work(dev, rtl8169_reset_task);
       
  4972 }
       
  4973 
       
  4974 static int rtl8169_resume(struct device *device)
       
  4975 {
       
  4976 	struct pci_dev *pdev = to_pci_dev(device);
       
  4977 	struct net_device *dev = pci_get_drvdata(pdev);
       
  4978 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4979 
       
  4980 	if (tp->ecdev)
       
  4981 		return -EBUSY;
       
  4982 
       
  4983 	if (netif_running(dev))
       
  4984 		__rtl8169_resume(dev);
       
  4985 
       
  4986 	return 0;
       
  4987 }
       
  4988 
       
  4989 static int rtl8169_runtime_suspend(struct device *device)
       
  4990 {
       
  4991 	struct pci_dev *pdev = to_pci_dev(device);
       
  4992 	struct net_device *dev = pci_get_drvdata(pdev);
       
  4993 	struct rtl8169_private *tp = netdev_priv(dev);
       
  4994 
       
  4995 	if (!tp->TxDescArray)
       
  4996 		return 0;
       
  4997 
       
  4998 	spin_lock_irq(&tp->lock);
       
  4999 	tp->saved_wolopts = __rtl8169_get_wol(tp);
       
  5000 	__rtl8169_set_wol(tp, WAKE_ANY);
       
  5001 	spin_unlock_irq(&tp->lock);
       
  5002 
       
  5003 	rtl8169_net_suspend(dev);
       
  5004 
       
  5005 	return 0;
       
  5006 }
       
  5007 
       
  5008 static int rtl8169_runtime_resume(struct device *device)
       
  5009 {
       
  5010 	struct pci_dev *pdev = to_pci_dev(device);
       
  5011 	struct net_device *dev = pci_get_drvdata(pdev);
       
  5012 	struct rtl8169_private *tp = netdev_priv(dev);
       
  5013 
       
  5014 	if (!tp->TxDescArray)
       
  5015 		return 0;
       
  5016 
       
  5017 	spin_lock_irq(&tp->lock);
       
  5018 	__rtl8169_set_wol(tp, tp->saved_wolopts);
       
  5019 	tp->saved_wolopts = 0;
       
  5020 	spin_unlock_irq(&tp->lock);
       
  5021 
       
  5022 	__rtl8169_resume(dev);
       
  5023 
       
  5024 	return 0;
       
  5025 }
       
  5026 
       
  5027 static int rtl8169_runtime_idle(struct device *device)
       
  5028 {
       
  5029 	struct pci_dev *pdev = to_pci_dev(device);
       
  5030 	struct net_device *dev = pci_get_drvdata(pdev);
       
  5031 	struct rtl8169_private *tp = netdev_priv(dev);
       
  5032 
       
  5033 	if (!tp->TxDescArray)
       
  5034 		return 0;
       
  5035 
       
  5036 	rtl8169_check_link_status(dev, tp, tp->mmio_addr);
       
  5037 	return -EBUSY;
       
  5038 }
       
  5039 
       
  5040 static const struct dev_pm_ops rtl8169_pm_ops = {
       
  5041 	.suspend = rtl8169_suspend,
       
  5042 	.resume = rtl8169_resume,
       
  5043 	.freeze = rtl8169_suspend,
       
  5044 	.thaw = rtl8169_resume,
       
  5045 	.poweroff = rtl8169_suspend,
       
  5046 	.restore = rtl8169_resume,
       
  5047 	.runtime_suspend = rtl8169_runtime_suspend,
       
  5048 	.runtime_resume = rtl8169_runtime_resume,
       
  5049 	.runtime_idle = rtl8169_runtime_idle,
       
  5050 };
       
  5051 
       
  5052 #define RTL8169_PM_OPS	(&rtl8169_pm_ops)
       
  5053 
       
  5054 #else /* !CONFIG_PM */
       
  5055 
       
  5056 #define RTL8169_PM_OPS	NULL
       
  5057 
       
  5058 #endif /* !CONFIG_PM */
       
  5059 
       
  5060 static void rtl_shutdown(struct pci_dev *pdev)
       
  5061 {
       
  5062 	struct net_device *dev = pci_get_drvdata(pdev);
       
  5063 	struct rtl8169_private *tp = netdev_priv(dev);
       
  5064 	void __iomem *ioaddr = tp->mmio_addr;
       
  5065 
       
  5066 	rtl8169_net_suspend(dev);
       
  5067 
       
  5068 	/* restore original MAC address */
       
  5069 	rtl_rar_set(tp, dev->perm_addr);
       
  5070 
       
  5071 	spin_lock_irq(&tp->lock);
       
  5072 
       
  5073 	rtl8169_asic_down(ioaddr);
       
  5074 
       
  5075 	spin_unlock_irq(&tp->lock);
       
  5076 
       
  5077 	if (system_state == SYSTEM_POWER_OFF) {
       
  5078 		/* WoL fails with some 8168 when the receiver is disabled. */
       
  5079 		if (tp->features & RTL_FEATURE_WOL) {
       
  5080 			pci_clear_master(pdev);
       
  5081 
       
  5082 			RTL_W8(ChipCmd, CmdRxEnb);
       
  5083 			/* PCI commit */
       
  5084 			RTL_R8(ChipCmd);
       
  5085 		}
       
  5086 
       
  5087 		pci_wake_from_d3(pdev, true);
       
  5088 		pci_set_power_state(pdev, PCI_D3hot);
       
  5089 	}
       
  5090 }
       
  5091 
       
  5092 static struct pci_driver rtl8169_pci_driver = {
       
  5093 	.name		= MODULENAME,
       
  5094 	.id_table	= rtl8169_pci_tbl,
       
  5095 	.probe		= rtl8169_init_one,
       
  5096 	.remove		= __devexit_p(rtl8169_remove_one),
       
  5097 	.shutdown	= rtl_shutdown,
       
  5098 	.driver.pm	= RTL8169_PM_OPS,
       
  5099 };
       
  5100 
       
  5101 static int __init rtl8169_init_module(void)
       
  5102 {
       
  5103 	return pci_register_driver(&rtl8169_pci_driver);
       
  5104 }
       
  5105 
       
  5106 static void __exit rtl8169_cleanup_module(void)
       
  5107 {
       
  5108 	pci_unregister_driver(&rtl8169_pci_driver);
       
  5109 }
       
  5110 
       
  5111 module_init(rtl8169_init_module);
       
  5112 module_exit(rtl8169_cleanup_module);