sis900.c 72.3 KB
Newer Older
L
Linus Torvalds 已提交
1
/* sis900.c: A SiS 900/7016 PCI Fast Ethernet driver for Linux.
2
   Copyright 1999 Silicon Integrated System Corporation
3
   Revision:	1.08.10 Apr. 2 2006
4

L
Linus Torvalds 已提交
5
   Modified from the driver which is originally written by Donald Becker.
6

L
Linus Torvalds 已提交
7 8 9 10
   This software may be used and distributed according to the terms
   of the GNU General Public License (GPL), incorporated herein by reference.
   Drivers based on this skeleton fall under the GPL and must retain
   the authorship (implicit copyright) notice.
11

L
Linus Torvalds 已提交
12 13 14 15 16 17 18 19
   References:
   SiS 7016 Fast Ethernet PCI Bus 10/100 Mbps LAN Controller with OnNow Support,
   preliminary Rev. 1.0 Jan. 14, 1998
   SiS 900 Fast Ethernet PCI Bus 10/100 Mbps LAN Single Chip with OnNow Support,
   preliminary Rev. 1.0 Nov. 10, 1998
   SiS 7014 Single Chip 100BASE-TX/10BASE-T Physical Layer Solution,
   preliminary Rev. 1.0 Jan. 18, 1998

20
   Rev 1.08.10 Apr.  2 2006 Daniele Venzano add vlan (jumbo packets) support
21
   Rev 1.08.09 Sep. 19 2005 Daniele Venzano add Wake on LAN support
L
Linus Torvalds 已提交
22
   Rev 1.08.08 Jan. 22 2005 Daniele Venzano use netif_msg for debugging messages
23
   Rev 1.08.07 Nov.  2 2003 Daniele Venzano <venza@brownhat.org> add suspend/resume support
L
Linus Torvalds 已提交
24 25 26 27 28 29 30 31
   Rev 1.08.06 Sep. 24 2002 Mufasa Yang bug fix for Tx timeout & add SiS963 support
   Rev 1.08.05 Jun.  6 2002 Mufasa Yang bug fix for read_eeprom & Tx descriptor over-boundary
   Rev 1.08.04 Apr. 25 2002 Mufasa Yang <mufasa@sis.com.tw> added SiS962 support
   Rev 1.08.03 Feb.  1 2002 Matt Domsch <Matt_Domsch@dell.com> update to use library crc32 function
   Rev 1.08.02 Nov. 30 2001 Hui-Fen Hsu workaround for EDB & bug fix for dhcp problem
   Rev 1.08.01 Aug. 25 2001 Hui-Fen Hsu update for 630ET & workaround for ICS1893 PHY
   Rev 1.08.00 Jun. 11 2001 Hui-Fen Hsu workaround for RTL8201 PHY and some bug fix
   Rev 1.07.11 Apr.  2 2001 Hui-Fen Hsu updates PCI drivers to use the new pci_set_dma_mask for kernel 2.4.3
32
   Rev 1.07.10 Mar.  1 2001 Hui-Fen Hsu <hfhsu@sis.com.tw> some bug fix & 635M/B support
L
Linus Torvalds 已提交
33 34 35 36 37 38
   Rev 1.07.09 Feb.  9 2001 Dave Jones <davej@suse.de> PCI enable cleanup
   Rev 1.07.08 Jan.  8 2001 Lei-Chun Chang added RTL8201 PHY support
   Rev 1.07.07 Nov. 29 2000 Lei-Chun Chang added kernel-doc extractable documentation and 630 workaround fix
   Rev 1.07.06 Nov.  7 2000 Jeff Garzik <jgarzik@pobox.com> some bug fix and cleaning
   Rev 1.07.05 Nov.  6 2000 metapirat<metapirat@gmx.de> contribute media type select by ifconfig
   Rev 1.07.04 Sep.  6 2000 Lei-Chun Chang added ICS1893 PHY support
39
   Rev 1.07.03 Aug. 24 2000 Lei-Chun Chang (lcchang@sis.com.tw) modified 630E equalizer workaround rule
L
Linus Torvalds 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
   Rev 1.07.01 Aug. 08 2000 Ollie Lho minor update for SiS 630E and SiS 630E A1
   Rev 1.07    Mar. 07 2000 Ollie Lho bug fix in Rx buffer ring
   Rev 1.06.04 Feb. 11 2000 Jeff Garzik <jgarzik@pobox.com> softnet and init for kernel 2.4
   Rev 1.06.03 Dec. 23 1999 Ollie Lho Third release
   Rev 1.06.02 Nov. 23 1999 Ollie Lho bug in mac probing fixed
   Rev 1.06.01 Nov. 16 1999 Ollie Lho CRC calculation provide by Joseph Zbiciak (im14u2c@primenet.com)
   Rev 1.06 Nov. 4 1999 Ollie Lho (ollie@sis.com.tw) Second release
   Rev 1.05.05 Oct. 29 1999 Ollie Lho (ollie@sis.com.tw) Single buffer Tx/Rx
   Chin-Shan Li (lcs@sis.com.tw) Added AMD Am79c901 HomePNA PHY support
   Rev 1.05 Aug. 7 1999 Jim Huang (cmhuang@sis.com.tw) Initial release
*/

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/kernel.h>
55
#include <linux/sched.h>
L
Linus Torvalds 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
#include <linux/string.h>
#include <linux/timer.h>
#include <linux/errno.h>
#include <linux/ioport.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
#include <linux/netdevice.h>
#include <linux/init.h>
#include <linux/mii.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/delay.h>
#include <linux/ethtool.h>
#include <linux/crc32.h>
#include <linux/bitops.h>
72
#include <linux/dma-mapping.h>
L
Linus Torvalds 已提交
73 74 75 76

#include <asm/processor.h>      /* Processor type for cache alignment. */
#include <asm/io.h>
#include <asm/irq.h>
77
#include <linux/uaccess.h>	/* User space memory access functions */
L
Linus Torvalds 已提交
78 79 80 81

#include "sis900.h"

#define SIS900_MODULE_NAME "sis900"
82
#define SIS900_DRV_VERSION "v1.08.10 Apr. 2 2006"
L
Linus Torvalds 已提交
83

B
Bill Pemberton 已提交
84
static const char version[] =
85
	KERN_INFO "sis900.c: " SIS900_DRV_VERSION "\n";
L
Linus Torvalds 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104

static int max_interrupt_work = 40;
static int multicast_filter_limit = 128;

static int sis900_debug = -1; /* Use SIS900_DEF_MSG as value */

#define SIS900_DEF_MSG \
	(NETIF_MSG_DRV		| \
	 NETIF_MSG_LINK		| \
	 NETIF_MSG_RX_ERR	| \
	 NETIF_MSG_TX_ERR)

/* Time in jiffies before concluding the transmitter is hung. */
#define TX_TIMEOUT  (4*HZ)

enum {
	SIS_900 = 0,
	SIS_7016
};
105
static const char * card_names[] = {
L
Linus Torvalds 已提交
106 107 108
	"SiS 900 PCI Fast Ethernet",
	"SiS 7016 PCI Fast Ethernet"
};
109 110

static const struct pci_device_id sis900_pci_tbl[] = {
L
Linus Torvalds 已提交
111 112 113 114 115 116 117 118 119 120
	{PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_900,
	 PCI_ANY_ID, PCI_ANY_ID, 0, 0, SIS_900},
	{PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_7016,
	 PCI_ANY_ID, PCI_ANY_ID, 0, 0, SIS_7016},
	{0,}
};
MODULE_DEVICE_TABLE (pci, sis900_pci_tbl);

static void sis900_read_mode(struct net_device *net_dev, int *speed, int *duplex);

121
static const struct mii_chip_info {
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129 130 131 132
	const char * name;
	u16 phy_id0;
	u16 phy_id1;
	u8  phy_types;
#define	HOME 	0x0001
#define LAN	0x0002
#define MIX	0x0003
#define UNKNOWN	0x0
} mii_chip_table[] = {
	{ "SiS 900 Internal MII PHY", 		0x001d, 0x8000, LAN },
	{ "SiS 7014 Physical Layer Solution", 	0x0016, 0xf830, LAN },
133
	{ "SiS 900 on Foxconn 661 7MI",         0x0143, 0xBC70, LAN },
L
Linus Torvalds 已提交
134
	{ "Altimata AC101LF PHY",               0x0022, 0x5520, LAN },
135
	{ "ADM 7001 LAN PHY",			0x002e, 0xcc60, LAN },
L
Linus Torvalds 已提交
136 137 138
	{ "AMD 79C901 10BASE-T PHY",  		0x0000, 0x6B70, LAN },
	{ "AMD 79C901 HomePNA PHY",		0x0000, 0x6B90, HOME},
	{ "ICS LAN PHY",			0x0015, 0xF440, LAN },
139
	{ "ICS LAN PHY",			0x0143, 0xBC70, LAN },
L
Linus Torvalds 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
	{ "NS 83851 PHY",			0x2000, 0x5C20, MIX },
	{ "NS 83847 PHY",                       0x2000, 0x5C30, MIX },
	{ "Realtek RTL8201 PHY",		0x0000, 0x8200, LAN },
	{ "VIA 6103 PHY",			0x0101, 0x8f20, LAN },
	{NULL,},
};

struct mii_phy {
	struct mii_phy * next;
	int phy_addr;
	u16 phy_id0;
	u16 phy_id1;
	u16 status;
	u8  phy_types;
};

typedef struct _BufferDesc {
	u32 link;
	u32 cmdsts;
	u32 bufptr;
} BufferDesc;

struct sis900_private {
	struct pci_dev * pci_dev;

	spinlock_t lock;

	struct mii_phy * mii;
	struct mii_phy * first_mii; /* record the first mii structure */
	unsigned int cur_phy;
170
	struct mii_if_info mii_info;
L
Linus Torvalds 已提交
171

172 173
	void __iomem	*ioaddr;

L
Linus Torvalds 已提交
174 175 176 177 178
	struct timer_list timer; /* Link status detection timer. */
	u8 autong_complete; /* 1: auto-negotiate complete  */

	u32 msg_enable;

179
	unsigned int cur_rx, dirty_rx; /* producer/consumer pointers for Tx/Rx ring */
L
Linus Torvalds 已提交
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
	unsigned int cur_tx, dirty_tx;

	/* The saved address of a sent/receive-in-place packet buffer */
	struct sk_buff *tx_skbuff[NUM_TX_DESC];
	struct sk_buff *rx_skbuff[NUM_RX_DESC];
	BufferDesc *tx_ring;
	BufferDesc *rx_ring;

	dma_addr_t tx_ring_dma;
	dma_addr_t rx_ring_dma;

	unsigned int tx_full; /* The Tx queue is full. */
	u8 host_bridge_rev;
	u8 chipset_rev;
};

MODULE_AUTHOR("Jim Huang <cmhuang@sis.com.tw>, Ollie Lho <ollie@sis.com.tw>");
MODULE_DESCRIPTION("SiS 900 PCI Fast Ethernet driver");
MODULE_LICENSE("GPL");

module_param(multicast_filter_limit, int, 0444);
module_param(max_interrupt_work, int, 0444);
module_param(sis900_debug, int, 0444);
MODULE_PARM_DESC(multicast_filter_limit, "SiS 900/7016 maximum number of filtered multicast addresses");
MODULE_PARM_DESC(max_interrupt_work, "SiS 900/7016 maximum events handled per interrupt");
MODULE_PARM_DESC(sis900_debug, "SiS 900/7016 bitmapped debugging message level");

207 208 209 210 211
#define sw32(reg, val)	iowrite32(val, ioaddr + (reg))
#define sw8(reg, val)	iowrite8(val, ioaddr + (reg))
#define sr32(reg)	ioread32(ioaddr + (reg))
#define sr16(reg)	ioread16(ioaddr + (reg))

L
Linus Torvalds 已提交
212 213 214 215 216 217
#ifdef CONFIG_NET_POLL_CONTROLLER
static void sis900_poll(struct net_device *dev);
#endif
static int sis900_open(struct net_device *net_dev);
static int sis900_mii_probe (struct net_device * net_dev);
static void sis900_init_rxfilter (struct net_device * net_dev);
218
static u16 read_eeprom(void __iomem *ioaddr, int location);
219
static int mdio_read(struct net_device *net_dev, int phy_id, int location);
L
Linus Torvalds 已提交
220 221 222 223 224 225
static void mdio_write(struct net_device *net_dev, int phy_id, int location, int val);
static void sis900_timer(unsigned long data);
static void sis900_check_mode (struct net_device *net_dev, struct mii_phy *mii_phy);
static void sis900_tx_timeout(struct net_device *net_dev);
static void sis900_init_tx_ring(struct net_device *net_dev);
static void sis900_init_rx_ring(struct net_device *net_dev);
226 227
static netdev_tx_t sis900_start_xmit(struct sk_buff *skb,
				     struct net_device *net_dev);
L
Linus Torvalds 已提交
228 229
static int sis900_rx(struct net_device *net_dev);
static void sis900_finish_xmit (struct net_device *net_dev);
230
static irqreturn_t sis900_interrupt(int irq, void *dev_instance);
L
Linus Torvalds 已提交
231 232 233 234 235 236 237 238 239 240 241
static int sis900_close(struct net_device *net_dev);
static int mii_ioctl(struct net_device *net_dev, struct ifreq *rq, int cmd);
static u16 sis900_mcast_bitnr(u8 *addr, u8 revision);
static void set_rx_mode(struct net_device *net_dev);
static void sis900_reset(struct net_device *net_dev);
static void sis630_set_eq(struct net_device *net_dev, u8 revision);
static int sis900_set_config(struct net_device *dev, struct ifmap *map);
static u16 sis900_default_phy(struct net_device * net_dev);
static void sis900_set_capability( struct net_device *net_dev ,struct mii_phy *phy);
static u16 sis900_reset_phy(struct net_device *net_dev, int phy_addr);
static void sis900_auto_negotiate(struct net_device *net_dev, int phy_addr);
242
static void sis900_set_mode(struct sis900_private *, int speed, int duplex);
243
static const struct ethtool_ops sis900_ethtool_ops;
L
Linus Torvalds 已提交
244 245 246 247

/**
 *	sis900_get_mac_addr - Get MAC address for stand alone SiS900 model
 *	@pci_dev: the sis900 pci device
248
 *	@net_dev: the net device to get address for
L
Linus Torvalds 已提交
249 250
 *
 *	Older SiS900 and friends, use EEPROM to store MAC address.
251
 *	MAC address is read from read_eeprom() into @net_dev->dev_addr.
L
Linus Torvalds 已提交
252 253
 */

