fp@532: /*
fp@532: 
fp@532: 	8139too.c: A RealTek RTL-8139 Fast Ethernet driver for Linux.
fp@532: 
fp@532: 	Maintained by Jeff Garzik <jgarzik@pobox.com>
fp@532: 	Copyright 2000-2002 Jeff Garzik
fp@532: 
fp@532: 	Much code comes from Donald Becker's rtl8139.c driver,
fp@532: 	versions 1.13 and older.  This driver was originally based
fp@532: 	on rtl8139.c version 1.07.  Header of rtl8139.c version 1.13:
fp@532: 
fp@532: 	-----<snip>-----
fp@532: 
fp@532:         	Written 1997-2001 by Donald Becker.
fp@532: 		This software may be used and distributed according to the
fp@532: 		terms of the GNU General Public License (GPL), incorporated
fp@532: 		herein by reference.  Drivers based on or derived from this
fp@532: 		code fall under the GPL and must retain the authorship,
fp@532: 		copyright and license notice.  This file is not a complete
fp@532: 		program and may only be used when the entire operating
fp@532: 		system is licensed under the GPL.
fp@532: 
fp@532: 		This driver is for boards based on the RTL8129 and RTL8139
fp@532: 		PCI ethernet chips.
fp@532: 
fp@532: 		The author may be reached as becker@scyld.com, or C/O Scyld
fp@532: 		Computing Corporation 410 Severn Ave., Suite 210 Annapolis
fp@532: 		MD 21403
fp@532: 
fp@532: 		Support and updates available at
fp@532: 		http://www.scyld.com/network/rtl8139.html
fp@532: 
fp@532: 		Twister-tuning table provided by Kinston
fp@532: 		<shangh@realtek.com.tw>.
fp@532: 
fp@532: 	-----<snip>-----
fp@532: 
fp@532: 	This software may be used and distributed according to the terms
fp@532: 	of the GNU General Public License, incorporated herein by reference.
fp@532: 
fp@532: 	Contributors:
fp@532: 
fp@532: 		Donald Becker - he wrote the original driver, kudos to him!
fp@532: 		(but please don't e-mail him for support, this isn't his driver)
fp@532: 
fp@532: 		Tigran Aivazian - bug fixes, skbuff free cleanup
fp@532: 
fp@532: 		Martin Mares - suggestions for PCI cleanup
fp@532: 
fp@532: 		David S. Miller - PCI DMA and softnet updates
fp@532: 
fp@532: 		Ernst Gill - fixes ported from BSD driver
fp@532: 
fp@532: 		Daniel Kobras - identified specific locations of
fp@532: 			posted MMIO write bugginess
fp@532: 
fp@532: 		Gerard Sharp - bug fix, testing and feedback
fp@532: 
fp@532: 		David Ford - Rx ring wrap fix
fp@532: 
fp@532: 		Dan DeMaggio - swapped RTL8139 cards with me, and allowed me
fp@532: 		to find and fix a crucial bug on older chipsets.
fp@532: 
fp@532: 		Donald Becker/Chris Butterworth/Marcus Westergren -
fp@532: 		Noticed various Rx packet size-related buglets.
fp@532: 
fp@532: 		Santiago Garcia Mantinan - testing and feedback
fp@532: 
fp@532: 		Jens David - 2.2.x kernel backports
fp@532: 
fp@532: 		Martin Dennett - incredibly helpful insight on undocumented
fp@532: 		features of the 8139 chips
fp@532: 
fp@532: 		Jean-Jacques Michel - bug fix
fp@532: 
fp@532: 		Tobias Ringström - Rx interrupt status checking suggestion
fp@532: 
fp@532: 		Andrew Morton - Clear blocked signals, avoid
fp@532: 		buffer overrun setting current->comm.
fp@532: 
fp@532: 		Kalle Olavi Niemitalo - Wake-on-LAN ioctls
fp@532: 
fp@532: 		Robert Kuebel - Save kernel thread from dying on any signal.
fp@532: 
fp@532: 	Submitting bug reports:
fp@532: 
fp@532: 		"rtl8139-diag -mmmaaavvveefN" output
fp@532: 		enable RTL8139_DEBUG below, and look at 'dmesg' or kernel log
fp@532: 
fp@532: */
fp@532: 
fp@532: #define DRV_NAME	"8139too"
fp@532: #define DRV_VERSION	"0.9.27"
fp@532: 
fp@532: 
fp@532: #include <linux/module.h>
fp@532: #include <linux/kernel.h>
fp@532: #include <linux/compiler.h>
fp@532: #include <linux/pci.h>
fp@532: #include <linux/init.h>
fp@532: #include <linux/ioport.h>
fp@532: #include <linux/netdevice.h>
fp@532: #include <linux/etherdevice.h>
fp@532: #include <linux/rtnetlink.h>
fp@532: #include <linux/delay.h>
fp@532: #include <linux/ethtool.h>
fp@532: #include <linux/mii.h>
fp@532: #include <linux/completion.h>
fp@532: #include <linux/crc32.h>
fp@532: #include <asm/io.h>
fp@532: #include <asm/uaccess.h>
fp@532: #include <asm/irq.h>
fp@532: 
fp@532: #define RTL8139_DRIVER_NAME   DRV_NAME " Fast Ethernet driver " DRV_VERSION
fp@532: #define PFX DRV_NAME ": "
fp@532: 
fp@532: /* Default Message level */
fp@532: #define RTL8139_DEF_MSG_ENABLE   (NETIF_MSG_DRV   | \
fp@532:                                  NETIF_MSG_PROBE  | \
fp@532:                                  NETIF_MSG_LINK)
fp@532: 
fp@532: 
fp@532: /* enable PIO instead of MMIO, if CONFIG_8139TOO_PIO is selected */
fp@532: #ifdef CONFIG_8139TOO_PIO
fp@532: #define USE_IO_OPS 1
fp@532: #endif
fp@532: 
fp@532: /* define to 1, 2 or 3 to enable copious debugging info */
fp@532: #define RTL8139_DEBUG 0
fp@532: 
fp@532: /* define to 1 to disable lightweight runtime debugging checks */
fp@532: #undef RTL8139_NDEBUG
fp@532: 
fp@532: 
fp@532: #if RTL8139_DEBUG
fp@532: /* note: prints function name for you */
fp@532: #  define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
fp@532: #else
fp@532: #  define DPRINTK(fmt, args...)
fp@532: #endif
fp@532: 
fp@532: #ifdef RTL8139_NDEBUG
fp@532: #  define assert(expr) do {} while (0)
fp@532: #else
fp@532: #  define assert(expr) \
fp@532:         if(unlikely(!(expr))) {				        \
fp@532:         printk(KERN_ERR "Assertion failed! %s,%s,%s,line=%d\n",	\
fp@532:         #expr,__FILE__,__FUNCTION__,__LINE__);		        \
fp@532:         }
fp@532: #endif
fp@532: 
fp@532: 
fp@532: /* A few user-configurable values. */
fp@532: /* media options */
fp@532: #define MAX_UNITS 8
fp@532: static int media[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
fp@532: static int full_duplex[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
fp@532: 
fp@532: /* Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
fp@532:    The RTL chips use a 64 element hash table based on the Ethernet CRC.  */
fp@532: static int multicast_filter_limit = 32;
fp@532: 
fp@532: /* bitmapped message enable number */
fp@532: static int debug = -1;
fp@532: 
fp@532: /*
fp@532:  * Receive ring size
fp@532:  * Warning: 64K ring has hardware issues and may lock up.
fp@532:  */
fp@532: #if defined(CONFIG_SH_DREAMCAST)
fp@532: #define RX_BUF_IDX	1	/* 16K ring */
fp@532: #else
fp@532: #define RX_BUF_IDX	2	/* 32K ring */
fp@532: #endif
fp@532: #define RX_BUF_LEN	(8192 << RX_BUF_IDX)
fp@532: #define RX_BUF_PAD	16
fp@532: #define RX_BUF_WRAP_PAD 2048 /* spare padding to handle lack of packet wrap */
fp@532: 
fp@532: #if RX_BUF_LEN == 65536
fp@532: #define RX_BUF_TOT_LEN	RX_BUF_LEN
fp@532: #else
fp@532: #define RX_BUF_TOT_LEN	(RX_BUF_LEN + RX_BUF_PAD + RX_BUF_WRAP_PAD)
fp@532: #endif
fp@532: 
fp@532: /* Number of Tx descriptor registers. */
fp@532: #define NUM_TX_DESC	4
fp@532: 
fp@532: /* max supported ethernet frame size -- must be at least (dev->mtu+14+4).*/
fp@532: #define MAX_ETH_FRAME_SIZE	1536
fp@532: 
fp@532: /* Size of the Tx bounce buffers -- must be at least (dev->mtu+14+4). */
fp@532: #define TX_BUF_SIZE	MAX_ETH_FRAME_SIZE
fp@532: #define TX_BUF_TOT_LEN	(TX_BUF_SIZE * NUM_TX_DESC)
fp@532: 
fp@532: /* PCI Tuning Parameters
fp@532:    Threshold is bytes transferred to chip before transmission starts. */
fp@532: #define TX_FIFO_THRESH 256	/* In bytes, rounded down to 32 byte units. */
fp@532: 
fp@532: /* The following settings are log_2(bytes)-4:  0 == 16 bytes .. 6==1024, 7==end of packet. */
fp@532: #define RX_FIFO_THRESH	7	/* Rx buffer level before first PCI xfer.  */
fp@532: #define RX_DMA_BURST	7	/* Maximum PCI burst, '6' is 1024 */
fp@532: #define TX_DMA_BURST	6	/* Maximum PCI burst, '6' is 1024 */
fp@532: #define TX_RETRY	8	/* 0-15.  retries = 16 + (TX_RETRY * 16) */
fp@532: 
fp@532: /* Operational parameters that usually are not changed. */
fp@532: /* Time in jiffies before concluding the transmitter is hung. */
fp@532: #define TX_TIMEOUT  (6*HZ)
fp@532: 
fp@532: 
fp@532: enum {
fp@532: 	HAS_MII_XCVR = 0x010000,
fp@532: 	HAS_CHIP_XCVR = 0x020000,
fp@532: 	HAS_LNK_CHNG = 0x040000,
fp@532: };
fp@532: 
fp@532: #define RTL_NUM_STATS 4		/* number of ETHTOOL_GSTATS u64's */
fp@532: #define RTL_REGS_VER 1		/* version of reg. data in ETHTOOL_GREGS */
fp@532: #define RTL_MIN_IO_SIZE 0x80
fp@532: #define RTL8139B_IO_SIZE 256
fp@532: 
fp@532: #define RTL8129_CAPS	HAS_MII_XCVR
fp@532: #define RTL8139_CAPS	HAS_CHIP_XCVR|HAS_LNK_CHNG
fp@532: 
fp@532: typedef enum {
fp@532: 	RTL8139 = 0,
fp@532: 	RTL8129,
fp@532: } board_t;
fp@532: 
fp@532: 
fp@532: /* indexed by board_t, above */
fp@532: static const struct {
fp@532: 	const char *name;
fp@532: 	u32 hw_flags;
fp@532: } board_info[] __devinitdata = {
fp@532: 	{ "RealTek RTL8139", RTL8139_CAPS },
fp@532: 	{ "RealTek RTL8129", RTL8129_CAPS },
fp@532: };
fp@532: 
fp@532: 
fp@532: static struct pci_device_id rtl8139_pci_tbl[] = {
fp@532: 	{0x10ec, 0x8139, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x10ec, 0x8138, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x1113, 0x1211, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x1500, 0x1360, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x4033, 0x1360, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x1186, 0x1300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x1186, 0x1340, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x13d1, 0xab06, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x1259, 0xa117, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x1259, 0xa11e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x14ea, 0xab06, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x14ea, 0xab07, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x11db, 0x1234, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x1432, 0x9130, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x02ac, 0x1012, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x018a, 0x0106, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x126c, 0x1211, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x1743, 0x8139, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 	{0x021b, 0x8139, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: 
fp@532: #ifdef CONFIG_SH_SECUREEDGE5410
fp@532: 	/* Bogus 8139 silicon reports 8129 without external PROM :-( */
fp@532: 	{0x10ec, 0x8129, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8139 },
fp@532: #endif
fp@532: #ifdef CONFIG_8139TOO_8129
fp@532: 	{0x10ec, 0x8129, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RTL8129 },
fp@532: #endif
fp@532: 
fp@532: 	/* some crazy cards report invalid vendor ids like
fp@532: 	 * 0x0001 here.  The other ids are valid and constant,
fp@532: 	 * so we simply don't match on the main vendor id.
fp@532: 	 */
fp@532: 	{PCI_ANY_ID, 0x8139, 0x10ec, 0x8139, 0, 0, RTL8139 },
fp@532: 	{PCI_ANY_ID, 0x8139, 0x1186, 0x1300, 0, 0, RTL8139 },
fp@532: 	{PCI_ANY_ID, 0x8139, 0x13d1, 0xab06, 0, 0, RTL8139 },
fp@532: 
fp@532: 	{0,}
fp@532: };
fp@532: MODULE_DEVICE_TABLE (pci, rtl8139_pci_tbl);
fp@532: 
fp@532: static struct {
fp@532: 	const char str[ETH_GSTRING_LEN];
fp@532: } ethtool_stats_keys[] = {
fp@532: 	{ "early_rx" },
fp@532: 	{ "tx_buf_mapped" },
fp@532: 	{ "tx_timeouts" },
fp@532: 	{ "rx_lost_in_ring" },
fp@532: };
fp@532: 
fp@532: /* The rest of these values should never change. */
fp@532: 
fp@532: /* Symbolic offsets to registers. */
fp@532: enum RTL8139_registers {
fp@532: 	MAC0 = 0,		/* Ethernet hardware address. */
fp@532: 	MAR0 = 8,		/* Multicast filter. */
fp@532: 	TxStatus0 = 0x10,	/* Transmit status (Four 32bit registers). */
fp@532: 	TxAddr0 = 0x20,		/* Tx descriptors (also four 32bit). */
fp@532: 	RxBuf = 0x30,
fp@532: 	ChipCmd = 0x37,
fp@532: 	RxBufPtr = 0x38,
fp@532: 	RxBufAddr = 0x3A,
fp@532: 	IntrMask = 0x3C,
fp@532: 	IntrStatus = 0x3E,
fp@532: 	TxConfig = 0x40,
fp@532: 	RxConfig = 0x44,
fp@532: 	Timer = 0x48,		/* A general-purpose counter. */
fp@532: 	RxMissed = 0x4C,	/* 24 bits valid, write clears. */
fp@532: 	Cfg9346 = 0x50,
fp@532: 	Config0 = 0x51,
fp@532: 	Config1 = 0x52,
fp@532: 	FlashReg = 0x54,
fp@532: 	MediaStatus = 0x58,
fp@532: 	Config3 = 0x59,
fp@532: 	Config4 = 0x5A,		/* absent on RTL-8139A */
fp@532: 	HltClk = 0x5B,
fp@532: 	MultiIntr = 0x5C,
fp@532: 	TxSummary = 0x60,
fp@532: 	BasicModeCtrl = 0x62,
fp@532: 	BasicModeStatus = 0x64,
fp@532: 	NWayAdvert = 0x66,
fp@532: 	NWayLPAR = 0x68,
fp@532: 	NWayExpansion = 0x6A,
fp@532: 	/* Undocumented registers, but required for proper operation. */
fp@532: 	FIFOTMS = 0x70,		/* FIFO Control and test. */
fp@532: 	CSCR = 0x74,		/* Chip Status and Configuration Register. */
fp@532: 	PARA78 = 0x78,
fp@532: 	PARA7c = 0x7c,		/* Magic transceiver parameter register. */
fp@532: 	Config5 = 0xD8,		/* absent on RTL-8139A */
fp@532: };
fp@532: 
fp@532: enum ClearBitMasks {
fp@532: 	MultiIntrClear = 0xF000,
fp@532: 	ChipCmdClear = 0xE2,
fp@532: 	Config1Clear = (1<<7)|(1<<6)|(1<<3)|(1<<2)|(1<<1),
fp@532: };
fp@532: 
fp@532: enum ChipCmdBits {
fp@532: 	CmdReset = 0x10,
fp@532: 	CmdRxEnb = 0x08,
fp@532: 	CmdTxEnb = 0x04,
fp@532: 	RxBufEmpty = 0x01,
fp@532: };
fp@532: 
fp@532: /* Interrupt register bits, using my own meaningful names. */
fp@532: enum IntrStatusBits {
fp@532: 	PCIErr = 0x8000,
fp@532: 	PCSTimeout = 0x4000,
fp@532: 	RxFIFOOver = 0x40,
fp@532: 	RxUnderrun = 0x20,
fp@532: 	RxOverflow = 0x10,
fp@532: 	TxErr = 0x08,
fp@532: 	TxOK = 0x04,
fp@532: 	RxErr = 0x02,
fp@532: 	RxOK = 0x01,
fp@532: 
fp@532: 	RxAckBits = RxFIFOOver | RxOverflow | RxOK,
fp@532: };
fp@532: 
fp@532: enum TxStatusBits {
fp@532: 	TxHostOwns = 0x2000,
fp@532: 	TxUnderrun = 0x4000,
fp@532: 	TxStatOK = 0x8000,
fp@532: 	TxOutOfWindow = 0x20000000,
fp@532: 	TxAborted = 0x40000000,
fp@532: 	TxCarrierLost = 0x80000000,
fp@532: };
fp@532: enum RxStatusBits {
fp@532: 	RxMulticast = 0x8000,
fp@532: 	RxPhysical = 0x4000,
fp@532: 	RxBroadcast = 0x2000,
fp@532: 	RxBadSymbol = 0x0020,
fp@532: 	RxRunt = 0x0010,
fp@532: 	RxTooLong = 0x0008,
fp@532: 	RxCRCErr = 0x0004,
fp@532: 	RxBadAlign = 0x0002,
fp@532: 	RxStatusOK = 0x0001,
fp@532: };
fp@532: 
fp@532: /* Bits in RxConfig. */
fp@532: enum rx_mode_bits {
fp@532: 	AcceptErr = 0x20,
fp@532: 	AcceptRunt = 0x10,
fp@532: 	AcceptBroadcast = 0x08,
fp@532: 	AcceptMulticast = 0x04,
fp@532: 	AcceptMyPhys = 0x02,
fp@532: 	AcceptAllPhys = 0x01,
fp@532: };
fp@532: 
fp@532: /* Bits in TxConfig. */
fp@532: enum tx_config_bits {
fp@532: 
fp@532:         /* Interframe Gap Time. Only TxIFG96 doesn't violate IEEE 802.3 */
fp@532:         TxIFGShift = 24,
fp@532:         TxIFG84 = (0 << TxIFGShift),    /* 8.4us / 840ns (10 / 100Mbps) */
fp@532:         TxIFG88 = (1 << TxIFGShift),    /* 8.8us / 880ns (10 / 100Mbps) */
fp@532:         TxIFG92 = (2 << TxIFGShift),    /* 9.2us / 920ns (10 / 100Mbps) */
fp@532:         TxIFG96 = (3 << TxIFGShift),    /* 9.6us / 960ns (10 / 100Mbps) */
fp@532: 
fp@532: 	TxLoopBack = (1 << 18) | (1 << 17), /* enable loopback test mode */
fp@532: 	TxCRC = (1 << 16),	/* DISABLE appending CRC to end of Tx packets */
fp@532: 	TxClearAbt = (1 << 0),	/* Clear abort (WO) */
fp@532: 	TxDMAShift = 8,		/* DMA burst value (0-7) is shifted this many bits */
fp@532: 	TxRetryShift = 4,	/* TXRR value (0-15) is shifted this many bits */
fp@532: 
fp@532: 	TxVersionMask = 0x7C800000, /* mask out version bits 30-26, 23 */
fp@532: };
fp@532: 
fp@532: /* Bits in Config1 */
fp@532: enum Config1Bits {
fp@532: 	Cfg1_PM_Enable = 0x01,
fp@532: 	Cfg1_VPD_Enable = 0x02,
fp@532: 	Cfg1_PIO = 0x04,
fp@532: 	Cfg1_MMIO = 0x08,
fp@532: 	LWAKE = 0x10,		/* not on 8139, 8139A */
fp@532: 	Cfg1_Driver_Load = 0x20,
fp@532: 	Cfg1_LED0 = 0x40,
fp@532: 	Cfg1_LED1 = 0x80,
fp@532: 	SLEEP = (1 << 1),	/* only on 8139, 8139A */
fp@532: 	PWRDN = (1 << 0),	/* only on 8139, 8139A */
fp@532: };
fp@532: 
fp@532: /* Bits in Config3 */
fp@532: enum Config3Bits {
fp@532: 	Cfg3_FBtBEn    = (1 << 0), /* 1 = Fast Back to Back */
fp@532: 	Cfg3_FuncRegEn = (1 << 1), /* 1 = enable CardBus Function registers */
fp@532: 	Cfg3_CLKRUN_En = (1 << 2), /* 1 = enable CLKRUN */
fp@532: 	Cfg3_CardB_En  = (1 << 3), /* 1 = enable CardBus registers */
fp@532: 	Cfg3_LinkUp    = (1 << 4), /* 1 = wake up on link up */
fp@532: 	Cfg3_Magic     = (1 << 5), /* 1 = wake up on Magic Packet (tm) */
fp@532: 	Cfg3_PARM_En   = (1 << 6), /* 0 = software can set twister parameters */
fp@532: 	Cfg3_GNTSel    = (1 << 7), /* 1 = delay 1 clock from PCI GNT signal */
fp@532: };
fp@532: 
fp@532: /* Bits in Config4 */
fp@532: enum Config4Bits {
fp@532: 	LWPTN = (1 << 2),	/* not on 8139, 8139A */
fp@532: };
fp@532: 
fp@532: /* Bits in Config5 */
fp@532: enum Config5Bits {
fp@532: 	Cfg5_PME_STS     = (1 << 0), /* 1 = PCI reset resets PME_Status */
fp@532: 	Cfg5_LANWake     = (1 << 1), /* 1 = enable LANWake signal */
fp@532: 	Cfg5_LDPS        = (1 << 2), /* 0 = save power when link is down */
fp@532: 	Cfg5_FIFOAddrPtr = (1 << 3), /* Realtek internal SRAM testing */
fp@532: 	Cfg5_UWF         = (1 << 4), /* 1 = accept unicast wakeup frame */
fp@532: 	Cfg5_MWF         = (1 << 5), /* 1 = accept multicast wakeup frame */
fp@532: 	Cfg5_BWF         = (1 << 6), /* 1 = accept broadcast wakeup frame */
fp@532: };
fp@532: 
fp@532: enum RxConfigBits {
fp@532: 	/* rx fifo threshold */
fp@532: 	RxCfgFIFOShift = 13,
fp@532: 	RxCfgFIFONone = (7 << RxCfgFIFOShift),
fp@532: 
fp@532: 	/* Max DMA burst */
fp@532: 	RxCfgDMAShift = 8,
fp@532: 	RxCfgDMAUnlimited = (7 << RxCfgDMAShift),
fp@532: 
fp@532: 	/* rx ring buffer length */
fp@532: 	RxCfgRcv8K = 0,
fp@532: 	RxCfgRcv16K = (1 << 11),
fp@532: 	RxCfgRcv32K = (1 << 12),
fp@532: 	RxCfgRcv64K = (1 << 11) | (1 << 12),
fp@532: 
fp@532: 	/* Disable packet wrap at end of Rx buffer. (not possible with 64k) */
fp@532: 	RxNoWrap = (1 << 7),
fp@532: };
fp@532: 
fp@532: /* Twister tuning parameters from RealTek.
fp@532:    Completely undocumented, but required to tune bad links on some boards. */
fp@532: enum CSCRBits {
fp@532: 	CSCR_LinkOKBit = 0x0400,
fp@532: 	CSCR_LinkChangeBit = 0x0800,
fp@532: 	CSCR_LinkStatusBits = 0x0f000,
fp@532: 	CSCR_LinkDownOffCmd = 0x003c0,
fp@532: 	CSCR_LinkDownCmd = 0x0f3c0,
fp@532: };
fp@532: 
fp@532: enum Cfg9346Bits {
fp@532: 	Cfg9346_Lock = 0x00,
fp@532: 	Cfg9346_Unlock = 0xC0,
fp@532: };
fp@532: 
fp@532: typedef enum {
fp@532: 	CH_8139 = 0,
fp@532: 	CH_8139_K,
fp@532: 	CH_8139A,
fp@532: 	CH_8139A_G,
fp@532: 	CH_8139B,
fp@532: 	CH_8130,
fp@532: 	CH_8139C,
fp@532: 	CH_8100,
fp@532: 	CH_8100B_8139D,
fp@532: 	CH_8101,
fp@532: } chip_t;
fp@532: 
fp@532: enum chip_flags {
fp@532: 	HasHltClk = (1 << 0),
fp@532: 	HasLWake = (1 << 1),
fp@532: };
fp@532: 
fp@532: #define HW_REVID(b30, b29, b28, b27, b26, b23, b22) \
fp@532: 	(b30<<30 | b29<<29 | b28<<28 | b27<<27 | b26<<26 | b23<<23 | b22<<22)
fp@532: #define HW_REVID_MASK	HW_REVID(1, 1, 1, 1, 1, 1, 1)
fp@532: 
fp@532: /* directly indexed by chip_t, above */
fp@532: static const struct {
fp@532: 	const char *name;
fp@532: 	u32 version; /* from RTL8139C/RTL8139D docs */
fp@532: 	u32 flags;
fp@532: } rtl_chip_info[] = {
fp@532: 	{ "RTL-8139",
fp@532: 	  HW_REVID(1, 0, 0, 0, 0, 0, 0),
fp@532: 	  HasHltClk,
fp@532: 	},
fp@532: 
fp@532: 	{ "RTL-8139 rev K",
fp@532: 	  HW_REVID(1, 1, 0, 0, 0, 0, 0),
fp@532: 	  HasHltClk,
fp@532: 	},
fp@532: 
fp@532: 	{ "RTL-8139A",
fp@532: 	  HW_REVID(1, 1, 1, 0, 0, 0, 0),
fp@532: 	  HasHltClk, /* XXX undocumented? */
fp@532: 	},
fp@532: 
fp@532: 	{ "RTL-8139A rev G",
fp@532: 	  HW_REVID(1, 1, 1, 0, 0, 1, 0),
fp@532: 	  HasHltClk, /* XXX undocumented? */
fp@532: 	},
fp@532: 
fp@532: 	{ "RTL-8139B",
fp@532: 	  HW_REVID(1, 1, 1, 1, 0, 0, 0),
fp@532: 	  HasLWake,
fp@532: 	},
fp@532: 
fp@532: 	{ "RTL-8130",
fp@532: 	  HW_REVID(1, 1, 1, 1, 1, 0, 0),
fp@532: 	  HasLWake,
fp@532: 	},
fp@532: 
fp@532: 	{ "RTL-8139C",
fp@532: 	  HW_REVID(1, 1, 1, 0, 1, 0, 0),
fp@532: 	  HasLWake,
fp@532: 	},
fp@532: 
fp@532: 	{ "RTL-8100",
fp@532: 	  HW_REVID(1, 1, 1, 1, 0, 1, 0),
fp@532:  	  HasLWake,
fp@532:  	},
fp@532: 
fp@532: 	{ "RTL-8100B/8139D",
fp@532: 	  HW_REVID(1, 1, 1, 0, 1, 0, 1),
fp@532: 	  HasHltClk /* XXX undocumented? */
fp@532: 	| HasLWake,
fp@532: 	},
fp@532: 
fp@532: 	{ "RTL-8101",
fp@532: 	  HW_REVID(1, 1, 1, 0, 1, 1, 1),
fp@532: 	  HasLWake,
fp@532: 	},
fp@532: };
fp@532: 
fp@532: struct rtl_extra_stats {
fp@532: 	unsigned long early_rx;
fp@532: 	unsigned long tx_buf_mapped;
fp@532: 	unsigned long tx_timeouts;
fp@532: 	unsigned long rx_lost_in_ring;
fp@532: };
fp@532: 
fp@532: struct rtl8139_private {
fp@532: 	void __iomem *mmio_addr;
fp@532: 	int drv_flags;
fp@532: 	struct pci_dev *pci_dev;
fp@532: 	u32 msg_enable;
fp@532: 	struct net_device_stats stats;
fp@532: 	unsigned char *rx_ring;
fp@532: 	unsigned int cur_rx;	/* Index into the Rx buffer of next Rx pkt. */
fp@532: 	unsigned int tx_flag;
fp@532: 	unsigned long cur_tx;
fp@532: 	unsigned long dirty_tx;
fp@532: 	unsigned char *tx_buf[NUM_TX_DESC];	/* Tx bounce buffers */
fp@532: 	unsigned char *tx_bufs;	/* Tx bounce buffer region. */
fp@532: 	dma_addr_t rx_ring_dma;
fp@532: 	dma_addr_t tx_bufs_dma;
fp@532: 	signed char phys[4];		/* MII device addresses. */
fp@532: 	char twistie, twist_row, twist_col;	/* Twister tune state. */
fp@532: 	unsigned int watchdog_fired : 1;
fp@532: 	unsigned int default_port : 4;	/* Last dev->if_port value. */
fp@532: 	unsigned int have_thread : 1;
fp@532: 	spinlock_t lock;
fp@532: 	spinlock_t rx_lock;
fp@532: 	chip_t chipset;
fp@532: 	u32 rx_config;
fp@532: 	struct rtl_extra_stats xstats;
fp@532: 
fp@532: 	struct work_struct thread;
fp@532: 
fp@532: 	struct mii_if_info mii;
fp@532: 	unsigned int regs_len;
fp@532: 	unsigned long fifo_copy_timeout;
fp@532: };
fp@532: 
fp@532: MODULE_AUTHOR ("Jeff Garzik <jgarzik@pobox.com>");
fp@532: MODULE_DESCRIPTION ("RealTek RTL-8139 Fast Ethernet driver");
fp@532: MODULE_LICENSE("GPL");
fp@532: MODULE_VERSION(DRV_VERSION);
fp@532: 
fp@532: module_param(multicast_filter_limit, int, 0);
fp@532: module_param_array(media, int, NULL, 0);
fp@532: module_param_array(full_duplex, int, NULL, 0);
fp@532: module_param(debug, int, 0);
fp@532: MODULE_PARM_DESC (debug, "8139too bitmapped message enable number");
fp@532: MODULE_PARM_DESC (multicast_filter_limit, "8139too maximum number of filtered multicast addresses");
fp@532: MODULE_PARM_DESC (media, "8139too: Bits 4+9: force full duplex, bit 5: 100Mbps");
fp@532: MODULE_PARM_DESC (full_duplex, "8139too: Force full duplex for board(s) (1)");
fp@532: 
fp@532: static int read_eeprom (void __iomem *ioaddr, int location, int addr_len);
fp@532: static int rtl8139_open (struct net_device *dev);
fp@532: static int mdio_read (struct net_device *dev, int phy_id, int location);
fp@532: static void mdio_write (struct net_device *dev, int phy_id, int location,
fp@532: 			int val);
fp@532: static void rtl8139_start_thread(struct rtl8139_private *tp);
fp@532: static void rtl8139_tx_timeout (struct net_device *dev);
fp@532: static void rtl8139_init_ring (struct net_device *dev);
fp@532: static int rtl8139_start_xmit (struct sk_buff *skb,
fp@532: 			       struct net_device *dev);
fp@532: static int rtl8139_poll(struct net_device *dev, int *budget);
fp@532: #ifdef CONFIG_NET_POLL_CONTROLLER
fp@532: static void rtl8139_poll_controller(struct net_device *dev);
fp@532: #endif
fp@532: static irqreturn_t rtl8139_interrupt (int irq, void *dev_instance,
fp@532: 			       struct pt_regs *regs);
fp@532: static int rtl8139_close (struct net_device *dev);
fp@532: static int netdev_ioctl (struct net_device *dev, struct ifreq *rq, int cmd);
fp@532: static struct net_device_stats *rtl8139_get_stats (struct net_device *dev);
fp@532: static void rtl8139_set_rx_mode (struct net_device *dev);
fp@532: static void __set_rx_mode (struct net_device *dev);
fp@532: static void rtl8139_hw_start (struct net_device *dev);
fp@532: static void rtl8139_thread (void *_data);
fp@532: static void rtl8139_tx_timeout_task(void *_data);
fp@532: static struct ethtool_ops rtl8139_ethtool_ops;
fp@532: 
fp@532: /* write MMIO register, with flush */
fp@532: /* Flush avoids rtl8139 bug w/ posted MMIO writes */
fp@532: #define RTL_W8_F(reg, val8)	do { iowrite8 ((val8), ioaddr + (reg)); ioread8 (ioaddr + (reg)); } while (0)
fp@532: #define RTL_W16_F(reg, val16)	do { iowrite16 ((val16), ioaddr + (reg)); ioread16 (ioaddr + (reg)); } while (0)
fp@532: #define RTL_W32_F(reg, val32)	do { iowrite32 ((val32), ioaddr + (reg)); ioread32 (ioaddr + (reg)); } while (0)
fp@532: 
fp@532: 
fp@532: #define MMIO_FLUSH_AUDIT_COMPLETE 1
fp@532: #if MMIO_FLUSH_AUDIT_COMPLETE
fp@532: 
fp@532: /* write MMIO register */
fp@532: #define RTL_W8(reg, val8)	iowrite8 ((val8), ioaddr + (reg))
fp@532: #define RTL_W16(reg, val16)	iowrite16 ((val16), ioaddr + (reg))
fp@532: #define RTL_W32(reg, val32)	iowrite32 ((val32), ioaddr + (reg))
fp@532: 
fp@532: #else
fp@532: 
fp@532: /* write MMIO register, then flush */
fp@532: #define RTL_W8		RTL_W8_F
fp@532: #define RTL_W16		RTL_W16_F
fp@532: #define RTL_W32		RTL_W32_F
fp@532: 
fp@532: #endif /* MMIO_FLUSH_AUDIT_COMPLETE */
fp@532: 
fp@532: /* read MMIO register */
fp@532: #define RTL_R8(reg)		ioread8 (ioaddr + (reg))
fp@532: #define RTL_R16(reg)		ioread16 (ioaddr + (reg))
fp@532: #define RTL_R32(reg)		((unsigned long) ioread32 (ioaddr + (reg)))
fp@532: 
fp@532: 
fp@532: static const u16 rtl8139_intr_mask =
fp@532: 	PCIErr | PCSTimeout | RxUnderrun | RxOverflow | RxFIFOOver |
fp@532: 	TxErr | TxOK | RxErr | RxOK;
fp@532: 
fp@532: static const u16 rtl8139_norx_intr_mask =
fp@532: 	PCIErr | PCSTimeout | RxUnderrun |
fp@532: 	TxErr | TxOK | RxErr ;
fp@532: 
fp@532: #if RX_BUF_IDX == 0
fp@532: static const unsigned int rtl8139_rx_config =
fp@532: 	RxCfgRcv8K | RxNoWrap |
fp@532: 	(RX_FIFO_THRESH << RxCfgFIFOShift) |
fp@532: 	(RX_DMA_BURST << RxCfgDMAShift);
fp@532: #elif RX_BUF_IDX == 1
fp@532: static const unsigned int rtl8139_rx_config =
fp@532: 	RxCfgRcv16K | RxNoWrap |
fp@532: 	(RX_FIFO_THRESH << RxCfgFIFOShift) |
fp@532: 	(RX_DMA_BURST << RxCfgDMAShift);
fp@532: #elif RX_BUF_IDX == 2
fp@532: static const unsigned int rtl8139_rx_config =
fp@532: 	RxCfgRcv32K | RxNoWrap |
fp@532: 	(RX_FIFO_THRESH << RxCfgFIFOShift) |
fp@532: 	(RX_DMA_BURST << RxCfgDMAShift);
fp@532: #elif RX_BUF_IDX == 3
fp@532: static const unsigned int rtl8139_rx_config =
fp@532: 	RxCfgRcv64K |
fp@532: 	(RX_FIFO_THRESH << RxCfgFIFOShift) |
fp@532: 	(RX_DMA_BURST << RxCfgDMAShift);
fp@532: #else
fp@532: #error "Invalid configuration for 8139_RXBUF_IDX"
fp@532: #endif
fp@532: 
fp@532: static const unsigned int rtl8139_tx_config =
fp@532: 	TxIFG96 | (TX_DMA_BURST << TxDMAShift) | (TX_RETRY << TxRetryShift);
fp@532: 
fp@532: static void __rtl8139_cleanup_dev (struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	struct pci_dev *pdev;
fp@532: 
fp@532: 	assert (dev != NULL);
fp@532: 	assert (tp->pci_dev != NULL);
fp@532: 	pdev = tp->pci_dev;
fp@532: 
fp@532: #ifdef USE_IO_OPS
fp@532: 	if (tp->mmio_addr)
fp@532: 		ioport_unmap (tp->mmio_addr);
fp@532: #else
fp@532: 	if (tp->mmio_addr)
fp@532: 		pci_iounmap (pdev, tp->mmio_addr);
fp@532: #endif /* USE_IO_OPS */
fp@532: 
fp@532: 	/* it's ok to call this even if we have no regions to free */
fp@532: 	pci_release_regions (pdev);
fp@532: 
fp@532: 	free_netdev(dev);
fp@532: 	pci_set_drvdata (pdev, NULL);
fp@532: }
fp@532: 
fp@532: 
fp@532: static void rtl8139_chip_reset (void __iomem *ioaddr)
fp@532: {
fp@532: 	int i;
fp@532: 
fp@532: 	/* Soft reset the chip. */
fp@532: 	RTL_W8 (ChipCmd, CmdReset);
fp@532: 
fp@532: 	/* Check that the chip has finished the reset. */
fp@532: 	for (i = 1000; i > 0; i--) {
fp@532: 		barrier();
fp@532: 		if ((RTL_R8 (ChipCmd) & CmdReset) == 0)
fp@532: 			break;
fp@532: 		udelay (10);
fp@532: 	}
fp@532: }
fp@532: 
fp@532: 
fp@532: static int __devinit rtl8139_init_board (struct pci_dev *pdev,
fp@532: 					 struct net_device **dev_out)
fp@532: {
fp@532: 	void __iomem *ioaddr;
fp@532: 	struct net_device *dev;
fp@532: 	struct rtl8139_private *tp;
fp@532: 	u8 tmp8;
fp@532: 	int rc, disable_dev_on_err = 0;
fp@532: 	unsigned int i;
fp@532: 	unsigned long pio_start, pio_end, pio_flags, pio_len;
fp@532: 	unsigned long mmio_start, mmio_end, mmio_flags, mmio_len;
fp@532: 	u32 version;
fp@532: 
fp@532: 	assert (pdev != NULL);
fp@532: 
fp@532: 	*dev_out = NULL;
fp@532: 
fp@532: 	/* dev and priv zeroed in alloc_etherdev */
fp@532: 	dev = alloc_etherdev (sizeof (*tp));
fp@532: 	if (dev == NULL) {
fp@532: 		dev_err(&pdev->dev, "Unable to alloc new net device\n");
fp@532: 		return -ENOMEM;
fp@532: 	}
fp@532: 	SET_MODULE_OWNER(dev);
fp@532: 	SET_NETDEV_DEV(dev, &pdev->dev);
fp@532: 
fp@532: 	tp = netdev_priv(dev);
fp@532: 	tp->pci_dev = pdev;
fp@532: 
fp@532: 	/* enable device (incl. PCI PM wakeup and hotplug setup) */
fp@532: 	rc = pci_enable_device (pdev);
fp@532: 	if (rc)
fp@532: 		goto err_out;
fp@532: 
fp@532: 	pio_start = pci_resource_start (pdev, 0);
fp@532: 	pio_end = pci_resource_end (pdev, 0);
fp@532: 	pio_flags = pci_resource_flags (pdev, 0);
fp@532: 	pio_len = pci_resource_len (pdev, 0);
fp@532: 
fp@532: 	mmio_start = pci_resource_start (pdev, 1);
fp@532: 	mmio_end = pci_resource_end (pdev, 1);
fp@532: 	mmio_flags = pci_resource_flags (pdev, 1);
fp@532: 	mmio_len = pci_resource_len (pdev, 1);
fp@532: 
fp@532: 	/* set this immediately, we need to know before
fp@532: 	 * we talk to the chip directly */
fp@532: 	DPRINTK("PIO region size == 0x%02X\n", pio_len);
fp@532: 	DPRINTK("MMIO region size == 0x%02lX\n", mmio_len);
fp@532: 
fp@532: #ifdef USE_IO_OPS
fp@532: 	/* make sure PCI base addr 0 is PIO */
fp@532: 	if (!(pio_flags & IORESOURCE_IO)) {
fp@532: 		dev_err(&pdev->dev, "region #0 not a PIO resource, aborting\n");
fp@532: 		rc = -ENODEV;
fp@532: 		goto err_out;
fp@532: 	}
fp@532: 	/* check for weird/broken PCI region reporting */
fp@532: 	if (pio_len < RTL_MIN_IO_SIZE) {
fp@532: 		dev_err(&pdev->dev, "Invalid PCI I/O region size(s), aborting\n");
fp@532: 		rc = -ENODEV;
fp@532: 		goto err_out;
fp@532: 	}
fp@532: #else
fp@532: 	/* make sure PCI base addr 1 is MMIO */
fp@532: 	if (!(mmio_flags & IORESOURCE_MEM)) {
fp@532: 		dev_err(&pdev->dev, "region #1 not an MMIO resource, aborting\n");
fp@532: 		rc = -ENODEV;
fp@532: 		goto err_out;
fp@532: 	}
fp@532: 	if (mmio_len < RTL_MIN_IO_SIZE) {
fp@532: 		dev_err(&pdev->dev, "Invalid PCI mem region size(s), aborting\n");
fp@532: 		rc = -ENODEV;
fp@532: 		goto err_out;
fp@532: 	}
fp@532: #endif
fp@532: 
fp@532: 	rc = pci_request_regions (pdev, DRV_NAME);
fp@532: 	if (rc)
fp@532: 		goto err_out;
fp@532: 	disable_dev_on_err = 1;
fp@532: 
fp@532: 	/* enable PCI bus-mastering */
fp@532: 	pci_set_master (pdev);
fp@532: 
fp@532: #ifdef USE_IO_OPS
fp@532: 	ioaddr = ioport_map(pio_start, pio_len);
fp@532: 	if (!ioaddr) {
fp@532: 		dev_err(&pdev->dev, "cannot map PIO, aborting\n");
fp@532: 		rc = -EIO;
fp@532: 		goto err_out;
fp@532: 	}
fp@532: 	dev->base_addr = pio_start;
fp@532: 	tp->mmio_addr = ioaddr;
fp@532: 	tp->regs_len = pio_len;
fp@532: #else
fp@532: 	/* ioremap MMIO region */
fp@532: 	ioaddr = pci_iomap(pdev, 1, 0);
fp@532: 	if (ioaddr == NULL) {
fp@532: 		dev_err(&pdev->dev, "cannot remap MMIO, aborting\n");
fp@532: 		rc = -EIO;
fp@532: 		goto err_out;
fp@532: 	}
fp@532: 	dev->base_addr = (long) ioaddr;
fp@532: 	tp->mmio_addr = ioaddr;
fp@532: 	tp->regs_len = mmio_len;
fp@532: #endif /* USE_IO_OPS */
fp@532: 
fp@532: 	/* Bring old chips out of low-power mode. */
fp@532: 	RTL_W8 (HltClk, 'R');
fp@532: 
fp@532: 	/* check for missing/broken hardware */
fp@532: 	if (RTL_R32 (TxConfig) == 0xFFFFFFFF) {
fp@532: 		dev_err(&pdev->dev, "Chip not responding, ignoring board\n");
fp@532: 		rc = -EIO;
fp@532: 		goto err_out;
fp@532: 	}
fp@532: 
fp@532: 	/* identify chip attached to board */
fp@532: 	version = RTL_R32 (TxConfig) & HW_REVID_MASK;
fp@532: 	for (i = 0; i < ARRAY_SIZE (rtl_chip_info); i++)
fp@532: 		if (version == rtl_chip_info[i].version) {
fp@532: 			tp->chipset = i;
fp@532: 			goto match;
fp@532: 		}
fp@532: 
fp@532: 	/* if unknown chip, assume array element #0, original RTL-8139 in this case */
fp@532: 	dev_printk (KERN_DEBUG, &pdev->dev,
fp@532: 		    "unknown chip version, assuming RTL-8139\n");
fp@532: 	dev_printk (KERN_DEBUG, &pdev->dev,
fp@532: 		    "TxConfig = 0x%lx\n", RTL_R32 (TxConfig));
fp@532: 	tp->chipset = 0;
fp@532: 
fp@532: match:
fp@532: 	DPRINTK ("chipset id (%d) == index %d, '%s'\n",
fp@532: 		 version, i, rtl_chip_info[i].name);
fp@532: 
fp@532: 	if (tp->chipset >= CH_8139B) {
fp@532: 		u8 new_tmp8 = tmp8 = RTL_R8 (Config1);
fp@532: 		DPRINTK("PCI PM wakeup\n");
fp@532: 		if ((rtl_chip_info[tp->chipset].flags & HasLWake) &&
fp@532: 		    (tmp8 & LWAKE))
fp@532: 			new_tmp8 &= ~LWAKE;
fp@532: 		new_tmp8 |= Cfg1_PM_Enable;
fp@532: 		if (new_tmp8 != tmp8) {
fp@532: 			RTL_W8 (Cfg9346, Cfg9346_Unlock);
fp@532: 			RTL_W8 (Config1, tmp8);
fp@532: 			RTL_W8 (Cfg9346, Cfg9346_Lock);
fp@532: 		}
fp@532: 		if (rtl_chip_info[tp->chipset].flags & HasLWake) {
fp@532: 			tmp8 = RTL_R8 (Config4);
fp@532: 			if (tmp8 & LWPTN) {
fp@532: 				RTL_W8 (Cfg9346, Cfg9346_Unlock);
fp@532: 				RTL_W8 (Config4, tmp8 & ~LWPTN);
fp@532: 				RTL_W8 (Cfg9346, Cfg9346_Lock);
fp@532: 			}
fp@532: 		}
fp@532: 	} else {
fp@532: 		DPRINTK("Old chip wakeup\n");
fp@532: 		tmp8 = RTL_R8 (Config1);
fp@532: 		tmp8 &= ~(SLEEP | PWRDN);
fp@532: 		RTL_W8 (Config1, tmp8);
fp@532: 	}
fp@532: 
fp@532: 	rtl8139_chip_reset (ioaddr);
fp@532: 
fp@532: 	*dev_out = dev;
fp@532: 	return 0;
fp@532: 
fp@532: err_out:
fp@532: 	__rtl8139_cleanup_dev (dev);
fp@532: 	if (disable_dev_on_err)
fp@532: 		pci_disable_device (pdev);
fp@532: 	return rc;
fp@532: }
fp@532: 
fp@532: 
fp@532: static int __devinit rtl8139_init_one (struct pci_dev *pdev,
fp@532: 				       const struct pci_device_id *ent)
fp@532: {
fp@532: 	struct net_device *dev = NULL;
fp@532: 	struct rtl8139_private *tp;
fp@532: 	int i, addr_len, option;
fp@532: 	void __iomem *ioaddr;
fp@532: 	static int board_idx = -1;
fp@532: 	u8 pci_rev;
fp@532: 
fp@532: 	assert (pdev != NULL);
fp@532: 	assert (ent != NULL);
fp@532: 
fp@532: 	board_idx++;
fp@532: 
fp@532: 	/* when we're built into the kernel, the driver version message
fp@532: 	 * is only printed if at least one 8139 board has been found
fp@532: 	 */
fp@532: #ifndef MODULE
fp@532: 	{
fp@532: 		static int printed_version;
fp@532: 		if (!printed_version++)
fp@532: 			printk (KERN_INFO RTL8139_DRIVER_NAME "\n");
fp@532: 	}
fp@532: #endif
fp@532: 
fp@532: 	pci_read_config_byte(pdev, PCI_REVISION_ID, &pci_rev);
fp@532: 
fp@532: 	if (pdev->vendor == PCI_VENDOR_ID_REALTEK &&
fp@532: 	    pdev->device == PCI_DEVICE_ID_REALTEK_8139 && pci_rev >= 0x20) {
fp@532: 		dev_info(&pdev->dev,
fp@532: 			   "This (id %04x:%04x rev %02x) is an enhanced 8139C+ chip\n",
fp@532: 		       	   pdev->vendor, pdev->device, pci_rev);
fp@532: 		dev_info(&pdev->dev,
fp@532: 			   "Use the \"8139cp\" driver for improved performance and stability.\n");
fp@532: 	}
fp@532: 
fp@532: 	i = rtl8139_init_board (pdev, &dev);
fp@532: 	if (i < 0)
fp@532: 		return i;
fp@532: 
fp@532: 	assert (dev != NULL);
fp@532: 	tp = netdev_priv(dev);
fp@532: 
fp@532: 	ioaddr = tp->mmio_addr;
fp@532: 	assert (ioaddr != NULL);
fp@532: 
fp@532: 	addr_len = read_eeprom (ioaddr, 0, 8) == 0x8129 ? 8 : 6;
fp@532: 	for (i = 0; i < 3; i++)
fp@532: 		((u16 *) (dev->dev_addr))[i] =
fp@532: 		    le16_to_cpu (read_eeprom (ioaddr, i + 7, addr_len));
fp@532: 	memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
fp@532: 
fp@532: 	/* The Rtl8139-specific entries in the device structure. */
fp@532: 	dev->open = rtl8139_open;
fp@532: 	dev->hard_start_xmit = rtl8139_start_xmit;
fp@532: 	dev->poll = rtl8139_poll;
fp@532: 	dev->weight = 64;
fp@532: 	dev->stop = rtl8139_close;
fp@532: 	dev->get_stats = rtl8139_get_stats;
fp@532: 	dev->set_multicast_list = rtl8139_set_rx_mode;
fp@532: 	dev->do_ioctl = netdev_ioctl;
fp@532: 	dev->ethtool_ops = &rtl8139_ethtool_ops;
fp@532: 	dev->tx_timeout = rtl8139_tx_timeout;
fp@532: 	dev->watchdog_timeo = TX_TIMEOUT;
fp@532: #ifdef CONFIG_NET_POLL_CONTROLLER
fp@532: 	dev->poll_controller = rtl8139_poll_controller;
fp@532: #endif
fp@532: 
fp@532: 	/* note: the hardware is not capable of sg/csum/highdma, however
fp@532: 	 * through the use of skb_copy_and_csum_dev we enable these
fp@532: 	 * features
fp@532: 	 */
fp@532: 	dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_HIGHDMA;
fp@532: 
fp@532: 	dev->irq = pdev->irq;
fp@532: 
fp@532: 	/* tp zeroed and aligned in alloc_etherdev */
fp@532: 	tp = netdev_priv(dev);
fp@532: 
fp@532: 	/* note: tp->chipset set in rtl8139_init_board */
fp@532: 	tp->drv_flags = board_info[ent->driver_data].hw_flags;
fp@532: 	tp->mmio_addr = ioaddr;
fp@532: 	tp->msg_enable =
fp@532: 		(debug < 0 ? RTL8139_DEF_MSG_ENABLE : ((1 << debug) - 1));
fp@532: 	spin_lock_init (&tp->lock);
fp@532: 	spin_lock_init (&tp->rx_lock);
fp@532: 	INIT_WORK(&tp->thread, rtl8139_thread, dev);
fp@532: 	tp->mii.dev = dev;
fp@532: 	tp->mii.mdio_read = mdio_read;
fp@532: 	tp->mii.mdio_write = mdio_write;
fp@532: 	tp->mii.phy_id_mask = 0x3f;
fp@532: 	tp->mii.reg_num_mask = 0x1f;
fp@532: 
fp@532: 	/* dev is fully set up and ready to use now */
fp@532: 	DPRINTK("about to register device named %s (%p)...\n", dev->name, dev);
fp@532: 	i = register_netdev (dev);
fp@532: 	if (i) goto err_out;
fp@532: 
fp@532: 	pci_set_drvdata (pdev, dev);
fp@532: 
fp@532: 	printk (KERN_INFO "%s: %s at 0x%lx, "
fp@532: 		"%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x, "
fp@532: 		"IRQ %d\n",
fp@532: 		dev->name,
fp@532: 		board_info[ent->driver_data].name,
fp@532: 		dev->base_addr,
fp@532: 		dev->dev_addr[0], dev->dev_addr[1],
fp@532: 		dev->dev_addr[2], dev->dev_addr[3],
fp@532: 		dev->dev_addr[4], dev->dev_addr[5],
fp@532: 		dev->irq);
fp@532: 
fp@532: 	printk (KERN_DEBUG "%s:  Identified 8139 chip type '%s'\n",
fp@532: 		dev->name, rtl_chip_info[tp->chipset].name);
fp@532: 
fp@532: 	/* Find the connected MII xcvrs.
fp@532: 	   Doing this in open() would allow detecting external xcvrs later, but
fp@532: 	   takes too much time. */
fp@532: #ifdef CONFIG_8139TOO_8129
fp@532: 	if (tp->drv_flags & HAS_MII_XCVR) {
fp@532: 		int phy, phy_idx = 0;
fp@532: 		for (phy = 0; phy < 32 && phy_idx < sizeof(tp->phys); phy++) {
fp@532: 			int mii_status = mdio_read(dev, phy, 1);
fp@532: 			if (mii_status != 0xffff  &&  mii_status != 0x0000) {
fp@532: 				u16 advertising = mdio_read(dev, phy, 4);
fp@532: 				tp->phys[phy_idx++] = phy;
fp@532: 				printk(KERN_INFO "%s: MII transceiver %d status 0x%4.4x "
fp@532: 					   "advertising %4.4x.\n",
fp@532: 					   dev->name, phy, mii_status, advertising);
fp@532: 			}
fp@532: 		}
fp@532: 		if (phy_idx == 0) {
fp@532: 			printk(KERN_INFO "%s: No MII transceivers found!  Assuming SYM "
fp@532: 				   "transceiver.\n",
fp@532: 				   dev->name);
fp@532: 			tp->phys[0] = 32;
fp@532: 		}
fp@532: 	} else
fp@532: #endif
fp@532: 		tp->phys[0] = 32;
fp@532: 	tp->mii.phy_id = tp->phys[0];
fp@532: 
fp@532: 	/* The lower four bits are the media type. */
fp@532: 	option = (board_idx >= MAX_UNITS) ? 0 : media[board_idx];
fp@532: 	if (option > 0) {
fp@532: 		tp->mii.full_duplex = (option & 0x210) ? 1 : 0;
fp@532: 		tp->default_port = option & 0xFF;
fp@532: 		if (tp->default_port)
fp@532: 			tp->mii.force_media = 1;
fp@532: 	}
fp@532: 	if (board_idx < MAX_UNITS  &&  full_duplex[board_idx] > 0)
fp@532: 		tp->mii.full_duplex = full_duplex[board_idx];
fp@532: 	if (tp->mii.full_duplex) {
fp@532: 		printk(KERN_INFO "%s: Media type forced to Full Duplex.\n", dev->name);
fp@532: 		/* Changing the MII-advertised media because might prevent
fp@532: 		   re-connection. */
fp@532: 		tp->mii.force_media = 1;
fp@532: 	}
fp@532: 	if (tp->default_port) {
fp@532: 		printk(KERN_INFO "  Forcing %dMbps %s-duplex operation.\n",
fp@532: 			   (option & 0x20 ? 100 : 10),
fp@532: 			   (option & 0x10 ? "full" : "half"));
fp@532: 		mdio_write(dev, tp->phys[0], 0,
fp@532: 				   ((option & 0x20) ? 0x2000 : 0) | 	/* 100Mbps? */
fp@532: 				   ((option & 0x10) ? 0x0100 : 0)); /* Full duplex? */
fp@532: 	}
fp@532: 
fp@532: 	/* Put the chip into low-power mode. */
fp@532: 	if (rtl_chip_info[tp->chipset].flags & HasHltClk)
fp@532: 		RTL_W8 (HltClk, 'H');	/* 'R' would leave the clock running. */
fp@532: 
fp@532: 	return 0;
fp@532: 
fp@532: err_out:
fp@532: 	__rtl8139_cleanup_dev (dev);
fp@532: 	pci_disable_device (pdev);
fp@532: 	return i;
fp@532: }
fp@532: 
fp@532: 
fp@532: static void __devexit rtl8139_remove_one (struct pci_dev *pdev)
fp@532: {
fp@532: 	struct net_device *dev = pci_get_drvdata (pdev);
fp@532: 
fp@532: 	assert (dev != NULL);
fp@532: 
fp@532: 	unregister_netdev (dev);
fp@532: 
fp@532: 	__rtl8139_cleanup_dev (dev);
fp@532: 	pci_disable_device (pdev);
fp@532: }
fp@532: 
fp@532: 
fp@532: /* Serial EEPROM section. */
fp@532: 
fp@532: /*  EEPROM_Ctrl bits. */
fp@532: #define EE_SHIFT_CLK	0x04	/* EEPROM shift clock. */
fp@532: #define EE_CS			0x08	/* EEPROM chip select. */
fp@532: #define EE_DATA_WRITE	0x02	/* EEPROM chip data in. */
fp@532: #define EE_WRITE_0		0x00
fp@532: #define EE_WRITE_1		0x02
fp@532: #define EE_DATA_READ	0x01	/* EEPROM chip data out. */
fp@532: #define EE_ENB			(0x80 | EE_CS)
fp@532: 
fp@532: /* Delay between EEPROM clock transitions.
fp@532:    No extra delay is needed with 33Mhz PCI, but 66Mhz may change this.
fp@532:  */
fp@532: 
fp@532: #define eeprom_delay()	(void)RTL_R32(Cfg9346)
fp@532: 
fp@532: /* The EEPROM commands include the alway-set leading bit. */
fp@532: #define EE_WRITE_CMD	(5)
fp@532: #define EE_READ_CMD		(6)
fp@532: #define EE_ERASE_CMD	(7)
fp@532: 
fp@532: static int __devinit read_eeprom (void __iomem *ioaddr, int location, int addr_len)
fp@532: {
fp@532: 	int i;
fp@532: 	unsigned retval = 0;
fp@532: 	int read_cmd = location | (EE_READ_CMD << addr_len);
fp@532: 
fp@532: 	RTL_W8 (Cfg9346, EE_ENB & ~EE_CS);
fp@532: 	RTL_W8 (Cfg9346, EE_ENB);
fp@532: 	eeprom_delay ();
fp@532: 
fp@532: 	/* Shift the read command bits out. */
fp@532: 	for (i = 4 + addr_len; i >= 0; i--) {
fp@532: 		int dataval = (read_cmd & (1 << i)) ? EE_DATA_WRITE : 0;
fp@532: 		RTL_W8 (Cfg9346, EE_ENB | dataval);
fp@532: 		eeprom_delay ();
fp@532: 		RTL_W8 (Cfg9346, EE_ENB | dataval | EE_SHIFT_CLK);
fp@532: 		eeprom_delay ();
fp@532: 	}
fp@532: 	RTL_W8 (Cfg9346, EE_ENB);
fp@532: 	eeprom_delay ();
fp@532: 
fp@532: 	for (i = 16; i > 0; i--) {
fp@532: 		RTL_W8 (Cfg9346, EE_ENB | EE_SHIFT_CLK);
fp@532: 		eeprom_delay ();
fp@532: 		retval =
fp@532: 		    (retval << 1) | ((RTL_R8 (Cfg9346) & EE_DATA_READ) ? 1 :
fp@532: 				     0);
fp@532: 		RTL_W8 (Cfg9346, EE_ENB);
fp@532: 		eeprom_delay ();
fp@532: 	}
fp@532: 
fp@532: 	/* Terminate the EEPROM access. */
fp@532: 	RTL_W8 (Cfg9346, ~EE_CS);
fp@532: 	eeprom_delay ();
fp@532: 
fp@532: 	return retval;
fp@532: }
fp@532: 
fp@532: /* MII serial management: mostly bogus for now. */
fp@532: /* Read and write the MII management registers using software-generated
fp@532:    serial MDIO protocol.
fp@532:    The maximum data clock rate is 2.5 Mhz.  The minimum timing is usually
fp@532:    met by back-to-back PCI I/O cycles, but we insert a delay to avoid
fp@532:    "overclocking" issues. */
fp@532: #define MDIO_DIR		0x80
fp@532: #define MDIO_DATA_OUT	0x04
fp@532: #define MDIO_DATA_IN	0x02
fp@532: #define MDIO_CLK		0x01
fp@532: #define MDIO_WRITE0 (MDIO_DIR)
fp@532: #define MDIO_WRITE1 (MDIO_DIR | MDIO_DATA_OUT)
fp@532: 
fp@532: #define mdio_delay()	RTL_R8(Config4)
fp@532: 
fp@532: 
fp@532: static const char mii_2_8139_map[8] = {
fp@532: 	BasicModeCtrl,
fp@532: 	BasicModeStatus,
fp@532: 	0,
fp@532: 	0,
fp@532: 	NWayAdvert,
fp@532: 	NWayLPAR,
fp@532: 	NWayExpansion,
fp@532: 	0
fp@532: };
fp@532: 
fp@532: 
fp@532: #ifdef CONFIG_8139TOO_8129
fp@532: /* Syncronize the MII management interface by shifting 32 one bits out. */
fp@532: static void mdio_sync (void __iomem *ioaddr)
fp@532: {
fp@532: 	int i;
fp@532: 
fp@532: 	for (i = 32; i >= 0; i--) {
fp@532: 		RTL_W8 (Config4, MDIO_WRITE1);
fp@532: 		mdio_delay ();
fp@532: 		RTL_W8 (Config4, MDIO_WRITE1 | MDIO_CLK);
fp@532: 		mdio_delay ();
fp@532: 	}
fp@532: }
fp@532: #endif
fp@532: 
fp@532: static int mdio_read (struct net_device *dev, int phy_id, int location)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	int retval = 0;
fp@532: #ifdef CONFIG_8139TOO_8129
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	int mii_cmd = (0xf6 << 10) | (phy_id << 5) | location;
fp@532: 	int i;
fp@532: #endif
fp@532: 
fp@532: 	if (phy_id > 31) {	/* Really a 8139.  Use internal registers. */
fp@532: 		void __iomem *ioaddr = tp->mmio_addr;
fp@532: 		return location < 8 && mii_2_8139_map[location] ?
fp@532: 		    RTL_R16 (mii_2_8139_map[location]) : 0;
fp@532: 	}
fp@532: 
fp@532: #ifdef CONFIG_8139TOO_8129
fp@532: 	mdio_sync (ioaddr);
fp@532: 	/* Shift the read command bits out. */
fp@532: 	for (i = 15; i >= 0; i--) {
fp@532: 		int dataval = (mii_cmd & (1 << i)) ? MDIO_DATA_OUT : 0;
fp@532: 
fp@532: 		RTL_W8 (Config4, MDIO_DIR | dataval);
fp@532: 		mdio_delay ();
fp@532: 		RTL_W8 (Config4, MDIO_DIR | dataval | MDIO_CLK);
fp@532: 		mdio_delay ();
fp@532: 	}
fp@532: 
fp@532: 	/* Read the two transition, 16 data, and wire-idle bits. */
fp@532: 	for (i = 19; i > 0; i--) {
fp@532: 		RTL_W8 (Config4, 0);
fp@532: 		mdio_delay ();
fp@532: 		retval = (retval << 1) | ((RTL_R8 (Config4) & MDIO_DATA_IN) ? 1 : 0);
fp@532: 		RTL_W8 (Config4, MDIO_CLK);
fp@532: 		mdio_delay ();
fp@532: 	}
fp@532: #endif
fp@532: 
fp@532: 	return (retval >> 1) & 0xffff;
fp@532: }
fp@532: 
fp@532: 
fp@532: static void mdio_write (struct net_device *dev, int phy_id, int location,
fp@532: 			int value)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: #ifdef CONFIG_8139TOO_8129
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	int mii_cmd = (0x5002 << 16) | (phy_id << 23) | (location << 18) | value;
fp@532: 	int i;
fp@532: #endif
fp@532: 
fp@532: 	if (phy_id > 31) {	/* Really a 8139.  Use internal registers. */
fp@532: 		void __iomem *ioaddr = tp->mmio_addr;
fp@532: 		if (location == 0) {
fp@532: 			RTL_W8 (Cfg9346, Cfg9346_Unlock);
fp@532: 			RTL_W16 (BasicModeCtrl, value);
fp@532: 			RTL_W8 (Cfg9346, Cfg9346_Lock);
fp@532: 		} else if (location < 8 && mii_2_8139_map[location])
fp@532: 			RTL_W16 (mii_2_8139_map[location], value);
fp@532: 		return;
fp@532: 	}
fp@532: 
fp@532: #ifdef CONFIG_8139TOO_8129
fp@532: 	mdio_sync (ioaddr);
fp@532: 
fp@532: 	/* Shift the command bits out. */
fp@532: 	for (i = 31; i >= 0; i--) {
fp@532: 		int dataval =
fp@532: 		    (mii_cmd & (1 << i)) ? MDIO_WRITE1 : MDIO_WRITE0;
fp@532: 		RTL_W8 (Config4, dataval);
fp@532: 		mdio_delay ();
fp@532: 		RTL_W8 (Config4, dataval | MDIO_CLK);
fp@532: 		mdio_delay ();
fp@532: 	}
fp@532: 	/* Clear out extra bits. */
fp@532: 	for (i = 2; i > 0; i--) {
fp@532: 		RTL_W8 (Config4, 0);
fp@532: 		mdio_delay ();
fp@532: 		RTL_W8 (Config4, MDIO_CLK);
fp@532: 		mdio_delay ();
fp@532: 	}
fp@532: #endif
fp@532: }
fp@532: 
fp@532: 
fp@532: static int rtl8139_open (struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	int retval;
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 
fp@532: 	retval = request_irq (dev->irq, rtl8139_interrupt, IRQF_SHARED, dev->name, dev);
fp@532: 	if (retval)
fp@532: 		return retval;
fp@532: 
fp@532: 	tp->tx_bufs = pci_alloc_consistent(tp->pci_dev, TX_BUF_TOT_LEN,
fp@532: 					   &tp->tx_bufs_dma);
fp@532: 	tp->rx_ring = pci_alloc_consistent(tp->pci_dev, RX_BUF_TOT_LEN,
fp@532: 					   &tp->rx_ring_dma);
fp@532: 	if (tp->tx_bufs == NULL || tp->rx_ring == NULL) {
fp@532: 		free_irq(dev->irq, dev);
fp@532: 
fp@532: 		if (tp->tx_bufs)
fp@532: 			pci_free_consistent(tp->pci_dev, TX_BUF_TOT_LEN,
fp@532: 					    tp->tx_bufs, tp->tx_bufs_dma);
fp@532: 		if (tp->rx_ring)
fp@532: 			pci_free_consistent(tp->pci_dev, RX_BUF_TOT_LEN,
fp@532: 					    tp->rx_ring, tp->rx_ring_dma);
fp@532: 
fp@532: 		return -ENOMEM;
fp@532: 
fp@532: 	}
fp@532: 
fp@532: 	tp->mii.full_duplex = tp->mii.force_media;
fp@532: 	tp->tx_flag = (TX_FIFO_THRESH << 11) & 0x003f0000;
fp@532: 
fp@532: 	rtl8139_init_ring (dev);
fp@532: 	rtl8139_hw_start (dev);
fp@532: 	netif_start_queue (dev);
fp@532: 
fp@532: 	if (netif_msg_ifup(tp))
fp@532: 		printk(KERN_DEBUG "%s: rtl8139_open() ioaddr %#llx IRQ %d"
fp@532: 			" GP Pins %2.2x %s-duplex.\n", dev->name,
fp@532: 			(unsigned long long)pci_resource_start (tp->pci_dev, 1),
fp@532: 			dev->irq, RTL_R8 (MediaStatus),
fp@532: 			tp->mii.full_duplex ? "full" : "half");
fp@532: 
fp@532: 	rtl8139_start_thread(tp);
fp@532: 
fp@532: 	return 0;
fp@532: }
fp@532: 
fp@532: 
fp@532: static void rtl_check_media (struct net_device *dev, unsigned int init_media)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 
fp@532: 	if (tp->phys[0] >= 0) {
fp@532: 		mii_check_media(&tp->mii, netif_msg_link(tp), init_media);
fp@532: 	}
fp@532: }
fp@532: 
fp@532: /* Start the hardware at open or resume. */
fp@532: static void rtl8139_hw_start (struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	u32 i;
fp@532: 	u8 tmp;
fp@532: 
fp@532: 	/* Bring old chips out of low-power mode. */
fp@532: 	if (rtl_chip_info[tp->chipset].flags & HasHltClk)
fp@532: 		RTL_W8 (HltClk, 'R');
fp@532: 
fp@532: 	rtl8139_chip_reset (ioaddr);
fp@532: 
fp@532: 	/* unlock Config[01234] and BMCR register writes */
fp@532: 	RTL_W8_F (Cfg9346, Cfg9346_Unlock);
fp@532: 	/* Restore our idea of the MAC address. */
fp@532: 	RTL_W32_F (MAC0 + 0, cpu_to_le32 (*(u32 *) (dev->dev_addr + 0)));
fp@532: 	RTL_W32_F (MAC0 + 4, cpu_to_le32 (*(u32 *) (dev->dev_addr + 4)));
fp@532: 
fp@532: 	/* Must enable Tx/Rx before setting transfer thresholds! */
fp@532: 	RTL_W8 (ChipCmd, CmdRxEnb | CmdTxEnb);
fp@532: 
fp@532: 	tp->rx_config = rtl8139_rx_config | AcceptBroadcast | AcceptMyPhys;
fp@532: 	RTL_W32 (RxConfig, tp->rx_config);
fp@532: 	RTL_W32 (TxConfig, rtl8139_tx_config);
fp@532: 
fp@532: 	tp->cur_rx = 0;
fp@532: 
fp@532: 	rtl_check_media (dev, 1);
fp@532: 
fp@532: 	if (tp->chipset >= CH_8139B) {
fp@532: 		/* Disable magic packet scanning, which is enabled
fp@532: 		 * when PM is enabled in Config1.  It can be reenabled
fp@532: 		 * via ETHTOOL_SWOL if desired.  */
fp@532: 		RTL_W8 (Config3, RTL_R8 (Config3) & ~Cfg3_Magic);
fp@532: 	}
fp@532: 
fp@532: 	DPRINTK("init buffer addresses\n");
fp@532: 
fp@532: 	/* Lock Config[01234] and BMCR register writes */
fp@532: 	RTL_W8 (Cfg9346, Cfg9346_Lock);
fp@532: 
fp@532: 	/* init Rx ring buffer DMA address */
fp@532: 	RTL_W32_F (RxBuf, tp->rx_ring_dma);
fp@532: 
fp@532: 	/* init Tx buffer DMA addresses */
fp@532: 	for (i = 0; i < NUM_TX_DESC; i++)
fp@532: 		RTL_W32_F (TxAddr0 + (i * 4), tp->tx_bufs_dma + (tp->tx_buf[i] - tp->tx_bufs));
fp@532: 
fp@532: 	RTL_W32 (RxMissed, 0);
fp@532: 
fp@532: 	rtl8139_set_rx_mode (dev);
fp@532: 
fp@532: 	/* no early-rx interrupts */
fp@532: 	RTL_W16 (MultiIntr, RTL_R16 (MultiIntr) & MultiIntrClear);
fp@532: 
fp@532: 	/* make sure RxTx has started */
fp@532: 	tmp = RTL_R8 (ChipCmd);
fp@532: 	if ((!(tmp & CmdRxEnb)) || (!(tmp & CmdTxEnb)))
fp@532: 		RTL_W8 (ChipCmd, CmdRxEnb | CmdTxEnb);
fp@532: 
fp@532: 	/* Enable all known interrupts by setting the interrupt mask. */
fp@532: 	RTL_W16 (IntrMask, rtl8139_intr_mask);
fp@532: }
fp@532: 
fp@532: 
fp@532: /* Initialize the Rx and Tx rings, along with various 'dev' bits. */
fp@532: static void rtl8139_init_ring (struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	int i;
fp@532: 
fp@532: 	tp->cur_rx = 0;
fp@532: 	tp->cur_tx = 0;
fp@532: 	tp->dirty_tx = 0;
fp@532: 
fp@532: 	for (i = 0; i < NUM_TX_DESC; i++)
fp@532: 		tp->tx_buf[i] = &tp->tx_bufs[i * TX_BUF_SIZE];
fp@532: }
fp@532: 
fp@532: 
fp@532: /* This must be global for CONFIG_8139TOO_TUNE_TWISTER case */
fp@532: static int next_tick = 3 * HZ;
fp@532: 
fp@532: #ifndef CONFIG_8139TOO_TUNE_TWISTER
fp@532: static inline void rtl8139_tune_twister (struct net_device *dev,
fp@532: 				  struct rtl8139_private *tp) {}
fp@532: #else
fp@532: enum TwisterParamVals {
fp@532: 	PARA78_default	= 0x78fa8388,
fp@532: 	PARA7c_default	= 0xcb38de43,	/* param[0][3] */
fp@532: 	PARA7c_xxx	= 0xcb38de43,
fp@532: };
fp@532: 
fp@532: static const unsigned long param[4][4] = {
fp@532: 	{0xcb39de43, 0xcb39ce43, 0xfb38de03, 0xcb38de43},
fp@532: 	{0xcb39de43, 0xcb39ce43, 0xcb39ce83, 0xcb39ce83},
fp@532: 	{0xcb39de43, 0xcb39ce43, 0xcb39ce83, 0xcb39ce83},
fp@532: 	{0xbb39de43, 0xbb39ce43, 0xbb39ce83, 0xbb39ce83}
fp@532: };
fp@532: 
fp@532: static void rtl8139_tune_twister (struct net_device *dev,
fp@532: 				  struct rtl8139_private *tp)
fp@532: {
fp@532: 	int linkcase;
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 
fp@532: 	/* This is a complicated state machine to configure the "twister" for
fp@532: 	   impedance/echos based on the cable length.
fp@532: 	   All of this is magic and undocumented.
fp@532: 	 */
fp@532: 	switch (tp->twistie) {
fp@532: 	case 1:
fp@532: 		if (RTL_R16 (CSCR) & CSCR_LinkOKBit) {
fp@532: 			/* We have link beat, let us tune the twister. */
fp@532: 			RTL_W16 (CSCR, CSCR_LinkDownOffCmd);
fp@532: 			tp->twistie = 2;	/* Change to state 2. */
fp@532: 			next_tick = HZ / 10;
fp@532: 		} else {
fp@532: 			/* Just put in some reasonable defaults for when beat returns. */
fp@532: 			RTL_W16 (CSCR, CSCR_LinkDownCmd);
fp@532: 			RTL_W32 (FIFOTMS, 0x20);	/* Turn on cable test mode. */
fp@532: 			RTL_W32 (PARA78, PARA78_default);
fp@532: 			RTL_W32 (PARA7c, PARA7c_default);
fp@532: 			tp->twistie = 0;	/* Bail from future actions. */
fp@532: 		}
fp@532: 		break;
fp@532: 	case 2:
fp@532: 		/* Read how long it took to hear the echo. */
fp@532: 		linkcase = RTL_R16 (CSCR) & CSCR_LinkStatusBits;
fp@532: 		if (linkcase == 0x7000)
fp@532: 			tp->twist_row = 3;
fp@532: 		else if (linkcase == 0x3000)
fp@532: 			tp->twist_row = 2;
fp@532: 		else if (linkcase == 0x1000)
fp@532: 			tp->twist_row = 1;
fp@532: 		else
fp@532: 			tp->twist_row = 0;
fp@532: 		tp->twist_col = 0;
fp@532: 		tp->twistie = 3;	/* Change to state 2. */
fp@532: 		next_tick = HZ / 10;
fp@532: 		break;
fp@532: 	case 3:
fp@532: 		/* Put out four tuning parameters, one per 100msec. */
fp@532: 		if (tp->twist_col == 0)
fp@532: 			RTL_W16 (FIFOTMS, 0);
fp@532: 		RTL_W32 (PARA7c, param[(int) tp->twist_row]
fp@532: 			 [(int) tp->twist_col]);
fp@532: 		next_tick = HZ / 10;
fp@532: 		if (++tp->twist_col >= 4) {
fp@532: 			/* For short cables we are done.
fp@532: 			   For long cables (row == 3) check for mistune. */
fp@532: 			tp->twistie =
fp@532: 			    (tp->twist_row == 3) ? 4 : 0;
fp@532: 		}
fp@532: 		break;
fp@532: 	case 4:
fp@532: 		/* Special case for long cables: check for mistune. */
fp@532: 		if ((RTL_R16 (CSCR) &
fp@532: 		     CSCR_LinkStatusBits) == 0x7000) {
fp@532: 			tp->twistie = 0;
fp@532: 			break;
fp@532: 		} else {
fp@532: 			RTL_W32 (PARA7c, 0xfb38de03);
fp@532: 			tp->twistie = 5;
fp@532: 			next_tick = HZ / 10;
fp@532: 		}
fp@532: 		break;
fp@532: 	case 5:
fp@532: 		/* Retune for shorter cable (column 2). */
fp@532: 		RTL_W32 (FIFOTMS, 0x20);
fp@532: 		RTL_W32 (PARA78, PARA78_default);
fp@532: 		RTL_W32 (PARA7c, PARA7c_default);
fp@532: 		RTL_W32 (FIFOTMS, 0x00);
fp@532: 		tp->twist_row = 2;
fp@532: 		tp->twist_col = 0;
fp@532: 		tp->twistie = 3;
fp@532: 		next_tick = HZ / 10;
fp@532: 		break;
fp@532: 
fp@532: 	default:
fp@532: 		/* do nothing */
fp@532: 		break;
fp@532: 	}
fp@532: }
fp@532: #endif /* CONFIG_8139TOO_TUNE_TWISTER */
fp@532: 
fp@532: static inline void rtl8139_thread_iter (struct net_device *dev,
fp@532: 				 struct rtl8139_private *tp,
fp@532: 				 void __iomem *ioaddr)
fp@532: {
fp@532: 	int mii_lpa;
fp@532: 
fp@532: 	mii_lpa = mdio_read (dev, tp->phys[0], MII_LPA);
fp@532: 
fp@532: 	if (!tp->mii.force_media && mii_lpa != 0xffff) {
fp@532: 		int duplex = (mii_lpa & LPA_100FULL)
fp@532: 		    || (mii_lpa & 0x01C0) == 0x0040;
fp@532: 		if (tp->mii.full_duplex != duplex) {
fp@532: 			tp->mii.full_duplex = duplex;
fp@532: 
fp@532: 			if (mii_lpa) {
fp@532: 				printk (KERN_INFO
fp@532: 					"%s: Setting %s-duplex based on MII #%d link"
fp@532: 					" partner ability of %4.4x.\n",
fp@532: 					dev->name,
fp@532: 					tp->mii.full_duplex ? "full" : "half",
fp@532: 					tp->phys[0], mii_lpa);
fp@532: 			} else {
fp@532: 				printk(KERN_INFO"%s: media is unconnected, link down, or incompatible connection\n",
fp@532: 				       dev->name);
fp@532: 			}
fp@532: #if 0
fp@532: 			RTL_W8 (Cfg9346, Cfg9346_Unlock);
fp@532: 			RTL_W8 (Config1, tp->mii.full_duplex ? 0x60 : 0x20);
fp@532: 			RTL_W8 (Cfg9346, Cfg9346_Lock);
fp@532: #endif
fp@532: 		}
fp@532: 	}
fp@532: 
fp@532: 	next_tick = HZ * 60;
fp@532: 
fp@532: 	rtl8139_tune_twister (dev, tp);
fp@532: 
fp@532: 	DPRINTK ("%s: Media selection tick, Link partner %4.4x.\n",
fp@532: 		 dev->name, RTL_R16 (NWayLPAR));
fp@532: 	DPRINTK ("%s:  Other registers are IntMask %4.4x IntStatus %4.4x\n",
fp@532: 		 dev->name, RTL_R16 (IntrMask), RTL_R16 (IntrStatus));
fp@532: 	DPRINTK ("%s:  Chip config %2.2x %2.2x.\n",
fp@532: 		 dev->name, RTL_R8 (Config0),
fp@532: 		 RTL_R8 (Config1));
fp@532: }
fp@532: 
fp@532: static void rtl8139_thread (void *_data)
fp@532: {
fp@532: 	struct net_device *dev = _data;
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	unsigned long thr_delay = next_tick;
fp@532: 
fp@532: 	if (tp->watchdog_fired) {
fp@532: 		tp->watchdog_fired = 0;
fp@532: 		rtl8139_tx_timeout_task(_data);
fp@532: 	} else if (rtnl_trylock()) {
fp@532: 		rtl8139_thread_iter (dev, tp, tp->mmio_addr);
fp@532: 		rtnl_unlock ();
fp@532: 	} else {
fp@532: 		/* unlikely race.  mitigate with fast poll. */
fp@532: 		thr_delay = HZ / 2;
fp@532: 	}
fp@532: 
fp@532: 	schedule_delayed_work(&tp->thread, thr_delay);
fp@532: }
fp@532: 
fp@532: static void rtl8139_start_thread(struct rtl8139_private *tp)
fp@532: {
fp@532: 	tp->twistie = 0;
fp@532: 	if (tp->chipset == CH_8139_K)
fp@532: 		tp->twistie = 1;
fp@532: 	else if (tp->drv_flags & HAS_LNK_CHNG)
fp@532: 		return;
fp@532: 
fp@532: 	tp->have_thread = 1;
fp@532: 
fp@532: 	schedule_delayed_work(&tp->thread, next_tick);
fp@532: }
fp@532: 
fp@532: static void rtl8139_stop_thread(struct rtl8139_private *tp)
fp@532: {
fp@532: 	if (tp->have_thread) {
fp@532: 		cancel_rearming_delayed_work(&tp->thread);
fp@532: 		tp->have_thread = 0;
fp@532: 	} else
fp@532: 		flush_scheduled_work();
fp@532: }
fp@532: 
fp@532: static inline void rtl8139_tx_clear (struct rtl8139_private *tp)
fp@532: {
fp@532: 	tp->cur_tx = 0;
fp@532: 	tp->dirty_tx = 0;
fp@532: 
fp@532: 	/* XXX account for unsent Tx packets in tp->stats.tx_dropped */
fp@532: }
fp@532: 
fp@532: static void rtl8139_tx_timeout_task (void *_data)
fp@532: {
fp@532: 	struct net_device *dev = _data;
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	int i;
fp@532: 	u8 tmp8;
fp@532: 
fp@532: 	printk (KERN_DEBUG "%s: Transmit timeout, status %2.2x %4.4x %4.4x "
fp@532: 		"media %2.2x.\n", dev->name, RTL_R8 (ChipCmd),
fp@532: 		RTL_R16(IntrStatus), RTL_R16(IntrMask), RTL_R8(MediaStatus));
fp@532: 	/* Emit info to figure out what went wrong. */
fp@532: 	printk (KERN_DEBUG "%s: Tx queue start entry %ld  dirty entry %ld.\n",
fp@532: 		dev->name, tp->cur_tx, tp->dirty_tx);
fp@532: 	for (i = 0; i < NUM_TX_DESC; i++)
fp@532: 		printk (KERN_DEBUG "%s:  Tx descriptor %d is %8.8lx.%s\n",
fp@532: 			dev->name, i, RTL_R32 (TxStatus0 + (i * 4)),
fp@532: 			i == tp->dirty_tx % NUM_TX_DESC ?
fp@532: 				" (queue head)" : "");
fp@532: 
fp@532: 	tp->xstats.tx_timeouts++;
fp@532: 
fp@532: 	/* disable Tx ASAP, if not already */
fp@532: 	tmp8 = RTL_R8 (ChipCmd);
fp@532: 	if (tmp8 & CmdTxEnb)
fp@532: 		RTL_W8 (ChipCmd, CmdRxEnb);
fp@532: 
fp@532: 	spin_lock_bh(&tp->rx_lock);
fp@532: 	/* Disable interrupts by clearing the interrupt mask. */
fp@532: 	RTL_W16 (IntrMask, 0x0000);
fp@532: 
fp@532: 	/* Stop a shared interrupt from scavenging while we are. */
fp@532: 	spin_lock_irq(&tp->lock);
fp@532: 	rtl8139_tx_clear (tp);
fp@532: 	spin_unlock_irq(&tp->lock);
fp@532: 
fp@532: 	/* ...and finally, reset everything */
fp@532: 	if (netif_running(dev)) {
fp@532: 		rtl8139_hw_start (dev);
fp@532: 		netif_wake_queue (dev);
fp@532: 	}
fp@532: 	spin_unlock_bh(&tp->rx_lock);
fp@532: }
fp@532: 
fp@532: static void rtl8139_tx_timeout (struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 
fp@532: 	if (!tp->have_thread) {
fp@532: 		INIT_WORK(&tp->thread, rtl8139_tx_timeout_task, dev);
fp@532: 		schedule_delayed_work(&tp->thread, next_tick);
fp@532: 	} else
fp@532: 		tp->watchdog_fired = 1;
fp@532: 
fp@532: }
fp@532: 
fp@532: static int rtl8139_start_xmit (struct sk_buff *skb, struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	unsigned int entry;
fp@532: 	unsigned int len = skb->len;
fp@532: 	unsigned long flags;
fp@532: 
fp@532: 	/* Calculate the next Tx descriptor entry. */
fp@532: 	entry = tp->cur_tx % NUM_TX_DESC;
fp@532: 
fp@532: 	/* Note: the chip doesn't have auto-pad! */
fp@532: 	if (likely(len < TX_BUF_SIZE)) {
fp@532: 		if (len < ETH_ZLEN)
fp@532: 			memset(tp->tx_buf[entry], 0, ETH_ZLEN);
fp@532: 		skb_copy_and_csum_dev(skb, tp->tx_buf[entry]);
fp@532: 		dev_kfree_skb(skb);
fp@532: 	} else {
fp@532: 		dev_kfree_skb(skb);
fp@532: 		tp->stats.tx_dropped++;
fp@532: 		return 0;
fp@532: 	}
fp@532: 
fp@532: 	spin_lock_irqsave(&tp->lock, flags);
fp@532: 	RTL_W32_F (TxStatus0 + (entry * sizeof (u32)),
fp@532: 		   tp->tx_flag | max(len, (unsigned int)ETH_ZLEN));
fp@532: 
fp@532: 	dev->trans_start = jiffies;
fp@532: 
fp@532: 	tp->cur_tx++;
fp@532: 	wmb();
fp@532: 
fp@532: 	if ((tp->cur_tx - NUM_TX_DESC) == tp->dirty_tx)
fp@532: 		netif_stop_queue (dev);
fp@532: 	spin_unlock_irqrestore(&tp->lock, flags);
fp@532: 
fp@532: 	if (netif_msg_tx_queued(tp))
fp@532: 		printk (KERN_DEBUG "%s: Queued Tx packet size %u to slot %d.\n",
fp@532: 			dev->name, len, entry);
fp@532: 
fp@532: 	return 0;
fp@532: }
fp@532: 
fp@532: 
fp@532: static void rtl8139_tx_interrupt (struct net_device *dev,
fp@532: 				  struct rtl8139_private *tp,
fp@532: 				  void __iomem *ioaddr)
fp@532: {
fp@532: 	unsigned long dirty_tx, tx_left;
fp@532: 
fp@532: 	assert (dev != NULL);
fp@532: 	assert (ioaddr != NULL);
fp@532: 
fp@532: 	dirty_tx = tp->dirty_tx;
fp@532: 	tx_left = tp->cur_tx - dirty_tx;
fp@532: 	while (tx_left > 0) {
fp@532: 		int entry = dirty_tx % NUM_TX_DESC;
fp@532: 		int txstatus;
fp@532: 
fp@532: 		txstatus = RTL_R32 (TxStatus0 + (entry * sizeof (u32)));
fp@532: 
fp@532: 		if (!(txstatus & (TxStatOK | TxUnderrun | TxAborted)))
fp@532: 			break;	/* It still hasn't been Txed */
fp@532: 
fp@532: 		/* Note: TxCarrierLost is always asserted at 100mbps. */
fp@532: 		if (txstatus & (TxOutOfWindow | TxAborted)) {
fp@532: 			/* There was an major error, log it. */
fp@532: 			if (netif_msg_tx_err(tp))
fp@532: 				printk(KERN_DEBUG "%s: Transmit error, Tx status %8.8x.\n",
fp@532: 					dev->name, txstatus);
fp@532: 			tp->stats.tx_errors++;
fp@532: 			if (txstatus & TxAborted) {
fp@532: 				tp->stats.tx_aborted_errors++;
fp@532: 				RTL_W32 (TxConfig, TxClearAbt);
fp@532: 				RTL_W16 (IntrStatus, TxErr);
fp@532: 				wmb();
fp@532: 			}
fp@532: 			if (txstatus & TxCarrierLost)
fp@532: 				tp->stats.tx_carrier_errors++;
fp@532: 			if (txstatus & TxOutOfWindow)
fp@532: 				tp->stats.tx_window_errors++;
fp@532: 		} else {
fp@532: 			if (txstatus & TxUnderrun) {
fp@532: 				/* Add 64 to the Tx FIFO threshold. */
fp@532: 				if (tp->tx_flag < 0x00300000)
fp@532: 					tp->tx_flag += 0x00020000;
fp@532: 				tp->stats.tx_fifo_errors++;
fp@532: 			}
fp@532: 			tp->stats.collisions += (txstatus >> 24) & 15;
fp@532: 			tp->stats.tx_bytes += txstatus & 0x7ff;
fp@532: 			tp->stats.tx_packets++;
fp@532: 		}
fp@532: 
fp@532: 		dirty_tx++;
fp@532: 		tx_left--;
fp@532: 	}
fp@532: 
fp@532: #ifndef RTL8139_NDEBUG
fp@532: 	if (tp->cur_tx - dirty_tx > NUM_TX_DESC) {
fp@532: 		printk (KERN_ERR "%s: Out-of-sync dirty pointer, %ld vs. %ld.\n",
fp@532: 		        dev->name, dirty_tx, tp->cur_tx);
fp@532: 		dirty_tx += NUM_TX_DESC;
fp@532: 	}
fp@532: #endif /* RTL8139_NDEBUG */
fp@532: 
fp@532: 	/* only wake the queue if we did work, and the queue is stopped */
fp@532: 	if (tp->dirty_tx != dirty_tx) {
fp@532: 		tp->dirty_tx = dirty_tx;
fp@532: 		mb();
fp@532: 		netif_wake_queue (dev);
fp@532: 	}
fp@532: }
fp@532: 
fp@532: 
fp@532: /* TODO: clean this up!  Rx reset need not be this intensive */
fp@532: static void rtl8139_rx_err (u32 rx_status, struct net_device *dev,
fp@532: 			    struct rtl8139_private *tp, void __iomem *ioaddr)
fp@532: {
fp@532: 	u8 tmp8;
fp@532: #ifdef CONFIG_8139_OLD_RX_RESET
fp@532: 	int tmp_work;
fp@532: #endif
fp@532: 
fp@532: 	if (netif_msg_rx_err (tp))
fp@532: 		printk(KERN_DEBUG "%s: Ethernet frame had errors, status %8.8x.\n",
fp@532: 			dev->name, rx_status);
fp@532: 	tp->stats.rx_errors++;
fp@532: 	if (!(rx_status & RxStatusOK)) {
fp@532: 		if (rx_status & RxTooLong) {
fp@532: 			DPRINTK ("%s: Oversized Ethernet frame, status %4.4x!\n",
fp@532: 			 	dev->name, rx_status);
fp@532: 			/* A.C.: The chip hangs here. */
fp@532: 		}
fp@532: 		if (rx_status & (RxBadSymbol | RxBadAlign))
fp@532: 			tp->stats.rx_frame_errors++;
fp@532: 		if (rx_status & (RxRunt | RxTooLong))
fp@532: 			tp->stats.rx_length_errors++;
fp@532: 		if (rx_status & RxCRCErr)
fp@532: 			tp->stats.rx_crc_errors++;
fp@532: 	} else {
fp@532: 		tp->xstats.rx_lost_in_ring++;
fp@532: 	}
fp@532: 
fp@532: #ifndef CONFIG_8139_OLD_RX_RESET
fp@532: 	tmp8 = RTL_R8 (ChipCmd);
fp@532: 	RTL_W8 (ChipCmd, tmp8 & ~CmdRxEnb);
fp@532: 	RTL_W8 (ChipCmd, tmp8);
fp@532: 	RTL_W32 (RxConfig, tp->rx_config);
fp@532: 	tp->cur_rx = 0;
fp@532: #else
fp@532: 	/* Reset the receiver, based on RealTek recommendation. (Bug?) */
fp@532: 
fp@532: 	/* disable receive */
fp@532: 	RTL_W8_F (ChipCmd, CmdTxEnb);
fp@532: 	tmp_work = 200;
fp@532: 	while (--tmp_work > 0) {
fp@532: 		udelay(1);
fp@532: 		tmp8 = RTL_R8 (ChipCmd);
fp@532: 		if (!(tmp8 & CmdRxEnb))
fp@532: 			break;
fp@532: 	}
fp@532: 	if (tmp_work <= 0)
fp@532: 		printk (KERN_WARNING PFX "rx stop wait too long\n");
fp@532: 	/* restart receive */
fp@532: 	tmp_work = 200;
fp@532: 	while (--tmp_work > 0) {
fp@532: 		RTL_W8_F (ChipCmd, CmdRxEnb | CmdTxEnb);
fp@532: 		udelay(1);
fp@532: 		tmp8 = RTL_R8 (ChipCmd);
fp@532: 		if ((tmp8 & CmdRxEnb) && (tmp8 & CmdTxEnb))
fp@532: 			break;
fp@532: 	}
fp@532: 	if (tmp_work <= 0)
fp@532: 		printk (KERN_WARNING PFX "tx/rx enable wait too long\n");
fp@532: 
fp@532: 	/* and reinitialize all rx related registers */
fp@532: 	RTL_W8_F (Cfg9346, Cfg9346_Unlock);
fp@532: 	/* Must enable Tx/Rx before setting transfer thresholds! */
fp@532: 	RTL_W8 (ChipCmd, CmdRxEnb | CmdTxEnb);
fp@532: 
fp@532: 	tp->rx_config = rtl8139_rx_config | AcceptBroadcast | AcceptMyPhys;
fp@532: 	RTL_W32 (RxConfig, tp->rx_config);
fp@532: 	tp->cur_rx = 0;
fp@532: 
fp@532: 	DPRINTK("init buffer addresses\n");
fp@532: 
fp@532: 	/* Lock Config[01234] and BMCR register writes */
fp@532: 	RTL_W8 (Cfg9346, Cfg9346_Lock);
fp@532: 
fp@532: 	/* init Rx ring buffer DMA address */
fp@532: 	RTL_W32_F (RxBuf, tp->rx_ring_dma);
fp@532: 
fp@532: 	/* A.C.: Reset the multicast list. */
fp@532: 	__set_rx_mode (dev);
fp@532: #endif
fp@532: }
fp@532: 
fp@532: #if RX_BUF_IDX == 3
fp@532: static __inline__ void wrap_copy(struct sk_buff *skb, const unsigned char *ring,
fp@532: 				 u32 offset, unsigned int size)
fp@532: {
fp@532: 	u32 left = RX_BUF_LEN - offset;
fp@532: 
fp@532: 	if (size > left) {
fp@532: 		memcpy(skb->data, ring + offset, left);
fp@532: 		memcpy(skb->data+left, ring, size - left);
fp@532: 	} else
fp@532: 		memcpy(skb->data, ring + offset, size);
fp@532: }
fp@532: #endif
fp@532: 
fp@532: static void rtl8139_isr_ack(struct rtl8139_private *tp)
fp@532: {
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	u16 status;
fp@532: 
fp@532: 	status = RTL_R16 (IntrStatus) & RxAckBits;
fp@532: 
fp@532: 	/* Clear out errors and receive interrupts */
fp@532: 	if (likely(status != 0)) {
fp@532: 		if (unlikely(status & (RxFIFOOver | RxOverflow))) {
fp@532: 			tp->stats.rx_errors++;
fp@532: 			if (status & RxFIFOOver)
fp@532: 				tp->stats.rx_fifo_errors++;
fp@532: 		}
fp@532: 		RTL_W16_F (IntrStatus, RxAckBits);
fp@532: 	}
fp@532: }
fp@532: 
fp@532: static int rtl8139_rx(struct net_device *dev, struct rtl8139_private *tp,
fp@532: 		      int budget)
fp@532: {
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	int received = 0;
fp@532: 	unsigned char *rx_ring = tp->rx_ring;
fp@532: 	unsigned int cur_rx = tp->cur_rx;
fp@532: 	unsigned int rx_size = 0;
fp@532: 
fp@532: 	DPRINTK ("%s: In rtl8139_rx(), current %4.4x BufAddr %4.4x,"
fp@532: 		 " free to %4.4x, Cmd %2.2x.\n", dev->name, (u16)cur_rx,
fp@532: 		 RTL_R16 (RxBufAddr),
fp@532: 		 RTL_R16 (RxBufPtr), RTL_R8 (ChipCmd));
fp@532: 
fp@532: 	while (netif_running(dev) && received < budget
fp@532: 	       && (RTL_R8 (ChipCmd) & RxBufEmpty) == 0) {
fp@532: 		u32 ring_offset = cur_rx % RX_BUF_LEN;
fp@532: 		u32 rx_status;
fp@532: 		unsigned int pkt_size;
fp@532: 		struct sk_buff *skb;
fp@532: 
fp@532: 		rmb();
fp@532: 
fp@532: 		/* read size+status of next frame from DMA ring buffer */
fp@532: 		rx_status = le32_to_cpu (*(u32 *) (rx_ring + ring_offset));
fp@532: 		rx_size = rx_status >> 16;
fp@532: 		pkt_size = rx_size - 4;
fp@532: 
fp@532: 		if (netif_msg_rx_status(tp))
fp@532: 			printk(KERN_DEBUG "%s:  rtl8139_rx() status %4.4x, size %4.4x,"
fp@532: 				" cur %4.4x.\n", dev->name, rx_status,
fp@532: 			 rx_size, cur_rx);
fp@532: #if RTL8139_DEBUG > 2
fp@532: 		{
fp@532: 			int i;
fp@532: 			DPRINTK ("%s: Frame contents ", dev->name);
fp@532: 			for (i = 0; i < 70; i++)
fp@532: 				printk (" %2.2x",
fp@532: 					rx_ring[ring_offset + i]);
fp@532: 			printk (".\n");
fp@532: 		}
fp@532: #endif
fp@532: 
fp@532: 		/* Packet copy from FIFO still in progress.
fp@532: 		 * Theoretically, this should never happen
fp@532: 		 * since EarlyRx is disabled.
fp@532: 		 */
fp@532: 		if (unlikely(rx_size == 0xfff0)) {
fp@532: 			if (!tp->fifo_copy_timeout)
fp@532: 				tp->fifo_copy_timeout = jiffies + 2;
fp@532: 			else if (time_after(jiffies, tp->fifo_copy_timeout)) {
fp@532: 				DPRINTK ("%s: hung FIFO. Reset.", dev->name);
fp@532: 				rx_size = 0;
fp@532: 				goto no_early_rx;
fp@532: 			}
fp@532: 			if (netif_msg_intr(tp)) {
fp@532: 				printk(KERN_DEBUG "%s: fifo copy in progress.",
fp@532: 				       dev->name);
fp@532: 			}
fp@532: 			tp->xstats.early_rx++;
fp@532: 			break;
fp@532: 		}
fp@532: 
fp@532: no_early_rx:
fp@532: 		tp->fifo_copy_timeout = 0;
fp@532: 
fp@532: 		/* If Rx err or invalid rx_size/rx_status received
fp@532: 		 * (which happens if we get lost in the ring),
fp@532: 		 * Rx process gets reset, so we abort any further
fp@532: 		 * Rx processing.
fp@532: 		 */
fp@532: 		if (unlikely((rx_size > (MAX_ETH_FRAME_SIZE+4)) ||
fp@532: 			     (rx_size < 8) ||
fp@532: 			     (!(rx_status & RxStatusOK)))) {
fp@532: 			rtl8139_rx_err (rx_status, dev, tp, ioaddr);
fp@532: 			received = -1;
fp@532: 			goto out;
fp@532: 		}
fp@532: 
fp@532: 		/* Malloc up new buffer, compatible with net-2e. */
fp@532: 		/* Omit the four octet CRC from the length. */
fp@532: 
fp@532: 		skb = dev_alloc_skb (pkt_size + 2);
fp@532: 		if (likely(skb)) {
fp@532: 			skb->dev = dev;
fp@532: 			skb_reserve (skb, 2);	/* 16 byte align the IP fields. */
fp@532: #if RX_BUF_IDX == 3
fp@532: 			wrap_copy(skb, rx_ring, ring_offset+4, pkt_size);
fp@532: #else
fp@532: 			eth_copy_and_sum (skb, &rx_ring[ring_offset + 4], pkt_size, 0);
fp@532: #endif
fp@532: 			skb_put (skb, pkt_size);
fp@532: 
fp@532: 			skb->protocol = eth_type_trans (skb, dev);
fp@532: 
fp@532: 			dev->last_rx = jiffies;
fp@532: 			tp->stats.rx_bytes += pkt_size;
fp@532: 			tp->stats.rx_packets++;
fp@532: 
fp@532: 			netif_receive_skb (skb);
fp@532: 		} else {
fp@532: 			if (net_ratelimit())
fp@532: 				printk (KERN_WARNING
fp@532: 					"%s: Memory squeeze, dropping packet.\n",
fp@532: 					dev->name);
fp@532: 			tp->stats.rx_dropped++;
fp@532: 		}
fp@532: 		received++;
fp@532: 
fp@532: 		cur_rx = (cur_rx + rx_size + 4 + 3) & ~3;
fp@532: 		RTL_W16 (RxBufPtr, (u16) (cur_rx - 16));
fp@532: 
fp@532: 		rtl8139_isr_ack(tp);
fp@532: 	}
fp@532: 
fp@532: 	if (unlikely(!received || rx_size == 0xfff0))
fp@532: 		rtl8139_isr_ack(tp);
fp@532: 
fp@532: #if RTL8139_DEBUG > 1
fp@532: 	DPRINTK ("%s: Done rtl8139_rx(), current %4.4x BufAddr %4.4x,"
fp@532: 		 " free to %4.4x, Cmd %2.2x.\n", dev->name, cur_rx,
fp@532: 		 RTL_R16 (RxBufAddr),
fp@532: 		 RTL_R16 (RxBufPtr), RTL_R8 (ChipCmd));
fp@532: #endif
fp@532: 
fp@532: 	tp->cur_rx = cur_rx;
fp@532: 
fp@532: 	/*
fp@532: 	 * The receive buffer should be mostly empty.
fp@532: 	 * Tell NAPI to reenable the Rx irq.
fp@532: 	 */
fp@532: 	if (tp->fifo_copy_timeout)
fp@532: 		received = budget;
fp@532: 
fp@532: out:
fp@532: 	return received;
fp@532: }
fp@532: 
fp@532: 
fp@532: static void rtl8139_weird_interrupt (struct net_device *dev,
fp@532: 				     struct rtl8139_private *tp,
fp@532: 				     void __iomem *ioaddr,
fp@532: 				     int status, int link_changed)
fp@532: {
fp@532: 	DPRINTK ("%s: Abnormal interrupt, status %8.8x.\n",
fp@532: 		 dev->name, status);
fp@532: 
fp@532: 	assert (dev != NULL);
fp@532: 	assert (tp != NULL);
fp@532: 	assert (ioaddr != NULL);
fp@532: 
fp@532: 	/* Update the error count. */
fp@532: 	tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
fp@532: 	RTL_W32 (RxMissed, 0);
fp@532: 
fp@532: 	if ((status & RxUnderrun) && link_changed &&
fp@532: 	    (tp->drv_flags & HAS_LNK_CHNG)) {
fp@532: 		rtl_check_media(dev, 0);
fp@532: 		status &= ~RxUnderrun;
fp@532: 	}
fp@532: 
fp@532: 	if (status & (RxUnderrun | RxErr))
fp@532: 		tp->stats.rx_errors++;
fp@532: 
fp@532: 	if (status & PCSTimeout)
fp@532: 		tp->stats.rx_length_errors++;
fp@532: 	if (status & RxUnderrun)
fp@532: 		tp->stats.rx_fifo_errors++;
fp@532: 	if (status & PCIErr) {
fp@532: 		u16 pci_cmd_status;
fp@532: 		pci_read_config_word (tp->pci_dev, PCI_STATUS, &pci_cmd_status);
fp@532: 		pci_write_config_word (tp->pci_dev, PCI_STATUS, pci_cmd_status);
fp@532: 
fp@532: 		printk (KERN_ERR "%s: PCI Bus error %4.4x.\n",
fp@532: 			dev->name, pci_cmd_status);
fp@532: 	}
fp@532: }
fp@532: 
fp@532: static int rtl8139_poll(struct net_device *dev, int *budget)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	int orig_budget = min(*budget, dev->quota);
fp@532: 	int done = 1;
fp@532: 
fp@532: 	spin_lock(&tp->rx_lock);
fp@532: 	if (likely(RTL_R16(IntrStatus) & RxAckBits)) {
fp@532: 		int work_done;
fp@532: 
fp@532: 		work_done = rtl8139_rx(dev, tp, orig_budget);
fp@532: 		if (likely(work_done > 0)) {
fp@532: 			*budget -= work_done;
fp@532: 			dev->quota -= work_done;
fp@532: 			done = (work_done < orig_budget);
fp@532: 		}
fp@532: 	}
fp@532: 
fp@532: 	if (done) {
fp@532: 		/*
fp@532: 		 * Order is important since data can get interrupted
fp@532: 		 * again when we think we are done.
fp@532: 		 */
fp@532: 		local_irq_disable();
fp@532: 		RTL_W16_F(IntrMask, rtl8139_intr_mask);
fp@532: 		__netif_rx_complete(dev);
fp@532: 		local_irq_enable();
fp@532: 	}
fp@532: 	spin_unlock(&tp->rx_lock);
fp@532: 
fp@532: 	return !done;
fp@532: }
fp@532: 
fp@532: /* The interrupt handler does all of the Rx thread work and cleans up
fp@532:    after the Tx thread. */
fp@532: static irqreturn_t rtl8139_interrupt (int irq, void *dev_instance,
fp@532: 			       struct pt_regs *regs)
fp@532: {
fp@532: 	struct net_device *dev = (struct net_device *) dev_instance;
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	u16 status, ackstat;
fp@532: 	int link_changed = 0; /* avoid bogus "uninit" warning */
fp@532: 	int handled = 0;
fp@532: 
fp@532: 	spin_lock (&tp->lock);
fp@532: 	status = RTL_R16 (IntrStatus);
fp@532: 
fp@532: 	/* shared irq? */
fp@532: 	if (unlikely((status & rtl8139_intr_mask) == 0))
fp@532: 		goto out;
fp@532: 
fp@532: 	handled = 1;
fp@532: 
fp@532: 	/* h/w no longer present (hotplug?) or major error, bail */
fp@532: 	if (unlikely(status == 0xFFFF))
fp@532: 		goto out;
fp@532: 
fp@532: 	/* close possible race's with dev_close */
fp@532: 	if (unlikely(!netif_running(dev))) {
fp@532: 		RTL_W16 (IntrMask, 0);
fp@532: 		goto out;
fp@532: 	}
fp@532: 
fp@532: 	/* Acknowledge all of the current interrupt sources ASAP, but
fp@532: 	   an first get an additional status bit from CSCR. */
fp@532: 	if (unlikely(status & RxUnderrun))
fp@532: 		link_changed = RTL_R16 (CSCR) & CSCR_LinkChangeBit;
fp@532: 
fp@532: 	ackstat = status & ~(RxAckBits | TxErr);
fp@532: 	if (ackstat)
fp@532: 		RTL_W16 (IntrStatus, ackstat);
fp@532: 
fp@532: 	/* Receive packets are processed by poll routine.
fp@532: 	   If not running start it now. */
fp@532: 	if (status & RxAckBits){
fp@532: 		if (netif_rx_schedule_prep(dev)) {
fp@532: 			RTL_W16_F (IntrMask, rtl8139_norx_intr_mask);
fp@532: 			__netif_rx_schedule (dev);
fp@532: 		}
fp@532: 	}
fp@532: 
fp@532: 	/* Check uncommon events with one test. */
fp@532: 	if (unlikely(status & (PCIErr | PCSTimeout | RxUnderrun | RxErr)))
fp@532: 		rtl8139_weird_interrupt (dev, tp, ioaddr,
fp@532: 					 status, link_changed);
fp@532: 
fp@532: 	if (status & (TxOK | TxErr)) {
fp@532: 		rtl8139_tx_interrupt (dev, tp, ioaddr);
fp@532: 		if (status & TxErr)
fp@532: 			RTL_W16 (IntrStatus, TxErr);
fp@532: 	}
fp@532:  out:
fp@532: 	spin_unlock (&tp->lock);
fp@532: 
fp@532: 	DPRINTK ("%s: exiting interrupt, intr_status=%#4.4x.\n",
fp@532: 		 dev->name, RTL_R16 (IntrStatus));
fp@532: 	return IRQ_RETVAL(handled);
fp@532: }
fp@532: 
fp@532: #ifdef CONFIG_NET_POLL_CONTROLLER
fp@532: /*
fp@532:  * Polling receive - used by netconsole and other diagnostic tools
fp@532:  * to allow network i/o with interrupts disabled.
fp@532:  */
fp@532: static void rtl8139_poll_controller(struct net_device *dev)
fp@532: {
fp@532: 	disable_irq(dev->irq);
fp@532: 	rtl8139_interrupt(dev->irq, dev, NULL);
fp@532: 	enable_irq(dev->irq);
fp@532: }
fp@532: #endif
fp@532: 
fp@532: static int rtl8139_close (struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	unsigned long flags;
fp@532: 
fp@532: 	netif_stop_queue (dev);
fp@532: 
fp@532: 	rtl8139_stop_thread(tp);
fp@532: 
fp@532: 	if (netif_msg_ifdown(tp))
fp@532: 		printk(KERN_DEBUG "%s: Shutting down ethercard, status was 0x%4.4x.\n",
fp@532: 			dev->name, RTL_R16 (IntrStatus));
fp@532: 
fp@532: 	spin_lock_irqsave (&tp->lock, flags);
fp@532: 
fp@532: 	/* Stop the chip's Tx and Rx DMA processes. */
fp@532: 	RTL_W8 (ChipCmd, 0);
fp@532: 
fp@532: 	/* Disable interrupts by clearing the interrupt mask. */
fp@532: 	RTL_W16 (IntrMask, 0);
fp@532: 
fp@532: 	/* Update the error counts. */
fp@532: 	tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
fp@532: 	RTL_W32 (RxMissed, 0);
fp@532: 
fp@532: 	spin_unlock_irqrestore (&tp->lock, flags);
fp@532: 
fp@532: 	synchronize_irq (dev->irq);	/* racy, but that's ok here */
fp@532: 	free_irq (dev->irq, dev);
fp@532: 
fp@532: 	rtl8139_tx_clear (tp);
fp@532: 
fp@532: 	pci_free_consistent(tp->pci_dev, RX_BUF_TOT_LEN,
fp@532: 			    tp->rx_ring, tp->rx_ring_dma);
fp@532: 	pci_free_consistent(tp->pci_dev, TX_BUF_TOT_LEN,
fp@532: 			    tp->tx_bufs, tp->tx_bufs_dma);
fp@532: 	tp->rx_ring = NULL;
fp@532: 	tp->tx_bufs = NULL;
fp@532: 
fp@532: 	/* Green! Put the chip in low-power mode. */
fp@532: 	RTL_W8 (Cfg9346, Cfg9346_Unlock);
fp@532: 
fp@532: 	if (rtl_chip_info[tp->chipset].flags & HasHltClk)
fp@532: 		RTL_W8 (HltClk, 'H');	/* 'R' would leave the clock running. */
fp@532: 
fp@532: 	return 0;
fp@532: }
fp@532: 
fp@532: 
fp@532: /* Get the ethtool Wake-on-LAN settings.  Assumes that wol points to
fp@532:    kernel memory, *wol has been initialized as {ETHTOOL_GWOL}, and
fp@532:    other threads or interrupts aren't messing with the 8139.  */
fp@532: static void rtl8139_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = np->mmio_addr;
fp@532: 
fp@532: 	spin_lock_irq(&np->lock);
fp@532: 	if (rtl_chip_info[np->chipset].flags & HasLWake) {
fp@532: 		u8 cfg3 = RTL_R8 (Config3);
fp@532: 		u8 cfg5 = RTL_R8 (Config5);
fp@532: 
fp@532: 		wol->supported = WAKE_PHY | WAKE_MAGIC
fp@532: 			| WAKE_UCAST | WAKE_MCAST | WAKE_BCAST;
fp@532: 
fp@532: 		wol->wolopts = 0;
fp@532: 		if (cfg3 & Cfg3_LinkUp)
fp@532: 			wol->wolopts |= WAKE_PHY;
fp@532: 		if (cfg3 & Cfg3_Magic)
fp@532: 			wol->wolopts |= WAKE_MAGIC;
fp@532: 		/* (KON)FIXME: See how netdev_set_wol() handles the
fp@532: 		   following constants.  */
fp@532: 		if (cfg5 & Cfg5_UWF)
fp@532: 			wol->wolopts |= WAKE_UCAST;
fp@532: 		if (cfg5 & Cfg5_MWF)
fp@532: 			wol->wolopts |= WAKE_MCAST;
fp@532: 		if (cfg5 & Cfg5_BWF)
fp@532: 			wol->wolopts |= WAKE_BCAST;
fp@532: 	}
fp@532: 	spin_unlock_irq(&np->lock);
fp@532: }
fp@532: 
fp@532: 
fp@532: /* Set the ethtool Wake-on-LAN settings.  Return 0 or -errno.  Assumes
fp@532:    that wol points to kernel memory and other threads or interrupts
fp@532:    aren't messing with the 8139.  */
fp@532: static int rtl8139_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = np->mmio_addr;
fp@532: 	u32 support;
fp@532: 	u8 cfg3, cfg5;
fp@532: 
fp@532: 	support = ((rtl_chip_info[np->chipset].flags & HasLWake)
fp@532: 		   ? (WAKE_PHY | WAKE_MAGIC
fp@532: 		      | WAKE_UCAST | WAKE_MCAST | WAKE_BCAST)
fp@532: 		   : 0);
fp@532: 	if (wol->wolopts & ~support)
fp@532: 		return -EINVAL;
fp@532: 
fp@532: 	spin_lock_irq(&np->lock);
fp@532: 	cfg3 = RTL_R8 (Config3) & ~(Cfg3_LinkUp | Cfg3_Magic);
fp@532: 	if (wol->wolopts & WAKE_PHY)
fp@532: 		cfg3 |= Cfg3_LinkUp;
fp@532: 	if (wol->wolopts & WAKE_MAGIC)
fp@532: 		cfg3 |= Cfg3_Magic;
fp@532: 	RTL_W8 (Cfg9346, Cfg9346_Unlock);
fp@532: 	RTL_W8 (Config3, cfg3);
fp@532: 	RTL_W8 (Cfg9346, Cfg9346_Lock);
fp@532: 
fp@532: 	cfg5 = RTL_R8 (Config5) & ~(Cfg5_UWF | Cfg5_MWF | Cfg5_BWF);
fp@532: 	/* (KON)FIXME: These are untested.  We may have to set the
fp@532: 	   CRC0, Wakeup0 and LSBCRC0 registers too, but I have no
fp@532: 	   documentation.  */
fp@532: 	if (wol->wolopts & WAKE_UCAST)
fp@532: 		cfg5 |= Cfg5_UWF;
fp@532: 	if (wol->wolopts & WAKE_MCAST)
fp@532: 		cfg5 |= Cfg5_MWF;
fp@532: 	if (wol->wolopts & WAKE_BCAST)
fp@532: 		cfg5 |= Cfg5_BWF;
fp@532: 	RTL_W8 (Config5, cfg5);	/* need not unlock via Cfg9346 */
fp@532: 	spin_unlock_irq(&np->lock);
fp@532: 
fp@532: 	return 0;
fp@532: }
fp@532: 
fp@532: static void rtl8139_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	strcpy(info->driver, DRV_NAME);
fp@532: 	strcpy(info->version, DRV_VERSION);
fp@532: 	strcpy(info->bus_info, pci_name(np->pci_dev));
fp@532: 	info->regdump_len = np->regs_len;
fp@532: }
fp@532: 
fp@532: static int rtl8139_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	spin_lock_irq(&np->lock);
fp@532: 	mii_ethtool_gset(&np->mii, cmd);
fp@532: 	spin_unlock_irq(&np->lock);
fp@532: 	return 0;
fp@532: }
fp@532: 
fp@532: static int rtl8139_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	int rc;
fp@532: 	spin_lock_irq(&np->lock);
fp@532: 	rc = mii_ethtool_sset(&np->mii, cmd);
fp@532: 	spin_unlock_irq(&np->lock);
fp@532: 	return rc;
fp@532: }
fp@532: 
fp@532: static int rtl8139_nway_reset(struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	return mii_nway_restart(&np->mii);
fp@532: }
fp@532: 
fp@532: static u32 rtl8139_get_link(struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	return mii_link_ok(&np->mii);
fp@532: }
fp@532: 
fp@532: static u32 rtl8139_get_msglevel(struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	return np->msg_enable;
fp@532: }
fp@532: 
fp@532: static void rtl8139_set_msglevel(struct net_device *dev, u32 datum)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	np->msg_enable = datum;
fp@532: }
fp@532: 
fp@532: /* TODO: we are too slack to do reg dumping for pio, for now */
fp@532: #ifdef CONFIG_8139TOO_PIO
fp@532: #define rtl8139_get_regs_len	NULL
fp@532: #define rtl8139_get_regs	NULL
fp@532: #else
fp@532: static int rtl8139_get_regs_len(struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	return np->regs_len;
fp@532: }
fp@532: 
fp@532: static void rtl8139_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *regbuf)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 
fp@532: 	regs->version = RTL_REGS_VER;
fp@532: 
fp@532: 	spin_lock_irq(&np->lock);
fp@532: 	memcpy_fromio(regbuf, np->mmio_addr, regs->len);
fp@532: 	spin_unlock_irq(&np->lock);
fp@532: }
fp@532: #endif /* CONFIG_8139TOO_MMIO */
fp@532: 
fp@532: static int rtl8139_get_stats_count(struct net_device *dev)
fp@532: {
fp@532: 	return RTL_NUM_STATS;
fp@532: }
fp@532: 
fp@532: static void rtl8139_get_ethtool_stats(struct net_device *dev, struct ethtool_stats *stats, u64 *data)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 
fp@532: 	data[0] = np->xstats.early_rx;
fp@532: 	data[1] = np->xstats.tx_buf_mapped;
fp@532: 	data[2] = np->xstats.tx_timeouts;
fp@532: 	data[3] = np->xstats.rx_lost_in_ring;
fp@532: }
fp@532: 
fp@532: static void rtl8139_get_strings(struct net_device *dev, u32 stringset, u8 *data)
fp@532: {
fp@532: 	memcpy(data, ethtool_stats_keys, sizeof(ethtool_stats_keys));
fp@532: }
fp@532: 
fp@532: static struct ethtool_ops rtl8139_ethtool_ops = {
fp@532: 	.get_drvinfo		= rtl8139_get_drvinfo,
fp@532: 	.get_settings		= rtl8139_get_settings,
fp@532: 	.set_settings		= rtl8139_set_settings,
fp@532: 	.get_regs_len		= rtl8139_get_regs_len,
fp@532: 	.get_regs		= rtl8139_get_regs,
fp@532: 	.nway_reset		= rtl8139_nway_reset,
fp@532: 	.get_link		= rtl8139_get_link,
fp@532: 	.get_msglevel		= rtl8139_get_msglevel,
fp@532: 	.set_msglevel		= rtl8139_set_msglevel,
fp@532: 	.get_wol		= rtl8139_get_wol,
fp@532: 	.set_wol		= rtl8139_set_wol,
fp@532: 	.get_strings		= rtl8139_get_strings,
fp@532: 	.get_stats_count	= rtl8139_get_stats_count,
fp@532: 	.get_ethtool_stats	= rtl8139_get_ethtool_stats,
fp@532: 	.get_perm_addr		= ethtool_op_get_perm_addr,
fp@532: };
fp@532: 
fp@532: static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
fp@532: {
fp@532: 	struct rtl8139_private *np = netdev_priv(dev);
fp@532: 	int rc;
fp@532: 
fp@532: 	if (!netif_running(dev))
fp@532: 		return -EINVAL;
fp@532: 
fp@532: 	spin_lock_irq(&np->lock);
fp@532: 	rc = generic_mii_ioctl(&np->mii, if_mii(rq), cmd, NULL);
fp@532: 	spin_unlock_irq(&np->lock);
fp@532: 
fp@532: 	return rc;
fp@532: }
fp@532: 
fp@532: 
fp@532: static struct net_device_stats *rtl8139_get_stats (struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	unsigned long flags;
fp@532: 
fp@532: 	if (netif_running(dev)) {
fp@532: 		spin_lock_irqsave (&tp->lock, flags);
fp@532: 		tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
fp@532: 		RTL_W32 (RxMissed, 0);
fp@532: 		spin_unlock_irqrestore (&tp->lock, flags);
fp@532: 	}
fp@532: 
fp@532: 	return &tp->stats;
fp@532: }
fp@532: 
fp@532: /* Set or clear the multicast filter for this adaptor.
fp@532:    This routine is not state sensitive and need not be SMP locked. */
fp@532: 
fp@532: static void __set_rx_mode (struct net_device *dev)
fp@532: {
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	u32 mc_filter[2];	/* Multicast hash filter */
fp@532: 	int i, rx_mode;
fp@532: 	u32 tmp;
fp@532: 
fp@532: 	DPRINTK ("%s:   rtl8139_set_rx_mode(%4.4x) done -- Rx config %8.8lx.\n",
fp@532: 			dev->name, dev->flags, RTL_R32 (RxConfig));
fp@532: 
fp@532: 	/* Note: do not reorder, GCC is clever about common statements. */
fp@532: 	if (dev->flags & IFF_PROMISC) {
fp@532: 		/* Unconditionally log net taps. */
fp@532: 		printk (KERN_NOTICE "%s: Promiscuous mode enabled.\n",
fp@532: 			dev->name);
fp@532: 		rx_mode =
fp@532: 		    AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
fp@532: 		    AcceptAllPhys;
fp@532: 		mc_filter[1] = mc_filter[0] = 0xffffffff;
fp@532: 	} else if ((dev->mc_count > multicast_filter_limit)
fp@532: 		   || (dev->flags & IFF_ALLMULTI)) {
fp@532: 		/* Too many to filter perfectly -- accept all multicasts. */
fp@532: 		rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
fp@532: 		mc_filter[1] = mc_filter[0] = 0xffffffff;
fp@532: 	} else {
fp@532: 		struct dev_mc_list *mclist;
fp@532: 		rx_mode = AcceptBroadcast | AcceptMyPhys;
fp@532: 		mc_filter[1] = mc_filter[0] = 0;
fp@532: 		for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
fp@532: 		     i++, mclist = mclist->next) {
fp@532: 			int bit_nr = ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
fp@532: 
fp@532: 			mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
fp@532: 			rx_mode |= AcceptMulticast;
fp@532: 		}
fp@532: 	}
fp@532: 
fp@532: 	/* We can safely update without stopping the chip. */
fp@532: 	tmp = rtl8139_rx_config | rx_mode;
fp@532: 	if (tp->rx_config != tmp) {
fp@532: 		RTL_W32_F (RxConfig, tmp);
fp@532: 		tp->rx_config = tmp;
fp@532: 	}
fp@532: 	RTL_W32_F (MAR0 + 0, mc_filter[0]);
fp@532: 	RTL_W32_F (MAR0 + 4, mc_filter[1]);
fp@532: }
fp@532: 
fp@532: static void rtl8139_set_rx_mode (struct net_device *dev)
fp@532: {
fp@532: 	unsigned long flags;
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 
fp@532: 	spin_lock_irqsave (&tp->lock, flags);
fp@532: 	__set_rx_mode(dev);
fp@532: 	spin_unlock_irqrestore (&tp->lock, flags);
fp@532: }
fp@532: 
fp@532: #ifdef CONFIG_PM
fp@532: 
fp@532: static int rtl8139_suspend (struct pci_dev *pdev, pm_message_t state)
fp@532: {
fp@532: 	struct net_device *dev = pci_get_drvdata (pdev);
fp@532: 	struct rtl8139_private *tp = netdev_priv(dev);
fp@532: 	void __iomem *ioaddr = tp->mmio_addr;
fp@532: 	unsigned long flags;
fp@532: 
fp@532: 	pci_save_state (pdev);
fp@532: 
fp@532: 	if (!netif_running (dev))
fp@532: 		return 0;
fp@532: 
fp@532: 	netif_device_detach (dev);
fp@532: 
fp@532: 	spin_lock_irqsave (&tp->lock, flags);
fp@532: 
fp@532: 	/* Disable interrupts, stop Tx and Rx. */
fp@532: 	RTL_W16 (IntrMask, 0);
fp@532: 	RTL_W8 (ChipCmd, 0);
fp@532: 
fp@532: 	/* Update the error counts. */
fp@532: 	tp->stats.rx_missed_errors += RTL_R32 (RxMissed);
fp@532: 	RTL_W32 (RxMissed, 0);
fp@532: 
fp@532: 	spin_unlock_irqrestore (&tp->lock, flags);
fp@532: 
fp@532: 	pci_set_power_state (pdev, PCI_D3hot);
fp@532: 
fp@532: 	return 0;
fp@532: }
fp@532: 
fp@532: 
fp@532: static int rtl8139_resume (struct pci_dev *pdev)
fp@532: {
fp@532: 	struct net_device *dev = pci_get_drvdata (pdev);
fp@532: 
fp@532: 	pci_restore_state (pdev);
fp@532: 	if (!netif_running (dev))
fp@532: 		return 0;
fp@532: 	pci_set_power_state (pdev, PCI_D0);
fp@532: 	rtl8139_init_ring (dev);
fp@532: 	rtl8139_hw_start (dev);
fp@532: 	netif_device_attach (dev);
fp@532: 	return 0;
fp@532: }
fp@532: 
fp@532: #endif /* CONFIG_PM */
fp@532: 
fp@532: 
fp@532: static struct pci_driver rtl8139_pci_driver = {
fp@532: 	.name		= DRV_NAME,
fp@532: 	.id_table	= rtl8139_pci_tbl,
fp@532: 	.probe		= rtl8139_init_one,
fp@532: 	.remove		= __devexit_p(rtl8139_remove_one),
fp@532: #ifdef CONFIG_PM
fp@532: 	.suspend	= rtl8139_suspend,
fp@532: 	.resume		= rtl8139_resume,
fp@532: #endif /* CONFIG_PM */
fp@532: };
fp@532: 
fp@532: 
fp@532: static int __init rtl8139_init_module (void)
fp@532: {
fp@532: 	/* when we're a module, we always print a version message,
fp@532: 	 * even if no 8139 board is found.
fp@532: 	 */
fp@532: #ifdef MODULE
fp@532: 	printk (KERN_INFO RTL8139_DRIVER_NAME "\n");
fp@532: #endif
fp@532: 
fp@532: 	return pci_module_init (&rtl8139_pci_driver);
fp@532: }
fp@532: 
fp@532: 
fp@532: static void __exit rtl8139_cleanup_module (void)
fp@532: {
fp@532: 	pci_unregister_driver (&rtl8139_pci_driver);
fp@532: }
fp@532: 
fp@532: 
fp@532: module_init(rtl8139_init_module);
fp@532: module_exit(rtl8139_cleanup_module);