blob: ead1d31308f8f1c651ae4b52949f99f845fa38b6 [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
Riccardo Ghetta08326db2010-02-17 09:28:58 +000050#define DRV_VERSION "1.4"
Francois Romieu890e8d02005-07-30 13:08:43 +020051#define DRV_NAME "sis190"
52#define SIS190_DRIVER_NAME DRV_NAME " Gigabit Ethernet driver " DRV_VERSION
53#define PFX DRV_NAME ": "
54
Francois Romieu890e8d02005-07-30 13:08:43 +020055#define sis190_rx_skb netif_rx
56#define sis190_rx_quota(count, quota) count
Francois Romieu890e8d02005-07-30 13:08:43 +020057
58#define MAC_ADDR_LEN 6
59
Francois Romieubcad5e52005-07-30 13:13:47 +020060#define NUM_TX_DESC 64 /* [8..1024] */
61#define NUM_RX_DESC 64 /* [8..8192] */
Francois Romieu890e8d02005-07-30 13:08:43 +020062#define TX_RING_BYTES (NUM_TX_DESC * sizeof(struct TxDesc))
63#define RX_RING_BYTES (NUM_RX_DESC * sizeof(struct RxDesc))
64#define RX_BUF_SIZE 1536
Francois Romieu8b5641d2005-07-30 13:13:03 +020065#define RX_BUF_MASK 0xfff8
Francois Romieu890e8d02005-07-30 13:08:43 +020066
67#define SIS190_REGS_SIZE 0x80
68#define SIS190_TX_TIMEOUT (6*HZ)
69#define SIS190_PHY_TIMEOUT (10*HZ)
70#define SIS190_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | \
71 NETIF_MSG_LINK | NETIF_MSG_IFUP | \
72 NETIF_MSG_IFDOWN)
73
74/* Enhanced PHY access register bit definitions */
75#define EhnMIIread 0x0000
76#define EhnMIIwrite 0x0020
77#define EhnMIIdataShift 16
78#define EhnMIIpmdShift 6 /* 7016 only */
79#define EhnMIIregShift 11
80#define EhnMIIreq 0x0010
81#define EhnMIInotDone 0x0010
82
83/* Write/read MMIO register */
84#define SIS_W8(reg, val) writeb ((val), ioaddr + (reg))
85#define SIS_W16(reg, val) writew ((val), ioaddr + (reg))
86#define SIS_W32(reg, val) writel ((val), ioaddr + (reg))
87#define SIS_R8(reg) readb (ioaddr + (reg))
88#define SIS_R16(reg) readw (ioaddr + (reg))
89#define SIS_R32(reg) readl (ioaddr + (reg))
90
91#define SIS_PCI_COMMIT() SIS_R32(IntrControl)
92
93enum sis190_registers {
94 TxControl = 0x00,
95 TxDescStartAddr = 0x04,
Francois Romieu188f23b2005-07-30 13:11:43 +020096 rsv0 = 0x08, // reserved
97 TxSts = 0x0c, // unused (Control/Status)
Francois Romieu890e8d02005-07-30 13:08:43 +020098 RxControl = 0x10,
99 RxDescStartAddr = 0x14,
Francois Romieu188f23b2005-07-30 13:11:43 +0200100 rsv1 = 0x18, // reserved
101 RxSts = 0x1c, // unused
Francois Romieu890e8d02005-07-30 13:08:43 +0200102 IntrStatus = 0x20,
103 IntrMask = 0x24,
104 IntrControl = 0x28,
Francois Romieu188f23b2005-07-30 13:11:43 +0200105 IntrTimer = 0x2c, // unused (Interupt Timer)
106 PMControl = 0x30, // unused (Power Mgmt Control/Status)
107 rsv2 = 0x34, // reserved
Francois Romieu890e8d02005-07-30 13:08:43 +0200108 ROMControl = 0x38,
109 ROMInterface = 0x3c,
110 StationControl = 0x40,
111 GMIIControl = 0x44,
Francois Romieu188f23b2005-07-30 13:11:43 +0200112 GIoCR = 0x48, // unused (GMAC IO Compensation)
113 GIoCtrl = 0x4c, // unused (GMAC IO Control)
Francois Romieu890e8d02005-07-30 13:08:43 +0200114 TxMacControl = 0x50,
Francois Romieu188f23b2005-07-30 13:11:43 +0200115 TxLimit = 0x54, // unused (Tx MAC Timer/TryLimit)
116 RGDelay = 0x58, // unused (RGMII Tx Internal Delay)
117 rsv3 = 0x5c, // reserved
Francois Romieu890e8d02005-07-30 13:08:43 +0200118 RxMacControl = 0x60,
119 RxMacAddr = 0x62,
120 RxHashTable = 0x68,
121 // Undocumented = 0x6c,
Francois Romieu188f23b2005-07-30 13:11:43 +0200122 RxWolCtrl = 0x70,
123 RxWolData = 0x74, // unused (Rx WOL Data Access)
124 RxMPSControl = 0x78, // unused (Rx MPS Control)
125 rsv4 = 0x7c, // reserved
Francois Romieu890e8d02005-07-30 13:08:43 +0200126};
127
128enum sis190_register_content {
129 /* IntrStatus */
130 SoftInt = 0x40000000, // unused
131 Timeup = 0x20000000, // unused
132 PauseFrame = 0x00080000, // unused
133 MagicPacket = 0x00040000, // unused
134 WakeupFrame = 0x00020000, // unused
135 LinkChange = 0x00010000,
136 RxQEmpty = 0x00000080,
137 RxQInt = 0x00000040,
138 TxQ1Empty = 0x00000020, // unused
139 TxQ1Int = 0x00000010,
140 TxQ0Empty = 0x00000008, // unused
141 TxQ0Int = 0x00000004,
142 RxHalt = 0x00000002,
143 TxHalt = 0x00000001,
144
Francois Romieu890e8d02005-07-30 13:08:43 +0200145 /* {Rx/Tx}CmdBits */
146 CmdReset = 0x10,
147 CmdRxEnb = 0x08, // unused
148 CmdTxEnb = 0x01,
149 RxBufEmpty = 0x01, // unused
150
151 /* Cfg9346Bits */
152 Cfg9346_Lock = 0x00, // unused
153 Cfg9346_Unlock = 0xc0, // unused
154
155 /* RxMacControl */
156 AcceptErr = 0x20, // unused
157 AcceptRunt = 0x10, // unused
158 AcceptBroadcast = 0x0800,
159 AcceptMulticast = 0x0400,
160 AcceptMyPhys = 0x0200,
161 AcceptAllPhys = 0x0100,
162
163 /* RxConfigBits */
164 RxCfgFIFOShift = 13,
165 RxCfgDMAShift = 8, // 0x1a in RxControl ?
166
167 /* TxConfigBits */
168 TxInterFrameGapShift = 24,
169 TxDMAShift = 8, /* DMA burst value (0-7) is shift this many bits */
170
Francois Romieu890e8d02005-07-30 13:08:43 +0200171 LinkStatus = 0x02, // unused
172 FullDup = 0x01, // unused
173
174 /* TBICSRBit */
175 TBILinkOK = 0x02000000, // unused
176};
177
178struct TxDesc {
Francois Romieu3cec93c2005-07-30 13:14:18 +0200179 __le32 PSize;
180 __le32 status;
181 __le32 addr;
182 __le32 size;
Francois Romieu890e8d02005-07-30 13:08:43 +0200183};
184
185struct RxDesc {
Francois Romieu3cec93c2005-07-30 13:14:18 +0200186 __le32 PSize;
187 __le32 status;
188 __le32 addr;
189 __le32 size;
Francois Romieu890e8d02005-07-30 13:08:43 +0200190};
191
192enum _DescStatusBit {
193 /* _Desc.status */
Francois Romieubcad5e52005-07-30 13:13:47 +0200194 OWNbit = 0x80000000, // RXOWN/TXOWN
195 INTbit = 0x40000000, // RXINT/TXINT
196 CRCbit = 0x00020000, // CRCOFF/CRCEN
197 PADbit = 0x00010000, // PREADD/PADEN
Francois Romieu890e8d02005-07-30 13:08:43 +0200198 /* _Desc.size */
Francois Romieubcad5e52005-07-30 13:13:47 +0200199 RingEnd = 0x80000000,
200 /* TxDesc.status */
201 LSEN = 0x08000000, // TSO ? -- FR
202 IPCS = 0x04000000,
203 TCPCS = 0x02000000,
204 UDPCS = 0x01000000,
205 BSTEN = 0x00800000,
206 EXTEN = 0x00400000,
207 DEFEN = 0x00200000,
208 BKFEN = 0x00100000,
209 CRSEN = 0x00080000,
210 COLEN = 0x00040000,
211 THOL3 = 0x30000000,
212 THOL2 = 0x20000000,
213 THOL1 = 0x10000000,
214 THOL0 = 0x00000000,
Francois Romieu697c2692007-11-21 22:30:37 +0100215
216 WND = 0x00080000,
217 TABRT = 0x00040000,
218 FIFO = 0x00020000,
219 LINK = 0x00010000,
220 ColCountMask = 0x0000ffff,
Francois Romieubcad5e52005-07-30 13:13:47 +0200221 /* RxDesc.status */
222 IPON = 0x20000000,
223 TCPON = 0x10000000,
224 UDPON = 0x08000000,
225 Wakup = 0x00400000,
226 Magic = 0x00200000,
227 Pause = 0x00100000,
228 DEFbit = 0x00200000,
229 BCAST = 0x000c0000,
230 MCAST = 0x00080000,
231 UCAST = 0x00040000,
232 /* RxDesc.PSize */
233 TAGON = 0x80000000,
234 RxDescCountMask = 0x7f000000, // multi-desc pkt when > 1 ? -- FR
235 ABORT = 0x00800000,
236 SHORT = 0x00400000,
237 LIMIT = 0x00200000,
238 MIIER = 0x00100000,
239 OVRUN = 0x00080000,
240 NIBON = 0x00040000,
241 COLON = 0x00020000,
242 CRCOK = 0x00010000,
Francois Romieu890e8d02005-07-30 13:08:43 +0200243 RxSizeMask = 0x0000ffff
Francois Romieubcad5e52005-07-30 13:13:47 +0200244 /*
245 * The asic could apparently do vlan, TSO, jumbo (sis191 only) and
246 * provide two (unused with Linux) Tx queues. No publically
247 * available documentation alas.
248 */
Francois Romieu890e8d02005-07-30 13:08:43 +0200249};
250
Francois Romieu40292fb2005-07-30 13:12:06 +0200251enum sis190_eeprom_access_register_bits {
252 EECS = 0x00000001, // unused
253 EECLK = 0x00000002, // unused
254 EEDO = 0x00000008, // unused
255 EEDI = 0x00000004, // unused
256 EEREQ = 0x00000080,
257 EEROP = 0x00000200,
258 EEWOP = 0x00000100 // unused
259};
260
Francois Romieu830fb7d2005-07-30 13:12:37 +0200261/* EEPROM Addresses */
262enum sis190_eeprom_address {
263 EEPROMSignature = 0x00,
264 EEPROMCLK = 0x01, // unused
265 EEPROMInfo = 0x02,
266 EEPROMMACAddr = 0x03
267};
268
Francois Romieu900eb9d2005-09-03 00:55:27 +0200269enum sis190_feature {
270 F_HAS_RGMII = 1,
Francois Romieuc3d6f1f2005-09-03 00:56:57 +0200271 F_PHY_88E1111 = 2,
272 F_PHY_BCM5461 = 4
Francois Romieu900eb9d2005-09-03 00:55:27 +0200273};
274
Francois Romieu890e8d02005-07-30 13:08:43 +0200275struct sis190_private {
276 void __iomem *mmio_addr;
277 struct pci_dev *pci_dev;
David Howellsc4028952006-11-22 14:57:56 +0000278 struct net_device *dev;
Francois Romieu890e8d02005-07-30 13:08:43 +0200279 spinlock_t lock;
280 u32 rx_buf_sz;
281 u32 cur_rx;
282 u32 cur_tx;
283 u32 dirty_rx;
284 u32 dirty_tx;
285 dma_addr_t rx_dma;
286 dma_addr_t tx_dma;
287 struct RxDesc *RxDescRing;
288 struct TxDesc *TxDescRing;
289 struct sk_buff *Rx_skbuff[NUM_RX_DESC];
290 struct sk_buff *Tx_skbuff[NUM_TX_DESC];
291 struct work_struct phy_task;
292 struct timer_list timer;
293 u32 msg_enable;
Francois Romieu43afb942005-07-30 13:10:21 +0200294 struct mii_if_info mii_if;
Francois Romieufcb98212005-07-30 13:15:22 +0200295 struct list_head first_phy;
Francois Romieu900eb9d2005-09-03 00:55:27 +0200296 u32 features;
Riccardo Ghetta08326db2010-02-17 09:28:58 +0000297 u32 negotiated_lpa;
Francois Romieufcb98212005-07-30 13:15:22 +0200298};
299
300struct sis190_phy {
301 struct list_head list;
302 int phy_id;
303 u16 id[2];
304 u16 status;
305 u8 type;
306};
307
308enum sis190_phy_type {
309 UNKNOWN = 0x00,
310 HOME = 0x01,
311 LAN = 0x02,
312 MIX = 0x03
313};
314
315static struct mii_chip_info {
316 const char *name;
317 u16 id[2];
318 unsigned int type;
Francois Romieu900eb9d2005-09-03 00:55:27 +0200319 u32 feature;
Francois Romieufcb98212005-07-30 13:15:22 +0200320} mii_chip_table[] = {
Riccardo Ghetta856f8f42009-06-04 09:05:07 +0000321 { "Atheros PHY", { 0x004d, 0xd010 }, LAN, 0 },
Francois Romieu708f6e22008-10-20 23:37:55 +0200322 { "Atheros PHY AR8012", { 0x004d, 0xd020 }, LAN, 0 },
Francois Romieuc3d6f1f2005-09-03 00:56:57 +0200323 { "Broadcom PHY BCM5461", { 0x0020, 0x60c0 }, LAN, F_PHY_BCM5461 },
Francois Romieubd7a4442007-03-29 00:18:50 +0200324 { "Broadcom PHY AC131", { 0x0143, 0xbc70 }, LAN, 0 },
Francois Romieu900eb9d2005-09-03 00:55:27 +0200325 { "Agere PHY ET1101B", { 0x0282, 0xf010 }, LAN, 0 },
326 { "Marvell PHY 88E1111", { 0x0141, 0x0cc0 }, LAN, F_PHY_88E1111 },
327 { "Realtek PHY RTL8201", { 0x0000, 0x8200 }, LAN, 0 },
Francois Romieufcb98212005-07-30 13:15:22 +0200328 { NULL, }
Francois Romieu890e8d02005-07-30 13:08:43 +0200329};
330
Jesper Juhl3c6bee12006-01-09 20:54:01 -0800331static const struct {
Francois Romieu890e8d02005-07-30 13:08:43 +0200332 const char *name;
Francois Romieu890e8d02005-07-30 13:08:43 +0200333} sis_chip_info[] = {
Francois Romieue7976372005-09-03 00:57:51 +0200334 { "SiS 190 PCI Fast Ethernet adapter" },
335 { "SiS 191 PCI Gigabit Ethernet adapter" },
Francois Romieu890e8d02005-07-30 13:08:43 +0200336};
337
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000338static DEFINE_PCI_DEVICE_TABLE(sis190_pci_tbl) = {
Francois Romieu890e8d02005-07-30 13:08:43 +0200339 { PCI_DEVICE(PCI_VENDOR_ID_SI, 0x0190), 0, 0, 0 },
Francois Romieue7976372005-09-03 00:57:51 +0200340 { PCI_DEVICE(PCI_VENDOR_ID_SI, 0x0191), 0, 0, 1 },
Francois Romieu890e8d02005-07-30 13:08:43 +0200341 { 0, },
342};
343
344MODULE_DEVICE_TABLE(pci, sis190_pci_tbl);
345
346static int rx_copybreak = 200;
347
348static struct {
349 u32 msg_enable;
350} debug = { -1 };
351
Riccardo Ghettac3223d22009-06-04 09:04:55 +0000352MODULE_DESCRIPTION("SiS sis190/191 Gigabit Ethernet driver");
Francois Romieu890e8d02005-07-30 13:08:43 +0200353module_param(rx_copybreak, int, 0);
354MODULE_PARM_DESC(rx_copybreak, "Copy breakpoint for copy-only-tiny-frames");
355module_param_named(debug, debug.msg_enable, int, 0);
356MODULE_PARM_DESC(debug, "Debug verbosity level (0=none, ..., 16=all)");
357MODULE_AUTHOR("K.M. Liu <kmliu@sis.com>, Ueimor <romieu@fr.zoreil.com>");
358MODULE_VERSION(DRV_VERSION);
359MODULE_LICENSE("GPL");
360
361static const u32 sis190_intr_mask =
Francois Romieu21461382005-09-03 00:54:25 +0200362 RxQEmpty | RxQInt | TxQ1Int | TxQ0Int | RxHalt | TxHalt | LinkChange;
Francois Romieu890e8d02005-07-30 13:08:43 +0200363
364/*
365 * Maximum number of multicast addresses to filter (vs. Rx-all-multicast).
366 * The chips use a 64 element hash table based on the Ethernet CRC.
367 */
Arjan van de Venf71e1302006-03-03 21:33:57 -0500368static const int multicast_filter_limit = 32;
Francois Romieu890e8d02005-07-30 13:08:43 +0200369
370static void __mdio_cmd(void __iomem *ioaddr, u32 ctl)
371{
372 unsigned int i;
373
374 SIS_W32(GMIIControl, ctl);
375
376 msleep(1);
377
378 for (i = 0; i < 100; i++) {
379 if (!(SIS_R32(GMIIControl) & EhnMIInotDone))
380 break;
381 msleep(1);
382 }
383
Francois Romieu7bf3f232007-11-17 16:56:43 +0100384 if (i > 99)
Francois Romieu890e8d02005-07-30 13:08:43 +0200385 printk(KERN_ERR PFX "PHY command failed !\n");
386}
387
Francois Romieu9ede1092005-07-30 13:14:38 +0200388static void mdio_write(void __iomem *ioaddr, int phy_id, int reg, int val)
Francois Romieu890e8d02005-07-30 13:08:43 +0200389{
Francois Romieu890e8d02005-07-30 13:08:43 +0200390 __mdio_cmd(ioaddr, EhnMIIreq | EhnMIIwrite |
Francois Romieu9ede1092005-07-30 13:14:38 +0200391 (((u32) reg) << EhnMIIregShift) | (phy_id << EhnMIIpmdShift) |
Francois Romieu890e8d02005-07-30 13:08:43 +0200392 (((u32) val) << EhnMIIdataShift));
393}
394
Francois Romieu9ede1092005-07-30 13:14:38 +0200395static int mdio_read(void __iomem *ioaddr, int phy_id, int reg)
Francois Romieu890e8d02005-07-30 13:08:43 +0200396{
Francois Romieu890e8d02005-07-30 13:08:43 +0200397 __mdio_cmd(ioaddr, EhnMIIreq | EhnMIIread |
Francois Romieu9ede1092005-07-30 13:14:38 +0200398 (((u32) reg) << EhnMIIregShift) | (phy_id << EhnMIIpmdShift));
Francois Romieu890e8d02005-07-30 13:08:43 +0200399
400 return (u16) (SIS_R32(GMIIControl) >> EhnMIIdataShift);
401}
402
Francois Romieu43afb942005-07-30 13:10:21 +0200403static void __mdio_write(struct net_device *dev, int phy_id, int reg, int val)
404{
405 struct sis190_private *tp = netdev_priv(dev);
406
Francois Romieu9ede1092005-07-30 13:14:38 +0200407 mdio_write(tp->mmio_addr, phy_id, reg, val);
Francois Romieu43afb942005-07-30 13:10:21 +0200408}
409
410static int __mdio_read(struct net_device *dev, int phy_id, int reg)
411{
412 struct sis190_private *tp = netdev_priv(dev);
413
Francois Romieu9ede1092005-07-30 13:14:38 +0200414 return mdio_read(tp->mmio_addr, phy_id, reg);
Francois Romieu43afb942005-07-30 13:10:21 +0200415}
416
Francois Romieufc10c392005-07-30 13:15:01 +0200417static u16 mdio_read_latched(void __iomem *ioaddr, int phy_id, int reg)
418{
419 mdio_read(ioaddr, phy_id, reg);
420 return mdio_read(ioaddr, phy_id, reg);
421}
422
Francois Romieu40292fb2005-07-30 13:12:06 +0200423static u16 __devinit sis190_read_eeprom(void __iomem *ioaddr, u32 reg)
Francois Romieu890e8d02005-07-30 13:08:43 +0200424{
Francois Romieu40292fb2005-07-30 13:12:06 +0200425 u16 data = 0xffff;
Francois Romieu890e8d02005-07-30 13:08:43 +0200426 unsigned int i;
Francois Romieu890e8d02005-07-30 13:08:43 +0200427
428 if (!(SIS_R32(ROMControl) & 0x0002))
429 return 0;
430
Francois Romieu40292fb2005-07-30 13:12:06 +0200431 SIS_W32(ROMInterface, EEREQ | EEROP | (reg << 10));
Francois Romieu890e8d02005-07-30 13:08:43 +0200432
433 for (i = 0; i < 200; i++) {
Francois Romieu40292fb2005-07-30 13:12:06 +0200434 if (!(SIS_R32(ROMInterface) & EEREQ)) {
435 data = (SIS_R32(ROMInterface) & 0xffff0000) >> 16;
Francois Romieu890e8d02005-07-30 13:08:43 +0200436 break;
Francois Romieu40292fb2005-07-30 13:12:06 +0200437 }
Francois Romieu890e8d02005-07-30 13:08:43 +0200438 msleep(1);
439 }
440
Francois Romieu890e8d02005-07-30 13:08:43 +0200441 return data;
442}
443
444static void sis190_irq_mask_and_ack(void __iomem *ioaddr)
445{
446 SIS_W32(IntrMask, 0x00);
447 SIS_W32(IntrStatus, 0xffffffff);
448 SIS_PCI_COMMIT();
449}
450
451static void sis190_asic_down(void __iomem *ioaddr)
452{
453 /* Stop the chip's Tx and Rx DMA processes. */
454
455 SIS_W32(TxControl, 0x1a00);
456 SIS_W32(RxControl, 0x1a00);
457
458 sis190_irq_mask_and_ack(ioaddr);
459}
460
461static void sis190_mark_as_last_descriptor(struct RxDesc *desc)
462{
463 desc->size |= cpu_to_le32(RingEnd);
464}
465
466static inline void sis190_give_to_asic(struct RxDesc *desc, u32 rx_buf_sz)
467{
468 u32 eor = le32_to_cpu(desc->size) & RingEnd;
469
470 desc->PSize = 0x0;
Francois Romieu8b5641d2005-07-30 13:13:03 +0200471 desc->size = cpu_to_le32((rx_buf_sz & RX_BUF_MASK) | eor);
Francois Romieu890e8d02005-07-30 13:08:43 +0200472 wmb();
473 desc->status = cpu_to_le32(OWNbit | INTbit);
474}
475
476static inline void sis190_map_to_asic(struct RxDesc *desc, dma_addr_t mapping,
477 u32 rx_buf_sz)
478{
479 desc->addr = cpu_to_le32(mapping);
480 sis190_give_to_asic(desc, rx_buf_sz);
481}
482
483static inline void sis190_make_unusable_by_asic(struct RxDesc *desc)
484{
485 desc->PSize = 0x0;
Al Viro961994a2007-12-15 01:44:33 +0000486 desc->addr = cpu_to_le32(0xdeadbeef);
Francois Romieu890e8d02005-07-30 13:08:43 +0200487 desc->size &= cpu_to_le32(RingEnd);
488 wmb();
489 desc->status = 0x0;
490}
491
Stephen Hemminger35aeb782008-04-27 14:54:32 +0200492static struct sk_buff *sis190_alloc_rx_skb(struct sis190_private *tp,
493 struct RxDesc *desc)
Francois Romieu890e8d02005-07-30 13:08:43 +0200494{
Stephen Hemminger35aeb782008-04-27 14:54:32 +0200495 u32 rx_buf_sz = tp->rx_buf_sz;
Francois Romieu890e8d02005-07-30 13:08:43 +0200496 struct sk_buff *skb;
Francois Romieu890e8d02005-07-30 13:08:43 +0200497
Stephen Hemminger35aeb782008-04-27 14:54:32 +0200498 skb = netdev_alloc_skb(tp->dev, rx_buf_sz);
Stephen Hemminger4709aa52008-04-27 14:36:59 +0200499 if (likely(skb)) {
500 dma_addr_t mapping;
Francois Romieu890e8d02005-07-30 13:08:43 +0200501
Stephen Hemminger35aeb782008-04-27 14:54:32 +0200502 mapping = pci_map_single(tp->pci_dev, skb->data, tp->rx_buf_sz,
Stephen Hemminger4709aa52008-04-27 14:36:59 +0200503 PCI_DMA_FROMDEVICE);
504 sis190_map_to_asic(desc, mapping, rx_buf_sz);
505 } else
506 sis190_make_unusable_by_asic(desc);
Francois Romieu890e8d02005-07-30 13:08:43 +0200507
Stephen Hemminger4709aa52008-04-27 14:36:59 +0200508 return skb;
Francois Romieu890e8d02005-07-30 13:08:43 +0200509}
510
511static u32 sis190_rx_fill(struct sis190_private *tp, struct net_device *dev,
512 u32 start, u32 end)
513{
514 u32 cur;
515
516 for (cur = start; cur < end; cur++) {
Stephen Hemminger4709aa52008-04-27 14:36:59 +0200517 unsigned int i = cur % NUM_RX_DESC;
Francois Romieu890e8d02005-07-30 13:08:43 +0200518
519 if (tp->Rx_skbuff[i])
520 continue;
521
Stephen Hemminger35aeb782008-04-27 14:54:32 +0200522 tp->Rx_skbuff[i] = sis190_alloc_rx_skb(tp, tp->RxDescRing + i);
523
Stephen Hemminger4709aa52008-04-27 14:36:59 +0200524 if (!tp->Rx_skbuff[i])
Francois Romieu890e8d02005-07-30 13:08:43 +0200525 break;
526 }
527 return cur - start;
528}
529
Francois Romieu47e47812008-04-27 17:59:52 +0200530static bool sis190_try_rx_copy(struct sis190_private *tp,
531 struct sk_buff **sk_buff, int pkt_size,
532 dma_addr_t addr)
Francois Romieu890e8d02005-07-30 13:08:43 +0200533{
Francois Romieu47e47812008-04-27 17:59:52 +0200534 struct sk_buff *skb;
535 bool done = false;
Francois Romieu890e8d02005-07-30 13:08:43 +0200536
Francois Romieu47e47812008-04-27 17:59:52 +0200537 if (pkt_size >= rx_copybreak)
538 goto out;
Francois Romieu890e8d02005-07-30 13:08:43 +0200539
Eric Dumazet89d71a62009-10-13 05:34:20 +0000540 skb = netdev_alloc_skb_ip_align(tp->dev, pkt_size);
Francois Romieu47e47812008-04-27 17:59:52 +0200541 if (!skb)
542 goto out;
543
Riccardo Ghetta744c6b22009-06-07 19:47:58 +0000544 pci_dma_sync_single_for_cpu(tp->pci_dev, addr, tp->rx_buf_sz,
545 PCI_DMA_FROMDEVICE);
Francois Romieu47e47812008-04-27 17:59:52 +0200546 skb_copy_to_linear_data(skb, sk_buff[0]->data, pkt_size);
547 *sk_buff = skb;
548 done = true;
549out:
550 return done;
Francois Romieu890e8d02005-07-30 13:08:43 +0200551}
552
Francois Romieubcad5e52005-07-30 13:13:47 +0200553static inline int sis190_rx_pkt_err(u32 status, struct net_device_stats *stats)
554{
555#define ErrMask (OVRUN | SHORT | LIMIT | MIIER | NIBON | COLON | ABORT)
556
557 if ((status & CRCOK) && !(status & ErrMask))
558 return 0;
559
560 if (!(status & CRCOK))
561 stats->rx_crc_errors++;
562 else if (status & OVRUN)
563 stats->rx_over_errors++;
564 else if (status & (SHORT | LIMIT))
565 stats->rx_length_errors++;
566 else if (status & (MIIER | NIBON | COLON))
567 stats->rx_frame_errors++;
568
569 stats->rx_errors++;
570 return -1;
571}
572
Francois Romieu890e8d02005-07-30 13:08:43 +0200573static int sis190_rx_interrupt(struct net_device *dev,
574 struct sis190_private *tp, void __iomem *ioaddr)
575{
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700576 struct net_device_stats *stats = &dev->stats;
Francois Romieu890e8d02005-07-30 13:08:43 +0200577 u32 rx_left, cur_rx = tp->cur_rx;
578 u32 delta, count;
579
580 rx_left = NUM_RX_DESC + tp->dirty_rx - cur_rx;
581 rx_left = sis190_rx_quota(rx_left, (u32) dev->quota);
582
583 for (; rx_left > 0; rx_left--, cur_rx++) {
584 unsigned int entry = cur_rx % NUM_RX_DESC;
585 struct RxDesc *desc = tp->RxDescRing + entry;
586 u32 status;
587
Al Viro961994a2007-12-15 01:44:33 +0000588 if (le32_to_cpu(desc->status) & OWNbit)
Francois Romieu890e8d02005-07-30 13:08:43 +0200589 break;
590
591 status = le32_to_cpu(desc->PSize);
592
593 // net_intr(tp, KERN_INFO "%s: Rx PSize = %08x.\n", dev->name,
594 // status);
595
Francois Romieubcad5e52005-07-30 13:13:47 +0200596 if (sis190_rx_pkt_err(status, stats) < 0)
Francois Romieu890e8d02005-07-30 13:08:43 +0200597 sis190_give_to_asic(desc, tp->rx_buf_sz);
Francois Romieubcad5e52005-07-30 13:13:47 +0200598 else {
Francois Romieu890e8d02005-07-30 13:08:43 +0200599 struct sk_buff *skb = tp->Rx_skbuff[entry];
Francois Romieu47e47812008-04-27 17:59:52 +0200600 dma_addr_t addr = le32_to_cpu(desc->addr);
Francois Romieu890e8d02005-07-30 13:08:43 +0200601 int pkt_size = (status & RxSizeMask) - 4;
Francois Romieu47e47812008-04-27 17:59:52 +0200602 struct pci_dev *pdev = tp->pci_dev;
Francois Romieu890e8d02005-07-30 13:08:43 +0200603
604 if (unlikely(pkt_size > tp->rx_buf_sz)) {
605 net_intr(tp, KERN_INFO
606 "%s: (frag) status = %08x.\n",
607 dev->name, status);
608 stats->rx_dropped++;
609 stats->rx_length_errors++;
610 sis190_give_to_asic(desc, tp->rx_buf_sz);
611 continue;
612 }
613
Francois Romieu890e8d02005-07-30 13:08:43 +0200614
Francois Romieu47e47812008-04-27 17:59:52 +0200615 if (sis190_try_rx_copy(tp, &skb, pkt_size, addr)) {
616 pci_dma_sync_single_for_device(pdev, addr,
617 tp->rx_buf_sz, PCI_DMA_FROMDEVICE);
618 sis190_give_to_asic(desc, tp->rx_buf_sz);
619 } else {
620 pci_unmap_single(pdev, addr, tp->rx_buf_sz,
621 PCI_DMA_FROMDEVICE);
Francois Romieu890e8d02005-07-30 13:08:43 +0200622 tp->Rx_skbuff[entry] = NULL;
623 sis190_make_unusable_by_asic(desc);
624 }
625
Francois Romieu890e8d02005-07-30 13:08:43 +0200626 skb_put(skb, pkt_size);
627 skb->protocol = eth_type_trans(skb, dev);
628
629 sis190_rx_skb(skb);
630
Francois Romieu890e8d02005-07-30 13:08:43 +0200631 stats->rx_packets++;
Francois Romieubcad5e52005-07-30 13:13:47 +0200632 stats->rx_bytes += pkt_size;
633 if ((status & BCAST) == MCAST)
634 stats->multicast++;
Francois Romieu890e8d02005-07-30 13:08:43 +0200635 }
636 }
637 count = cur_rx - tp->cur_rx;
638 tp->cur_rx = cur_rx;
639
640 delta = sis190_rx_fill(tp, dev, tp->dirty_rx, tp->cur_rx);
641 if (!delta && count && netif_msg_intr(tp))
642 printk(KERN_INFO "%s: no Rx buffer allocated.\n", dev->name);
643 tp->dirty_rx += delta;
644
645 if (((tp->dirty_rx + NUM_RX_DESC) == tp->cur_rx) && netif_msg_intr(tp))
646 printk(KERN_EMERG "%s: Rx buffers exhausted.\n", dev->name);
647
648 return count;
649}
650
651static void sis190_unmap_tx_skb(struct pci_dev *pdev, struct sk_buff *skb,
652 struct TxDesc *desc)
653{
654 unsigned int len;
655
656 len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len;
657
658 pci_unmap_single(pdev, le32_to_cpu(desc->addr), len, PCI_DMA_TODEVICE);
659
660 memset(desc, 0x00, sizeof(*desc));
661}
662
Francois Romieu697c2692007-11-21 22:30:37 +0100663static inline int sis190_tx_pkt_err(u32 status, struct net_device_stats *stats)
664{
665#define TxErrMask (WND | TABRT | FIFO | LINK)
666
667 if (!unlikely(status & TxErrMask))
668 return 0;
669
670 if (status & WND)
671 stats->tx_window_errors++;
672 if (status & TABRT)
673 stats->tx_aborted_errors++;
674 if (status & FIFO)
675 stats->tx_fifo_errors++;
676 if (status & LINK)
677 stats->tx_carrier_errors++;
678
679 stats->tx_errors++;
680
681 return -1;
682}
683
Francois Romieu890e8d02005-07-30 13:08:43 +0200684static void sis190_tx_interrupt(struct net_device *dev,
685 struct sis190_private *tp, void __iomem *ioaddr)
686{
Francois Romieu697c2692007-11-21 22:30:37 +0100687 struct net_device_stats *stats = &dev->stats;
Francois Romieu890e8d02005-07-30 13:08:43 +0200688 u32 pending, dirty_tx = tp->dirty_tx;
689 /*
690 * It would not be needed if queueing was allowed to be enabled
691 * again too early (hint: think preempt and unclocked smp systems).
692 */
693 unsigned int queue_stopped;
694
695 smp_rmb();
696 pending = tp->cur_tx - dirty_tx;
697 queue_stopped = (pending == NUM_TX_DESC);
698
699 for (; pending; pending--, dirty_tx++) {
700 unsigned int entry = dirty_tx % NUM_TX_DESC;
701 struct TxDesc *txd = tp->TxDescRing + entry;
Francois Romieu697c2692007-11-21 22:30:37 +0100702 u32 status = le32_to_cpu(txd->status);
Francois Romieu890e8d02005-07-30 13:08:43 +0200703 struct sk_buff *skb;
704
Francois Romieu697c2692007-11-21 22:30:37 +0100705 if (status & OWNbit)
Francois Romieu890e8d02005-07-30 13:08:43 +0200706 break;
707
708 skb = tp->Tx_skbuff[entry];
709
Francois Romieu697c2692007-11-21 22:30:37 +0100710 if (likely(sis190_tx_pkt_err(status, stats) == 0)) {
711 stats->tx_packets++;
712 stats->tx_bytes += skb->len;
713 stats->collisions += ((status & ColCountMask) - 1);
714 }
Francois Romieu890e8d02005-07-30 13:08:43 +0200715
716 sis190_unmap_tx_skb(tp->pci_dev, skb, txd);
717 tp->Tx_skbuff[entry] = NULL;
718 dev_kfree_skb_irq(skb);
719 }
720
721 if (tp->dirty_tx != dirty_tx) {
722 tp->dirty_tx = dirty_tx;
723 smp_wmb();
724 if (queue_stopped)
725 netif_wake_queue(dev);
726 }
727}
728
729/*
730 * The interrupt handler does all of the Rx thread work and cleans up after
731 * the Tx thread.
732 */
David Howells7d12e782006-10-05 14:55:46 +0100733static irqreturn_t sis190_interrupt(int irq, void *__dev)
Francois Romieu890e8d02005-07-30 13:08:43 +0200734{
735 struct net_device *dev = __dev;
736 struct sis190_private *tp = netdev_priv(dev);
737 void __iomem *ioaddr = tp->mmio_addr;
738 unsigned int handled = 0;
739 u32 status;
740
741 status = SIS_R32(IntrStatus);
742
743 if ((status == 0xffffffff) || !status)
744 goto out;
745
746 handled = 1;
747
748 if (unlikely(!netif_running(dev))) {
749 sis190_asic_down(ioaddr);
750 goto out;
751 }
752
753 SIS_W32(IntrStatus, status);
754
755 // net_intr(tp, KERN_INFO "%s: status = %08x.\n", dev->name, status);
756
757 if (status & LinkChange) {
758 net_intr(tp, KERN_INFO "%s: link change.\n", dev->name);
759 schedule_work(&tp->phy_task);
760 }
761
762 if (status & RxQInt)
763 sis190_rx_interrupt(dev, tp, ioaddr);
764
765 if (status & TxQ0Int)
766 sis190_tx_interrupt(dev, tp, ioaddr);
767out:
768 return IRQ_RETVAL(handled);
769}
770
Francois Romieu4405d3b2005-07-30 13:09:20 +0200771#ifdef CONFIG_NET_POLL_CONTROLLER
772static void sis190_netpoll(struct net_device *dev)
773{
774 struct sis190_private *tp = netdev_priv(dev);
775 struct pci_dev *pdev = tp->pci_dev;
776
777 disable_irq(pdev->irq);
David Howells7d12e782006-10-05 14:55:46 +0100778 sis190_interrupt(pdev->irq, dev);
Francois Romieu4405d3b2005-07-30 13:09:20 +0200779 enable_irq(pdev->irq);
780}
781#endif
782
Francois Romieu890e8d02005-07-30 13:08:43 +0200783static void sis190_free_rx_skb(struct sis190_private *tp,
784 struct sk_buff **sk_buff, struct RxDesc *desc)
785{
786 struct pci_dev *pdev = tp->pci_dev;
787
788 pci_unmap_single(pdev, le32_to_cpu(desc->addr), tp->rx_buf_sz,
789 PCI_DMA_FROMDEVICE);
790 dev_kfree_skb(*sk_buff);
791 *sk_buff = NULL;
792 sis190_make_unusable_by_asic(desc);
793}
794
795static void sis190_rx_clear(struct sis190_private *tp)
796{
797 unsigned int i;
798
799 for (i = 0; i < NUM_RX_DESC; i++) {
800 if (!tp->Rx_skbuff[i])
801 continue;
802 sis190_free_rx_skb(tp, tp->Rx_skbuff + i, tp->RxDescRing + i);
803 }
804}
805
806static void sis190_init_ring_indexes(struct sis190_private *tp)
807{
808 tp->dirty_tx = tp->dirty_rx = tp->cur_tx = tp->cur_rx = 0;
809}
810
811static int sis190_init_ring(struct net_device *dev)
812{
813 struct sis190_private *tp = netdev_priv(dev);
814
815 sis190_init_ring_indexes(tp);
816
817 memset(tp->Tx_skbuff, 0x0, NUM_TX_DESC * sizeof(struct sk_buff *));
818 memset(tp->Rx_skbuff, 0x0, NUM_RX_DESC * sizeof(struct sk_buff *));
819
820 if (sis190_rx_fill(tp, dev, 0, NUM_RX_DESC) != NUM_RX_DESC)
821 goto err_rx_clear;
822
823 sis190_mark_as_last_descriptor(tp->RxDescRing + NUM_RX_DESC - 1);
824
825 return 0;
826
827err_rx_clear:
828 sis190_rx_clear(tp);
829 return -ENOMEM;
830}
831
832static void sis190_set_rx_mode(struct net_device *dev)
833{
834 struct sis190_private *tp = netdev_priv(dev);
835 void __iomem *ioaddr = tp->mmio_addr;
836 unsigned long flags;
837 u32 mc_filter[2]; /* Multicast hash filter */
838 u16 rx_mode;
839
840 if (dev->flags & IFF_PROMISC) {
Francois Romieu890e8d02005-07-30 13:08:43 +0200841 rx_mode =
842 AcceptBroadcast | AcceptMulticast | AcceptMyPhys |
843 AcceptAllPhys;
844 mc_filter[1] = mc_filter[0] = 0xffffffff;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +0000845 } else if ((netdev_mc_count(dev) > multicast_filter_limit) ||
Francois Romieu890e8d02005-07-30 13:08:43 +0200846 (dev->flags & IFF_ALLMULTI)) {
847 /* Too many to filter perfectly -- accept all multicasts. */
848 rx_mode = AcceptBroadcast | AcceptMulticast | AcceptMyPhys;
849 mc_filter[1] = mc_filter[0] = 0xffffffff;
850 } else {
851 struct dev_mc_list *mclist;
Francois Romieu890e8d02005-07-30 13:08:43 +0200852
853 rx_mode = AcceptBroadcast | AcceptMyPhys;
854 mc_filter[1] = mc_filter[0] = 0;
Jiri Pirko55085902010-02-18 00:42:54 +0000855 netdev_for_each_mc_addr(mclist, dev) {
Francois Romieu890e8d02005-07-30 13:08:43 +0200856 int bit_nr =
Aurelien Jarno8fee5f52005-10-05 23:29:58 +0200857 ether_crc(ETH_ALEN, mclist->dmi_addr) & 0x3f;
Francois Romieu890e8d02005-07-30 13:08:43 +0200858 mc_filter[bit_nr >> 5] |= 1 << (bit_nr & 31);
859 rx_mode |= AcceptMulticast;
860 }
861 }
862
863 spin_lock_irqsave(&tp->lock, flags);
864
865 SIS_W16(RxMacControl, rx_mode | 0x2);
866 SIS_W32(RxHashTable, mc_filter[0]);
867 SIS_W32(RxHashTable + 4, mc_filter[1]);
868
869 spin_unlock_irqrestore(&tp->lock, flags);
870}
871
872static void sis190_soft_reset(void __iomem *ioaddr)
873{
874 SIS_W32(IntrControl, 0x8000);
875 SIS_PCI_COMMIT();
Francois Romieu890e8d02005-07-30 13:08:43 +0200876 SIS_W32(IntrControl, 0x0);
877 sis190_asic_down(ioaddr);
Francois Romieu890e8d02005-07-30 13:08:43 +0200878}
879
880static void sis190_hw_start(struct net_device *dev)
881{
882 struct sis190_private *tp = netdev_priv(dev);
883 void __iomem *ioaddr = tp->mmio_addr;
884
885 sis190_soft_reset(ioaddr);
886
887 SIS_W32(TxDescStartAddr, tp->tx_dma);
888 SIS_W32(RxDescStartAddr, tp->rx_dma);
889
890 SIS_W32(IntrStatus, 0xffffffff);
891 SIS_W32(IntrMask, 0x0);
Francois Romieu890e8d02005-07-30 13:08:43 +0200892 SIS_W32(GMIIControl, 0x0);
893 SIS_W32(TxMacControl, 0x60);
894 SIS_W16(RxMacControl, 0x02);
895 SIS_W32(RxHashTable, 0x0);
896 SIS_W32(0x6c, 0x0);
Francois Romieu188f23b2005-07-30 13:11:43 +0200897 SIS_W32(RxWolCtrl, 0x0);
898 SIS_W32(RxWolData, 0x0);
Francois Romieu890e8d02005-07-30 13:08:43 +0200899
900 SIS_PCI_COMMIT();
901
902 sis190_set_rx_mode(dev);
903
904 /* Enable all known interrupts by setting the interrupt mask. */
905 SIS_W32(IntrMask, sis190_intr_mask);
906
907 SIS_W32(TxControl, 0x1a00 | CmdTxEnb);
908 SIS_W32(RxControl, 0x1a1d);
909
910 netif_start_queue(dev);
911}
912
David Howellsc4028952006-11-22 14:57:56 +0000913static void sis190_phy_task(struct work_struct *work)
Francois Romieu890e8d02005-07-30 13:08:43 +0200914{
David Howellsc4028952006-11-22 14:57:56 +0000915 struct sis190_private *tp =
916 container_of(work, struct sis190_private, phy_task);
917 struct net_device *dev = tp->dev;
Francois Romieu890e8d02005-07-30 13:08:43 +0200918 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9ede1092005-07-30 13:14:38 +0200919 int phy_id = tp->mii_if.phy_id;
Francois Romieu890e8d02005-07-30 13:08:43 +0200920 u16 val;
921
Francois Romieu43afb942005-07-30 13:10:21 +0200922 rtnl_lock();
923
Francois Romieuc014f6c2007-02-15 23:37:29 +0100924 if (!netif_running(dev))
925 goto out_unlock;
926
Francois Romieu9ede1092005-07-30 13:14:38 +0200927 val = mdio_read(ioaddr, phy_id, MII_BMCR);
Francois Romieu890e8d02005-07-30 13:08:43 +0200928 if (val & BMCR_RESET) {
929 // FIXME: needlessly high ? -- FR 02/07/2005
930 mod_timer(&tp->timer, jiffies + HZ/10);
Francois Romieufc10c392005-07-30 13:15:01 +0200931 } else if (!(mdio_read_latched(ioaddr, phy_id, MII_BMSR) &
932 BMSR_ANEGCOMPLETE)) {
Francois Romieu21461382005-09-03 00:54:25 +0200933 netif_carrier_off(dev);
Francois Romieuc34ebba2007-11-18 22:04:05 +0100934 net_link(tp, KERN_WARNING "%s: auto-negotiating...\n",
935 dev->name);
Francois Romieu890e8d02005-07-30 13:08:43 +0200936 mod_timer(&tp->timer, jiffies + SIS190_PHY_TIMEOUT);
937 } else {
938 /* Rejoice ! */
939 struct {
940 int val;
Francois Romieu6614a6d2005-09-03 00:56:16 +0200941 u32 ctl;
Francois Romieu890e8d02005-07-30 13:08:43 +0200942 const char *msg;
Francois Romieu890e8d02005-07-30 13:08:43 +0200943 } reg31[] = {
Riccardo Ghetta1feede02009-06-04 09:05:20 +0000944 { LPA_1000FULL, 0x07000c00 | 0x00001000,
Francois Romieu6614a6d2005-09-03 00:56:16 +0200945 "1000 Mbps Full Duplex" },
Riccardo Ghetta1feede02009-06-04 09:05:20 +0000946 { LPA_1000HALF, 0x07000c00,
Francois Romieu6614a6d2005-09-03 00:56:16 +0200947 "1000 Mbps Half Duplex" },
948 { LPA_100FULL, 0x04000800 | 0x00001000,
949 "100 Mbps Full Duplex" },
950 { LPA_100HALF, 0x04000800,
951 "100 Mbps Half Duplex" },
952 { LPA_10FULL, 0x04000400 | 0x00001000,
953 "10 Mbps Full Duplex" },
954 { LPA_10HALF, 0x04000400,
955 "10 Mbps Half Duplex" },
956 { 0, 0x04000400, "unknown" }
Riccardo Ghetta1feede02009-06-04 09:05:20 +0000957 }, *p = NULL;
958 u16 adv, autoexp, gigadv, gigrec;
Francois Romieu890e8d02005-07-30 13:08:43 +0200959
Francois Romieu9ede1092005-07-30 13:14:38 +0200960 val = mdio_read(ioaddr, phy_id, 0x1f);
Francois Romieu890e8d02005-07-30 13:08:43 +0200961 net_link(tp, KERN_INFO "%s: mii ext = %04x.\n", dev->name, val);
962
Francois Romieu9ede1092005-07-30 13:14:38 +0200963 val = mdio_read(ioaddr, phy_id, MII_LPA);
Francois Romieu8348b4d2005-07-30 13:16:14 +0200964 adv = mdio_read(ioaddr, phy_id, MII_ADVERTISE);
Riccardo Ghetta1feede02009-06-04 09:05:20 +0000965 autoexp = mdio_read(ioaddr, phy_id, MII_EXPANSION);
966 net_link(tp, KERN_INFO "%s: mii lpa=%04x adv=%04x exp=%04x.\n",
967 dev->name, val, adv, autoexp);
Francois Romieu8348b4d2005-07-30 13:16:14 +0200968
Riccardo Ghetta1feede02009-06-04 09:05:20 +0000969 if (val & LPA_NPAGE && autoexp & EXPANSION_NWAY) {
970 /* check for gigabit speed */
971 gigadv = mdio_read(ioaddr, phy_id, MII_CTRL1000);
972 gigrec = mdio_read(ioaddr, phy_id, MII_STAT1000);
973 val = (gigadv & (gigrec >> 2));
974 if (val & ADVERTISE_1000FULL)
975 p = reg31;
976 else if (val & ADVERTISE_1000HALF)
977 p = reg31 + 1;
978 }
979 if (!p) {
980 val &= adv;
Francois Romieu890e8d02005-07-30 13:08:43 +0200981
Riccardo Ghetta1feede02009-06-04 09:05:20 +0000982 for (p = reg31; p->val; p++) {
983 if ((val & p->val) == p->val)
984 break;
985 }
Francois Romieu890e8d02005-07-30 13:08:43 +0200986 }
Francois Romieu6614a6d2005-09-03 00:56:16 +0200987
988 p->ctl |= SIS_R32(StationControl) & ~0x0f001c00;
989
Francois Romieuc3d6f1f2005-09-03 00:56:57 +0200990 if ((tp->features & F_HAS_RGMII) &&
991 (tp->features & F_PHY_BCM5461)) {
992 // Set Tx Delay in RGMII mode.
993 mdio_write(ioaddr, phy_id, 0x18, 0xf1c7);
994 udelay(200);
995 mdio_write(ioaddr, phy_id, 0x1c, 0x8c00);
996 p->ctl |= 0x03000000;
997 }
998
Francois Romieu6614a6d2005-09-03 00:56:16 +0200999 SIS_W32(StationControl, p->ctl);
1000
Francois Romieuc3d6f1f2005-09-03 00:56:57 +02001001 if (tp->features & F_HAS_RGMII) {
1002 SIS_W32(RGDelay, 0x0441);
1003 SIS_W32(RGDelay, 0x0440);
1004 }
1005
Riccardo Ghetta08326db2010-02-17 09:28:58 +00001006 tp->negotiated_lpa = p->val;
1007
Francois Romieu890e8d02005-07-30 13:08:43 +02001008 net_link(tp, KERN_INFO "%s: link on %s mode.\n", dev->name,
1009 p->msg);
1010 netif_carrier_on(dev);
1011 }
Francois Romieu43afb942005-07-30 13:10:21 +02001012
Francois Romieuc014f6c2007-02-15 23:37:29 +01001013out_unlock:
Francois Romieu43afb942005-07-30 13:10:21 +02001014 rtnl_unlock();
Francois Romieu890e8d02005-07-30 13:08:43 +02001015}
1016
1017static void sis190_phy_timer(unsigned long __opaque)
1018{
1019 struct net_device *dev = (struct net_device *)__opaque;
1020 struct sis190_private *tp = netdev_priv(dev);
1021
1022 if (likely(netif_running(dev)))
1023 schedule_work(&tp->phy_task);
1024}
1025
1026static inline void sis190_delete_timer(struct net_device *dev)
1027{
1028 struct sis190_private *tp = netdev_priv(dev);
1029
1030 del_timer_sync(&tp->timer);
1031}
1032
1033static inline void sis190_request_timer(struct net_device *dev)
1034{
1035 struct sis190_private *tp = netdev_priv(dev);
1036 struct timer_list *timer = &tp->timer;
1037
1038 init_timer(timer);
1039 timer->expires = jiffies + SIS190_PHY_TIMEOUT;
1040 timer->data = (unsigned long)dev;
1041 timer->function = sis190_phy_timer;
1042 add_timer(timer);
1043}
1044
1045static void sis190_set_rxbufsize(struct sis190_private *tp,
1046 struct net_device *dev)
1047{
1048 unsigned int mtu = dev->mtu;
1049
1050 tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE;
Francois Romieu8b5641d2005-07-30 13:13:03 +02001051 /* RxDesc->size has a licence to kill the lower bits */
1052 if (tp->rx_buf_sz & 0x07) {
1053 tp->rx_buf_sz += 8;
1054 tp->rx_buf_sz &= RX_BUF_MASK;
1055 }
Francois Romieu890e8d02005-07-30 13:08:43 +02001056}
1057
1058static int sis190_open(struct net_device *dev)
1059{
1060 struct sis190_private *tp = netdev_priv(dev);
1061 struct pci_dev *pdev = tp->pci_dev;
1062 int rc = -ENOMEM;
1063
1064 sis190_set_rxbufsize(tp, dev);
1065
1066 /*
1067 * Rx and Tx descriptors need 256 bytes alignment.
1068 * pci_alloc_consistent() guarantees a stronger alignment.
1069 */
1070 tp->TxDescRing = pci_alloc_consistent(pdev, TX_RING_BYTES, &tp->tx_dma);
1071 if (!tp->TxDescRing)
1072 goto out;
1073
1074 tp->RxDescRing = pci_alloc_consistent(pdev, RX_RING_BYTES, &tp->rx_dma);
1075 if (!tp->RxDescRing)
1076 goto err_free_tx_0;
1077
1078 rc = sis190_init_ring(dev);
1079 if (rc < 0)
1080 goto err_free_rx_1;
1081
Francois Romieu890e8d02005-07-30 13:08:43 +02001082 sis190_request_timer(dev);
1083
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07001084 rc = request_irq(dev->irq, sis190_interrupt, IRQF_SHARED, dev->name, dev);
Francois Romieu890e8d02005-07-30 13:08:43 +02001085 if (rc < 0)
1086 goto err_release_timer_2;
1087
1088 sis190_hw_start(dev);
1089out:
1090 return rc;
1091
1092err_release_timer_2:
1093 sis190_delete_timer(dev);
1094 sis190_rx_clear(tp);
1095err_free_rx_1:
1096 pci_free_consistent(tp->pci_dev, RX_RING_BYTES, tp->RxDescRing,
1097 tp->rx_dma);
1098err_free_tx_0:
1099 pci_free_consistent(tp->pci_dev, TX_RING_BYTES, tp->TxDescRing,
1100 tp->tx_dma);
1101 goto out;
1102}
1103
1104static void sis190_tx_clear(struct sis190_private *tp)
1105{
1106 unsigned int i;
1107
1108 for (i = 0; i < NUM_TX_DESC; i++) {
1109 struct sk_buff *skb = tp->Tx_skbuff[i];
1110
1111 if (!skb)
1112 continue;
1113
1114 sis190_unmap_tx_skb(tp->pci_dev, skb, tp->TxDescRing + i);
1115 tp->Tx_skbuff[i] = NULL;
1116 dev_kfree_skb(skb);
1117
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001118 tp->dev->stats.tx_dropped++;
Francois Romieu890e8d02005-07-30 13:08:43 +02001119 }
1120 tp->cur_tx = tp->dirty_tx = 0;
1121}
1122
1123static void sis190_down(struct net_device *dev)
1124{
1125 struct sis190_private *tp = netdev_priv(dev);
1126 void __iomem *ioaddr = tp->mmio_addr;
1127 unsigned int poll_locked = 0;
1128
1129 sis190_delete_timer(dev);
1130
1131 netif_stop_queue(dev);
1132
Francois Romieu890e8d02005-07-30 13:08:43 +02001133 do {
1134 spin_lock_irq(&tp->lock);
1135
1136 sis190_asic_down(ioaddr);
1137
1138 spin_unlock_irq(&tp->lock);
1139
1140 synchronize_irq(dev->irq);
1141
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001142 if (!poll_locked)
Francois Romieu890e8d02005-07-30 13:08:43 +02001143 poll_locked++;
Francois Romieu890e8d02005-07-30 13:08:43 +02001144
1145 synchronize_sched();
1146
1147 } while (SIS_R32(IntrMask));
1148
1149 sis190_tx_clear(tp);
1150 sis190_rx_clear(tp);
1151}
1152
1153static int sis190_close(struct net_device *dev)
1154{
1155 struct sis190_private *tp = netdev_priv(dev);
1156 struct pci_dev *pdev = tp->pci_dev;
1157
1158 sis190_down(dev);
1159
1160 free_irq(dev->irq, dev);
1161
Francois Romieu890e8d02005-07-30 13:08:43 +02001162 pci_free_consistent(pdev, TX_RING_BYTES, tp->TxDescRing, tp->tx_dma);
1163 pci_free_consistent(pdev, RX_RING_BYTES, tp->RxDescRing, tp->rx_dma);
1164
1165 tp->TxDescRing = NULL;
1166 tp->RxDescRing = NULL;
1167
1168 return 0;
1169}
1170
Stephen Hemminger613573252009-08-31 19:50:58 +00001171static netdev_tx_t sis190_start_xmit(struct sk_buff *skb,
1172 struct net_device *dev)
Francois Romieu890e8d02005-07-30 13:08:43 +02001173{
1174 struct sis190_private *tp = netdev_priv(dev);
1175 void __iomem *ioaddr = tp->mmio_addr;
1176 u32 len, entry, dirty_tx;
1177 struct TxDesc *desc;
1178 dma_addr_t mapping;
1179
1180 if (unlikely(skb->len < ETH_ZLEN)) {
Herbert Xu5b057c62006-06-23 02:06:41 -07001181 if (skb_padto(skb, ETH_ZLEN)) {
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001182 dev->stats.tx_dropped++;
Francois Romieu890e8d02005-07-30 13:08:43 +02001183 goto out;
1184 }
1185 len = ETH_ZLEN;
1186 } else {
1187 len = skb->len;
1188 }
1189
1190 entry = tp->cur_tx % NUM_TX_DESC;
1191 desc = tp->TxDescRing + entry;
1192
1193 if (unlikely(le32_to_cpu(desc->status) & OWNbit)) {
1194 netif_stop_queue(dev);
1195 net_tx_err(tp, KERN_ERR PFX
1196 "%s: BUG! Tx Ring full when queue awake!\n",
1197 dev->name);
1198 return NETDEV_TX_BUSY;
1199 }
1200
1201 mapping = pci_map_single(tp->pci_dev, skb->data, len, PCI_DMA_TODEVICE);
1202
1203 tp->Tx_skbuff[entry] = skb;
1204
1205 desc->PSize = cpu_to_le32(len);
1206 desc->addr = cpu_to_le32(mapping);
1207
1208 desc->size = cpu_to_le32(len);
1209 if (entry == (NUM_TX_DESC - 1))
1210 desc->size |= cpu_to_le32(RingEnd);
1211
1212 wmb();
1213
1214 desc->status = cpu_to_le32(OWNbit | INTbit | DEFbit | CRCbit | PADbit);
Riccardo Ghetta08326db2010-02-17 09:28:58 +00001215 if (tp->negotiated_lpa & (LPA_1000HALF | LPA_100HALF | LPA_10HALF)) {
1216 /* Half Duplex */
1217 desc->status |= cpu_to_le32(COLEN | CRSEN | BKFEN);
1218 if (tp->negotiated_lpa & (LPA_1000HALF | LPA_1000FULL))
1219 desc->status |= cpu_to_le32(EXTEN | BSTEN); /* gigabit HD */
1220 }
Francois Romieu890e8d02005-07-30 13:08:43 +02001221
1222 tp->cur_tx++;
1223
1224 smp_wmb();
1225
1226 SIS_W32(TxControl, 0x1a00 | CmdReset | CmdTxEnb);
1227
Francois Romieu890e8d02005-07-30 13:08:43 +02001228 dirty_tx = tp->dirty_tx;
1229 if ((tp->cur_tx - NUM_TX_DESC) == dirty_tx) {
1230 netif_stop_queue(dev);
1231 smp_rmb();
1232 if (dirty_tx != tp->dirty_tx)
1233 netif_wake_queue(dev);
1234 }
1235out:
1236 return NETDEV_TX_OK;
1237}
1238
Francois Romieufcb98212005-07-30 13:15:22 +02001239static void sis190_free_phy(struct list_head *first_phy)
1240{
1241 struct sis190_phy *cur, *next;
1242
1243 list_for_each_entry_safe(cur, next, first_phy, list) {
1244 kfree(cur);
1245 }
1246}
1247
1248/**
1249 * sis190_default_phy - Select default PHY for sis190 mac.
1250 * @dev: the net device to probe for
1251 *
1252 * Select first detected PHY with link as default.
1253 * If no one is link on, select PHY whose types is HOME as default.
1254 * If HOME doesn't exist, select LAN.
1255 */
1256static u16 sis190_default_phy(struct net_device *dev)
1257{
1258 struct sis190_phy *phy, *phy_home, *phy_default, *phy_lan;
1259 struct sis190_private *tp = netdev_priv(dev);
1260 struct mii_if_info *mii_if = &tp->mii_if;
1261 void __iomem *ioaddr = tp->mmio_addr;
1262 u16 status;
1263
1264 phy_home = phy_default = phy_lan = NULL;
1265
1266 list_for_each_entry(phy, &tp->first_phy, list) {
1267 status = mdio_read_latched(ioaddr, phy->phy_id, MII_BMSR);
1268
1269 // Link ON & Not select default PHY & not ghost PHY.
1270 if ((status & BMSR_LSTATUS) &&
1271 !phy_default &&
1272 (phy->type != UNKNOWN)) {
1273 phy_default = phy;
1274 } else {
1275 status = mdio_read(ioaddr, phy->phy_id, MII_BMCR);
1276 mdio_write(ioaddr, phy->phy_id, MII_BMCR,
1277 status | BMCR_ANENABLE | BMCR_ISOLATE);
1278 if (phy->type == HOME)
1279 phy_home = phy;
1280 else if (phy->type == LAN)
1281 phy_lan = phy;
1282 }
1283 }
1284
1285 if (!phy_default) {
1286 if (phy_home)
1287 phy_default = phy_home;
1288 else if (phy_lan)
1289 phy_default = phy_lan;
1290 else
françois romieuc2f3f3a2009-06-17 11:43:11 +00001291 phy_default = list_first_entry(&tp->first_phy,
Francois Romieufcb98212005-07-30 13:15:22 +02001292 struct sis190_phy, list);
1293 }
1294
1295 if (mii_if->phy_id != phy_default->phy_id) {
1296 mii_if->phy_id = phy_default->phy_id;
1297 net_probe(tp, KERN_INFO
1298 "%s: Using transceiver at address %d as default.\n",
Francois Romieu3690b6c2005-08-26 00:30:37 +02001299 pci_name(tp->pci_dev), mii_if->phy_id);
Francois Romieufcb98212005-07-30 13:15:22 +02001300 }
1301
1302 status = mdio_read(ioaddr, mii_if->phy_id, MII_BMCR);
1303 status &= (~BMCR_ISOLATE);
1304
1305 mdio_write(ioaddr, mii_if->phy_id, MII_BMCR, status);
1306 status = mdio_read_latched(ioaddr, mii_if->phy_id, MII_BMSR);
1307
1308 return status;
1309}
1310
1311static void sis190_init_phy(struct net_device *dev, struct sis190_private *tp,
1312 struct sis190_phy *phy, unsigned int phy_id,
1313 u16 mii_status)
1314{
1315 void __iomem *ioaddr = tp->mmio_addr;
1316 struct mii_chip_info *p;
1317
1318 INIT_LIST_HEAD(&phy->list);
1319 phy->status = mii_status;
1320 phy->phy_id = phy_id;
1321
1322 phy->id[0] = mdio_read(ioaddr, phy_id, MII_PHYSID1);
1323 phy->id[1] = mdio_read(ioaddr, phy_id, MII_PHYSID2);
1324
1325 for (p = mii_chip_table; p->type; p++) {
1326 if ((p->id[0] == phy->id[0]) &&
1327 (p->id[1] == (phy->id[1] & 0xfff0))) {
1328 break;
1329 }
1330 }
1331
1332 if (p->id[1]) {
1333 phy->type = (p->type == MIX) ?
1334 ((mii_status & (BMSR_100FULL | BMSR_100HALF)) ?
1335 LAN : HOME) : p->type;
Francois Romieu900eb9d2005-09-03 00:55:27 +02001336 tp->features |= p->feature;
Riccardo Ghettac3223d22009-06-04 09:04:55 +00001337 net_probe(tp, KERN_INFO "%s: %s transceiver at address %d.\n",
1338 pci_name(tp->pci_dev), p->name, phy_id);
1339 } else {
Francois Romieufcb98212005-07-30 13:15:22 +02001340 phy->type = UNKNOWN;
Riccardo Ghettac3223d22009-06-04 09:04:55 +00001341 net_probe(tp, KERN_INFO
1342 "%s: unknown PHY 0x%x:0x%x transceiver at address %d\n",
1343 pci_name(tp->pci_dev),
1344 phy->id[0], (phy->id[1] & 0xfff0), phy_id);
1345 }
Francois Romieufcb98212005-07-30 13:15:22 +02001346}
1347
Francois Romieu900eb9d2005-09-03 00:55:27 +02001348static void sis190_mii_probe_88e1111_fixup(struct sis190_private *tp)
1349{
1350 if (tp->features & F_PHY_88E1111) {
1351 void __iomem *ioaddr = tp->mmio_addr;
1352 int phy_id = tp->mii_if.phy_id;
1353 u16 reg[2][2] = {
1354 { 0x808b, 0x0ce1 },
1355 { 0x808f, 0x0c60 }
1356 }, *p;
1357
1358 p = (tp->features & F_HAS_RGMII) ? reg[0] : reg[1];
1359
1360 mdio_write(ioaddr, phy_id, 0x1b, p[0]);
1361 udelay(200);
1362 mdio_write(ioaddr, phy_id, 0x14, p[1]);
1363 udelay(200);
1364 }
1365}
1366
Francois Romieufcb98212005-07-30 13:15:22 +02001367/**
1368 * sis190_mii_probe - Probe MII PHY for sis190
1369 * @dev: the net device to probe for
1370 *
1371 * Search for total of 32 possible mii phy addresses.
1372 * Identify and set current phy if found one,
1373 * return error if it failed to found.
1374 */
1375static int __devinit sis190_mii_probe(struct net_device *dev)
1376{
1377 struct sis190_private *tp = netdev_priv(dev);
1378 struct mii_if_info *mii_if = &tp->mii_if;
1379 void __iomem *ioaddr = tp->mmio_addr;
1380 int phy_id;
1381 int rc = 0;
1382
1383 INIT_LIST_HEAD(&tp->first_phy);
1384
1385 for (phy_id = 0; phy_id < PHY_MAX_ADDR; phy_id++) {
1386 struct sis190_phy *phy;
1387 u16 status;
1388
1389 status = mdio_read_latched(ioaddr, phy_id, MII_BMSR);
1390
1391 // Try next mii if the current one is not accessible.
1392 if (status == 0xffff || status == 0x0000)
1393 continue;
1394
1395 phy = kmalloc(sizeof(*phy), GFP_KERNEL);
1396 if (!phy) {
1397 sis190_free_phy(&tp->first_phy);
1398 rc = -ENOMEM;
1399 goto out;
1400 }
1401
1402 sis190_init_phy(dev, tp, phy, phy_id, status);
1403
1404 list_add(&tp->first_phy, &phy->list);
1405 }
1406
1407 if (list_empty(&tp->first_phy)) {
1408 net_probe(tp, KERN_INFO "%s: No MII transceivers found!\n",
Francois Romieu3690b6c2005-08-26 00:30:37 +02001409 pci_name(tp->pci_dev));
Francois Romieufcb98212005-07-30 13:15:22 +02001410 rc = -EIO;
1411 goto out;
1412 }
1413
1414 /* Select default PHY for mac */
1415 sis190_default_phy(dev);
1416
Francois Romieu900eb9d2005-09-03 00:55:27 +02001417 sis190_mii_probe_88e1111_fixup(tp);
1418
Francois Romieufcb98212005-07-30 13:15:22 +02001419 mii_if->dev = dev;
1420 mii_if->mdio_read = __mdio_read;
1421 mii_if->mdio_write = __mdio_write;
1422 mii_if->phy_id_mask = PHY_ID_ANY;
1423 mii_if->reg_num_mask = MII_REG_ANY;
1424out:
1425 return rc;
1426}
1427
Adrian Bunkc2b75f02007-12-11 23:23:56 +01001428static void sis190_mii_remove(struct net_device *dev)
Francois Romieufcb98212005-07-30 13:15:22 +02001429{
1430 struct sis190_private *tp = netdev_priv(dev);
1431
1432 sis190_free_phy(&tp->first_phy);
1433}
1434
Francois Romieu890e8d02005-07-30 13:08:43 +02001435static void sis190_release_board(struct pci_dev *pdev)
1436{
1437 struct net_device *dev = pci_get_drvdata(pdev);
1438 struct sis190_private *tp = netdev_priv(dev);
1439
1440 iounmap(tp->mmio_addr);
1441 pci_release_regions(pdev);
1442 pci_disable_device(pdev);
1443 free_netdev(dev);
1444}
1445
1446static struct net_device * __devinit sis190_init_board(struct pci_dev *pdev)
1447{
1448 struct sis190_private *tp;
1449 struct net_device *dev;
1450 void __iomem *ioaddr;
1451 int rc;
1452
1453 dev = alloc_etherdev(sizeof(*tp));
1454 if (!dev) {
1455 net_drv(&debug, KERN_ERR PFX "unable to alloc new ethernet\n");
1456 rc = -ENOMEM;
1457 goto err_out_0;
1458 }
1459
Francois Romieu890e8d02005-07-30 13:08:43 +02001460 SET_NETDEV_DEV(dev, &pdev->dev);
1461
1462 tp = netdev_priv(dev);
David Howellsc4028952006-11-22 14:57:56 +00001463 tp->dev = dev;
Francois Romieu890e8d02005-07-30 13:08:43 +02001464 tp->msg_enable = netif_msg_init(debug.msg_enable, SIS190_MSG_DEFAULT);
1465
1466 rc = pci_enable_device(pdev);
1467 if (rc < 0) {
1468 net_probe(tp, KERN_ERR "%s: enable failure\n", pci_name(pdev));
1469 goto err_free_dev_1;
1470 }
1471
1472 rc = -ENODEV;
1473
1474 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
1475 net_probe(tp, KERN_ERR "%s: region #0 is no MMIO resource.\n",
1476 pci_name(pdev));
1477 goto err_pci_disable_2;
1478 }
1479 if (pci_resource_len(pdev, 0) < SIS190_REGS_SIZE) {
1480 net_probe(tp, KERN_ERR "%s: invalid PCI region size(s).\n",
1481 pci_name(pdev));
1482 goto err_pci_disable_2;
1483 }
1484
1485 rc = pci_request_regions(pdev, DRV_NAME);
1486 if (rc < 0) {
1487 net_probe(tp, KERN_ERR PFX "%s: could not request regions.\n",
1488 pci_name(pdev));
1489 goto err_pci_disable_2;
1490 }
1491
Yang Hongyang284901a2009-04-06 19:01:15 -07001492 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Francois Romieu890e8d02005-07-30 13:08:43 +02001493 if (rc < 0) {
1494 net_probe(tp, KERN_ERR "%s: DMA configuration failed.\n",
1495 pci_name(pdev));
1496 goto err_free_res_3;
1497 }
1498
1499 pci_set_master(pdev);
1500
1501 ioaddr = ioremap(pci_resource_start(pdev, 0), SIS190_REGS_SIZE);
1502 if (!ioaddr) {
1503 net_probe(tp, KERN_ERR "%s: cannot remap MMIO, aborting\n",
1504 pci_name(pdev));
1505 rc = -EIO;
1506 goto err_free_res_3;
1507 }
1508
1509 tp->pci_dev = pdev;
1510 tp->mmio_addr = ioaddr;
1511
1512 sis190_irq_mask_and_ack(ioaddr);
1513
1514 sis190_soft_reset(ioaddr);
1515out:
1516 return dev;
1517
1518err_free_res_3:
1519 pci_release_regions(pdev);
1520err_pci_disable_2:
1521 pci_disable_device(pdev);
1522err_free_dev_1:
1523 free_netdev(dev);
1524err_out_0:
1525 dev = ERR_PTR(rc);
1526 goto out;
1527}
1528
1529static void sis190_tx_timeout(struct net_device *dev)
1530{
1531 struct sis190_private *tp = netdev_priv(dev);
1532 void __iomem *ioaddr = tp->mmio_addr;
1533 u8 tmp8;
1534
1535 /* Disable Tx, if not already */
1536 tmp8 = SIS_R8(TxControl);
1537 if (tmp8 & CmdTxEnb)
1538 SIS_W8(TxControl, tmp8 & ~CmdTxEnb);
1539
Francois Romieu188f23b2005-07-30 13:11:43 +02001540
1541 net_tx_err(tp, KERN_INFO "%s: Transmit timeout, status %08x %08x.\n",
1542 dev->name, SIS_R32(TxControl), SIS_R32(TxSts));
1543
Francois Romieu890e8d02005-07-30 13:08:43 +02001544 /* Disable interrupts by clearing the interrupt mask. */
1545 SIS_W32(IntrMask, 0x0000);
1546
1547 /* Stop a shared interrupt from scavenging while we are. */
1548 spin_lock_irq(&tp->lock);
1549 sis190_tx_clear(tp);
1550 spin_unlock_irq(&tp->lock);
1551
1552 /* ...and finally, reset everything. */
1553 sis190_hw_start(dev);
1554
1555 netif_wake_queue(dev);
1556}
1557
Francois Romieu900eb9d2005-09-03 00:55:27 +02001558static void sis190_set_rgmii(struct sis190_private *tp, u8 reg)
1559{
1560 tp->features |= (reg & 0x80) ? F_HAS_RGMII : 0;
1561}
1562
Francois Romieu830fb7d2005-07-30 13:12:37 +02001563static int __devinit sis190_get_mac_addr_from_eeprom(struct pci_dev *pdev,
1564 struct net_device *dev)
1565{
1566 struct sis190_private *tp = netdev_priv(dev);
1567 void __iomem *ioaddr = tp->mmio_addr;
1568 u16 sig;
1569 int i;
1570
1571 net_probe(tp, KERN_INFO "%s: Read MAC address from EEPROM\n",
1572 pci_name(pdev));
1573
1574 /* Check to see if there is a sane EEPROM */
1575 sig = (u16) sis190_read_eeprom(ioaddr, EEPROMSignature);
1576
1577 if ((sig == 0xffff) || (sig == 0x0000)) {
1578 net_probe(tp, KERN_INFO "%s: Error EEPROM read %x.\n",
1579 pci_name(pdev), sig);
1580 return -EIO;
1581 }
1582
1583 /* Get MAC address from EEPROM */
1584 for (i = 0; i < MAC_ADDR_LEN / 2; i++) {
Al Viro961994a2007-12-15 01:44:33 +00001585 u16 w = sis190_read_eeprom(ioaddr, EEPROMMACAddr + i);
Francois Romieu830fb7d2005-07-30 13:12:37 +02001586
Al Viro961994a2007-12-15 01:44:33 +00001587 ((__le16 *)dev->dev_addr)[i] = cpu_to_le16(w);
Francois Romieu830fb7d2005-07-30 13:12:37 +02001588 }
1589
Francois Romieu900eb9d2005-09-03 00:55:27 +02001590 sis190_set_rgmii(tp, sis190_read_eeprom(ioaddr, EEPROMInfo));
1591
Francois Romieu830fb7d2005-07-30 13:12:37 +02001592 return 0;
1593}
1594
1595/**
Francois Romieuebc71642007-12-04 22:58:41 +01001596 * sis190_get_mac_addr_from_apc - Get MAC address for SiS96x model
Francois Romieu830fb7d2005-07-30 13:12:37 +02001597 * @pdev: PCI device
1598 * @dev: network device to get address for
1599 *
Francois Romieuebc71642007-12-04 22:58:41 +01001600 * SiS96x model, use APC CMOS RAM to store MAC address.
Francois Romieu830fb7d2005-07-30 13:12:37 +02001601 * APC CMOS RAM is accessed through ISA bridge.
1602 * MAC address is read into @net_dev->dev_addr.
1603 */
1604static int __devinit sis190_get_mac_addr_from_apc(struct pci_dev *pdev,
1605 struct net_device *dev)
1606{
Francois Romieuebc71642007-12-04 22:58:41 +01001607 static const u16 __devinitdata ids[] = { 0x0965, 0x0966, 0x0968 };
Francois Romieu830fb7d2005-07-30 13:12:37 +02001608 struct sis190_private *tp = netdev_priv(dev);
1609 struct pci_dev *isa_bridge;
1610 u8 reg, tmp8;
Francois Romieuebc71642007-12-04 22:58:41 +01001611 unsigned int i;
Francois Romieu830fb7d2005-07-30 13:12:37 +02001612
1613 net_probe(tp, KERN_INFO "%s: Read MAC address from APC.\n",
1614 pci_name(pdev));
1615
Francois Romieuebc71642007-12-04 22:58:41 +01001616 for (i = 0; i < ARRAY_SIZE(ids); i++) {
1617 isa_bridge = pci_get_device(PCI_VENDOR_ID_SI, ids[i], NULL);
1618 if (isa_bridge)
1619 break;
1620 }
Neil Muller8eb7ad62007-08-01 17:52:04 +02001621
Francois Romieu830fb7d2005-07-30 13:12:37 +02001622 if (!isa_bridge) {
1623 net_probe(tp, KERN_INFO "%s: Can not find ISA bridge.\n",
1624 pci_name(pdev));
1625 return -EIO;
1626 }
1627
1628 /* Enable port 78h & 79h to access APC Registers. */
1629 pci_read_config_byte(isa_bridge, 0x48, &tmp8);
1630 reg = (tmp8 & ~0x02);
1631 pci_write_config_byte(isa_bridge, 0x48, reg);
1632 udelay(50);
1633 pci_read_config_byte(isa_bridge, 0x48, &reg);
1634
1635 for (i = 0; i < MAC_ADDR_LEN; i++) {
1636 outb(0x9 + i, 0x78);
1637 dev->dev_addr[i] = inb(0x79);
1638 }
1639
1640 outb(0x12, 0x78);
1641 reg = inb(0x79);
1642
Francois Romieu900eb9d2005-09-03 00:55:27 +02001643 sis190_set_rgmii(tp, reg);
1644
Francois Romieu830fb7d2005-07-30 13:12:37 +02001645 /* Restore the value to ISA Bridge */
1646 pci_write_config_byte(isa_bridge, 0x48, tmp8);
1647 pci_dev_put(isa_bridge);
1648
1649 return 0;
1650}
1651
1652/**
1653 * sis190_init_rxfilter - Initialize the Rx filter
1654 * @dev: network device to initialize
1655 *
1656 * Set receive filter address to our MAC address
1657 * and enable packet filtering.
1658 */
1659static inline void sis190_init_rxfilter(struct net_device *dev)
1660{
1661 struct sis190_private *tp = netdev_priv(dev);
1662 void __iomem *ioaddr = tp->mmio_addr;
1663 u16 ctl;
1664 int i;
1665
1666 ctl = SIS_R16(RxMacControl);
1667 /*
1668 * Disable packet filtering before setting filter.
1669 * Note: SiS's driver writes 32 bits but RxMacControl is 16 bits
1670 * only and followed by RxMacAddr (6 bytes). Strange. -- FR
1671 */
1672 SIS_W16(RxMacControl, ctl & ~0x0f00);
1673
1674 for (i = 0; i < MAC_ADDR_LEN; i++)
1675 SIS_W8(RxMacAddr + i, dev->dev_addr[i]);
1676
1677 SIS_W16(RxMacControl, ctl);
1678 SIS_PCI_COMMIT();
1679}
1680
Jeff Garzik7d2e3cb2008-05-13 01:41:58 -04001681static int __devinit sis190_get_mac_addr(struct pci_dev *pdev,
Sergio Luisd785ad72008-02-10 17:56:25 -03001682 struct net_device *dev)
Francois Romieu830fb7d2005-07-30 13:12:37 +02001683{
Francois Romieu563e0ae2008-02-18 21:20:32 +01001684 int rc;
Francois Romieu830fb7d2005-07-30 13:12:37 +02001685
Francois Romieu563e0ae2008-02-18 21:20:32 +01001686 rc = sis190_get_mac_addr_from_eeprom(pdev, dev);
1687 if (rc < 0) {
1688 u8 reg;
Francois Romieu830fb7d2005-07-30 13:12:37 +02001689
Francois Romieu563e0ae2008-02-18 21:20:32 +01001690 pci_read_config_byte(pdev, 0x73, &reg);
1691
1692 if (reg & 0x00000001)
1693 rc = sis190_get_mac_addr_from_apc(pdev, dev);
1694 }
1695 return rc;
Francois Romieu830fb7d2005-07-30 13:12:37 +02001696}
1697
Francois Romieu890e8d02005-07-30 13:08:43 +02001698static void sis190_set_speed_auto(struct net_device *dev)
1699{
1700 struct sis190_private *tp = netdev_priv(dev);
1701 void __iomem *ioaddr = tp->mmio_addr;
Francois Romieu9ede1092005-07-30 13:14:38 +02001702 int phy_id = tp->mii_if.phy_id;
Francois Romieu890e8d02005-07-30 13:08:43 +02001703 int val;
1704
1705 net_link(tp, KERN_INFO "%s: Enabling Auto-negotiation.\n", dev->name);
1706
Francois Romieu9ede1092005-07-30 13:14:38 +02001707 val = mdio_read(ioaddr, phy_id, MII_ADVERTISE);
Francois Romieu890e8d02005-07-30 13:08:43 +02001708
1709 // Enable 10/100 Full/Half Mode, leave MII_ADVERTISE bit4:0
1710 // unchanged.
Francois Romieu9ede1092005-07-30 13:14:38 +02001711 mdio_write(ioaddr, phy_id, MII_ADVERTISE, (val & ADVERTISE_SLCT) |
Francois Romieu890e8d02005-07-30 13:08:43 +02001712 ADVERTISE_100FULL | ADVERTISE_10FULL |
1713 ADVERTISE_100HALF | ADVERTISE_10HALF);
1714
1715 // Enable 1000 Full Mode.
Francois Romieu9ede1092005-07-30 13:14:38 +02001716 mdio_write(ioaddr, phy_id, MII_CTRL1000, ADVERTISE_1000FULL);
Francois Romieu890e8d02005-07-30 13:08:43 +02001717
1718 // Enable auto-negotiation and restart auto-negotiation.
Francois Romieu9ede1092005-07-30 13:14:38 +02001719 mdio_write(ioaddr, phy_id, MII_BMCR,
Francois Romieu890e8d02005-07-30 13:08:43 +02001720 BMCR_ANENABLE | BMCR_ANRESTART | BMCR_RESET);
1721}
1722
Francois Romieu43afb942005-07-30 13:10:21 +02001723static int sis190_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1724{
1725 struct sis190_private *tp = netdev_priv(dev);
1726
1727 return mii_ethtool_gset(&tp->mii_if, cmd);
1728}
1729
1730static int sis190_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1731{
1732 struct sis190_private *tp = netdev_priv(dev);
1733
1734 return mii_ethtool_sset(&tp->mii_if, cmd);
1735}
1736
Francois Romieu890e8d02005-07-30 13:08:43 +02001737static void sis190_get_drvinfo(struct net_device *dev,
1738 struct ethtool_drvinfo *info)
1739{
1740 struct sis190_private *tp = netdev_priv(dev);
1741
1742 strcpy(info->driver, DRV_NAME);
1743 strcpy(info->version, DRV_VERSION);
1744 strcpy(info->bus_info, pci_name(tp->pci_dev));
1745}
1746
1747static int sis190_get_regs_len(struct net_device *dev)
1748{
1749 return SIS190_REGS_SIZE;
1750}
1751
1752static void sis190_get_regs(struct net_device *dev, struct ethtool_regs *regs,
1753 void *p)
1754{
1755 struct sis190_private *tp = netdev_priv(dev);
1756 unsigned long flags;
1757
1758 if (regs->len > SIS190_REGS_SIZE)
1759 regs->len = SIS190_REGS_SIZE;
1760
1761 spin_lock_irqsave(&tp->lock, flags);
1762 memcpy_fromio(p, tp->mmio_addr, regs->len);
1763 spin_unlock_irqrestore(&tp->lock, flags);
1764}
1765
Francois Romieu43afb942005-07-30 13:10:21 +02001766static int sis190_nway_reset(struct net_device *dev)
1767{
1768 struct sis190_private *tp = netdev_priv(dev);
1769
1770 return mii_nway_restart(&tp->mii_if);
1771}
1772
Francois Romieu890e8d02005-07-30 13:08:43 +02001773static u32 sis190_get_msglevel(struct net_device *dev)
1774{
1775 struct sis190_private *tp = netdev_priv(dev);
1776
1777 return tp->msg_enable;
1778}
1779
1780static void sis190_set_msglevel(struct net_device *dev, u32 value)
1781{
1782 struct sis190_private *tp = netdev_priv(dev);
1783
1784 tp->msg_enable = value;
1785}
1786
Jeff Garzik7282d492006-09-13 14:30:00 -04001787static const struct ethtool_ops sis190_ethtool_ops = {
Francois Romieu43afb942005-07-30 13:10:21 +02001788 .get_settings = sis190_get_settings,
1789 .set_settings = sis190_set_settings,
Francois Romieu890e8d02005-07-30 13:08:43 +02001790 .get_drvinfo = sis190_get_drvinfo,
1791 .get_regs_len = sis190_get_regs_len,
1792 .get_regs = sis190_get_regs,
1793 .get_link = ethtool_op_get_link,
1794 .get_msglevel = sis190_get_msglevel,
1795 .set_msglevel = sis190_set_msglevel,
Francois Romieu43afb942005-07-30 13:10:21 +02001796 .nway_reset = sis190_nway_reset,
Francois Romieu890e8d02005-07-30 13:08:43 +02001797};
1798
Francois Romieu43afb942005-07-30 13:10:21 +02001799static int sis190_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
1800{
1801 struct sis190_private *tp = netdev_priv(dev);
1802
1803 return !netif_running(dev) ? -EINVAL :
1804 generic_mii_ioctl(&tp->mii_if, if_mii(ifr), cmd, NULL);
1805}
1806
Stephen Hemminger97488c52009-01-07 17:35:41 -08001807static const struct net_device_ops sis190_netdev_ops = {
1808 .ndo_open = sis190_open,
1809 .ndo_stop = sis190_close,
1810 .ndo_do_ioctl = sis190_ioctl,
1811 .ndo_start_xmit = sis190_start_xmit,
1812 .ndo_tx_timeout = sis190_tx_timeout,
1813 .ndo_set_multicast_list = sis190_set_rx_mode,
1814 .ndo_change_mtu = eth_change_mtu,
1815 .ndo_set_mac_address = eth_mac_addr,
1816 .ndo_validate_addr = eth_validate_addr,
1817#ifdef CONFIG_NET_POLL_CONTROLLER
1818 .ndo_poll_controller = sis190_netpoll,
1819#endif
1820};
1821
Francois Romieu890e8d02005-07-30 13:08:43 +02001822static int __devinit sis190_init_one(struct pci_dev *pdev,
1823 const struct pci_device_id *ent)
1824{
1825 static int printed_version = 0;
1826 struct sis190_private *tp;
1827 struct net_device *dev;
1828 void __iomem *ioaddr;
Francois Romieu830fb7d2005-07-30 13:12:37 +02001829 int rc;
Francois Romieu890e8d02005-07-30 13:08:43 +02001830
1831 if (!printed_version) {
1832 net_drv(&debug, KERN_INFO SIS190_DRIVER_NAME " loaded.\n");
1833 printed_version = 1;
1834 }
1835
1836 dev = sis190_init_board(pdev);
1837 if (IS_ERR(dev)) {
1838 rc = PTR_ERR(dev);
1839 goto out;
1840 }
1841
Francois Romieu10487fb2006-02-16 22:17:00 +01001842 pci_set_drvdata(pdev, dev);
1843
Francois Romieu890e8d02005-07-30 13:08:43 +02001844 tp = netdev_priv(dev);
1845 ioaddr = tp->mmio_addr;
1846
Francois Romieu830fb7d2005-07-30 13:12:37 +02001847 rc = sis190_get_mac_addr(pdev, dev);
1848 if (rc < 0)
1849 goto err_release_board;
Francois Romieu890e8d02005-07-30 13:08:43 +02001850
Francois Romieu830fb7d2005-07-30 13:12:37 +02001851 sis190_init_rxfilter(dev);
Francois Romieu890e8d02005-07-30 13:08:43 +02001852
David Howellsc4028952006-11-22 14:57:56 +00001853 INIT_WORK(&tp->phy_task, sis190_phy_task);
Francois Romieu890e8d02005-07-30 13:08:43 +02001854
Stephen Hemminger97488c52009-01-07 17:35:41 -08001855 dev->netdev_ops = &sis190_netdev_ops;
1856
Francois Romieu890e8d02005-07-30 13:08:43 +02001857 SET_ETHTOOL_OPS(dev, &sis190_ethtool_ops);
1858 dev->irq = pdev->irq;
1859 dev->base_addr = (unsigned long) 0xdead;
Stephen Hemminger97488c52009-01-07 17:35:41 -08001860 dev->watchdog_timeo = SIS190_TX_TIMEOUT;
Francois Romieu890e8d02005-07-30 13:08:43 +02001861
1862 spin_lock_init(&tp->lock);
Francois Romieu890e8d02005-07-30 13:08:43 +02001863
Francois Romieufcb98212005-07-30 13:15:22 +02001864 rc = sis190_mii_probe(dev);
1865 if (rc < 0)
Francois Romieu3690b6c2005-08-26 00:30:37 +02001866 goto err_release_board;
1867
1868 rc = register_netdev(dev);
1869 if (rc < 0)
1870 goto err_remove_mii;
1871
Johannes Berge1749612008-10-27 15:59:26 -07001872 net_probe(tp, KERN_INFO "%s: %s at %p (IRQ: %d), %pM\n",
Joe Perches0795af52007-10-03 17:59:30 -07001873 pci_name(pdev), sis_chip_info[ent->driver_data].name,
Johannes Berge1749612008-10-27 15:59:26 -07001874 ioaddr, dev->irq, dev->dev_addr);
Francois Romieu890e8d02005-07-30 13:08:43 +02001875
Francois Romieu900eb9d2005-09-03 00:55:27 +02001876 net_probe(tp, KERN_INFO "%s: %s mode.\n", dev->name,
1877 (tp->features & F_HAS_RGMII) ? "RGMII" : "GMII");
1878
Francois Romieu890e8d02005-07-30 13:08:43 +02001879 netif_carrier_off(dev);
1880
1881 sis190_set_speed_auto(dev);
1882out:
1883 return rc;
Francois Romieu830fb7d2005-07-30 13:12:37 +02001884
Francois Romieu3690b6c2005-08-26 00:30:37 +02001885err_remove_mii:
1886 sis190_mii_remove(dev);
Francois Romieu830fb7d2005-07-30 13:12:37 +02001887err_release_board:
1888 sis190_release_board(pdev);
1889 goto out;
Francois Romieu890e8d02005-07-30 13:08:43 +02001890}
1891
1892static void __devexit sis190_remove_one(struct pci_dev *pdev)
1893{
1894 struct net_device *dev = pci_get_drvdata(pdev);
1895
Francois Romieufcb98212005-07-30 13:15:22 +02001896 sis190_mii_remove(dev);
Francois Romieuc014f6c2007-02-15 23:37:29 +01001897 flush_scheduled_work();
Francois Romieu890e8d02005-07-30 13:08:43 +02001898 unregister_netdev(dev);
1899 sis190_release_board(pdev);
1900 pci_set_drvdata(pdev, NULL);
1901}
1902
1903static struct pci_driver sis190_pci_driver = {
1904 .name = DRV_NAME,
1905 .id_table = sis190_pci_tbl,
1906 .probe = sis190_init_one,
1907 .remove = __devexit_p(sis190_remove_one),
1908};
1909
1910static int __init sis190_init_module(void)
1911{
Jeff Garzik29917622006-08-19 17:48:59 -04001912 return pci_register_driver(&sis190_pci_driver);
Francois Romieu890e8d02005-07-30 13:08:43 +02001913}
1914
1915static void __exit sis190_cleanup_module(void)
1916{
1917 pci_unregister_driver(&sis190_pci_driver);
1918}
1919
1920module_init(sis190_init_module);
1921module_exit(sis190_cleanup_module);