B
Bill Pemberton 已提交
254 255
static int sis900_get_mac_addr(struct pci_dev *pci_dev,
			       struct net_device *net_dev)
L
Linus Torvalds 已提交
256
{
257 258
	struct sis900_private *sis_priv = netdev_priv(net_dev);
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
259 260 261 262
	u16 signature;
	int i;

	/* check to see if we have sane EEPROM */
263
	signature = (u16) read_eeprom(ioaddr, EEPROMSignature);
L
Linus Torvalds 已提交
264
	if (signature == 0xffff || signature == 0x0000) {
265
		printk (KERN_WARNING "%s: Error EERPOM read %x\n",
L
Linus Torvalds 已提交
266 267 268 269 270 271 272 273 274 275 276 277 278 279
			pci_name(pci_dev), signature);
		return 0;
	}

	/* get MAC address from EEPROM */
	for (i = 0; i < 3; i++)
	        ((u16 *)(net_dev->dev_addr))[i] = read_eeprom(ioaddr, i+EEPROMMACAddr);

	return 1;
}

/**
 *	sis630e_get_mac_addr - Get MAC address for SiS630E model
 *	@pci_dev: the sis900 pci device
280
 *	@net_dev: the net device to get address for
L
Linus Torvalds 已提交
281 282 283
 *
 *	SiS630E model, use APC CMOS RAM to store MAC address.
 *	APC CMOS RAM is accessed through ISA bridge.
284
 *	MAC address is read into @net_dev->dev_addr.
L
Linus Torvalds 已提交
285 286
 */

B
Bill Pemberton 已提交
287 288
static int sis630e_get_mac_addr(struct pci_dev *pci_dev,
				struct net_device *net_dev)
L
Linus Torvalds 已提交
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
{
	struct pci_dev *isa_bridge = NULL;
	u8 reg;
	int i;

	isa_bridge = pci_get_device(PCI_VENDOR_ID_SI, 0x0008, isa_bridge);
	if (!isa_bridge)
		isa_bridge = pci_get_device(PCI_VENDOR_ID_SI, 0x0018, isa_bridge);
	if (!isa_bridge) {
		printk(KERN_WARNING "%s: Can not find ISA bridge\n",
		       pci_name(pci_dev));
		return 0;
	}
	pci_read_config_byte(isa_bridge, 0x48, &reg);
	pci_write_config_byte(isa_bridge, 0x48, reg | 0x40);

	for (i = 0; i < 6; i++) {
		outb(0x09 + i, 0x70);
307
		((u8 *)(net_dev->dev_addr))[i] = inb(0x71);
L
Linus Torvalds 已提交
308
	}
309

L
Linus Torvalds 已提交
310 311 312 313 314 315 316 317 318 319
	pci_write_config_byte(isa_bridge, 0x48, reg & ~0x40);
	pci_dev_put(isa_bridge);

	return 1;
}


/**
 *	sis635_get_mac_addr - Get MAC address for SIS635 model
 *	@pci_dev: the sis900 pci device
320
 *	@net_dev: the net device to get address for
L
Linus Torvalds 已提交
321 322
 *
 *	SiS635 model, set MAC Reload Bit to load Mac address from APC
323
 *	to rfdr. rfdr is accessed through rfcr. MAC address is read into
324
 *	@net_dev->dev_addr.
L
Linus Torvalds 已提交
325 326
 */

B
Bill Pemberton 已提交
327 328
static int sis635_get_mac_addr(struct pci_dev *pci_dev,
			       struct net_device *net_dev)
L
Linus Torvalds 已提交
329
{
330 331
	struct sis900_private *sis_priv = netdev_priv(net_dev);
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
332 333 334
	u32 rfcrSave;
	u32 i;

335
	rfcrSave = sr32(rfcr);
L
Linus Torvalds 已提交
336

337 338
	sw32(cr, rfcrSave | RELOAD);
	sw32(cr, 0);
L
Linus Torvalds 已提交
339 340

	/* disable packet filtering before setting filter */
341
	sw32(rfcr, rfcrSave & ~RFEN);
L
Linus Torvalds 已提交
342 343 344

	/* load MAC addr to filter data register */
	for (i = 0 ; i < 3 ; i++) {
345 346
		sw32(rfcr, (i << RFADDR_shift));
		*( ((u16 *)net_dev->dev_addr) + i) = sr16(rfdr);
L
Linus Torvalds 已提交
347 348 349
	}

	/* enable packet filtering */
350
	sw32(rfcr, rfcrSave | RFEN);
L
Linus Torvalds 已提交
351 352 353 354 355 356 357

	return 1;
}

/**
 *	sis96x_get_mac_addr - Get MAC address for SiS962 or SiS963 model
 *	@pci_dev: the sis900 pci device
358
 *	@net_dev: the net device to get address for
L
Linus Torvalds 已提交
359
 *
360
 *	SiS962 or SiS963 model, use EEPROM to store MAC address. And EEPROM
L
Linus Torvalds 已提交
361
 *	is shared by
362 363
 *	LAN and 1394. When access EEPROM, send EEREQ signal to hardware first
 *	and wait for EEGNT. If EEGNT is ON, EEPROM is permitted to be access
L
Linus Torvalds 已提交
364
 *	by LAN, otherwise is not. After MAC address is read from EEPROM, send
365 366 367
 *	EEDONE signal to refuse EEPROM access by LAN.
 *	The EEPROM map of SiS962 or SiS963 is different to SiS900.
 *	The signature field in SiS962 or SiS963 spec is meaningless.
368
 *	MAC address is read into @net_dev->dev_addr.
L
Linus Torvalds 已提交
369 370
 */

B
Bill Pemberton 已提交
371 372
static int sis96x_get_mac_addr(struct pci_dev *pci_dev,
			       struct net_device *net_dev)
L
Linus Torvalds 已提交
373
{
374 375 376
	struct sis900_private *sis_priv = netdev_priv(net_dev);
	void __iomem *ioaddr = sis_priv->ioaddr;
	int wait, rc = 0;
377

378 379 380 381 382
	sw32(mear, EEREQ);
	for (wait = 0; wait < 2000; wait++) {
		if (sr32(mear) & EEGNT) {
			u16 *mac = (u16 *)net_dev->dev_addr;
			int i;
L
Linus Torvalds 已提交
383 384 385

			/* get MAC address from EEPROM */
			for (i = 0; i < 3; i++)
386
			        mac[i] = read_eeprom(ioaddr, i + EEPROMMACAddr);
L
Linus Torvalds 已提交
387

388 389
			rc = 1;
			break;
L
Linus Torvalds 已提交
390
		}
391
		udelay(1);
L
Linus Torvalds 已提交
392
	}
393 394
	sw32(mear, EEDONE);
	return rc;
L
Linus Torvalds 已提交
395 396
}

397 398 399 400 401
static const struct net_device_ops sis900_netdev_ops = {
	.ndo_open		 = sis900_open,
	.ndo_stop		= sis900_close,
	.ndo_start_xmit		= sis900_start_xmit,
	.ndo_set_config		= sis900_set_config,
402
	.ndo_set_rx_mode	= set_rx_mode,
403
	.ndo_validate_addr	= eth_validate_addr,
404
	.ndo_set_mac_address 	= eth_mac_addr,
405 406 407 408 409 410 411
	.ndo_do_ioctl		= mii_ioctl,
	.ndo_tx_timeout		= sis900_tx_timeout,
#ifdef CONFIG_NET_POLL_CONTROLLER
        .ndo_poll_controller	= sis900_poll,
#endif
};

L
Linus Torvalds 已提交
412 413 414 415 416 417
/**
 *	sis900_probe - Probe for sis900 device
 *	@pci_dev: the sis900 pci device
 *	@pci_id: the pci device ID
 *
 *	Check and probe sis900 net device for @pci_dev.
418
 *	Get mac address according to the chip revision,
L
Linus Torvalds 已提交
419 420 421 422
 *	and assign SiS900-specific entries in the device structure.
 *	ie: sis900_open(), sis900_start_xmit(), sis900_close(), etc.
 */

B
Bill Pemberton 已提交
423
static int sis900_probe(struct pci_dev *pci_dev,
424
			const struct pci_device_id *pci_id)
L
Linus Torvalds 已提交
425 426 427 428 429 430
{
	struct sis900_private *sis_priv;
	struct net_device *net_dev;
	struct pci_dev *dev;
	dma_addr_t ring_dma;
	void *ring_space;
431
	void __iomem *ioaddr;
L
Linus Torvalds 已提交
432
	int i, ret;
433
	const char *card_name = card_names[pci_id->driver_data];
L
Linus Torvalds 已提交
434 435 436 437 438 439 440 441 442 443 444 445
	const char *dev_name = pci_name(pci_dev);

/* when built into the kernel, we only print version if device is found */
#ifndef MODULE
	static int printed_version;
	if (!printed_version++)
		printk(version);
#endif

	/* setup various bits in PCI command register */
	ret = pci_enable_device(pci_dev);
	if(ret) return ret;
446

447
	i = pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32));
L
Linus Torvalds 已提交
448
	if(i){
J
Joe Perches 已提交
449
		printk(KERN_ERR "sis900.c: architecture does not support "
L
Linus Torvalds 已提交
450 451 452
			"32bit PCI busmaster DMA\n");
		return i;
	}
453

L
Linus Torvalds 已提交
454
	pci_set_master(pci_dev);
455

L
Linus Torvalds 已提交
456 457 458 459 460 461 462 463 464 465
	net_dev = alloc_etherdev(sizeof(struct sis900_private));
	if (!net_dev)
		return -ENOMEM;
	SET_NETDEV_DEV(net_dev, &pci_dev->dev);

	/* We do a request_region() to register /proc/ioports info. */
	ret = pci_request_regions(pci_dev, "sis900");
	if (ret)
		goto err_out;

466 467
	/* IO region. */
	ioaddr = pci_iomap(pci_dev, 0, 0);
468 469
	if (!ioaddr) {
		ret = -ENOMEM;
470
		goto err_out_cleardev;
471
	}
472

473
	sis_priv = netdev_priv(net_dev);
474
	sis_priv->ioaddr = ioaddr;
L
Linus Torvalds 已提交
475 476 477 478 479 480 481 482
	sis_priv->pci_dev = pci_dev;
	spin_lock_init(&sis_priv->lock);

	pci_set_drvdata(pci_dev, net_dev);

	ring_space = pci_alloc_consistent(pci_dev, TX_TOTAL_SIZE, &ring_dma);
	if (!ring_space) {
		ret = -ENOMEM;
483
		goto err_out_unmap;
L
Linus Torvalds 已提交
484
	}
485
	sis_priv->tx_ring = ring_space;
L
Linus Torvalds 已提交
486 487 488 489 490 491 492
	sis_priv->tx_ring_dma = ring_dma;

	ring_space = pci_alloc_consistent(pci_dev, RX_TOTAL_SIZE, &ring_dma);
	if (!ring_space) {
		ret = -ENOMEM;
		goto err_unmap_tx;
	}
493
	sis_priv->rx_ring = ring_space;
L
Linus Torvalds 已提交
494
	sis_priv->rx_ring_dma = ring_dma;
495

L
Linus Torvalds 已提交
496
	/* The SiS900-specific entries in the device structure. */
497
	net_dev->netdev_ops = &sis900_netdev_ops;
L
Linus Torvalds 已提交
498 499 500 501 502 503 504
	net_dev->watchdog_timeo = TX_TIMEOUT;
	net_dev->ethtool_ops = &sis900_ethtool_ops;

	if (sis900_debug > 0)
		sis_priv->msg_enable = sis900_debug;
	else
		sis_priv->msg_enable = SIS900_DEF_MSG;
505 506 507 508 509 510 511

	sis_priv->mii_info.dev = net_dev;
	sis_priv->mii_info.mdio_read = mdio_read;
	sis_priv->mii_info.mdio_write = mdio_write;
	sis_priv->mii_info.phy_id_mask = 0x1f;
	sis_priv->mii_info.reg_num_mask = 0x1f;

L
Linus Torvalds 已提交
512
	/* Get Mac address according to the chip revision */
S
Sergei Shtylyov 已提交
513
	sis_priv->chipset_rev = pci_dev->revision;
L
Linus Torvalds 已提交
514 515 516 517
	if(netif_msg_probe(sis_priv))
		printk(KERN_DEBUG "%s: detected revision %2.2x, "
				"trying to get MAC address...\n",
				dev_name, sis_priv->chipset_rev);
518

L
Linus Torvalds 已提交
519 520 521 522 523 524 525 526 527 528
	ret = 0;
	if (sis_priv->chipset_rev == SIS630E_900_REV)
		ret = sis630e_get_mac_addr(pci_dev, net_dev);
	else if ((sis_priv->chipset_rev > 0x81) && (sis_priv->chipset_rev <= 0x90) )
		ret = sis635_get_mac_addr(pci_dev, net_dev);
	else if (sis_priv->chipset_rev == SIS96x_900_REV)
		ret = sis96x_get_mac_addr(pci_dev, net_dev);
	else
		ret = sis900_get_mac_addr(pci_dev, net_dev);

529
	if (!ret || !is_valid_ether_addr(net_dev->dev_addr)) {
530
		eth_hw_addr_random(net_dev);
531 532
		printk(KERN_WARNING "%s: Unreadable or invalid MAC address,"
				"using random generated one\n", dev_name);
L
Linus Torvalds 已提交
533
	}
534

L
Linus Torvalds 已提交
535 536
	/* 630ET : set the mii access mode as software-mode */
	if (sis_priv->chipset_rev == SIS630ET_900_REV)
537
		sw32(cr, ACCESSMODE | sr32(cr));
L
Linus Torvalds 已提交
538 539 540 541 542 543 544 545 546 547 548 549

	/* probe for mii transceiver */
	if (sis900_mii_probe(net_dev) == 0) {
		printk(KERN_WARNING "%s: Error probing MII device.\n",
		       dev_name);
		ret = -ENODEV;
		goto err_unmap_rx;
	}

	/* save our host bridge revision */
	dev = pci_get_device(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_630, NULL);
	if (dev) {
S
Sergei Shtylyov 已提交
550
		sis_priv->host_bridge_rev = dev->revision;
L
Linus Torvalds 已提交
551 552 553 554 555 556 557 558
		pci_dev_put(dev);
	}

	ret = register_netdev(net_dev);
	if (ret)
		goto err_unmap_rx;

	/* print some information about our NIC */
