[PATCH] CREDITS update
[linux-2.6/history.git] / drivers / net / sis900.c
blobaa045b62c335413e64febeb5815f89c58eb91464
1 /* sis900.c: A SiS 900/7016 PCI Fast Ethernet driver for Linux.
2 Copyright 1999 Silicon Integrated System Corporation
3 Revision: 1.08.06 Sep. 24 2002
5 Modified from the driver which is originally written by Donald Becker.
7 This software may be used and distributed according to the terms
8 of the GNU General Public License (GPL), incorporated herein by reference.
9 Drivers based on this skeleton fall under the GPL and must retain
10 the authorship (implicit copyright) notice.
12 References:
13 SiS 7016 Fast Ethernet PCI Bus 10/100 Mbps LAN Controller with OnNow Support,
14 preliminary Rev. 1.0 Jan. 14, 1998
15 SiS 900 Fast Ethernet PCI Bus 10/100 Mbps LAN Single Chip with OnNow Support,
16 preliminary Rev. 1.0 Nov. 10, 1998
17 SiS 7014 Single Chip 100BASE-TX/10BASE-T Physical Layer Solution,
18 preliminary Rev. 1.0 Jan. 18, 1998
19 http://www.sis.com.tw/support/databook.htm
21 Rev 1.08.07 Nov. 2 2003 Daniele Venzano <webvenza@libero.it> add suspend/resume support
22 Rev 1.08.06 Sep. 24 2002 Mufasa Yang bug fix for Tx timeout & add SiS963 support
23 Rev 1.08.05 Jun. 6 2002 Mufasa Yang bug fix for read_eeprom & Tx descriptor over-boundary
24 Rev 1.08.04 Apr. 25 2002 Mufasa Yang <mufasa@sis.com.tw> added SiS962 support
25 Rev 1.08.03 Feb. 1 2002 Matt Domsch <Matt_Domsch@dell.com> update to use library crc32 function
26 Rev 1.08.02 Nov. 30 2001 Hui-Fen Hsu workaround for EDB & bug fix for dhcp problem
27 Rev 1.08.01 Aug. 25 2001 Hui-Fen Hsu update for 630ET & workaround for ICS1893 PHY
28 Rev 1.08.00 Jun. 11 2001 Hui-Fen Hsu workaround for RTL8201 PHY and some bug fix
29 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
30 Rev 1.07.10 Mar. 1 2001 Hui-Fen Hsu <hfhsu@sis.com.tw> some bug fix & 635M/B support
31 Rev 1.07.09 Feb. 9 2001 Dave Jones <davej@suse.de> PCI enable cleanup
32 Rev 1.07.08 Jan. 8 2001 Lei-Chun Chang added RTL8201 PHY support
33 Rev 1.07.07 Nov. 29 2000 Lei-Chun Chang added kernel-doc extractable documentation and 630 workaround fix
34 Rev 1.07.06 Nov. 7 2000 Jeff Garzik <jgarzik@pobox.com> some bug fix and cleaning
35 Rev 1.07.05 Nov. 6 2000 metapirat<metapirat@gmx.de> contribute media type select by ifconfig
36 Rev 1.07.04 Sep. 6 2000 Lei-Chun Chang added ICS1893 PHY support
37 Rev 1.07.03 Aug. 24 2000 Lei-Chun Chang (lcchang@sis.com.tw) modified 630E eqaulizer workaround rule
38 Rev 1.07.01 Aug. 08 2000 Ollie Lho minor update for SiS 630E and SiS 630E A1
39 Rev 1.07 Mar. 07 2000 Ollie Lho bug fix in Rx buffer ring
40 Rev 1.06.04 Feb. 11 2000 Jeff Garzik <jgarzik@pobox.com> softnet and init for kernel 2.4
41 Rev 1.06.03 Dec. 23 1999 Ollie Lho Third release
42 Rev 1.06.02 Nov. 23 1999 Ollie Lho bug in mac probing fixed
43 Rev 1.06.01 Nov. 16 1999 Ollie Lho CRC calculation provide by Joseph Zbiciak (im14u2c@primenet.com)
44 Rev 1.06 Nov. 4 1999 Ollie Lho (ollie@sis.com.tw) Second release
45 Rev 1.05.05 Oct. 29 1999 Ollie Lho (ollie@sis.com.tw) Single buffer Tx/Rx
46 Chin-Shan Li (lcs@sis.com.tw) Added AMD Am79c901 HomePNA PHY support
47 Rev 1.05 Aug. 7 1999 Jim Huang (cmhuang@sis.com.tw) Initial release
50 #include <linux/module.h>
51 #include <linux/kernel.h>
52 #include <linux/string.h>
53 #include <linux/timer.h>
54 #include <linux/errno.h>
55 #include <linux/ioport.h>
56 #include <linux/slab.h>
57 #include <linux/interrupt.h>
58 #include <linux/pci.h>
59 #include <linux/netdevice.h>
60 #include <linux/init.h>
61 #include <linux/mii.h>
62 #include <linux/etherdevice.h>
63 #include <linux/skbuff.h>
64 #include <linux/delay.h>
65 #include <linux/ethtool.h>
66 #include <linux/crc32.h>
68 #include <asm/processor.h> /* Processor type for cache alignment. */
69 #include <asm/bitops.h>
70 #include <asm/io.h>
71 #include <asm/uaccess.h> /* User space memory access functions */
73 #include "sis900.h"
75 #define SIS900_MODULE_NAME "sis900"
76 #define SIS900_DRV_VERSION "v1.08.07 11/02/2003"
78 static char version[] __devinitdata =
79 KERN_INFO "sis900.c: " SIS900_DRV_VERSION "\n";
81 static int max_interrupt_work = 40;
82 static int multicast_filter_limit = 128;
84 #define sis900_debug debug
85 static int sis900_debug;
87 /* Time in jiffies before concluding the transmitter is hung. */
88 #define TX_TIMEOUT (4*HZ)
89 /* SiS 900 is capable of 32 bits BM DMA */
90 #define SIS900_DMA_MASK 0xffffffff
92 enum {
93 SIS_900 = 0,
94 SIS_7016
96 static char * card_names[] = {
97 "SiS 900 PCI Fast Ethernet",
98 "SiS 7016 PCI Fast Ethernet"
100 static struct pci_device_id sis900_pci_tbl [] = {
101 {PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_900,
102 PCI_ANY_ID, PCI_ANY_ID, 0, 0, SIS_900},
103 {PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_7016,
104 PCI_ANY_ID, PCI_ANY_ID, 0, 0, SIS_7016},
105 {0,}
107 MODULE_DEVICE_TABLE (pci, sis900_pci_tbl);
109 static void sis900_read_mode(struct net_device *net_dev, int *speed, int *duplex);
111 static struct mii_chip_info {
112 const char * name;
113 u16 phy_id0;
114 u16 phy_id1;
115 u8 phy_types;
116 #define HOME 0x0001
117 #define LAN 0x0002
118 #define MIX 0x0003
119 } mii_chip_table[] = {
120 { "SiS 900 Internal MII PHY", 0x001d, 0x8000, LAN },
121 { "SiS 7014 Physical Layer Solution", 0x0016, 0xf830, LAN },
122 { "AMD 79C901 10BASE-T PHY", 0x0000, 0x6B70, LAN },
123 { "AMD 79C901 HomePNA PHY", 0x0000, 0x6B90, HOME},
124 { "ICS LAN PHY", 0x0015, 0xF440, LAN },
125 { "NS 83851 PHY", 0x2000, 0x5C20, MIX },
126 { "Realtek RTL8201 PHY", 0x0000, 0x8200, LAN },
127 { "VIA 6103 PHY", 0x0101, 0x8f20, LAN },
128 {0,},
131 struct mii_phy {
132 struct mii_phy * next;
133 int phy_addr;
134 u16 phy_id0;
135 u16 phy_id1;
136 u16 status;
137 u8 phy_types;
140 typedef struct _BufferDesc {
141 u32 link;
142 u32 cmdsts;
143 u32 bufptr;
144 } BufferDesc;
146 struct sis900_private {
147 struct net_device_stats stats;
148 struct pci_dev * pci_dev;
150 spinlock_t lock;
152 struct mii_phy * mii;
153 struct mii_phy * first_mii; /* record the first mii structure */
154 unsigned int cur_phy;
156 struct timer_list timer; /* Link status detection timer. */
157 u8 autong_complete; /* 1: auto-negotiate complete */
159 unsigned int cur_rx, dirty_rx; /* producer/comsumer pointers for Tx/Rx ring */
160 unsigned int cur_tx, dirty_tx;
162 /* The saved address of a sent/receive-in-place packet buffer */
163 struct sk_buff *tx_skbuff[NUM_TX_DESC];
164 struct sk_buff *rx_skbuff[NUM_RX_DESC];
165 BufferDesc *tx_ring;
166 BufferDesc *rx_ring;
168 dma_addr_t tx_ring_dma;
169 dma_addr_t rx_ring_dma;
171 unsigned int tx_full; /* The Tx queue is full. */
172 u8 host_bridge_rev;
173 u32 pci_state[16];
176 MODULE_AUTHOR("Jim Huang <cmhuang@sis.com.tw>, Ollie Lho <ollie@sis.com.tw>");
177 MODULE_DESCRIPTION("SiS 900 PCI Fast Ethernet driver");
178 MODULE_LICENSE("GPL");
180 MODULE_PARM(multicast_filter_limit, "i");
181 MODULE_PARM(max_interrupt_work, "i");
182 MODULE_PARM(debug, "i");
183 MODULE_PARM_DESC(multicast_filter_limit, "SiS 900/7016 maximum number of filtered multicast addresses");
184 MODULE_PARM_DESC(max_interrupt_work, "SiS 900/7016 maximum events handled per interrupt");
185 MODULE_PARM_DESC(debug, "SiS 900/7016 debug level (2-4)");
187 static int sis900_open(struct net_device *net_dev);
188 static int sis900_mii_probe (struct net_device * net_dev);
189 static void sis900_init_rxfilter (struct net_device * net_dev);
190 static u16 read_eeprom(long ioaddr, int location);
191 static u16 mdio_read(struct net_device *net_dev, int phy_id, int location);
192 static void mdio_write(struct net_device *net_dev, int phy_id, int location, int val);
193 static void sis900_timer(unsigned long data);
194 static void sis900_check_mode (struct net_device *net_dev, struct mii_phy *mii_phy);
195 static void sis900_tx_timeout(struct net_device *net_dev);
196 static void sis900_init_tx_ring(struct net_device *net_dev);
197 static void sis900_init_rx_ring(struct net_device *net_dev);
198 static int sis900_start_xmit(struct sk_buff *skb, struct net_device *net_dev);
199 static int sis900_rx(struct net_device *net_dev);
200 static void sis900_finish_xmit (struct net_device *net_dev);
201 static irqreturn_t sis900_interrupt(int irq, void *dev_instance, struct pt_regs *regs);
202 static int sis900_close(struct net_device *net_dev);
203 static int mii_ioctl(struct net_device *net_dev, struct ifreq *rq, int cmd);
204 static struct net_device_stats *sis900_get_stats(struct net_device *net_dev);
205 static u16 sis900_mcast_bitnr(u8 *addr, u8 revision);
206 static void set_rx_mode(struct net_device *net_dev);
207 static void sis900_reset(struct net_device *net_dev);
208 static void sis630_set_eq(struct net_device *net_dev, u8 revision);
209 static int sis900_set_config(struct net_device *dev, struct ifmap *map);
210 static u16 sis900_default_phy(struct net_device * net_dev);
211 static void sis900_set_capability( struct net_device *net_dev ,struct mii_phy *phy);
212 static u16 sis900_reset_phy(struct net_device *net_dev, int phy_addr);
213 static void sis900_auto_negotiate(struct net_device *net_dev, int phy_addr);
214 static void sis900_set_mode (long ioaddr, int speed, int duplex);
215 static struct ethtool_ops sis900_ethtool_ops;
218 * sis900_get_mac_addr - Get MAC address for stand alone SiS900 model
219 * @pci_dev: the sis900 pci device
220 * @net_dev: the net device to get address for
222 * Older SiS900 and friends, use EEPROM to store MAC address.
223 * MAC address is read from read_eeprom() into @net_dev->dev_addr.
226 static int __devinit sis900_get_mac_addr(struct pci_dev * pci_dev, struct net_device *net_dev)
228 long ioaddr = pci_resource_start(pci_dev, 0);
229 u16 signature;
230 int i;
232 /* check to see if we have sane EEPROM */
233 signature = (u16) read_eeprom(ioaddr, EEPROMSignature);
234 if (signature == 0xffff || signature == 0x0000) {
235 printk (KERN_INFO "%s: Error EERPOM read %x\n",
236 net_dev->name, signature);
237 return 0;
240 /* get MAC address from EEPROM */
241 for (i = 0; i < 3; i++)
242 ((u16 *)(net_dev->dev_addr))[i] = read_eeprom(ioaddr, i+EEPROMMACAddr);
244 return 1;
248 * sis630e_get_mac_addr - Get MAC address for SiS630E model
249 * @pci_dev: the sis900 pci device
250 * @net_dev: the net device to get address for
252 * SiS630E model, use APC CMOS RAM to store MAC address.
253 * APC CMOS RAM is accessed through ISA bridge.
254 * MAC address is read into @net_dev->dev_addr.
257 static int __devinit sis630e_get_mac_addr(struct pci_dev * pci_dev, struct net_device *net_dev)
259 struct pci_dev *isa_bridge = NULL;
260 u8 reg;
261 int i;
263 isa_bridge = pci_find_device(PCI_VENDOR_ID_SI, 0x0008, isa_bridge);
264 if (!isa_bridge) {
265 isa_bridge = pci_find_device(PCI_VENDOR_ID_SI, 0x0018, isa_bridge);
266 if (!isa_bridge) {
267 printk("%s: Can not find ISA bridge\n", net_dev->name);
268 return 0;
271 pci_read_config_byte(isa_bridge, 0x48, &reg);
272 pci_write_config_byte(isa_bridge, 0x48, reg | 0x40);
274 for (i = 0; i < 6; i++) {
275 outb(0x09 + i, 0x70);
276 ((u8 *)(net_dev->dev_addr))[i] = inb(0x71);
278 pci_write_config_byte(isa_bridge, 0x48, reg & ~0x40);
280 return 1;
285 * sis635_get_mac_addr - Get MAC address for SIS635 model
286 * @pci_dev: the sis900 pci device
287 * @net_dev: the net device to get address for
289 * SiS635 model, set MAC Reload Bit to load Mac address from APC
290 * to rfdr. rfdr is accessed through rfcr. MAC address is read into
291 * @net_dev->dev_addr.
294 static int __devinit sis635_get_mac_addr(struct pci_dev * pci_dev, struct net_device *net_dev)
296 long ioaddr = net_dev->base_addr;
297 u32 rfcrSave;
298 u32 i;
300 rfcrSave = inl(rfcr + ioaddr);
302 outl(rfcrSave | RELOAD, ioaddr + cr);
303 outl(0, ioaddr + cr);
305 /* disable packet filtering before setting filter */
306 outl(rfcrSave & ~RFEN, rfcr + ioaddr);
308 /* load MAC addr to filter data register */
309 for (i = 0 ; i < 3 ; i++) {
310 outl((i << RFADDR_shift), ioaddr + rfcr);
311 *( ((u16 *)net_dev->dev_addr) + i) = inw(ioaddr + rfdr);
314 /* enable packet filtering */
315 outl(rfcrSave | RFEN, rfcr + ioaddr);
317 return 1;
321 * sis96x_get_mac_addr - Get MAC address for SiS962 or SiS963 model
322 * @pci_dev: the sis900 pci device
323 * @net_dev: the net device to get address for
325 * SiS962 or SiS963 model, use EEPROM to store MAC address. And EEPROM
326 * is shared by
327 * LAN and 1394. When access EEPROM, send EEREQ signal to hardware first
328 * and wait for EEGNT. If EEGNT is ON, EEPROM is permitted to be access
329 * by LAN, otherwise is not. After MAC address is read from EEPROM, send
330 * EEDONE signal to refuse EEPROM access by LAN.
331 * The EEPROM map of SiS962 or SiS963 is different to SiS900.
332 * The signature field in SiS962 or SiS963 spec is meaningless.
333 * MAC address is read into @net_dev->dev_addr.
336 static int __devinit sis96x_get_mac_addr(struct pci_dev * pci_dev, struct net_device *net_dev)
338 long ioaddr = net_dev->base_addr;
339 long ee_addr = ioaddr + mear;
340 u32 waittime = 0;
341 int i;
343 outl(EEREQ, ee_addr);
344 while(waittime < 2000) {
345 if(inl(ee_addr) & EEGNT) {
347 /* get MAC address from EEPROM */
348 for (i = 0; i < 3; i++)
349 ((u16 *)(net_dev->dev_addr))[i] = read_eeprom(ioaddr, i+EEPROMMACAddr);
351 outl(EEDONE, ee_addr);
352 return 1;
353 } else {
354 udelay(1);
355 waittime ++;
358 outl(EEDONE, ee_addr);
359 return 0;
363 * sis900_probe - Probe for sis900 device
364 * @pci_dev: the sis900 pci device
365 * @pci_id: the pci device ID
367 * Check and probe sis900 net device for @pci_dev.
368 * Get mac address according to the chip revision,
369 * and assign SiS900-specific entries in the device structure.
370 * ie: sis900_open(), sis900_start_xmit(), sis900_close(), etc.
373 static int __devinit sis900_probe (struct pci_dev *pci_dev, const struct pci_device_id *pci_id)
375 struct sis900_private *sis_priv;
376 struct net_device *net_dev;
377 struct pci_dev *dev;
378 dma_addr_t ring_dma;
379 void *ring_space;
380 long ioaddr;
381 int i, ret;
382 u8 revision;
383 char *card_name = card_names[pci_id->driver_data];
385 /* when built into the kernel, we only print version if device is found */
386 #ifndef MODULE
387 static int printed_version;
388 if (!printed_version++)
389 printk(version);
390 #endif
392 /* setup various bits in PCI command register */
393 ret = pci_enable_device(pci_dev);
394 if(ret) return ret;
396 i = pci_set_dma_mask(pci_dev, SIS900_DMA_MASK);
397 if(i){
398 printk(KERN_ERR "sis900.c: architecture does not support"
399 "32bit PCI busmaster DMA\n");
400 return i;
403 pci_set_master(pci_dev);
405 net_dev = alloc_etherdev(sizeof(struct sis900_private));
406 if (!net_dev)
407 return -ENOMEM;
408 SET_MODULE_OWNER(net_dev);
409 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
411 /* We do a request_region() to register /proc/ioports info. */
412 ioaddr = pci_resource_start(pci_dev, 0);
413 ret = pci_request_regions(pci_dev, "sis900");
414 if (ret)
415 goto err_out;
417 sis_priv = net_dev->priv;
418 net_dev->base_addr = ioaddr;
419 net_dev->irq = pci_dev->irq;
420 sis_priv->pci_dev = pci_dev;
421 spin_lock_init(&sis_priv->lock);
423 pci_set_drvdata(pci_dev, net_dev);
425 ring_space = pci_alloc_consistent(pci_dev, TX_TOTAL_SIZE, &ring_dma);
426 if (!ring_space) {
427 ret = -ENOMEM;
428 goto err_out_cleardev;
430 sis_priv->tx_ring = (BufferDesc *)ring_space;
431 sis_priv->tx_ring_dma = ring_dma;
433 ring_space = pci_alloc_consistent(pci_dev, RX_TOTAL_SIZE, &ring_dma);
434 if (!ring_space) {
435 ret = -ENOMEM;
436 goto err_unmap_tx;
438 sis_priv->rx_ring = (BufferDesc *)ring_space;
439 sis_priv->rx_ring_dma = ring_dma;
441 /* The SiS900-specific entries in the device structure. */
442 net_dev->open = &sis900_open;
443 net_dev->hard_start_xmit = &sis900_start_xmit;
444 net_dev->stop = &sis900_close;
445 net_dev->get_stats = &sis900_get_stats;
446 net_dev->set_config = &sis900_set_config;
447 net_dev->set_multicast_list = &set_rx_mode;
448 net_dev->do_ioctl = &mii_ioctl;
449 net_dev->tx_timeout = sis900_tx_timeout;
450 net_dev->watchdog_timeo = TX_TIMEOUT;
451 net_dev->ethtool_ops = &sis900_ethtool_ops;
453 ret = register_netdev(net_dev);
454 if (ret)
455 goto err_unmap_rx;
457 /* Get Mac address according to the chip revision */
458 pci_read_config_byte(pci_dev, PCI_CLASS_REVISION, &revision);
459 ret = 0;
461 if (revision == SIS630E_900_REV)
462 ret = sis630e_get_mac_addr(pci_dev, net_dev);
463 else if ((revision > 0x81) && (revision <= 0x90) )
464 ret = sis635_get_mac_addr(pci_dev, net_dev);
465 else if (revision == SIS96x_900_REV)
466 ret = sis96x_get_mac_addr(pci_dev, net_dev);
467 else
468 ret = sis900_get_mac_addr(pci_dev, net_dev);
470 if (ret == 0) {
471 ret = -ENODEV;
472 goto err_out_unregister;
475 /* 630ET : set the mii access mode as software-mode */
476 if (revision == SIS630ET_900_REV)
477 outl(ACCESSMODE | inl(ioaddr + cr), ioaddr + cr);
479 /* probe for mii transceiver */
480 if (sis900_mii_probe(net_dev) == 0) {
481 ret = -ENODEV;
482 goto err_out_unregister;
485 /* save our host bridge revision */
486 dev = pci_find_device(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_630, NULL);
487 if (dev)
488 pci_read_config_byte(dev, PCI_CLASS_REVISION, &sis_priv->host_bridge_rev);
490 /* print some information about our NIC */
491 printk(KERN_INFO "%s: %s at %#lx, IRQ %d, ", net_dev->name,
492 card_name, ioaddr, net_dev->irq);
493 for (i = 0; i < 5; i++)
494 printk("%2.2x:", (u8)net_dev->dev_addr[i]);
495 printk("%2.2x.\n", net_dev->dev_addr[i]);
497 return 0;
499 err_out_unregister:
500 unregister_netdev(net_dev);
501 err_unmap_rx:
502 pci_free_consistent(pci_dev, RX_TOTAL_SIZE, sis_priv->rx_ring,
503 sis_priv->rx_ring_dma);
504 err_unmap_tx:
505 pci_free_consistent(pci_dev, TX_TOTAL_SIZE, sis_priv->tx_ring,
506 sis_priv->tx_ring_dma);
507 err_out_cleardev:
508 pci_set_drvdata(pci_dev, NULL);
509 pci_release_regions(pci_dev);
510 err_out:
511 free_netdev(net_dev);
512 return ret;
516 * sis900_mii_probe - Probe MII PHY for sis900
517 * @net_dev: the net device to probe for
519 * Search for total of 32 possible mii phy addresses.
520 * Identify and set current phy if found one,
521 * return error if it failed to found.
524 static int __init sis900_mii_probe (struct net_device * net_dev)
526 struct sis900_private * sis_priv = net_dev->priv;
527 u16 poll_bit = MII_STAT_LINK, status = 0;
528 unsigned long timeout = jiffies + 5 * HZ;
529 int phy_addr;
530 u8 revision;
532 sis_priv->mii = NULL;
534 /* search for total of 32 possible mii phy addresses */
535 for (phy_addr = 0; phy_addr < 32; phy_addr++) {
536 struct mii_phy * mii_phy = NULL;
537 u16 mii_status;
538 int i;
540 mii_phy = NULL;
541 for(i = 0; i < 2; i++)
542 mii_status = mdio_read(net_dev, phy_addr, MII_STATUS);
544 if (mii_status == 0xffff || mii_status == 0x0000)
545 /* the mii is not accessible, try next one */
546 continue;
548 if ((mii_phy = kmalloc(sizeof(struct mii_phy), GFP_KERNEL)) == NULL) {
549 printk(KERN_INFO "Cannot allocate mem for struct mii_phy\n");
550 mii_phy = sis_priv->first_mii;
551 while (mii_phy) {
552 struct mii_phy *phy;
553 phy = mii_phy;
554 mii_phy = mii_phy->next;
555 kfree(phy);
557 return 0;
560 mii_phy->phy_id0 = mdio_read(net_dev, phy_addr, MII_PHY_ID0);
561 mii_phy->phy_id1 = mdio_read(net_dev, phy_addr, MII_PHY_ID1);
562 mii_phy->phy_addr = phy_addr;
563 mii_phy->status = mii_status;
564 mii_phy->next = sis_priv->mii;
565 sis_priv->mii = mii_phy;
566 sis_priv->first_mii = mii_phy;
568 for (i = 0; mii_chip_table[i].phy_id1; i++)
569 if ((mii_phy->phy_id0 == mii_chip_table[i].phy_id0 ) &&
570 ((mii_phy->phy_id1 & 0xFFF0) == mii_chip_table[i].phy_id1)){
571 mii_phy->phy_types = mii_chip_table[i].phy_types;
572 if (mii_chip_table[i].phy_types == MIX)
573 mii_phy->phy_types =
574 (mii_status & (MII_STAT_CAN_TX_FDX | MII_STAT_CAN_TX)) ? LAN : HOME;
575 printk(KERN_INFO "%s: %s transceiver found at address %d.\n",
576 net_dev->name, mii_chip_table[i].name, phy_addr);
577 break;
580 if( !mii_chip_table[i].phy_id1 )
581 printk(KERN_INFO "%s: Unknown PHY transceiver found at address %d.\n",
582 net_dev->name, phy_addr);
585 if (sis_priv->mii == NULL) {
586 printk(KERN_INFO "%s: No MII transceivers found!\n",
587 net_dev->name);
588 return 0;
591 /* select default PHY for mac */
592 sis_priv->mii = NULL;
593 sis900_default_phy( net_dev );
595 /* Reset phy if default phy is internal sis900 */
596 if ((sis_priv->mii->phy_id0 == 0x001D) &&
597 ((sis_priv->mii->phy_id1&0xFFF0) == 0x8000))
598 status = sis900_reset_phy(net_dev, sis_priv->cur_phy);
600 /* workaround for ICS1893 PHY */
601 if ((sis_priv->mii->phy_id0 == 0x0015) &&
602 ((sis_priv->mii->phy_id1&0xFFF0) == 0xF440))
603 mdio_write(net_dev, sis_priv->cur_phy, 0x0018, 0xD200);
605 if(status & MII_STAT_LINK){
606 while (poll_bit) {
607 yield();
609 poll_bit ^= (mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS) & poll_bit);
610 if (time_after_eq(jiffies, timeout)) {
611 printk(KERN_WARNING "%s: reset phy and link down now\n", net_dev->name);
612 return -ETIME;
617 pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
618 if (revision == SIS630E_900_REV) {
619 /* SiS 630E has some bugs on default value of PHY registers */
620 mdio_write(net_dev, sis_priv->cur_phy, MII_ANADV, 0x05e1);
621 mdio_write(net_dev, sis_priv->cur_phy, MII_CONFIG1, 0x22);
622 mdio_write(net_dev, sis_priv->cur_phy, MII_CONFIG2, 0xff00);
623 mdio_write(net_dev, sis_priv->cur_phy, MII_MASK, 0xffc0);
624 //mdio_write(net_dev, sis_priv->cur_phy, MII_CONTROL, 0x1000);
627 if (sis_priv->mii->status & MII_STAT_LINK)
628 netif_carrier_on(net_dev);
629 else
630 netif_carrier_off(net_dev);
632 return 1;
636 * sis900_default_phy - Select default PHY for sis900 mac.
637 * @net_dev: the net device to probe for
639 * Select first detected PHY with link as default.
640 * If no one is link on, select PHY whose types is HOME as default.
641 * If HOME doesn't exist, select LAN.
644 static u16 sis900_default_phy(struct net_device * net_dev)
646 struct sis900_private * sis_priv = net_dev->priv;
647 struct mii_phy *phy = NULL, *phy_home = NULL, *default_phy = NULL;
648 u16 status;
650 for( phy=sis_priv->first_mii; phy; phy=phy->next ){
651 status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
652 status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
654 /* Link ON & Not select deafalut PHY */
655 if ( (status & MII_STAT_LINK) && !(default_phy) )
656 default_phy = phy;
657 else{
658 status = mdio_read(net_dev, phy->phy_addr, MII_CONTROL);
659 mdio_write(net_dev, phy->phy_addr, MII_CONTROL,
660 status | MII_CNTL_AUTO | MII_CNTL_ISOLATE);
661 if( phy->phy_types == HOME )
662 phy_home = phy;
666 if( (!default_phy) && phy_home )
667 default_phy = phy_home;
668 else if(!default_phy)
669 default_phy = sis_priv->first_mii;
671 if( sis_priv->mii != default_phy ){
672 sis_priv->mii = default_phy;
673 sis_priv->cur_phy = default_phy->phy_addr;
674 printk(KERN_INFO "%s: Using transceiver found at address %d as default\n", net_dev->name,sis_priv->cur_phy);
677 status = mdio_read(net_dev, sis_priv->cur_phy, MII_CONTROL);
678 status &= (~MII_CNTL_ISOLATE);
680 mdio_write(net_dev, sis_priv->cur_phy, MII_CONTROL, status);
681 status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
682 status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
684 return status;
689 * sis900_set_capability - set the media capability of network adapter.
690 * @net_dev : the net device to probe for
691 * @phy : default PHY
693 * Set the media capability of network adapter according to
694 * mii status register. It's necessary before auto-negotiate.
697 static void sis900_set_capability( struct net_device *net_dev , struct mii_phy *phy )
699 u16 cap;
700 u16 status;
702 status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
703 status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
705 cap = MII_NWAY_CSMA_CD |
706 ((phy->status & MII_STAT_CAN_TX_FDX)? MII_NWAY_TX_FDX:0) |
707 ((phy->status & MII_STAT_CAN_TX) ? MII_NWAY_TX:0) |
708 ((phy->status & MII_STAT_CAN_T_FDX) ? MII_NWAY_T_FDX:0)|
709 ((phy->status & MII_STAT_CAN_T) ? MII_NWAY_T:0);
711 mdio_write(net_dev, phy->phy_addr, MII_ANADV, cap);
715 /* Delay between EEPROM clock transitions. */
716 #define eeprom_delay() inl(ee_addr)
719 * read_eeprom - Read Serial EEPROM
720 * @ioaddr: base i/o address
721 * @location: the EEPROM location to read
723 * Read Serial EEPROM through EEPROM Access Register.
724 * Note that location is in word (16 bits) unit
727 static u16 __devinit read_eeprom(long ioaddr, int location)
729 int i;
730 u16 retval = 0;
731 long ee_addr = ioaddr + mear;
732 u32 read_cmd = location | EEread;
734 outl(0, ee_addr);
735 eeprom_delay();
736 outl(EECS, ee_addr);
737 eeprom_delay();
739 /* Shift the read command (9) bits out. */
740 for (i = 8; i >= 0; i--) {
741 u32 dataval = (read_cmd & (1 << i)) ? EEDI | EECS : EECS;
742 outl(dataval, ee_addr);
743 eeprom_delay();
744 outl(dataval | EECLK, ee_addr);
745 eeprom_delay();
747 outl(EECS, ee_addr);
748 eeprom_delay();
750 /* read the 16-bits data in */
751 for (i = 16; i > 0; i--) {
752 outl(EECS, ee_addr);
753 eeprom_delay();
754 outl(EECS | EECLK, ee_addr);
755 eeprom_delay();
756 retval = (retval << 1) | ((inl(ee_addr) & EEDO) ? 1 : 0);
757 eeprom_delay();
760 /* Terminate the EEPROM access. */
761 outl(0, ee_addr);
762 eeprom_delay();
764 return (retval);
767 /* Read and write the MII management registers using software-generated
768 serial MDIO protocol. Note that the command bits and data bits are
769 send out separately */
770 #define mdio_delay() inl(mdio_addr)
772 static void mdio_idle(long mdio_addr)
774 outl(MDIO | MDDIR, mdio_addr);
775 mdio_delay();
776 outl(MDIO | MDDIR | MDC, mdio_addr);
779 /* Syncronize the MII management interface by shifting 32 one bits out. */
780 static void mdio_reset(long mdio_addr)
782 int i;
784 for (i = 31; i >= 0; i--) {
785 outl(MDDIR | MDIO, mdio_addr);
786 mdio_delay();
787 outl(MDDIR | MDIO | MDC, mdio_addr);
788 mdio_delay();
790 return;
794 * mdio_read - read MII PHY register
795 * @net_dev: the net device to read
796 * @phy_id: the phy address to read
797 * @location: the phy regiester id to read
799 * Read MII registers through MDIO and MDC
800 * using MDIO management frame structure and protocol(defined by ISO/IEC).
801 * Please see SiS7014 or ICS spec
804 static u16 mdio_read(struct net_device *net_dev, int phy_id, int location)
806 long mdio_addr = net_dev->base_addr + mear;
807 int mii_cmd = MIIread|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
808 u16 retval = 0;
809 int i;
811 mdio_reset(mdio_addr);
812 mdio_idle(mdio_addr);
814 for (i = 15; i >= 0; i--) {
815 int dataval = (mii_cmd & (1 << i)) ? MDDIR | MDIO : MDDIR;
816 outl(dataval, mdio_addr);
817 mdio_delay();
818 outl(dataval | MDC, mdio_addr);
819 mdio_delay();
822 /* Read the 16 data bits. */
823 for (i = 16; i > 0; i--) {
824 outl(0, mdio_addr);
825 mdio_delay();
826 retval = (retval << 1) | ((inl(mdio_addr) & MDIO) ? 1 : 0);
827 outl(MDC, mdio_addr);
828 mdio_delay();
830 outl(0x00, mdio_addr);
832 return retval;
836 * mdio_write - write MII PHY register
837 * @net_dev: the net device to write
838 * @phy_id: the phy address to write
839 * @location: the phy regiester id to write
840 * @value: the register value to write with
842 * Write MII registers with @value through MDIO and MDC
843 * using MDIO management frame structure and protocol(defined by ISO/IEC)
844 * please see SiS7014 or ICS spec
847 static void mdio_write(struct net_device *net_dev, int phy_id, int location, int value)
849 long mdio_addr = net_dev->base_addr + mear;
850 int mii_cmd = MIIwrite|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
851 int i;
853 mdio_reset(mdio_addr);
854 mdio_idle(mdio_addr);
856 /* Shift the command bits out. */
857 for (i = 15; i >= 0; i--) {
858 int dataval = (mii_cmd & (1 << i)) ? MDDIR | MDIO : MDDIR;
859 outb(dataval, mdio_addr);
860 mdio_delay();
861 outb(dataval | MDC, mdio_addr);
862 mdio_delay();
864 mdio_delay();
866 /* Shift the value bits out. */
867 for (i = 15; i >= 0; i--) {
868 int dataval = (value & (1 << i)) ? MDDIR | MDIO : MDDIR;
869 outl(dataval, mdio_addr);
870 mdio_delay();
871 outl(dataval | MDC, mdio_addr);
872 mdio_delay();
874 mdio_delay();
876 /* Clear out extra bits. */
877 for (i = 2; i > 0; i--) {
878 outb(0, mdio_addr);
879 mdio_delay();
880 outb(MDC, mdio_addr);
881 mdio_delay();
883 outl(0x00, mdio_addr);
885 return;
890 * sis900_reset_phy - reset sis900 mii phy.
891 * @net_dev: the net device to write
892 * @phy_addr: default phy address
894 * Some specific phy can't work properly without reset.
895 * This function will be called during initialization and
896 * link status change from ON to DOWN.
899 static u16 sis900_reset_phy(struct net_device *net_dev, int phy_addr)
901 int i = 0;
902 u16 status;
904 while (i++ < 2)
905 status = mdio_read(net_dev, phy_addr, MII_STATUS);
907 mdio_write( net_dev, phy_addr, MII_CONTROL, MII_CNTL_RESET );
909 return status;
913 * sis900_open - open sis900 device
914 * @net_dev: the net device to open
916 * Do some initialization and start net interface.
917 * enable interrupts and set sis900 timer.
920 static int
921 sis900_open(struct net_device *net_dev)
923 struct sis900_private *sis_priv = net_dev->priv;
924 long ioaddr = net_dev->base_addr;
925 u8 revision;
926 int ret;
928 /* Soft reset the chip. */
929 sis900_reset(net_dev);
931 /* Equalizer workaround Rule */
932 pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
933 sis630_set_eq(net_dev, revision);
935 ret = request_irq(net_dev->irq, &sis900_interrupt, SA_SHIRQ, net_dev->name, net_dev);
936 if (ret)
937 return ret;
939 sis900_init_rxfilter(net_dev);
941 sis900_init_tx_ring(net_dev);
942 sis900_init_rx_ring(net_dev);
944 set_rx_mode(net_dev);
946 netif_start_queue(net_dev);
948 /* Workaround for EDB */
949 sis900_set_mode(ioaddr, HW_SPEED_10_MBPS, FDX_CAPABLE_HALF_SELECTED);
951 /* Enable all known interrupts by setting the interrupt mask. */
952 outl((RxSOVR|RxORN|RxERR|RxOK|TxURN|TxERR|TxIDLE), ioaddr + imr);
953 outl(RxENA | inl(ioaddr + cr), ioaddr + cr);
954 outl(IE, ioaddr + ier);
956 sis900_check_mode(net_dev, sis_priv->mii);
958 /* Set the timer to switch to check for link beat and perhaps switch
959 to an alternate media type. */
960 init_timer(&sis_priv->timer);
961 sis_priv->timer.expires = jiffies + HZ;
962 sis_priv->timer.data = (unsigned long)net_dev;
963 sis_priv->timer.function = &sis900_timer;
964 add_timer(&sis_priv->timer);
966 return 0;
970 * sis900_init_rxfilter - Initialize the Rx filter
971 * @net_dev: the net device to initialize for
973 * Set receive filter address to our MAC address
974 * and enable packet filtering.
977 static void
978 sis900_init_rxfilter (struct net_device * net_dev)
980 long ioaddr = net_dev->base_addr;
981 u32 rfcrSave;
982 u32 i;
984 rfcrSave = inl(rfcr + ioaddr);
986 /* disable packet filtering before setting filter */
987 outl(rfcrSave & ~RFEN, rfcr + ioaddr);
989 /* load MAC addr to filter data register */
990 for (i = 0 ; i < 3 ; i++) {
991 u32 w;
993 w = (u32) *((u16 *)(net_dev->dev_addr)+i);
994 outl((i << RFADDR_shift), ioaddr + rfcr);
995 outl(w, ioaddr + rfdr);
997 if (sis900_debug > 2) {
998 printk(KERN_INFO "%s: Receive Filter Addrss[%d]=%x\n",
999 net_dev->name, i, inl(ioaddr + rfdr));
1003 /* enable packet filtering */
1004 outl(rfcrSave | RFEN, rfcr + ioaddr);
1008 * sis900_init_tx_ring - Initialize the Tx descriptor ring
1009 * @net_dev: the net device to initialize for
1011 * Initialize the Tx descriptor ring,
1014 static void
1015 sis900_init_tx_ring(struct net_device *net_dev)
1017 struct sis900_private *sis_priv = net_dev->priv;
1018 long ioaddr = net_dev->base_addr;
1019 int i;
1021 sis_priv->tx_full = 0;
1022 sis_priv->dirty_tx = sis_priv->cur_tx = 0;
1024 for (i = 0; i < NUM_TX_DESC; i++) {
1025 sis_priv->tx_skbuff[i] = NULL;
1027 sis_priv->tx_ring[i].link = sis_priv->tx_ring_dma +
1028 ((i+1)%NUM_TX_DESC)*sizeof(BufferDesc);
1029 sis_priv->tx_ring[i].cmdsts = 0;
1030 sis_priv->tx_ring[i].bufptr = 0;
1033 /* load Transmit Descriptor Register */
1034 outl(sis_priv->tx_ring_dma, ioaddr + txdp);
1035 if (sis900_debug > 2)
1036 printk(KERN_INFO "%s: TX descriptor register loaded with: %8.8x\n",
1037 net_dev->name, inl(ioaddr + txdp));
1041 * sis900_init_rx_ring - Initialize the Rx descriptor ring
1042 * @net_dev: the net device to initialize for
1044 * Initialize the Rx descriptor ring,
1045 * and pre-allocate recevie buffers (socket buffer)
1048 static void
1049 sis900_init_rx_ring(struct net_device *net_dev)
1051 struct sis900_private *sis_priv = net_dev->priv;
1052 long ioaddr = net_dev->base_addr;
1053 int i;
1055 sis_priv->cur_rx = 0;
1056 sis_priv->dirty_rx = 0;
1058 /* init RX descriptor */
1059 for (i = 0; i < NUM_RX_DESC; i++) {
1060 sis_priv->rx_skbuff[i] = NULL;
1062 sis_priv->rx_ring[i].link = sis_priv->rx_ring_dma +
1063 ((i+1)%NUM_RX_DESC)*sizeof(BufferDesc);
1064 sis_priv->rx_ring[i].cmdsts = 0;
1065 sis_priv->rx_ring[i].bufptr = 0;
1068 /* allocate sock buffers */
1069 for (i = 0; i < NUM_RX_DESC; i++) {
1070 struct sk_buff *skb;
1072 if ((skb = dev_alloc_skb(RX_BUF_SIZE)) == NULL) {
1073 /* not enough memory for skbuff, this makes a "hole"
1074 on the buffer ring, it is not clear how the
1075 hardware will react to this kind of degenerated
1076 buffer */
1077 break;
1079 skb->dev = net_dev;
1080 sis_priv->rx_skbuff[i] = skb;
1081 sis_priv->rx_ring[i].cmdsts = RX_BUF_SIZE;
1082 sis_priv->rx_ring[i].bufptr = pci_map_single(sis_priv->pci_dev,
1083 skb->tail, RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1085 sis_priv->dirty_rx = (unsigned int) (i - NUM_RX_DESC);
1087 /* load Receive Descriptor Register */
1088 outl(sis_priv->rx_ring_dma, ioaddr + rxdp);
1089 if (sis900_debug > 2)
1090 printk(KERN_INFO "%s: RX descriptor register loaded with: %8.8x\n",
1091 net_dev->name, inl(ioaddr + rxdp));
1095 * sis630_set_eq - set phy equalizer value for 630 LAN
1096 * @net_dev: the net device to set equalizer value
1097 * @revision: 630 LAN revision number
1099 * 630E equalizer workaround rule(Cyrus Huang 08/15)
1100 * PHY register 14h(Test)
1101 * Bit 14: 0 -- Automatically dectect (default)
1102 * 1 -- Manually set Equalizer filter
1103 * Bit 13: 0 -- (Default)
1104 * 1 -- Speed up convergence of equalizer setting
1105 * Bit 9 : 0 -- (Default)
1106 * 1 -- Disable Baseline Wander
1107 * Bit 3~7 -- Equalizer filter setting
1108 * Link ON: Set Bit 9, 13 to 1, Bit 14 to 0
1109 * Then calculate equalizer value
1110 * Then set equalizer value, and set Bit 14 to 1, Bit 9 to 0
1111 * Link Off:Set Bit 13 to 1, Bit 14 to 0
1112 * Calculate Equalizer value:
1113 * When Link is ON and Bit 14 is 0, SIS900PHY will auto-dectect proper equalizer value.
1114 * When the equalizer is stable, this value is not a fixed value. It will be within
1115 * a small range(eg. 7~9). Then we get a minimum and a maximum value(eg. min=7, max=9)
1116 * 0 <= max <= 4 --> set equalizer to max
1117 * 5 <= max <= 14 --> set equalizer to max+1 or set equalizer to max+2 if max == min
1118 * max >= 15 --> set equalizer to max+5 or set equalizer to max+6 if max == min
1121 static void sis630_set_eq(struct net_device *net_dev, u8 revision)
1123 struct sis900_private *sis_priv = net_dev->priv;
1124 u16 reg14h, eq_value=0, max_value=0, min_value=0;
1125 int i, maxcount=10;
1127 if ( !(revision == SIS630E_900_REV || revision == SIS630EA1_900_REV ||
1128 revision == SIS630A_900_REV || revision == SIS630ET_900_REV) )
1129 return;
1131 if (netif_carrier_ok(net_dev)) {
1132 reg14h=mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
1133 mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, (0x2200 | reg14h) & 0xBFFF);
1134 for (i=0; i < maxcount; i++) {
1135 eq_value=(0x00F8 & mdio_read(net_dev, sis_priv->cur_phy, MII_RESV)) >> 3;
1136 if (i == 0)
1137 max_value=min_value=eq_value;
1138 max_value=(eq_value > max_value) ? eq_value : max_value;
1139 min_value=(eq_value < min_value) ? eq_value : min_value;
1141 /* 630E rule to determine the equalizer value */
1142 if (revision == SIS630E_900_REV || revision == SIS630EA1_900_REV ||
1143 revision == SIS630ET_900_REV) {
1144 if (max_value < 5)
1145 eq_value=max_value;
1146 else if (max_value >= 5 && max_value < 15)
1147 eq_value=(max_value == min_value) ? max_value+2 : max_value+1;
1148 else if (max_value >= 15)
1149 eq_value=(max_value == min_value) ? max_value+6 : max_value+5;
1151 /* 630B0&B1 rule to determine the equalizer value */
1152 if (revision == SIS630A_900_REV &&
1153 (sis_priv->host_bridge_rev == SIS630B0 ||
1154 sis_priv->host_bridge_rev == SIS630B1)) {
1155 if (max_value == 0)
1156 eq_value=3;
1157 else
1158 eq_value=(max_value+min_value+1)/2;
1160 /* write equalizer value and setting */
1161 reg14h=mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
1162 reg14h=(reg14h & 0xFF07) | ((eq_value << 3) & 0x00F8);
1163 reg14h=(reg14h | 0x6000) & 0xFDFF;
1164 mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, reg14h);
1166 else {
1167 reg14h=mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
1168 if (revision == SIS630A_900_REV &&
1169 (sis_priv->host_bridge_rev == SIS630B0 ||
1170 sis_priv->host_bridge_rev == SIS630B1))
1171 mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, (reg14h | 0x2200) & 0xBFFF);
1172 else
1173 mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, (reg14h | 0x2000) & 0xBFFF);
1175 return;
1179 * sis900_timer - sis900 timer routine
1180 * @data: pointer to sis900 net device
1182 * On each timer ticks we check two things,
1183 * link status (ON/OFF) and link mode (10/100/Full/Half)
1186 static void sis900_timer(unsigned long data)
1188 struct net_device *net_dev = (struct net_device *)data;
1189 struct sis900_private *sis_priv = net_dev->priv;
1190 struct mii_phy *mii_phy = sis_priv->mii;
1191 static int next_tick = 5*HZ;
1192 u16 status;
1193 u8 revision;
1195 if (!sis_priv->autong_complete){
1196 int speed, duplex = 0;
1198 sis900_read_mode(net_dev, &speed, &duplex);
1199 if (duplex){
1200 sis900_set_mode(net_dev->base_addr, speed, duplex);
1201 pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
1202 sis630_set_eq(net_dev, revision);
1203 netif_start_queue(net_dev);
1206 sis_priv->timer.expires = jiffies + HZ;
1207 add_timer(&sis_priv->timer);
1208 return;
1211 status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
1212 status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
1214 /* Link OFF -> ON */
1215 if (!netif_carrier_ok(net_dev)) {
1216 LookForLink:
1217 /* Search for new PHY */
1218 status = sis900_default_phy(net_dev);
1219 mii_phy = sis_priv->mii;
1221 if (status & MII_STAT_LINK){
1222 sis900_check_mode(net_dev, mii_phy);
1223 netif_carrier_on(net_dev);
1226 /* Link ON -> OFF */
1227 else {
1228 if (!(status & MII_STAT_LINK)){
1229 netif_carrier_off(net_dev);
1230 printk(KERN_INFO "%s: Media Link Off\n", net_dev->name);
1232 /* Change mode issue */
1233 if ((mii_phy->phy_id0 == 0x001D) &&
1234 ((mii_phy->phy_id1 & 0xFFF0) == 0x8000))
1235 sis900_reset_phy(net_dev, sis_priv->cur_phy);
1237 pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
1238 sis630_set_eq(net_dev, revision);
1240 goto LookForLink;
1244 sis_priv->timer.expires = jiffies + next_tick;
1245 add_timer(&sis_priv->timer);
1249 * sis900_check_mode - check the media mode for sis900
1250 * @net_dev: the net device to be checked
1251 * @mii_phy: the mii phy
1253 * Older driver gets the media mode from mii status output
1254 * register. Now we set our media capability and auto-negotiate
1255 * to get the upper bound of speed and duplex between two ends.
1256 * If the types of mii phy is HOME, it doesn't need to auto-negotiate
1257 * and autong_complete should be set to 1.
1260 static void sis900_check_mode (struct net_device *net_dev, struct mii_phy *mii_phy)
1262 struct sis900_private *sis_priv = net_dev->priv;
1263 long ioaddr = net_dev->base_addr;
1264 int speed, duplex;
1266 if( mii_phy->phy_types == LAN ){
1267 outl( ~EXD & inl( ioaddr + cfg ), ioaddr + cfg);
1268 sis900_set_capability(net_dev , mii_phy);
1269 sis900_auto_negotiate(net_dev, sis_priv->cur_phy);
1270 }else{
1271 outl(EXD | inl( ioaddr + cfg ), ioaddr + cfg);
1272 speed = HW_SPEED_HOME;
1273 duplex = FDX_CAPABLE_HALF_SELECTED;
1274 sis900_set_mode(ioaddr, speed, duplex);
1275 sis_priv->autong_complete = 1;
1280 * sis900_set_mode - Set the media mode of mac register.
1281 * @ioaddr: the address of the device
1282 * @speed : the transmit speed to be determined
1283 * @duplex: the duplex mode to be determined
1285 * Set the media mode of mac register txcfg/rxcfg according to
1286 * speed and duplex of phy. Bit EDB_MASTER_EN indicates the EDB
1287 * bus is used instead of PCI bus. When this bit is set 1, the
1288 * Max DMA Burst Size for TX/RX DMA should be no larger than 16
1289 * double words.
1292 static void sis900_set_mode (long ioaddr, int speed, int duplex)
1294 u32 tx_flags = 0, rx_flags = 0;
1296 if( inl(ioaddr + cfg) & EDB_MASTER_EN ){
1297 tx_flags = TxATP | (DMA_BURST_64 << TxMXDMA_shift) | (TX_FILL_THRESH << TxFILLT_shift);
1298 rx_flags = DMA_BURST_64 << RxMXDMA_shift;
1300 else{
1301 tx_flags = TxATP | (DMA_BURST_512 << TxMXDMA_shift) | (TX_FILL_THRESH << TxFILLT_shift);
1302 rx_flags = DMA_BURST_512 << RxMXDMA_shift;
1305 if (speed == HW_SPEED_HOME || speed == HW_SPEED_10_MBPS ) {
1306 rx_flags |= (RxDRNT_10 << RxDRNT_shift);
1307 tx_flags |= (TxDRNT_10 << TxDRNT_shift);
1309 else {
1310 rx_flags |= (RxDRNT_100 << RxDRNT_shift);
1311 tx_flags |= (TxDRNT_100 << TxDRNT_shift);
1314 if (duplex == FDX_CAPABLE_FULL_SELECTED) {
1315 tx_flags |= (TxCSI | TxHBI);
1316 rx_flags |= RxATX;
1319 outl (tx_flags, ioaddr + txcfg);
1320 outl (rx_flags, ioaddr + rxcfg);
1324 * sis900_auto_negotiate - Set the Auto-Negotiation Enable/Reset bit.
1325 * @net_dev: the net device to read mode for
1326 * @phy_addr: mii phy address
1328 * If the adapter is link-on, set the auto-negotiate enable/reset bit.
1329 * autong_complete should be set to 0 when starting auto-negotiation.
1330 * autong_complete should be set to 1 if we didn't start auto-negotiation.
1331 * sis900_timer will wait for link on again if autong_complete = 0.
1334 static void sis900_auto_negotiate(struct net_device *net_dev, int phy_addr)
1336 struct sis900_private *sis_priv = net_dev->priv;
1337 int i = 0;
1338 u32 status;
1340 while (i++ < 2)
1341 status = mdio_read(net_dev, phy_addr, MII_STATUS);
1343 if (!(status & MII_STAT_LINK)){
1344 printk(KERN_INFO "%s: Media Link Off\n", net_dev->name);
1345 sis_priv->autong_complete = 1;
1346 netif_carrier_off(net_dev);
1347 return;
1350 /* (Re)start AutoNegotiate */
1351 mdio_write(net_dev, phy_addr, MII_CONTROL,
1352 MII_CNTL_AUTO | MII_CNTL_RST_AUTO);
1353 sis_priv->autong_complete = 0;
1358 * sis900_read_mode - read media mode for sis900 internal phy
1359 * @net_dev: the net device to read mode for
1360 * @speed : the transmit speed to be determined
1361 * @duplex : the duplex mode to be determined
1363 * The capability of remote end will be put in mii register autorec
1364 * after auto-negotiation. Use AND operation to get the upper bound
1365 * of speed and duplex between two ends.
1368 static void sis900_read_mode(struct net_device *net_dev, int *speed, int *duplex)
1370 struct sis900_private *sis_priv = net_dev->priv;
1371 struct mii_phy *phy = sis_priv->mii;
1372 int phy_addr = sis_priv->cur_phy;
1373 u32 status;
1374 u16 autoadv, autorec;
1375 int i = 0;
1377 while (i++ < 2)
1378 status = mdio_read(net_dev, phy_addr, MII_STATUS);
1380 if (!(status & MII_STAT_LINK))
1381 return;
1383 /* AutoNegotiate completed */
1384 autoadv = mdio_read(net_dev, phy_addr, MII_ANADV);
1385 autorec = mdio_read(net_dev, phy_addr, MII_ANLPAR);
1386 status = autoadv & autorec;
1388 *speed = HW_SPEED_10_MBPS;
1389 *duplex = FDX_CAPABLE_HALF_SELECTED;
1391 if (status & (MII_NWAY_TX | MII_NWAY_TX_FDX))
1392 *speed = HW_SPEED_100_MBPS;
1393 if (status & ( MII_NWAY_TX_FDX | MII_NWAY_T_FDX))
1394 *duplex = FDX_CAPABLE_FULL_SELECTED;
1396 sis_priv->autong_complete = 1;
1398 /* Workaround for Realtek RTL8201 PHY issue */
1399 if((phy->phy_id0 == 0x0000) && ((phy->phy_id1 & 0xFFF0) == 0x8200)){
1400 if(mdio_read(net_dev, phy_addr, MII_CONTROL) & MII_CNTL_FDX)
1401 *duplex = FDX_CAPABLE_FULL_SELECTED;
1402 if(mdio_read(net_dev, phy_addr, 0x0019) & 0x01)
1403 *speed = HW_SPEED_100_MBPS;
1406 printk(KERN_INFO "%s: Media Link On %s %s-duplex \n",
1407 net_dev->name,
1408 *speed == HW_SPEED_100_MBPS ?
1409 "100mbps" : "10mbps",
1410 *duplex == FDX_CAPABLE_FULL_SELECTED ?
1411 "full" : "half");
1415 * sis900_tx_timeout - sis900 transmit timeout routine
1416 * @net_dev: the net device to transmit
1418 * print transmit timeout status
1419 * disable interrupts and do some tasks
1422 static void sis900_tx_timeout(struct net_device *net_dev)
1424 struct sis900_private *sis_priv = net_dev->priv;
1425 long ioaddr = net_dev->base_addr;
1426 unsigned long flags;
1427 int i;
1429 printk(KERN_INFO "%s: Transmit timeout, status %8.8x %8.8x \n",
1430 net_dev->name, inl(ioaddr + cr), inl(ioaddr + isr));
1432 /* Disable interrupts by clearing the interrupt mask. */
1433 outl(0x0000, ioaddr + imr);
1435 /* use spinlock to prevent interrupt handler accessing buffer ring */
1436 spin_lock_irqsave(&sis_priv->lock, flags);
1438 /* discard unsent packets */
1439 sis_priv->dirty_tx = sis_priv->cur_tx = 0;
1440 for (i = 0; i < NUM_TX_DESC; i++) {
1441 struct sk_buff *skb = sis_priv->tx_skbuff[i];
1443 if (skb) {
1444 pci_unmap_single(sis_priv->pci_dev,
1445 sis_priv->tx_ring[i].bufptr, skb->len,
1446 PCI_DMA_TODEVICE);
1447 dev_kfree_skb_irq(skb);
1448 sis_priv->tx_skbuff[i] = 0;
1449 sis_priv->tx_ring[i].cmdsts = 0;
1450 sis_priv->tx_ring[i].bufptr = 0;
1451 sis_priv->stats.tx_dropped++;
1454 sis_priv->tx_full = 0;
1455 netif_wake_queue(net_dev);
1457 spin_unlock_irqrestore(&sis_priv->lock, flags);
1459 net_dev->trans_start = jiffies;
1461 /* load Transmit Descriptor Register */
1462 outl(sis_priv->tx_ring_dma, ioaddr + txdp);
1464 /* Enable all known interrupts by setting the interrupt mask. */
1465 outl((RxSOVR|RxORN|RxERR|RxOK|TxURN|TxERR|TxIDLE), ioaddr + imr);
1466 return;
1470 * sis900_start_xmit - sis900 start transmit routine
1471 * @skb: socket buffer pointer to put the data being transmitted
1472 * @net_dev: the net device to transmit with
1474 * Set the transmit buffer descriptor,
1475 * and write TxENA to enable transmit state machine.
1476 * tell upper layer if the buffer is full
1479 static int
1480 sis900_start_xmit(struct sk_buff *skb, struct net_device *net_dev)
1482 struct sis900_private *sis_priv = net_dev->priv;
1483 long ioaddr = net_dev->base_addr;
1484 unsigned int entry;
1485 unsigned long flags;
1486 unsigned int index_cur_tx, index_dirty_tx;
1487 unsigned int count_dirty_tx;
1489 /* Don't transmit data before the complete of auto-negotiation */
1490 if(!sis_priv->autong_complete){
1491 netif_stop_queue(net_dev);
1492 return 1;
1495 spin_lock_irqsave(&sis_priv->lock, flags);
1497 /* Calculate the next Tx descriptor entry. */
1498 entry = sis_priv->cur_tx % NUM_TX_DESC;
1499 sis_priv->tx_skbuff[entry] = skb;
1501 /* set the transmit buffer descriptor and enable Transmit State Machine */
1502 sis_priv->tx_ring[entry].bufptr = pci_map_single(sis_priv->pci_dev,
1503 skb->data, skb->len, PCI_DMA_TODEVICE);
1504 sis_priv->tx_ring[entry].cmdsts = (OWN | skb->len);
1505 outl(TxENA | inl(ioaddr + cr), ioaddr + cr);
1507 sis_priv->cur_tx ++;
1508 index_cur_tx = sis_priv->cur_tx;
1509 index_dirty_tx = sis_priv->dirty_tx;
1511 for (count_dirty_tx = 0; index_cur_tx != index_dirty_tx; index_dirty_tx++)
1512 count_dirty_tx ++;
1514 if (index_cur_tx == index_dirty_tx) {
1515 /* dirty_tx is met in the cycle of cur_tx, buffer full */
1516 sis_priv->tx_full = 1;
1517 netif_stop_queue(net_dev);
1518 } else if (count_dirty_tx < NUM_TX_DESC) {
1519 /* Typical path, tell upper layer that more transmission is possible */
1520 netif_start_queue(net_dev);
1521 } else {
1522 /* buffer full, tell upper layer no more transmission */
1523 sis_priv->tx_full = 1;
1524 netif_stop_queue(net_dev);
1527 spin_unlock_irqrestore(&sis_priv->lock, flags);
1529 net_dev->trans_start = jiffies;
1531 if (sis900_debug > 3)
1532 printk(KERN_INFO "%s: Queued Tx packet at %p size %d "
1533 "to slot %d.\n",
1534 net_dev->name, skb->data, (int)skb->len, entry);
1536 return 0;
1540 * sis900_interrupt - sis900 interrupt handler
1541 * @irq: the irq number
1542 * @dev_instance: the client data object
1543 * @regs: snapshot of processor context
1545 * The interrupt handler does all of the Rx thread work,
1546 * and cleans up after the Tx thread
1549 static irqreturn_t sis900_interrupt(int irq, void *dev_instance, struct pt_regs *regs)
1551 struct net_device *net_dev = dev_instance;
1552 struct sis900_private *sis_priv = net_dev->priv;
1553 int boguscnt = max_interrupt_work;
1554 long ioaddr = net_dev->base_addr;
1555 u32 status;
1556 unsigned int handled = 0;
1558 spin_lock (&sis_priv->lock);
1560 do {
1561 status = inl(ioaddr + isr);
1563 if ((status & (HIBERR|TxURN|TxERR|TxIDLE|RxORN|RxERR|RxOK)) == 0)
1564 /* nothing intresting happened */
1565 break;
1566 handled = 1;
1568 /* why dow't we break after Tx/Rx case ?? keyword: full-duplex */
1569 if (status & (RxORN | RxERR | RxOK))
1570 /* Rx interrupt */
1571 sis900_rx(net_dev);
1573 if (status & (TxURN | TxERR | TxIDLE))
1574 /* Tx interrupt */
1575 sis900_finish_xmit(net_dev);
1577 /* something strange happened !!! */
1578 if (status & HIBERR) {
1579 printk(KERN_INFO "%s: Abnormal interrupt,"
1580 "status %#8.8x.\n", net_dev->name, status);
1581 break;
1583 if (--boguscnt < 0) {
1584 printk(KERN_INFO "%s: Too much work at interrupt, "
1585 "interrupt status = %#8.8x.\n",
1586 net_dev->name, status);
1587 break;
1589 } while (1);
1591 if (sis900_debug > 3)
1592 printk(KERN_INFO "%s: exiting interrupt, "
1593 "interrupt status = 0x%#8.8x.\n",
1594 net_dev->name, inl(ioaddr + isr));
1596 spin_unlock (&sis_priv->lock);
1597 return IRQ_RETVAL(handled);
1601 * sis900_rx - sis900 receive routine
1602 * @net_dev: the net device which receives data
1604 * Process receive interrupt events,
1605 * put buffer to higher layer and refill buffer pool
1606 * Note: This fucntion is called by interrupt handler,
1607 * don't do "too much" work here
1610 static int sis900_rx(struct net_device *net_dev)
1612 struct sis900_private *sis_priv = net_dev->priv;
1613 long ioaddr = net_dev->base_addr;
1614 unsigned int entry = sis_priv->cur_rx % NUM_RX_DESC;
1615 u32 rx_status = sis_priv->rx_ring[entry].cmdsts;
1617 if (sis900_debug > 3)
1618 printk(KERN_INFO "sis900_rx, cur_rx:%4.4d, dirty_rx:%4.4d "
1619 "status:0x%8.8x\n",
1620 sis_priv->cur_rx, sis_priv->dirty_rx, rx_status);
1622 while (rx_status & OWN) {
1623 unsigned int rx_size;
1625 rx_size = (rx_status & DSIZE) - CRC_SIZE;
1627 if (rx_status & (ABORT|OVERRUN|TOOLONG|RUNT|RXISERR|CRCERR|FAERR)) {
1628 /* corrupted packet received */
1629 if (sis900_debug > 3)
1630 printk(KERN_INFO "%s: Corrupted packet "
1631 "received, buffer status = 0x%8.8x.\n",
1632 net_dev->name, rx_status);
1633 sis_priv->stats.rx_errors++;
1634 if (rx_status & OVERRUN)
1635 sis_priv->stats.rx_over_errors++;
1636 if (rx_status & (TOOLONG|RUNT))
1637 sis_priv->stats.rx_length_errors++;
1638 if (rx_status & (RXISERR | FAERR))
1639 sis_priv->stats.rx_frame_errors++;
1640 if (rx_status & CRCERR)
1641 sis_priv->stats.rx_crc_errors++;
1642 /* reset buffer descriptor state */
1643 sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
1644 } else {
1645 struct sk_buff * skb;
1647 /* This situation should never happen, but due to
1648 some unknow bugs, it is possible that
1649 we are working on NULL sk_buff :-( */
1650 if (sis_priv->rx_skbuff[entry] == NULL) {
1651 printk(KERN_INFO "%s: NULL pointer "
1652 "encountered in Rx ring, skipping\n",
1653 net_dev->name);
1654 break;
1657 pci_unmap_single(sis_priv->pci_dev,
1658 sis_priv->rx_ring[entry].bufptr, RX_BUF_SIZE,
1659 PCI_DMA_FROMDEVICE);
1660 /* give the socket buffer to upper layers */
1661 skb = sis_priv->rx_skbuff[entry];
1662 skb_put(skb, rx_size);
1663 skb->protocol = eth_type_trans(skb, net_dev);
1664 netif_rx(skb);
1666 /* some network statistics */
1667 if ((rx_status & BCAST) == MCAST)
1668 sis_priv->stats.multicast++;
1669 net_dev->last_rx = jiffies;
1670 sis_priv->stats.rx_bytes += rx_size;
1671 sis_priv->stats.rx_packets++;
1673 /* refill the Rx buffer, what if there is not enought memory for
1674 new socket buffer ?? */
1675 if ((skb = dev_alloc_skb(RX_BUF_SIZE)) == NULL) {
1676 /* not enough memory for skbuff, this makes a "hole"
1677 on the buffer ring, it is not clear how the
1678 hardware will react to this kind of degenerated
1679 buffer */
1680 printk(KERN_INFO "%s: Memory squeeze,"
1681 "deferring packet.\n",
1682 net_dev->name);
1683 sis_priv->rx_skbuff[entry] = NULL;
1684 /* reset buffer descriptor state */
1685 sis_priv->rx_ring[entry].cmdsts = 0;
1686 sis_priv->rx_ring[entry].bufptr = 0;
1687 sis_priv->stats.rx_dropped++;
1688 break;
1690 skb->dev = net_dev;
1691 sis_priv->rx_skbuff[entry] = skb;
1692 sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
1693 sis_priv->rx_ring[entry].bufptr =
1694 pci_map_single(sis_priv->pci_dev, skb->tail,
1695 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1696 sis_priv->dirty_rx++;
1698 sis_priv->cur_rx++;
1699 entry = sis_priv->cur_rx % NUM_RX_DESC;
1700 rx_status = sis_priv->rx_ring[entry].cmdsts;
1701 } // while
1703 /* refill the Rx buffer, what if the rate of refilling is slower than
1704 consuming ?? */
1705 for (;sis_priv->cur_rx - sis_priv->dirty_rx > 0; sis_priv->dirty_rx++) {
1706 struct sk_buff *skb;
1708 entry = sis_priv->dirty_rx % NUM_RX_DESC;
1710 if (sis_priv->rx_skbuff[entry] == NULL) {
1711 if ((skb = dev_alloc_skb(RX_BUF_SIZE)) == NULL) {
1712 /* not enough memory for skbuff, this makes a "hole"
1713 on the buffer ring, it is not clear how the
1714 hardware will react to this kind of degenerated
1715 buffer */
1716 printk(KERN_INFO "%s: Memory squeeze,"
1717 "deferring packet.\n",
1718 net_dev->name);
1719 sis_priv->stats.rx_dropped++;
1720 break;
1722 skb->dev = net_dev;
1723 sis_priv->rx_skbuff[entry] = skb;
1724 sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
1725 sis_priv->rx_ring[entry].bufptr =
1726 pci_map_single(sis_priv->pci_dev, skb->tail,
1727 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1730 /* re-enable the potentially idle receive state matchine */
1731 outl(RxENA | inl(ioaddr + cr), ioaddr + cr );
1733 return 0;
1737 * sis900_finish_xmit - finish up transmission of packets
1738 * @net_dev: the net device to be transmitted on
1740 * Check for error condition and free socket buffer etc
1741 * schedule for more transmission as needed
1742 * Note: This fucntion is called by interrupt handler,
1743 * don't do "too much" work here
1746 static void sis900_finish_xmit (struct net_device *net_dev)
1748 struct sis900_private *sis_priv = net_dev->priv;
1750 for (; sis_priv->dirty_tx != sis_priv->cur_tx; sis_priv->dirty_tx++) {
1751 struct sk_buff *skb;
1752 unsigned int entry;
1753 u32 tx_status;
1755 entry = sis_priv->dirty_tx % NUM_TX_DESC;
1756 tx_status = sis_priv->tx_ring[entry].cmdsts;
1758 if (tx_status & OWN) {
1759 /* The packet is not transmitted yet (owned by hardware) !
1760 Note: the interrupt is generated only when Tx Machine
1761 is idle, so this is an almost impossible case */
1762 break;
1765 if (tx_status & (ABORT | UNDERRUN | OWCOLL)) {
1766 /* packet unsuccessfully transmitted */
1767 if (sis900_debug > 3)
1768 printk(KERN_INFO "%s: Transmit "
1769 "error, Tx status %8.8x.\n",
1770 net_dev->name, tx_status);
1771 sis_priv->stats.tx_errors++;
1772 if (tx_status & UNDERRUN)
1773 sis_priv->stats.tx_fifo_errors++;
1774 if (tx_status & ABORT)
1775 sis_priv->stats.tx_aborted_errors++;
1776 if (tx_status & NOCARRIER)
1777 sis_priv->stats.tx_carrier_errors++;
1778 if (tx_status & OWCOLL)
1779 sis_priv->stats.tx_window_errors++;
1780 } else {
1781 /* packet successfully transmitted */
1782 sis_priv->stats.collisions += (tx_status & COLCNT) >> 16;
1783 sis_priv->stats.tx_bytes += tx_status & DSIZE;
1784 sis_priv->stats.tx_packets++;
1786 /* Free the original skb. */
1787 skb = sis_priv->tx_skbuff[entry];
1788 pci_unmap_single(sis_priv->pci_dev,
1789 sis_priv->tx_ring[entry].bufptr, skb->len,
1790 PCI_DMA_TODEVICE);
1791 dev_kfree_skb_irq(skb);
1792 sis_priv->tx_skbuff[entry] = NULL;
1793 sis_priv->tx_ring[entry].bufptr = 0;
1794 sis_priv->tx_ring[entry].cmdsts = 0;
1797 if (sis_priv->tx_full && netif_queue_stopped(net_dev) &&
1798 sis_priv->cur_tx - sis_priv->dirty_tx < NUM_TX_DESC - 4) {
1799 /* The ring is no longer full, clear tx_full and schedule more transmission
1800 by netif_wake_queue(net_dev) */
1801 sis_priv->tx_full = 0;
1802 netif_wake_queue (net_dev);
1807 * sis900_close - close sis900 device
1808 * @net_dev: the net device to be closed
1810 * Disable interrupts, stop the Tx and Rx Status Machine
1811 * free Tx and RX socket buffer
1814 static int
1815 sis900_close(struct net_device *net_dev)
1817 long ioaddr = net_dev->base_addr;
1818 struct sis900_private *sis_priv = net_dev->priv;
1819 struct sk_buff *skb;
1820 int i;
1822 netif_stop_queue(net_dev);
1824 /* Disable interrupts by clearing the interrupt mask. */
1825 outl(0x0000, ioaddr + imr);
1826 outl(0x0000, ioaddr + ier);
1828 /* Stop the chip's Tx and Rx Status Machine */
1829 outl(RxDIS | TxDIS | inl(ioaddr + cr), ioaddr + cr);
1831 del_timer(&sis_priv->timer);
1833 free_irq(net_dev->irq, net_dev);
1835 /* Free Tx and RX skbuff */
1836 for (i = 0; i < NUM_RX_DESC; i++) {
1837 skb = sis_priv->rx_skbuff[i];
1838 if (skb) {
1839 pci_unmap_single(sis_priv->pci_dev,
1840 sis_priv->rx_ring[i].bufptr,
1841 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1842 dev_kfree_skb(skb);
1843 sis_priv->rx_skbuff[i] = 0;
1846 for (i = 0; i < NUM_TX_DESC; i++) {
1847 skb = sis_priv->tx_skbuff[i];
1848 if (skb) {
1849 pci_unmap_single(sis_priv->pci_dev,
1850 sis_priv->tx_ring[i].bufptr, skb->len,
1851 PCI_DMA_TODEVICE);
1852 dev_kfree_skb(skb);
1853 sis_priv->tx_skbuff[i] = 0;
1857 /* Green! Put the chip in low-power mode. */
1859 return 0;
1863 * sis900_get_drvinfo - Return information about driver
1864 * @net_dev: the net device to probe
1865 * @info: container for info returned
1867 * Process ethtool command such as "ehtool -i" to show information
1870 static void sis900_get_drvinfo(struct net_device *net_dev,
1871 struct ethtool_drvinfo *info)
1873 struct sis900_private *sis_priv = net_dev->priv;
1875 strcpy (info->driver, SIS900_MODULE_NAME);
1876 strcpy (info->version, SIS900_DRV_VERSION);
1877 strcpy (info->bus_info, pci_name(sis_priv->pci_dev));
1880 static struct ethtool_ops sis900_ethtool_ops = {
1881 .get_drvinfo = sis900_get_drvinfo,
1885 * mii_ioctl - process MII i/o control command
1886 * @net_dev: the net device to command for
1887 * @rq: parameter for command
1888 * @cmd: the i/o command
1890 * Process MII command like read/write MII register
1893 static int mii_ioctl(struct net_device *net_dev, struct ifreq *rq, int cmd)
1895 struct sis900_private *sis_priv = net_dev->priv;
1896 struct mii_ioctl_data *data = if_mii(rq);
1898 switch(cmd) {
1899 case SIOCGMIIPHY: /* Get address of MII PHY in use. */
1900 data->phy_id = sis_priv->mii->phy_addr;
1901 /* Fall Through */
1903 case SIOCGMIIREG: /* Read MII PHY register. */
1904 data->val_out = mdio_read(net_dev, data->phy_id & 0x1f, data->reg_num & 0x1f);
1905 return 0;
1907 case SIOCSMIIREG: /* Write MII PHY register. */
1908 if (!capable(CAP_NET_ADMIN))
1909 return -EPERM;
1910 mdio_write(net_dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
1911 return 0;
1912 default:
1913 return -EOPNOTSUPP;
1918 * sis900_get_stats - Get sis900 read/write statistics
1919 * @net_dev: the net device to get statistics for
1921 * get tx/rx statistics for sis900
1924 static struct net_device_stats *
1925 sis900_get_stats(struct net_device *net_dev)
1927 struct sis900_private *sis_priv = net_dev->priv;
1929 return &sis_priv->stats;
1933 * sis900_set_config - Set media type by net_device.set_config
1934 * @dev: the net device for media type change
1935 * @map: ifmap passed by ifconfig
1937 * Set media type to 10baseT, 100baseT or 0(for auto) by ifconfig
1938 * we support only port changes. All other runtime configuration
1939 * changes will be ignored
1942 static int sis900_set_config(struct net_device *dev, struct ifmap *map)
1944 struct sis900_private *sis_priv = dev->priv;
1945 struct mii_phy *mii_phy = sis_priv->mii;
1947 u16 status;
1949 if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
1950 /* we switch on the ifmap->port field. I couldn't find anything
1951 like a definition or standard for the values of that field.
1952 I think the meaning of those values is device specific. But
1953 since I would like to change the media type via the ifconfig
1954 command I use the definition from linux/netdevice.h
1955 (which seems to be different from the ifport(pcmcia) definition)
1957 switch(map->port){
1958 case IF_PORT_UNKNOWN: /* use auto here */
1959 dev->if_port = map->port;
1960 /* we are going to change the media type, so the Link will
1961 be temporary down and we need to reflect that here. When
1962 the Link comes up again, it will be sensed by the sis_timer
1963 procedure, which also does all the rest for us */
1964 netif_carrier_off(dev);
1966 /* read current state */
1967 status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
1969 /* enable auto negotiation and reset the negotioation
1970 (I don't really know what the auto negatiotiation reset
1971 really means, but it sounds for me right to do one here)*/
1972 mdio_write(dev, mii_phy->phy_addr,
1973 MII_CONTROL, status | MII_CNTL_AUTO | MII_CNTL_RST_AUTO);
1975 break;
1977 case IF_PORT_10BASET: /* 10BaseT */
1978 dev->if_port = map->port;
1980 /* we are going to change the media type, so the Link will
1981 be temporary down and we need to reflect that here. When
1982 the Link comes up again, it will be sensed by the sis_timer
1983 procedure, which also does all the rest for us */
1984 netif_carrier_off(dev);
1986 /* set Speed to 10Mbps */
1987 /* read current state */
1988 status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
1990 /* disable auto negotiation and force 10MBit mode*/
1991 mdio_write(dev, mii_phy->phy_addr,
1992 MII_CONTROL, status & ~(MII_CNTL_SPEED | MII_CNTL_AUTO));
1993 break;
1995 case IF_PORT_100BASET: /* 100BaseT */
1996 case IF_PORT_100BASETX: /* 100BaseTx */
1997 dev->if_port = map->port;
1999 /* we are going to change the media type, so the Link will
2000 be temporary down and we need to reflect that here. When
2001 the Link comes up again, it will be sensed by the sis_timer
2002 procedure, which also does all the rest for us */
2003 netif_carrier_off(dev);
2005 /* set Speed to 100Mbps */
2006 /* disable auto negotiation and enable 100MBit Mode */
2007 status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
2008 mdio_write(dev, mii_phy->phy_addr,
2009 MII_CONTROL, (status & ~MII_CNTL_SPEED) | MII_CNTL_SPEED);
2011 break;
2013 case IF_PORT_10BASE2: /* 10Base2 */
2014 case IF_PORT_AUI: /* AUI */
2015 case IF_PORT_100BASEFX: /* 100BaseFx */
2016 /* These Modes are not supported (are they?)*/
2017 printk(KERN_INFO "Not supported");
2018 return -EOPNOTSUPP;
2019 break;
2021 default:
2022 printk(KERN_INFO "Invalid");
2023 return -EINVAL;
2026 return 0;
2030 * sis900_mcast_bitnr - compute hashtable index
2031 * @addr: multicast address
2032 * @revision: revision id of chip
2034 * SiS 900 uses the most sigificant 7 bits to index a 128 bits multicast
2035 * hash table, which makes this function a little bit different from other drivers
2036 * SiS 900 B0 & 635 M/B uses the most significat 8 bits to index 256 bits
2037 * multicast hash table.
2040 static inline u16 sis900_mcast_bitnr(u8 *addr, u8 revision)
2043 u32 crc = ether_crc(6, addr);
2045 /* leave 8 or 7 most siginifant bits */
2046 if ((revision >= SIS635A_900_REV) || (revision == SIS900B_900_REV))
2047 return ((int)(crc >> 24));
2048 else
2049 return ((int)(crc >> 25));
2053 * set_rx_mode - Set SiS900 receive mode
2054 * @net_dev: the net device to be set
2056 * Set SiS900 receive mode for promiscuous, multicast, or broadcast mode.
2057 * And set the appropriate multicast filter.
2058 * Multicast hash table changes from 128 to 256 bits for 635M/B & 900B0.
2061 static void set_rx_mode(struct net_device *net_dev)
2063 long ioaddr = net_dev->base_addr;
2064 struct sis900_private * sis_priv = net_dev->priv;
2065 u16 mc_filter[16] = {0}; /* 256/128 bits multicast hash table */
2066 int i, table_entries;
2067 u32 rx_mode;
2068 u8 revision;
2070 /* 635 Hash Table entires = 256(2^16) */
2071 pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
2072 if((revision >= SIS635A_900_REV) || (revision == SIS900B_900_REV))
2073 table_entries = 16;
2074 else
2075 table_entries = 8;
2077 if (net_dev->flags & IFF_PROMISC) {
2078 /* Accept any kinds of packets */
2079 rx_mode = RFPromiscuous;
2080 for (i = 0; i < table_entries; i++)
2081 mc_filter[i] = 0xffff;
2082 } else if ((net_dev->mc_count > multicast_filter_limit) ||
2083 (net_dev->flags & IFF_ALLMULTI)) {
2084 /* too many multicast addresses or accept all multicast packet */
2085 rx_mode = RFAAB | RFAAM;
2086 for (i = 0; i < table_entries; i++)
2087 mc_filter[i] = 0xffff;
2088 } else {
2089 /* Accept Broadcast packet, destination address matchs our MAC address,
2090 use Receive Filter to reject unwanted MCAST packet */
2091 struct dev_mc_list *mclist;
2092 rx_mode = RFAAB;
2093 for (i = 0, mclist = net_dev->mc_list; mclist && i < net_dev->mc_count;
2094 i++, mclist = mclist->next) {
2095 unsigned int bit_nr =
2096 sis900_mcast_bitnr(mclist->dmi_addr, revision);
2097 mc_filter[bit_nr >> 4] |= (1 << (bit_nr & 0xf));
2101 /* update Multicast Hash Table in Receive Filter */
2102 for (i = 0; i < table_entries; i++) {
2103 /* why plus 0x04 ??, That makes the correct value for hash table. */
2104 outl((u32)(0x00000004+i) << RFADDR_shift, ioaddr + rfcr);
2105 outl(mc_filter[i], ioaddr + rfdr);
2108 outl(RFEN | rx_mode, ioaddr + rfcr);
2110 /* sis900 is capatable of looping back packet at MAC level for debugging purpose */
2111 if (net_dev->flags & IFF_LOOPBACK) {
2112 u32 cr_saved;
2113 /* We must disable Tx/Rx before setting loopback mode */
2114 cr_saved = inl(ioaddr + cr);
2115 outl(cr_saved | TxDIS | RxDIS, ioaddr + cr);
2116 /* enable loopback */
2117 outl(inl(ioaddr + txcfg) | TxMLB, ioaddr + txcfg);
2118 outl(inl(ioaddr + rxcfg) | RxATX, ioaddr + rxcfg);
2119 /* restore cr */
2120 outl(cr_saved, ioaddr + cr);
2123 return;
2127 * sis900_reset - Reset sis900 MAC
2128 * @net_dev: the net device to reset
2130 * reset sis900 MAC and wait until finished
2131 * reset through command register
2132 * change backoff algorithm for 900B0 & 635 M/B
2135 static void sis900_reset(struct net_device *net_dev)
2137 struct sis900_private * sis_priv = net_dev->priv;
2138 long ioaddr = net_dev->base_addr;
2139 int i = 0;
2140 u32 status = TxRCMP | RxRCMP;
2141 u8 revision;
2143 outl(0, ioaddr + ier);
2144 outl(0, ioaddr + imr);
2145 outl(0, ioaddr + rfcr);
2147 outl(RxRESET | TxRESET | RESET | inl(ioaddr + cr), ioaddr + cr);
2149 /* Check that the chip has finished the reset. */
2150 while (status && (i++ < 1000)) {
2151 status ^= (inl(isr + ioaddr) & status);
2154 pci_read_config_byte(sis_priv->pci_dev, PCI_CLASS_REVISION, &revision);
2155 if( (revision >= SIS635A_900_REV) || (revision == SIS900B_900_REV) )
2156 outl(PESEL | RND_CNT, ioaddr + cfg);
2157 else
2158 outl(PESEL, ioaddr + cfg);
2162 * sis900_remove - Remove sis900 device
2163 * @pci_dev: the pci device to be removed
2165 * remove and release SiS900 net device
2168 static void __devexit sis900_remove(struct pci_dev *pci_dev)
2170 struct net_device *net_dev = pci_get_drvdata(pci_dev);
2171 struct sis900_private * sis_priv = net_dev->priv;
2172 struct mii_phy *phy = NULL;
2174 while (sis_priv->first_mii) {
2175 phy = sis_priv->first_mii;
2176 sis_priv->first_mii = phy->next;
2177 kfree(phy);
2180 pci_free_consistent(pci_dev, RX_TOTAL_SIZE, sis_priv->rx_ring,
2181 sis_priv->rx_ring_dma);
2182 pci_free_consistent(pci_dev, TX_TOTAL_SIZE, sis_priv->tx_ring,
2183 sis_priv->tx_ring_dma);
2184 unregister_netdev(net_dev);
2185 free_netdev(net_dev);
2186 pci_release_regions(pci_dev);
2187 pci_set_drvdata(pci_dev, NULL);
2190 #ifdef CONFIG_PM
2192 static int sis900_suspend(struct pci_dev *pci_dev, u32 state)
2194 struct net_device *net_dev = pci_get_drvdata(pci_dev);
2195 struct sis900_private *sis_priv = net_dev->priv;
2196 long ioaddr = net_dev->base_addr;
2198 if(!netif_running(net_dev))
2199 return 0;
2201 netif_stop_queue(net_dev);
2202 netif_device_detach(net_dev);
2204 /* Stop the chip's Tx and Rx Status Machine */
2205 outl(RxDIS | TxDIS | inl(ioaddr + cr), ioaddr + cr);
2207 pci_set_power_state(pci_dev, 3);
2208 pci_save_state(pci_dev, sis_priv->pci_state);
2210 return 0;
2213 static int sis900_resume(struct pci_dev *pci_dev)
2215 struct net_device *net_dev = pci_get_drvdata(pci_dev);
2216 struct sis900_private *sis_priv = net_dev->priv;
2217 long ioaddr = net_dev->base_addr;
2219 if(!netif_running(net_dev))
2220 return 0;
2221 pci_restore_state(pci_dev, sis_priv->pci_state);
2222 pci_set_power_state(pci_dev, 0);
2224 sis900_init_rxfilter(net_dev);
2226 sis900_init_tx_ring(net_dev);
2227 sis900_init_rx_ring(net_dev);
2229 set_rx_mode(net_dev);
2231 netif_device_attach(net_dev);
2232 netif_start_queue(net_dev);
2234 /* Workaround for EDB */
2235 sis900_set_mode(ioaddr, HW_SPEED_10_MBPS, FDX_CAPABLE_HALF_SELECTED);
2237 /* Enable all known interrupts by setting the interrupt mask. */
2238 outl((RxSOVR|RxORN|RxERR|RxOK|TxURN|TxERR|TxIDLE), ioaddr + imr);
2239 outl(RxENA | inl(ioaddr + cr), ioaddr + cr);
2240 outl(IE, ioaddr + ier);
2242 sis900_check_mode(net_dev, sis_priv->mii);
2244 return 0;
2246 #endif /* CONFIG_PM */
2248 static struct pci_driver sis900_pci_driver = {
2249 .name = SIS900_MODULE_NAME,
2250 .id_table = sis900_pci_tbl,
2251 .probe = sis900_probe,
2252 .remove = __devexit_p(sis900_remove),
2253 #ifdef CONFIG_PM
2254 .suspend = sis900_suspend,
2255 .resume = sis900_resume,
2256 #endif /* CONFIG_PM */
2259 static int __init sis900_init_module(void)
2261 /* when a module, this is printed whether or not devices are found in probe */
2262 #ifdef MODULE
2263 printk(version);
2264 #endif
2266 return pci_module_init(&sis900_pci_driver);
2269 static void __exit sis900_cleanup_module(void)
2271 pci_unregister_driver(&sis900_pci_driver);
2274 module_init(sis900_init_module);
2275 module_exit(sis900_cleanup_module);