blob: 95ec3af9ec74f952335d3bd0ed3ec3c06297daad [file] [log] [blame]
Francois Romieu890e8d02005-07-30 13:08:43 +02001/*
2 sis190.c: Silicon Integrated Systems SiS190 ethernet driver
3
4 Copyright (c) 2003 K.M. Liu <kmliu@sis.com>
5 Copyright (c) 2003, 2004 Jeff Garzik <jgarzik@pobox.com>
6 Copyright (c) 2003, 2004, 2005 Francois Romieu <romieu@fr.zoreil.com>
7
Francois Romieu40292fb2005-07-30 13:12:06 +02008 Based on r8169.c, tg3.c, 8139cp.c, skge.c, epic100.c and SiS 190/191
9 genuine driver.
Francois Romieu890e8d02005-07-30 13:08:43 +020010
11 This software may be used and distributed according to the terms of
12 the GNU General Public License (GPL), incorporated herein by reference.
13 Drivers based on or derived from this code fall under the GPL and must
14 retain the authorship, copyright and license notice. This file is not
15 a complete program and may only be used when the entire operating
16 system is licensed under the GPL.
17
18 See the file COPYING in this distribution for more information.
19
20 */
21
22#include <linux/module.h>
23#include <linux/moduleparam.h>
24#include <linux/netdevice.h>
Francois Romieu43afb942005-07-30 13:10:21 +020025#include <linux/rtnetlink.h>
Francois Romieu890e8d02005-07-30 13:08:43 +020026#include <linux/etherdevice.h>
27#include <linux/ethtool.h>
28#include <linux/pci.h>
29#include <linux/mii.h>
30#include <linux/delay.h>
31#include <linux/crc32.h>
32#include <linux/dma-mapping.h>
33#include <asm/irq.h>
34
35#define net_drv(p, arg...) if (netif_msg_drv(p)) \
36 printk(arg)
37#define net_probe(p, arg...) if (netif_msg_probe(p)) \
38 printk(arg)
39#define net_link(p, arg...) if (netif_msg_link(p)) \
40 printk(arg)
41#define net_intr(p, arg...) if (netif_msg_intr(p)) \
42 printk(arg)
43#define net_tx_err(p, arg...) if (netif_msg_tx_err(p)) \
44 printk(arg)
45
Francois Romieufcb98212005-07-30 13:15:22 +020046#define PHY_MAX_ADDR 32
47#define PHY_ID_ANY 0x1f
48#define MII_REG_ANY 0x1f
49
Francois Romieu890e8d02005-07-30 13:08:43 +020050#ifdef CONFIG_SIS190_NAPI
51#define NAPI_SUFFIX "-NAPI"
52#else
53#define NAPI_SUFFIX ""
54#endif
55
56#define DRV_VERSION "1.2" NAPI_SUFFIX
57#define DRV_NAME "sis190"
58#define SIS190_DRIVER_NAME DRV_NAME " Gigabit Ethernet driver " DRV_VERSION
59#define PFX DRV_NAME ": "
60
61#ifdef CONFIG_SIS190_NAPI
62#define sis190_rx_skb netif_receive_skb
63#define sis190_rx_quota(count, quota) min(count, quota)
64#else
65#define sis190_rx_skb netif_rx
66#define sis190_rx_quota(count, quota) count
67#endif
68
69#define MAC_ADDR_LEN 6
70
Francois Romieubcad5e52005-07-30 13:13:47 +020071#define NUM_TX_DESC 64 /* [8..1024] */
72#define NUM_RX_DESC 64 /* [8..8192] */
Francois Romieu890e8d02005-07-30 13:08:43 +020073#define TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
74#define RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
75#define RX_BUF_SIZE 1536
Francois Romieu8b5641d2005-07-30 13:13:03 +020076#define RX_BUF_MASK 0xfff8
Francois Romieu890e8d02005-07-30 13:08:43 +020077
78#define SIS190_REGS_SIZE 0x80
79#define SIS190_TX_TIMEOUT (6*HZ)
80#define SIS190_PHY_TIMEOUT (10*HZ)
81#define SIS190_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | \
82 NETIF_MSG_LINK | NETIF_MSG_IFUP | \
83 NETIF_MSG_IFDOWN)
84
85/* Enhanced PHY access register bit definitions */
86#define EhnMIIread 0x0000
87#define EhnMIIwrite 0x0020
88#define EhnMIIdataShift 16
89#define EhnMIIpmdShift 6 /* 7016 only */
90#define EhnMIIregShift 11
91#define EhnMIIreq 0x0010
92#define EhnMIInotDone 0x0010
93
94/* Write/read MMIO register */
95#define SIS_W8(reg, val) writeb ((val), ioaddr + (reg))
96#define SIS_W16(reg, val) writew ((val), ioaddr + (reg))
97#define SIS_W32(reg, val) writel ((val), ioaddr + (reg))
98#define SIS_R8(reg) readb (ioaddr + (reg))
99#define SIS_R16(reg) readw (ioaddr + (reg))
100#define SIS_R32(reg) readl (ioaddr + (reg))
101
102#define SIS_PCI_COMMIT() SIS_R32(IntrControl)
103
104enum sis190_registers {
105 TxControl = 0x00,
106 TxDescStartAddr = 0x04,
Francois Romieu188f23b2005-07-30 13:11:43 +0200107 rsv0 = 0x08, // reserved
108 TxSts = 0x0c, // unused (Control/Status)
Francois Romieu890e8d02005-07-30 13:08:43 +0200109 RxControl = 0x10,
110 RxDescStartAddr = 0x14,
Francois Romieu188f23b2005-07-30 13:11:43 +0200111 rsv1 = 0x18, // reserved
112 RxSts = 0x1c, // unused
Francois Romieu890e8d02005-07-30 13:08:43 +0200113 IntrStatus = 0x20,
114 IntrMask = 0x24,
115 IntrControl = 0x28,
Francois Romieu188f23b2005-07-30 13:11:43 +0200116 IntrTimer = 0x2c, // unused (Interupt Timer)
117 PMControl = 0x30, // unused (Power Mgmt Control/Status)
118 rsv2 = 0x34, // reserved
Francois Romieu890e8d02005-07-30 13:08:43 +0200119 ROMControl = 0x38,
120 ROMInterface = 0x3c,
121 StationControl = 0x40,
122 GMIIControl = 0x44,
Francois Romieu188f23b2005-07-30 13:11:43 +0200123 GIoCR = 0x48, // unused (GMAC IO Compensation)
124 GIoCtrl = 0x4c, // unused (GMAC IO Control)
Francois Romieu890e8d02005-07-30 13:08:43 +0200125 TxMacControl = 0x50,
Francois Romieu188f23b2005-07-30 13:11:43 +0200126 TxLimit = 0x54, // unused (Tx MAC Timer/TryLimit)
127 RGDelay = 0x58, // unused (RGMII Tx Internal Delay)
128 rsv3 = 0x5c, // reserved
Francois Romieu890e8d02005-07-30 13:08:43 +0200129 RxMacControl = 0x60,
130 RxMacAddr = 0x62,
131 RxHashTable = 0x68,
132 // Undocumented = 0x6c,
Francois Romieu188f23b2005-07-30 13:11:43 +0200133 RxWolCtrl = 0x70,
134 RxWolData = 0x74, // unused (Rx WOL Data Access)
135 RxMPSControl = 0x78, // unused (Rx MPS Control)
136 rsv4 = 0x7c, // reserved
Francois Romieu890e8d02005-07-30 13:08:43 +0200137};
138
139enum sis190_register_content {
140 /* IntrStatus */
141 SoftInt = 0x40000000, // unused
142 Timeup = 0x20000000, // unused
143 PauseFrame = 0x00080000, // unused
144 MagicPacket = 0x00040000, // unused
145 WakeupFrame = 0x00020000, // unused
146 LinkChange = 0x00010000,
147 RxQEmpty = 0x00000080,
148 RxQInt = 0x00000040,
149 TxQ1Empty = 0x00000020, // unused
150 TxQ1Int = 0x00000010,
151 TxQ0Empty = 0x00000008, // unused
152 TxQ0Int = 0x00000004,
153 RxHalt = 0x00000002,
154 TxHalt = 0x00000001,
155
Francois Romieu890e8d02005-07-30 13:08:43 +0200156 /* {Rx/Tx}CmdBits */
157 CmdReset = 0x10,
158 CmdRxEnb = 0x08, // unused
159 CmdTxEnb = 0x01,
160 RxBufEmpty = 0x01, // unused
161
162 /* Cfg9346Bits */
163 Cfg9346_Lock = 0x00, // unused
164 Cfg9346_Unlock = 0xc0, // unused
165
166 /* RxMacControl */
167 AcceptErr = 0x20, // unused
168 AcceptRunt = 0x10, // unused
169 AcceptBroadcast = 0x0800,
170 AcceptMulticast = 0x0400,
171 AcceptMyPhys = 0x0200,
172 AcceptAllPhys = 0x0100,
173
174 /* RxConfigBits */
175 RxCfgFIFOShift = 13,
176 RxCfgDMAShift = 8, // 0x1a in RxControl ?
177
178 /* TxConfigBits */
179 TxInterFrameGapShift = 24,
180 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
181
182 /* StationControl */
183 _1000bpsF = 0x1c00,
184 _1000bpsH = 0x0c00,
185 _100bpsF = 0x1800,
186 _100bpsH = 0x0800,
187 _10bpsF = 0x1400,
188 _10bpsH = 0x0400,
189
190 LinkStatus = 0x02, // unused
191 FullDup = 0x01, // unused
192
193 /* TBICSRBit */
194 TBILinkOK = 0x02000000, // unused
195};
196
197struct TxDesc {
Francois Romieu3cec93c2005-07-30 13:14:18 +0200198 __le32 PSize;
199 __le32 status;
200 __le32 addr;
201 __le32 size;
Francois Romieu890e8d02005-07-30 13:08:43 +0200202};
203
204struct RxDesc {
Francois Romieu3cec93c2005-07-30 13:14:18 +0200205 __le32 PSize;
206 __le32 status;
207 __le32 addr;
208 __le32 size;
Francois Romieu890e8d02005-07-30 13:08:43 +0200209};
210
211enum _DescStatusBit {
212 /* _Desc.status */
Francois Romieubcad5e52005-07-30 13:13:47 +0200213 OWNbit = 0x80000000, // RXOWN/TXOWN
214 INTbit = 0x40000000, // RXINT/TXINT
215 CRCbit = 0x00020000, // CRCOFF/CRCEN
216 PADbit = 0x00010000, // PREADD/PADEN
Francois Romieu890e8d02005-07-30 13:08:43 +0200217 /* _Desc.size */
Francois Romieubcad5e52005-07-30 13:13:47 +0200218 RingEnd = 0x80000000,
219 /* TxDesc.status */
220 LSEN = 0x08000000, // TSO ? -- FR
221 IPCS = 0x04000000,
222 TCPCS = 0x02000000,
223 UDPCS = 0x01000000,
224 BSTEN = 0x00800000,
225 EXTEN = 0x00400000,
226 DEFEN = 0x00200000,
227 BKFEN = 0x00100000,
228 CRSEN = 0x00080000,
229 COLEN = 0x00040000,
230 THOL3 = 0x30000000,
231 THOL2 = 0x20000000,
232 THOL1 = 0x10000000,
233 THOL0 = 0x00000000,
234 /* RxDesc.status */
235 IPON = 0x20000000,
236 TCPON = 0x10000000,
237 UDPON = 0x08000000,
238 Wakup = 0x00400000,
239 Magic = 0x00200000,
240 Pause = 0x00100000,
241 DEFbit = 0x00200000,
242 BCAST = 0x000c0000,
243 MCAST = 0x00080000,
244 UCAST = 0x00040000,
245 /* RxDesc.PSize */
246 TAGON = 0x80000000,
247 RxDescCountMask = 0x7f000000, // multi-desc pkt when > 1 ? -- FR
248 ABORT = 0x00800000,
249 SHORT = 0x00400000,
250 LIMIT = 0x00200000,
251 MIIER = 0x00100000,
252 OVRUN = 0x00080000,
253 NIBON = 0x00040000,
254 COLON = 0x00020000,
255 CRCOK = 0x00010000,
Francois Romieu890e8d02005-07-30 13:08:43 +0200256 RxSizeMask = 0x0000ffff
Francois Romieubcad5e52005-07-30 13:13:47 +0200257 /*
258 * The asic could apparently do vlan, TSO, jumbo (sis191 only) and
259 * provide two (unused with Linux) Tx queues. No publically
260 * available documentation alas.
261 */
Francois Romieu890e8d02005-07-30 13:08:43 +0200262};
263
Francois Romieu40292fb2005-07-30 13:12:06 +0200264enum sis190_eeprom_access_register_bits {
265 EECS = 0x00000001, // unused
266 EECLK = 0x00000002, // unused
267 EEDO = 0x00000008, // unused
268 EEDI = 0x00000004, // unused
269 EEREQ = 0x00000080,
270 EEROP = 0x00000200,
271 EEWOP = 0x00000100 // unused
272};
273
Francois Romieu830fb7d2005-07-30 13:12:37 +0200274/* EEPROM Addresses */
275enum sis190_eeprom_address {
276 EEPROMSignature = 0x00,
277 EEPROMCLK = 0x01, // unused
278 EEPROMInfo = 0x02,
279 EEPROMMACAddr = 0x03
280};
281
Francois Romieu900eb9d2005-09-03 00:55:27 +0200282enum sis190_feature {
283 F_HAS_RGMII = 1,
284 F_PHY_88E1111 = 2
285};
286
Francois Romieu890e8d02005-07-30 13:08:43 +0200287struct sis190_private {
288 void __iomem *mmio_addr;
289 struct pci_dev *pci_dev;
290 struct net_device_stats stats;
291 spinlock_t lock;
292 u32 rx_buf_sz;
293 u32 cur_rx;
294 u32 cur_tx;
295 u32 dirty_rx;
296 u32 dirty_tx;
297 dma_addr_t rx_dma;
298 dma_addr_t tx_dma;
299 struct RxDesc *RxDescRing;
300 struct TxDesc *TxDescRing;
301 struct sk_buff *Rx_skbuff[NUM_RX_DESC];
302 struct sk_buff *Tx_skbuff[NUM_TX_DESC];
303 struct work_struct phy_task;
304 struct timer_list timer;
305 u32 msg_enable;
Francois Romieu43afb942005-07-30 13:10:21 +0200306 struct mii_if_info mii_if;
Francois Romieufcb98212005-07-30 13:15:22 +0200307 struct list_head first_phy;
Francois Romieu900eb9d2005-09-03 00:55:27 +0200308 u32 features;
Francois Romieufcb98212005-07-30 13:15:22 +0200309};
310
311struct sis190_phy {
312 struct list_head list;
313 int phy_id;
314 u16 id[2];
315 u16 status;
316 u8 type;
317};
318
319enum sis190_phy_type {
320 UNKNOWN = 0x00,
321 HOME = 0x01,
322 LAN = 0x02,
323 MIX = 0x03
324};
325
326static struct mii_chip_info {
327 const char *name;
328 u16 id[2];
329 unsigned int type;
Francois Romieu900eb9d2005-09-03 00:55:27 +0200330 u32 feature;
Francois Romieufcb98212005-07-30 13:15:22 +0200331} mii_chip_table[] = {
Francois Romieu900eb9d2005-09-03 00:55:27 +0200332 { "Broadcom PHY BCM5461", { 0x0020, 0x60c0 }, LAN, 0 },
333 { "Agere PHY ET1101B", { 0x0282, 0xf010 }, LAN, 0 },
334 { "Marvell PHY 88E1111", { 0x0141, 0x0cc0 }, LAN, F_PHY_88E1111 },
335 { "Realtek PHY RTL8201", { 0x0000, 0x8200 }, LAN, 0 },
Francois Romieufcb98212005-07-30 13:15:22 +0200336 { NULL, }
Francois Romieu890e8d02005-07-30 13:08:43 +0200337};
338
339const static struct {
340 const char *name;
341 u8 version; /* depend on docs */
342 u32 RxConfigMask; /* clear the bits supported by this chip */
343} sis_chip_info[] = {
344 { DRV_NAME, 0x00, 0xff7e1880, },
345};
346
347static struct pci_device_id sis190_pci_tbl[] __devinitdata = {
348 { PCI_DEVICE(PCI_VENDOR_ID_SI, 0x0190), 0, 0, 0 },
349 { 0, },
350};
351
352MODULE_DEVICE_TABLE(pci, sis190_pci_tbl);
353
354static int rx_copybreak = 200;
355
356static struct {
357 u32 msg_enable;
358} debug = { -1 };
359
360MODULE_DESCRIPTION("SiS sis190 Gigabit Ethernet driver");
361module_param(rx_copybreak, int, 0);
362MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
363module_param_named(debug, debug.msg_enable, int, 0);
364MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
365MODULE_AUTHOR("K.M. Liu <kmliu@sis.com>, Ueimor <romieu@fr.zoreil.com>");
366MODULE_VERSION(DRV_VERSION);
367MODULE_LICENSE("GPL");
368
369static const u32 sis190_intr_mask =
Francois Romieu21461382005-09-03 00:54:25 +0200370 RxQEmpty | RxQInt | TxQ1Int | TxQ0Int | RxHalt | TxHalt | LinkChange;
Francois Romieu890e8d02005-07-30 13:08:43 +0200371
372/*
373 * Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
374 * The chips use a 64 element hash table based on the Ethernet CRC.
375 */
376static int multicast_filter_limit = 32;
377
378static void __mdio_cmd(void __iomem *ioaddr, u32 ctl)
379{
380 unsigned int i;
381
382 SIS_W32(GMIIControl, ctl);
383
384 msleep(1);
385
386 for (i = 0; i < 100; i++) {
387 if (!(SIS_R32(GMIIControl) & EhnMIInotDone))
388 break;
389 msleep(1);
390 }
391
392 if (i > 999)
393 printk(KERN_ERR PFX "PHY command failed !\n");
394}
395
Francois Romieu9ede1092005-07-30 13:14:38 +0200396static void mdio_write(void __iomem *ioaddr, int phy_id, int reg, int val)
Francois Romieu890e8d02005-07-30 13:08:43 +0200397{
Francois Romieu890e8d02005-07-30 13:08:43 +0200398 __mdio_cmd(ioaddr, EhnMIIreq | EhnMIIwrite |
Francois Romieu9ede1092005-07-30 13:14:38 +0200399 (((u32) reg) << EhnMIIregShift) | (phy_id << EhnMIIpmdShift) |
Francois Romieu890e8d02005-07-30 13:08:43 +0200400 (((u32) val) << EhnMIIdataShift));
401}
402
Francois Romieu9ede1092005-07-30 13:14:38 +0200403static int mdio_read(void __iomem *ioaddr, int phy_id, int reg)
Francois Romieu890e8d02005-07-30 13:08:43 +0200404{
Francois Romieu890e8d02005-07-30 13:08:43 +0200405 __mdio_cmd(ioaddr, EhnMIIreq | EhnMIIread |
Francois Romieu9ede1092005-07-30 13:14:38 +0200406 (((u32) reg) << EhnMIIregShift) | (phy_id << EhnMIIpmdShift));
Francois Romieu890e8d02005-07-30 13:08:43 +0200407
408 return (u16) (SIS_R32(GMIIControl) >> EhnMIIdataShift);
409}
410
Francois Romieu43afb942005-07-30 13:10:21 +0200411static void __mdio_write(struct net_device *dev, int phy_id, int reg, int val)
412{
413 struct sis190_private *tp = netdev_priv(dev);
414
Francois Romieu9ede1092005-07-30 13:14:38 +0200415 mdio_write(tp->mmio_addr, phy_id, reg, val);
Francois Romieu43afb942005-07-30 13:10:21 +0200416}
417
418static int __mdio_read(struct net_device *dev, int phy_id, int reg)
419{
420 struct sis190_private *tp = netdev_priv(dev);
421
Francois Romieu9ede1092005-07-30 13:14:38 +0200422 return mdio_read(tp->mmio_addr, phy_id, reg);
Francois Romieu43afb942005-07-30 13:10:21 +0200423}
424
Francois Romieufc10c392005-07-30 13:15:01 +0200425static u16 mdio_read_latched(void __iomem *ioaddr, int phy_id, int reg)
426{
427 mdio_read(ioaddr, phy_id, reg);
428 return mdio_read(ioaddr, phy_id, reg);
429}
430
Francois Romieu40292fb2005-07-30 13:12:06 +0200431static u16 __devinit sis190_read_eeprom(void __iomem *ioaddr, u32 reg)
Francois Romieu890e8d02005-07-30 13:08:43 +0200432{
Francois Romieu40292fb2005-07-30 13:12:06 +0200433 u16 data = 0xffff;
Francois Romieu890e8d02005-07-30 13:08:43 +0200434 unsigned int i;
Francois Romieu890e8d02005-07-30 13:08:43 +0200435
436 if (!(SIS_R32(ROMControl) & 0x0002))
437 return 0;
438
Francois Romieu40292fb2005-07-30 13:12:06 +0200439 SIS_W32(ROMInterface, EEREQ | EEROP | (reg << 10));
Francois Romieu890e8d02005-07-30 13:08:43 +0200440
441 for (i = 0; i < 200; i++) {
Francois Romieu40292fb2005-07-30 13:12:06 +0200442 if (!(SIS_R32(ROMInterface) & EEREQ)) {
443 data = (SIS_R32(ROMInterface) & 0xffff0000) >> 16;
Francois Romieu890e8d02005-07-30 13:08:43 +0200444 break;
Francois Romieu40292fb2005-07-30 13:12:06 +0200445 }
Francois Romieu890e8d02005-07-30 13:08:43 +0200446 msleep(1);
447 }
448
Francois Romieu890e8d02005-07-30 13:08:43 +0200449 return data;
450}
451
452static void sis190_irq_mask_and_ack(void __iomem *ioaddr)
453{
454 SIS_W32(IntrMask, 0x00);
455 SIS_W32(IntrStatus, 0xffffffff);
456 SIS_PCI_COMMIT();
457}
458
459static void sis190_asic_down(void __iomem *ioaddr)
460{
461 /* Stop the chip's Tx and Rx DMA processes. */
462
463 SIS_W32(TxControl, 0x1a00);
464 SIS_W32(RxControl, 0x1a00);
465
466 sis190_irq_mask_and_ack(ioaddr);
467}
468
469static void sis190_mark_as_last_descriptor(struct RxDesc *desc)
470{
471 desc->size |= cpu_to_le32(RingEnd);
472}
473
474static inline void sis190_give_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
475{
476 u32 eor = le32_to_cpu(desc->size) & RingEnd;
477
478 desc->PSize = 0x0;
Francois Romieu8b5641d2005-07-30 13:13:03 +0200479 desc->size = cpu_to_le32((rx_buf_sz & RX_BUF_MASK) | eor);
Francois Romieu890e8d02005-07-30 13:08:43 +0200480 wmb();
481 desc->status = cpu_to_le32(OWNbit | INTbit);
482}
483
484static inline void sis190_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
485 u32 rx_buf_sz)
486{
487 desc->addr = cpu_to_le32(mapping);
488 sis190_give_to_asic(desc, rx_buf_sz);
489}
490
491static inline void sis190_make_unusable_by_asic(struct RxDesc *desc)
492{
493 desc->PSize = 0x0;
494 desc->addr = 0xdeadbeef;
495 desc->size &= cpu_to_le32(RingEnd);
496 wmb();
497 desc->status = 0x0;
498}
499
500static int sis190_alloc_rx_skb(struct pci_dev *pdev, struct sk_buff **sk_buff,
501 struct RxDesc *desc, u32 rx_buf_sz)
502{
503 struct sk_buff *skb;
504 dma_addr_t mapping;
505 int ret = 0;
506
507 skb = dev_alloc_skb(rx_buf_sz);
508 if (!skb)
509 goto err_out;
510
511 *sk_buff = skb;
512
513 mapping = pci_map_single(pdev, skb->data, rx_buf_sz,
514 PCI_DMA_FROMDEVICE);
515
516 sis190_map_to_asic(desc, mapping, rx_buf_sz);
517out:
518 return ret;
519
520err_out:
521 ret = -ENOMEM;
522 sis190_make_unusable_by_asic(desc);
523 goto out;
524}
525
526static u32 sis190_rx_fill(struct sis190_private *tp, struct net_device *dev,
527 u32 start, u32 end)
528{
529 u32 cur;
530
531 for (cur = start; cur < end; cur++) {
532 int ret, i = cur % NUM_RX_DESC;
533
534 if (tp->Rx_skbuff[i])
535 continue;
536
537 ret = sis190_alloc_rx_skb(tp->pci_dev, tp->Rx_skbuff + i,
538 tp->RxDescRing + i, tp->rx_buf_sz);
539 if (ret < 0)
540 break;
541 }
542 return cur - start;
543}
544
545static inline int sis190_try_rx_copy(struct sk_buff **sk_buff, int pkt_size,
546 struct RxDesc *desc, int rx_buf_sz)
547{
548 int ret = -1;
549
550 if (pkt_size < rx_copybreak) {
551 struct sk_buff *skb;
552
553 skb = dev_alloc_skb(pkt_size + NET_IP_ALIGN);
554 if (skb) {
555 skb_reserve(skb, NET_IP_ALIGN);
556 eth_copy_and_sum(skb, sk_buff[0]->data, pkt_size, 0);
557 *sk_buff = skb;
558 sis190_give_to_asic(desc, rx_buf_sz);
559 ret = 0;
560 }
561 }
562 return ret;
563}
564
Francois Romieubcad5e52005-07-30 13:13:47 +0200565static inline int sis190_rx_pkt_err(u32 status, struct net_device_stats *stats)
566{
567#define ErrMask (OVRUN | SHORT | LIMIT | MIIER | NIBON | COLON | ABORT)
568
569 if ((status & CRCOK) && !(status & ErrMask))
570 return 0;
571
572 if (!(status & CRCOK))
573 stats->rx_crc_errors++;
574 else if (status & OVRUN)
575 stats->rx_over_errors++;
576 else if (status & (SHORT | LIMIT))
577 stats->rx_length_errors++;
578 else if (status & (MIIER | NIBON | COLON))
579 stats->rx_frame_errors++;
580
581 stats->rx_errors++;
582 return -1;
583}
584
Francois Romieu890e8d02005-07-30 13:08:43 +0200585static int sis190_rx_interrupt(struct net_device *dev,
586 struct sis190_private *tp, void __iomem *ioaddr)
587{
588 struct net_device_stats *stats = &tp->stats;
589 u32 rx_left, cur_rx = tp->cur_rx;
590 u32 delta, count;
591
592 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
593 rx_left = sis190_rx_quota(rx_left, (u32) dev->quota);
594
595 for (; rx_left > 0; rx_left--, cur_rx++) {
596 unsigned int entry = cur_rx % NUM_RX_DESC;
597 struct RxDesc *desc = tp->RxDescRing + entry;
598 u32 status;
599
600 if (desc->status & OWNbit)
601 break;
602
603 status = le32_to_cpu(desc->PSize);
604
605 // net_intr(tp, KERN_INFO "%s: Rx PSize = %08x.\n", dev->name,
606 // status);
607
Francois Romieubcad5e52005-07-30 13:13:47 +0200608 if (sis190_rx_pkt_err(status, stats) < 0)
Francois Romieu890e8d02005-07-30 13:08:43 +0200609 sis190_give_to_asic(desc, tp->rx_buf_sz);
Francois Romieubcad5e52005-07-30 13:13:47 +0200610 else {
Francois Romieu890e8d02005-07-30 13:08:43 +0200611 struct sk_buff *skb = tp->Rx_skbuff[entry];
612 int pkt_size = (status & RxSizeMask) - 4;
613 void (*pci_action)(struct pci_dev *, dma_addr_t,
614 size_t, int) = pci_dma_sync_single_for_device;
615
616 if (unlikely(pkt_size > tp->rx_buf_sz)) {
617 net_intr(tp, KERN_INFO
618 "%s: (frag) status = %08x.\n",
619 dev->name, status);
620 stats->rx_dropped++;
621 stats->rx_length_errors++;
622 sis190_give_to_asic(desc, tp->rx_buf_sz);
623 continue;
624 }
625
626 pci_dma_sync_single_for_cpu(tp->pci_dev,
627 le32_to_cpu(desc->addr), tp->rx_buf_sz,
628 PCI_DMA_FROMDEVICE);
629
630 if (sis190_try_rx_copy(&skb, pkt_size, desc,
631 tp->rx_buf_sz)) {
632 pci_action = pci_unmap_single;
633 tp->Rx_skbuff[entry] = NULL;
634 sis190_make_unusable_by_asic(desc);
635 }
636
637 pci_action(tp->pci_dev, le32_to_cpu(desc->addr),
638 tp->rx_buf_sz, PCI_DMA_FROMDEVICE);
639
640 skb->dev = dev;
641 skb_put(skb, pkt_size);
642 skb->protocol = eth_type_trans(skb, dev);
643
644 sis190_rx_skb(skb);
645
646 dev->last_rx = jiffies;
Francois Romieu890e8d02005-07-30 13:08:43 +0200647 stats->rx_packets++;
Francois Romieubcad5e52005-07-30 13:13:47 +0200648 stats->rx_bytes += pkt_size;
649 if ((status & BCAST) == MCAST)
650 stats->multicast++;
Francois Romieu890e8d02005-07-30 13:08:43 +0200651 }
652 }
653 count = cur_rx - tp->cur_rx;
654 tp->cur_rx = cur_rx;
655
656 delta = sis190_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx);
657 if (!delta && count && netif_msg_intr(tp))
658 printk(KERN_INFO "%s: no Rx buffer allocated.\n", dev->name);
659 tp->dirty_rx += delta;
660
661 if (((tp->dirty_rx + NUM_RX_DESC) == tp->cur_rx) && netif_msg_intr(tp))
662 printk(KERN_EMERG "%s: Rx buffers exhausted.\n", dev->name);
663
664 return count;
665}
666
667static void sis190_unmap_tx_skb(struct pci_dev *pdev, struct sk_buff *skb,
668 struct TxDesc *desc)
669{
670 unsigned int len;
671
672 len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len;
673
674 pci_unmap_single(pdev, le32_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
675
676 memset(desc, 0x00, sizeof(*desc));
677}
678
679static void sis190_tx_interrupt(struct net_device *dev,
680 struct sis190_private *tp, void __iomem *ioaddr)
681{
682 u32 pending, dirty_tx = tp->dirty_tx;
683 /*
684 * It would not be needed if queueing was allowed to be enabled
685 * again too early (hint: think preempt and unclocked smp systems).
686 */
687 unsigned int queue_stopped;
688
689 smp_rmb();
690 pending = tp->cur_tx - dirty_tx;
691 queue_stopped = (pending == NUM_TX_DESC);
692
693 for (; pending; pending--, dirty_tx++) {
694 unsigned int entry = dirty_tx % NUM_TX_DESC;
695 struct TxDesc *txd = tp->TxDescRing + entry;
696 struct sk_buff *skb;
697
698 if (le32_to_cpu(txd->status) & OWNbit)
699 break;
700
701 skb = tp->Tx_skbuff[entry];
702
703 tp->stats.tx_packets++;
704 tp->stats.tx_bytes += skb->len;
705
706 sis190_unmap_tx_skb(tp->pci_dev, skb, txd);
707 tp->Tx_skbuff[entry] = NULL;
708 dev_kfree_skb_irq(skb);
709 }
710
711 if (tp->dirty_tx != dirty_tx) {
712 tp->dirty_tx = dirty_tx;
713 smp_wmb();
714 if (queue_stopped)
715 netif_wake_queue(dev);
716 }
717}
718
719/*
720 * The interrupt handler does all of the Rx thread work and cleans up after
721 * the Tx thread.
722 */
723static irqreturn_t sis190_interrupt(int irq, void *__dev, struct pt_regs *regs)
724{
725 struct net_device *dev = __dev;
726 struct sis190_private *tp = netdev_priv(dev);
727 void __iomem *ioaddr = tp->mmio_addr;
728 unsigned int handled = 0;
729 u32 status;
730
731 status = SIS_R32(IntrStatus);
732
733 if ((status == 0xffffffff) || !status)
734 goto out;
735
736 handled = 1;
737
738 if (unlikely(!netif_running(dev))) {
739 sis190_asic_down(ioaddr);
740 goto out;
741 }
742
743 SIS_W32(IntrStatus, status);
744
745 // net_intr(tp, KERN_INFO "%s: status = %08x.\n", dev->name, status);
746
747 if (status & LinkChange) {
748 net_intr(tp, KERN_INFO "%s: link change.\n", dev->name);
749 schedule_work(&tp->phy_task);
750 }
751
752 if (status & RxQInt)
753 sis190_rx_interrupt(dev, tp, ioaddr);
754
755 if (status & TxQ0Int)
756 sis190_tx_interrupt(dev, tp, ioaddr);
757out:
758 return IRQ_RETVAL(handled);
759}
760
Francois Romieu4405d3b2005-07-30 13:09:20 +0200761#ifdef CONFIG_NET_POLL_CONTROLLER
762static void sis190_netpoll(struct net_device *dev)
763{
764 struct sis190_private *tp = netdev_priv(dev);
765 struct pci_dev *pdev = tp->pci_dev;
766
767 disable_irq(pdev->irq);
768 sis190_interrupt(pdev->irq, dev, NULL);
769 enable_irq(pdev->irq);
770}
771#endif
772
Francois Romieu890e8d02005-07-30 13:08:43 +0200773static void sis190_free_rx_skb(struct sis190_private *tp,
774 struct sk_buff **sk_buff, struct RxDesc *desc)
775{
776 struct pci_dev *pdev = tp->pci_dev;
777
778 pci_unmap_single(pdev, le32_to_cpu(desc->addr), tp->rx_buf_sz,
779 PCI_DMA_FROMDEVICE);
780 dev_kfree_skb(*sk_buff);
781 *sk_buff = NULL;
782 sis190_make_unusable_by_asic(desc);
783}
784
785static void sis190_rx_clear(struct sis190_private *tp)
786{
787 unsigned int i;
788
789 for (i = 0; i < NUM_RX_DESC; i++) {
790 if (!tp->Rx_skbuff[i])
791 continue;
792 sis190_free_rx_skb(tp, tp->Rx_skbuff + i, tp->RxDescRing + i);
793 }
794}
795
796static void sis190_init_ring_indexes(struct sis190_private *tp)
797{
798 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
799}
800
801static int sis190_init_ring(struct net_device *dev)
802{
803 struct sis190_private *tp = netdev_priv(dev);
804
805 sis190_init_ring_indexes(tp);
806
807 memset(tp->Tx_skbuff, 0x0, NUM_TX_DESC * sizeof(struct sk_buff *));
808 memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
809
810 if (sis190_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC)
811 goto err_rx_clear;
812
813 sis190_mark_as_last_descriptor(tp->RxDescRing + NUM_RX_DESC - 1);
814
815 return 0;
816
817err_rx_clear:
818 sis190_rx_clear(tp);
819 return -ENOMEM;
820}
821
822static void sis190_set_rx_mode(struct net_device *dev)
823{
824 struct sis190_private *tp = netdev_priv(dev);
825 void __iomem *ioaddr = tp->mmio_addr;
826 unsigned long flags;
827 u32 mc_filter[2]; /* Multicast hash filter */
828 u16 rx_mode;
829
830 if (dev->flags & IFF_PROMISC) {
831 /* Unconditionally log net taps. */
832 net_drv(tp, KERN_NOTICE "%s: Promiscuous mode enabled.\n",
833 dev->name);
834 rx_mode =
835 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
836 AcceptAllPhys;
837 mc_filter[1] = mc_filter[0] = 0xffffffff;
838 } else if ((dev->mc_count > multicast_filter_limit) ||
839 (dev->flags & IFF_ALLMULTI)) {
840 /* Too many to filter perfectly -- accept all multicasts. */
841 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
842 mc_filter[1] = mc_filter[0] = 0xffffffff;
843 } else {
844 struct dev_mc_list *mclist;
845 unsigned int i;
846
847 rx_mode = AcceptBroadcast | AcceptMyPhys;
848 mc_filter[1] = mc_filter[0] = 0;
849 for (i = 0, mclist = dev->mc_list; mclist && i < dev->mc_count;
850 i++, mclist = mclist->next) {
851 int bit_nr =
852 ether_crc(ETH_ALEN, mclist->dmi_addr) >> 26;
853 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
854 rx_mode |= AcceptMulticast;
855 }
856 }
857
858 spin_lock_irqsave(&tp->lock, flags);
859
860 SIS_W16(RxMacControl, rx_mode | 0x2);
861 SIS_W32(RxHashTable, mc_filter[0]);
862 SIS_W32(RxHashTable + 4, mc_filter[1]);
863
864 spin_unlock_irqrestore(&tp->lock, flags);
865}
866
867static void sis190_soft_reset(void __iomem *ioaddr)
868{
869 SIS_W32(IntrControl, 0x8000);
870 SIS_PCI_COMMIT();
871 msleep(1);
872 SIS_W32(IntrControl, 0x0);
873 sis190_asic_down(ioaddr);
874 msleep(1);
875}
876
877static void sis190_hw_start(struct net_device *dev)
878{
879 struct sis190_private *tp = netdev_priv(dev);
880 void __iomem *ioaddr = tp->mmio_addr;
881
882 sis190_soft_reset(ioaddr);
883
884 SIS_W32(TxDescStartAddr, tp->tx_dma);
885 SIS_W32(RxDescStartAddr, tp->rx_dma);
886
887 SIS_W32(IntrStatus, 0xffffffff);
888 SIS_W32(IntrMask, 0x0);
889 /*
890 * Default is 100Mbps.
891 * A bit strange: 100Mbps is 0x1801 elsewhere -- FR 2005/06/09
892 */
893 SIS_W16(StationControl, 0x1901);
894 SIS_W32(GMIIControl, 0x0);
895 SIS_W32(TxMacControl, 0x60);
896 SIS_W16(RxMacControl, 0x02);
897 SIS_W32(RxHashTable, 0x0);
898 SIS_W32(0x6c, 0x0);
Francois Romieu188f23b2005-07-30 13:11:43 +0200899 SIS_W32(RxWolCtrl, 0x0);
900 SIS_W32(RxWolData, 0x0);
Francois Romieu890e8d02005-07-30 13:08:43 +0200901
902 SIS_PCI_COMMIT();
903
904 sis190_set_rx_mode(dev);
905
906 /* Enable all known interrupts by setting the interrupt mask. */
907 SIS_W32(IntrMask, sis190_intr_mask);
908
909 SIS_W32(TxControl, 0x1a00 | CmdTxEnb);
910 SIS_W32(RxControl, 0x1a1d);
911
912 netif_start_queue(dev);
913}
914
915static void sis190_phy_task(void * data)
916{
917 struct net_device *dev = data;
918 struct sis190_private *tp = netdev_priv(dev);
919 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9ede1092005-07-30 13:14:38 +0200920 int phy_id = tp->mii_if.phy_id;
Francois Romieu890e8d02005-07-30 13:08:43 +0200921 u16 val;
922
Francois Romieu43afb942005-07-30 13:10:21 +0200923 rtnl_lock();
924
Francois Romieu9ede1092005-07-30 13:14:38 +0200925 val = mdio_read(ioaddr, phy_id, MII_BMCR);
Francois Romieu890e8d02005-07-30 13:08:43 +0200926 if (val & BMCR_RESET) {
927 // FIXME: needlessly high ? -- FR 02/07/2005
928 mod_timer(&tp->timer, jiffies + HZ/10);
Francois Romieufc10c392005-07-30 13:15:01 +0200929 } else if (!(mdio_read_latched(ioaddr, phy_id, MII_BMSR) &
930 BMSR_ANEGCOMPLETE)) {
Francois Romieu890e8d02005-07-30 13:08:43 +0200931 net_link(tp, KERN_WARNING "%s: PHY reset until link up.\n",
932 dev->name);
Francois Romieu21461382005-09-03 00:54:25 +0200933 netif_carrier_off(dev);
Francois Romieu9ede1092005-07-30 13:14:38 +0200934 mdio_write(ioaddr, phy_id, MII_BMCR, val | BMCR_RESET);
Francois Romieu890e8d02005-07-30 13:08:43 +0200935 mod_timer(&tp->timer, jiffies + SIS190_PHY_TIMEOUT);
936 } else {
937 /* Rejoice ! */
938 struct {
939 int val;
940 const char *msg;
941 u16 ctl;
942 } reg31[] = {
943 { LPA_1000XFULL | LPA_SLCT,
944 "1000 Mbps Full Duplex",
945 0x01 | _1000bpsF },
946 { LPA_1000XHALF | LPA_SLCT,
947 "1000 Mbps Half Duplex",
948 0x01 | _1000bpsH },
949 { LPA_100FULL,
950 "100 Mbps Full Duplex",
951 0x01 | _100bpsF },
952 { LPA_100HALF,
953 "100 Mbps Half Duplex",
954 0x01 | _100bpsH },
955 { LPA_10FULL,
956 "10 Mbps Full Duplex",
957 0x01 | _10bpsF },
958 { LPA_10HALF,
959 "10 Mbps Half Duplex",
960 0x01 | _10bpsH },
961 { 0, "unknown", 0x0000 }
962 }, *p;
Francois Romieu8348b4d2005-07-30 13:16:14 +0200963 u16 adv;
Francois Romieu890e8d02005-07-30 13:08:43 +0200964
Francois Romieu9ede1092005-07-30 13:14:38 +0200965 val = mdio_read(ioaddr, phy_id, 0x1f);
Francois Romieu890e8d02005-07-30 13:08:43 +0200966 net_link(tp, KERN_INFO "%s: mii ext = %04x.\n", dev->name, val);
967
Francois Romieu9ede1092005-07-30 13:14:38 +0200968 val = mdio_read(ioaddr, phy_id, MII_LPA);
Francois Romieu8348b4d2005-07-30 13:16:14 +0200969 adv = mdio_read(ioaddr, phy_id, MII_ADVERTISE);
970 net_link(tp, KERN_INFO "%s: mii lpa = %04x adv = %04x.\n",
971 dev->name, val, adv);
972
973 val &= adv;
Francois Romieu890e8d02005-07-30 13:08:43 +0200974
975 for (p = reg31; p->ctl; p++) {
976 if ((val & p->val) == p->val)
977 break;
978 }
979 if (p->ctl)
980 SIS_W16(StationControl, p->ctl);
981 net_link(tp, KERN_INFO "%s: link on %s mode.\n", dev->name,
982 p->msg);
983 netif_carrier_on(dev);
984 }
Francois Romieu43afb942005-07-30 13:10:21 +0200985
986 rtnl_unlock();
Francois Romieu890e8d02005-07-30 13:08:43 +0200987}
988
989static void sis190_phy_timer(unsigned long __opaque)
990{
991 struct net_device *dev = (struct net_device *)__opaque;
992 struct sis190_private *tp = netdev_priv(dev);
993
994 if (likely(netif_running(dev)))
995 schedule_work(&tp->phy_task);
996}
997
998static inline void sis190_delete_timer(struct net_device *dev)
999{
1000 struct sis190_private *tp = netdev_priv(dev);
1001
1002 del_timer_sync(&tp->timer);
1003}
1004
1005static inline void sis190_request_timer(struct net_device *dev)
1006{
1007 struct sis190_private *tp = netdev_priv(dev);
1008 struct timer_list *timer = &tp->timer;
1009
1010 init_timer(timer);
1011 timer->expires = jiffies + SIS190_PHY_TIMEOUT;
1012 timer->data = (unsigned long)dev;
1013 timer->function = sis190_phy_timer;
1014 add_timer(timer);
1015}
1016
1017static void sis190_set_rxbufsize(struct sis190_private *tp,
1018 struct net_device *dev)
1019{
1020 unsigned int mtu = dev->mtu;
1021
1022 tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE;
Francois Romieu8b5641d2005-07-30 13:13:03 +02001023 /* RxDesc->size has a licence to kill the lower bits */
1024 if (tp->rx_buf_sz & 0x07) {
1025 tp->rx_buf_sz += 8;
1026 tp->rx_buf_sz &= RX_BUF_MASK;
1027 }
Francois Romieu890e8d02005-07-30 13:08:43 +02001028}
1029
1030static int sis190_open(struct net_device *dev)
1031{
1032 struct sis190_private *tp = netdev_priv(dev);
1033 struct pci_dev *pdev = tp->pci_dev;
1034 int rc = -ENOMEM;
1035
1036 sis190_set_rxbufsize(tp, dev);
1037
1038 /*
1039 * Rx and Tx descriptors need 256 bytes alignment.
1040 * pci_alloc_consistent() guarantees a stronger alignment.
1041 */
1042 tp->TxDescRing = pci_alloc_consistent(pdev, TX_RING_BYTES, &tp->tx_dma);
1043 if (!tp->TxDescRing)
1044 goto out;
1045
1046 tp->RxDescRing = pci_alloc_consistent(pdev, RX_RING_BYTES, &tp->rx_dma);
1047 if (!tp->RxDescRing)
1048 goto err_free_tx_0;
1049
1050 rc = sis190_init_ring(dev);
1051 if (rc < 0)
1052 goto err_free_rx_1;
1053
1054 INIT_WORK(&tp->phy_task, sis190_phy_task, dev);
1055
1056 sis190_request_timer(dev);
1057
1058 rc = request_irq(dev->irq, sis190_interrupt, SA_SHIRQ, dev->name, dev);
1059 if (rc < 0)
1060 goto err_release_timer_2;
1061
1062 sis190_hw_start(dev);
1063out:
1064 return rc;
1065
1066err_release_timer_2:
1067 sis190_delete_timer(dev);
1068 sis190_rx_clear(tp);
1069err_free_rx_1:
1070 pci_free_consistent(tp->pci_dev, RX_RING_BYTES, tp->RxDescRing,
1071 tp->rx_dma);
1072err_free_tx_0:
1073 pci_free_consistent(tp->pci_dev, TX_RING_BYTES, tp->TxDescRing,
1074 tp->tx_dma);
1075 goto out;
1076}
1077
1078static void sis190_tx_clear(struct sis190_private *tp)
1079{
1080 unsigned int i;
1081
1082 for (i = 0; i < NUM_TX_DESC; i++) {
1083 struct sk_buff *skb = tp->Tx_skbuff[i];
1084
1085 if (!skb)
1086 continue;
1087
1088 sis190_unmap_tx_skb(tp->pci_dev, skb, tp->TxDescRing + i);
1089 tp->Tx_skbuff[i] = NULL;
1090 dev_kfree_skb(skb);
1091
1092 tp->stats.tx_dropped++;
1093 }
1094 tp->cur_tx = tp->dirty_tx = 0;
1095}
1096
1097static void sis190_down(struct net_device *dev)
1098{
1099 struct sis190_private *tp = netdev_priv(dev);
1100 void __iomem *ioaddr = tp->mmio_addr;
1101 unsigned int poll_locked = 0;
1102
1103 sis190_delete_timer(dev);
1104
1105 netif_stop_queue(dev);
1106
1107 flush_scheduled_work();
1108
1109 do {
1110 spin_lock_irq(&tp->lock);
1111
1112 sis190_asic_down(ioaddr);
1113
1114 spin_unlock_irq(&tp->lock);
1115
1116 synchronize_irq(dev->irq);
1117
1118 if (!poll_locked) {
1119 netif_poll_disable(dev);
1120 poll_locked++;
1121 }
1122
1123 synchronize_sched();
1124
1125 } while (SIS_R32(IntrMask));
1126
1127 sis190_tx_clear(tp);
1128 sis190_rx_clear(tp);
1129}
1130
1131static int sis190_close(struct net_device *dev)
1132{
1133 struct sis190_private *tp = netdev_priv(dev);
1134 struct pci_dev *pdev = tp->pci_dev;
1135
1136 sis190_down(dev);
1137
1138 free_irq(dev->irq, dev);
1139
1140 netif_poll_enable(dev);
1141
1142 pci_free_consistent(pdev, TX_RING_BYTES, tp->TxDescRing, tp->tx_dma);
1143 pci_free_consistent(pdev, RX_RING_BYTES, tp->RxDescRing, tp->rx_dma);
1144
1145 tp->TxDescRing = NULL;
1146 tp->RxDescRing = NULL;
1147
1148 return 0;
1149}
1150
1151static int sis190_start_xmit(struct sk_buff *skb, struct net_device *dev)
1152{
1153 struct sis190_private *tp = netdev_priv(dev);
1154 void __iomem *ioaddr = tp->mmio_addr;
1155 u32 len, entry, dirty_tx;
1156 struct TxDesc *desc;
1157 dma_addr_t mapping;
1158
1159 if (unlikely(skb->len < ETH_ZLEN)) {
1160 skb = skb_padto(skb, ETH_ZLEN);
1161 if (!skb) {
1162 tp->stats.tx_dropped++;
1163 goto out;
1164 }
1165 len = ETH_ZLEN;
1166 } else {
1167 len = skb->len;
1168 }
1169
1170 entry = tp->cur_tx % NUM_TX_DESC;
1171 desc = tp->TxDescRing + entry;
1172
1173 if (unlikely(le32_to_cpu(desc->status) & OWNbit)) {
1174 netif_stop_queue(dev);
1175 net_tx_err(tp, KERN_ERR PFX
1176 "%s: BUG! Tx Ring full when queue awake!\n",
1177 dev->name);
1178 return NETDEV_TX_BUSY;
1179 }
1180
1181 mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
1182
1183 tp->Tx_skbuff[entry] = skb;
1184
1185 desc->PSize = cpu_to_le32(len);
1186 desc->addr = cpu_to_le32(mapping);
1187
1188 desc->size = cpu_to_le32(len);
1189 if (entry == (NUM_TX_DESC - 1))
1190 desc->size |= cpu_to_le32(RingEnd);
1191
1192 wmb();
1193
1194 desc->status = cpu_to_le32(OWNbit | INTbit | DEFbit | CRCbit | PADbit);
1195
1196 tp->cur_tx++;
1197
1198 smp_wmb();
1199
1200 SIS_W32(TxControl, 0x1a00 | CmdReset | CmdTxEnb);
1201
1202 dev->trans_start = jiffies;
1203
1204 dirty_tx = tp->dirty_tx;
1205 if ((tp->cur_tx - NUM_TX_DESC) == dirty_tx) {
1206 netif_stop_queue(dev);
1207 smp_rmb();
1208 if (dirty_tx != tp->dirty_tx)
1209 netif_wake_queue(dev);
1210 }
1211out:
1212 return NETDEV_TX_OK;
1213}
1214
1215static struct net_device_stats *sis190_get_stats(struct net_device *dev)
1216{
1217 struct sis190_private *tp = netdev_priv(dev);
1218
1219 return &tp->stats;
1220}
1221
Francois Romieufcb98212005-07-30 13:15:22 +02001222static void sis190_free_phy(struct list_head *first_phy)
1223{
1224 struct sis190_phy *cur, *next;
1225
1226 list_for_each_entry_safe(cur, next, first_phy, list) {
1227 kfree(cur);
1228 }
1229}
1230
1231/**
1232 * sis190_default_phy - Select default PHY for sis190 mac.
1233 * @dev: the net device to probe for
1234 *
1235 * Select first detected PHY with link as default.
1236 * If no one is link on, select PHY whose types is HOME as default.
1237 * If HOME doesn't exist, select LAN.
1238 */
1239static u16 sis190_default_phy(struct net_device *dev)
1240{
1241 struct sis190_phy *phy, *phy_home, *phy_default, *phy_lan;
1242 struct sis190_private *tp = netdev_priv(dev);
1243 struct mii_if_info *mii_if = &tp->mii_if;
1244 void __iomem *ioaddr = tp->mmio_addr;
1245 u16 status;
1246
1247 phy_home = phy_default = phy_lan = NULL;
1248
1249 list_for_each_entry(phy, &tp->first_phy, list) {
1250 status = mdio_read_latched(ioaddr, phy->phy_id, MII_BMSR);
1251
1252 // Link ON & Not select default PHY & not ghost PHY.
1253 if ((status & BMSR_LSTATUS) &&
1254 !phy_default &&
1255 (phy->type != UNKNOWN)) {
1256 phy_default = phy;
1257 } else {
1258 status = mdio_read(ioaddr, phy->phy_id, MII_BMCR);
1259 mdio_write(ioaddr, phy->phy_id, MII_BMCR,
1260 status | BMCR_ANENABLE | BMCR_ISOLATE);
1261 if (phy->type == HOME)
1262 phy_home = phy;
1263 else if (phy->type == LAN)
1264 phy_lan = phy;
1265 }
1266 }
1267
1268 if (!phy_default) {
1269 if (phy_home)
1270 phy_default = phy_home;
1271 else if (phy_lan)
1272 phy_default = phy_lan;
1273 else
1274 phy_default = list_entry(&tp->first_phy,
1275 struct sis190_phy, list);
1276 }
1277
1278 if (mii_if->phy_id != phy_default->phy_id) {
1279 mii_if->phy_id = phy_default->phy_id;
1280 net_probe(tp, KERN_INFO
1281 "%s: Using transceiver at address %d as default.\n",
Francois Romieu3690b6c2005-08-26 00:30:37 +02001282 pci_name(tp->pci_dev), mii_if->phy_id);
Francois Romieufcb98212005-07-30 13:15:22 +02001283 }
1284
1285 status = mdio_read(ioaddr, mii_if->phy_id, MII_BMCR);
1286 status &= (~BMCR_ISOLATE);
1287
1288 mdio_write(ioaddr, mii_if->phy_id, MII_BMCR, status);
1289 status = mdio_read_latched(ioaddr, mii_if->phy_id, MII_BMSR);
1290
1291 return status;
1292}
1293
1294static void sis190_init_phy(struct net_device *dev, struct sis190_private *tp,
1295 struct sis190_phy *phy, unsigned int phy_id,
1296 u16 mii_status)
1297{
1298 void __iomem *ioaddr = tp->mmio_addr;
1299 struct mii_chip_info *p;
1300
1301 INIT_LIST_HEAD(&phy->list);
1302 phy->status = mii_status;
1303 phy->phy_id = phy_id;
1304
1305 phy->id[0] = mdio_read(ioaddr, phy_id, MII_PHYSID1);
1306 phy->id[1] = mdio_read(ioaddr, phy_id, MII_PHYSID2);
1307
1308 for (p = mii_chip_table; p->type; p++) {
1309 if ((p->id[0] == phy->id[0]) &&
1310 (p->id[1] == (phy->id[1] & 0xfff0))) {
1311 break;
1312 }
1313 }
1314
1315 if (p->id[1]) {
1316 phy->type = (p->type == MIX) ?
1317 ((mii_status & (BMSR_100FULL | BMSR_100HALF)) ?
1318 LAN : HOME) : p->type;
Francois Romieu900eb9d2005-09-03 00:55:27 +02001319 tp->features |= p->feature;
Francois Romieufcb98212005-07-30 13:15:22 +02001320 } else
1321 phy->type = UNKNOWN;
1322
1323 net_probe(tp, KERN_INFO "%s: %s transceiver at address %d.\n",
Francois Romieu3690b6c2005-08-26 00:30:37 +02001324 pci_name(tp->pci_dev),
1325 (phy->type == UNKNOWN) ? "Unknown PHY" : p->name, phy_id);
Francois Romieufcb98212005-07-30 13:15:22 +02001326}
1327
Francois Romieu900eb9d2005-09-03 00:55:27 +02001328static void sis190_mii_probe_88e1111_fixup(struct sis190_private *tp)
1329{
1330 if (tp->features & F_PHY_88E1111) {
1331 void __iomem *ioaddr = tp->mmio_addr;
1332 int phy_id = tp->mii_if.phy_id;
1333 u16 reg[2][2] = {
1334 { 0x808b, 0x0ce1 },
1335 { 0x808f, 0x0c60 }
1336 }, *p;
1337
1338 p = (tp->features & F_HAS_RGMII) ? reg[0] : reg[1];
1339
1340 mdio_write(ioaddr, phy_id, 0x1b, p[0]);
1341 udelay(200);
1342 mdio_write(ioaddr, phy_id, 0x14, p[1]);
1343 udelay(200);
1344 }
1345}
1346
Francois Romieufcb98212005-07-30 13:15:22 +02001347/**
1348 * sis190_mii_probe - Probe MII PHY for sis190
1349 * @dev: the net device to probe for
1350 *
1351 * Search for total of 32 possible mii phy addresses.
1352 * Identify and set current phy if found one,
1353 * return error if it failed to found.
1354 */
1355static int __devinit sis190_mii_probe(struct net_device *dev)
1356{
1357 struct sis190_private *tp = netdev_priv(dev);
1358 struct mii_if_info *mii_if = &tp->mii_if;
1359 void __iomem *ioaddr = tp->mmio_addr;
1360 int phy_id;
1361 int rc = 0;
1362
1363 INIT_LIST_HEAD(&tp->first_phy);
1364
1365 for (phy_id = 0; phy_id < PHY_MAX_ADDR; phy_id++) {
1366 struct sis190_phy *phy;
1367 u16 status;
1368
1369 status = mdio_read_latched(ioaddr, phy_id, MII_BMSR);
1370
1371 // Try next mii if the current one is not accessible.
1372 if (status == 0xffff || status == 0x0000)
1373 continue;
1374
1375 phy = kmalloc(sizeof(*phy), GFP_KERNEL);
1376 if (!phy) {
1377 sis190_free_phy(&tp->first_phy);
1378 rc = -ENOMEM;
1379 goto out;
1380 }
1381
1382 sis190_init_phy(dev, tp, phy, phy_id, status);
1383
1384 list_add(&tp->first_phy, &phy->list);
1385 }
1386
1387 if (list_empty(&tp->first_phy)) {
1388 net_probe(tp, KERN_INFO "%s: No MII transceivers found!\n",
Francois Romieu3690b6c2005-08-26 00:30:37 +02001389 pci_name(tp->pci_dev));
Francois Romieufcb98212005-07-30 13:15:22 +02001390 rc = -EIO;
1391 goto out;
1392 }
1393
1394 /* Select default PHY for mac */
1395 sis190_default_phy(dev);
1396
Francois Romieu900eb9d2005-09-03 00:55:27 +02001397 sis190_mii_probe_88e1111_fixup(tp);
1398
Francois Romieufcb98212005-07-30 13:15:22 +02001399 mii_if->dev = dev;
1400 mii_if->mdio_read = __mdio_read;
1401 mii_if->mdio_write = __mdio_write;
1402 mii_if->phy_id_mask = PHY_ID_ANY;
1403 mii_if->reg_num_mask = MII_REG_ANY;
1404out:
1405 return rc;
1406}
1407
1408static void __devexit sis190_mii_remove(struct net_device *dev)
1409{
1410 struct sis190_private *tp = netdev_priv(dev);
1411
1412 sis190_free_phy(&tp->first_phy);
1413}
1414
Francois Romieu890e8d02005-07-30 13:08:43 +02001415static void sis190_release_board(struct pci_dev *pdev)
1416{
1417 struct net_device *dev = pci_get_drvdata(pdev);
1418 struct sis190_private *tp = netdev_priv(dev);
1419
1420 iounmap(tp->mmio_addr);
1421 pci_release_regions(pdev);
1422 pci_disable_device(pdev);
1423 free_netdev(dev);
1424}
1425
1426static struct net_device * __devinit sis190_init_board(struct pci_dev *pdev)
1427{
1428 struct sis190_private *tp;
1429 struct net_device *dev;
1430 void __iomem *ioaddr;
1431 int rc;
1432
1433 dev = alloc_etherdev(sizeof(*tp));
1434 if (!dev) {
1435 net_drv(&debug, KERN_ERR PFX "unable to alloc new ethernet\n");
1436 rc = -ENOMEM;
1437 goto err_out_0;
1438 }
1439
1440 SET_MODULE_OWNER(dev);
1441 SET_NETDEV_DEV(dev, &pdev->dev);
1442
1443 tp = netdev_priv(dev);
1444 tp->msg_enable = netif_msg_init(debug.msg_enable, SIS190_MSG_DEFAULT);
1445
1446 rc = pci_enable_device(pdev);
1447 if (rc < 0) {
1448 net_probe(tp, KERN_ERR "%s: enable failure\n", pci_name(pdev));
1449 goto err_free_dev_1;
1450 }
1451
1452 rc = -ENODEV;
1453
1454 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
1455 net_probe(tp, KERN_ERR "%s: region #0 is no MMIO resource.\n",
1456 pci_name(pdev));
1457 goto err_pci_disable_2;
1458 }
1459 if (pci_resource_len(pdev, 0) < SIS190_REGS_SIZE) {
1460 net_probe(tp, KERN_ERR "%s: invalid PCI region size(s).\n",
1461 pci_name(pdev));
1462 goto err_pci_disable_2;
1463 }
1464
1465 rc = pci_request_regions(pdev, DRV_NAME);
1466 if (rc < 0) {
1467 net_probe(tp, KERN_ERR PFX "%s: could not request regions.\n",
1468 pci_name(pdev));
1469 goto err_pci_disable_2;
1470 }
1471
1472 rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
1473 if (rc < 0) {
1474 net_probe(tp, KERN_ERR "%s: DMA configuration failed.\n",
1475 pci_name(pdev));
1476 goto err_free_res_3;
1477 }
1478
1479 pci_set_master(pdev);
1480
1481 ioaddr = ioremap(pci_resource_start(pdev, 0), SIS190_REGS_SIZE);
1482 if (!ioaddr) {
1483 net_probe(tp, KERN_ERR "%s: cannot remap MMIO, aborting\n",
1484 pci_name(pdev));
1485 rc = -EIO;
1486 goto err_free_res_3;
1487 }
1488
1489 tp->pci_dev = pdev;
1490 tp->mmio_addr = ioaddr;
1491
1492 sis190_irq_mask_and_ack(ioaddr);
1493
1494 sis190_soft_reset(ioaddr);
1495out:
1496 return dev;
1497
1498err_free_res_3:
1499 pci_release_regions(pdev);
1500err_pci_disable_2:
1501 pci_disable_device(pdev);
1502err_free_dev_1:
1503 free_netdev(dev);
1504err_out_0:
1505 dev = ERR_PTR(rc);
1506 goto out;
1507}
1508
1509static void sis190_tx_timeout(struct net_device *dev)
1510{
1511 struct sis190_private *tp = netdev_priv(dev);
1512 void __iomem *ioaddr = tp->mmio_addr;
1513 u8 tmp8;
1514
1515 /* Disable Tx, if not already */
1516 tmp8 = SIS_R8(TxControl);
1517 if (tmp8 & CmdTxEnb)
1518 SIS_W8(TxControl, tmp8 & ~CmdTxEnb);
1519
Francois Romieu188f23b2005-07-30 13:11:43 +02001520
1521 net_tx_err(tp, KERN_INFO "%s: Transmit timeout, status %08x %08x.\n",
1522 dev->name, SIS_R32(TxControl), SIS_R32(TxSts));
1523
Francois Romieu890e8d02005-07-30 13:08:43 +02001524 /* Disable interrupts by clearing the interrupt mask. */
1525 SIS_W32(IntrMask, 0x0000);
1526
1527 /* Stop a shared interrupt from scavenging while we are. */
1528 spin_lock_irq(&tp->lock);
1529 sis190_tx_clear(tp);
1530 spin_unlock_irq(&tp->lock);
1531
1532 /* ...and finally, reset everything. */
1533 sis190_hw_start(dev);
1534
1535 netif_wake_queue(dev);
1536}
1537
Francois Romieu900eb9d2005-09-03 00:55:27 +02001538static void sis190_set_rgmii(struct sis190_private *tp, u8 reg)
1539{
1540 tp->features |= (reg & 0x80) ? F_HAS_RGMII : 0;
1541}
1542
Francois Romieu830fb7d2005-07-30 13:12:37 +02001543static int __devinit sis190_get_mac_addr_from_eeprom(struct pci_dev *pdev,
1544 struct net_device *dev)
1545{
1546 struct sis190_private *tp = netdev_priv(dev);
1547 void __iomem *ioaddr = tp->mmio_addr;
1548 u16 sig;
1549 int i;
1550
1551 net_probe(tp, KERN_INFO "%s: Read MAC address from EEPROM\n",
1552 pci_name(pdev));
1553
1554 /* Check to see if there is a sane EEPROM */
1555 sig = (u16) sis190_read_eeprom(ioaddr, EEPROMSignature);
1556
1557 if ((sig == 0xffff) || (sig == 0x0000)) {
1558 net_probe(tp, KERN_INFO "%s: Error EEPROM read %x.\n",
1559 pci_name(pdev), sig);
1560 return -EIO;
1561 }
1562
1563 /* Get MAC address from EEPROM */
1564 for (i = 0; i < MAC_ADDR_LEN / 2; i++) {
Francois Romieu3cec93c2005-07-30 13:14:18 +02001565 __le16 w = sis190_read_eeprom(ioaddr, EEPROMMACAddr + i);
Francois Romieu830fb7d2005-07-30 13:12:37 +02001566
1567 ((u16 *)dev->dev_addr)[0] = le16_to_cpu(w);
1568 }
1569
Francois Romieu900eb9d2005-09-03 00:55:27 +02001570 sis190_set_rgmii(tp, sis190_read_eeprom(ioaddr, EEPROMInfo));
1571
Francois Romieu830fb7d2005-07-30 13:12:37 +02001572 return 0;
1573}
1574
1575/**
1576 * sis190_get_mac_addr_from_apc - Get MAC address for SiS965 model
1577 * @pdev: PCI device
1578 * @dev: network device to get address for
1579 *
1580 * SiS965 model, use APC CMOS RAM to store MAC address.
1581 * APC CMOS RAM is accessed through ISA bridge.
1582 * MAC address is read into @net_dev->dev_addr.
1583 */
1584static int __devinit sis190_get_mac_addr_from_apc(struct pci_dev *pdev,
1585 struct net_device *dev)
1586{
1587 struct sis190_private *tp = netdev_priv(dev);
1588 struct pci_dev *isa_bridge;
1589 u8 reg, tmp8;
1590 int i;
1591
1592 net_probe(tp, KERN_INFO "%s: Read MAC address from APC.\n",
1593 pci_name(pdev));
1594
1595 isa_bridge = pci_get_device(PCI_VENDOR_ID_SI, 0x0965, NULL);
1596 if (!isa_bridge) {
1597 net_probe(tp, KERN_INFO "%s: Can not find ISA bridge.\n",
1598 pci_name(pdev));
1599 return -EIO;
1600 }
1601
1602 /* Enable port 78h & 79h to access APC Registers. */
1603 pci_read_config_byte(isa_bridge, 0x48, &tmp8);
1604 reg = (tmp8 & ~0x02);
1605 pci_write_config_byte(isa_bridge, 0x48, reg);
1606 udelay(50);
1607 pci_read_config_byte(isa_bridge, 0x48, &reg);
1608
1609 for (i = 0; i < MAC_ADDR_LEN; i++) {
1610 outb(0x9 + i, 0x78);
1611 dev->dev_addr[i] = inb(0x79);
1612 }
1613
1614 outb(0x12, 0x78);
1615 reg = inb(0x79);
1616
Francois Romieu900eb9d2005-09-03 00:55:27 +02001617 sis190_set_rgmii(tp, reg);
1618
Francois Romieu830fb7d2005-07-30 13:12:37 +02001619 /* Restore the value to ISA Bridge */
1620 pci_write_config_byte(isa_bridge, 0x48, tmp8);
1621 pci_dev_put(isa_bridge);
1622
1623 return 0;
1624}
1625
1626/**
1627 * sis190_init_rxfilter - Initialize the Rx filter
1628 * @dev: network device to initialize
1629 *
1630 * Set receive filter address to our MAC address
1631 * and enable packet filtering.
1632 */
1633static inline void sis190_init_rxfilter(struct net_device *dev)
1634{
1635 struct sis190_private *tp = netdev_priv(dev);
1636 void __iomem *ioaddr = tp->mmio_addr;
1637 u16 ctl;
1638 int i;
1639
1640 ctl = SIS_R16(RxMacControl);
1641 /*
1642 * Disable packet filtering before setting filter.
1643 * Note: SiS's driver writes 32 bits but RxMacControl is 16 bits
1644 * only and followed by RxMacAddr (6 bytes). Strange. -- FR
1645 */
1646 SIS_W16(RxMacControl, ctl & ~0x0f00);
1647
1648 for (i = 0; i < MAC_ADDR_LEN; i++)
1649 SIS_W8(RxMacAddr + i, dev->dev_addr[i]);
1650
1651 SIS_W16(RxMacControl, ctl);
1652 SIS_PCI_COMMIT();
1653}
1654
1655static int sis190_get_mac_addr(struct pci_dev *pdev, struct net_device *dev)
1656{
1657 u8 from;
1658
1659 pci_read_config_byte(pdev, 0x73, &from);
1660
1661 return (from & 0x00000001) ?
1662 sis190_get_mac_addr_from_apc(pdev, dev) :
1663 sis190_get_mac_addr_from_eeprom(pdev, dev);
1664}
1665
Francois Romieu890e8d02005-07-30 13:08:43 +02001666static void sis190_set_speed_auto(struct net_device *dev)
1667{
1668 struct sis190_private *tp = netdev_priv(dev);
1669 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9ede1092005-07-30 13:14:38 +02001670 int phy_id = tp->mii_if.phy_id;
Francois Romieu890e8d02005-07-30 13:08:43 +02001671 int val;
1672
1673 net_link(tp, KERN_INFO "%s: Enabling Auto-negotiation.\n", dev->name);
1674
Francois Romieu9ede1092005-07-30 13:14:38 +02001675 val = mdio_read(ioaddr, phy_id, MII_ADVERTISE);
Francois Romieu890e8d02005-07-30 13:08:43 +02001676
1677 // Enable 10/100 Full/Half Mode, leave MII_ADVERTISE bit4:0
1678 // unchanged.
Francois Romieu9ede1092005-07-30 13:14:38 +02001679 mdio_write(ioaddr, phy_id, MII_ADVERTISE, (val & ADVERTISE_SLCT) |
Francois Romieu890e8d02005-07-30 13:08:43 +02001680 ADVERTISE_100FULL | ADVERTISE_10FULL |
1681 ADVERTISE_100HALF | ADVERTISE_10HALF);
1682
1683 // Enable 1000 Full Mode.
Francois Romieu9ede1092005-07-30 13:14:38 +02001684 mdio_write(ioaddr, phy_id, MII_CTRL1000, ADVERTISE_1000FULL);
Francois Romieu890e8d02005-07-30 13:08:43 +02001685
1686 // Enable auto-negotiation and restart auto-negotiation.
Francois Romieu9ede1092005-07-30 13:14:38 +02001687 mdio_write(ioaddr, phy_id, MII_BMCR,
Francois Romieu890e8d02005-07-30 13:08:43 +02001688 BMCR_ANENABLE | BMCR_ANRESTART | BMCR_RESET);
1689}
1690
Francois Romieu43afb942005-07-30 13:10:21 +02001691static int sis190_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1692{
1693 struct sis190_private *tp = netdev_priv(dev);
1694
1695 return mii_ethtool_gset(&tp->mii_if, cmd);
1696}
1697
1698static int sis190_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1699{
1700 struct sis190_private *tp = netdev_priv(dev);
1701
1702 return mii_ethtool_sset(&tp->mii_if, cmd);
1703}
1704
Francois Romieu890e8d02005-07-30 13:08:43 +02001705static void sis190_get_drvinfo(struct net_device *dev,
1706 struct ethtool_drvinfo *info)
1707{
1708 struct sis190_private *tp = netdev_priv(dev);
1709
1710 strcpy(info->driver, DRV_NAME);
1711 strcpy(info->version, DRV_VERSION);
1712 strcpy(info->bus_info, pci_name(tp->pci_dev));
1713}
1714
1715static int sis190_get_regs_len(struct net_device *dev)
1716{
1717 return SIS190_REGS_SIZE;
1718}
1719
1720static void sis190_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1721 void *p)
1722{
1723 struct sis190_private *tp = netdev_priv(dev);
1724 unsigned long flags;
1725
1726 if (regs->len > SIS190_REGS_SIZE)
1727 regs->len = SIS190_REGS_SIZE;
1728
1729 spin_lock_irqsave(&tp->lock, flags);
1730 memcpy_fromio(p, tp->mmio_addr, regs->len);
1731 spin_unlock_irqrestore(&tp->lock, flags);
1732}
1733
Francois Romieu43afb942005-07-30 13:10:21 +02001734static int sis190_nway_reset(struct net_device *dev)
1735{
1736 struct sis190_private *tp = netdev_priv(dev);
1737
1738 return mii_nway_restart(&tp->mii_if);
1739}
1740
Francois Romieu890e8d02005-07-30 13:08:43 +02001741static u32 sis190_get_msglevel(struct net_device *dev)
1742{
1743 struct sis190_private *tp = netdev_priv(dev);
1744
1745 return tp->msg_enable;
1746}
1747
1748static void sis190_set_msglevel(struct net_device *dev, u32 value)
1749{
1750 struct sis190_private *tp = netdev_priv(dev);
1751
1752 tp->msg_enable = value;
1753}
1754
1755static struct ethtool_ops sis190_ethtool_ops = {
Francois Romieu43afb942005-07-30 13:10:21 +02001756 .get_settings = sis190_get_settings,
1757 .set_settings = sis190_set_settings,
Francois Romieu890e8d02005-07-30 13:08:43 +02001758 .get_drvinfo = sis190_get_drvinfo,
1759 .get_regs_len = sis190_get_regs_len,
1760 .get_regs = sis190_get_regs,
1761 .get_link = ethtool_op_get_link,
1762 .get_msglevel = sis190_get_msglevel,
1763 .set_msglevel = sis190_set_msglevel,
Francois Romieu43afb942005-07-30 13:10:21 +02001764 .nway_reset = sis190_nway_reset,
Francois Romieu890e8d02005-07-30 13:08:43 +02001765};
1766
Francois Romieu43afb942005-07-30 13:10:21 +02001767static int sis190_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1768{
1769 struct sis190_private *tp = netdev_priv(dev);
1770
1771 return !netif_running(dev) ? -EINVAL :
1772 generic_mii_ioctl(&tp->mii_if, if_mii(ifr), cmd, NULL);
1773}
1774
Francois Romieu890e8d02005-07-30 13:08:43 +02001775static int __devinit sis190_init_one(struct pci_dev *pdev,
1776 const struct pci_device_id *ent)
1777{
1778 static int printed_version = 0;
1779 struct sis190_private *tp;
1780 struct net_device *dev;
1781 void __iomem *ioaddr;
Francois Romieu830fb7d2005-07-30 13:12:37 +02001782 int rc;
Francois Romieu890e8d02005-07-30 13:08:43 +02001783
1784 if (!printed_version) {
1785 net_drv(&debug, KERN_INFO SIS190_DRIVER_NAME " loaded.\n");
1786 printed_version = 1;
1787 }
1788
1789 dev = sis190_init_board(pdev);
1790 if (IS_ERR(dev)) {
1791 rc = PTR_ERR(dev);
1792 goto out;
1793 }
1794
1795 tp = netdev_priv(dev);
1796 ioaddr = tp->mmio_addr;
1797
Francois Romieu830fb7d2005-07-30 13:12:37 +02001798 rc = sis190_get_mac_addr(pdev, dev);
1799 if (rc < 0)
1800 goto err_release_board;
Francois Romieu890e8d02005-07-30 13:08:43 +02001801
Francois Romieu830fb7d2005-07-30 13:12:37 +02001802 sis190_init_rxfilter(dev);
Francois Romieu890e8d02005-07-30 13:08:43 +02001803
1804 INIT_WORK(&tp->phy_task, sis190_phy_task, dev);
1805
1806 dev->open = sis190_open;
1807 dev->stop = sis190_close;
Francois Romieu43afb942005-07-30 13:10:21 +02001808 dev->do_ioctl = sis190_ioctl;
Francois Romieu890e8d02005-07-30 13:08:43 +02001809 dev->get_stats = sis190_get_stats;
1810 dev->tx_timeout = sis190_tx_timeout;
1811 dev->watchdog_timeo = SIS190_TX_TIMEOUT;
1812 dev->hard_start_xmit = sis190_start_xmit;
Francois Romieu4405d3b2005-07-30 13:09:20 +02001813#ifdef CONFIG_NET_POLL_CONTROLLER
1814 dev->poll_controller = sis190_netpoll;
1815#endif
Francois Romieu890e8d02005-07-30 13:08:43 +02001816 dev->set_multicast_list = sis190_set_rx_mode;
1817 SET_ETHTOOL_OPS(dev, &sis190_ethtool_ops);
1818 dev->irq = pdev->irq;
1819 dev->base_addr = (unsigned long) 0xdead;
1820
1821 spin_lock_init(&tp->lock);
Francois Romieu890e8d02005-07-30 13:08:43 +02001822
Francois Romieufcb98212005-07-30 13:15:22 +02001823 rc = sis190_mii_probe(dev);
1824 if (rc < 0)
Francois Romieu3690b6c2005-08-26 00:30:37 +02001825 goto err_release_board;
1826
1827 rc = register_netdev(dev);
1828 if (rc < 0)
1829 goto err_remove_mii;
1830
1831 pci_set_drvdata(pdev, dev);
Francois Romieufcb98212005-07-30 13:15:22 +02001832
Francois Romieu890e8d02005-07-30 13:08:43 +02001833 net_probe(tp, KERN_INFO "%s: %s at %p (IRQ: %d), "
1834 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x\n",
1835 pci_name(pdev), sis_chip_info[ent->driver_data].name,
1836 ioaddr, dev->irq,
1837 dev->dev_addr[0], dev->dev_addr[1],
1838 dev->dev_addr[2], dev->dev_addr[3],
1839 dev->dev_addr[4], dev->dev_addr[5]);
1840
Francois Romieu900eb9d2005-09-03 00:55:27 +02001841 net_probe(tp, KERN_INFO "%s: %s mode.\n", dev->name,
1842 (tp->features & F_HAS_RGMII) ? "RGMII" : "GMII");
1843
Francois Romieu890e8d02005-07-30 13:08:43 +02001844 netif_carrier_off(dev);
1845
1846 sis190_set_speed_auto(dev);
1847out:
1848 return rc;
Francois Romieu830fb7d2005-07-30 13:12:37 +02001849
Francois Romieu3690b6c2005-08-26 00:30:37 +02001850err_remove_mii:
1851 sis190_mii_remove(dev);
Francois Romieu830fb7d2005-07-30 13:12:37 +02001852err_release_board:
1853 sis190_release_board(pdev);
1854 goto out;
Francois Romieu890e8d02005-07-30 13:08:43 +02001855}
1856
1857static void __devexit sis190_remove_one(struct pci_dev *pdev)
1858{
1859 struct net_device *dev = pci_get_drvdata(pdev);
1860
Francois Romieufcb98212005-07-30 13:15:22 +02001861 sis190_mii_remove(dev);
Francois Romieu890e8d02005-07-30 13:08:43 +02001862 unregister_netdev(dev);
1863 sis190_release_board(pdev);
1864 pci_set_drvdata(pdev, NULL);
1865}
1866
1867static struct pci_driver sis190_pci_driver = {
1868 .name = DRV_NAME,
1869 .id_table = sis190_pci_tbl,
1870 .probe = sis190_init_one,
1871 .remove = __devexit_p(sis190_remove_one),
1872};
1873
1874static int __init sis190_init_module(void)
1875{
1876 return pci_module_init(&sis190_pci_driver);
1877}
1878
1879static void __exit sis190_cleanup_module(void)
1880{
1881 pci_unregister_driver(&sis190_pci_driver);
1882}
1883
1884module_init(sis190_init_module);
1885module_exit(sis190_cleanup_module);