559 560
	printk(KERN_INFO "%s: %s at 0x%p, IRQ %d, %pM\n",
	       net_dev->name, card_name, ioaddr, pci_dev->irq,
J
Johannes Berg 已提交
561
	       net_dev->dev_addr);
L
Linus Torvalds 已提交
562

563
	/* Detect Wake on Lan support */
564
	ret = (sr32(CFGPMC) & PMESP) >> 27;
565 566 567
	if (netif_msg_probe(sis_priv) && (ret & PME_D3C) == 0)
		printk(KERN_INFO "%s: Wake on LAN only available from suspend to RAM.", net_dev->name);

L
Linus Torvalds 已提交
568 569
	return 0;

570
err_unmap_rx:
L
Linus Torvalds 已提交
571 572
	pci_free_consistent(pci_dev, RX_TOTAL_SIZE, sis_priv->rx_ring,
		sis_priv->rx_ring_dma);
573
err_unmap_tx:
L
Linus Torvalds 已提交
574 575
	pci_free_consistent(pci_dev, TX_TOTAL_SIZE, sis_priv->tx_ring,
		sis_priv->tx_ring_dma);
576 577 578
err_out_unmap:
	pci_iounmap(pci_dev, ioaddr);
err_out_cleardev:
L
Linus Torvalds 已提交
579 580 581 582 583 584 585 586 587
	pci_release_regions(pci_dev);
 err_out:
	free_netdev(net_dev);
	return ret;
}

/**
 *	sis900_mii_probe - Probe MII PHY for sis900
 *	@net_dev: the net device to probe for
588
 *
L
Linus Torvalds 已提交
589 590 591 592 593
 *	Search for total of 32 possible mii phy addresses.
 *	Identify and set current phy if found one,
 *	return error if it failed to found.
 */

B
Bill Pemberton 已提交
594
static int sis900_mii_probe(struct net_device *net_dev)
L
Linus Torvalds 已提交
595
{
596
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
597 598 599 600 601 602 603 604
	const char *dev_name = pci_name(sis_priv->pci_dev);
	u16 poll_bit = MII_STAT_LINK, status = 0;
	unsigned long timeout = jiffies + 5 * HZ;
	int phy_addr;

	sis_priv->mii = NULL;

	/* search for total of 32 possible mii phy addresses */
605
	for (phy_addr = 0; phy_addr < 32; phy_addr++) {
L
Linus Torvalds 已提交
606 607 608 609 610 611 612 613 614 615 616 617 618 619 620
		struct mii_phy * mii_phy = NULL;
		u16 mii_status;
		int i;

		mii_phy = NULL;
		for(i = 0; i < 2; i++)
			mii_status = mdio_read(net_dev, phy_addr, MII_STATUS);

		if (mii_status == 0xffff || mii_status == 0x0000) {
			if (netif_msg_probe(sis_priv))
				printk(KERN_DEBUG "%s: MII at address %d"
						" not accessible\n",
						dev_name, phy_addr);
			continue;
		}
621

L
Linus Torvalds 已提交
622 623 624 625 626 627 628 629 630 631
		if ((mii_phy = kmalloc(sizeof(struct mii_phy), GFP_KERNEL)) == NULL) {
			mii_phy = sis_priv->first_mii;
			while (mii_phy) {
				struct mii_phy *phy;
				phy = mii_phy;
				mii_phy = mii_phy->next;
				kfree(phy);
			}
			return 0;
		}
632

L
Linus Torvalds 已提交
633
		mii_phy->phy_id0 = mdio_read(net_dev, phy_addr, MII_PHY_ID0);
634
		mii_phy->phy_id1 = mdio_read(net_dev, phy_addr, MII_PHY_ID1);
L
Linus Torvalds 已提交
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
		mii_phy->phy_addr = phy_addr;
		mii_phy->status = mii_status;
		mii_phy->next = sis_priv->mii;
		sis_priv->mii = mii_phy;
		sis_priv->first_mii = mii_phy;

		for (i = 0; mii_chip_table[i].phy_id1; i++)
			if ((mii_phy->phy_id0 == mii_chip_table[i].phy_id0 ) &&
			    ((mii_phy->phy_id1 & 0xFFF0) == mii_chip_table[i].phy_id1)){
				mii_phy->phy_types = mii_chip_table[i].phy_types;
				if (mii_chip_table[i].phy_types == MIX)
					mii_phy->phy_types =
					    (mii_status & (MII_STAT_CAN_TX_FDX | MII_STAT_CAN_TX)) ? LAN : HOME;
				printk(KERN_INFO "%s: %s transceiver found "
							"at address %d.\n",
							dev_name,
							mii_chip_table[i].name,
							phy_addr);
				break;
			}
655

L
Linus Torvalds 已提交
656 657 658 659 660 661
		if( !mii_chip_table[i].phy_id1 ) {
			printk(KERN_INFO "%s: Unknown PHY transceiver found at address %d.\n",
			       dev_name, phy_addr);
			mii_phy->phy_types = UNKNOWN;
		}
	}
662

L
Linus Torvalds 已提交
663 664 665 666 667 668 669 670 671 672 673 674 675
	if (sis_priv->mii == NULL) {
		printk(KERN_INFO "%s: No MII transceivers found!\n", dev_name);
		return 0;
	}

	/* select default PHY for mac */
	sis_priv->mii = NULL;
	sis900_default_phy( net_dev );

	/* Reset phy if default phy is internal sis900 */
        if ((sis_priv->mii->phy_id0 == 0x001D) &&
	    ((sis_priv->mii->phy_id1&0xFFF0) == 0x8000))
        	status = sis900_reset_phy(net_dev, sis_priv->cur_phy);
676

L
Linus Torvalds 已提交
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
        /* workaround for ICS1893 PHY */
        if ((sis_priv->mii->phy_id0 == 0x0015) &&
            ((sis_priv->mii->phy_id1&0xFFF0) == 0xF440))
            	mdio_write(net_dev, sis_priv->cur_phy, 0x0018, 0xD200);

	if(status & MII_STAT_LINK){
		while (poll_bit) {
			yield();

			poll_bit ^= (mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS) & poll_bit);
			if (time_after_eq(jiffies, timeout)) {
				printk(KERN_WARNING "%s: reset phy and link down now\n",
				       dev_name);
				return -ETIME;
			}
		}
	}

	if (sis_priv->chipset_rev == SIS630E_900_REV) {
		/* SiS 630E has some bugs on default value of PHY registers */
		mdio_write(net_dev, sis_priv->cur_phy, MII_ANADV, 0x05e1);
		mdio_write(net_dev, sis_priv->cur_phy, MII_CONFIG1, 0x22);
		mdio_write(net_dev, sis_priv->cur_phy, MII_CONFIG2, 0xff00);
		mdio_write(net_dev, sis_priv->cur_phy, MII_MASK, 0xffc0);
701
		//mdio_write(net_dev, sis_priv->cur_phy, MII_CONTROL, 0x1000);
L
Linus Torvalds 已提交
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
	}

	if (sis_priv->mii->status & MII_STAT_LINK)
		netif_carrier_on(net_dev);
	else
		netif_carrier_off(net_dev);

	return 1;
}

/**
 *	sis900_default_phy - Select default PHY for sis900 mac.
 *	@net_dev: the net device to probe for
 *
 *	Select first detected PHY with link as default.
 *	If no one is link on, select PHY whose types is HOME as default.
 *	If HOME doesn't exist, select LAN.
 */

static u16 sis900_default_phy(struct net_device * net_dev)
{
723
	struct sis900_private *sis_priv = netdev_priv(net_dev);
724
 	struct mii_phy *phy = NULL, *phy_home = NULL,
L
Linus Torvalds 已提交
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
		*default_phy = NULL, *phy_lan = NULL;
	u16 status;

        for (phy=sis_priv->first_mii; phy; phy=phy->next) {
		status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
		status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);

		/* Link ON & Not select default PHY & not ghost PHY */
		 if ((status & MII_STAT_LINK) && !default_phy &&
					(phy->phy_types != UNKNOWN))
		 	default_phy = phy;
		 else {
			status = mdio_read(net_dev, phy->phy_addr, MII_CONTROL);
			mdio_write(net_dev, phy->phy_addr, MII_CONTROL,
				status | MII_CNTL_AUTO | MII_CNTL_ISOLATE);
			if (phy->phy_types == HOME)
				phy_home = phy;
			else if(phy->phy_types == LAN)
				phy_lan = phy;
		 }
	}

	if (!default_phy && phy_home)
		default_phy = phy_home;
	else if (!default_phy && phy_lan)
		default_phy = phy_lan;
	else if (!default_phy)
		default_phy = sis_priv->first_mii;

	if (sis_priv->mii != default_phy) {
		sis_priv->mii = default_phy;
		sis_priv->cur_phy = default_phy->phy_addr;
		printk(KERN_INFO "%s: Using transceiver found at address %d as default\n",
		       pci_name(sis_priv->pci_dev), sis_priv->cur_phy);
	}
760

761 762
	sis_priv->mii_info.phy_id = sis_priv->cur_phy;

L
Linus Torvalds 已提交
763 764 765
	status = mdio_read(net_dev, sis_priv->cur_phy, MII_CONTROL);
	status &= (~MII_CNTL_ISOLATE);

766
	mdio_write(net_dev, sis_priv->cur_phy, MII_CONTROL, status);
L
Linus Torvalds 已提交
767 768 769
	status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
	status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);

770
	return status;
L
Linus Torvalds 已提交
771 772 773 774 775 776 777 778 779 780 781
}


/**
 * 	sis900_set_capability - set the media capability of network adapter.
 *	@net_dev : the net device to probe for
 *	@phy : default PHY
 *
 *	Set the media capability of network adapter according to
 *	mii status register. It's necessary before auto-negotiate.
 */
782

L
Linus Torvalds 已提交
783 784 785 786
static void sis900_set_capability(struct net_device *net_dev, struct mii_phy *phy)
{
	u16 cap;
	u16 status;
787

L
Linus Torvalds 已提交
788 789
	status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
	status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
790

L
Linus Torvalds 已提交
791 792 793 794 795 796 797 798 799 800 801
	cap = MII_NWAY_CSMA_CD |
		((phy->status & MII_STAT_CAN_TX_FDX)? MII_NWAY_TX_FDX:0) |
		((phy->status & MII_STAT_CAN_TX)    ? MII_NWAY_TX:0) |
		((phy->status & MII_STAT_CAN_T_FDX) ? MII_NWAY_T_FDX:0)|
		((phy->status & MII_STAT_CAN_T)     ? MII_NWAY_T:0);

	mdio_write(net_dev, phy->phy_addr, MII_ANADV, cap);
}


/* Delay between EEPROM clock transitions. */
802
#define eeprom_delay()	sr32(mear)
L
Linus Torvalds 已提交
803 804 805 806 807 808 809 810 811 812

/**
 *	read_eeprom - Read Serial EEPROM
 *	@ioaddr: base i/o address
 *	@location: the EEPROM location to read
 *
 *	Read Serial EEPROM through EEPROM Access Register.
 *	Note that location is in word (16 bits) unit
 */

B
Bill Pemberton 已提交
813
static u16 read_eeprom(void __iomem *ioaddr, int location)
L
Linus Torvalds 已提交
814
{
815
	u32 read_cmd = location | EEread;
L
Linus Torvalds 已提交
816 817 818
	int i;
	u16 retval = 0;

819
	sw32(mear, 0);
L
Linus Torvalds 已提交
820
	eeprom_delay();
821
	sw32(mear, EECS);
L
Linus Torvalds 已提交
822 823 824 825 826
	eeprom_delay();

	/* Shift the read command (9) bits out. */
	for (i = 8; i >= 0; i--) {
		u32 dataval = (read_cmd & (1 << i)) ? EEDI | EECS : EECS;
827 828

		sw32(mear, dataval);
L
Linus Torvalds 已提交
829
		eeprom_delay();
830
		sw32(mear, dataval | EECLK);
L
Linus Torvalds 已提交
831 832
		eeprom_delay();
	}
833
	sw32(mear, EECS);
L
Linus Torvalds 已提交
834 835 836 837
	eeprom_delay();

	/* read the 16-bits data in */
	for (i = 16; i > 0; i--) {
838
		sw32(mear, EECS);
L
Linus Torvalds 已提交
839
		eeprom_delay();
840
		sw32(mear, EECS | EECLK);
L
Linus Torvalds 已提交
841
		eeprom_delay();
842
		retval = (retval << 1) | ((sr32(mear) & EEDO) ? 1 : 0);
L
Linus Torvalds 已提交
843 844 845 846
		eeprom_delay();
	}

	/* Terminate the EEPROM access. */
847
	sw32(mear, 0);
L
Linus Torvalds 已提交
848 849
	eeprom_delay();

850
	return retval;
L
Linus Torvalds 已提交
851 852 853 854 855
}

/* Read and write the MII management registers using software-generated
   serial MDIO protocol. Note that the command bits and data bits are
   send out separately */
856
#define mdio_delay()	sr32(mear)
L
Linus Torvalds 已提交
857

858
static void mdio_idle(struct sis900_private *sp)
L
Linus Torvalds 已提交
859
{
860 861 862
	void __iomem *ioaddr = sp->ioaddr;

	sw32(mear, MDIO | MDDIR);
L
Linus Torvalds 已提交
863
	mdio_delay();
864
	sw32(mear, MDIO | MDDIR | MDC);
L
Linus Torvalds 已提交
865 866
}

867 868
/* Synchronize the MII management interface by shifting 32 one bits out. */
static void mdio_reset(struct sis900_private *sp)
L
Linus Torvalds 已提交
869
{
870
	void __iomem *ioaddr = sp->ioaddr;
L
Linus Torvalds 已提交
871 872 873
	int i;

	for (i = 31; i >= 0; i--) {
874
		sw32(mear, MDDIR | MDIO);
L
Linus Torvalds 已提交
875
		mdio_delay();
876
		sw32(mear, MDDIR | MDIO | MDC);
L
Linus Torvalds 已提交
877 878 879 880 881 882 883 884 885 886 887 888 889 890 891
		mdio_delay();
	}
}

/**
 *	mdio_read - read MII PHY register
 *	@net_dev: the net device to read
 *	@phy_id: the phy address to read
 *	@location: the phy regiester id to read
 *
 *	Read MII registers through MDIO and MDC
 *	using MDIO management frame structure and protocol(defined by ISO/IEC).
 *	Please see SiS7014 or ICS spec
 */

