]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/net/ethernet/sis/sis900.c
Merge tag 'for-5.7-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[mirror_ubuntu-jammy-kernel.git] / drivers / net / ethernet / sis / sis900.c
CommitLineData
1da177e4 1/* sis900.c: A SiS 900/7016 PCI Fast Ethernet driver for Linux.
6aa20a22 2 Copyright 1999 Silicon Integrated System Corporation
d269a69f 3 Revision: 1.08.10 Apr. 2 2006
6aa20a22 4
1da177e4 5 Modified from the driver which is originally written by Donald Becker.
6aa20a22 6
1da177e4
LT
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.
6aa20a22 11
1da177e4
LT
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
d269a69f 20 Rev 1.08.10 Apr. 2 2006 Daniele Venzano add vlan (jumbo packets) support
ea37ccea 21 Rev 1.08.09 Sep. 19 2005 Daniele Venzano add Wake on LAN support
1da177e4 22 Rev 1.08.08 Jan. 22 2005 Daniele Venzano use netif_msg for debugging messages
d269a69f 23 Rev 1.08.07 Nov. 2 2003 Daniele Venzano <venza@brownhat.org> add suspend/resume support
1da177e4
LT
24 Rev 1.08.06 Sep. 24 2002 Mufasa Yang bug fix for Tx timeout & add SiS963 support
25 Rev 1.08.05 Jun. 6 2002 Mufasa Yang bug fix for read_eeprom & Tx descriptor over-boundary
26 Rev 1.08.04 Apr. 25 2002 Mufasa Yang <mufasa@sis.com.tw> added SiS962 support
27 Rev 1.08.03 Feb. 1 2002 Matt Domsch <Matt_Domsch@dell.com> update to use library crc32 function
28 Rev 1.08.02 Nov. 30 2001 Hui-Fen Hsu workaround for EDB & bug fix for dhcp problem
29 Rev 1.08.01 Aug. 25 2001 Hui-Fen Hsu update for 630ET & workaround for ICS1893 PHY
30 Rev 1.08.00 Jun. 11 2001 Hui-Fen Hsu workaround for RTL8201 PHY and some bug fix
31 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
6aa20a22 32 Rev 1.07.10 Mar. 1 2001 Hui-Fen Hsu <hfhsu@sis.com.tw> some bug fix & 635M/B support
1da177e4
LT
33 Rev 1.07.09 Feb. 9 2001 Dave Jones <davej@suse.de> PCI enable cleanup
34 Rev 1.07.08 Jan. 8 2001 Lei-Chun Chang added RTL8201 PHY support
35 Rev 1.07.07 Nov. 29 2000 Lei-Chun Chang added kernel-doc extractable documentation and 630 workaround fix
36 Rev 1.07.06 Nov. 7 2000 Jeff Garzik <jgarzik@pobox.com> some bug fix and cleaning
37 Rev 1.07.05 Nov. 6 2000 metapirat<metapirat@gmx.de> contribute media type select by ifconfig
38 Rev 1.07.04 Sep. 6 2000 Lei-Chun Chang added ICS1893 PHY support
b595076a 39 Rev 1.07.03 Aug. 24 2000 Lei-Chun Chang (lcchang@sis.com.tw) modified 630E equalizer workaround rule
1da177e4
LT
40 Rev 1.07.01 Aug. 08 2000 Ollie Lho minor update for SiS 630E and SiS 630E A1
41 Rev 1.07 Mar. 07 2000 Ollie Lho bug fix in Rx buffer ring
42 Rev 1.06.04 Feb. 11 2000 Jeff Garzik <jgarzik@pobox.com> softnet and init for kernel 2.4
43 Rev 1.06.03 Dec. 23 1999 Ollie Lho Third release
44 Rev 1.06.02 Nov. 23 1999 Ollie Lho bug in mac probing fixed
45 Rev 1.06.01 Nov. 16 1999 Ollie Lho CRC calculation provide by Joseph Zbiciak (im14u2c@primenet.com)
46 Rev 1.06 Nov. 4 1999 Ollie Lho (ollie@sis.com.tw) Second release
47 Rev 1.05.05 Oct. 29 1999 Ollie Lho (ollie@sis.com.tw) Single buffer Tx/Rx
48 Chin-Shan Li (lcs@sis.com.tw) Added AMD Am79c901 HomePNA PHY support
49 Rev 1.05 Aug. 7 1999 Jim Huang (cmhuang@sis.com.tw) Initial release
50*/
51
52#include <linux/module.h>
53#include <linux/moduleparam.h>
54#include <linux/kernel.h>
d43c36dc 55#include <linux/sched.h>
1da177e4
LT
56#include <linux/string.h>
57#include <linux/timer.h>
58#include <linux/errno.h>
59#include <linux/ioport.h>
60#include <linux/slab.h>
61#include <linux/interrupt.h>
62#include <linux/pci.h>
63#include <linux/netdevice.h>
64#include <linux/init.h>
65#include <linux/mii.h>
66#include <linux/etherdevice.h>
67#include <linux/skbuff.h>
68#include <linux/delay.h>
69#include <linux/ethtool.h>
70#include <linux/crc32.h>
71#include <linux/bitops.h>
12b279f9 72#include <linux/dma-mapping.h>
1da177e4
LT
73
74#include <asm/processor.h> /* Processor type for cache alignment. */
75#include <asm/io.h>
76#include <asm/irq.h>
7c0f6ba6 77#include <linux/uaccess.h> /* User space memory access functions */
1da177e4
LT
78
79#include "sis900.h"
80
81#define SIS900_MODULE_NAME "sis900"
d269a69f 82#define SIS900_DRV_VERSION "v1.08.10 Apr. 2 2006"
1da177e4 83
369e1231 84static const char version[] =
9a3c3de7 85 KERN_INFO "sis900.c: " SIS900_DRV_VERSION "\n";
1da177e4
LT
86
87static int max_interrupt_work = 40;
88static int multicast_filter_limit = 128;
89
90static int sis900_debug = -1; /* Use SIS900_DEF_MSG as value */
91
92#define SIS900_DEF_MSG \
93 (NETIF_MSG_DRV | \
94 NETIF_MSG_LINK | \
95 NETIF_MSG_RX_ERR | \
96 NETIF_MSG_TX_ERR)
97
98/* Time in jiffies before concluding the transmitter is hung. */
99#define TX_TIMEOUT (4*HZ)
1da177e4
LT
100
101enum {
102 SIS_900 = 0,
103 SIS_7016
104};
f71e1309 105static const char * card_names[] = {
1da177e4
LT
106 "SiS 900 PCI Fast Ethernet",
107 "SiS 7016 PCI Fast Ethernet"
108};
9baa3c34
BT
109
110static const struct pci_device_id sis900_pci_tbl[] = {
1da177e4
LT
111 {PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_900,
112 PCI_ANY_ID, PCI_ANY_ID, 0, 0, SIS_900},
113 {PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_7016,
114 PCI_ANY_ID, PCI_ANY_ID, 0, 0, SIS_7016},
115 {0,}
116};
117MODULE_DEVICE_TABLE (pci, sis900_pci_tbl);
118
119static void sis900_read_mode(struct net_device *net_dev, int *speed, int *duplex);
120
f71e1309 121static const struct mii_chip_info {
1da177e4
LT
122 const char * name;
123 u16 phy_id0;
124 u16 phy_id1;
125 u8 phy_types;
126#define HOME 0x0001
127#define LAN 0x0002
128#define MIX 0x0003
129#define UNKNOWN 0x0
130} mii_chip_table[] = {
131 { "SiS 900 Internal MII PHY", 0x001d, 0x8000, LAN },
132 { "SiS 7014 Physical Layer Solution", 0x0016, 0xf830, LAN },
d8e95e52 133 { "SiS 900 on Foxconn 661 7MI", 0x0143, 0xBC70, LAN },
1da177e4 134 { "Altimata AC101LF PHY", 0x0022, 0x5520, LAN },
494aced2 135 { "ADM 7001 LAN PHY", 0x002e, 0xcc60, LAN },
1da177e4
LT
136 { "AMD 79C901 10BASE-T PHY", 0x0000, 0x6B70, LAN },
137 { "AMD 79C901 HomePNA PHY", 0x0000, 0x6B90, HOME},
138 { "ICS LAN PHY", 0x0015, 0xF440, LAN },
80a8003f 139 { "ICS LAN PHY", 0x0143, 0xBC70, LAN },
1da177e4
LT
140 { "NS 83851 PHY", 0x2000, 0x5C20, MIX },
141 { "NS 83847 PHY", 0x2000, 0x5C30, MIX },
142 { "Realtek RTL8201 PHY", 0x0000, 0x8200, LAN },
143 { "VIA 6103 PHY", 0x0101, 0x8f20, LAN },
144 {NULL,},
145};
146
147struct mii_phy {
148 struct mii_phy * next;
149 int phy_addr;
150 u16 phy_id0;
151 u16 phy_id1;
152 u16 status;
153 u8 phy_types;
154};
155
156typedef struct _BufferDesc {
157 u32 link;
158 u32 cmdsts;
159 u32 bufptr;
160} BufferDesc;
161
162struct sis900_private {
1da177e4
LT
163 struct pci_dev * pci_dev;
164
165 spinlock_t lock;
166
167 struct mii_phy * mii;
168 struct mii_phy * first_mii; /* record the first mii structure */
169 unsigned int cur_phy;
da369b01 170 struct mii_if_info mii_info;
1da177e4 171
57d6d456
FR
172 void __iomem *ioaddr;
173
1da177e4
LT
174 struct timer_list timer; /* Link status detection timer. */
175 u8 autong_complete; /* 1: auto-negotiate complete */
176
177 u32 msg_enable;
178
3f8b6fb7 179 unsigned int cur_rx, dirty_rx; /* producer/consumer pointers for Tx/Rx ring */
1da177e4
LT
180 unsigned int cur_tx, dirty_tx;
181
182 /* The saved address of a sent/receive-in-place packet buffer */
183 struct sk_buff *tx_skbuff[NUM_TX_DESC];
184 struct sk_buff *rx_skbuff[NUM_RX_DESC];
185 BufferDesc *tx_ring;
186 BufferDesc *rx_ring;
187
188 dma_addr_t tx_ring_dma;
189 dma_addr_t rx_ring_dma;
190
191 unsigned int tx_full; /* The Tx queue is full. */
192 u8 host_bridge_rev;
193 u8 chipset_rev;
cd8ae207
SB
194 /* EEPROM data */
195 int eeprom_size;
1da177e4
LT
196};
197
198MODULE_AUTHOR("Jim Huang <cmhuang@sis.com.tw>, Ollie Lho <ollie@sis.com.tw>");
199MODULE_DESCRIPTION("SiS 900 PCI Fast Ethernet driver");
200MODULE_LICENSE("GPL");
201
202module_param(multicast_filter_limit, int, 0444);
203module_param(max_interrupt_work, int, 0444);
204module_param(sis900_debug, int, 0444);
205MODULE_PARM_DESC(multicast_filter_limit, "SiS 900/7016 maximum number of filtered multicast addresses");
206MODULE_PARM_DESC(max_interrupt_work, "SiS 900/7016 maximum events handled per interrupt");
207MODULE_PARM_DESC(sis900_debug, "SiS 900/7016 bitmapped debugging message level");
208
57d6d456
FR
209#define sw32(reg, val) iowrite32(val, ioaddr + (reg))
210#define sw8(reg, val) iowrite8(val, ioaddr + (reg))
211#define sr32(reg) ioread32(ioaddr + (reg))
212#define sr16(reg) ioread16(ioaddr + (reg))
213
1da177e4
LT
214#ifdef CONFIG_NET_POLL_CONTROLLER
215static void sis900_poll(struct net_device *dev);
216#endif
217static int sis900_open(struct net_device *net_dev);
218static int sis900_mii_probe (struct net_device * net_dev);
219static void sis900_init_rxfilter (struct net_device * net_dev);
57d6d456 220static u16 read_eeprom(void __iomem *ioaddr, int location);
da369b01 221static int mdio_read(struct net_device *net_dev, int phy_id, int location);
1da177e4 222static void mdio_write(struct net_device *net_dev, int phy_id, int location, int val);
fd71e13b 223static void sis900_timer(struct timer_list *t);
1da177e4 224static void sis900_check_mode (struct net_device *net_dev, struct mii_phy *mii_phy);
0290bd29 225static void sis900_tx_timeout(struct net_device *net_dev, unsigned int txqueue);
1da177e4
LT
226static void sis900_init_tx_ring(struct net_device *net_dev);
227static void sis900_init_rx_ring(struct net_device *net_dev);
61357325
SH
228static netdev_tx_t sis900_start_xmit(struct sk_buff *skb,
229 struct net_device *net_dev);
1da177e4
LT
230static int sis900_rx(struct net_device *net_dev);
231static void sis900_finish_xmit (struct net_device *net_dev);
7d12e780 232static irqreturn_t sis900_interrupt(int irq, void *dev_instance);
1da177e4
LT
233static int sis900_close(struct net_device *net_dev);
234static int mii_ioctl(struct net_device *net_dev, struct ifreq *rq, int cmd);
1da177e4
LT
235static u16 sis900_mcast_bitnr(u8 *addr, u8 revision);
236static void set_rx_mode(struct net_device *net_dev);
237static void sis900_reset(struct net_device *net_dev);
238static void sis630_set_eq(struct net_device *net_dev, u8 revision);
239static int sis900_set_config(struct net_device *dev, struct ifmap *map);
240static u16 sis900_default_phy(struct net_device * net_dev);
241static void sis900_set_capability( struct net_device *net_dev ,struct mii_phy *phy);
242static u16 sis900_reset_phy(struct net_device *net_dev, int phy_addr);
243static void sis900_auto_negotiate(struct net_device *net_dev, int phy_addr);
57d6d456 244static void sis900_set_mode(struct sis900_private *, int speed, int duplex);
7282d491 245static const struct ethtool_ops sis900_ethtool_ops;
1da177e4
LT
246
247/**
248 * sis900_get_mac_addr - Get MAC address for stand alone SiS900 model
249 * @pci_dev: the sis900 pci device
6aa20a22 250 * @net_dev: the net device to get address for
1da177e4
LT
251 *
252 * Older SiS900 and friends, use EEPROM to store MAC address.
aaeb6cdf 253 * MAC address is read from read_eeprom() into @net_dev->dev_addr.
1da177e4
LT
254 */
255
369e1231
BP
256static int sis900_get_mac_addr(struct pci_dev *pci_dev,
257 struct net_device *net_dev)
1da177e4 258{
57d6d456
FR
259 struct sis900_private *sis_priv = netdev_priv(net_dev);
260 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
261 u16 signature;
262 int i;
263
264 /* check to see if we have sane EEPROM */
6aa20a22 265 signature = (u16) read_eeprom(ioaddr, EEPROMSignature);
1da177e4 266 if (signature == 0xffff || signature == 0x0000) {
79f5943a 267 printk (KERN_WARNING "%s: Error EEPROM read %x\n",
1da177e4
LT
268 pci_name(pci_dev), signature);
269 return 0;
270 }
271
272 /* get MAC address from EEPROM */
273 for (i = 0; i < 3; i++)
274 ((u16 *)(net_dev->dev_addr))[i] = read_eeprom(ioaddr, i+EEPROMMACAddr);
275
276 return 1;
277}
278
279/**
280 * sis630e_get_mac_addr - Get MAC address for SiS630E model
281 * @pci_dev: the sis900 pci device
6aa20a22 282 * @net_dev: the net device to get address for
1da177e4
LT
283 *
284 * SiS630E model, use APC CMOS RAM to store MAC address.
285 * APC CMOS RAM is accessed through ISA bridge.
aaeb6cdf 286 * MAC address is read into @net_dev->dev_addr.
1da177e4
LT
287 */
288
369e1231
BP
289static int sis630e_get_mac_addr(struct pci_dev *pci_dev,
290 struct net_device *net_dev)
1da177e4
LT
291{
292 struct pci_dev *isa_bridge = NULL;
293 u8 reg;
294 int i;
295
296 isa_bridge = pci_get_device(PCI_VENDOR_ID_SI, 0x0008, isa_bridge);
297 if (!isa_bridge)
298 isa_bridge = pci_get_device(PCI_VENDOR_ID_SI, 0x0018, isa_bridge);
299 if (!isa_bridge) {
300 printk(KERN_WARNING "%s: Can not find ISA bridge\n",
301 pci_name(pci_dev));
302 return 0;
303 }
304 pci_read_config_byte(isa_bridge, 0x48, &reg);
305 pci_write_config_byte(isa_bridge, 0x48, reg | 0x40);
306
307 for (i = 0; i < 6; i++) {
308 outb(0x09 + i, 0x70);
6aa20a22 309 ((u8 *)(net_dev->dev_addr))[i] = inb(0x71);
1da177e4 310 }
efa2ad89 311
1da177e4
LT
312 pci_write_config_byte(isa_bridge, 0x48, reg & ~0x40);
313 pci_dev_put(isa_bridge);
314
315 return 1;
316}
317
318
319/**
320 * sis635_get_mac_addr - Get MAC address for SIS635 model
321 * @pci_dev: the sis900 pci device
6aa20a22 322 * @net_dev: the net device to get address for
1da177e4
LT
323 *
324 * SiS635 model, set MAC Reload Bit to load Mac address from APC
6aa20a22 325 * to rfdr. rfdr is accessed through rfcr. MAC address is read into
aaeb6cdf 326 * @net_dev->dev_addr.
1da177e4
LT
327 */
328
369e1231
BP
329static int sis635_get_mac_addr(struct pci_dev *pci_dev,
330 struct net_device *net_dev)
1da177e4 331{
57d6d456
FR
332 struct sis900_private *sis_priv = netdev_priv(net_dev);
333 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
334 u32 rfcrSave;
335 u32 i;
336
57d6d456 337 rfcrSave = sr32(rfcr);
1da177e4 338
57d6d456
FR
339 sw32(cr, rfcrSave | RELOAD);
340 sw32(cr, 0);
1da177e4
LT
341
342 /* disable packet filtering before setting filter */
57d6d456 343 sw32(rfcr, rfcrSave & ~RFEN);
1da177e4
LT
344
345 /* load MAC addr to filter data register */
346 for (i = 0 ; i < 3 ; i++) {
57d6d456
FR
347 sw32(rfcr, (i << RFADDR_shift));
348 *( ((u16 *)net_dev->dev_addr) + i) = sr16(rfdr);
1da177e4
LT
349 }
350
351 /* enable packet filtering */
57d6d456 352 sw32(rfcr, rfcrSave | RFEN);
1da177e4
LT
353
354 return 1;
355}
356
357/**
358 * sis96x_get_mac_addr - Get MAC address for SiS962 or SiS963 model
359 * @pci_dev: the sis900 pci device
6aa20a22 360 * @net_dev: the net device to get address for
1da177e4 361 *
6aa20a22 362 * SiS962 or SiS963 model, use EEPROM to store MAC address. And EEPROM
1da177e4 363 * is shared by
79f5943a 364 * LAN and 1394. When accessing EEPROM, send EEREQ signal to hardware first
ee7dd773 365 * and wait for EEGNT. If EEGNT is ON, EEPROM is permitted to be accessed
79f5943a 366 * by LAN, otherwise it is not. After MAC address is read from EEPROM, send
6aa20a22
JG
367 * EEDONE signal to refuse EEPROM access by LAN.
368 * The EEPROM map of SiS962 or SiS963 is different to SiS900.
369 * The signature field in SiS962 or SiS963 spec is meaningless.
aaeb6cdf 370 * MAC address is read into @net_dev->dev_addr.
1da177e4
LT
371 */
372
369e1231
BP
373static int sis96x_get_mac_addr(struct pci_dev *pci_dev,
374 struct net_device *net_dev)
1da177e4 375{
57d6d456
FR
376 struct sis900_private *sis_priv = netdev_priv(net_dev);
377 void __iomem *ioaddr = sis_priv->ioaddr;
378 int wait, rc = 0;
6aa20a22 379
57d6d456
FR
380 sw32(mear, EEREQ);
381 for (wait = 0; wait < 2000; wait++) {
382 if (sr32(mear) & EEGNT) {
383 u16 *mac = (u16 *)net_dev->dev_addr;
384 int i;
1da177e4
LT
385
386 /* get MAC address from EEPROM */
387 for (i = 0; i < 3; i++)
57d6d456 388 mac[i] = read_eeprom(ioaddr, i + EEPROMMACAddr);
1da177e4 389
57d6d456
FR
390 rc = 1;
391 break;
1da177e4 392 }
57d6d456 393 udelay(1);
1da177e4 394 }
57d6d456
FR
395 sw32(mear, EEDONE);
396 return rc;
1da177e4
LT
397}
398
09ab9e7c
SH
399static const struct net_device_ops sis900_netdev_ops = {
400 .ndo_open = sis900_open,
401 .ndo_stop = sis900_close,
402 .ndo_start_xmit = sis900_start_xmit,
403 .ndo_set_config = sis900_set_config,
afc4b13d 404 .ndo_set_rx_mode = set_rx_mode,
09ab9e7c 405 .ndo_validate_addr = eth_validate_addr,
fe96aaa1 406 .ndo_set_mac_address = eth_mac_addr,
09ab9e7c
SH
407 .ndo_do_ioctl = mii_ioctl,
408 .ndo_tx_timeout = sis900_tx_timeout,
409#ifdef CONFIG_NET_POLL_CONTROLLER
410 .ndo_poll_controller = sis900_poll,
411#endif
412};
413
1da177e4
LT
414/**
415 * sis900_probe - Probe for sis900 device
416 * @pci_dev: the sis900 pci device
417 * @pci_id: the pci device ID
418 *
419 * Check and probe sis900 net device for @pci_dev.
6aa20a22 420 * Get mac address according to the chip revision,
1da177e4
LT
421 * and assign SiS900-specific entries in the device structure.
422 * ie: sis900_open(), sis900_start_xmit(), sis900_close(), etc.
423 */
424
369e1231 425static int sis900_probe(struct pci_dev *pci_dev,
1dd06ae8 426 const struct pci_device_id *pci_id)
1da177e4
LT
427{
428 struct sis900_private *sis_priv;
429 struct net_device *net_dev;
430 struct pci_dev *dev;
431 dma_addr_t ring_dma;
432 void *ring_space;
57d6d456 433 void __iomem *ioaddr;
1da177e4 434 int i, ret;
f71e1309 435 const char *card_name = card_names[pci_id->driver_data];
1da177e4
LT
436 const char *dev_name = pci_name(pci_dev);
437
438/* when built into the kernel, we only print version if device is found */
439#ifndef MODULE
440 static int printed_version;
441 if (!printed_version++)
442 printk(version);
443#endif
444
445 /* setup various bits in PCI command register */
446 ret = pci_enable_device(pci_dev);
447 if(ret) return ret;
6aa20a22 448
284901a9 449 i = pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32));
1da177e4 450 if(i){
2450022a 451 printk(KERN_ERR "sis900.c: architecture does not support "
1da177e4
LT
452 "32bit PCI busmaster DMA\n");
453 return i;
454 }
6aa20a22 455
1da177e4 456 pci_set_master(pci_dev);
6aa20a22 457
1da177e4
LT
458 net_dev = alloc_etherdev(sizeof(struct sis900_private));
459 if (!net_dev)
460 return -ENOMEM;
1da177e4
LT
461 SET_NETDEV_DEV(net_dev, &pci_dev->dev);
462
463 /* We do a request_region() to register /proc/ioports info. */
1da177e4
LT
464 ret = pci_request_regions(pci_dev, "sis900");
465 if (ret)
466 goto err_out;
467
57d6d456
FR
468 /* IO region. */
469 ioaddr = pci_iomap(pci_dev, 0, 0);
0968a9d1
PST
470 if (!ioaddr) {
471 ret = -ENOMEM;
57d6d456 472 goto err_out_cleardev;
0968a9d1 473 }
57d6d456 474
8f15ea42 475 sis_priv = netdev_priv(net_dev);
57d6d456 476 sis_priv->ioaddr = ioaddr;
1da177e4
LT
477 sis_priv->pci_dev = pci_dev;
478 spin_lock_init(&sis_priv->lock);
479
cd8ae207
SB
480 sis_priv->eeprom_size = 24;
481
1da177e4
LT
482 pci_set_drvdata(pci_dev, net_dev);
483
484 ring_space = pci_alloc_consistent(pci_dev, TX_TOTAL_SIZE, &ring_dma);
485 if (!ring_space) {
486 ret = -ENOMEM;
57d6d456 487 goto err_out_unmap;
1da177e4 488 }
43d620c8 489 sis_priv->tx_ring = ring_space;
1da177e4
LT
490 sis_priv->tx_ring_dma = ring_dma;
491
492 ring_space = pci_alloc_consistent(pci_dev, RX_TOTAL_SIZE, &ring_dma);
493 if (!ring_space) {
494 ret = -ENOMEM;
495 goto err_unmap_tx;
496 }
43d620c8 497 sis_priv->rx_ring = ring_space;
1da177e4 498 sis_priv->rx_ring_dma = ring_dma;
6aa20a22 499
1da177e4 500 /* The SiS900-specific entries in the device structure. */
09ab9e7c 501 net_dev->netdev_ops = &sis900_netdev_ops;
1da177e4
LT
502 net_dev->watchdog_timeo = TX_TIMEOUT;
503 net_dev->ethtool_ops = &sis900_ethtool_ops;
504
1da177e4
LT
505 if (sis900_debug > 0)
506 sis_priv->msg_enable = sis900_debug;
507 else
508 sis_priv->msg_enable = SIS900_DEF_MSG;
da369b01
DV
509
510 sis_priv->mii_info.dev = net_dev;
511 sis_priv->mii_info.mdio_read = mdio_read;
512 sis_priv->mii_info.mdio_write = mdio_write;
513 sis_priv->mii_info.phy_id_mask = 0x1f;
514 sis_priv->mii_info.reg_num_mask = 0x1f;
515
1da177e4 516 /* Get Mac address according to the chip revision */
eaaa3a7c 517 sis_priv->chipset_rev = pci_dev->revision;
1da177e4
LT
518 if(netif_msg_probe(sis_priv))
519 printk(KERN_DEBUG "%s: detected revision %2.2x, "
520 "trying to get MAC address...\n",
521 dev_name, sis_priv->chipset_rev);
6aa20a22 522
1da177e4
LT
523 ret = 0;
524 if (sis_priv->chipset_rev == SIS630E_900_REV)
525 ret = sis630e_get_mac_addr(pci_dev, net_dev);
526 else if ((sis_priv->chipset_rev > 0x81) && (sis_priv->chipset_rev <= 0x90) )
527 ret = sis635_get_mac_addr(pci_dev, net_dev);
528 else if (sis_priv->chipset_rev == SIS96x_900_REV)
529 ret = sis96x_get_mac_addr(pci_dev, net_dev);
530 else
531 ret = sis900_get_mac_addr(pci_dev, net_dev);
532
d1d5e6b1 533 if (!ret || !is_valid_ether_addr(net_dev->dev_addr)) {
f2cedb63 534 eth_hw_addr_random(net_dev);
d1d5e6b1
DV
535 printk(KERN_WARNING "%s: Unreadable or invalid MAC address,"
536 "using random generated one\n", dev_name);
1da177e4 537 }
6aa20a22 538
1da177e4
LT
539 /* 630ET : set the mii access mode as software-mode */
540 if (sis_priv->chipset_rev == SIS630ET_900_REV)
57d6d456 541 sw32(cr, ACCESSMODE | sr32(cr));
1da177e4
LT
542
543 /* probe for mii transceiver */
544 if (sis900_mii_probe(net_dev) == 0) {
545 printk(KERN_WARNING "%s: Error probing MII device.\n",
546 dev_name);
547 ret = -ENODEV;
548 goto err_unmap_rx;
549 }
550
551 /* save our host bridge revision */
552 dev = pci_get_device(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_630, NULL);
553 if (dev) {
eaaa3a7c 554 sis_priv->host_bridge_rev = dev->revision;
1da177e4
LT
555 pci_dev_put(dev);
556 }
557
558 ret = register_netdev(net_dev);
559 if (ret)
560 goto err_unmap_rx;
561
562 /* print some information about our NIC */
57d6d456
FR
563 printk(KERN_INFO "%s: %s at 0x%p, IRQ %d, %pM\n",
564 net_dev->name, card_name, ioaddr, pci_dev->irq,
e174961c 565 net_dev->dev_addr);
1da177e4 566
ea37ccea 567 /* Detect Wake on Lan support */
57d6d456 568 ret = (sr32(CFGPMC) & PMESP) >> 27;
ea37ccea
DV
569 if (netif_msg_probe(sis_priv) && (ret & PME_D3C) == 0)
570 printk(KERN_INFO "%s: Wake on LAN only available from suspend to RAM.", net_dev->name);
571
1da177e4
LT
572 return 0;
573
57d6d456 574err_unmap_rx:
1da177e4
LT
575 pci_free_consistent(pci_dev, RX_TOTAL_SIZE, sis_priv->rx_ring,
576 sis_priv->rx_ring_dma);
57d6d456 577err_unmap_tx:
1da177e4
LT
578 pci_free_consistent(pci_dev, TX_TOTAL_SIZE, sis_priv->tx_ring,
579 sis_priv->tx_ring_dma);
57d6d456
FR
580err_out_unmap:
581 pci_iounmap(pci_dev, ioaddr);
582err_out_cleardev:
1da177e4
LT
583 pci_release_regions(pci_dev);
584 err_out:
585 free_netdev(net_dev);
586 return ret;
587}
588
589/**
590 * sis900_mii_probe - Probe MII PHY for sis900
591 * @net_dev: the net device to probe for
6aa20a22 592 *
1da177e4
LT
593 * Search for total of 32 possible mii phy addresses.
594 * Identify and set current phy if found one,
595 * return error if it failed to found.
596 */
597
369e1231 598static int sis900_mii_probe(struct net_device *net_dev)
1da177e4 599{
8f15ea42 600 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4
LT
601 const char *dev_name = pci_name(sis_priv->pci_dev);
602 u16 poll_bit = MII_STAT_LINK, status = 0;
603 unsigned long timeout = jiffies + 5 * HZ;
604 int phy_addr;
605
606 sis_priv->mii = NULL;
607
608 /* search for total of 32 possible mii phy addresses */
6aa20a22 609 for (phy_addr = 0; phy_addr < 32; phy_addr++) {
1da177e4
LT
610 struct mii_phy * mii_phy = NULL;
611 u16 mii_status;
612 int i;
613
614 mii_phy = NULL;
615 for(i = 0; i < 2; i++)
616 mii_status = mdio_read(net_dev, phy_addr, MII_STATUS);
617
618 if (mii_status == 0xffff || mii_status == 0x0000) {
619 if (netif_msg_probe(sis_priv))
620 printk(KERN_DEBUG "%s: MII at address %d"
621 " not accessible\n",
622 dev_name, phy_addr);
623 continue;
624 }
6aa20a22 625
1da177e4 626 if ((mii_phy = kmalloc(sizeof(struct mii_phy), GFP_KERNEL)) == NULL) {
1da177e4
LT
627 mii_phy = sis_priv->first_mii;
628 while (mii_phy) {
629 struct mii_phy *phy;
630 phy = mii_phy;
631 mii_phy = mii_phy->next;
632 kfree(phy);
633 }
634 return 0;
635 }
6aa20a22 636
1da177e4 637 mii_phy->phy_id0 = mdio_read(net_dev, phy_addr, MII_PHY_ID0);
6aa20a22 638 mii_phy->phy_id1 = mdio_read(net_dev, phy_addr, MII_PHY_ID1);
1da177e4
LT
639 mii_phy->phy_addr = phy_addr;
640 mii_phy->status = mii_status;
641 mii_phy->next = sis_priv->mii;
642 sis_priv->mii = mii_phy;
643 sis_priv->first_mii = mii_phy;
644
645 for (i = 0; mii_chip_table[i].phy_id1; i++)
646 if ((mii_phy->phy_id0 == mii_chip_table[i].phy_id0 ) &&
647 ((mii_phy->phy_id1 & 0xFFF0) == mii_chip_table[i].phy_id1)){
648 mii_phy->phy_types = mii_chip_table[i].phy_types;
649 if (mii_chip_table[i].phy_types == MIX)
650 mii_phy->phy_types =
651 (mii_status & (MII_STAT_CAN_TX_FDX | MII_STAT_CAN_TX)) ? LAN : HOME;
652 printk(KERN_INFO "%s: %s transceiver found "
653 "at address %d.\n",
654 dev_name,
655 mii_chip_table[i].name,
656 phy_addr);
657 break;
658 }
6aa20a22 659
1da177e4
LT
660 if( !mii_chip_table[i].phy_id1 ) {
661 printk(KERN_INFO "%s: Unknown PHY transceiver found at address %d.\n",
662 dev_name, phy_addr);
663 mii_phy->phy_types = UNKNOWN;
664 }
665 }
6aa20a22 666
1da177e4
LT
667 if (sis_priv->mii == NULL) {
668 printk(KERN_INFO "%s: No MII transceivers found!\n", dev_name);
669 return 0;
670 }
671
672 /* select default PHY for mac */
673 sis_priv->mii = NULL;
674 sis900_default_phy( net_dev );
675
676 /* Reset phy if default phy is internal sis900 */
677 if ((sis_priv->mii->phy_id0 == 0x001D) &&
678 ((sis_priv->mii->phy_id1&0xFFF0) == 0x8000))
679 status = sis900_reset_phy(net_dev, sis_priv->cur_phy);
6aa20a22 680
1da177e4
LT
681 /* workaround for ICS1893 PHY */
682 if ((sis_priv->mii->phy_id0 == 0x0015) &&
683 ((sis_priv->mii->phy_id1&0xFFF0) == 0xF440))
684 mdio_write(net_dev, sis_priv->cur_phy, 0x0018, 0xD200);
685
686 if(status & MII_STAT_LINK){
687 while (poll_bit) {
688 yield();
689
690 poll_bit ^= (mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS) & poll_bit);
691 if (time_after_eq(jiffies, timeout)) {
692 printk(KERN_WARNING "%s: reset phy and link down now\n",
693 dev_name);
694 return -ETIME;
695 }
696 }
697 }
698
699 if (sis_priv->chipset_rev == SIS630E_900_REV) {
700 /* SiS 630E has some bugs on default value of PHY registers */
701 mdio_write(net_dev, sis_priv->cur_phy, MII_ANADV, 0x05e1);
702 mdio_write(net_dev, sis_priv->cur_phy, MII_CONFIG1, 0x22);
703 mdio_write(net_dev, sis_priv->cur_phy, MII_CONFIG2, 0xff00);
704 mdio_write(net_dev, sis_priv->cur_phy, MII_MASK, 0xffc0);
6aa20a22 705 //mdio_write(net_dev, sis_priv->cur_phy, MII_CONTROL, 0x1000);
1da177e4
LT
706 }
707
708 if (sis_priv->mii->status & MII_STAT_LINK)
709 netif_carrier_on(net_dev);
710 else
711 netif_carrier_off(net_dev);
712
713 return 1;
714}
715
716/**
717 * sis900_default_phy - Select default PHY for sis900 mac.
718 * @net_dev: the net device to probe for
719 *
720 * Select first detected PHY with link as default.
721 * If no one is link on, select PHY whose types is HOME as default.
722 * If HOME doesn't exist, select LAN.
723 */
724
725static u16 sis900_default_phy(struct net_device * net_dev)
726{
8f15ea42 727 struct sis900_private *sis_priv = netdev_priv(net_dev);
6aa20a22 728 struct mii_phy *phy = NULL, *phy_home = NULL,
1da177e4
LT
729 *default_phy = NULL, *phy_lan = NULL;
730 u16 status;
731
732 for (phy=sis_priv->first_mii; phy; phy=phy->next) {
733 status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
734 status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
735
736 /* Link ON & Not select default PHY & not ghost PHY */
68cfe9a2
CIK
737 if ((status & MII_STAT_LINK) && !default_phy &&
738 (phy->phy_types != UNKNOWN)) {
739 default_phy = phy;
740 } else {
1da177e4
LT
741 status = mdio_read(net_dev, phy->phy_addr, MII_CONTROL);
742 mdio_write(net_dev, phy->phy_addr, MII_CONTROL,
743 status | MII_CNTL_AUTO | MII_CNTL_ISOLATE);
744 if (phy->phy_types == HOME)
745 phy_home = phy;
746 else if(phy->phy_types == LAN)
747 phy_lan = phy;
68cfe9a2 748 }
1da177e4
LT
749 }
750
751 if (!default_phy && phy_home)
752 default_phy = phy_home;
753 else if (!default_phy && phy_lan)
754 default_phy = phy_lan;
755 else if (!default_phy)
756 default_phy = sis_priv->first_mii;
757
758 if (sis_priv->mii != default_phy) {
759 sis_priv->mii = default_phy;
760 sis_priv->cur_phy = default_phy->phy_addr;
761 printk(KERN_INFO "%s: Using transceiver found at address %d as default\n",
762 pci_name(sis_priv->pci_dev), sis_priv->cur_phy);
763 }
6aa20a22 764
da369b01
DV
765 sis_priv->mii_info.phy_id = sis_priv->cur_phy;
766
1da177e4
LT
767 status = mdio_read(net_dev, sis_priv->cur_phy, MII_CONTROL);
768 status &= (~MII_CNTL_ISOLATE);
769
6aa20a22 770 mdio_write(net_dev, sis_priv->cur_phy, MII_CONTROL, status);
1da177e4
LT
771 status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
772 status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
773
6aa20a22 774 return status;
1da177e4
LT
775}
776
777
778/**
779 * sis900_set_capability - set the media capability of network adapter.
780 * @net_dev : the net device to probe for
781 * @phy : default PHY
782 *
783 * Set the media capability of network adapter according to
784 * mii status register. It's necessary before auto-negotiate.
785 */
6aa20a22 786
1da177e4
LT
787static void sis900_set_capability(struct net_device *net_dev, struct mii_phy *phy)
788{
789 u16 cap;
790 u16 status;
6aa20a22 791
1da177e4
LT
792 status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
793 status = mdio_read(net_dev, phy->phy_addr, MII_STATUS);
6aa20a22 794
1da177e4
LT
795 cap = MII_NWAY_CSMA_CD |
796 ((phy->status & MII_STAT_CAN_TX_FDX)? MII_NWAY_TX_FDX:0) |
797 ((phy->status & MII_STAT_CAN_TX) ? MII_NWAY_TX:0) |
798 ((phy->status & MII_STAT_CAN_T_FDX) ? MII_NWAY_T_FDX:0)|
799 ((phy->status & MII_STAT_CAN_T) ? MII_NWAY_T:0);
800
801 mdio_write(net_dev, phy->phy_addr, MII_ANADV, cap);
802}
803
804
805/* Delay between EEPROM clock transitions. */
57d6d456 806#define eeprom_delay() sr32(mear)
1da177e4
LT
807
808/**
809 * read_eeprom - Read Serial EEPROM
810 * @ioaddr: base i/o address
811 * @location: the EEPROM location to read
812 *
813 * Read Serial EEPROM through EEPROM Access Register.
814 * Note that location is in word (16 bits) unit
815 */
816
369e1231 817static u16 read_eeprom(void __iomem *ioaddr, int location)
1da177e4 818{
57d6d456 819 u32 read_cmd = location | EEread;
1da177e4
LT
820 int i;
821 u16 retval = 0;
1da177e4 822
57d6d456 823 sw32(mear, 0);
1da177e4 824 eeprom_delay();
57d6d456 825 sw32(mear, EECS);
1da177e4
LT
826 eeprom_delay();
827
828 /* Shift the read command (9) bits out. */
829 for (i = 8; i >= 0; i--) {
830 u32 dataval = (read_cmd & (1 << i)) ? EEDI | EECS : EECS;
57d6d456
FR
831
832 sw32(mear, dataval);
1da177e4 833 eeprom_delay();
57d6d456 834 sw32(mear, dataval | EECLK);
1da177e4
LT
835 eeprom_delay();
836 }
57d6d456 837 sw32(mear, EECS);
1da177e4
LT
838 eeprom_delay();
839
840 /* read the 16-bits data in */
841 for (i = 16; i > 0; i--) {
57d6d456 842 sw32(mear, EECS);
1da177e4 843 eeprom_delay();
57d6d456 844 sw32(mear, EECS | EECLK);
1da177e4 845 eeprom_delay();
57d6d456 846 retval = (retval << 1) | ((sr32(mear) & EEDO) ? 1 : 0);
1da177e4
LT
847 eeprom_delay();
848 }
849
850 /* Terminate the EEPROM access. */
57d6d456 851 sw32(mear, 0);
1da177e4
LT
852 eeprom_delay();
853
807540ba 854 return retval;
1da177e4
LT
855}
856
857/* Read and write the MII management registers using software-generated
858 serial MDIO protocol. Note that the command bits and data bits are
859 send out separately */
57d6d456 860#define mdio_delay() sr32(mear)
1da177e4 861
57d6d456 862static void mdio_idle(struct sis900_private *sp)
1da177e4 863{
57d6d456
FR
864 void __iomem *ioaddr = sp->ioaddr;
865
866 sw32(mear, MDIO | MDDIR);
1da177e4 867 mdio_delay();
57d6d456 868 sw32(mear, MDIO | MDDIR | MDC);
1da177e4
LT
869}
870
57d6d456
FR
871/* Synchronize the MII management interface by shifting 32 one bits out. */
872static void mdio_reset(struct sis900_private *sp)
1da177e4 873{
57d6d456 874 void __iomem *ioaddr = sp->ioaddr;
1da177e4
LT
875 int i;
876
877 for (i = 31; i >= 0; i--) {
57d6d456 878 sw32(mear, MDDIR | MDIO);
1da177e4 879 mdio_delay();
57d6d456 880 sw32(mear, MDDIR | MDIO | MDC);
1da177e4
LT
881 mdio_delay();
882 }
1da177e4
LT
883}
884
885/**
886 * mdio_read - read MII PHY register
887 * @net_dev: the net device to read
888 * @phy_id: the phy address to read
ee7dd773 889 * @location: the phy register id to read
1da177e4
LT
890 *
891 * Read MII registers through MDIO and MDC
892 * using MDIO management frame structure and protocol(defined by ISO/IEC).
893 * Please see SiS7014 or ICS spec
894 */
895
da369b01 896static int mdio_read(struct net_device *net_dev, int phy_id, int location)
1da177e4 897{
1da177e4 898 int mii_cmd = MIIread|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
57d6d456
FR
899 struct sis900_private *sp = netdev_priv(net_dev);
900 void __iomem *ioaddr = sp->ioaddr;
1da177e4
LT
901 u16 retval = 0;
902 int i;
903
57d6d456
FR
904 mdio_reset(sp);
905 mdio_idle(sp);
1da177e4
LT
906
907 for (i = 15; i >= 0; i--) {
908 int dataval = (mii_cmd & (1 << i)) ? MDDIR | MDIO : MDDIR;
57d6d456
FR
909
910 sw32(mear, dataval);
1da177e4 911 mdio_delay();
57d6d456 912 sw32(mear, dataval | MDC);
1da177e4
LT
913 mdio_delay();
914 }
915
916 /* Read the 16 data bits. */
917 for (i = 16; i > 0; i--) {
57d6d456 918 sw32(mear, 0);
1da177e4 919 mdio_delay();
57d6d456
FR
920 retval = (retval << 1) | ((sr32(mear) & MDIO) ? 1 : 0);
921 sw32(mear, MDC);
1da177e4
LT
922 mdio_delay();
923 }
57d6d456 924 sw32(mear, 0x00);
1da177e4
LT
925
926 return retval;
927}
928
929/**
930 * mdio_write - write MII PHY register
931 * @net_dev: the net device to write
932 * @phy_id: the phy address to write
ee7dd773 933 * @location: the phy register id to write
1da177e4
LT
934 * @value: the register value to write with
935 *
936 * Write MII registers with @value through MDIO and MDC
937 * using MDIO management frame structure and protocol(defined by ISO/IEC)
938 * please see SiS7014 or ICS spec
939 */
940
941static void mdio_write(struct net_device *net_dev, int phy_id, int location,
942 int value)
943{
1da177e4 944 int mii_cmd = MIIwrite|(phy_id<<MIIpmdShift)|(location<<MIIregShift);
57d6d456
FR
945 struct sis900_private *sp = netdev_priv(net_dev);
946 void __iomem *ioaddr = sp->ioaddr;
1da177e4
LT
947 int i;
948
57d6d456
FR
949 mdio_reset(sp);
950 mdio_idle(sp);
1da177e4
LT
951
952 /* Shift the command bits out. */
953 for (i = 15; i >= 0; i--) {
954 int dataval = (mii_cmd & (1 << i)) ? MDDIR | MDIO : MDDIR;
57d6d456
FR
955
956 sw8(mear, dataval);
1da177e4 957 mdio_delay();
57d6d456 958 sw8(mear, dataval | MDC);
1da177e4
LT
959 mdio_delay();
960 }
961 mdio_delay();
962
963 /* Shift the value bits out. */
964 for (i = 15; i >= 0; i--) {
965 int dataval = (value & (1 << i)) ? MDDIR | MDIO : MDDIR;
57d6d456
FR
966
967 sw32(mear, dataval);
1da177e4 968 mdio_delay();
57d6d456 969 sw32(mear, dataval | MDC);
1da177e4
LT
970 mdio_delay();
971 }
972 mdio_delay();
973
974 /* Clear out extra bits. */
975 for (i = 2; i > 0; i--) {
57d6d456 976 sw8(mear, 0);
1da177e4 977 mdio_delay();
57d6d456 978 sw8(mear, MDC);
1da177e4
LT
979 mdio_delay();
980 }
57d6d456 981 sw32(mear, 0x00);
1da177e4
LT
982}
983
984
985/**
986 * sis900_reset_phy - reset sis900 mii phy.
987 * @net_dev: the net device to write
988 * @phy_addr: default phy address
989 *
990 * Some specific phy can't work properly without reset.
991 * This function will be called during initialization and
992 * link status change from ON to DOWN.
993 */
994
995static u16 sis900_reset_phy(struct net_device *net_dev, int phy_addr)
996{
f3be9742 997 int i;
1da177e4
LT
998 u16 status;
999
f3be9742 1000 for (i = 0; i < 2; i++)
1da177e4
LT
1001 status = mdio_read(net_dev, phy_addr, MII_STATUS);
1002
1003 mdio_write( net_dev, phy_addr, MII_CONTROL, MII_CNTL_RESET );
6aa20a22 1004
1da177e4
LT
1005 return status;
1006}
1007
1008#ifdef CONFIG_NET_POLL_CONTROLLER
1009/*
1010 * Polling 'interrupt' - used by things like netconsole to send skbs
1011 * without having to re-enable interrupts. It's not called while
1012 * the interrupt routine is executing.
1013*/
1014static void sis900_poll(struct net_device *dev)
1015{
57d6d456
FR
1016 struct sis900_private *sp = netdev_priv(dev);
1017 const int irq = sp->pci_dev->irq;
1018
1019 disable_irq(irq);
1020 sis900_interrupt(irq, dev);
1021 enable_irq(irq);
1da177e4
LT
1022}
1023#endif
1024
1025/**
1026 * sis900_open - open sis900 device
1027 * @net_dev: the net device to open
1028 *
1029 * Do some initialization and start net interface.
1030 * enable interrupts and set sis900 timer.
1031 */
1032
1033static int
1034sis900_open(struct net_device *net_dev)
1035{
8f15ea42 1036 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 1037 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1038 int ret;
1039
1040 /* Soft reset the chip. */
1041 sis900_reset(net_dev);
1042
1043 /* Equalizer workaround Rule */
1044 sis630_set_eq(net_dev, sis_priv->chipset_rev);
1045
57d6d456
FR
1046 ret = request_irq(sis_priv->pci_dev->irq, sis900_interrupt, IRQF_SHARED,
1047 net_dev->name, net_dev);
1da177e4
LT
1048 if (ret)
1049 return ret;
1050
1051 sis900_init_rxfilter(net_dev);
1052
1053 sis900_init_tx_ring(net_dev);
1054 sis900_init_rx_ring(net_dev);
1055
1056 set_rx_mode(net_dev);
1057
1058 netif_start_queue(net_dev);
1059
1060 /* Workaround for EDB */
57d6d456 1061 sis900_set_mode(sis_priv, HW_SPEED_10_MBPS, FDX_CAPABLE_HALF_SELECTED);
1da177e4
LT
1062
1063 /* Enable all known interrupts by setting the interrupt mask. */
ee7dd773 1064 sw32(imr, RxSOVR | RxORN | RxERR | RxOK | TxURN | TxERR | TxDESC);
57d6d456
FR
1065 sw32(cr, RxENA | sr32(cr));
1066 sw32(ier, IE);
1da177e4
LT
1067
1068 sis900_check_mode(net_dev, sis_priv->mii);
1069
1070 /* Set the timer to switch to check for link beat and perhaps switch
1071 to an alternate media type. */
fd71e13b 1072 timer_setup(&sis_priv->timer, sis900_timer, 0);
1da177e4 1073 sis_priv->timer.expires = jiffies + HZ;
1da177e4
LT
1074 add_timer(&sis_priv->timer);
1075
1076 return 0;
1077}
1078
1079/**
1080 * sis900_init_rxfilter - Initialize the Rx filter
1081 * @net_dev: the net device to initialize for
1082 *
1083 * Set receive filter address to our MAC address
1084 * and enable packet filtering.
1085 */
1086
1087static void
1088sis900_init_rxfilter (struct net_device * net_dev)
1089{
8f15ea42 1090 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 1091 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1092 u32 rfcrSave;
1093 u32 i;
1094
57d6d456 1095 rfcrSave = sr32(rfcr);
1da177e4
LT
1096
1097 /* disable packet filtering before setting filter */
57d6d456 1098 sw32(rfcr, rfcrSave & ~RFEN);
1da177e4
LT
1099
1100 /* load MAC addr to filter data register */
1101 for (i = 0 ; i < 3 ; i++) {
57d6d456 1102 u32 w = (u32) *((u16 *)(net_dev->dev_addr)+i);
1da177e4 1103
57d6d456
FR
1104 sw32(rfcr, i << RFADDR_shift);
1105 sw32(rfdr, w);
1da177e4
LT
1106
1107 if (netif_msg_hw(sis_priv)) {
ee7dd773 1108 printk(KERN_DEBUG "%s: Receive Filter Address[%d]=%x\n",
57d6d456 1109 net_dev->name, i, sr32(rfdr));
1da177e4
LT
1110 }
1111 }
1112
1113 /* enable packet filtering */
57d6d456 1114 sw32(rfcr, rfcrSave | RFEN);
1da177e4
LT
1115}
1116
1117/**
1118 * sis900_init_tx_ring - Initialize the Tx descriptor ring
1119 * @net_dev: the net device to initialize for
1120 *
6aa20a22 1121 * Initialize the Tx descriptor ring,
1da177e4
LT
1122 */
1123
1124static void
1125sis900_init_tx_ring(struct net_device *net_dev)
1126{
8f15ea42 1127 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 1128 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1129 int i;
1130
1131 sis_priv->tx_full = 0;
1132 sis_priv->dirty_tx = sis_priv->cur_tx = 0;
1133
1134 for (i = 0; i < NUM_TX_DESC; i++) {
1135 sis_priv->tx_skbuff[i] = NULL;
1136
1137 sis_priv->tx_ring[i].link = sis_priv->tx_ring_dma +
1138 ((i+1)%NUM_TX_DESC)*sizeof(BufferDesc);
1139 sis_priv->tx_ring[i].cmdsts = 0;
1140 sis_priv->tx_ring[i].bufptr = 0;
1141 }
1142
1143 /* load Transmit Descriptor Register */
57d6d456 1144 sw32(txdp, sis_priv->tx_ring_dma);
1da177e4
LT
1145 if (netif_msg_hw(sis_priv))
1146 printk(KERN_DEBUG "%s: TX descriptor register loaded with: %8.8x\n",
57d6d456 1147 net_dev->name, sr32(txdp));
1da177e4
LT
1148}
1149
1150/**
1151 * sis900_init_rx_ring - Initialize the Rx descriptor ring
1152 * @net_dev: the net device to initialize for
1153 *
6aa20a22 1154 * Initialize the Rx descriptor ring,
ee7dd773 1155 * and pre-allocate receive buffers (socket buffer)
1da177e4
LT
1156 */
1157
6aa20a22 1158static void
1da177e4
LT
1159sis900_init_rx_ring(struct net_device *net_dev)
1160{
8f15ea42 1161 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 1162 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1163 int i;
1164
1165 sis_priv->cur_rx = 0;
1166 sis_priv->dirty_rx = 0;
1167
1168 /* init RX descriptor */
1169 for (i = 0; i < NUM_RX_DESC; i++) {
1170 sis_priv->rx_skbuff[i] = NULL;
1171
1172 sis_priv->rx_ring[i].link = sis_priv->rx_ring_dma +
1173 ((i+1)%NUM_RX_DESC)*sizeof(BufferDesc);
1174 sis_priv->rx_ring[i].cmdsts = 0;
1175 sis_priv->rx_ring[i].bufptr = 0;
1176 }
1177
1178 /* allocate sock buffers */
1179 for (i = 0; i < NUM_RX_DESC; i++) {
1180 struct sk_buff *skb;
1181
dae2e9f4 1182 if ((skb = netdev_alloc_skb(net_dev, RX_BUF_SIZE)) == NULL) {
1da177e4
LT
1183 /* not enough memory for skbuff, this makes a "hole"
1184 on the buffer ring, it is not clear how the
1185 hardware will react to this kind of degenerated
1186 buffer */
1187 break;
1188 }
1da177e4
LT
1189 sis_priv->rx_skbuff[i] = skb;
1190 sis_priv->rx_ring[i].cmdsts = RX_BUF_SIZE;
1e8edc2a
DK
1191 sis_priv->rx_ring[i].bufptr = pci_map_single(sis_priv->pci_dev,
1192 skb->data, RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1193 if (unlikely(pci_dma_mapping_error(sis_priv->pci_dev,
1194 sis_priv->rx_ring[i].bufptr))) {
1195 dev_kfree_skb(skb);
1196 sis_priv->rx_skbuff[i] = NULL;
1197 break;
1198 }
1da177e4
LT
1199 }
1200 sis_priv->dirty_rx = (unsigned int) (i - NUM_RX_DESC);
1201
1202 /* load Receive Descriptor Register */
57d6d456 1203 sw32(rxdp, sis_priv->rx_ring_dma);
1da177e4
LT
1204 if (netif_msg_hw(sis_priv))
1205 printk(KERN_DEBUG "%s: RX descriptor register loaded with: %8.8x\n",
57d6d456 1206 net_dev->name, sr32(rxdp));
1da177e4
LT
1207}
1208
1209/**
1210 * sis630_set_eq - set phy equalizer value for 630 LAN
1211 * @net_dev: the net device to set equalizer value
1212 * @revision: 630 LAN revision number
1213 *
1214 * 630E equalizer workaround rule(Cyrus Huang 08/15)
1215 * PHY register 14h(Test)
25985edc 1216 * Bit 14: 0 -- Automatically detect (default)
1da177e4
LT
1217 * 1 -- Manually set Equalizer filter
1218 * Bit 13: 0 -- (Default)
1219 * 1 -- Speed up convergence of equalizer setting
1220 * Bit 9 : 0 -- (Default)
1221 * 1 -- Disable Baseline Wander
1222 * Bit 3~7 -- Equalizer filter setting
1223 * Link ON: Set Bit 9, 13 to 1, Bit 14 to 0
1224 * Then calculate equalizer value
1225 * Then set equalizer value, and set Bit 14 to 1, Bit 9 to 0
1226 * Link Off:Set Bit 13 to 1, Bit 14 to 0
1227 * Calculate Equalizer value:
25985edc 1228 * When Link is ON and Bit 14 is 0, SIS900PHY will auto-detect proper equalizer value.
1da177e4
LT
1229 * When the equalizer is stable, this value is not a fixed value. It will be within
1230 * a small range(eg. 7~9). Then we get a minimum and a maximum value(eg. min=7, max=9)
1231 * 0 <= max <= 4 --> set equalizer to max
1232 * 5 <= max <= 14 --> set equalizer to max+1 or set equalizer to max+2 if max == min
1233 * max >= 15 --> set equalizer to max+5 or set equalizer to max+6 if max == min
1234 */
1235
1236static void sis630_set_eq(struct net_device *net_dev, u8 revision)
1237{
8f15ea42 1238 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4
LT
1239 u16 reg14h, eq_value=0, max_value=0, min_value=0;
1240 int i, maxcount=10;
1241
1242 if ( !(revision == SIS630E_900_REV || revision == SIS630EA1_900_REV ||
1243 revision == SIS630A_900_REV || revision == SIS630ET_900_REV) )
1244 return;
1245
1246 if (netif_carrier_ok(net_dev)) {
1247 reg14h = mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
1248 mdio_write(net_dev, sis_priv->cur_phy, MII_RESV,
1249 (0x2200 | reg14h) & 0xBFFF);
1250 for (i=0; i < maxcount; i++) {
1251 eq_value = (0x00F8 & mdio_read(net_dev,
1252 sis_priv->cur_phy, MII_RESV)) >> 3;
1253 if (i == 0)
1254 max_value=min_value=eq_value;
1255 max_value = (eq_value > max_value) ?
1256 eq_value : max_value;
1257 min_value = (eq_value < min_value) ?
1258 eq_value : min_value;
1259 }
1260 /* 630E rule to determine the equalizer value */
1261 if (revision == SIS630E_900_REV || revision == SIS630EA1_900_REV ||
1262 revision == SIS630ET_900_REV) {
1263 if (max_value < 5)
1264 eq_value = max_value;
1265 else if (max_value >= 5 && max_value < 15)
1266 eq_value = (max_value == min_value) ?
1267 max_value+2 : max_value+1;
1268 else if (max_value >= 15)
1269 eq_value=(max_value == min_value) ?
1270 max_value+6 : max_value+5;
1271 }
1272 /* 630B0&B1 rule to determine the equalizer value */
6aa20a22
JG
1273 if (revision == SIS630A_900_REV &&
1274 (sis_priv->host_bridge_rev == SIS630B0 ||
1da177e4
LT
1275 sis_priv->host_bridge_rev == SIS630B1)) {
1276 if (max_value == 0)
1277 eq_value = 3;
1278 else
1279 eq_value = (max_value + min_value + 1)/2;
1280 }
1281 /* write equalizer value and setting */
1282 reg14h = mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
1283 reg14h = (reg14h & 0xFF07) | ((eq_value << 3) & 0x00F8);
1284 reg14h = (reg14h | 0x6000) & 0xFDFF;
1285 mdio_write(net_dev, sis_priv->cur_phy, MII_RESV, reg14h);
1286 } else {
1287 reg14h = mdio_read(net_dev, sis_priv->cur_phy, MII_RESV);
6aa20a22
JG
1288 if (revision == SIS630A_900_REV &&
1289 (sis_priv->host_bridge_rev == SIS630B0 ||
1290 sis_priv->host_bridge_rev == SIS630B1))
1da177e4
LT
1291 mdio_write(net_dev, sis_priv->cur_phy, MII_RESV,
1292 (reg14h | 0x2200) & 0xBFFF);
1293 else
1294 mdio_write(net_dev, sis_priv->cur_phy, MII_RESV,
1295 (reg14h | 0x2000) & 0xBFFF);
1296 }
1da177e4
LT
1297}
1298
1299/**
1300 * sis900_timer - sis900 timer routine
1301 * @data: pointer to sis900 net device
1302 *
6aa20a22 1303 * On each timer ticks we check two things,
1da177e4
LT
1304 * link status (ON/OFF) and link mode (10/100/Full/Half)
1305 */
1306
fd71e13b 1307static void sis900_timer(struct timer_list *t)
1da177e4 1308{
fd71e13b
KC
1309 struct sis900_private *sis_priv = from_timer(sis_priv, t, timer);
1310 struct net_device *net_dev = sis_priv->mii_info.dev;
1da177e4 1311 struct mii_phy *mii_phy = sis_priv->mii;
f71e1309 1312 static const int next_tick = 5*HZ;
78f1ccc4 1313 int speed = 0, duplex = 0;
1da177e4
LT
1314 u16 status;
1315
1da177e4
LT
1316 status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
1317 status = mdio_read(net_dev, sis_priv->cur_phy, MII_STATUS);
1318
1319 /* Link OFF -> ON */
1320 if (!netif_carrier_ok(net_dev)) {
1321 LookForLink:
1322 /* Search for new PHY */
1323 status = sis900_default_phy(net_dev);
1324 mii_phy = sis_priv->mii;
1325
78f1ccc4
DK
1326 if (status & MII_STAT_LINK) {
1327 WARN_ON(!(status & MII_STAT_AUTO_DONE));
1328
1329 sis900_read_mode(net_dev, &speed, &duplex);
1330 if (duplex) {
1331 sis900_set_mode(sis_priv, speed, duplex);
1332 sis630_set_eq(net_dev, sis_priv->chipset_rev);
1333 netif_carrier_on(net_dev);
1334 }
1335 }
1da177e4
LT
1336 } else {
1337 /* Link ON -> OFF */
1338 if (!(status & MII_STAT_LINK)){
1339 netif_carrier_off(net_dev);
1340 if(netif_msg_link(sis_priv))
1341 printk(KERN_INFO "%s: Media Link Off\n", net_dev->name);
1342
1343 /* Change mode issue */
6aa20a22 1344 if ((mii_phy->phy_id0 == 0x001D) &&
1da177e4
LT
1345 ((mii_phy->phy_id1 & 0xFFF0) == 0x8000))
1346 sis900_reset_phy(net_dev, sis_priv->cur_phy);
6aa20a22 1347
1da177e4 1348 sis630_set_eq(net_dev, sis_priv->chipset_rev);
6aa20a22 1349
1da177e4
LT
1350 goto LookForLink;
1351 }
1352 }
1353
1354 sis_priv->timer.expires = jiffies + next_tick;
1355 add_timer(&sis_priv->timer);
1356}
1357
1358/**
1359 * sis900_check_mode - check the media mode for sis900
1360 * @net_dev: the net device to be checked
1361 * @mii_phy: the mii phy
1362 *
1363 * Older driver gets the media mode from mii status output
1364 * register. Now we set our media capability and auto-negotiate
1365 * to get the upper bound of speed and duplex between two ends.
1366 * If the types of mii phy is HOME, it doesn't need to auto-negotiate
1367 * and autong_complete should be set to 1.
1368 */
1369
1370static void sis900_check_mode(struct net_device *net_dev, struct mii_phy *mii_phy)
1371{
8f15ea42 1372 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 1373 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1374 int speed, duplex;
1375
1376 if (mii_phy->phy_types == LAN) {
57d6d456 1377 sw32(cfg, ~EXD & sr32(cfg));
1da177e4
LT
1378 sis900_set_capability(net_dev , mii_phy);
1379 sis900_auto_negotiate(net_dev, sis_priv->cur_phy);
1380 } else {
57d6d456 1381 sw32(cfg, EXD | sr32(cfg));
1da177e4
LT
1382 speed = HW_SPEED_HOME;
1383 duplex = FDX_CAPABLE_HALF_SELECTED;
57d6d456 1384 sis900_set_mode(sis_priv, speed, duplex);
1da177e4
LT
1385 sis_priv->autong_complete = 1;
1386 }
1387}
1388
1389/**
1390 * sis900_set_mode - Set the media mode of mac register.
57d6d456 1391 * @sp: the device private data
1da177e4
LT
1392 * @speed : the transmit speed to be determined
1393 * @duplex: the duplex mode to be determined
1394 *
1395 * Set the media mode of mac register txcfg/rxcfg according to
1396 * speed and duplex of phy. Bit EDB_MASTER_EN indicates the EDB
1397 * bus is used instead of PCI bus. When this bit is set 1, the
1398 * Max DMA Burst Size for TX/RX DMA should be no larger than 16
1399 * double words.
1400 */
1401
57d6d456 1402static void sis900_set_mode(struct sis900_private *sp, int speed, int duplex)
1da177e4 1403{
57d6d456 1404 void __iomem *ioaddr = sp->ioaddr;
1da177e4
LT
1405 u32 tx_flags = 0, rx_flags = 0;
1406
57d6d456 1407 if (sr32( cfg) & EDB_MASTER_EN) {
1da177e4
LT
1408 tx_flags = TxATP | (DMA_BURST_64 << TxMXDMA_shift) |
1409 (TX_FILL_THRESH << TxFILLT_shift);
1410 rx_flags = DMA_BURST_64 << RxMXDMA_shift;
1411 } else {
1412 tx_flags = TxATP | (DMA_BURST_512 << TxMXDMA_shift) |
1413 (TX_FILL_THRESH << TxFILLT_shift);
1414 rx_flags = DMA_BURST_512 << RxMXDMA_shift;
1415 }
1416
1417 if (speed == HW_SPEED_HOME || speed == HW_SPEED_10_MBPS) {
1418 rx_flags |= (RxDRNT_10 << RxDRNT_shift);
1419 tx_flags |= (TxDRNT_10 << TxDRNT_shift);
1420 } else {
1421 rx_flags |= (RxDRNT_100 << RxDRNT_shift);
1422 tx_flags |= (TxDRNT_100 << TxDRNT_shift);
1423 }
1424
1425 if (duplex == FDX_CAPABLE_FULL_SELECTED) {
1426 tx_flags |= (TxCSI | TxHBI);
1427 rx_flags |= RxATX;
1428 }
1429
547e530a 1430#if IS_ENABLED(CONFIG_VLAN_8021Q)
d269a69f
DV
1431 /* Can accept Jumbo packet */
1432 rx_flags |= RxAJAB;
1433#endif
1434
57d6d456
FR
1435 sw32(txcfg, tx_flags);
1436 sw32(rxcfg, rx_flags);
1da177e4
LT
1437}
1438
1439/**
1440 * sis900_auto_negotiate - Set the Auto-Negotiation Enable/Reset bit.
1441 * @net_dev: the net device to read mode for
1442 * @phy_addr: mii phy address
1443 *
1444 * If the adapter is link-on, set the auto-negotiate enable/reset bit.
1445 * autong_complete should be set to 0 when starting auto-negotiation.
1446 * autong_complete should be set to 1 if we didn't start auto-negotiation.
1447 * sis900_timer will wait for link on again if autong_complete = 0.
1448 */
1449
1450static void sis900_auto_negotiate(struct net_device *net_dev, int phy_addr)
1451{
8f15ea42 1452 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4
LT
1453 int i = 0;
1454 u32 status;
6aa20a22 1455
f3be9742 1456 for (i = 0; i < 2; i++)
1da177e4
LT
1457 status = mdio_read(net_dev, phy_addr, MII_STATUS);
1458
1459 if (!(status & MII_STAT_LINK)){
1460 if(netif_msg_link(sis_priv))
1461 printk(KERN_INFO "%s: Media Link Off\n", net_dev->name);
1462 sis_priv->autong_complete = 1;
1463 netif_carrier_off(net_dev);
1464 return;
1465 }
1466
1467 /* (Re)start AutoNegotiate */
1468 mdio_write(net_dev, phy_addr, MII_CONTROL,
1469 MII_CNTL_AUTO | MII_CNTL_RST_AUTO);
1470 sis_priv->autong_complete = 0;
1471}
1472
1473
1474/**
1475 * sis900_read_mode - read media mode for sis900 internal phy
1476 * @net_dev: the net device to read mode for
1477 * @speed : the transmit speed to be determined
1478 * @duplex : the duplex mode to be determined
1479 *
1480 * The capability of remote end will be put in mii register autorec
1481 * after auto-negotiation. Use AND operation to get the upper bound
1482 * of speed and duplex between two ends.
1483 */
1484
1485static void sis900_read_mode(struct net_device *net_dev, int *speed, int *duplex)
1486{
8f15ea42 1487 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4
LT
1488 struct mii_phy *phy = sis_priv->mii;
1489 int phy_addr = sis_priv->cur_phy;
1490 u32 status;
1491 u16 autoadv, autorec;
f3be9742 1492 int i;
1da177e4 1493
f3be9742 1494 for (i = 0; i < 2; i++)
1da177e4
LT
1495 status = mdio_read(net_dev, phy_addr, MII_STATUS);
1496
1497 if (!(status & MII_STAT_LINK))
1498 return;
1499
1500 /* AutoNegotiate completed */
1501 autoadv = mdio_read(net_dev, phy_addr, MII_ANADV);
1502 autorec = mdio_read(net_dev, phy_addr, MII_ANLPAR);
1503 status = autoadv & autorec;
6aa20a22 1504
1da177e4
LT
1505 *speed = HW_SPEED_10_MBPS;
1506 *duplex = FDX_CAPABLE_HALF_SELECTED;
1507
1508 if (status & (MII_NWAY_TX | MII_NWAY_TX_FDX))
1509 *speed = HW_SPEED_100_MBPS;
1510 if (status & ( MII_NWAY_TX_FDX | MII_NWAY_T_FDX))
1511 *duplex = FDX_CAPABLE_FULL_SELECTED;
6aa20a22 1512
1da177e4
LT
1513 sis_priv->autong_complete = 1;
1514
1515 /* Workaround for Realtek RTL8201 PHY issue */
1516 if ((phy->phy_id0 == 0x0000) && ((phy->phy_id1 & 0xFFF0) == 0x8200)) {
1517 if (mdio_read(net_dev, phy_addr, MII_CONTROL) & MII_CNTL_FDX)
1518 *duplex = FDX_CAPABLE_FULL_SELECTED;
1519 if (mdio_read(net_dev, phy_addr, 0x0019) & 0x01)
1520 *speed = HW_SPEED_100_MBPS;
1521 }
1522
1523 if(netif_msg_link(sis_priv))
2381a55c 1524 printk(KERN_INFO "%s: Media Link On %s %s-duplex\n",
1da177e4
LT
1525 net_dev->name,
1526 *speed == HW_SPEED_100_MBPS ?
1527 "100mbps" : "10mbps",
1528 *duplex == FDX_CAPABLE_FULL_SELECTED ?
1529 "full" : "half");
1530}
1531
1532/**
1533 * sis900_tx_timeout - sis900 transmit timeout routine
1534 * @net_dev: the net device to transmit
1535 *
1536 * print transmit timeout status
1537 * disable interrupts and do some tasks
1538 */
1539
0290bd29 1540static void sis900_tx_timeout(struct net_device *net_dev, unsigned int txqueue)
1da177e4 1541{
8f15ea42 1542 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 1543 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1544 unsigned long flags;
1545 int i;
1546
57d6d456 1547 if (netif_msg_tx_err(sis_priv)) {
2381a55c 1548 printk(KERN_INFO "%s: Transmit timeout, status %8.8x %8.8x\n",
57d6d456
FR
1549 net_dev->name, sr32(cr), sr32(isr));
1550 }
1da177e4
LT
1551
1552 /* Disable interrupts by clearing the interrupt mask. */
57d6d456 1553 sw32(imr, 0x0000);
1da177e4
LT
1554
1555 /* use spinlock to prevent interrupt handler accessing buffer ring */
1556 spin_lock_irqsave(&sis_priv->lock, flags);
1557
1558 /* discard unsent packets */
1559 sis_priv->dirty_tx = sis_priv->cur_tx = 0;
1560 for (i = 0; i < NUM_TX_DESC; i++) {
1561 struct sk_buff *skb = sis_priv->tx_skbuff[i];
1562
1563 if (skb) {
6aa20a22 1564 pci_unmap_single(sis_priv->pci_dev,
1da177e4
LT
1565 sis_priv->tx_ring[i].bufptr, skb->len,
1566 PCI_DMA_TODEVICE);
1567 dev_kfree_skb_irq(skb);
1568 sis_priv->tx_skbuff[i] = NULL;
1569 sis_priv->tx_ring[i].cmdsts = 0;
1570 sis_priv->tx_ring[i].bufptr = 0;
09f75cd7 1571 net_dev->stats.tx_dropped++;
1da177e4
LT
1572 }
1573 }
1574 sis_priv->tx_full = 0;
1575 netif_wake_queue(net_dev);
1576
1577 spin_unlock_irqrestore(&sis_priv->lock, flags);
1578
860e9538 1579 netif_trans_update(net_dev); /* prevent tx timeout */
1da177e4
LT
1580
1581 /* load Transmit Descriptor Register */
57d6d456 1582 sw32(txdp, sis_priv->tx_ring_dma);
1da177e4
LT
1583
1584 /* Enable all known interrupts by setting the interrupt mask. */
ee7dd773 1585 sw32(imr, RxSOVR | RxORN | RxERR | RxOK | TxURN | TxERR | TxDESC);
1da177e4
LT
1586}
1587
1588/**
1589 * sis900_start_xmit - sis900 start transmit routine
1590 * @skb: socket buffer pointer to put the data being transmitted
1591 * @net_dev: the net device to transmit with
1592 *
6aa20a22 1593 * Set the transmit buffer descriptor,
1da177e4
LT
1594 * and write TxENA to enable transmit state machine.
1595 * tell upper layer if the buffer is full
1596 */
1597
61357325 1598static netdev_tx_t
1da177e4
LT
1599sis900_start_xmit(struct sk_buff *skb, struct net_device *net_dev)
1600{
8f15ea42 1601 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 1602 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1603 unsigned int entry;
1604 unsigned long flags;
1605 unsigned int index_cur_tx, index_dirty_tx;
1606 unsigned int count_dirty_tx;
1607
1da177e4
LT
1608 spin_lock_irqsave(&sis_priv->lock, flags);
1609
1610 /* Calculate the next Tx descriptor entry. */
1611 entry = sis_priv->cur_tx % NUM_TX_DESC;
1612 sis_priv->tx_skbuff[entry] = skb;
1613
1614 /* set the transmit buffer descriptor and enable Transmit State Machine */
1615 sis_priv->tx_ring[entry].bufptr = pci_map_single(sis_priv->pci_dev,
1616 skb->data, skb->len, PCI_DMA_TODEVICE);
1e8edc2a
DK
1617 if (unlikely(pci_dma_mapping_error(sis_priv->pci_dev,
1618 sis_priv->tx_ring[entry].bufptr))) {
828f56f6 1619 dev_kfree_skb_any(skb);
1e8edc2a
DK
1620 sis_priv->tx_skbuff[entry] = NULL;
1621 net_dev->stats.tx_dropped++;
1622 spin_unlock_irqrestore(&sis_priv->lock, flags);
1623 return NETDEV_TX_OK;
1624 }
8ac8a010 1625 sis_priv->tx_ring[entry].cmdsts = (OWN | INTR | skb->len);
57d6d456 1626 sw32(cr, TxENA | sr32(cr));
1da177e4
LT
1627
1628 sis_priv->cur_tx ++;
1629 index_cur_tx = sis_priv->cur_tx;
1630 index_dirty_tx = sis_priv->dirty_tx;
1631
1632 for (count_dirty_tx = 0; index_cur_tx != index_dirty_tx; index_dirty_tx++)
1633 count_dirty_tx ++;
1634
1635 if (index_cur_tx == index_dirty_tx) {
1636 /* dirty_tx is met in the cycle of cur_tx, buffer full */
1637 sis_priv->tx_full = 1;
1638 netif_stop_queue(net_dev);
6aa20a22 1639 } else if (count_dirty_tx < NUM_TX_DESC) {
1da177e4
LT
1640 /* Typical path, tell upper layer that more transmission is possible */
1641 netif_start_queue(net_dev);
1642 } else {
1643 /* buffer full, tell upper layer no more transmission */
1644 sis_priv->tx_full = 1;
1645 netif_stop_queue(net_dev);
1646 }
1647
1648 spin_unlock_irqrestore(&sis_priv->lock, flags);
1649
1da177e4
LT
1650 if (netif_msg_tx_queued(sis_priv))
1651 printk(KERN_DEBUG "%s: Queued Tx packet at %p size %d "
1652 "to slot %d.\n",
1653 net_dev->name, skb->data, (int)skb->len, entry);
1654
6ed10654 1655 return NETDEV_TX_OK;
1da177e4
LT
1656}
1657
1658/**
1659 * sis900_interrupt - sis900 interrupt handler
1660 * @irq: the irq number
1661 * @dev_instance: the client data object
1da177e4 1662 *
6aa20a22 1663 * The interrupt handler does all of the Rx thread work,
1da177e4
LT
1664 * and cleans up after the Tx thread
1665 */
1666
7d12e780 1667static irqreturn_t sis900_interrupt(int irq, void *dev_instance)
1da177e4
LT
1668{
1669 struct net_device *net_dev = dev_instance;
8f15ea42 1670 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4 1671 int boguscnt = max_interrupt_work;
57d6d456 1672 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1673 u32 status;
1674 unsigned int handled = 0;
1675
1676 spin_lock (&sis_priv->lock);
1677
1678 do {
57d6d456 1679 status = sr32(isr);
1da177e4 1680
ee7dd773
SB
1681 if ((status & (HIBERR|TxURN|TxERR|TxDESC|RxORN|RxERR|RxOK)) == 0)
1682 /* nothing interesting happened */
1da177e4
LT
1683 break;
1684 handled = 1;
1685
1686 /* why dow't we break after Tx/Rx case ?? keyword: full-duplex */
1687 if (status & (RxORN | RxERR | RxOK))
1688 /* Rx interrupt */
1689 sis900_rx(net_dev);
1690
ee7dd773 1691 if (status & (TxURN | TxERR | TxDESC))
1da177e4
LT
1692 /* Tx interrupt */
1693 sis900_finish_xmit(net_dev);
1694
1695 /* something strange happened !!! */
1696 if (status & HIBERR) {
1697 if(netif_msg_intr(sis_priv))
2450022a 1698 printk(KERN_INFO "%s: Abnormal interrupt, "
1da177e4
LT
1699 "status %#8.8x.\n", net_dev->name, status);
1700 break;
1701 }
1702 if (--boguscnt < 0) {
1703 if(netif_msg_intr(sis_priv))
1704 printk(KERN_INFO "%s: Too much work at interrupt, "
1705 "interrupt status = %#8.8x.\n",
1706 net_dev->name, status);
1707 break;
1708 }
1709 } while (1);
1710
1711 if(netif_msg_intr(sis_priv))
1712 printk(KERN_DEBUG "%s: exiting interrupt, "
8e33a52f 1713 "interrupt status = %#8.8x\n",
57d6d456 1714 net_dev->name, sr32(isr));
6aa20a22 1715
1da177e4
LT
1716 spin_unlock (&sis_priv->lock);
1717 return IRQ_RETVAL(handled);
1718}
1719
1720/**
1721 * sis900_rx - sis900 receive routine
1722 * @net_dev: the net device which receives data
1723 *
6aa20a22 1724 * Process receive interrupt events,
1da177e4 1725 * put buffer to higher layer and refill buffer pool
0b28002f 1726 * Note: This function is called by interrupt handler,
1da177e4
LT
1727 * don't do "too much" work here
1728 */
1729
1730static int sis900_rx(struct net_device *net_dev)
1731{
8f15ea42 1732 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 1733 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1734 unsigned int entry = sis_priv->cur_rx % NUM_RX_DESC;
1735 u32 rx_status = sis_priv->rx_ring[entry].cmdsts;
7380a78a 1736 int rx_work_limit;
1da177e4
LT
1737
1738 if (netif_msg_rx_status(sis_priv))
1739 printk(KERN_DEBUG "sis900_rx, cur_rx:%4.4d, dirty_rx:%4.4d "
1740 "status:0x%8.8x\n",
1741 sis_priv->cur_rx, sis_priv->dirty_rx, rx_status);
7380a78a 1742 rx_work_limit = sis_priv->dirty_rx + NUM_RX_DESC - sis_priv->cur_rx;
1da177e4
LT
1743
1744 while (rx_status & OWN) {
1745 unsigned int rx_size;
d269a69f 1746 unsigned int data_size;
1da177e4 1747
7380a78a
VA
1748 if (--rx_work_limit < 0)
1749 break;
1750
d269a69f
DV
1751 data_size = rx_status & DSIZE;
1752 rx_size = data_size - CRC_SIZE;
1753
547e530a 1754#if IS_ENABLED(CONFIG_VLAN_8021Q)
25985edc 1755 /* ``TOOLONG'' flag means jumbo packet received. */
d269a69f
DV
1756 if ((rx_status & TOOLONG) && data_size <= MAX_FRAME_SIZE)
1757 rx_status &= (~ ((unsigned int)TOOLONG));
1758#endif
1da177e4
LT
1759
1760 if (rx_status & (ABORT|OVERRUN|TOOLONG|RUNT|RXISERR|CRCERR|FAERR)) {
1761 /* corrupted packet received */
1762 if (netif_msg_rx_err(sis_priv))
1763 printk(KERN_DEBUG "%s: Corrupted packet "
d269a69f
DV
1764 "received, buffer status = 0x%8.8x/%d.\n",
1765 net_dev->name, rx_status, data_size);
09f75cd7 1766 net_dev->stats.rx_errors++;
1da177e4 1767 if (rx_status & OVERRUN)
09f75cd7 1768 net_dev->stats.rx_over_errors++;
1da177e4 1769 if (rx_status & (TOOLONG|RUNT))
09f75cd7 1770 net_dev->stats.rx_length_errors++;
1da177e4 1771 if (rx_status & (RXISERR | FAERR))
09f75cd7 1772 net_dev->stats.rx_frame_errors++;
6aa20a22 1773 if (rx_status & CRCERR)
09f75cd7 1774 net_dev->stats.rx_crc_errors++;
1da177e4
LT
1775 /* reset buffer descriptor state */
1776 sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
1777 } else {
1778 struct sk_buff * skb;
dc5a1449 1779 struct sk_buff * rx_skb;
1da177e4 1780
b748d9e3
NH
1781 pci_unmap_single(sis_priv->pci_dev,
1782 sis_priv->rx_ring[entry].bufptr, RX_BUF_SIZE,
1783 PCI_DMA_FROMDEVICE);
1784
af901ca1 1785 /* refill the Rx buffer, what if there is not enough
b748d9e3 1786 * memory for new socket buffer ?? */
dae2e9f4 1787 if ((skb = netdev_alloc_skb(net_dev, RX_BUF_SIZE)) == NULL) {
b748d9e3
NH
1788 /*
1789 * Not enough memory to refill the buffer
1790 * so we need to recycle the old one so
1791 * as to avoid creating a memory hole
1792 * in the rx ring
1793 */
1794 skb = sis_priv->rx_skbuff[entry];
09f75cd7 1795 net_dev->stats.rx_dropped++;
b748d9e3 1796 goto refill_rx_ring;
7d2e3cb7 1797 }
b748d9e3 1798
1da177e4 1799 /* This situation should never happen, but due to
af901ca1 1800 some unknown bugs, it is possible that
1da177e4
LT
1801 we are working on NULL sk_buff :-( */
1802 if (sis_priv->rx_skbuff[entry] == NULL) {
1803 if (netif_msg_rx_err(sis_priv))
6aa20a22 1804 printk(KERN_WARNING "%s: NULL pointer "
7380a78a
VA
1805 "encountered in Rx ring\n"
1806 "cur_rx:%4.4d, dirty_rx:%4.4d\n",
1807 net_dev->name, sis_priv->cur_rx,
1808 sis_priv->dirty_rx);
bf1f9ae0 1809 dev_kfree_skb(skb);
1da177e4
LT
1810 break;
1811 }
1812
1da177e4 1813 /* give the socket buffer to upper layers */
dc5a1449
NH
1814 rx_skb = sis_priv->rx_skbuff[entry];
1815 skb_put(rx_skb, rx_size);
1816 rx_skb->protocol = eth_type_trans(rx_skb, net_dev);
1817 netif_rx(rx_skb);
1da177e4
LT
1818
1819 /* some network statistics */
1820 if ((rx_status & BCAST) == MCAST)
09f75cd7 1821 net_dev->stats.multicast++;
09f75cd7
JG
1822 net_dev->stats.rx_bytes += rx_size;
1823 net_dev->stats.rx_packets++;
b748d9e3
NH
1824 sis_priv->dirty_rx++;
1825refill_rx_ring:
1da177e4
LT
1826 sis_priv->rx_skbuff[entry] = skb;
1827 sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
1e8edc2a 1828 sis_priv->rx_ring[entry].bufptr =
6aa20a22 1829 pci_map_single(sis_priv->pci_dev, skb->data,
1da177e4 1830 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1e8edc2a
DK
1831 if (unlikely(pci_dma_mapping_error(sis_priv->pci_dev,
1832 sis_priv->rx_ring[entry].bufptr))) {
1833 dev_kfree_skb_irq(skb);
1834 sis_priv->rx_skbuff[entry] = NULL;
1835 break;
1836 }
1da177e4
LT
1837 }
1838 sis_priv->cur_rx++;
1839 entry = sis_priv->cur_rx % NUM_RX_DESC;
1840 rx_status = sis_priv->rx_ring[entry].cmdsts;
1841 } // while
1842
1843 /* refill the Rx buffer, what if the rate of refilling is slower
1844 * than consuming ?? */
7380a78a 1845 for (; sis_priv->cur_rx != sis_priv->dirty_rx; sis_priv->dirty_rx++) {
1da177e4
LT
1846 struct sk_buff *skb;
1847
1848 entry = sis_priv->dirty_rx % NUM_RX_DESC;
1849
1850 if (sis_priv->rx_skbuff[entry] == NULL) {
720a43ef
JP
1851 skb = netdev_alloc_skb(net_dev, RX_BUF_SIZE);
1852 if (skb == NULL) {
1da177e4
LT
1853 /* not enough memory for skbuff, this makes a
1854 * "hole" on the buffer ring, it is not clear
1855 * how the hardware will react to this kind
1856 * of degenerated buffer */
09f75cd7 1857 net_dev->stats.rx_dropped++;
1da177e4
LT
1858 break;
1859 }
1da177e4
LT
1860 sis_priv->rx_skbuff[entry] = skb;
1861 sis_priv->rx_ring[entry].cmdsts = RX_BUF_SIZE;
1e8edc2a 1862 sis_priv->rx_ring[entry].bufptr =
689be439 1863 pci_map_single(sis_priv->pci_dev, skb->data,
1da177e4 1864 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1e8edc2a
DK
1865 if (unlikely(pci_dma_mapping_error(sis_priv->pci_dev,
1866 sis_priv->rx_ring[entry].bufptr))) {
1867 dev_kfree_skb_irq(skb);
1868 sis_priv->rx_skbuff[entry] = NULL;
1869 break;
1870 }
1da177e4
LT
1871 }
1872 }
1873 /* re-enable the potentially idle receive state matchine */
57d6d456 1874 sw32(cr , RxENA | sr32(cr));
1da177e4
LT
1875
1876 return 0;
1877}
1878
1879/**
1880 * sis900_finish_xmit - finish up transmission of packets
1881 * @net_dev: the net device to be transmitted on
1882 *
6aa20a22 1883 * Check for error condition and free socket buffer etc
1da177e4 1884 * schedule for more transmission as needed
0b28002f 1885 * Note: This function is called by interrupt handler,
1da177e4
LT
1886 * don't do "too much" work here
1887 */
1888
1889static void sis900_finish_xmit (struct net_device *net_dev)
1890{
8f15ea42 1891 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4
LT
1892
1893 for (; sis_priv->dirty_tx != sis_priv->cur_tx; sis_priv->dirty_tx++) {
1894 struct sk_buff *skb;
1895 unsigned int entry;
1896 u32 tx_status;
1897
1898 entry = sis_priv->dirty_tx % NUM_TX_DESC;
1899 tx_status = sis_priv->tx_ring[entry].cmdsts;
1900
1901 if (tx_status & OWN) {
1902 /* The packet is not transmitted yet (owned by hardware) !
8ac8a010 1903 * Note: this is an almost impossible condition
ee7dd773 1904 * on TxDESC interrupt ('descriptor interrupt') */
1da177e4
LT
1905 break;
1906 }
1907
1908 if (tx_status & (ABORT | UNDERRUN | OWCOLL)) {
1909 /* packet unsuccessfully transmitted */
1910 if (netif_msg_tx_err(sis_priv))
1911 printk(KERN_DEBUG "%s: Transmit "
1912 "error, Tx status %8.8x.\n",
1913 net_dev->name, tx_status);
09f75cd7 1914 net_dev->stats.tx_errors++;
1da177e4 1915 if (tx_status & UNDERRUN)
09f75cd7 1916 net_dev->stats.tx_fifo_errors++;
1da177e4 1917 if (tx_status & ABORT)
09f75cd7 1918 net_dev->stats.tx_aborted_errors++;
1da177e4 1919 if (tx_status & NOCARRIER)
09f75cd7 1920 net_dev->stats.tx_carrier_errors++;
1da177e4 1921 if (tx_status & OWCOLL)
09f75cd7 1922 net_dev->stats.tx_window_errors++;
1da177e4
LT
1923 } else {
1924 /* packet successfully transmitted */
09f75cd7
JG
1925 net_dev->stats.collisions += (tx_status & COLCNT) >> 16;
1926 net_dev->stats.tx_bytes += tx_status & DSIZE;
1927 net_dev->stats.tx_packets++;
1da177e4
LT
1928 }
1929 /* Free the original skb. */
1930 skb = sis_priv->tx_skbuff[entry];
6aa20a22 1931 pci_unmap_single(sis_priv->pci_dev,
1da177e4
LT
1932 sis_priv->tx_ring[entry].bufptr, skb->len,
1933 PCI_DMA_TODEVICE);
e78042eb 1934 dev_consume_skb_irq(skb);
1da177e4
LT
1935 sis_priv->tx_skbuff[entry] = NULL;
1936 sis_priv->tx_ring[entry].bufptr = 0;
1937 sis_priv->tx_ring[entry].cmdsts = 0;
1938 }
1939
1940 if (sis_priv->tx_full && netif_queue_stopped(net_dev) &&
1941 sis_priv->cur_tx - sis_priv->dirty_tx < NUM_TX_DESC - 4) {
1942 /* The ring is no longer full, clear tx_full and schedule
1943 * more transmission by netif_wake_queue(net_dev) */
1944 sis_priv->tx_full = 0;
1945 netif_wake_queue (net_dev);
1946 }
1947}
1948
1949/**
6aa20a22 1950 * sis900_close - close sis900 device
1da177e4
LT
1951 * @net_dev: the net device to be closed
1952 *
6aa20a22 1953 * Disable interrupts, stop the Tx and Rx Status Machine
1da177e4
LT
1954 * free Tx and RX socket buffer
1955 */
1956
1957static int sis900_close(struct net_device *net_dev)
1958{
8f15ea42 1959 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456
FR
1960 struct pci_dev *pdev = sis_priv->pci_dev;
1961 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
1962 struct sk_buff *skb;
1963 int i;
1964
1965 netif_stop_queue(net_dev);
1966
1967 /* Disable interrupts by clearing the interrupt mask. */
57d6d456
FR
1968 sw32(imr, 0x0000);
1969 sw32(ier, 0x0000);
1da177e4
LT
1970
1971 /* Stop the chip's Tx and Rx Status Machine */
57d6d456 1972 sw32(cr, RxDIS | TxDIS | sr32(cr));
1da177e4
LT
1973
1974 del_timer(&sis_priv->timer);
1975
57d6d456 1976 free_irq(pdev->irq, net_dev);
1da177e4
LT
1977
1978 /* Free Tx and RX skbuff */
1979 for (i = 0; i < NUM_RX_DESC; i++) {
1980 skb = sis_priv->rx_skbuff[i];
1981 if (skb) {
57d6d456
FR
1982 pci_unmap_single(pdev, sis_priv->rx_ring[i].bufptr,
1983 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1da177e4
LT
1984 dev_kfree_skb(skb);
1985 sis_priv->rx_skbuff[i] = NULL;
1986 }
1987 }
1988 for (i = 0; i < NUM_TX_DESC; i++) {
1989 skb = sis_priv->tx_skbuff[i];
1990 if (skb) {
57d6d456
FR
1991 pci_unmap_single(pdev, sis_priv->tx_ring[i].bufptr,
1992 skb->len, PCI_DMA_TODEVICE);
1da177e4
LT
1993 dev_kfree_skb(skb);
1994 sis_priv->tx_skbuff[i] = NULL;
1995 }
1996 }
1997
1998 /* Green! Put the chip in low-power mode. */
1999
2000 return 0;
2001}
2002
2003/**
2004 * sis900_get_drvinfo - Return information about driver
2005 * @net_dev: the net device to probe
2006 * @info: container for info returned
2007 *
2008 * Process ethtool command such as "ehtool -i" to show information
2009 */
6aa20a22 2010
1da177e4
LT
2011static void sis900_get_drvinfo(struct net_device *net_dev,
2012 struct ethtool_drvinfo *info)
2013{
8f15ea42 2014 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4 2015
23020ab3
RJ
2016 strlcpy(info->driver, SIS900_MODULE_NAME, sizeof(info->driver));
2017 strlcpy(info->version, SIS900_DRV_VERSION, sizeof(info->version));
2018 strlcpy(info->bus_info, pci_name(sis_priv->pci_dev),
2019 sizeof(info->bus_info));
1da177e4
LT
2020}
2021
2022static u32 sis900_get_msglevel(struct net_device *net_dev)
2023{
8f15ea42 2024 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4
LT
2025 return sis_priv->msg_enable;
2026}
6aa20a22 2027
1da177e4
LT
2028static void sis900_set_msglevel(struct net_device *net_dev, u32 value)
2029{
8f15ea42 2030 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4
LT
2031 sis_priv->msg_enable = value;
2032}
2033
da369b01
DV
2034static u32 sis900_get_link(struct net_device *net_dev)
2035{
8f15ea42 2036 struct sis900_private *sis_priv = netdev_priv(net_dev);
da369b01
DV
2037 return mii_link_ok(&sis_priv->mii_info);
2038}
2039
7d59e319
PR
2040static int sis900_get_link_ksettings(struct net_device *net_dev,
2041 struct ethtool_link_ksettings *cmd)
da369b01 2042{
8f15ea42 2043 struct sis900_private *sis_priv = netdev_priv(net_dev);
da369b01 2044 spin_lock_irq(&sis_priv->lock);
7d59e319 2045 mii_ethtool_get_link_ksettings(&sis_priv->mii_info, cmd);
da369b01
DV
2046 spin_unlock_irq(&sis_priv->lock);
2047 return 0;
2048}
2049
7d59e319
PR
2050static int sis900_set_link_ksettings(struct net_device *net_dev,
2051 const struct ethtool_link_ksettings *cmd)
da369b01 2052{
8f15ea42 2053 struct sis900_private *sis_priv = netdev_priv(net_dev);
da369b01
DV
2054 int rt;
2055 spin_lock_irq(&sis_priv->lock);
7d59e319 2056 rt = mii_ethtool_set_link_ksettings(&sis_priv->mii_info, cmd);
da369b01
DV
2057 spin_unlock_irq(&sis_priv->lock);
2058 return rt;
2059}
2060
2061static int sis900_nway_reset(struct net_device *net_dev)
2062{
8f15ea42 2063 struct sis900_private *sis_priv = netdev_priv(net_dev);
da369b01
DV
2064 return mii_nway_restart(&sis_priv->mii_info);
2065}
2066
ea37ccea
DV
2067/**
2068 * sis900_set_wol - Set up Wake on Lan registers
2069 * @net_dev: the net device to probe
2070 * @wol: container for info passed to the driver
2071 *
2072 * Process ethtool command "wol" to setup wake on lan features.
2073 * SiS900 supports sending WoL events if a correct packet is received,
2074 * but there is no simple way to filter them to only a subset (broadcast,
2075 * multicast, unicast or arp).
2076 */
6aa20a22 2077
ea37ccea
DV
2078static int sis900_set_wol(struct net_device *net_dev, struct ethtool_wolinfo *wol)
2079{
8f15ea42 2080 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 2081 void __iomem *ioaddr = sis_priv->ioaddr;
ea37ccea
DV
2082 u32 cfgpmcsr = 0, pmctrl_bits = 0;
2083
2084 if (wol->wolopts == 0) {
2085 pci_read_config_dword(sis_priv->pci_dev, CFGPMCSR, &cfgpmcsr);
7bef4b39 2086 cfgpmcsr &= ~PME_EN;
ea37ccea 2087 pci_write_config_dword(sis_priv->pci_dev, CFGPMCSR, cfgpmcsr);
57d6d456 2088 sw32(pmctrl, pmctrl_bits);
ea37ccea
DV
2089 if (netif_msg_wol(sis_priv))
2090 printk(KERN_DEBUG "%s: Wake on LAN disabled\n", net_dev->name);
2091 return 0;
2092 }
2093
2094 if (wol->wolopts & (WAKE_MAGICSECURE | WAKE_UCAST | WAKE_MCAST
2095 | WAKE_BCAST | WAKE_ARP))
2096 return -EINVAL;
2097
2098 if (wol->wolopts & WAKE_MAGIC)
2099 pmctrl_bits |= MAGICPKT;
2100 if (wol->wolopts & WAKE_PHY)
2101 pmctrl_bits |= LINKON;
6aa20a22 2102
57d6d456 2103 sw32(pmctrl, pmctrl_bits);
ea37ccea
DV
2104
2105 pci_read_config_dword(sis_priv->pci_dev, CFGPMCSR, &cfgpmcsr);
2106 cfgpmcsr |= PME_EN;
2107 pci_write_config_dword(sis_priv->pci_dev, CFGPMCSR, cfgpmcsr);
2108 if (netif_msg_wol(sis_priv))
2109 printk(KERN_DEBUG "%s: Wake on LAN enabled\n", net_dev->name);
2110
2111 return 0;
2112}
2113
2114static void sis900_get_wol(struct net_device *net_dev, struct ethtool_wolinfo *wol)
2115{
57d6d456
FR
2116 struct sis900_private *sp = netdev_priv(net_dev);
2117 void __iomem *ioaddr = sp->ioaddr;
ea37ccea
DV
2118 u32 pmctrl_bits;
2119
57d6d456 2120 pmctrl_bits = sr32(pmctrl);
ea37ccea
DV
2121 if (pmctrl_bits & MAGICPKT)
2122 wol->wolopts |= WAKE_MAGIC;
2123 if (pmctrl_bits & LINKON)
2124 wol->wolopts |= WAKE_PHY;
2125
2126 wol->supported = (WAKE_PHY | WAKE_MAGIC);
2127}
2128
cd8ae207
SB
2129static int sis900_get_eeprom_len(struct net_device *dev)
2130{
2131 struct sis900_private *sis_priv = netdev_priv(dev);
2132
2133 return sis_priv->eeprom_size;
2134}
2135
2136static int sis900_read_eeprom(struct net_device *net_dev, u8 *buf)
2137{
2138 struct sis900_private *sis_priv = netdev_priv(net_dev);
2139 void __iomem *ioaddr = sis_priv->ioaddr;
2140 int wait, ret = -EAGAIN;
2141 u16 signature;
2142 u16 *ebuf = (u16 *)buf;
2143 int i;
2144
2145 if (sis_priv->chipset_rev == SIS96x_900_REV) {
2146 sw32(mear, EEREQ);
2147 for (wait = 0; wait < 2000; wait++) {
2148 if (sr32(mear) & EEGNT) {
2149 /* read 16 bits, and index by 16 bits */
2150 for (i = 0; i < sis_priv->eeprom_size / 2; i++)
2151 ebuf[i] = (u16)read_eeprom(ioaddr, i);
2152 ret = 0;
2153 break;
2154 }
2155 udelay(1);
2156 }
2157 sw32(mear, EEDONE);
2158 } else {
2159 signature = (u16)read_eeprom(ioaddr, EEPROMSignature);
2160 if (signature != 0xffff && signature != 0x0000) {
2161 /* read 16 bits, and index by 16 bits */
2162 for (i = 0; i < sis_priv->eeprom_size / 2; i++)
2163 ebuf[i] = (u16)read_eeprom(ioaddr, i);
2164 ret = 0;
2165 }
2166 }
2167 return ret;
2168}
2169
2170#define SIS900_EEPROM_MAGIC 0xBABE
2171static int sis900_get_eeprom(struct net_device *dev, struct ethtool_eeprom *eeprom, u8 *data)
2172{
2173 struct sis900_private *sis_priv = netdev_priv(dev);
2174 u8 *eebuf;
2175 int res;
2176
2177 eebuf = kmalloc(sis_priv->eeprom_size, GFP_KERNEL);
2178 if (!eebuf)
2179 return -ENOMEM;
2180
2181 eeprom->magic = SIS900_EEPROM_MAGIC;
2182 spin_lock_irq(&sis_priv->lock);
2183 res = sis900_read_eeprom(dev, eebuf);
2184 spin_unlock_irq(&sis_priv->lock);
2185 if (!res)
2186 memcpy(data, eebuf + eeprom->offset, eeprom->len);
2187 kfree(eebuf);
2188 return res;
2189}
2190
7282d491 2191static const struct ethtool_ops sis900_ethtool_ops = {
1da177e4
LT
2192 .get_drvinfo = sis900_get_drvinfo,
2193 .get_msglevel = sis900_get_msglevel,
2194 .set_msglevel = sis900_set_msglevel,
da369b01 2195 .get_link = sis900_get_link,
da369b01 2196 .nway_reset = sis900_nway_reset,
ea37ccea 2197 .get_wol = sis900_get_wol,
7d59e319
PR
2198 .set_wol = sis900_set_wol,
2199 .get_link_ksettings = sis900_get_link_ksettings,
2200 .set_link_ksettings = sis900_set_link_ksettings,
cd8ae207
SB
2201 .get_eeprom_len = sis900_get_eeprom_len,
2202 .get_eeprom = sis900_get_eeprom,
1da177e4
LT
2203};
2204
2205/**
6aa20a22 2206 * mii_ioctl - process MII i/o control command
1da177e4
LT
2207 * @net_dev: the net device to command for
2208 * @rq: parameter for command
2209 * @cmd: the i/o command
2210 *
2211 * Process MII command like read/write MII register
2212 */
2213
2214static int mii_ioctl(struct net_device *net_dev, struct ifreq *rq, int cmd)
2215{
8f15ea42 2216 struct sis900_private *sis_priv = netdev_priv(net_dev);
1da177e4
LT
2217 struct mii_ioctl_data *data = if_mii(rq);
2218
2219 switch(cmd) {
2220 case SIOCGMIIPHY: /* Get address of MII PHY in use. */
2221 data->phy_id = sis_priv->mii->phy_addr;
2222 /* Fall Through */
2223
2224 case SIOCGMIIREG: /* Read MII PHY register. */
2225 data->val_out = mdio_read(net_dev, data->phy_id & 0x1f, data->reg_num & 0x1f);
2226 return 0;
2227
2228 case SIOCSMIIREG: /* Write MII PHY register. */
1da177e4
LT
2229 mdio_write(net_dev, data->phy_id & 0x1f, data->reg_num & 0x1f, data->val_in);
2230 return 0;
2231 default:
2232 return -EOPNOTSUPP;
2233 }
2234}
2235
1da177e4 2236/**
6aa20a22 2237 * sis900_set_config - Set media type by net_device.set_config
1da177e4
LT
2238 * @dev: the net device for media type change
2239 * @map: ifmap passed by ifconfig
2240 *
2241 * Set media type to 10baseT, 100baseT or 0(for auto) by ifconfig
2242 * we support only port changes. All other runtime configuration
2243 * changes will be ignored
2244 */
2245
2246static int sis900_set_config(struct net_device *dev, struct ifmap *map)
6aa20a22 2247{
8f15ea42 2248 struct sis900_private *sis_priv = netdev_priv(dev);
1da177e4 2249 struct mii_phy *mii_phy = sis_priv->mii;
6aa20a22 2250
1da177e4
LT
2251 u16 status;
2252
2253 if ((map->port != (u_char)(-1)) && (map->port != dev->if_port)) {
2254 /* we switch on the ifmap->port field. I couldn't find anything
2255 * like a definition or standard for the values of that field.
2256 * I think the meaning of those values is device specific. But
2257 * since I would like to change the media type via the ifconfig
6aa20a22 2258 * command I use the definition from linux/netdevice.h
1da177e4
LT
2259 * (which seems to be different from the ifport(pcmcia) definition) */
2260 switch(map->port){
6aa20a22 2261 case IF_PORT_UNKNOWN: /* use auto here */
1da177e4
LT
2262 dev->if_port = map->port;
2263 /* we are going to change the media type, so the Link
2264 * will be temporary down and we need to reflect that
2265 * here. When the Link comes up again, it will be
2266 * sensed by the sis_timer procedure, which also does
2267 * all the rest for us */
2268 netif_carrier_off(dev);
6aa20a22 2269
1da177e4
LT
2270 /* read current state */
2271 status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
6aa20a22 2272
1da177e4
LT
2273 /* enable auto negotiation and reset the negotioation
2274 * (I don't really know what the auto negatiotiation
2275 * reset really means, but it sounds for me right to
2276 * do one here) */
2277 mdio_write(dev, mii_phy->phy_addr,
2278 MII_CONTROL, status | MII_CNTL_AUTO | MII_CNTL_RST_AUTO);
2279
2280 break;
6aa20a22
JG
2281
2282 case IF_PORT_10BASET: /* 10BaseT */
1da177e4 2283 dev->if_port = map->port;
6aa20a22 2284
1da177e4
LT
2285 /* we are going to change the media type, so the Link
2286 * will be temporary down and we need to reflect that
2287 * here. When the Link comes up again, it will be
2288 * sensed by the sis_timer procedure, which also does
2289 * all the rest for us */
2290 netif_carrier_off(dev);
6aa20a22 2291
1da177e4
LT
2292 /* set Speed to 10Mbps */
2293 /* read current state */
2294 status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
6aa20a22 2295
1da177e4
LT
2296 /* disable auto negotiation and force 10MBit mode*/
2297 mdio_write(dev, mii_phy->phy_addr,
2298 MII_CONTROL, status & ~(MII_CNTL_SPEED |
2299 MII_CNTL_AUTO));
2300 break;
6aa20a22 2301
1da177e4 2302 case IF_PORT_100BASET: /* 100BaseT */
6aa20a22 2303 case IF_PORT_100BASETX: /* 100BaseTx */
1da177e4 2304 dev->if_port = map->port;
6aa20a22 2305
1da177e4
LT
2306 /* we are going to change the media type, so the Link
2307 * will be temporary down and we need to reflect that
2308 * here. When the Link comes up again, it will be
2309 * sensed by the sis_timer procedure, which also does
2310 * all the rest for us */
2311 netif_carrier_off(dev);
6aa20a22 2312
1da177e4
LT
2313 /* set Speed to 100Mbps */
2314 /* disable auto negotiation and enable 100MBit Mode */
2315 status = mdio_read(dev, mii_phy->phy_addr, MII_CONTROL);
2316 mdio_write(dev, mii_phy->phy_addr,
2317 MII_CONTROL, (status & ~MII_CNTL_SPEED) |
2318 MII_CNTL_SPEED);
6aa20a22 2319
1da177e4 2320 break;
6aa20a22 2321
1da177e4
LT
2322 case IF_PORT_10BASE2: /* 10Base2 */
2323 case IF_PORT_AUI: /* AUI */
2324 case IF_PORT_100BASEFX: /* 100BaseFx */
2325 /* These Modes are not supported (are they?)*/
2326 return -EOPNOTSUPP;
6aa20a22 2327
1da177e4
LT
2328 default:
2329 return -EINVAL;
2330 }
2331 }
2332 return 0;
2333}
2334
2335/**
6aa20a22 2336 * sis900_mcast_bitnr - compute hashtable index
1da177e4
LT
2337 * @addr: multicast address
2338 * @revision: revision id of chip
2339 *
2340 * SiS 900 uses the most sigificant 7 bits to index a 128 bits multicast
2341 * hash table, which makes this function a little bit different from other drivers
2342 * SiS 900 B0 & 635 M/B uses the most significat 8 bits to index 256 bits
6aa20a22 2343 * multicast hash table.
1da177e4
LT
2344 */
2345
2346static inline u16 sis900_mcast_bitnr(u8 *addr, u8 revision)
2347{
2348
2349 u32 crc = ether_crc(6, addr);
2350
2351 /* leave 8 or 7 most siginifant bits */
2352 if ((revision >= SIS635A_900_REV) || (revision == SIS900B_900_REV))
807540ba 2353 return (int)(crc >> 24);
1da177e4 2354 else
807540ba 2355 return (int)(crc >> 25);
1da177e4
LT
2356}
2357
2358/**
6aa20a22 2359 * set_rx_mode - Set SiS900 receive mode
1da177e4
LT
2360 * @net_dev: the net device to be set
2361 *
2362 * Set SiS900 receive mode for promiscuous, multicast, or broadcast mode.
2363 * And set the appropriate multicast filter.
2364 * Multicast hash table changes from 128 to 256 bits for 635M/B & 900B0.
2365 */
2366
2367static void set_rx_mode(struct net_device *net_dev)
2368{
8f15ea42 2369 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 2370 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
2371 u16 mc_filter[16] = {0}; /* 256/128 bits multicast hash table */
2372 int i, table_entries;
2373 u32 rx_mode;
2374
7f927fcc 2375 /* 635 Hash Table entries = 256(2^16) */
1da177e4
LT
2376 if((sis_priv->chipset_rev >= SIS635A_900_REV) ||
2377 (sis_priv->chipset_rev == SIS900B_900_REV))
2378 table_entries = 16;
2379 else
2380 table_entries = 8;
2381
2382 if (net_dev->flags & IFF_PROMISC) {
2383 /* Accept any kinds of packets */
2384 rx_mode = RFPromiscuous;
2385 for (i = 0; i < table_entries; i++)
2386 mc_filter[i] = 0xffff;
4cd24eaf 2387 } else if ((netdev_mc_count(net_dev) > multicast_filter_limit) ||
1da177e4
LT
2388 (net_dev->flags & IFF_ALLMULTI)) {
2389 /* too many multicast addresses or accept all multicast packet */
2390 rx_mode = RFAAB | RFAAM;
2391 for (i = 0; i < table_entries; i++)
2392 mc_filter[i] = 0xffff;
2393 } else {
2394 /* Accept Broadcast packet, destination address matchs our
2395 * MAC address, use Receive Filter to reject unwanted MCAST
2396 * packets */
22bedad3 2397 struct netdev_hw_addr *ha;
1da177e4 2398 rx_mode = RFAAB;
5508590c 2399
22bedad3
JP
2400 netdev_for_each_mc_addr(ha, net_dev) {
2401 unsigned int bit_nr;
2402
2403 bit_nr = sis900_mcast_bitnr(ha->addr,
2404 sis_priv->chipset_rev);
1da177e4
LT
2405 mc_filter[bit_nr >> 4] |= (1 << (bit_nr & 0xf));
2406 }
2407 }
2408
2409 /* update Multicast Hash Table in Receive Filter */
2410 for (i = 0; i < table_entries; i++) {
2411 /* why plus 0x04 ??, That makes the correct value for hash table. */
57d6d456
FR
2412 sw32(rfcr, (u32)(0x00000004 + i) << RFADDR_shift);
2413 sw32(rfdr, mc_filter[i]);
1da177e4
LT
2414 }
2415
57d6d456 2416 sw32(rfcr, RFEN | rx_mode);
1da177e4
LT
2417
2418 /* sis900 is capable of looping back packets at MAC level for
2419 * debugging purpose */
2420 if (net_dev->flags & IFF_LOOPBACK) {
2421 u32 cr_saved;
2422 /* We must disable Tx/Rx before setting loopback mode */
57d6d456
FR
2423 cr_saved = sr32(cr);
2424 sw32(cr, cr_saved | TxDIS | RxDIS);
1da177e4 2425 /* enable loopback */
57d6d456
FR
2426 sw32(txcfg, sr32(txcfg) | TxMLB);
2427 sw32(rxcfg, sr32(rxcfg) | RxATX);
1da177e4 2428 /* restore cr */
57d6d456 2429 sw32(cr, cr_saved);
1da177e4 2430 }
1da177e4
LT
2431}
2432
2433/**
6aa20a22 2434 * sis900_reset - Reset sis900 MAC
1da177e4
LT
2435 * @net_dev: the net device to reset
2436 *
2437 * reset sis900 MAC and wait until finished
2438 * reset through command register
2439 * change backoff algorithm for 900B0 & 635 M/B
2440 */
2441
2442static void sis900_reset(struct net_device *net_dev)
2443{
8f15ea42 2444 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 2445 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4 2446 u32 status = TxRCMP | RxRCMP;
57d6d456 2447 int i;
1da177e4 2448
57d6d456
FR
2449 sw32(ier, 0);
2450 sw32(imr, 0);
2451 sw32(rfcr, 0);
1da177e4 2452
57d6d456 2453 sw32(cr, RxRESET | TxRESET | RESET | sr32(cr));
6aa20a22 2454
1da177e4 2455 /* Check that the chip has finished the reset. */
57d6d456
FR
2456 for (i = 0; status && (i < 1000); i++)
2457 status ^= sr32(isr) & status;
1da177e4 2458
57d6d456
FR
2459 if (sis_priv->chipset_rev >= SIS635A_900_REV ||
2460 sis_priv->chipset_rev == SIS900B_900_REV)
2461 sw32(cfg, PESEL | RND_CNT);
1da177e4 2462 else
57d6d456 2463 sw32(cfg, PESEL);
1da177e4
LT
2464}
2465
2466/**
6aa20a22 2467 * sis900_remove - Remove sis900 device
1da177e4
LT
2468 * @pci_dev: the pci device to be removed
2469 *
2470 * remove and release SiS900 net device
2471 */
2472
369e1231 2473static void sis900_remove(struct pci_dev *pci_dev)
1da177e4
LT
2474{
2475 struct net_device *net_dev = pci_get_drvdata(pci_dev);
8f15ea42 2476 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456
FR
2477
2478 unregister_netdev(net_dev);
1da177e4
LT
2479
2480 while (sis_priv->first_mii) {
57d6d456
FR
2481 struct mii_phy *phy = sis_priv->first_mii;
2482
1da177e4
LT
2483 sis_priv->first_mii = phy->next;
2484 kfree(phy);
2485 }
2486
2487 pci_free_consistent(pci_dev, RX_TOTAL_SIZE, sis_priv->rx_ring,
2488 sis_priv->rx_ring_dma);
2489 pci_free_consistent(pci_dev, TX_TOTAL_SIZE, sis_priv->tx_ring,
2490 sis_priv->tx_ring_dma);
57d6d456 2491 pci_iounmap(pci_dev, sis_priv->ioaddr);
1da177e4
LT
2492 free_netdev(net_dev);
2493 pci_release_regions(pci_dev);
1da177e4
LT
2494}
2495
2496#ifdef CONFIG_PM
2497
2498static int sis900_suspend(struct pci_dev *pci_dev, pm_message_t state)
2499{
2500 struct net_device *net_dev = pci_get_drvdata(pci_dev);
57d6d456
FR
2501 struct sis900_private *sis_priv = netdev_priv(net_dev);
2502 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
2503
2504 if(!netif_running(net_dev))
2505 return 0;
2506
2507 netif_stop_queue(net_dev);
2508 netif_device_detach(net_dev);
2509
2510 /* Stop the chip's Tx and Rx Status Machine */
57d6d456 2511 sw32(cr, RxDIS | TxDIS | sr32(cr));
1da177e4
LT
2512
2513 pci_set_power_state(pci_dev, PCI_D3hot);
2514 pci_save_state(pci_dev);
2515
2516 return 0;
2517}
2518
2519static int sis900_resume(struct pci_dev *pci_dev)
2520{
2521 struct net_device *net_dev = pci_get_drvdata(pci_dev);
8f15ea42 2522 struct sis900_private *sis_priv = netdev_priv(net_dev);
57d6d456 2523 void __iomem *ioaddr = sis_priv->ioaddr;
1da177e4
LT
2524
2525 if(!netif_running(net_dev))
2526 return 0;
2527 pci_restore_state(pci_dev);
2528 pci_set_power_state(pci_dev, PCI_D0);
2529
2530 sis900_init_rxfilter(net_dev);
2531
2532 sis900_init_tx_ring(net_dev);
2533 sis900_init_rx_ring(net_dev);
2534
2535 set_rx_mode(net_dev);
2536
2537 netif_device_attach(net_dev);
2538 netif_start_queue(net_dev);
2539
2540 /* Workaround for EDB */
8495c0da 2541 sis900_set_mode(sis_priv, HW_SPEED_10_MBPS, FDX_CAPABLE_HALF_SELECTED);
1da177e4
LT
2542
2543 /* Enable all known interrupts by setting the interrupt mask. */
ee7dd773 2544 sw32(imr, RxSOVR | RxORN | RxERR | RxOK | TxURN | TxERR | TxDESC);
57d6d456
FR
2545 sw32(cr, RxENA | sr32(cr));
2546 sw32(ier, IE);
1da177e4
LT
2547
2548 sis900_check_mode(net_dev, sis_priv->mii);
2549
2550 return 0;
2551}
2552#endif /* CONFIG_PM */
2553
2554static struct pci_driver sis900_pci_driver = {
2555 .name = SIS900_MODULE_NAME,
2556 .id_table = sis900_pci_tbl,
2557 .probe = sis900_probe,
369e1231 2558 .remove = sis900_remove,
1da177e4
LT
2559#ifdef CONFIG_PM
2560 .suspend = sis900_suspend,
2561 .resume = sis900_resume,
2562#endif /* CONFIG_PM */
2563};
2564
2565static int __init sis900_init_module(void)
2566{
2567/* when a module, this is printed whether or not devices are found in probe */
2568#ifdef MODULE
2569 printk(version);
2570#endif
2571
29917620 2572 return pci_register_driver(&sis900_pci_driver);
1da177e4
LT
2573}
2574
2575static void __exit sis900_cleanup_module(void)
2576{
2577 pci_unregister_driver(&sis900_pci_driver);
2578}
2579
2580module_init(sis900_init_module);
2581module_exit(sis900_cleanup_module);
2582