892
static int mdio_read(struct net_device *net_dev, int phy_id, int location)
L
Linus Torvalds 已提交
893 894
{
	int mii_cmd = MIIread|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
895 896
	struct sis900_private *sp = netdev_priv(net_dev);
	void __iomem *ioaddr = sp->ioaddr;
L
Linus Torvalds 已提交
897 898 899
	u16 retval = 0;
	int i;

900 901
	mdio_reset(sp);
	mdio_idle(sp);
L
Linus Torvalds 已提交
902 903 904

	for (i = 15; i >= 0; i--) {
		int dataval = (mii_cmd & (1 << i)) ? MDDIR | MDIO : MDDIR;
905 906

		sw32(mear, dataval);
L
Linus Torvalds 已提交
907
		mdio_delay();
908
		sw32(mear, dataval | MDC);
L
Linus Torvalds 已提交
909 910 911 912 913
		mdio_delay();
	}

	/* Read the 16 data bits. */
	for (i = 16; i > 0; i--) {
914
		sw32(mear, 0);
L
Linus Torvalds 已提交
915
		mdio_delay();
916 917
		retval = (retval << 1) | ((sr32(mear) & MDIO) ? 1 : 0);
		sw32(mear, MDC);
L
Linus Torvalds 已提交
918 919
		mdio_delay();
	}
920
	sw32(mear, 0x00);
L
Linus Torvalds 已提交
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940

	return retval;
}

/**
 *	mdio_write - write MII PHY register
 *	@net_dev: the net device to write
 *	@phy_id: the phy address to write
 *	@location: the phy regiester id to write
 *	@value: the register value to write with
 *
 *	Write MII registers with @value through MDIO and MDC
 *	using MDIO management frame structure and protocol(defined by ISO/IEC)
 *	please see SiS7014 or ICS spec
 */

static void mdio_write(struct net_device *net_dev, int phy_id, int location,
			int value)
{
	int mii_cmd = MIIwrite|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
941 942
	struct sis900_private *sp = netdev_priv(net_dev);
	void __iomem *ioaddr = sp->ioaddr;
L
Linus Torvalds 已提交
943 944
	int i;

945 946
	mdio_reset(sp);
	mdio_idle(sp);
L
Linus Torvalds 已提交
947 948 949 950

	/* Shift the command bits out. */
	for (i = 15; i >= 0; i--) {
		int dataval = (mii_cmd & (1 << i)) ? MDDIR | MDIO : MDDIR;
951 952

		sw8(mear, dataval);
L
Linus Torvalds 已提交
953
		mdio_delay();
954
		sw8(mear, dataval | MDC);
L
Linus Torvalds 已提交
955 956 957 958 959 960 961
		mdio_delay();
	}
	mdio_delay();

	/* Shift the value bits out. */
	for (i = 15; i >= 0; i--) {
		int dataval = (value & (1 << i)) ? MDDIR | MDIO : MDDIR;
962 963

		sw32(mear, dataval);
L
Linus Torvalds 已提交
964
		mdio_delay();
965
		sw32(mear, dataval | MDC);
L
Linus Torvalds 已提交
966 967 968 969 970 971
		mdio_delay();
	}
	mdio_delay();

	/* Clear out extra bits. */
	for (i = 2; i > 0; i--) {
972
		sw8(mear, 0);
L
Linus Torvalds 已提交
973
		mdio_delay();
974
		sw8(mear, MDC);
L
Linus Torvalds 已提交
975 976
		mdio_delay();
	}
977
	sw32(mear, 0x00);
L
Linus Torvalds 已提交
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992
}


/**
 *	sis900_reset_phy - reset sis900 mii phy.
 *	@net_dev: the net device to write
 *	@phy_addr: default phy address
 *
 *	Some specific phy can't work properly without reset.
 *	This function will be called during initialization and
 *	link status change from ON to DOWN.
 */

static u16 sis900_reset_phy(struct net_device *net_dev, int phy_addr)
{
A
Andrew Morton 已提交
993
	int i;
L
Linus Torvalds 已提交
994 995
	u16 status;

A
Andrew Morton 已提交
996
	for (i = 0; i < 2; i++)
L
Linus Torvalds 已提交
997 998 999
		status = mdio_read(net_dev, phy_addr, MII_STATUS);

	mdio_write( net_dev, phy_addr, MII_CONTROL, MII_CNTL_RESET );
1000

L
Linus Torvalds 已提交
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
	return status;
}

#ifdef CONFIG_NET_POLL_CONTROLLER
/*
 * Polling 'interrupt' - used by things like netconsole to send skbs
 * without having to re-enable interrupts. It's not called while
 * the interrupt routine is executing.
*/
static void sis900_poll(struct net_device *dev)
{
1012 1013 1014 1015 1016 1017
	struct sis900_private *sp = netdev_priv(dev);
	const int irq = sp->pci_dev->irq;

	disable_irq(irq);
	sis900_interrupt(irq, dev);
	enable_irq(irq);
L
Linus Torvalds 已提交
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
}
#endif

/**
 *	sis900_open - open sis900 device
 *	@net_dev: the net device to open
 *
 *	Do some initialization and start net interface.
 *	enable interrupts and set sis900 timer.
 */

static int
sis900_open(struct net_device *net_dev)
{
1032
	struct sis900_private *sis_priv = netdev_priv(net_dev);
1033
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1034 1035 1036 1037 1038 1039 1040 1041
	int ret;

	/* Soft reset the chip. */
	sis900_reset(net_dev);

	/* Equalizer workaround Rule */
	sis630_set_eq(net_dev, sis_priv->chipset_rev);

1042 1043
	ret = request_irq(sis_priv->pci_dev->irq, sis900_interrupt, IRQF_SHARED,
			  net_dev->name, net_dev);
L
Linus Torvalds 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
	if (ret)
		return ret;

	sis900_init_rxfilter(net_dev);

	sis900_init_tx_ring(net_dev);
	sis900_init_rx_ring(net_dev);

	set_rx_mode(net_dev);

	netif_start_queue(net_dev);

	/* Workaround for EDB */
1057
	sis900_set_mode(sis_priv, HW_SPEED_10_MBPS, FDX_CAPABLE_HALF_SELECTED);
L
Linus Torvalds 已提交
1058 1059

	/* Enable all known interrupts by setting the interrupt mask. */
1060 1061 1062
	sw32(imr, RxSOVR | RxORN | RxERR | RxOK | TxURN | TxERR | TxIDLE);
	sw32(cr, RxENA | sr32(cr));
	sw32(ier, IE);
L
Linus Torvalds 已提交
1063 1064 1065 1066 1067

	sis900_check_mode(net_dev, sis_priv->mii);

	/* Set the timer to switch to check for link beat and perhaps switch
	   to an alternate media type. */
1068
	setup_timer(&sis_priv->timer, sis900_timer, (unsigned long)net_dev);
L
Linus Torvalds 已提交
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
	sis_priv->timer.expires = jiffies + HZ;
	add_timer(&sis_priv->timer);

	return 0;
}

/**
 *	sis900_init_rxfilter - Initialize the Rx filter
 *	@net_dev: the net device to initialize for
 *
 *	Set receive filter address to our MAC address
 *	and enable packet filtering.
 */

static void
sis900_init_rxfilter (struct net_device * net_dev)
{
1086
	struct sis900_private *sis_priv = netdev_priv(net_dev);
1087
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1088 1089 1090
	u32 rfcrSave;
	u32 i;

1091
	rfcrSave = sr32(rfcr);
L
Linus Torvalds 已提交
1092 1093

	/* disable packet filtering before setting filter */
1094
	sw32(rfcr, rfcrSave & ~RFEN);
L
Linus Torvalds 已提交
1095 1096 1097

	/* load MAC addr to filter data register */
	for (i = 0 ; i < 3 ; i++) {
1098
		u32 w = (u32) *((u16 *)(net_dev->dev_addr)+i);
L
Linus Torvalds 已提交
1099

1100 1101
		sw32(rfcr, i << RFADDR_shift);
		sw32(rfdr, w);
L
Linus Torvalds 已提交
1102 1103 1104

		if (netif_msg_hw(sis_priv)) {
			printk(KERN_DEBUG "%s: Receive Filter Addrss[%d]=%x\n",
1105
			       net_dev->name, i, sr32(rfdr));
L
Linus Torvalds 已提交
1106 1107 1108 1109
		}
	}

	/* enable packet filtering */
1110
	sw32(rfcr, rfcrSave | RFEN);
L
Linus Torvalds 已提交
1111 1112 1113 1114 1115 1116
}

/**
 *	sis900_init_tx_ring - Initialize the Tx descriptor ring
 *	@net_dev: the net device to initialize for
 *
1117
 *	Initialize the Tx descriptor ring,
L
Linus Torvalds 已提交
1118 1119 1120 1121 1122
 */

static void
sis900_init_tx_ring(struct net_device *net_dev)
{
1123
	struct sis900_private *sis_priv = netdev_priv(net_dev);
1124
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
	int i;

	sis_priv->tx_full = 0;
	sis_priv->dirty_tx = sis_priv->cur_tx = 0;

	for (i = 0; i < NUM_TX_DESC; i++) {
		sis_priv->tx_skbuff[i] = NULL;

		sis_priv->tx_ring[i].link = sis_priv->tx_ring_dma +
			((i+1)%NUM_TX_DESC)*sizeof(BufferDesc);
		sis_priv->tx_ring[i].cmdsts = 0;
		sis_priv->tx_ring[i].bufptr = 0;
	}

	/* load Transmit Descriptor Register */
1140
	sw32(txdp, sis_priv->tx_ring_dma);
L
Linus Torvalds 已提交
1141 1142
	if (netif_msg_hw(sis_priv))
		printk(KERN_DEBUG "%s: TX descriptor register loaded with: %8.8x\n",
1143
		       net_dev->name, sr32(txdp));
L
Linus Torvalds 已提交
1144 1145 1146 1147 1148 1149
}

/**
 *	sis900_init_rx_ring - Initialize the Rx descriptor ring
 *	@net_dev: the net device to initialize for
 *
1150
 *	Initialize the Rx descriptor ring,
L
Linus Torvalds 已提交
1151 1152 1153
 *	and pre-allocate recevie buffers (socket buffer)
 */

1154
static void
L
Linus Torvalds 已提交
1155 1156
sis900_init_rx_ring(struct net_device *net_dev)
{
1157
	struct sis900_private *sis_priv = netdev_priv(net_dev);
1158
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
	int i;

	sis_priv->cur_rx = 0;
	sis_priv->dirty_rx = 0;

	/* init RX descriptor */
	for (i = 0; i < NUM_RX_DESC; i++) {
		sis_priv->rx_skbuff[i] = NULL;

		sis_priv->rx_ring[i].link = sis_priv->rx_ring_dma +
			((i+1)%NUM_RX_DESC)*sizeof(BufferDesc);
		sis_priv->rx_ring[i].cmdsts = 0;
		sis_priv->rx_ring[i].bufptr = 0;
	}

	/* allocate sock buffers */
	for (i = 0; i < NUM_RX_DESC; i++) {
		struct sk_buff *skb;

1178
		if ((skb = netdev_alloc_skb(net_dev, RX_BUF_SIZE)) == NULL) {
L
Linus Torvalds 已提交
1179 1180 1181 1182 1183 1184 1185 1186
			/* not enough memory for skbuff, this makes a "hole"
			   on the buffer ring, it is not clear how the
			   hardware will react to this kind of degenerated
			   buffer */
			break;
		}
		sis_priv->rx_skbuff[i] = skb;
		sis_priv->rx_ring[i].cmdsts = RX_BUF_SIZE;
1187 1188 1189 1190 1191 1192 1193 1194
		sis_priv->rx_ring[i].bufptr = pci_map_single(sis_priv->pci_dev,
				skb->data, RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
		if (unlikely(pci_dma_mapping_error(sis_priv->pci_dev,
				sis_priv->rx_ring[i].bufptr))) {
			dev_kfree_skb(skb);
			sis_priv->rx_skbuff[i] = NULL;
			break;
		}
L
Linus Torvalds 已提交
1195 1196 1197 1198
	}
	sis_priv->dirty_rx = (unsigned int) (i - NUM_RX_DESC);

	/* load Receive Descriptor Register */
1199
	sw32(rxdp, sis_priv->rx_ring_dma);
L
Linus Torvalds 已提交
1200 1201
	if (netif_msg_hw(sis_priv))
		printk(KERN_DEBUG "%s: RX descriptor register loaded with: %8.8x\n",
1202
		       net_dev->name, sr32(rxdp));
L
Linus Torvalds 已提交
1203 1204 1205 1206 1207 1208 1209 1210 1211
}

/**
 *	sis630_set_eq - set phy equalizer value for 630 LAN
 *	@net_dev: the net device to set equalizer value
 *	@revision: 630 LAN revision number
 *
 *	630E equalizer workaround rule(Cyrus Huang 08/15)
 *	PHY register 14h(Test)
L
Lucas De Marchi 已提交
1212
 *	Bit 14: 0 -- Automatically detect (default)
L
Linus Torvalds 已提交
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
 *		1 -- Manually set Equalizer filter
 *	Bit 13: 0 -- (Default)
 *		1 -- Speed up convergence of equalizer setting
 *	Bit 9 : 0 -- (Default)
 *		1 -- Disable Baseline Wander
 *	Bit 3~7   -- Equalizer filter setting
 *	Link ON: Set Bit 9, 13 to 1, Bit 14 to 0
 *	Then calculate equalizer value
 *	Then set equalizer value, and set Bit 14 to 1, Bit 9 to 0
 *	Link Off:Set Bit 13 to 1, Bit 14 to 0
 *	Calculate Equalizer value:
L
Lucas De Marchi 已提交
1224
 *	When Link is ON and Bit 14 is 0, SIS900PHY will auto-detect proper equalizer value.
L
Linus Torvalds 已提交
1225 1226 1227 1228 1229 1230 1231 1232 1233
 *	When the equalizer is stable, this value is not a fixed value. It will be within
 *	a small range(eg. 7~9). Then we get a minimum and a maximum value(eg. min=7, max=9)
 *	0 <= max <= 4  --> set equalizer to max
 *	5 <= max <= 14 --> set equalizer to max+1 or set equalizer to max+2 if max == min
 *	max >= 15      --> set equalizer to max+5 or set equalizer to max+6 if max == min
 */

static void sis630_set_eq(struct net_device *net_dev, u8 revision)
{
1234
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
	u16 reg14h, eq_value=0, max_value=0, min_value=0;
	int i, maxcount=10;

	if ( !(revision == SIS630E_900_REV || revision == SIS630EA1_900_REV ||
	       revision == SIS630A_900_REV || revision ==  SIS630ET_900_REV) )
		return;

	if (netif_carrier_ok(net_dev)) {
		reg14h = mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
		mdio_write(net_dev, sis_priv->cur_phy, MII_RESV,
					(0x2200 | reg14h) & 0xBFFF);
		for (i=0; i < maxcount; i++) {
			eq_value = (0x00F8 & mdio_read(net_dev,
					sis_priv->cur_phy, MII_RESV)) >> 3;
			if (i == 0)
				max_value=min_value=eq_value;
			max_value = (eq_value > max_value) ?
						eq_value : max_value;
			min_value = (eq_value < min_value) ?
						eq_value : min_value;
		}
		/* 630E rule to determine the equalizer value */
		if (revision == SIS630E_900_REV || revision == SIS630EA1_900_REV ||
		    revision == SIS630ET_900_REV) {
			if (max_value < 5)
				eq_value = max_value;
			else if (max_value >= 5 && max_value < 15)
				eq_value = (max_value == min_value) ?
						max_value+2 : max_value+1;
			else if (max_value >= 15)
				eq_value=(max_value == min_value) ?
						max_value+6 : max_value+5;
		}
		/* 630B0&B1 rule to determine the equalizer value */
1269 1270
		if (revision == SIS630A_900_REV &&
		    (sis_priv->host_bridge_rev == SIS630B0 ||
L
Linus Torvalds 已提交
1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
		     sis_priv->host_bridge_rev == SIS630B1)) {
			if (max_value == 0)
				eq_value = 3;
			else
				eq_value = (max_value + min_value + 1)/2;
		}
		/* write equalizer value and setting */
		reg14h = mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
		reg14h = (reg14h & 0xFF07) | ((eq_value << 3) & 0x00F8);
		reg14h = (reg14h | 0x6000) & 0xFDFF;
		mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, reg14h);
	} else {
		reg14h = mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
1284 1285 1286
		if (revision == SIS630A_900_REV &&
		    (sis_priv->host_bridge_rev == SIS630B0 ||
		     sis_priv->host_bridge_rev == SIS630B1))
L
Linus Torvalds 已提交
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
			mdio_write(net_dev, sis_priv->cur_phy, MII_RESV,
						(reg14h | 0x2200) & 0xBFFF);
		else
			mdio_write(net_dev, sis_priv->cur_phy, MII_RESV,
						(reg14h | 0x2000) & 0xBFFF);
	}
}

/**
 *	sis900_timer - sis900 timer routine
 *	@data: pointer to sis900 net device
 *
1299
 *	On each timer ticks we check two things,
L
Linus Torvalds 已提交
1300 1301 1302 1303 1304 1305
 *	link status (ON/OFF) and link mode (10/100/Full/Half)
 */

static void sis900_timer(unsigned long data)
{
	struct net_device *net_dev = (struct net_device *)data;
1306
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
1307
	struct mii_phy *mii_phy = sis_priv->mii;
1308
	static const int next_tick = 5*HZ;
1309
	int speed = 0, duplex = 0;
L
Linus Torvalds 已提交
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321
	u16 status;

	status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
	status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);

	/* Link OFF -> ON */
	if (!netif_carrier_ok(net_dev)) {
	LookForLink:
		/* Search for new PHY */
		status = sis900_default_phy(net_dev);
		mii_phy = sis_priv->mii;

1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
		if (status & MII_STAT_LINK) {
			WARN_ON(!(status & MII_STAT_AUTO_DONE));

			sis900_read_mode(net_dev, &speed, &duplex);
			if (duplex) {
				sis900_set_mode(sis_priv, speed, duplex);
				sis630_set_eq(net_dev, sis_priv->chipset_rev);
				netif_carrier_on(net_dev);
			}
		}
L
Linus Torvalds 已提交
1332 1333 1334 1335 1336 1337 1338 1339
	} else {
	/* Link ON -> OFF */
                if (!(status & MII_STAT_LINK)){
                	netif_carrier_off(net_dev);
			if(netif_msg_link(sis_priv))
                		printk(KERN_INFO "%s: Media Link Off\n", net_dev->name);

                	/* Change mode issue */
1340
                	if ((mii_phy->phy_id0 == 0x001D) &&
L
Linus Torvalds 已提交
1341 1342
			    ((mii_phy->phy_id1 & 0xFFF0) == 0x8000))
               			sis900_reset_phy(net_dev,  sis_priv->cur_phy);
1343

L
Linus Torvalds 已提交
1344
			sis630_set_eq(net_dev, sis_priv->chipset_rev);
1345

L
Linus Torvalds 已提交
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
                	goto LookForLink;
                }
	}

	sis_priv->timer.expires = jiffies + next_tick;
	add_timer(&sis_priv->timer);
}

/**
 *	sis900_check_mode - check the media mode for sis900
 *	@net_dev: the net device to be checked
 *	@mii_phy: the mii phy
 *
 *	Older driver gets the media mode from mii status output
 *	register. Now we set our media capability and auto-negotiate
 *	to get the upper bound of speed and duplex between two ends.
 *	If the types of mii phy is HOME, it doesn't need to auto-negotiate
 *	and autong_complete should be set to 1.
 */

static void sis900_check_mode(struct net_device *net_dev, struct mii_phy *mii_phy)
{
1368
	struct sis900_private *sis_priv = netdev_priv(net_dev);
1369
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1370 1371 1372
	int speed, duplex;

	if (mii_phy->phy_types == LAN) {
1373
		sw32(cfg, ~EXD & sr32(cfg));
L
Linus Torvalds 已提交
1374 1375 1376
		sis900_set_capability(net_dev , mii_phy);
		sis900_auto_negotiate(net_dev, sis_priv->cur_phy);
	} else {
1377
		sw32(cfg, EXD | sr32(cfg));
L
Linus Torvalds 已提交
1378 1379
		speed = HW_SPEED_HOME;
		duplex = FDX_CAPABLE_HALF_SELECTED;
1380
		sis900_set_mode(sis_priv, speed, duplex);
L
Linus Torvalds 已提交
1381 1382 1383 1384 1385 1386
		sis_priv->autong_complete = 1;
	}
}

/**
 *	sis900_set_mode - Set the media mode of mac register.
1387
 *	@sp:     the device private data
L
Linus Torvalds 已提交
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
 *	@speed : the transmit speed to be determined
 *	@duplex: the duplex mode to be determined
 *
 *	Set the media mode of mac register txcfg/rxcfg according to
 *	speed and duplex of phy. Bit EDB_MASTER_EN indicates the EDB
 *	bus is used instead of PCI bus. When this bit is set 1, the
 *	Max DMA Burst Size for TX/RX DMA should be no larger than 16
 *	double words.
 */

1398
static void sis900_set_mode(struct sis900_private *sp, int speed, int duplex)
L
Linus Torvalds 已提交
1399
{
1400
	void __iomem *ioaddr = sp->ioaddr;
L
Linus Torvalds 已提交
1401 1402
	u32 tx_flags = 0, rx_flags = 0;

1403
	if (sr32( cfg) & EDB_MASTER_EN) {
L
Linus Torvalds 已提交
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425
		tx_flags = TxATP | (DMA_BURST_64 << TxMXDMA_shift) |
					(TX_FILL_THRESH << TxFILLT_shift);
		rx_flags = DMA_BURST_64 << RxMXDMA_shift;
	} else {
		tx_flags = TxATP | (DMA_BURST_512 << TxMXDMA_shift) |
					(TX_FILL_THRESH << TxFILLT_shift);
		rx_flags = DMA_BURST_512 << RxMXDMA_shift;
	}

	if (speed == HW_SPEED_HOME || speed == HW_SPEED_10_MBPS) {
		rx_flags |= (RxDRNT_10 << RxDRNT_shift);
		tx_flags |= (TxDRNT_10 << TxDRNT_shift);
	} else {
		rx_flags |= (RxDRNT_100 << RxDRNT_shift);
		tx_flags |= (TxDRNT_100 << TxDRNT_shift);
	}

	if (duplex == FDX_CAPABLE_FULL_SELECTED) {
		tx_flags |= (TxCSI | TxHBI);
		rx_flags |= RxATX;
	}

1426
#if IS_ENABLED(CONFIG_VLAN_8021Q)
1427 1428 1429 1430
	/* Can accept Jumbo packet */
	rx_flags |= RxAJAB;
#endif

1431 1432
	sw32(txcfg, tx_flags);
	sw32(rxcfg, rx_flags);
L
Linus Torvalds 已提交
1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
}

/**
 *	sis900_auto_negotiate - Set the Auto-Negotiation Enable/Reset bit.
 *	@net_dev: the net device to read mode for
 *	@phy_addr: mii phy address
 *
 *	If the adapter is link-on, set the auto-negotiate enable/reset bit.
 *	autong_complete should be set to 0 when starting auto-negotiation.
 *	autong_complete should be set to 1 if we didn't start auto-negotiation.
 *	sis900_timer will wait for link on again if autong_complete = 0.
 */

static void sis900_auto_negotiate(struct net_device *net_dev, int phy_addr)
{
1448
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
1449 1450
	int i = 0;
	u32 status;
1451

A
Andrew Morton 已提交
1452
	for (i = 0; i < 2; i++)
L
Linus Torvalds 已提交
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
		status = mdio_read(net_dev, phy_addr, MII_STATUS);

	if (!(status & MII_STAT_LINK)){
		if(netif_msg_link(sis_priv))
			printk(KERN_INFO "%s: Media Link Off\n", net_dev->name);
		sis_priv->autong_complete = 1;
		netif_carrier_off(net_dev);
		return;
	}

	/* (Re)start AutoNegotiate */
	mdio_write(net_dev, phy_addr, MII_CONTROL,
		   MII_CNTL_AUTO | MII_CNTL_RST_AUTO);
	sis_priv->autong_complete = 0;
}


/**
 *	sis900_read_mode - read media mode for sis900 internal phy
 *	@net_dev: the net device to read mode for
 *	@speed  : the transmit speed to be determined
 *	@duplex : the duplex mode to be determined
 *
 *	The capability of remote end will be put in mii register autorec
 *	after auto-negotiation. Use AND operation to get the upper bound
 *	of speed and duplex between two ends.
 */

static void sis900_read_mode(struct net_device *net_dev, int *speed, int *duplex)
{
1483
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
1484 1485 1486 1487
	struct mii_phy *phy = sis_priv->mii;
	int phy_addr = sis_priv->cur_phy;
	u32 status;
	u16 autoadv, autorec;
A
Andrew Morton 已提交
1488
	int i;
L
Linus Torvalds 已提交
1489

A
Andrew Morton 已提交
1490
	for (i = 0; i < 2; i++)
L
Linus Torvalds 已提交
1491 1492 1493 1494 1495 1496 1497 1498 1499
		status = mdio_read(net_dev, phy_addr, MII_STATUS);

	if (!(status & MII_STAT_LINK))
		return;

	/* AutoNegotiate completed */
	autoadv = mdio_read(net_dev, phy_addr, MII_ANADV);
	autorec = mdio_read(net_dev, phy_addr, MII_ANLPAR);
	status = autoadv & autorec;
1500

L
Linus Torvalds 已提交
1501 1502 1503 1504 1505 1506 1507
	*speed = HW_SPEED_10_MBPS;
	*duplex = FDX_CAPABLE_HALF_SELECTED;

	if (status & (MII_NWAY_TX | MII_NWAY_TX_FDX))
		*speed = HW_SPEED_100_MBPS;
	if (status & ( MII_NWAY_TX_FDX | MII_NWAY_T_FDX))
		*duplex = FDX_CAPABLE_FULL_SELECTED;
1508

L
Linus Torvalds 已提交
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
	sis_priv->autong_complete = 1;

	/* Workaround for Realtek RTL8201 PHY issue */
	if ((phy->phy_id0 == 0x0000) && ((phy->phy_id1 & 0xFFF0) == 0x8200)) {
		if (mdio_read(net_dev, phy_addr, MII_CONTROL) & MII_CNTL_FDX)
			*duplex = FDX_CAPABLE_FULL_SELECTED;
		if (mdio_read(net_dev, phy_addr, 0x0019) & 0x01)
			*speed = HW_SPEED_100_MBPS;
	}

	if(netif_msg_link(sis_priv))
1520
		printk(KERN_INFO "%s: Media Link On %s %s-duplex\n",
L
Linus Torvalds 已提交
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
	       				net_dev->name,
	       				*speed == HW_SPEED_100_MBPS ?
	       					"100mbps" : "10mbps",
	       				*duplex == FDX_CAPABLE_FULL_SELECTED ?
	       					"full" : "half");
}

/**
 *	sis900_tx_timeout - sis900 transmit timeout routine
 *	@net_dev: the net device to transmit
 *
 *	print transmit timeout status
 *	disable interrupts and do some tasks
 */

static void sis900_tx_timeout(struct net_device *net_dev)
{
1538
	struct sis900_private *sis_priv = netdev_priv(net_dev);
1539
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1540 1541 1542
	unsigned long flags;
	int i;

1543
	if (netif_msg_tx_err(sis_priv)) {
1544
		printk(KERN_INFO "%s: Transmit timeout, status %8.8x %8.8x\n",
1545 1546
			net_dev->name, sr32(cr), sr32(isr));
	}
L
Linus Torvalds 已提交
1547 1548

	/* Disable interrupts by clearing the interrupt mask. */
1549
	sw32(imr, 0x0000);
L
Linus Torvalds 已提交
1550 1551 1552 1553 1554 1555 1556 1557 1558 1559

	/* use spinlock to prevent interrupt handler accessing buffer ring */
	spin_lock_irqsave(&sis_priv->lock, flags);

	/* discard unsent packets */
	sis_priv->dirty_tx = sis_priv->cur_tx = 0;
	for (i = 0; i < NUM_TX_DESC; i++) {
		struct sk_buff *skb = sis_priv->tx_skbuff[i];

		if (skb) {
1560
			pci_unmap_single(sis_priv->pci_dev,
L
Linus Torvalds 已提交
1561 1562 1563 1564 1565 1566
				sis_priv->tx_ring[i].bufptr, skb->len,
				PCI_DMA_TODEVICE);
			dev_kfree_skb_irq(skb);
			sis_priv->tx_skbuff[i] = NULL;
			sis_priv->tx_ring[i].cmdsts = 0;
			sis_priv->tx_ring[i].bufptr = 0;
1567
			net_dev->stats.tx_dropped++;
L
Linus Torvalds 已提交
1568 1569 1570 1571 1572 1573 1574
		}
	}
	sis_priv->tx_full = 0;
	netif_wake_queue(net_dev);

	spin_unlock_irqrestore(&sis_priv->lock, flags);

1575
	netif_trans_update(net_dev); /* prevent tx timeout */
L
Linus Torvalds 已提交
1576 1577

	/* load Transmit Descriptor Register */
1578
	sw32(txdp, sis_priv->tx_ring_dma);
L
Linus Torvalds 已提交
1579 1580

	/* Enable all known interrupts by setting the interrupt mask. */
1581
	sw32(imr, RxSOVR | RxORN | RxERR | RxOK | TxURN | TxERR | TxIDLE);
L
Linus Torvalds 已提交
1582 1583 1584 1585 1586 1587 1588
}

/**
 *	sis900_start_xmit - sis900 start transmit routine
 *	@skb: socket buffer pointer to put the data being transmitted
 *	@net_dev: the net device to transmit with
 *
1589
 *	Set the transmit buffer descriptor,
L
Linus Torvalds 已提交
1590 1591 1592 1593
 *	and write TxENA to enable transmit state machine.
 *	tell upper layer if the buffer is full
 */

1594
static netdev_tx_t
L
Linus Torvalds 已提交
1595 1596
sis900_start_xmit(struct sk_buff *skb, struct net_device *net_dev)
{
1597
	struct sis900_private *sis_priv = netdev_priv(net_dev);
1598
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
	unsigned int  entry;
	unsigned long flags;
	unsigned int  index_cur_tx, index_dirty_tx;
	unsigned int  count_dirty_tx;

	spin_lock_irqsave(&sis_priv->lock, flags);

	/* Calculate the next Tx descriptor entry. */
	entry = sis_priv->cur_tx % NUM_TX_DESC;
	sis_priv->tx_skbuff[entry] = skb;

	/* set the transmit buffer descriptor and enable Transmit State Machine */
	sis_priv->tx_ring[entry].bufptr = pci_map_single(sis_priv->pci_dev,
		skb->data, skb->len, PCI_DMA_TODEVICE);
1613 1614
	if (unlikely(pci_dma_mapping_error(sis_priv->pci_dev,
		sis_priv->tx_ring[entry].bufptr))) {
1615
			dev_kfree_skb_any(skb);
1616 1617 1618 1619 1620
			sis_priv->tx_skbuff[entry] = NULL;
			net_dev->stats.tx_dropped++;
			spin_unlock_irqrestore(&sis_priv->lock, flags);
			return NETDEV_TX_OK;
	}
L
Linus Torvalds 已提交
1621
	sis_priv->tx_ring[entry].cmdsts = (OWN | skb->len);
1622
	sw32(cr, TxENA | sr32(cr));
L
Linus Torvalds 已提交
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634

	sis_priv->cur_tx ++;
	index_cur_tx = sis_priv->cur_tx;
	index_dirty_tx = sis_priv->dirty_tx;

	for (count_dirty_tx = 0; index_cur_tx != index_dirty_tx; index_dirty_tx++)
		count_dirty_tx ++;

	if (index_cur_tx == index_dirty_tx) {
		/* dirty_tx is met in the cycle of cur_tx, buffer full */
		sis_priv->tx_full = 1;
		netif_stop_queue(net_dev);
1635
	} else if (count_dirty_tx < NUM_TX_DESC) {
L
Linus Torvalds 已提交
1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650
		/* Typical path, tell upper layer that more transmission is possible */
		netif_start_queue(net_dev);
	} else {
		/* buffer full, tell upper layer no more transmission */
		sis_priv->tx_full = 1;
		netif_stop_queue(net_dev);
	}

	spin_unlock_irqrestore(&sis_priv->lock, flags);

	if (netif_msg_tx_queued(sis_priv))
		printk(KERN_DEBUG "%s: Queued Tx packet at %p size %d "
		       "to slot %d.\n",
		       net_dev->name, skb->data, (int)skb->len, entry);

1651
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
1652 1653 1654 1655 1656 1657 1658
}

/**
 *	sis900_interrupt - sis900 interrupt handler
 *	@irq: the irq number
 *	@dev_instance: the client data object
 *
1659
 *	The interrupt handler does all of the Rx thread work,
L
Linus Torvalds 已提交
1660 1661 1662
 *	and cleans up after the Tx thread
 */

1663
static irqreturn_t sis900_interrupt(int irq, void *dev_instance)
L
Linus Torvalds 已提交
1664 1665
{
	struct net_device *net_dev = dev_instance;
1666
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
1667
	int boguscnt = max_interrupt_work;
1668
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1669 1670 1671 1672 1673 1674
	u32 status;
	unsigned int handled = 0;

	spin_lock (&sis_priv->lock);

	do {
1675
		status = sr32(isr);
L
Linus Torvalds 已提交
1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693

		if ((status & (HIBERR|TxURN|TxERR|TxIDLE|RxORN|RxERR|RxOK)) == 0)
			/* nothing intresting happened */
			break;
		handled = 1;

		/* why dow't we break after Tx/Rx case ?? keyword: full-duplex */
		if (status & (RxORN | RxERR | RxOK))
			/* Rx interrupt */
			sis900_rx(net_dev);

		if (status & (TxURN | TxERR | TxIDLE))
			/* Tx interrupt */
			sis900_finish_xmit(net_dev);

		/* something strange happened !!! */
		if (status & HIBERR) {
			if(netif_msg_intr(sis_priv))
J
Joe Perches 已提交
1694
				printk(KERN_INFO "%s: Abnormal interrupt, "
L
Linus Torvalds 已提交
1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708
					"status %#8.8x.\n", net_dev->name, status);
			break;
		}
		if (--boguscnt < 0) {
			if(netif_msg_intr(sis_priv))
				printk(KERN_INFO "%s: Too much work at interrupt, "
					"interrupt status = %#8.8x.\n",
					net_dev->name, status);
			break;
		}
	} while (1);

	if(netif_msg_intr(sis_priv))
		printk(KERN_DEBUG "%s: exiting interrupt, "
J
Joe Perches 已提交
1709
		       "interrupt status = %#8.8x\n",
1710
		       net_dev->name, sr32(isr));
1711

L
Linus Torvalds 已提交
1712 1713 1714 1715 1716 1717 1718 1719
	spin_unlock (&sis_priv->lock);
	return IRQ_RETVAL(handled);
}

/**
 *	sis900_rx - sis900 receive routine
 *	@net_dev: the net device which receives data
 *
1720
 *	Process receive interrupt events,
L
Linus Torvalds 已提交
1721
 *	put buffer to higher layer and refill buffer pool
1722
 *	Note: This function is called by interrupt handler,
L
Linus Torvalds 已提交
1723 1724 1725 1726 1727
 *	don't do "too much" work here
 */

static int sis900_rx(struct net_device *net_dev)
{
1728
	struct sis900_private *sis_priv = netdev_priv(net_dev);
1729
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1730 1731
	unsigned int entry = sis_priv->cur_rx % NUM_RX_DESC;
	u32 rx_status = sis_priv->rx_ring[entry].cmdsts;
1732
	int rx_work_limit;
L
Linus Torvalds 已提交
1733 1734 1735 1736 1737

	if (netif_msg_rx_status(sis_priv))
		printk(KERN_DEBUG "sis900_rx, cur_rx:%4.4d, dirty_rx:%4.4d "
		       "status:0x%8.8x\n",
		       sis_priv->cur_rx, sis_priv->dirty_rx, rx_status);
1738
	rx_work_limit = sis_priv->dirty_rx + NUM_RX_DESC - sis_priv->cur_rx;
L
Linus Torvalds 已提交
1739 1740 1741

	while (rx_status & OWN) {
		unsigned int rx_size;
1742
		unsigned int data_size;
L
Linus Torvalds 已提交
1743

1744 1745 1746
		if (--rx_work_limit < 0)
			break;

1747 1748 1749
		data_size = rx_status & DSIZE;
		rx_size = data_size - CRC_SIZE;

1750
#if IS_ENABLED(CONFIG_VLAN_8021Q)
L
Lucas De Marchi 已提交
1751
		/* ``TOOLONG'' flag means jumbo packet received. */
1752 1753 1754
		if ((rx_status & TOOLONG) && data_size <= MAX_FRAME_SIZE)
			rx_status &= (~ ((unsigned int)TOOLONG));
#endif
L
Linus Torvalds 已提交
1755 1756 1757 1758 1759

		if (rx_status & (ABORT|OVERRUN|TOOLONG|RUNT|RXISERR|CRCERR|FAERR)) {
			/* corrupted packet received */
			if (netif_msg_rx_err(sis_priv))
				printk(KERN_DEBUG "%s: Corrupted packet "
1760 1761
				       "received, buffer status = 0x%8.8x/%d.\n",
				       net_dev->name, rx_status, data_size);
1762
			net_dev->stats.rx_errors++;
L
Linus Torvalds 已提交
1763
			if (rx_status & OVERRUN)
1764
				net_dev->stats.rx_over_errors++;
L
Linus Torvalds 已提交
1765
			if (rx_status & (TOOLONG|RUNT))
1766
				net_dev->stats.rx_length_errors++;
L
Linus Torvalds 已提交
1767
			if (rx_status & (RXISERR | FAERR))
1768
				net_dev->stats.rx_frame_errors++;
1769
			if (rx_status & CRCERR)
1770
				net_dev->stats.rx_crc_errors++;
L
Linus Torvalds 已提交
1771 1772 1773 1774
			/* reset buffer descriptor state */
			sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
		} else {
			struct sk_buff * skb;
1775
			struct sk_buff * rx_skb;
L
Linus Torvalds 已提交
1776

1777 1778 1779 1780
			pci_unmap_single(sis_priv->pci_dev,
				sis_priv->rx_ring[entry].bufptr, RX_BUF_SIZE,
				PCI_DMA_FROMDEVICE);

1781
			/* refill the Rx buffer, what if there is not enough
1782
			 * memory for new socket buffer ?? */
1783
			if ((skb = netdev_alloc_skb(net_dev, RX_BUF_SIZE)) == NULL) {
1784 1785 1786 1787 1788 1789 1790
				/*
				 * Not enough memory to refill the buffer
				 * so we need to recycle the old one so
				 * as to avoid creating a memory hole
				 * in the rx ring
				 */
				skb = sis_priv->rx_skbuff[entry];
1791
				net_dev->stats.rx_dropped++;
1792
				goto refill_rx_ring;
1793
			}
1794

L
Linus Torvalds 已提交
1795
			/* This situation should never happen, but due to
1796
			   some unknown bugs, it is possible that
L
Linus Torvalds 已提交
1797 1798 1799
			   we are working on NULL sk_buff :-( */
			if (sis_priv->rx_skbuff[entry] == NULL) {
				if (netif_msg_rx_err(sis_priv))
1800
					printk(KERN_WARNING "%s: NULL pointer "
1801 1802 1803 1804
					      "encountered in Rx ring\n"
					      "cur_rx:%4.4d, dirty_rx:%4.4d\n",
					      net_dev->name, sis_priv->cur_rx,
					      sis_priv->dirty_rx);
1805
				dev_kfree_skb(skb);
L
Linus Torvalds 已提交
1806 1807 1808 1809
				break;
			}

			/* give the socket buffer to upper layers */
1810 1811 1812 1813
			rx_skb = sis_priv->rx_skbuff[entry];
			skb_put(rx_skb, rx_size);
			rx_skb->protocol = eth_type_trans(rx_skb, net_dev);
			netif_rx(rx_skb);
L
Linus Torvalds 已提交
1814 1815 1816

			/* some network statistics */
			if ((rx_status & BCAST) == MCAST)
1817 1818 1819
				net_dev->stats.multicast++;
			net_dev->stats.rx_bytes += rx_size;
			net_dev->stats.rx_packets++;
1820 1821
			sis_priv->dirty_rx++;
refill_rx_ring:
L
Linus Torvalds 已提交
1822 1823
			sis_priv->rx_skbuff[entry] = skb;
			sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
1824
			sis_priv->rx_ring[entry].bufptr =
1825
				pci_map_single(sis_priv->pci_dev, skb->data,
L
Linus Torvalds 已提交
1826
					RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1827 1828 1829 1830 1831 1832
			if (unlikely(pci_dma_mapping_error(sis_priv->pci_dev,
				sis_priv->rx_ring[entry].bufptr))) {
				dev_kfree_skb_irq(skb);
				sis_priv->rx_skbuff[entry] = NULL;
				break;
			}
L
Linus Torvalds 已提交
1833 1834 1835 1836 1837 1838 1839 1840
		}
		sis_priv->cur_rx++;
		entry = sis_priv->cur_rx % NUM_RX_DESC;
		rx_status = sis_priv->rx_ring[entry].cmdsts;
	} // while

	/* refill the Rx buffer, what if the rate of refilling is slower
	 * than consuming ?? */
1841
	for (; sis_priv->cur_rx != sis_priv->dirty_rx; sis_priv->dirty_rx++) {
L
Linus Torvalds 已提交
1842 1843 1844 1845 1846
		struct sk_buff *skb;

		entry = sis_priv->dirty_rx % NUM_RX_DESC;

		if (sis_priv->rx_skbuff[entry] == NULL) {
1847 1848
			skb = netdev_alloc_skb(net_dev, RX_BUF_SIZE);
			if (skb == NULL) {
L
Linus Torvalds 已提交
1849 1850 1851 1852
				/* not enough memory for skbuff, this makes a
				 * "hole" on the buffer ring, it is not clear
				 * how the hardware will react to this kind
				 * of degenerated buffer */
1853
				net_dev->stats.rx_dropped++;
L
Linus Torvalds 已提交
1854 1855 1856 1857
				break;
			}
			sis_priv->rx_skbuff[entry] = skb;
			sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
1858
			sis_priv->rx_ring[entry].bufptr =
1859
				pci_map_single(sis_priv->pci_dev, skb->data,
L
Linus Torvalds 已提交
1860
					RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1861 1862 1863 1864 1865 1866
			if (unlikely(pci_dma_mapping_error(sis_priv->pci_dev,
					sis_priv->rx_ring[entry].bufptr))) {
				dev_kfree_skb_irq(skb);
				sis_priv->rx_skbuff[entry] = NULL;
				break;
			}
L
Linus Torvalds 已提交
1867 1868 1869
		}
	}
	/* re-enable the potentially idle receive state matchine */
1870
	sw32(cr , RxENA | sr32(cr));
L
Linus Torvalds 已提交
1871 1872 1873 1874 1875 1876 1877 1878

	return 0;
}

/**
 *	sis900_finish_xmit - finish up transmission of packets
 *	@net_dev: the net device to be transmitted on
 *
1879
 *	Check for error condition and free socket buffer etc
L
Linus Torvalds 已提交
1880
 *	schedule for more transmission as needed
1881
 *	Note: This function is called by interrupt handler,
L
Linus Torvalds 已提交
1882 1883 1884 1885 1886
 *	don't do "too much" work here
 */

static void sis900_finish_xmit (struct net_device *net_dev)
{
1887
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909

	for (; sis_priv->dirty_tx != sis_priv->cur_tx; sis_priv->dirty_tx++) {
		struct sk_buff *skb;
		unsigned int entry;
		u32 tx_status;

		entry = sis_priv->dirty_tx % NUM_TX_DESC;
		tx_status = sis_priv->tx_ring[entry].cmdsts;

		if (tx_status & OWN) {
			/* The packet is not transmitted yet (owned by hardware) !
			 * Note: the interrupt is generated only when Tx Machine
			 * is idle, so this is an almost impossible case */
			break;
		}

		if (tx_status & (ABORT | UNDERRUN | OWCOLL)) {
			/* packet unsuccessfully transmitted */
			if (netif_msg_tx_err(sis_priv))
				printk(KERN_DEBUG "%s: Transmit "
				       "error, Tx status %8.8x.\n",
				       net_dev->name, tx_status);
1910
			net_dev->stats.tx_errors++;
L
Linus Torvalds 已提交
1911
			if (tx_status & UNDERRUN)
1912
				net_dev->stats.tx_fifo_errors++;
L
Linus Torvalds 已提交
1913
			if (tx_status & ABORT)
1914
				net_dev->stats.tx_aborted_errors++;
L
Linus Torvalds 已提交
1915
			if (tx_status & NOCARRIER)
1916
				net_dev->stats.tx_carrier_errors++;
L
Linus Torvalds 已提交
1917
			if (tx_status & OWCOLL)
1918
				net_dev->stats.tx_window_errors++;
L
Linus Torvalds 已提交
1919 1920
		} else {
			/* packet successfully transmitted */
1921 1922 1923
			net_dev->stats.collisions += (tx_status & COLCNT) >> 16;
			net_dev->stats.tx_bytes += tx_status & DSIZE;
			net_dev->stats.tx_packets++;
L
Linus Torvalds 已提交
1924 1925 1926
		}
		/* Free the original skb. */
		skb = sis_priv->tx_skbuff[entry];
1927
		pci_unmap_single(sis_priv->pci_dev,
L
Linus Torvalds 已提交
1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945
			sis_priv->tx_ring[entry].bufptr, skb->len,
			PCI_DMA_TODEVICE);
		dev_kfree_skb_irq(skb);
		sis_priv->tx_skbuff[entry] = NULL;
		sis_priv->tx_ring[entry].bufptr = 0;
		sis_priv->tx_ring[entry].cmdsts = 0;
	}

	if (sis_priv->tx_full && netif_queue_stopped(net_dev) &&
	    sis_priv->cur_tx - sis_priv->dirty_tx < NUM_TX_DESC - 4) {
		/* The ring is no longer full, clear tx_full and schedule
		 * more transmission by netif_wake_queue(net_dev) */
		sis_priv->tx_full = 0;
		netif_wake_queue (net_dev);
	}
}

/**
1946
 *	sis900_close - close sis900 device
L
Linus Torvalds 已提交
1947 1948
 *	@net_dev: the net device to be closed
 *
1949
 *	Disable interrupts, stop the Tx and Rx Status Machine
L
Linus Torvalds 已提交
1950 1951 1952 1953 1954
 *	free Tx and RX socket buffer
 */

static int sis900_close(struct net_device *net_dev)
{
1955
	struct sis900_private *sis_priv = netdev_priv(net_dev);
1956 1957
	struct pci_dev *pdev = sis_priv->pci_dev;
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
1958 1959 1960 1961 1962 1963
	struct sk_buff *skb;
	int i;

	netif_stop_queue(net_dev);

	/* Disable interrupts by clearing the interrupt mask. */
1964 1965
	sw32(imr, 0x0000);
	sw32(ier, 0x0000);
L
Linus Torvalds 已提交
1966 1967

	/* Stop the chip's Tx and Rx Status Machine */
1968
	sw32(cr, RxDIS | TxDIS | sr32(cr));
L
Linus Torvalds 已提交
1969 1970 1971

	del_timer(&sis_priv->timer);

1972
	free_irq(pdev->irq, net_dev);
L
Linus Torvalds 已提交
1973 1974 1975 1976 1977

	/* Free Tx and RX skbuff */
	for (i = 0; i < NUM_RX_DESC; i++) {
		skb = sis_priv->rx_skbuff[i];
		if (skb) {
1978 1979
			pci_unmap_single(pdev, sis_priv->rx_ring[i].bufptr,
					 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
L
Linus Torvalds 已提交
1980 1981 1982 1983 1984 1985 1986
			dev_kfree_skb(skb);
			sis_priv->rx_skbuff[i] = NULL;
		}
	}
	for (i = 0; i < NUM_TX_DESC; i++) {
		skb = sis_priv->tx_skbuff[i];
		if (skb) {
1987 1988
			pci_unmap_single(pdev, sis_priv->tx_ring[i].bufptr,
					 skb->len, PCI_DMA_TODEVICE);
L
Linus Torvalds 已提交
1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005
			dev_kfree_skb(skb);
			sis_priv->tx_skbuff[i] = NULL;
		}
	}

	/* Green! Put the chip in low-power mode. */

	return 0;
}

/**
 *	sis900_get_drvinfo - Return information about driver
 *	@net_dev: the net device to probe
 *	@info: container for info returned
 *
 *	Process ethtool command such as "ehtool -i" to show information
 */
2006

L
Linus Torvalds 已提交
2007 2008 2009
static void sis900_get_drvinfo(struct net_device *net_dev,
			       struct ethtool_drvinfo *info)
{
2010
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
2011

2012 2013 2014 2015
	strlcpy(info->driver, SIS900_MODULE_NAME, sizeof(info->driver));
	strlcpy(info->version, SIS900_DRV_VERSION, sizeof(info->version));
	strlcpy(info->bus_info, pci_name(sis_priv->pci_dev),
		sizeof(info->bus_info));
L
Linus Torvalds 已提交
2016 2017 2018 2019
}

static u32 sis900_get_msglevel(struct net_device *net_dev)
{
2020
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
2021 2022
	return sis_priv->msg_enable;
}
2023

L
Linus Torvalds 已提交
2024 2025
static void sis900_set_msglevel(struct net_device *net_dev, u32 value)
{
2026
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
2027 2028 2029
	sis_priv->msg_enable = value;
}

2030 2031
static u32 sis900_get_link(struct net_device *net_dev)
{
2032
	struct sis900_private *sis_priv = netdev_priv(net_dev);
2033 2034 2035
	return mii_link_ok(&sis_priv->mii_info);
}

2036 2037
static int sis900_get_link_ksettings(struct net_device *net_dev,
				     struct ethtool_link_ksettings *cmd)
2038
{
2039
	struct sis900_private *sis_priv = netdev_priv(net_dev);
2040
	spin_lock_irq(&sis_priv->lock);
2041
	mii_ethtool_get_link_ksettings(&sis_priv->mii_info, cmd);
2042 2043 2044 2045
	spin_unlock_irq(&sis_priv->lock);
	return 0;
}

2046 2047
static int sis900_set_link_ksettings(struct net_device *net_dev,
				     const struct ethtool_link_ksettings *cmd)
2048
{
2049
	struct sis900_private *sis_priv = netdev_priv(net_dev);
2050 2051
	int rt;
	spin_lock_irq(&sis_priv->lock);
2052
	rt = mii_ethtool_set_link_ksettings(&sis_priv->mii_info, cmd);
2053 2054 2055 2056 2057 2058
	spin_unlock_irq(&sis_priv->lock);
	return rt;
}

static int sis900_nway_reset(struct net_device *net_dev)
{
2059
	struct sis900_private *sis_priv = netdev_priv(net_dev);
2060 2061 2062
	return mii_nway_restart(&sis_priv->mii_info);
}

2063 2064 2065 2066 2067 2068 2069 2070 2071 2072
/**
 *	sis900_set_wol - Set up Wake on Lan registers
 *	@net_dev: the net device to probe
 *	@wol: container for info passed to the driver
 *
 *	Process ethtool command "wol" to setup wake on lan features.
 *	SiS900 supports sending WoL events if a correct packet is received,
 *	but there is no simple way to filter them to only a subset (broadcast,
 *	multicast, unicast or arp).
 */
2073

2074 2075
static int sis900_set_wol(struct net_device *net_dev, struct ethtool_wolinfo *wol)
{
2076
	struct sis900_private *sis_priv = netdev_priv(net_dev);
2077
	void __iomem *ioaddr = sis_priv->ioaddr;
2078 2079 2080 2081
	u32 cfgpmcsr = 0, pmctrl_bits = 0;

	if (wol->wolopts == 0) {
		pci_read_config_dword(sis_priv->pci_dev, CFGPMCSR, &cfgpmcsr);
2082
		cfgpmcsr &= ~PME_EN;
2083
		pci_write_config_dword(sis_priv->pci_dev, CFGPMCSR, cfgpmcsr);
2084
		sw32(pmctrl, pmctrl_bits);
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097
		if (netif_msg_wol(sis_priv))
			printk(KERN_DEBUG "%s: Wake on LAN disabled\n", net_dev->name);
		return 0;
	}

	if (wol->wolopts & (WAKE_MAGICSECURE | WAKE_UCAST | WAKE_MCAST
				| WAKE_BCAST | WAKE_ARP))
		return -EINVAL;

	if (wol->wolopts & WAKE_MAGIC)
		pmctrl_bits |= MAGICPKT;
	if (wol->wolopts & WAKE_PHY)
		pmctrl_bits |= LINKON;
2098

2099
	sw32(pmctrl, pmctrl_bits);
2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111

	pci_read_config_dword(sis_priv->pci_dev, CFGPMCSR, &cfgpmcsr);
	cfgpmcsr |= PME_EN;
	pci_write_config_dword(sis_priv->pci_dev, CFGPMCSR, cfgpmcsr);
	if (netif_msg_wol(sis_priv))
		printk(KERN_DEBUG "%s: Wake on LAN enabled\n", net_dev->name);

	return 0;
}

static void sis900_get_wol(struct net_device *net_dev, struct ethtool_wolinfo *wol)
{
2112 2113
	struct sis900_private *sp = netdev_priv(net_dev);
	void __iomem *ioaddr = sp->ioaddr;
2114 2115
	u32 pmctrl_bits;

2116
	pmctrl_bits = sr32(pmctrl);
2117 2118 2119 2120 2121 2122 2123 2124
	if (pmctrl_bits & MAGICPKT)
		wol->wolopts |= WAKE_MAGIC;
	if (pmctrl_bits & LINKON)
		wol->wolopts |= WAKE_PHY;

	wol->supported = (WAKE_PHY | WAKE_MAGIC);
}

2125
static const struct ethtool_ops sis900_ethtool_ops = {
L
Linus Torvalds 已提交
2126 2127 2128
	.get_drvinfo 	= sis900_get_drvinfo,
	.get_msglevel	= sis900_get_msglevel,
	.set_msglevel	= sis900_set_msglevel,
2129 2130
	.get_link	= sis900_get_link,
	.nway_reset	= sis900_nway_reset,
2131
	.get_wol	= sis900_get_wol,
2132 2133 2134
	.set_wol	= sis900_set_wol,
	.get_link_ksettings = sis900_get_link_ksettings,
	.set_link_ksettings = sis900_set_link_ksettings,
L
Linus Torvalds 已提交
2135 2136 2137
};

/**
2138
 *	mii_ioctl - process MII i/o control command
L
Linus Torvalds 已提交
2139 2140 2141 2142 2143 2144 2145 2146 2147
 *	@net_dev: the net device to command for
 *	@rq: parameter for command
 *	@cmd: the i/o command
 *
 *	Process MII command like read/write MII register
 */

static int mii_ioctl(struct net_device *net_dev, struct ifreq *rq, int cmd)
{
2148
	struct sis900_private *sis_priv = netdev_priv(net_dev);
L
Linus Torvalds 已提交
2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168
	struct mii_ioctl_data *data = if_mii(rq);

	switch(cmd) {
	case SIOCGMIIPHY:		/* Get address of MII PHY in use. */
		data->phy_id = sis_priv->mii->phy_addr;
		/* Fall Through */

	case SIOCGMIIREG:		/* Read MII PHY register. */
		data->val_out = mdio_read(net_dev, data->phy_id & 0x1f, data->reg_num & 0x1f);
		return 0;

	case SIOCSMIIREG:		/* Write MII PHY register. */
		mdio_write(net_dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
		return 0;
	default:
		return -EOPNOTSUPP;
	}
}

/**
2169
 *	sis900_set_config - Set media type by net_device.set_config
L
Linus Torvalds 已提交
2170 2171 2172 2173 2174 2175 2176 2177 2178
 *	@dev: the net device for media type change
 *	@map: ifmap passed by ifconfig
 *
 *	Set media type to 10baseT, 100baseT or 0(for auto) by ifconfig
 *	we support only port changes. All other runtime configuration
 *	changes will be ignored
 */

static int sis900_set_config(struct net_device *dev, struct ifmap *map)
2179
{
2180
	struct sis900_private *sis_priv = netdev_priv(dev);
L
Linus Torvalds 已提交
2181
	struct mii_phy *mii_phy = sis_priv->mii;
2182

L
Linus Torvalds 已提交
2183 2184 2185 2186 2187 2188 2189
	u16 status;

	if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
		/* we switch on the ifmap->port field. I couldn't find anything
		 * like a definition or standard for the values of that field.
		 * I think the meaning of those values is device specific. But
		 * since I would like to change the media type via the ifconfig
2190
		 * command I use the definition from linux/netdevice.h
L
Linus Torvalds 已提交
2191 2192
		 * (which seems to be different from the ifport(pcmcia) definition) */
		switch(map->port){
2193
		case IF_PORT_UNKNOWN: /* use auto here */
L
Linus Torvalds 已提交
2194 2195 2196 2197 2198 2199 2200
			dev->if_port = map->port;
			/* we are going to change the media type, so the Link
			 * will be temporary down and we need to reflect that
			 * here. When the Link comes up again, it will be
			 * sensed by the sis_timer procedure, which also does
			 * all the rest for us */
			netif_carrier_off(dev);
2201

L
Linus Torvalds 已提交
2202 2203
			/* read current state */
			status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
2204

L
Linus Torvalds 已提交
2205 2206 2207 2208 2209 2210 2211 2212
			/* enable auto negotiation and reset the negotioation
			 * (I don't really know what the auto negatiotiation
			 * reset really means, but it sounds for me right to
			 * do one here) */
			mdio_write(dev, mii_phy->phy_addr,
				   MII_CONTROL, status | MII_CNTL_AUTO | MII_CNTL_RST_AUTO);

			break;
2213 2214

		case IF_PORT_10BASET: /* 10BaseT */
L
Linus Torvalds 已提交
2215
			dev->if_port = map->port;
2216

L
Linus Torvalds 已提交
2217 2218 2219 2220 2221 2222
			/* we are going to change the media type, so the Link
			 * will be temporary down and we need to reflect that
			 * here. When the Link comes up again, it will be
			 * sensed by the sis_timer procedure, which also does
			 * all the rest for us */
			netif_carrier_off(dev);
2223

L
Linus Torvalds 已提交
2224 2225 2226
			/* set Speed to 10Mbps */
			/* read current state */
			status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
2227

L
Linus Torvalds 已提交
2228 2229 2230 2231 2232
			/* disable auto negotiation and force 10MBit mode*/
			mdio_write(dev, mii_phy->phy_addr,
				   MII_CONTROL, status & ~(MII_CNTL_SPEED |
					MII_CNTL_AUTO));
			break;
2233

L
Linus Torvalds 已提交
2234
		case IF_PORT_100BASET: /* 100BaseT */
2235
		case IF_PORT_100BASETX: /* 100BaseTx */
L
Linus Torvalds 已提交
2236
			dev->if_port = map->port;
2237

L
Linus Torvalds 已提交
2238 2239 2240 2241 2242 2243
			/* we are going to change the media type, so the Link
			 * will be temporary down and we need to reflect that
			 * here. When the Link comes up again, it will be
			 * sensed by the sis_timer procedure, which also does
			 * all the rest for us */
			netif_carrier_off(dev);
2244

L
Linus Torvalds 已提交
2245 2246 2247 2248 2249 2250
			/* set Speed to 100Mbps */
			/* disable auto negotiation and enable 100MBit Mode */
			status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
			mdio_write(dev, mii_phy->phy_addr,
				   MII_CONTROL, (status & ~MII_CNTL_SPEED) |
				   MII_CNTL_SPEED);
2251

L
Linus Torvalds 已提交
2252
			break;
2253

L
Linus Torvalds 已提交
2254 2255 2256 2257 2258
		case IF_PORT_10BASE2: /* 10Base2 */
		case IF_PORT_AUI: /* AUI */
		case IF_PORT_100BASEFX: /* 100BaseFx */
                	/* These Modes are not supported (are they?)*/
			return -EOPNOTSUPP;
2259

L
Linus Torvalds 已提交
2260 2261 2262 2263 2264 2265 2266 2267
		default:
			return -EINVAL;
		}
	}
	return 0;
}

/**
2268
 *	sis900_mcast_bitnr - compute hashtable index
L
Linus Torvalds 已提交
2269 2270 2271 2272 2273 2274
 *	@addr: multicast address
 *	@revision: revision id of chip
 *
 *	SiS 900 uses the most sigificant 7 bits to index a 128 bits multicast
 *	hash table, which makes this function a little bit different from other drivers
 *	SiS 900 B0 & 635 M/B uses the most significat 8 bits to index 256 bits
2275
 *   	multicast hash table.
L
Linus Torvalds 已提交
2276 2277 2278 2279 2280 2281 2282 2283 2284
 */

static inline u16 sis900_mcast_bitnr(u8 *addr, u8 revision)
{

	u32 crc = ether_crc(6, addr);

	/* leave 8 or 7 most siginifant bits */
	if ((revision >= SIS635A_900_REV) || (revision == SIS900B_900_REV))
2285
		return (int)(crc >> 24);
L
Linus Torvalds 已提交
2286
	else
2287
		return (int)(crc >> 25);
L
Linus Torvalds 已提交
2288 2289 2290
}

/**
2291
 *	set_rx_mode - Set SiS900 receive mode
L
Linus Torvalds 已提交
2292 2293 2294 2295 2296 2297 2298 2299 2300
 *	@net_dev: the net device to be set
 *
 *	Set SiS900 receive mode for promiscuous, multicast, or broadcast mode.
 *	And set the appropriate multicast filter.
 *	Multicast hash table changes from 128 to 256 bits for 635M/B & 900B0.
 */

static void set_rx_mode(struct net_device *net_dev)
{
2301
	struct sis900_private *sis_priv = netdev_priv(net_dev);
2302
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
2303 2304 2305 2306
	u16 mc_filter[16] = {0};	/* 256/128 bits multicast hash table */
	int i, table_entries;
	u32 rx_mode;

A
Alexey Dobriyan 已提交
2307
	/* 635 Hash Table entries = 256(2^16) */
L
Linus Torvalds 已提交
2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
	if((sis_priv->chipset_rev >= SIS635A_900_REV) ||
			(sis_priv->chipset_rev == SIS900B_900_REV))
		table_entries = 16;
	else
		table_entries = 8;

	if (net_dev->flags & IFF_PROMISC) {
		/* Accept any kinds of packets */
		rx_mode = RFPromiscuous;
		for (i = 0; i < table_entries; i++)
			mc_filter[i] = 0xffff;
2319
	} else if ((netdev_mc_count(net_dev) > multicast_filter_limit) ||
L
Linus Torvalds 已提交
2320 2321 2322 2323 2324 2325 2326 2327 2328
		   (net_dev->flags & IFF_ALLMULTI)) {
		/* too many multicast addresses or accept all multicast packet */
		rx_mode = RFAAB | RFAAM;
		for (i = 0; i < table_entries; i++)
			mc_filter[i] = 0xffff;
	} else {
		/* Accept Broadcast packet, destination address matchs our
		 * MAC address, use Receive Filter to reject unwanted MCAST
		 * packets */
2329
		struct netdev_hw_addr *ha;
L
Linus Torvalds 已提交
2330
		rx_mode = RFAAB;
2331

2332 2333 2334 2335 2336
		netdev_for_each_mc_addr(ha, net_dev) {
			unsigned int bit_nr;

			bit_nr = sis900_mcast_bitnr(ha->addr,
						    sis_priv->chipset_rev);
L
Linus Torvalds 已提交
2337 2338 2339 2340 2341 2342 2343
			mc_filter[bit_nr >> 4] |= (1 << (bit_nr & 0xf));
		}
	}

	/* update Multicast Hash Table in Receive Filter */
	for (i = 0; i < table_entries; i++) {
                /* why plus 0x04 ??, That makes the correct value for hash table. */
2344 2345
		sw32(rfcr, (u32)(0x00000004 + i) << RFADDR_shift);
		sw32(rfdr, mc_filter[i]);
L
Linus Torvalds 已提交
2346 2347
	}

2348
	sw32(rfcr, RFEN | rx_mode);
L
Linus Torvalds 已提交
2349 2350 2351 2352 2353 2354

	/* sis900 is capable of looping back packets at MAC level for
	 * debugging purpose */
	if (net_dev->flags & IFF_LOOPBACK) {
		u32 cr_saved;
		/* We must disable Tx/Rx before setting loopback mode */
2355 2356
		cr_saved = sr32(cr);
		sw32(cr, cr_saved | TxDIS | RxDIS);
L
Linus Torvalds 已提交
2357
		/* enable loopback */
2358 2359
		sw32(txcfg, sr32(txcfg) | TxMLB);
		sw32(rxcfg, sr32(rxcfg) | RxATX);
L
Linus Torvalds 已提交
2360
		/* restore cr */
2361
		sw32(cr, cr_saved);
L
Linus Torvalds 已提交
2362 2363 2364 2365
	}
}

/**
2366
 *	sis900_reset - Reset sis900 MAC
L
Linus Torvalds 已提交
2367 2368 2369 2370 2371 2372 2373 2374 2375
 *	@net_dev: the net device to reset
 *
 *	reset sis900 MAC and wait until finished
 *	reset through command register
 *	change backoff algorithm for 900B0 & 635 M/B
 */

static void sis900_reset(struct net_device *net_dev)
{
2376
	struct sis900_private *sis_priv = netdev_priv(net_dev);
2377
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
2378
	u32 status = TxRCMP | RxRCMP;
2379
	int i;
L
Linus Torvalds 已提交
2380

2381 2382 2383
	sw32(ier, 0);
	sw32(imr, 0);
	sw32(rfcr, 0);
L
Linus Torvalds 已提交
2384

2385
	sw32(cr, RxRESET | TxRESET | RESET | sr32(cr));
2386

L
Linus Torvalds 已提交
2387
	/* Check that the chip has finished the reset. */
2388 2389
	for (i = 0; status && (i < 1000); i++)
		status ^= sr32(isr) & status;
L
Linus Torvalds 已提交
2390

2391 2392 2393
	if (sis_priv->chipset_rev >= SIS635A_900_REV ||
	    sis_priv->chipset_rev == SIS900B_900_REV)
		sw32(cfg, PESEL | RND_CNT);
L
Linus Torvalds 已提交
2394
	else
2395
		sw32(cfg, PESEL);
L
Linus Torvalds 已提交
2396 2397 2398
}

/**
2399
 *	sis900_remove - Remove sis900 device
L
Linus Torvalds 已提交
2400 2401 2402 2403 2404
 *	@pci_dev: the pci device to be removed
 *
 *	remove and release SiS900 net device
 */

B
Bill Pemberton 已提交
2405
static void sis900_remove(struct pci_dev *pci_dev)
L
Linus Torvalds 已提交
2406 2407
{
	struct net_device *net_dev = pci_get_drvdata(pci_dev);
2408
	struct sis900_private *sis_priv = netdev_priv(net_dev);
2409 2410

	unregister_netdev(net_dev);
L
Linus Torvalds 已提交
2411 2412

	while (sis_priv->first_mii) {
2413 2414
		struct mii_phy *phy = sis_priv->first_mii;

L
Linus Torvalds 已提交
2415 2416 2417 2418 2419 2420 2421 2422
		sis_priv->first_mii = phy->next;
		kfree(phy);
	}

	pci_free_consistent(pci_dev, RX_TOTAL_SIZE, sis_priv->rx_ring,
		sis_priv->rx_ring_dma);
	pci_free_consistent(pci_dev, TX_TOTAL_SIZE, sis_priv->tx_ring,
		sis_priv->tx_ring_dma);
2423
	pci_iounmap(pci_dev, sis_priv->ioaddr);
L
Linus Torvalds 已提交
2424 2425 2426 2427 2428 2429 2430 2431 2432
	free_netdev(net_dev);
	pci_release_regions(pci_dev);
}

#ifdef CONFIG_PM

static int sis900_suspend(struct pci_dev *pci_dev, pm_message_t state)
{
	struct net_device *net_dev = pci_get_drvdata(pci_dev);
2433 2434
	struct sis900_private *sis_priv = netdev_priv(net_dev);
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
2435 2436 2437 2438 2439 2440 2441 2442

	if(!netif_running(net_dev))
		return 0;

	netif_stop_queue(net_dev);
	netif_device_detach(net_dev);

	/* Stop the chip's Tx and Rx Status Machine */
2443
	sw32(cr, RxDIS | TxDIS | sr32(cr));
L
Linus Torvalds 已提交
2444 2445 2446 2447 2448 2449 2450 2451 2452 2453

	pci_set_power_state(pci_dev, PCI_D3hot);
	pci_save_state(pci_dev);

	return 0;
}

static int sis900_resume(struct pci_dev *pci_dev)
{
	struct net_device *net_dev = pci_get_drvdata(pci_dev);
2454
	struct sis900_private *sis_priv = netdev_priv(net_dev);
2455
	void __iomem *ioaddr = sis_priv->ioaddr;
L
Linus Torvalds 已提交
2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472

	if(!netif_running(net_dev))
		return 0;
	pci_restore_state(pci_dev);
	pci_set_power_state(pci_dev, PCI_D0);

	sis900_init_rxfilter(net_dev);

	sis900_init_tx_ring(net_dev);
	sis900_init_rx_ring(net_dev);

	set_rx_mode(net_dev);

	netif_device_attach(net_dev);
	netif_start_queue(net_dev);

	/* Workaround for EDB */
2473
	sis900_set_mode(sis_priv, HW_SPEED_10_MBPS, FDX_CAPABLE_HALF_SELECTED);
L
Linus Torvalds 已提交
2474 2475

	/* Enable all known interrupts by setting the interrupt mask. */
2476 2477 2478
	sw32(imr, RxSOVR | RxORN | RxERR | RxOK | TxURN | TxERR | TxIDLE);
	sw32(cr, RxENA | sr32(cr));
	sw32(ier, IE);
L
Linus Torvalds 已提交
2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489

	sis900_check_mode(net_dev, sis_priv->mii);

	return 0;
}
#endif /* CONFIG_PM */

static struct pci_driver sis900_pci_driver = {
	.name		= SIS900_MODULE_NAME,
	.id_table	= sis900_pci_tbl,
	.probe		= sis900_probe,
B
Bill Pemberton 已提交
2490
	.remove		= sis900_remove,
L
Linus Torvalds 已提交
2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503
#ifdef CONFIG_PM
	.suspend	= sis900_suspend,
	.resume		= sis900_resume,
#endif /* CONFIG_PM */
};

static int __init sis900_init_module(void)
{
/* when a module, this is printed whether or not devices are found in probe */
#ifdef MODULE
	printk(version);
#endif

2504
	return pci_register_driver(&sis900_pci_driver);
L
Linus Torvalds 已提交
2505 2506 2507 2508 2509 2510 2511 2512 2513 2514
}

static void __exit sis900_cleanup_module(void)
{
	pci_unregister_driver(&sis900_pci_driver);
}

module_init(sis900_init_module);
module_exit(sis900_cleanup_module);