blob: 51de139491a0ba6e0a7ec7fdd776218d3fb2ec1e [file] [log] [blame]
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001/*
2 * tc35815.c: A TOSHIBA TC35815CF PCI 10/100Mbps ethernet driver for linux.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Based on skelton.c by Donald Becker.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09006 * This driver is a replacement of older and less maintained version.
7 * This is a header of the older version:
8 * -----<snip>-----
9 * Copyright 2001 MontaVista Software Inc.
10 * Author: MontaVista Software, Inc.
11 * ahennessy@mvista.com
12 * Copyright (C) 2000-2001 Toshiba Corporation
13 * static const char *version =
14 * "tc35815.c:v0.00 26/07/2000 by Toshiba Corporation\n";
15 * -----<snip>-----
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090017 * This file is subject to the terms and conditions of the GNU General Public
18 * License. See the file "COPYING" in the main directory of this archive
19 * for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 *
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090021 * (C) Copyright TOSHIBA CORPORATION 2004-2005
22 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090025#ifdef TC35815_NAPI
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090026#define DRV_VERSION "1.37-NAPI"
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090027#else
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090028#define DRV_VERSION "1.37"
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090029#endif
30static const char *version = "tc35815.c:v" DRV_VERSION "\n";
31#define MODNAME "tc35815"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <linux/module.h>
34#include <linux/kernel.h>
35#include <linux/types.h>
36#include <linux/fcntl.h>
37#include <linux/interrupt.h>
38#include <linux/ioport.h>
39#include <linux/in.h>
40#include <linux/slab.h>
41#include <linux/string.h>
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090042#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/errno.h>
44#include <linux/init.h>
45#include <linux/netdevice.h>
46#include <linux/etherdevice.h>
47#include <linux/skbuff.h>
48#include <linux/delay.h>
49#include <linux/pci.h>
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090050#include <linux/phy.h>
51#include <linux/workqueue.h>
Atsushi Nemotobd43da82007-06-29 22:34:53 +090052#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/byteorder.h>
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/* First, a few definitions that the brave might change. */
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define GATHER_TXINT /* On-Demand Tx Interrupt */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090059#define WORKAROUND_LOSTCAR
60#define WORKAROUND_100HALF_PROMISC
61/* #define TC35815_USE_PACKEDBUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090063enum tc35815_chiptype {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090064 TC35815CF = 0,
65 TC35815_NWU,
66 TC35815_TX4939,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090067};
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090068
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090069/* indexed by tc35815_chiptype, above */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090070static const struct {
71 const char *name;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090072} chip_info[] __devinitdata = {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090073 { "TOSHIBA TC35815CF 10/100BaseTX" },
74 { "TOSHIBA TC35815 with Wake on LAN" },
75 { "TOSHIBA TC35815/TX4939" },
76};
77
78static const struct pci_device_id tc35815_pci_tbl[] = {
79 {PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC35815CF), .driver_data = TC35815CF },
80 {PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC35815_NWU), .driver_data = TC35815_NWU },
81 {PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC35815_TX4939), .driver_data = TC35815_TX4939 },
82 {0,}
83};
Atsushi Nemoto7f225b42008-04-11 00:25:31 +090084MODULE_DEVICE_TABLE(pci, tc35815_pci_tbl);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090085
86/* see MODULE_PARM_DESC */
87static struct tc35815_options {
88 int speed;
89 int duplex;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090090} options;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
93 * Registers
94 */
95struct tc35815_regs {
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +090096 __u32 DMA_Ctl; /* 0x00 */
97 __u32 TxFrmPtr;
98 __u32 TxThrsh;
99 __u32 TxPollCtr;
100 __u32 BLFrmPtr;
101 __u32 RxFragSize;
102 __u32 Int_En;
103 __u32 FDA_Bas;
104 __u32 FDA_Lim; /* 0x20 */
105 __u32 Int_Src;
106 __u32 unused0[2];
107 __u32 PauseCnt;
108 __u32 RemPauCnt;
109 __u32 TxCtlFrmStat;
110 __u32 unused1;
111 __u32 MAC_Ctl; /* 0x40 */
112 __u32 CAM_Ctl;
113 __u32 Tx_Ctl;
114 __u32 Tx_Stat;
115 __u32 Rx_Ctl;
116 __u32 Rx_Stat;
117 __u32 MD_Data;
118 __u32 MD_CA;
119 __u32 CAM_Adr; /* 0x60 */
120 __u32 CAM_Data;
121 __u32 CAM_Ena;
122 __u32 PROM_Ctl;
123 __u32 PROM_Data;
124 __u32 Algn_Cnt;
125 __u32 CRC_Cnt;
126 __u32 Miss_Cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
129/*
130 * Bit assignments
131 */
132/* DMA_Ctl bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900133#define DMA_RxAlign 0x00c00000 /* 1:Reception Alignment */
134#define DMA_RxAlign_1 0x00400000
135#define DMA_RxAlign_2 0x00800000
136#define DMA_RxAlign_3 0x00c00000
137#define DMA_M66EnStat 0x00080000 /* 1:66MHz Enable State */
138#define DMA_IntMask 0x00040000 /* 1:Interupt mask */
139#define DMA_SWIntReq 0x00020000 /* 1:Software Interrupt request */
140#define DMA_TxWakeUp 0x00010000 /* 1:Transmit Wake Up */
141#define DMA_RxBigE 0x00008000 /* 1:Receive Big Endian */
142#define DMA_TxBigE 0x00004000 /* 1:Transmit Big Endian */
143#define DMA_TestMode 0x00002000 /* 1:Test Mode */
144#define DMA_PowrMgmnt 0x00001000 /* 1:Power Management */
145#define DMA_DmBurst_Mask 0x000001fc /* DMA Burst size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147/* RxFragSize bit asign ---------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900148#define RxFrag_EnPack 0x00008000 /* 1:Enable Packing */
149#define RxFrag_MinFragMask 0x00000ffc /* Minimum Fragment */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151/* MAC_Ctl bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900152#define MAC_Link10 0x00008000 /* 1:Link Status 10Mbits */
153#define MAC_EnMissRoll 0x00002000 /* 1:Enable Missed Roll */
154#define MAC_MissRoll 0x00000400 /* 1:Missed Roll */
155#define MAC_Loop10 0x00000080 /* 1:Loop 10 Mbps */
156#define MAC_Conn_Auto 0x00000000 /*00:Connection mode (Automatic) */
157#define MAC_Conn_10M 0x00000020 /*01: (10Mbps endec)*/
158#define MAC_Conn_Mll 0x00000040 /*10: (Mll clock) */
159#define MAC_MacLoop 0x00000010 /* 1:MAC Loopback */
160#define MAC_FullDup 0x00000008 /* 1:Full Duplex 0:Half Duplex */
161#define MAC_Reset 0x00000004 /* 1:Software Reset */
162#define MAC_HaltImm 0x00000002 /* 1:Halt Immediate */
163#define MAC_HaltReq 0x00000001 /* 1:Halt request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165/* PROM_Ctl bit asign ------------------------------------------------------ */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900166#define PROM_Busy 0x00008000 /* 1:Busy (Start Operation) */
167#define PROM_Read 0x00004000 /*10:Read operation */
168#define PROM_Write 0x00002000 /*01:Write operation */
169#define PROM_Erase 0x00006000 /*11:Erase operation */
170 /*00:Enable or Disable Writting, */
171 /* as specified in PROM_Addr. */
172#define PROM_Addr_Ena 0x00000030 /*11xxxx:PROM Write enable */
173 /*00xxxx: disable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175/* CAM_Ctl bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900176#define CAM_CompEn 0x00000010 /* 1:CAM Compare Enable */
177#define CAM_NegCAM 0x00000008 /* 1:Reject packets CAM recognizes,*/
178 /* accept other */
179#define CAM_BroadAcc 0x00000004 /* 1:Broadcast assept */
180#define CAM_GroupAcc 0x00000002 /* 1:Multicast assept */
181#define CAM_StationAcc 0x00000001 /* 1:unicast accept */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183/* CAM_Ena bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900184#define CAM_ENTRY_MAX 21 /* CAM Data entry max count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185#define CAM_Ena_Mask ((1<<CAM_ENTRY_MAX)-1) /* CAM Enable bits (Max 21bits) */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900186#define CAM_Ena_Bit(index) (1 << (index))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#define CAM_ENTRY_DESTINATION 0
188#define CAM_ENTRY_SOURCE 1
189#define CAM_ENTRY_MACCTL 20
190
191/* Tx_Ctl bit asign -------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900192#define Tx_En 0x00000001 /* 1:Transmit enable */
193#define Tx_TxHalt 0x00000002 /* 1:Transmit Halt Request */
194#define Tx_NoPad 0x00000004 /* 1:Suppress Padding */
195#define Tx_NoCRC 0x00000008 /* 1:Suppress Padding */
196#define Tx_FBack 0x00000010 /* 1:Fast Back-off */
197#define Tx_EnUnder 0x00000100 /* 1:Enable Underrun */
198#define Tx_EnExDefer 0x00000200 /* 1:Enable Excessive Deferral */
199#define Tx_EnLCarr 0x00000400 /* 1:Enable Lost Carrier */
200#define Tx_EnExColl 0x00000800 /* 1:Enable Excessive Collision */
201#define Tx_EnLateColl 0x00001000 /* 1:Enable Late Collision */
202#define Tx_EnTxPar 0x00002000 /* 1:Enable Transmit Parity */
203#define Tx_EnComp 0x00004000 /* 1:Enable Completion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205/* Tx_Stat bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900206#define Tx_TxColl_MASK 0x0000000F /* Tx Collision Count */
207#define Tx_ExColl 0x00000010 /* Excessive Collision */
208#define Tx_TXDefer 0x00000020 /* Transmit Defered */
209#define Tx_Paused 0x00000040 /* Transmit Paused */
210#define Tx_IntTx 0x00000080 /* Interrupt on Tx */
211#define Tx_Under 0x00000100 /* Underrun */
212#define Tx_Defer 0x00000200 /* Deferral */
213#define Tx_NCarr 0x00000400 /* No Carrier */
214#define Tx_10Stat 0x00000800 /* 10Mbps Status */
215#define Tx_LateColl 0x00001000 /* Late Collision */
216#define Tx_TxPar 0x00002000 /* Tx Parity Error */
217#define Tx_Comp 0x00004000 /* Completion */
218#define Tx_Halted 0x00008000 /* Tx Halted */
219#define Tx_SQErr 0x00010000 /* Signal Quality Error(SQE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221/* Rx_Ctl bit asign -------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900222#define Rx_EnGood 0x00004000 /* 1:Enable Good */
223#define Rx_EnRxPar 0x00002000 /* 1:Enable Receive Parity */
224#define Rx_EnLongErr 0x00000800 /* 1:Enable Long Error */
225#define Rx_EnOver 0x00000400 /* 1:Enable OverFlow */
226#define Rx_EnCRCErr 0x00000200 /* 1:Enable CRC Error */
227#define Rx_EnAlign 0x00000100 /* 1:Enable Alignment */
228#define Rx_IgnoreCRC 0x00000040 /* 1:Ignore CRC Value */
229#define Rx_StripCRC 0x00000010 /* 1:Strip CRC Value */
230#define Rx_ShortEn 0x00000008 /* 1:Short Enable */
231#define Rx_LongEn 0x00000004 /* 1:Long Enable */
232#define Rx_RxHalt 0x00000002 /* 1:Receive Halt Request */
233#define Rx_RxEn 0x00000001 /* 1:Receive Intrrupt Enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235/* Rx_Stat bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900236#define Rx_Halted 0x00008000 /* Rx Halted */
237#define Rx_Good 0x00004000 /* Rx Good */
238#define Rx_RxPar 0x00002000 /* Rx Parity Error */
Atsushi Nemoto842e08b2008-10-28 22:30:23 +0900239#define Rx_TypePkt 0x00001000 /* Rx Type Packet */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900240#define Rx_LongErr 0x00000800 /* Rx Long Error */
241#define Rx_Over 0x00000400 /* Rx Overflow */
242#define Rx_CRCErr 0x00000200 /* Rx CRC Error */
243#define Rx_Align 0x00000100 /* Rx Alignment Error */
244#define Rx_10Stat 0x00000080 /* Rx 10Mbps Status */
245#define Rx_IntRx 0x00000040 /* Rx Interrupt */
246#define Rx_CtlRecd 0x00000020 /* Rx Control Receive */
Atsushi Nemoto842e08b2008-10-28 22:30:23 +0900247#define Rx_InLenErr 0x00000010 /* Rx In Range Frame Length Error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Atsushi Nemoto842e08b2008-10-28 22:30:23 +0900249#define Rx_Stat_Mask 0x0000FFF0 /* Rx All Status Mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251/* Int_En bit asign -------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900252#define Int_NRAbtEn 0x00000800 /* 1:Non-recoverable Abort Enable */
253#define Int_TxCtlCmpEn 0x00000400 /* 1:Transmit Ctl Complete Enable */
254#define Int_DmParErrEn 0x00000200 /* 1:DMA Parity Error Enable */
255#define Int_DParDEn 0x00000100 /* 1:Data Parity Error Enable */
256#define Int_EarNotEn 0x00000080 /* 1:Early Notify Enable */
257#define Int_DParErrEn 0x00000040 /* 1:Detected Parity Error Enable */
258#define Int_SSysErrEn 0x00000020 /* 1:Signalled System Error Enable */
259#define Int_RMasAbtEn 0x00000010 /* 1:Received Master Abort Enable */
260#define Int_RTargAbtEn 0x00000008 /* 1:Received Target Abort Enable */
261#define Int_STargAbtEn 0x00000004 /* 1:Signalled Target Abort Enable */
262#define Int_BLExEn 0x00000002 /* 1:Buffer List Exhausted Enable */
263#define Int_FDAExEn 0x00000001 /* 1:Free Descriptor Area */
264 /* Exhausted Enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266/* Int_Src bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900267#define Int_NRabt 0x00004000 /* 1:Non Recoverable error */
268#define Int_DmParErrStat 0x00002000 /* 1:DMA Parity Error & Clear */
269#define Int_BLEx 0x00001000 /* 1:Buffer List Empty & Clear */
270#define Int_FDAEx 0x00000800 /* 1:FDA Empty & Clear */
271#define Int_IntNRAbt 0x00000400 /* 1:Non Recoverable Abort */
272#define Int_IntCmp 0x00000200 /* 1:MAC control packet complete */
273#define Int_IntExBD 0x00000100 /* 1:Interrupt Extra BD & Clear */
274#define Int_DmParErr 0x00000080 /* 1:DMA Parity Error & Clear */
275#define Int_IntEarNot 0x00000040 /* 1:Receive Data write & Clear */
276#define Int_SWInt 0x00000020 /* 1:Software request & Clear */
277#define Int_IntBLEx 0x00000010 /* 1:Buffer List Empty & Clear */
278#define Int_IntFDAEx 0x00000008 /* 1:FDA Empty & Clear */
279#define Int_IntPCI 0x00000004 /* 1:PCI controller & Clear */
280#define Int_IntMacRx 0x00000002 /* 1:Rx controller & Clear */
281#define Int_IntMacTx 0x00000001 /* 1:Tx controller & Clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283/* MD_CA bit asign --------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900284#define MD_CA_PreSup 0x00001000 /* 1:Preamble Supress */
285#define MD_CA_Busy 0x00000800 /* 1:Busy (Start Operation) */
286#define MD_CA_Wr 0x00000400 /* 1:Write 0:Read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289/*
290 * Descriptors
291 */
292
293/* Frame descripter */
294struct FDesc {
295 volatile __u32 FDNext;
296 volatile __u32 FDSystem;
297 volatile __u32 FDStat;
298 volatile __u32 FDCtl;
299};
300
301/* Buffer descripter */
302struct BDesc {
303 volatile __u32 BuffData;
304 volatile __u32 BDCtl;
305};
306
307#define FD_ALIGN 16
308
309/* Frame Descripter bit asign ---------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900310#define FD_FDLength_MASK 0x0000FFFF /* Length MASK */
311#define FD_BDCnt_MASK 0x001F0000 /* BD count MASK in FD */
312#define FD_FrmOpt_MASK 0x7C000000 /* Frame option MASK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313#define FD_FrmOpt_BigEndian 0x40000000 /* Tx/Rx */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900314#define FD_FrmOpt_IntTx 0x20000000 /* Tx only */
315#define FD_FrmOpt_NoCRC 0x10000000 /* Tx only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316#define FD_FrmOpt_NoPadding 0x08000000 /* Tx only */
317#define FD_FrmOpt_Packing 0x04000000 /* Rx only */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900318#define FD_CownsFD 0x80000000 /* FD Controller owner bit */
319#define FD_Next_EOL 0x00000001 /* FD EOL indicator */
320#define FD_BDCnt_SHIFT 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322/* Buffer Descripter bit asign --------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900323#define BD_BuffLength_MASK 0x0000FFFF /* Recieve Data Size */
324#define BD_RxBDID_MASK 0x00FF0000 /* BD ID Number MASK */
325#define BD_RxBDSeqN_MASK 0x7F000000 /* Rx BD Sequence Number */
326#define BD_CownsBD 0x80000000 /* BD Controller owner bit */
327#define BD_RxBDID_SHIFT 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328#define BD_RxBDSeqN_SHIFT 24
329
330
331/* Some useful constants. */
332#undef NO_CHECK_CARRIER /* Does not check No-Carrier with TP */
333
334#ifdef NO_CHECK_CARRIER
335#define TX_CTL_CMD (Tx_EnComp | Tx_EnTxPar | Tx_EnLateColl | \
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900336 Tx_EnExColl | Tx_EnExDefer | Tx_EnUnder | \
337 Tx_En) /* maybe 0x7b01 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338#else
339#define TX_CTL_CMD (Tx_EnComp | Tx_EnTxPar | Tx_EnLateColl | \
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900340 Tx_EnExColl | Tx_EnLCarr | Tx_EnExDefer | Tx_EnUnder | \
341 Tx_En) /* maybe 0x7b01 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342#endif
343#define RX_CTL_CMD (Rx_EnGood | Rx_EnRxPar | Rx_EnLongErr | Rx_EnOver \
344 | Rx_EnCRCErr | Rx_EnAlign | Rx_RxEn) /* maybe 0x6f01 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345#define INT_EN_CMD (Int_NRAbtEn | \
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900346 Int_DmParErrEn | Int_DParDEn | Int_DParErrEn | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 Int_SSysErrEn | Int_RMasAbtEn | Int_RTargAbtEn | \
348 Int_STargAbtEn | \
349 Int_BLExEn | Int_FDAExEn) /* maybe 0xb7f*/
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900350#define DMA_CTL_CMD DMA_BURST_SIZE
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900351#define HAVE_DMA_RXALIGN(lp) likely((lp)->chiptype != TC35815CF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353/* Tuning parameters */
354#define DMA_BURST_SIZE 32
355#define TX_THRESHOLD 1024
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900356/* used threshold with packet max byte for low pci transfer ability.*/
357#define TX_THRESHOLD_MAX 1536
358/* setting threshold max value when overrun error occured this count. */
359#define TX_THRESHOLD_KEEP_LIMIT 10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900361/* 16 + RX_BUF_NUM * 8 + RX_FD_NUM * 16 + TX_FD_NUM * 32 <= PAGE_SIZE*FD_PAGE_NUM */
362#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363#define FD_PAGE_NUM 2
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900364#define RX_BUF_NUM 8 /* >= 2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365#define RX_FD_NUM 250 /* >= 32 */
366#define TX_FD_NUM 128
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900367#define RX_BUF_SIZE PAGE_SIZE
368#else /* TC35815_USE_PACKEDBUFFER */
369#define FD_PAGE_NUM 4
370#define RX_BUF_NUM 128 /* < 256 */
371#define RX_FD_NUM 256 /* >= 32 */
372#define TX_FD_NUM 128
373#if RX_CTL_CMD & Rx_LongEn
374#define RX_BUF_SIZE PAGE_SIZE
375#elif RX_CTL_CMD & Rx_StripCRC
376#define RX_BUF_SIZE ALIGN(ETH_FRAME_LEN + 4 + 2, 32) /* +2: reserve */
377#else
378#define RX_BUF_SIZE ALIGN(ETH_FRAME_LEN + 2, 32) /* +2: reserve */
379#endif
380#endif /* TC35815_USE_PACKEDBUFFER */
381#define RX_FD_RESERVE (2 / 2) /* max 2 BD per RxFD */
382#define NAPI_WEIGHT 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384struct TxFD {
385 struct FDesc fd;
386 struct BDesc bd;
387 struct BDesc unused;
388};
389
390struct RxFD {
391 struct FDesc fd;
392 struct BDesc bd[0]; /* variable length */
393};
394
395struct FrFD {
396 struct FDesc fd;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900397 struct BDesc bd[RX_BUF_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398};
399
400
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900401#define tc_readl(addr) ioread32(addr)
402#define tc_writel(d, addr) iowrite32(d, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900404#define TC35815_TX_TIMEOUT msecs_to_jiffies(400)
405
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900406/* Information that need to be kept for each controller. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407struct tc35815_local {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900408 struct pci_dev *pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700410 struct net_device *dev;
411 struct napi_struct napi;
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 struct {
415 int max_tx_qlen;
416 int tx_ints;
417 int rx_ints;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900418 int tx_underrun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 } lstats;
420
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900421 /* Tx control lock. This protects the transmit buffer ring
422 * state along with the "tx full" state of the driver. This
423 * means all netif_queue flow control actions are protected
424 * by this lock as well.
425 */
426 spinlock_t lock;
427
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700428 struct mii_bus *mii_bus;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900429 struct phy_device *phy_dev;
430 int duplex;
431 int speed;
432 int link;
433 struct work_struct restart_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 /*
436 * Transmitting: Batch Mode.
437 * 1 BD in 1 TxFD.
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900438 * Receiving: Packing Mode. (TC35815_USE_PACKEDBUFFER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 * 1 circular FD for Free Buffer List.
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900440 * RX_BUF_NUM BD in Free Buffer FD.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * One Free Buffer BD has PAGE_SIZE data buffer.
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900442 * Or Non-Packing Mode.
443 * 1 circular FD for Free Buffer List.
444 * RX_BUF_NUM BD in Free Buffer FD.
445 * One Free Buffer BD has ETH_FRAME_LEN data buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900447 void *fd_buf; /* for TxFD, RxFD, FrFD */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900448 dma_addr_t fd_buf_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 struct TxFD *tfd_base;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900450 unsigned int tfd_start;
451 unsigned int tfd_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct RxFD *rfd_base;
453 struct RxFD *rfd_limit;
454 struct RxFD *rfd_cur;
455 struct FrFD *fbl_ptr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900456#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 unsigned char fbl_curid;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900458 void *data_buf[RX_BUF_NUM]; /* packing */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900459 dma_addr_t data_buf_dma[RX_BUF_NUM];
460 struct {
461 struct sk_buff *skb;
462 dma_addr_t skb_dma;
463 } tx_skbs[TX_FD_NUM];
464#else
465 unsigned int fbl_count;
466 struct {
467 struct sk_buff *skb;
468 dma_addr_t skb_dma;
469 } tx_skbs[TX_FD_NUM], rx_skbs[RX_BUF_NUM];
470#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900471 u32 msg_enable;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900472 enum tc35815_chiptype chiptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473};
474
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900475static inline dma_addr_t fd_virt_to_bus(struct tc35815_local *lp, void *virt)
476{
477 return lp->fd_buf_dma + ((u8 *)virt - (u8 *)lp->fd_buf);
478}
479#ifdef DEBUG
480static inline void *fd_bus_to_virt(struct tc35815_local *lp, dma_addr_t bus)
481{
482 return (void *)((u8 *)lp->fd_buf + (bus - lp->fd_buf_dma));
483}
484#endif
485#ifdef TC35815_USE_PACKEDBUFFER
486static inline void *rxbuf_bus_to_virt(struct tc35815_local *lp, dma_addr_t bus)
487{
488 int i;
489 for (i = 0; i < RX_BUF_NUM; i++) {
490 if (bus >= lp->data_buf_dma[i] &&
491 bus < lp->data_buf_dma[i] + PAGE_SIZE)
492 return (void *)((u8 *)lp->data_buf[i] +
493 (bus - lp->data_buf_dma[i]));
494 }
495 return NULL;
496}
497
498#define TC35815_DMA_SYNC_ONDEMAND
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900499static void *alloc_rxbuf_page(struct pci_dev *hwdev, dma_addr_t *dma_handle)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900500{
501#ifdef TC35815_DMA_SYNC_ONDEMAND
502 void *buf;
503 /* pci_map + pci_dma_sync will be more effective than
504 * pci_alloc_consistent on some archs. */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900505 buf = (void *)__get_free_page(GFP_ATOMIC);
506 if (!buf)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900507 return NULL;
508 *dma_handle = pci_map_single(hwdev, buf, PAGE_SIZE,
509 PCI_DMA_FROMDEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700510 if (pci_dma_mapping_error(hwdev, *dma_handle)) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900511 free_page((unsigned long)buf);
512 return NULL;
513 }
514 return buf;
515#else
516 return pci_alloc_consistent(hwdev, PAGE_SIZE, dma_handle);
517#endif
518}
519
520static void free_rxbuf_page(struct pci_dev *hwdev, void *buf, dma_addr_t dma_handle)
521{
522#ifdef TC35815_DMA_SYNC_ONDEMAND
523 pci_unmap_single(hwdev, dma_handle, PAGE_SIZE, PCI_DMA_FROMDEVICE);
524 free_page((unsigned long)buf);
525#else
526 pci_free_consistent(hwdev, PAGE_SIZE, buf, dma_handle);
527#endif
528}
529#else /* TC35815_USE_PACKEDBUFFER */
530static struct sk_buff *alloc_rxbuf_skb(struct net_device *dev,
531 struct pci_dev *hwdev,
532 dma_addr_t *dma_handle)
533{
534 struct sk_buff *skb;
535 skb = dev_alloc_skb(RX_BUF_SIZE);
536 if (!skb)
537 return NULL;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900538 *dma_handle = pci_map_single(hwdev, skb->data, RX_BUF_SIZE,
539 PCI_DMA_FROMDEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700540 if (pci_dma_mapping_error(hwdev, *dma_handle)) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900541 dev_kfree_skb_any(skb);
542 return NULL;
543 }
544 skb_reserve(skb, 2); /* make IP header 4byte aligned */
545 return skb;
546}
547
548static void free_rxbuf_skb(struct pci_dev *hwdev, struct sk_buff *skb, dma_addr_t dma_handle)
549{
550 pci_unmap_single(hwdev, dma_handle, RX_BUF_SIZE,
551 PCI_DMA_FROMDEVICE);
552 dev_kfree_skb_any(skb);
553}
554#endif /* TC35815_USE_PACKEDBUFFER */
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556/* Index to functions, as function prototypes. */
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558static int tc35815_open(struct net_device *dev);
559static int tc35815_send_packet(struct sk_buff *skb, struct net_device *dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900560static irqreturn_t tc35815_interrupt(int irq, void *dev_id);
561#ifdef TC35815_NAPI
562static int tc35815_rx(struct net_device *dev, int limit);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700563static int tc35815_poll(struct napi_struct *napi, int budget);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900564#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565static void tc35815_rx(struct net_device *dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900566#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567static void tc35815_txdone(struct net_device *dev);
568static int tc35815_close(struct net_device *dev);
569static struct net_device_stats *tc35815_get_stats(struct net_device *dev);
570static void tc35815_set_multicast_list(struct net_device *dev);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900571static void tc35815_tx_timeout(struct net_device *dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900572static int tc35815_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
573#ifdef CONFIG_NET_POLL_CONTROLLER
574static void tc35815_poll_controller(struct net_device *dev);
575#endif
576static const struct ethtool_ops tc35815_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900578/* Example routines you must write ;->. */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900579static void tc35815_chip_reset(struct net_device *dev);
580static void tc35815_chip_init(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900582#ifdef DEBUG
583static void panic_queues(struct net_device *dev);
584#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900586static void tc35815_restart_work(struct work_struct *work);
587
588static int tc_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
589{
590 struct net_device *dev = bus->priv;
591 struct tc35815_regs __iomem *tr =
592 (struct tc35815_regs __iomem *)dev->base_addr;
593 unsigned long timeout = jiffies + 10;
594
595 tc_writel(MD_CA_Busy | (mii_id << 5) | (regnum & 0x1f), &tr->MD_CA);
596 while (tc_readl(&tr->MD_CA) & MD_CA_Busy) {
597 if (time_after(jiffies, timeout))
598 return -EIO;
599 cpu_relax();
600 }
601 return tc_readl(&tr->MD_Data) & 0xffff;
602}
603
604static int tc_mdio_write(struct mii_bus *bus, int mii_id, int regnum, u16 val)
605{
606 struct net_device *dev = bus->priv;
607 struct tc35815_regs __iomem *tr =
608 (struct tc35815_regs __iomem *)dev->base_addr;
609 unsigned long timeout = jiffies + 10;
610
611 tc_writel(val, &tr->MD_Data);
612 tc_writel(MD_CA_Busy | MD_CA_Wr | (mii_id << 5) | (regnum & 0x1f),
613 &tr->MD_CA);
614 while (tc_readl(&tr->MD_CA) & MD_CA_Busy) {
615 if (time_after(jiffies, timeout))
616 return -EIO;
617 cpu_relax();
618 }
619 return 0;
620}
621
622static void tc_handle_link_change(struct net_device *dev)
623{
624 struct tc35815_local *lp = netdev_priv(dev);
625 struct phy_device *phydev = lp->phy_dev;
626 unsigned long flags;
627 int status_change = 0;
628
629 spin_lock_irqsave(&lp->lock, flags);
630 if (phydev->link &&
631 (lp->speed != phydev->speed || lp->duplex != phydev->duplex)) {
632 struct tc35815_regs __iomem *tr =
633 (struct tc35815_regs __iomem *)dev->base_addr;
634 u32 reg;
635
636 reg = tc_readl(&tr->MAC_Ctl);
637 reg |= MAC_HaltReq;
638 tc_writel(reg, &tr->MAC_Ctl);
639 if (phydev->duplex == DUPLEX_FULL)
640 reg |= MAC_FullDup;
641 else
642 reg &= ~MAC_FullDup;
643 tc_writel(reg, &tr->MAC_Ctl);
644 reg &= ~MAC_HaltReq;
645 tc_writel(reg, &tr->MAC_Ctl);
646
647 /*
648 * TX4939 PCFG.SPEEDn bit will be changed on
649 * NETDEV_CHANGE event.
650 */
651
652#if !defined(NO_CHECK_CARRIER) && defined(WORKAROUND_LOSTCAR)
653 /*
654 * WORKAROUND: enable LostCrS only if half duplex
655 * operation.
656 * (TX4939 does not have EnLCarr)
657 */
658 if (phydev->duplex == DUPLEX_HALF &&
659 lp->chiptype != TC35815_TX4939)
660 tc_writel(tc_readl(&tr->Tx_Ctl) | Tx_EnLCarr,
661 &tr->Tx_Ctl);
662#endif
663
664 lp->speed = phydev->speed;
665 lp->duplex = phydev->duplex;
666 status_change = 1;
667 }
668
669 if (phydev->link != lp->link) {
670 if (phydev->link) {
671#ifdef WORKAROUND_100HALF_PROMISC
672 /* delayed promiscuous enabling */
673 if (dev->flags & IFF_PROMISC)
674 tc35815_set_multicast_list(dev);
675#endif
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900676 } else {
677 lp->speed = 0;
678 lp->duplex = -1;
679 }
680 lp->link = phydev->link;
681
682 status_change = 1;
683 }
684 spin_unlock_irqrestore(&lp->lock, flags);
685
686 if (status_change && netif_msg_link(lp)) {
687 phy_print_status(phydev);
688#ifdef DEBUG
689 printk(KERN_DEBUG
690 "%s: MII BMCR %04x BMSR %04x LPA %04x\n",
691 dev->name,
692 phy_read(phydev, MII_BMCR),
693 phy_read(phydev, MII_BMSR),
694 phy_read(phydev, MII_LPA));
695#endif
696 }
697}
698
699static int tc_mii_probe(struct net_device *dev)
700{
701 struct tc35815_local *lp = netdev_priv(dev);
702 struct phy_device *phydev = NULL;
703 int phy_addr;
704 u32 dropmask;
705
706 /* find the first phy */
707 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700708 if (lp->mii_bus->phy_map[phy_addr]) {
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900709 if (phydev) {
710 printk(KERN_ERR "%s: multiple PHYs found\n",
711 dev->name);
712 return -EINVAL;
713 }
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700714 phydev = lp->mii_bus->phy_map[phy_addr];
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900715 break;
716 }
717 }
718
719 if (!phydev) {
720 printk(KERN_ERR "%s: no PHY found\n", dev->name);
721 return -ENODEV;
722 }
723
724 /* attach the mac to the phy */
725 phydev = phy_connect(dev, phydev->dev.bus_id,
726 &tc_handle_link_change, 0,
727 lp->chiptype == TC35815_TX4939 ?
728 PHY_INTERFACE_MODE_RMII : PHY_INTERFACE_MODE_MII);
729 if (IS_ERR(phydev)) {
730 printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
731 return PTR_ERR(phydev);
732 }
733 printk(KERN_INFO "%s: attached PHY driver [%s] "
734 "(mii_bus:phy_addr=%s, id=%x)\n",
735 dev->name, phydev->drv->name, phydev->dev.bus_id,
736 phydev->phy_id);
737
738 /* mask with MAC supported features */
739 phydev->supported &= PHY_BASIC_FEATURES;
740 dropmask = 0;
741 if (options.speed == 10)
742 dropmask |= SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full;
743 else if (options.speed == 100)
744 dropmask |= SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full;
745 if (options.duplex == 1)
746 dropmask |= SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Full;
747 else if (options.duplex == 2)
748 dropmask |= SUPPORTED_10baseT_Half | SUPPORTED_100baseT_Half;
749 phydev->supported &= ~dropmask;
750 phydev->advertising = phydev->supported;
751
752 lp->link = 0;
753 lp->speed = 0;
754 lp->duplex = -1;
755 lp->phy_dev = phydev;
756
757 return 0;
758}
759
760static int tc_mii_init(struct net_device *dev)
761{
762 struct tc35815_local *lp = netdev_priv(dev);
763 int err;
764 int i;
765
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700766 lp->mii_bus = mdiobus_alloc();
767 if (lp->mii_bus == NULL) {
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900768 err = -ENOMEM;
769 goto err_out;
770 }
771
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700772 lp->mii_bus->name = "tc35815_mii_bus";
773 lp->mii_bus->read = tc_mdio_read;
774 lp->mii_bus->write = tc_mdio_write;
775 snprintf(lp->mii_bus->id, MII_BUS_ID_SIZE, "%x",
776 (lp->pci_dev->bus->number << 8) | lp->pci_dev->devfn);
777 lp->mii_bus->priv = dev;
778 lp->mii_bus->parent = &lp->pci_dev->dev;
779 lp->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
780 if (!lp->mii_bus->irq) {
781 err = -ENOMEM;
782 goto err_out_free_mii_bus;
783 }
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900784
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700785 for (i = 0; i < PHY_MAX_ADDR; i++)
786 lp->mii_bus->irq[i] = PHY_POLL;
787
788 err = mdiobus_register(lp->mii_bus);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900789 if (err)
790 goto err_out_free_mdio_irq;
791 err = tc_mii_probe(dev);
792 if (err)
793 goto err_out_unregister_bus;
794 return 0;
795
796err_out_unregister_bus:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700797 mdiobus_unregister(lp->mii_bus);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900798err_out_free_mdio_irq:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700799 kfree(lp->mii_bus->irq);
Adrian Bunk51cf7562008-10-12 21:01:53 -0700800err_out_free_mii_bus:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700801 mdiobus_free(lp->mii_bus);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900802err_out:
803 return err;
804}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900806#ifdef CONFIG_CPU_TX49XX
807/*
808 * Find a platform_device providing a MAC address. The platform code
809 * should provide a "tc35815-mac" device with a MAC address in its
810 * platform_data.
811 */
812static int __devinit tc35815_mac_match(struct device *dev, void *data)
813{
814 struct platform_device *plat_dev = to_platform_device(dev);
815 struct pci_dev *pci_dev = data;
Atsushi Nemoto06675e62008-01-19 01:15:52 +0900816 unsigned int id = pci_dev->irq;
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900817 return !strcmp(plat_dev->name, "tc35815-mac") && plat_dev->id == id;
818}
819
820static int __devinit tc35815_read_plat_dev_addr(struct net_device *dev)
821{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +0900822 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900823 struct device *pd = bus_find_device(&platform_bus_type, NULL,
824 lp->pci_dev, tc35815_mac_match);
825 if (pd) {
826 if (pd->platform_data)
827 memcpy(dev->dev_addr, pd->platform_data, ETH_ALEN);
828 put_device(pd);
829 return is_valid_ether_addr(dev->dev_addr) ? 0 : -ENODEV;
830 }
831 return -ENODEV;
832}
833#else
Yoichi Yuasa308a9062007-07-18 11:13:42 +0900834static int __devinit tc35815_read_plat_dev_addr(struct net_device *dev)
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900835{
836 return -ENODEV;
837}
838#endif
839
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900840static int __devinit tc35815_init_dev_addr(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900842 struct tc35815_regs __iomem *tr =
843 (struct tc35815_regs __iomem *)dev->base_addr;
844 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 while (tc_readl(&tr->PROM_Ctl) & PROM_Busy)
847 ;
848 for (i = 0; i < 6; i += 2) {
849 unsigned short data;
850 tc_writel(PROM_Busy | PROM_Read | (i / 2 + 2), &tr->PROM_Ctl);
851 while (tc_readl(&tr->PROM_Ctl) & PROM_Busy)
852 ;
853 data = tc_readl(&tr->PROM_Data);
854 dev->dev_addr[i] = data & 0xff;
855 dev->dev_addr[i+1] = data >> 8;
856 }
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900857 if (!is_valid_ether_addr(dev->dev_addr))
858 return tc35815_read_plat_dev_addr(dev);
859 return 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900860}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900862static int __devinit tc35815_init_one(struct pci_dev *pdev,
863 const struct pci_device_id *ent)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900864{
865 void __iomem *ioaddr = NULL;
866 struct net_device *dev;
867 struct tc35815_local *lp;
868 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900870 static int printed_version;
871 if (!printed_version++) {
872 printk(version);
873 dev_printk(KERN_DEBUG, &pdev->dev,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900874 "speed:%d duplex:%d\n",
875 options.speed, options.duplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900878 if (!pdev->irq) {
879 dev_warn(&pdev->dev, "no IRQ assigned.\n");
880 return -ENODEV;
881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900883 /* dev zeroed in alloc_etherdev */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900884 dev = alloc_etherdev(sizeof(*lp));
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900885 if (dev == NULL) {
886 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
887 return -ENOMEM;
888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 SET_NETDEV_DEV(dev, &pdev->dev);
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +0900890 lp = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700891 lp->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900893 /* enable device (incl. PCI PM wakeup), and bus-mastering */
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900894 rc = pcim_enable_device(pdev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900895 if (rc)
896 goto err_out;
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900897 rc = pcim_iomap_regions(pdev, 1 << 1, MODNAME);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900898 if (rc)
899 goto err_out;
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900900 pci_set_master(pdev);
901 ioaddr = pcim_iomap_table(pdev)[1];
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900902
903 /* Initialize the device structure. */
904 dev->open = tc35815_open;
905 dev->hard_start_xmit = tc35815_send_packet;
906 dev->stop = tc35815_close;
907 dev->get_stats = tc35815_get_stats;
908 dev->set_multicast_list = tc35815_set_multicast_list;
909 dev->do_ioctl = tc35815_ioctl;
910 dev->ethtool_ops = &tc35815_ethtool_ops;
911 dev->tx_timeout = tc35815_tx_timeout;
912 dev->watchdog_timeo = TC35815_TX_TIMEOUT;
913#ifdef TC35815_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700914 netif_napi_add(dev, &lp->napi, tc35815_poll, NAPI_WEIGHT);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900915#endif
916#ifdef CONFIG_NET_POLL_CONTROLLER
917 dev->poll_controller = tc35815_poll_controller;
918#endif
919
920 dev->irq = pdev->irq;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900921 dev->base_addr = (unsigned long)ioaddr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900922
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900923 INIT_WORK(&lp->restart_work, tc35815_restart_work);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900924 spin_lock_init(&lp->lock);
925 lp->pci_dev = pdev;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900926 lp->chiptype = ent->driver_data;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900927
928 lp->msg_enable = NETIF_MSG_TX_ERR | NETIF_MSG_HW | NETIF_MSG_DRV | NETIF_MSG_LINK;
929 pci_set_drvdata(pdev, dev);
930
931 /* Soft reset the chip. */
932 tc35815_chip_reset(dev);
933
934 /* Retrieve the ethernet address. */
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900935 if (tc35815_init_dev_addr(dev)) {
936 dev_warn(&pdev->dev, "not valid ether addr\n");
937 random_ether_addr(dev->dev_addr);
938 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900939
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900940 rc = register_netdev(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900941 if (rc)
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900942 goto err_out;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900943
944 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Johannes Berge1749612008-10-27 15:59:26 -0700945 printk(KERN_INFO "%s: %s at 0x%lx, %pM, IRQ %d\n",
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900946 dev->name,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900947 chip_info[ent->driver_data].name,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900948 dev->base_addr,
Johannes Berge1749612008-10-27 15:59:26 -0700949 dev->dev_addr,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900950 dev->irq);
951
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900952 rc = tc_mii_init(dev);
953 if (rc)
954 goto err_out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 return 0;
957
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900958err_out_unregister:
959 unregister_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960err_out:
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900961 free_netdev(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900962 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
965
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900966static void __devexit tc35815_remove_one(struct pci_dev *pdev)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900967{
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900968 struct net_device *dev = pci_get_drvdata(pdev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900969 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900970
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900971 phy_disconnect(lp->phy_dev);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700972 mdiobus_unregister(lp->mii_bus);
973 kfree(lp->mii_bus->irq);
974 mdiobus_free(lp->mii_bus);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900975 unregister_netdev(dev);
976 free_netdev(dev);
977 pci_set_drvdata(pdev, NULL);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900978}
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980static int
981tc35815_init_queues(struct net_device *dev)
982{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +0900983 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 int i;
985 unsigned long fd_addr;
986
987 if (!lp->fd_buf) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900988 BUG_ON(sizeof(struct FDesc) +
989 sizeof(struct BDesc) * RX_BUF_NUM +
990 sizeof(struct FDesc) * RX_FD_NUM +
991 sizeof(struct TxFD) * TX_FD_NUM >
992 PAGE_SIZE * FD_PAGE_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900994 lp->fd_buf = pci_alloc_consistent(lp->pci_dev,
995 PAGE_SIZE * FD_PAGE_NUM,
996 &lp->fd_buf_dma);
997 if (!lp->fd_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return -ENOMEM;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900999 for (i = 0; i < RX_BUF_NUM; i++) {
1000#ifdef TC35815_USE_PACKEDBUFFER
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001001 lp->data_buf[i] =
1002 alloc_rxbuf_page(lp->pci_dev,
1003 &lp->data_buf_dma[i]);
1004 if (!lp->data_buf[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 while (--i >= 0) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001006 free_rxbuf_page(lp->pci_dev,
1007 lp->data_buf[i],
1008 lp->data_buf_dma[i]);
1009 lp->data_buf[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001011 pci_free_consistent(lp->pci_dev,
1012 PAGE_SIZE * FD_PAGE_NUM,
1013 lp->fd_buf,
1014 lp->fd_buf_dma);
1015 lp->fd_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return -ENOMEM;
1017 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001018#else
1019 lp->rx_skbs[i].skb =
1020 alloc_rxbuf_skb(dev, lp->pci_dev,
1021 &lp->rx_skbs[i].skb_dma);
1022 if (!lp->rx_skbs[i].skb) {
1023 while (--i >= 0) {
1024 free_rxbuf_skb(lp->pci_dev,
1025 lp->rx_skbs[i].skb,
1026 lp->rx_skbs[i].skb_dma);
1027 lp->rx_skbs[i].skb = NULL;
1028 }
1029 pci_free_consistent(lp->pci_dev,
1030 PAGE_SIZE * FD_PAGE_NUM,
1031 lp->fd_buf,
1032 lp->fd_buf_dma);
1033 lp->fd_buf = NULL;
1034 return -ENOMEM;
1035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036#endif
1037 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001038 printk(KERN_DEBUG "%s: FD buf %p DataBuf",
1039 dev->name, lp->fd_buf);
1040#ifdef TC35815_USE_PACKEDBUFFER
1041 printk(" DataBuf");
1042 for (i = 0; i < RX_BUF_NUM; i++)
1043 printk(" %p", lp->data_buf[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001045 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 } else {
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001047 for (i = 0; i < FD_PAGE_NUM; i++)
1048 clear_page((void *)((unsigned long)lp->fd_buf +
1049 i * PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 fd_addr = (unsigned long)lp->fd_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 /* Free Descriptors (for Receive) */
1054 lp->rfd_base = (struct RxFD *)fd_addr;
1055 fd_addr += sizeof(struct RxFD) * RX_FD_NUM;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001056 for (i = 0; i < RX_FD_NUM; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 lp->rfd_base[i].fd.FDCtl = cpu_to_le32(FD_CownsFD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 lp->rfd_cur = lp->rfd_base;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001059 lp->rfd_limit = (struct RxFD *)fd_addr - (RX_FD_RESERVE + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 /* Transmit Descriptors */
1062 lp->tfd_base = (struct TxFD *)fd_addr;
1063 fd_addr += sizeof(struct TxFD) * TX_FD_NUM;
1064 for (i = 0; i < TX_FD_NUM; i++) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001065 lp->tfd_base[i].fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, &lp->tfd_base[i+1]));
1066 lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 lp->tfd_base[i].fd.FDCtl = cpu_to_le32(0);
1068 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001069 lp->tfd_base[TX_FD_NUM-1].fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, &lp->tfd_base[0]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 lp->tfd_start = 0;
1071 lp->tfd_end = 0;
1072
1073 /* Buffer List (for Receive) */
1074 lp->fbl_ptr = (struct FrFD *)fd_addr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001075 lp->fbl_ptr->fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, lp->fbl_ptr));
1076 lp->fbl_ptr->fd.FDCtl = cpu_to_le32(RX_BUF_NUM | FD_CownsFD);
1077#ifndef TC35815_USE_PACKEDBUFFER
1078 /*
1079 * move all allocated skbs to head of rx_skbs[] array.
1080 * fbl_count mighe not be RX_BUF_NUM if alloc_rxbuf_skb() in
1081 * tc35815_rx() had failed.
1082 */
1083 lp->fbl_count = 0;
1084 for (i = 0; i < RX_BUF_NUM; i++) {
1085 if (lp->rx_skbs[i].skb) {
1086 if (i != lp->fbl_count) {
1087 lp->rx_skbs[lp->fbl_count].skb =
1088 lp->rx_skbs[i].skb;
1089 lp->rx_skbs[lp->fbl_count].skb_dma =
1090 lp->rx_skbs[i].skb_dma;
1091 }
1092 lp->fbl_count++;
1093 }
1094 }
1095#endif
1096 for (i = 0; i < RX_BUF_NUM; i++) {
1097#ifdef TC35815_USE_PACKEDBUFFER
1098 lp->fbl_ptr->bd[i].BuffData = cpu_to_le32(lp->data_buf_dma[i]);
1099#else
1100 if (i >= lp->fbl_count) {
1101 lp->fbl_ptr->bd[i].BuffData = 0;
1102 lp->fbl_ptr->bd[i].BDCtl = 0;
1103 continue;
1104 }
1105 lp->fbl_ptr->bd[i].BuffData =
1106 cpu_to_le32(lp->rx_skbs[i].skb_dma);
1107#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* BDID is index of FrFD.bd[] */
1109 lp->fbl_ptr->bd[i].BDCtl =
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001110 cpu_to_le32(BD_CownsBD | (i << BD_RxBDID_SHIFT) |
1111 RX_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001113#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 lp->fbl_curid = 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001117 printk(KERN_DEBUG "%s: TxFD %p RxFD %p FrFD %p\n",
1118 dev->name, lp->tfd_base, lp->rfd_base, lp->fbl_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return 0;
1120}
1121
1122static void
1123tc35815_clear_queues(struct net_device *dev)
1124{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001125 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 int i;
1127
1128 for (i = 0; i < TX_FD_NUM; i++) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001129 u32 fdsystem = le32_to_cpu(lp->tfd_base[i].fd.FDSystem);
1130 struct sk_buff *skb =
1131 fdsystem != 0xffffffff ?
1132 lp->tx_skbs[fdsystem].skb : NULL;
1133#ifdef DEBUG
1134 if (lp->tx_skbs[i].skb != skb) {
1135 printk("%s: tx_skbs mismatch(%d).\n", dev->name, i);
1136 panic_queues(dev);
1137 }
1138#else
1139 BUG_ON(lp->tx_skbs[i].skb != skb);
1140#endif
1141 if (skb) {
1142 pci_unmap_single(lp->pci_dev, lp->tx_skbs[i].skb_dma, skb->len, PCI_DMA_TODEVICE);
1143 lp->tx_skbs[i].skb = NULL;
1144 lp->tx_skbs[i].skb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 dev_kfree_skb_any(skb);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001146 }
1147 lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149
1150 tc35815_init_queues(dev);
1151}
1152
1153static void
1154tc35815_free_queues(struct net_device *dev)
1155{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001156 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 int i;
1158
1159 if (lp->tfd_base) {
1160 for (i = 0; i < TX_FD_NUM; i++) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001161 u32 fdsystem = le32_to_cpu(lp->tfd_base[i].fd.FDSystem);
1162 struct sk_buff *skb =
1163 fdsystem != 0xffffffff ?
1164 lp->tx_skbs[fdsystem].skb : NULL;
1165#ifdef DEBUG
1166 if (lp->tx_skbs[i].skb != skb) {
1167 printk("%s: tx_skbs mismatch(%d).\n", dev->name, i);
1168 panic_queues(dev);
1169 }
1170#else
1171 BUG_ON(lp->tx_skbs[i].skb != skb);
1172#endif
1173 if (skb) {
1174 dev_kfree_skb(skb);
1175 pci_unmap_single(lp->pci_dev, lp->tx_skbs[i].skb_dma, skb->len, PCI_DMA_TODEVICE);
1176 lp->tx_skbs[i].skb = NULL;
1177 lp->tx_skbs[i].skb_dma = 0;
1178 }
1179 lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 }
1181 }
1182
1183 lp->rfd_base = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 lp->rfd_limit = NULL;
1185 lp->rfd_cur = NULL;
1186 lp->fbl_ptr = NULL;
1187
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001188 for (i = 0; i < RX_BUF_NUM; i++) {
1189#ifdef TC35815_USE_PACKEDBUFFER
1190 if (lp->data_buf[i]) {
1191 free_rxbuf_page(lp->pci_dev,
1192 lp->data_buf[i], lp->data_buf_dma[i]);
1193 lp->data_buf[i] = NULL;
1194 }
1195#else
1196 if (lp->rx_skbs[i].skb) {
1197 free_rxbuf_skb(lp->pci_dev, lp->rx_skbs[i].skb,
1198 lp->rx_skbs[i].skb_dma);
1199 lp->rx_skbs[i].skb = NULL;
1200 }
1201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001203 if (lp->fd_buf) {
1204 pci_free_consistent(lp->pci_dev, PAGE_SIZE * FD_PAGE_NUM,
1205 lp->fd_buf, lp->fd_buf_dma);
1206 lp->fd_buf = NULL;
1207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
1210static void
1211dump_txfd(struct TxFD *fd)
1212{
1213 printk("TxFD(%p): %08x %08x %08x %08x\n", fd,
1214 le32_to_cpu(fd->fd.FDNext),
1215 le32_to_cpu(fd->fd.FDSystem),
1216 le32_to_cpu(fd->fd.FDStat),
1217 le32_to_cpu(fd->fd.FDCtl));
1218 printk("BD: ");
1219 printk(" %08x %08x",
1220 le32_to_cpu(fd->bd.BuffData),
1221 le32_to_cpu(fd->bd.BDCtl));
1222 printk("\n");
1223}
1224
1225static int
1226dump_rxfd(struct RxFD *fd)
1227{
1228 int i, bd_count = (le32_to_cpu(fd->fd.FDCtl) & FD_BDCnt_MASK) >> FD_BDCnt_SHIFT;
1229 if (bd_count > 8)
1230 bd_count = 8;
1231 printk("RxFD(%p): %08x %08x %08x %08x\n", fd,
1232 le32_to_cpu(fd->fd.FDNext),
1233 le32_to_cpu(fd->fd.FDSystem),
1234 le32_to_cpu(fd->fd.FDStat),
1235 le32_to_cpu(fd->fd.FDCtl));
1236 if (le32_to_cpu(fd->fd.FDCtl) & FD_CownsFD)
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 printk("BD: ");
1239 for (i = 0; i < bd_count; i++)
1240 printk(" %08x %08x",
1241 le32_to_cpu(fd->bd[i].BuffData),
1242 le32_to_cpu(fd->bd[i].BDCtl));
1243 printk("\n");
1244 return bd_count;
1245}
1246
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001247#if defined(DEBUG) || defined(TC35815_USE_PACKEDBUFFER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248static void
1249dump_frfd(struct FrFD *fd)
1250{
1251 int i;
1252 printk("FrFD(%p): %08x %08x %08x %08x\n", fd,
1253 le32_to_cpu(fd->fd.FDNext),
1254 le32_to_cpu(fd->fd.FDSystem),
1255 le32_to_cpu(fd->fd.FDStat),
1256 le32_to_cpu(fd->fd.FDCtl));
1257 printk("BD: ");
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001258 for (i = 0; i < RX_BUF_NUM; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 printk(" %08x %08x",
1260 le32_to_cpu(fd->bd[i].BuffData),
1261 le32_to_cpu(fd->bd[i].BDCtl));
1262 printk("\n");
1263}
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001264#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001266#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267static void
1268panic_queues(struct net_device *dev)
1269{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001270 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 int i;
1272
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001273 printk("TxFD base %p, start %u, end %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 lp->tfd_base, lp->tfd_start, lp->tfd_end);
1275 printk("RxFD base %p limit %p cur %p\n",
1276 lp->rfd_base, lp->rfd_limit, lp->rfd_cur);
1277 printk("FrFD %p\n", lp->fbl_ptr);
1278 for (i = 0; i < TX_FD_NUM; i++)
1279 dump_txfd(&lp->tfd_base[i]);
1280 for (i = 0; i < RX_FD_NUM; i++) {
1281 int bd_count = dump_rxfd(&lp->rfd_base[i]);
1282 i += (bd_count + 1) / 2; /* skip BDs */
1283 }
1284 dump_frfd(lp->fbl_ptr);
1285 panic("%s: Illegal queue state.", dev->name);
1286}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287#endif
1288
Atsushi Nemoto958eb802008-04-11 00:24:24 +09001289static void print_eth(const u8 *add)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Atsushi Nemoto958eb802008-04-11 00:24:24 +09001291 printk(KERN_DEBUG "print_eth(%p)\n", add);
Johannes Berge1749612008-10-27 15:59:26 -07001292 printk(KERN_DEBUG " %pM => %pM : %02x%02x\n",
1293 add + 6, add, add[12], add[13]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001296static int tc35815_tx_full(struct net_device *dev)
1297{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001298 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001299 return ((lp->tfd_start + 1) % TX_FD_NUM == lp->tfd_end);
1300}
1301
1302static void tc35815_restart(struct net_device *dev)
1303{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001304 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001305
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001306 if (lp->phy_dev) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001307 int timeout;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001308
1309 phy_write(lp->phy_dev, MII_BMCR, BMCR_RESET);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001310 timeout = 100;
1311 while (--timeout) {
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001312 if (!(phy_read(lp->phy_dev, MII_BMCR) & BMCR_RESET))
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001313 break;
1314 udelay(1);
1315 }
1316 if (!timeout)
1317 printk(KERN_ERR "%s: BMCR reset failed.\n", dev->name);
1318 }
1319
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001320 spin_lock_irq(&lp->lock);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001321 tc35815_chip_reset(dev);
1322 tc35815_clear_queues(dev);
1323 tc35815_chip_init(dev);
1324 /* Reconfigure CAM again since tc35815_chip_init() initialize it. */
1325 tc35815_set_multicast_list(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001326 spin_unlock_irq(&lp->lock);
1327
1328 netif_wake_queue(dev);
1329}
1330
1331static void tc35815_restart_work(struct work_struct *work)
1332{
1333 struct tc35815_local *lp =
1334 container_of(work, struct tc35815_local, restart_work);
1335 struct net_device *dev = lp->dev;
1336
1337 tc35815_restart(dev);
1338}
1339
1340static void tc35815_schedule_restart(struct net_device *dev)
1341{
1342 struct tc35815_local *lp = netdev_priv(dev);
1343 struct tc35815_regs __iomem *tr =
1344 (struct tc35815_regs __iomem *)dev->base_addr;
1345
1346 /* disable interrupts */
1347 tc_writel(0, &tr->Int_En);
1348 tc_writel(tc_readl(&tr->DMA_Ctl) | DMA_IntMask, &tr->DMA_Ctl);
1349 schedule_work(&lp->restart_work);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001350}
1351
1352static void tc35815_tx_timeout(struct net_device *dev)
1353{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001354 struct tc35815_regs __iomem *tr =
1355 (struct tc35815_regs __iomem *)dev->base_addr;
1356
1357 printk(KERN_WARNING "%s: transmit timed out, status %#x\n",
1358 dev->name, tc_readl(&tr->Tx_Stat));
1359
1360 /* Try to restart the adaptor. */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001361 tc35815_schedule_restart(dev);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001362 dev->stats.tx_errors++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001363}
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365/*
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001366 * Open/initialize the controller. This is called (in the current kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 * sometime after booting when the 'ifconfig' program is run.
1368 *
1369 * This routine should set everything up anew at each open, even
1370 * registers that "should" only need to be set once at boot, so that
1371 * there is non-reboot way to recover if something goes wrong.
1372 */
1373static int
1374tc35815_open(struct net_device *dev)
1375{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001376 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 /*
1379 * This is used if the interrupt line can turned off (shared).
1380 * See 3c503.c for an example of selecting the IRQ at config-time.
1381 */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001382 if (request_irq(dev->irq, &tc35815_interrupt, IRQF_SHARED,
1383 dev->name, dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 tc35815_chip_reset(dev);
1387
1388 if (tc35815_init_queues(dev) != 0) {
1389 free_irq(dev->irq, dev);
1390 return -EAGAIN;
1391 }
1392
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001393#ifdef TC35815_NAPI
1394 napi_enable(&lp->napi);
1395#endif
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 /* Reset the hardware here. Don't forget to set the station address. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001398 spin_lock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 tc35815_chip_init(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001400 spin_unlock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Atsushi Nemoto59524a32008-06-25 11:41:01 +09001402 netif_carrier_off(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001403 /* schedule a link state check */
1404 phy_start(lp->phy_dev);
1405
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001406 /* We are now ready to accept transmit requeusts from
1407 * the queueing layer of the networking.
1408 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 netif_start_queue(dev);
1410
1411 return 0;
1412}
1413
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001414/* This will only be invoked if your driver is _not_ in XOFF state.
1415 * What this means is that you need not check it, and that this
1416 * invariant will hold if you make sure that the netif_*_queue()
1417 * calls are done at the proper times.
1418 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419static int tc35815_send_packet(struct sk_buff *skb, struct net_device *dev)
1420{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001421 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001422 struct TxFD *txfd;
1423 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001425 /* If some error occurs while trying to transmit this
1426 * packet, you should return '1' from this function.
1427 * In such a case you _may not_ do anything to the
1428 * SKB, it is still owned by the network queueing
1429 * layer when an error is returned. This means you
1430 * may not modify any SKB fields, you may not free
1431 * the SKB, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001434 /* This is the most common case for modern hardware.
1435 * The spinlock protects this code from the TX complete
1436 * hardware interrupt handler. Queue flow control is
1437 * thus managed under this lock as well.
1438 */
1439 spin_lock_irqsave(&lp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001441 /* failsafe... (handle txdone now if half of FDs are used) */
1442 if ((lp->tfd_start + TX_FD_NUM - lp->tfd_end) % TX_FD_NUM >
1443 TX_FD_NUM / 2)
1444 tc35815_txdone(dev);
1445
1446 if (netif_msg_pktdata(lp))
1447 print_eth(skb->data);
1448#ifdef DEBUG
1449 if (lp->tx_skbs[lp->tfd_start].skb) {
1450 printk("%s: tx_skbs conflict.\n", dev->name);
1451 panic_queues(dev);
1452 }
1453#else
1454 BUG_ON(lp->tx_skbs[lp->tfd_start].skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001456 lp->tx_skbs[lp->tfd_start].skb = skb;
1457 lp->tx_skbs[lp->tfd_start].skb_dma = pci_map_single(lp->pci_dev, skb->data, skb->len, PCI_DMA_TODEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001459 /*add to ring */
1460 txfd = &lp->tfd_base[lp->tfd_start];
1461 txfd->bd.BuffData = cpu_to_le32(lp->tx_skbs[lp->tfd_start].skb_dma);
1462 txfd->bd.BDCtl = cpu_to_le32(skb->len);
1463 txfd->fd.FDSystem = cpu_to_le32(lp->tfd_start);
1464 txfd->fd.FDCtl = cpu_to_le32(FD_CownsFD | (1 << FD_BDCnt_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001466 if (lp->tfd_start == lp->tfd_end) {
1467 struct tc35815_regs __iomem *tr =
1468 (struct tc35815_regs __iomem *)dev->base_addr;
1469 /* Start DMA Transmitter. */
1470 txfd->fd.FDNext |= cpu_to_le32(FD_Next_EOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471#ifdef GATHER_TXINT
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001472 txfd->fd.FDCtl |= cpu_to_le32(FD_FrmOpt_IntTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001474 if (netif_msg_tx_queued(lp)) {
1475 printk("%s: starting TxFD.\n", dev->name);
1476 dump_txfd(txfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001478 tc_writel(fd_virt_to_bus(lp, txfd), &tr->TxFrmPtr);
1479 } else {
1480 txfd->fd.FDNext &= cpu_to_le32(~FD_Next_EOL);
1481 if (netif_msg_tx_queued(lp)) {
1482 printk("%s: queueing TxFD.\n", dev->name);
1483 dump_txfd(txfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001485 }
1486 lp->tfd_start = (lp->tfd_start + 1) % TX_FD_NUM;
1487
1488 dev->trans_start = jiffies;
1489
1490 /* If we just used up the very last entry in the
1491 * TX ring on this device, tell the queueing
1492 * layer to send no more.
1493 */
1494 if (tc35815_tx_full(dev)) {
1495 if (netif_msg_tx_queued(lp))
1496 printk(KERN_WARNING "%s: TxFD Exhausted.\n", dev->name);
1497 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
1499
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001500 /* When the TX completion hw interrupt arrives, this
1501 * is when the transmit statistics are updated.
1502 */
1503
1504 spin_unlock_irqrestore(&lp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return 0;
1506}
1507
1508#define FATAL_ERROR_INT \
1509 (Int_IntPCI | Int_DmParErr | Int_IntNRAbt)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001510static void tc35815_fatal_error_interrupt(struct net_device *dev, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 static int count;
1513 printk(KERN_WARNING "%s: Fatal Error Intterrupt (%#x):",
1514 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (status & Int_IntPCI)
1516 printk(" IntPCI");
1517 if (status & Int_DmParErr)
1518 printk(" DmParErr");
1519 if (status & Int_IntNRAbt)
1520 printk(" IntNRAbt");
1521 printk("\n");
1522 if (count++ > 100)
1523 panic("%s: Too many fatal errors.", dev->name);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001524 printk(KERN_WARNING "%s: Resetting ...\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 /* Try to restart the adaptor. */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001526 tc35815_schedule_restart(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001527}
1528
1529#ifdef TC35815_NAPI
1530static int tc35815_do_interrupt(struct net_device *dev, u32 status, int limit)
1531#else
1532static int tc35815_do_interrupt(struct net_device *dev, u32 status)
1533#endif
1534{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001535 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001536 struct tc35815_regs __iomem *tr =
1537 (struct tc35815_regs __iomem *)dev->base_addr;
1538 int ret = -1;
1539
1540 /* Fatal errors... */
1541 if (status & FATAL_ERROR_INT) {
1542 tc35815_fatal_error_interrupt(dev, status);
1543 return 0;
1544 }
1545 /* recoverable errors */
1546 if (status & Int_IntFDAEx) {
1547 /* disable FDAEx int. (until we make rooms...) */
1548 tc_writel(tc_readl(&tr->Int_En) & ~Int_FDAExEn, &tr->Int_En);
1549 printk(KERN_WARNING
1550 "%s: Free Descriptor Area Exhausted (%#x).\n",
1551 dev->name, status);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001552 dev->stats.rx_dropped++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001553 ret = 0;
1554 }
1555 if (status & Int_IntBLEx) {
1556 /* disable BLEx int. (until we make rooms...) */
1557 tc_writel(tc_readl(&tr->Int_En) & ~Int_BLExEn, &tr->Int_En);
1558 printk(KERN_WARNING
1559 "%s: Buffer List Exhausted (%#x).\n",
1560 dev->name, status);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001561 dev->stats.rx_dropped++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001562 ret = 0;
1563 }
1564 if (status & Int_IntExBD) {
1565 printk(KERN_WARNING
1566 "%s: Excessive Buffer Descriptiors (%#x).\n",
1567 dev->name, status);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001568 dev->stats.rx_length_errors++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001569 ret = 0;
1570 }
1571
1572 /* normal notification */
1573 if (status & Int_IntMacRx) {
1574 /* Got a packet(s). */
1575#ifdef TC35815_NAPI
1576 ret = tc35815_rx(dev, limit);
1577#else
1578 tc35815_rx(dev);
1579 ret = 0;
1580#endif
1581 lp->lstats.rx_ints++;
1582 }
1583 if (status & Int_IntMacTx) {
1584 /* Transmit complete. */
1585 lp->lstats.tx_ints++;
1586 tc35815_txdone(dev);
1587 netif_wake_queue(dev);
1588 ret = 0;
1589 }
1590 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
1593/*
1594 * The typical workload of the driver:
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001595 * Handle the network interface interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 */
David Howells7d12e782006-10-05 14:55:46 +01001597static irqreturn_t tc35815_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 struct net_device *dev = dev_id;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001600 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001601 struct tc35815_regs __iomem *tr =
1602 (struct tc35815_regs __iomem *)dev->base_addr;
1603#ifdef TC35815_NAPI
1604 u32 dmactl = tc_readl(&tr->DMA_Ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001606 if (!(dmactl & DMA_IntMask)) {
1607 /* disable interrupts */
1608 tc_writel(dmactl | DMA_IntMask, &tr->DMA_Ctl);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001609 if (netif_rx_schedule_prep(dev, &lp->napi))
1610 __netif_rx_schedule(dev, &lp->napi);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001611 else {
1612 printk(KERN_ERR "%s: interrupt taken in poll\n",
1613 dev->name);
1614 BUG();
1615 }
1616 (void)tc_readl(&tr->Int_Src); /* flush */
1617 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001619 return IRQ_NONE;
1620#else
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001621 int handled;
1622 u32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001624 spin_lock(&lp->lock);
1625 status = tc_readl(&tr->Int_Src);
1626 tc_writel(status, &tr->Int_Src); /* write to clear */
1627 handled = tc35815_do_interrupt(dev, status);
1628 (void)tc_readl(&tr->Int_Src); /* flush */
1629 spin_unlock(&lp->lock);
1630 return IRQ_RETVAL(handled >= 0);
1631#endif /* TC35815_NAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001634#ifdef CONFIG_NET_POLL_CONTROLLER
1635static void tc35815_poll_controller(struct net_device *dev)
1636{
1637 disable_irq(dev->irq);
1638 tc35815_interrupt(dev->irq, dev);
1639 enable_irq(dev->irq);
1640}
1641#endif
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643/* We have a good packet(s), get it/them out of the buffers. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001644#ifdef TC35815_NAPI
1645static int
1646tc35815_rx(struct net_device *dev, int limit)
1647#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648static void
1649tc35815_rx(struct net_device *dev)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001650#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001652 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 unsigned int fdctl;
1654 int i;
1655 int buf_free_count = 0;
1656 int fd_free_count = 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001657#ifdef TC35815_NAPI
1658 int received = 0;
1659#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661 while (!((fdctl = le32_to_cpu(lp->rfd_cur->fd.FDCtl)) & FD_CownsFD)) {
1662 int status = le32_to_cpu(lp->rfd_cur->fd.FDStat);
1663 int pkt_len = fdctl & FD_FDLength_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 int bd_count = (fdctl & FD_BDCnt_MASK) >> FD_BDCnt_SHIFT;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001665#ifdef DEBUG
1666 struct RxFD *next_rfd;
1667#endif
1668#if (RX_CTL_CMD & Rx_StripCRC) == 0
1669 pkt_len -= 4;
1670#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001672 if (netif_msg_rx_status(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 dump_rxfd(lp->rfd_cur);
1674 if (status & Rx_Good) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 struct sk_buff *skb;
1676 unsigned char *data;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001677 int cur_bd;
1678#ifdef TC35815_USE_PACKEDBUFFER
1679 int offset;
1680#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001682#ifdef TC35815_NAPI
1683 if (--limit < 0)
1684 break;
1685#endif
1686#ifdef TC35815_USE_PACKEDBUFFER
1687 BUG_ON(bd_count > 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 skb = dev_alloc_skb(pkt_len + 2); /* +2: for reserve */
1689 if (skb == NULL) {
1690 printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n",
1691 dev->name);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001692 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 break;
1694 }
1695 skb_reserve(skb, 2); /* 16 bit alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 data = skb_put(skb, pkt_len);
1698
1699 /* copy from receive buffer */
1700 cur_bd = 0;
1701 offset = 0;
1702 while (offset < pkt_len && cur_bd < bd_count) {
1703 int len = le32_to_cpu(lp->rfd_cur->bd[cur_bd].BDCtl) &
1704 BD_BuffLength_MASK;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001705 dma_addr_t dma = le32_to_cpu(lp->rfd_cur->bd[cur_bd].BuffData);
1706 void *rxbuf = rxbuf_bus_to_virt(lp, dma);
1707 if (offset + len > pkt_len)
1708 len = pkt_len - offset;
1709#ifdef TC35815_DMA_SYNC_ONDEMAND
1710 pci_dma_sync_single_for_cpu(lp->pci_dev,
1711 dma, len,
1712 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713#endif
1714 memcpy(data + offset, rxbuf, len);
Atsushi Nemoto793bc0a2007-03-14 01:02:20 +09001715#ifdef TC35815_DMA_SYNC_ONDEMAND
1716 pci_dma_sync_single_for_device(lp->pci_dev,
1717 dma, len,
1718 PCI_DMA_FROMDEVICE);
1719#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 offset += len;
1721 cur_bd++;
1722 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001723#else /* TC35815_USE_PACKEDBUFFER */
1724 BUG_ON(bd_count > 1);
1725 cur_bd = (le32_to_cpu(lp->rfd_cur->bd[0].BDCtl)
1726 & BD_RxBDID_MASK) >> BD_RxBDID_SHIFT;
1727#ifdef DEBUG
1728 if (cur_bd >= RX_BUF_NUM) {
1729 printk("%s: invalid BDID.\n", dev->name);
1730 panic_queues(dev);
1731 }
1732 BUG_ON(lp->rx_skbs[cur_bd].skb_dma !=
1733 (le32_to_cpu(lp->rfd_cur->bd[0].BuffData) & ~3));
1734 if (!lp->rx_skbs[cur_bd].skb) {
1735 printk("%s: NULL skb.\n", dev->name);
1736 panic_queues(dev);
1737 }
1738#else
1739 BUG_ON(cur_bd >= RX_BUF_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001741 skb = lp->rx_skbs[cur_bd].skb;
1742 prefetch(skb->data);
1743 lp->rx_skbs[cur_bd].skb = NULL;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001744 pci_unmap_single(lp->pci_dev,
1745 lp->rx_skbs[cur_bd].skb_dma,
1746 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1747 if (!HAVE_DMA_RXALIGN(lp))
1748 memmove(skb->data, skb->data - 2, pkt_len);
1749 data = skb_put(skb, pkt_len);
1750#endif /* TC35815_USE_PACKEDBUFFER */
1751 if (netif_msg_pktdata(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 print_eth(data);
1753 skb->protocol = eth_type_trans(skb, dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001754#ifdef TC35815_NAPI
1755 netif_receive_skb(skb);
1756 received++;
1757#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 netif_rx(skb);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001759#endif
1760 dev->last_rx = jiffies;
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001761 dev->stats.rx_packets++;
1762 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 } else {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001764 dev->stats.rx_errors++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001765 printk(KERN_DEBUG "%s: Rx error (status %x)\n",
1766 dev->name, status & Rx_Stat_Mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /* WORKAROUND: LongErr and CRCErr means Overflow. */
1768 if ((status & Rx_LongErr) && (status & Rx_CRCErr)) {
1769 status &= ~(Rx_LongErr|Rx_CRCErr);
1770 status |= Rx_Over;
1771 }
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001772 if (status & Rx_LongErr)
1773 dev->stats.rx_length_errors++;
1774 if (status & Rx_Over)
1775 dev->stats.rx_fifo_errors++;
1776 if (status & Rx_CRCErr)
1777 dev->stats.rx_crc_errors++;
1778 if (status & Rx_Align)
1779 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
1781
1782 if (bd_count > 0) {
1783 /* put Free Buffer back to controller */
1784 int bdctl = le32_to_cpu(lp->rfd_cur->bd[bd_count - 1].BDCtl);
1785 unsigned char id =
1786 (bdctl & BD_RxBDID_MASK) >> BD_RxBDID_SHIFT;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001787#ifdef DEBUG
1788 if (id >= RX_BUF_NUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 printk("%s: invalid BDID.\n", dev->name);
1790 panic_queues(dev);
1791 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001792#else
1793 BUG_ON(id >= RX_BUF_NUM);
1794#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 /* free old buffers */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001796#ifdef TC35815_USE_PACKEDBUFFER
1797 while (lp->fbl_curid != id)
1798#else
Atsushi Nemotoccc57aa2008-06-26 17:14:15 +09001799 lp->fbl_count--;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001800 while (lp->fbl_count < RX_BUF_NUM)
1801#endif
1802 {
1803#ifdef TC35815_USE_PACKEDBUFFER
1804 unsigned char curid = lp->fbl_curid;
1805#else
1806 unsigned char curid =
1807 (id + 1 + lp->fbl_count) % RX_BUF_NUM;
1808#endif
1809 struct BDesc *bd = &lp->fbl_ptr->bd[curid];
1810#ifdef DEBUG
1811 bdctl = le32_to_cpu(bd->BDCtl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 if (bdctl & BD_CownsBD) {
1813 printk("%s: Freeing invalid BD.\n",
1814 dev->name);
1815 panic_queues(dev);
1816 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001817#endif
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001818 /* pass BD to controller */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001819#ifndef TC35815_USE_PACKEDBUFFER
1820 if (!lp->rx_skbs[curid].skb) {
1821 lp->rx_skbs[curid].skb =
1822 alloc_rxbuf_skb(dev,
1823 lp->pci_dev,
1824 &lp->rx_skbs[curid].skb_dma);
1825 if (!lp->rx_skbs[curid].skb)
1826 break; /* try on next reception */
1827 bd->BuffData = cpu_to_le32(lp->rx_skbs[curid].skb_dma);
1828 }
1829#endif /* TC35815_USE_PACKEDBUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 /* Note: BDLength was modified by chip. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001831 bd->BDCtl = cpu_to_le32(BD_CownsBD |
1832 (curid << BD_RxBDID_SHIFT) |
1833 RX_BUF_SIZE);
1834#ifdef TC35815_USE_PACKEDBUFFER
1835 lp->fbl_curid = (curid + 1) % RX_BUF_NUM;
1836 if (netif_msg_rx_status(lp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 printk("%s: Entering new FBD %d\n",
1838 dev->name, lp->fbl_curid);
1839 dump_frfd(lp->fbl_ptr);
1840 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001841#else
1842 lp->fbl_count++;
1843#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 buf_free_count++;
1845 }
1846 }
1847
1848 /* put RxFD back to controller */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001849#ifdef DEBUG
1850 next_rfd = fd_bus_to_virt(lp,
1851 le32_to_cpu(lp->rfd_cur->fd.FDNext));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 if (next_rfd < lp->rfd_base || next_rfd > lp->rfd_limit) {
1853 printk("%s: RxFD FDNext invalid.\n", dev->name);
1854 panic_queues(dev);
1855 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 for (i = 0; i < (bd_count + 1) / 2 + 1; i++) {
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001858 /* pass FD to controller */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001859#ifdef DEBUG
1860 lp->rfd_cur->fd.FDNext = cpu_to_le32(0xdeaddead);
1861#else
1862 lp->rfd_cur->fd.FDNext = cpu_to_le32(FD_Next_EOL);
1863#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 lp->rfd_cur->fd.FDCtl = cpu_to_le32(FD_CownsFD);
1865 lp->rfd_cur++;
1866 fd_free_count++;
1867 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001868 if (lp->rfd_cur > lp->rfd_limit)
1869 lp->rfd_cur = lp->rfd_base;
1870#ifdef DEBUG
1871 if (lp->rfd_cur != next_rfd)
1872 printk("rfd_cur = %p, next_rfd %p\n",
1873 lp->rfd_cur, next_rfd);
1874#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
1876
1877 /* re-enable BL/FDA Exhaust interrupts. */
1878 if (fd_free_count) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001879 struct tc35815_regs __iomem *tr =
1880 (struct tc35815_regs __iomem *)dev->base_addr;
1881 u32 en, en_old = tc_readl(&tr->Int_En);
1882 en = en_old | Int_FDAExEn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 if (buf_free_count)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001884 en |= Int_BLExEn;
1885 if (en != en_old)
1886 tc_writel(en, &tr->Int_En);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001888#ifdef TC35815_NAPI
1889 return received;
1890#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
1892
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001893#ifdef TC35815_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001894static int tc35815_poll(struct napi_struct *napi, int budget)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001895{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001896 struct tc35815_local *lp = container_of(napi, struct tc35815_local, napi);
1897 struct net_device *dev = lp->dev;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001898 struct tc35815_regs __iomem *tr =
1899 (struct tc35815_regs __iomem *)dev->base_addr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001900 int received = 0, handled;
1901 u32 status;
1902
1903 spin_lock(&lp->lock);
1904 status = tc_readl(&tr->Int_Src);
1905 do {
1906 tc_writel(status, &tr->Int_Src); /* write to clear */
1907
1908 handled = tc35815_do_interrupt(dev, status, limit);
1909 if (handled >= 0) {
1910 received += handled;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001911 if (received >= budget)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001912 break;
1913 }
1914 status = tc_readl(&tr->Int_Src);
1915 } while (status);
1916 spin_unlock(&lp->lock);
1917
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001918 if (received < budget) {
1919 netif_rx_complete(dev, napi);
1920 /* enable interrupts */
1921 tc_writel(tc_readl(&tr->DMA_Ctl) & ~DMA_IntMask, &tr->DMA_Ctl);
1922 }
1923 return received;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001924}
1925#endif
1926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927#ifdef NO_CHECK_CARRIER
1928#define TX_STA_ERR (Tx_ExColl|Tx_Under|Tx_Defer|Tx_LateColl|Tx_TxPar|Tx_SQErr)
1929#else
1930#define TX_STA_ERR (Tx_ExColl|Tx_Under|Tx_Defer|Tx_NCarr|Tx_LateColl|Tx_TxPar|Tx_SQErr)
1931#endif
1932
1933static void
1934tc35815_check_tx_stat(struct net_device *dev, int status)
1935{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001936 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 const char *msg = NULL;
1938
1939 /* count collisions */
1940 if (status & Tx_ExColl)
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001941 dev->stats.collisions += 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if (status & Tx_TxColl_MASK)
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001943 dev->stats.collisions += status & Tx_TxColl_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001945#ifndef NO_CHECK_CARRIER
1946 /* TX4939 does not have NCarr */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001947 if (lp->chiptype == TC35815_TX4939)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 status &= ~Tx_NCarr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001949#ifdef WORKAROUND_LOSTCAR
1950 /* WORKAROUND: ignore LostCrS in full duplex operation */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001951 if (!lp->link || lp->duplex == DUPLEX_FULL)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001952 status &= ~Tx_NCarr;
1953#endif
1954#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 if (!(status & TX_STA_ERR)) {
1957 /* no error. */
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001958 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 return;
1960 }
1961
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001962 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (status & Tx_ExColl) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001964 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 msg = "Excessive Collision.";
1966 }
1967 if (status & Tx_Under) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001968 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 msg = "Tx FIFO Underrun.";
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001970 if (lp->lstats.tx_underrun < TX_THRESHOLD_KEEP_LIMIT) {
1971 lp->lstats.tx_underrun++;
1972 if (lp->lstats.tx_underrun >= TX_THRESHOLD_KEEP_LIMIT) {
1973 struct tc35815_regs __iomem *tr =
1974 (struct tc35815_regs __iomem *)dev->base_addr;
1975 tc_writel(TX_THRESHOLD_MAX, &tr->TxThrsh);
1976 msg = "Tx FIFO Underrun.Change Tx threshold to max.";
1977 }
1978 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
1980 if (status & Tx_Defer) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001981 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 msg = "Excessive Deferral.";
1983 }
1984#ifndef NO_CHECK_CARRIER
1985 if (status & Tx_NCarr) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001986 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 msg = "Lost Carrier Sense.";
1988 }
1989#endif
1990 if (status & Tx_LateColl) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001991 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 msg = "Late Collision.";
1993 }
1994 if (status & Tx_TxPar) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001995 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 msg = "Transmit Parity Error.";
1997 }
1998 if (status & Tx_SQErr) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001999 dev->stats.tx_heartbeat_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 msg = "Signal Quality Error.";
2001 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002002 if (msg && netif_msg_tx_err(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 printk(KERN_WARNING "%s: %s (%#x)\n", dev->name, msg, status);
2004}
2005
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002006/* This handles TX complete events posted by the device
2007 * via interrupts.
2008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009static void
2010tc35815_txdone(struct net_device *dev)
2011{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002012 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 struct TxFD *txfd;
2014 unsigned int fdctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
2016 txfd = &lp->tfd_base[lp->tfd_end];
2017 while (lp->tfd_start != lp->tfd_end &&
2018 !((fdctl = le32_to_cpu(txfd->fd.FDCtl)) & FD_CownsFD)) {
2019 int status = le32_to_cpu(txfd->fd.FDStat);
2020 struct sk_buff *skb;
2021 unsigned long fdnext = le32_to_cpu(txfd->fd.FDNext);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002022 u32 fdsystem = le32_to_cpu(txfd->fd.FDSystem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002024 if (netif_msg_tx_done(lp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 printk("%s: complete TxFD.\n", dev->name);
2026 dump_txfd(txfd);
2027 }
2028 tc35815_check_tx_stat(dev, status);
2029
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002030 skb = fdsystem != 0xffffffff ?
2031 lp->tx_skbs[fdsystem].skb : NULL;
2032#ifdef DEBUG
2033 if (lp->tx_skbs[lp->tfd_end].skb != skb) {
2034 printk("%s: tx_skbs mismatch.\n", dev->name);
2035 panic_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002037#else
2038 BUG_ON(lp->tx_skbs[lp->tfd_end].skb != skb);
2039#endif
2040 if (skb) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002041 dev->stats.tx_bytes += skb->len;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002042 pci_unmap_single(lp->pci_dev, lp->tx_skbs[lp->tfd_end].skb_dma, skb->len, PCI_DMA_TODEVICE);
2043 lp->tx_skbs[lp->tfd_end].skb = NULL;
2044 lp->tx_skbs[lp->tfd_end].skb_dma = 0;
2045#ifdef TC35815_NAPI
2046 dev_kfree_skb_any(skb);
2047#else
2048 dev_kfree_skb_irq(skb);
2049#endif
2050 }
2051 txfd->fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 lp->tfd_end = (lp->tfd_end + 1) % TX_FD_NUM;
2054 txfd = &lp->tfd_base[lp->tfd_end];
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002055#ifdef DEBUG
2056 if ((fdnext & ~FD_Next_EOL) != fd_virt_to_bus(lp, txfd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 printk("%s: TxFD FDNext invalid.\n", dev->name);
2058 panic_queues(dev);
2059 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002060#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (fdnext & FD_Next_EOL) {
2062 /* DMA Transmitter has been stopping... */
2063 if (lp->tfd_end != lp->tfd_start) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002064 struct tc35815_regs __iomem *tr =
2065 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 int head = (lp->tfd_start + TX_FD_NUM - 1) % TX_FD_NUM;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002067 struct TxFD *txhead = &lp->tfd_base[head];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 int qlen = (lp->tfd_start + TX_FD_NUM
2069 - lp->tfd_end) % TX_FD_NUM;
2070
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002071#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 if (!(le32_to_cpu(txfd->fd.FDCtl) & FD_CownsFD)) {
2073 printk("%s: TxFD FDCtl invalid.\n", dev->name);
2074 panic_queues(dev);
2075 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002076#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 /* log max queue length */
2078 if (lp->lstats.max_tx_qlen < qlen)
2079 lp->lstats.max_tx_qlen = qlen;
2080
2081
2082 /* start DMA Transmitter again */
2083 txhead->fd.FDNext |= cpu_to_le32(FD_Next_EOL);
2084#ifdef GATHER_TXINT
2085 txhead->fd.FDCtl |= cpu_to_le32(FD_FrmOpt_IntTx);
2086#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002087 if (netif_msg_tx_queued(lp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 printk("%s: start TxFD on queue.\n",
2089 dev->name);
2090 dump_txfd(txfd);
2091 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002092 tc_writel(fd_virt_to_bus(lp, txfd), &tr->TxFrmPtr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 }
2094 break;
2095 }
2096 }
2097
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002098 /* If we had stopped the queue due to a "tx full"
2099 * condition, and space has now been made available,
2100 * wake up the queue.
2101 */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002102 if (netif_queue_stopped(dev) && !tc35815_tx_full(dev))
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002103 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104}
2105
2106/* The inverse routine to tc35815_open(). */
2107static int
2108tc35815_close(struct net_device *dev)
2109{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002110 struct tc35815_local *lp = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 netif_stop_queue(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002113#ifdef TC35815_NAPI
2114 napi_disable(&lp->napi);
2115#endif
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002116 if (lp->phy_dev)
2117 phy_stop(lp->phy_dev);
2118 cancel_work_sync(&lp->restart_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120 /* Flush the Tx and disable Rx here. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 tc35815_chip_reset(dev);
2122 free_irq(dev->irq, dev);
2123
2124 tc35815_free_queues(dev);
2125
2126 return 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
2130/*
2131 * Get the current statistics.
2132 * This may be called with the card open or closed.
2133 */
2134static struct net_device_stats *tc35815_get_stats(struct net_device *dev)
2135{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002136 struct tc35815_regs __iomem *tr =
2137 (struct tc35815_regs __iomem *)dev->base_addr;
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002138 if (netif_running(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 /* Update the statistics from the device registers. */
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002140 dev->stats.rx_missed_errors = tc_readl(&tr->Miss_Cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002142 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002145static void tc35815_set_cam_entry(struct net_device *dev, int index, unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002147 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002148 struct tc35815_regs __iomem *tr =
2149 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 int cam_index = index * 6;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002151 u32 cam_data;
2152 u32 saved_addr;
Atsushi Nemoto958eb802008-04-11 00:24:24 +09002153
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 saved_addr = tc_readl(&tr->CAM_Adr);
2155
Atsushi Nemoto958eb802008-04-11 00:24:24 +09002156 if (netif_msg_hw(lp))
Johannes Berge1749612008-10-27 15:59:26 -07002157 printk(KERN_DEBUG "%s: CAM %d: %pM\n",
2158 dev->name, index, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (index & 1) {
2160 /* read modify write */
2161 tc_writel(cam_index - 2, &tr->CAM_Adr);
2162 cam_data = tc_readl(&tr->CAM_Data) & 0xffff0000;
2163 cam_data |= addr[0] << 8 | addr[1];
2164 tc_writel(cam_data, &tr->CAM_Data);
2165 /* write whole word */
2166 tc_writel(cam_index + 2, &tr->CAM_Adr);
2167 cam_data = (addr[2] << 24) | (addr[3] << 16) | (addr[4] << 8) | addr[5];
2168 tc_writel(cam_data, &tr->CAM_Data);
2169 } else {
2170 /* write whole word */
2171 tc_writel(cam_index, &tr->CAM_Adr);
2172 cam_data = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3];
2173 tc_writel(cam_data, &tr->CAM_Data);
2174 /* read modify write */
2175 tc_writel(cam_index + 4, &tr->CAM_Adr);
2176 cam_data = tc_readl(&tr->CAM_Data) & 0x0000ffff;
2177 cam_data |= addr[4] << 24 | (addr[5] << 16);
2178 tc_writel(cam_data, &tr->CAM_Data);
2179 }
2180
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 tc_writel(saved_addr, &tr->CAM_Adr);
2182}
2183
2184
2185/*
2186 * Set or clear the multicast filter for this adaptor.
2187 * num_addrs == -1 Promiscuous mode, receive all packets
2188 * num_addrs == 0 Normal mode, clear multicast list
2189 * num_addrs > 0 Multicast mode, receive normal and MC packets,
2190 * and do best-effort filtering.
2191 */
2192static void
2193tc35815_set_multicast_list(struct net_device *dev)
2194{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002195 struct tc35815_regs __iomem *tr =
2196 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002198 if (dev->flags & IFF_PROMISC) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002199#ifdef WORKAROUND_100HALF_PROMISC
2200 /* With some (all?) 100MHalf HUB, controller will hang
2201 * if we enabled promiscuous mode before linkup... */
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002202 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002203
2204 if (!lp->link)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002205 return;
2206#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 /* Enable promiscuous mode */
2208 tc_writel(CAM_CompEn | CAM_BroadAcc | CAM_GroupAcc | CAM_StationAcc, &tr->CAM_Ctl);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002209 } else if ((dev->flags & IFF_ALLMULTI) ||
2210 dev->mc_count > CAM_ENTRY_MAX - 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 /* CAM 0, 1, 20 are reserved. */
2212 /* Disable promiscuous mode, use normal mode. */
2213 tc_writel(CAM_CompEn | CAM_BroadAcc | CAM_GroupAcc, &tr->CAM_Ctl);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002214 } else if (dev->mc_count) {
2215 struct dev_mc_list *cur_addr = dev->mc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 int i;
2217 int ena_bits = CAM_Ena_Bit(CAM_ENTRY_SOURCE);
2218
2219 tc_writel(0, &tr->CAM_Ctl);
2220 /* Walk the address list, and load the filter */
2221 for (i = 0; i < dev->mc_count; i++, cur_addr = cur_addr->next) {
2222 if (!cur_addr)
2223 break;
2224 /* entry 0,1 is reserved. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002225 tc35815_set_cam_entry(dev, i + 2, cur_addr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 ena_bits |= CAM_Ena_Bit(i + 2);
2227 }
2228 tc_writel(ena_bits, &tr->CAM_Ena);
2229 tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002230 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 tc_writel(CAM_Ena_Bit(CAM_ENTRY_SOURCE), &tr->CAM_Ena);
2232 tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
2233 }
2234}
2235
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002236static void tc35815_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002238 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002239 strcpy(info->driver, MODNAME);
2240 strcpy(info->version, DRV_VERSION);
2241 strcpy(info->bus_info, pci_name(lp->pci_dev));
2242}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002243
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002244static int tc35815_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2245{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002246 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002247
2248 if (!lp->phy_dev)
2249 return -ENODEV;
2250 return phy_ethtool_gset(lp->phy_dev, cmd);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002251}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002253static int tc35815_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2254{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002255 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002256
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002257 if (!lp->phy_dev)
2258 return -ENODEV;
2259 return phy_ethtool_sset(lp->phy_dev, cmd);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002260}
2261
2262static u32 tc35815_get_msglevel(struct net_device *dev)
2263{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002264 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002265 return lp->msg_enable;
2266}
2267
2268static void tc35815_set_msglevel(struct net_device *dev, u32 datum)
2269{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002270 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002271 lp->msg_enable = datum;
2272}
2273
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002274static int tc35815_get_sset_count(struct net_device *dev, int sset)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002275{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002276 struct tc35815_local *lp = netdev_priv(dev);
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002277
2278 switch (sset) {
2279 case ETH_SS_STATS:
2280 return sizeof(lp->lstats) / sizeof(int);
2281 default:
2282 return -EOPNOTSUPP;
2283 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002284}
2285
2286static void tc35815_get_ethtool_stats(struct net_device *dev, struct ethtool_stats *stats, u64 *data)
2287{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002288 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002289 data[0] = lp->lstats.max_tx_qlen;
2290 data[1] = lp->lstats.tx_ints;
2291 data[2] = lp->lstats.rx_ints;
2292 data[3] = lp->lstats.tx_underrun;
2293}
2294
2295static struct {
2296 const char str[ETH_GSTRING_LEN];
2297} ethtool_stats_keys[] = {
2298 { "max_tx_qlen" },
2299 { "tx_ints" },
2300 { "rx_ints" },
2301 { "tx_underrun" },
2302};
2303
2304static void tc35815_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2305{
2306 memcpy(data, ethtool_stats_keys, sizeof(ethtool_stats_keys));
2307}
2308
2309static const struct ethtool_ops tc35815_ethtool_ops = {
2310 .get_drvinfo = tc35815_get_drvinfo,
2311 .get_settings = tc35815_get_settings,
2312 .set_settings = tc35815_set_settings,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002313 .get_link = ethtool_op_get_link,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002314 .get_msglevel = tc35815_get_msglevel,
2315 .set_msglevel = tc35815_set_msglevel,
2316 .get_strings = tc35815_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002317 .get_sset_count = tc35815_get_sset_count,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002318 .get_ethtool_stats = tc35815_get_ethtool_stats,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002319};
2320
2321static int tc35815_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2322{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002323 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002324
2325 if (!netif_running(dev))
2326 return -EINVAL;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002327 if (!lp->phy_dev)
2328 return -ENODEV;
2329 return phy_mii_ioctl(lp->phy_dev, if_mii(rq), cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330}
2331
2332static void tc35815_chip_reset(struct net_device *dev)
2333{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002334 struct tc35815_regs __iomem *tr =
2335 (struct tc35815_regs __iomem *)dev->base_addr;
2336 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 /* reset the controller */
2338 tc_writel(MAC_Reset, &tr->MAC_Ctl);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002339 udelay(4); /* 3200ns */
2340 i = 0;
2341 while (tc_readl(&tr->MAC_Ctl) & MAC_Reset) {
2342 if (i++ > 100) {
2343 printk(KERN_ERR "%s: MAC reset failed.\n", dev->name);
2344 break;
2345 }
2346 mdelay(1);
2347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 tc_writel(0, &tr->MAC_Ctl);
2349
2350 /* initialize registers to default value */
2351 tc_writel(0, &tr->DMA_Ctl);
2352 tc_writel(0, &tr->TxThrsh);
2353 tc_writel(0, &tr->TxPollCtr);
2354 tc_writel(0, &tr->RxFragSize);
2355 tc_writel(0, &tr->Int_En);
2356 tc_writel(0, &tr->FDA_Bas);
2357 tc_writel(0, &tr->FDA_Lim);
2358 tc_writel(0xffffffff, &tr->Int_Src); /* Write 1 to clear */
2359 tc_writel(0, &tr->CAM_Ctl);
2360 tc_writel(0, &tr->Tx_Ctl);
2361 tc_writel(0, &tr->Rx_Ctl);
2362 tc_writel(0, &tr->CAM_Ena);
2363 (void)tc_readl(&tr->Miss_Cnt); /* Read to clear */
2364
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002365 /* initialize internal SRAM */
2366 tc_writel(DMA_TestMode, &tr->DMA_Ctl);
2367 for (i = 0; i < 0x1000; i += 4) {
2368 tc_writel(i, &tr->CAM_Adr);
2369 tc_writel(0, &tr->CAM_Data);
2370 }
2371 tc_writel(0, &tr->DMA_Ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
2374static void tc35815_chip_init(struct net_device *dev)
2375{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002376 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002377 struct tc35815_regs __iomem *tr =
2378 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 unsigned long txctl = TX_CTL_CMD;
2380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 /* load station address to CAM */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002382 tc35815_set_cam_entry(dev, CAM_ENTRY_SOURCE, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 /* Enable CAM (broadcast and unicast) */
2385 tc_writel(CAM_Ena_Bit(CAM_ENTRY_SOURCE), &tr->CAM_Ena);
2386 tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
2387
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002388 /* Use DMA_RxAlign_2 to make IP header 4-byte aligned. */
2389 if (HAVE_DMA_RXALIGN(lp))
2390 tc_writel(DMA_BURST_SIZE | DMA_RxAlign_2, &tr->DMA_Ctl);
2391 else
2392 tc_writel(DMA_BURST_SIZE, &tr->DMA_Ctl);
2393#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 tc_writel(RxFrag_EnPack | ETH_ZLEN, &tr->RxFragSize); /* Packing */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002395#else
2396 tc_writel(ETH_ZLEN, &tr->RxFragSize);
2397#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 tc_writel(0, &tr->TxPollCtr); /* Batch mode */
2399 tc_writel(TX_THRESHOLD, &tr->TxThrsh);
2400 tc_writel(INT_EN_CMD, &tr->Int_En);
2401
2402 /* set queues */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002403 tc_writel(fd_virt_to_bus(lp, lp->rfd_base), &tr->FDA_Bas);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 tc_writel((unsigned long)lp->rfd_limit - (unsigned long)lp->rfd_base,
2405 &tr->FDA_Lim);
2406 /*
2407 * Activation method:
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002408 * First, enable the MAC Transmitter and the DMA Receive circuits.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 * Then enable the DMA Transmitter and the MAC Receive circuits.
2410 */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002411 tc_writel(fd_virt_to_bus(lp, lp->fbl_ptr), &tr->BLFrmPtr); /* start DMA receiver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 tc_writel(RX_CTL_CMD, &tr->Rx_Ctl); /* start MAC receiver */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 /* start MAC transmitter */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002415#ifndef NO_CHECK_CARRIER
2416 /* TX4939 does not have EnLCarr */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002417 if (lp->chiptype == TC35815_TX4939)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002418 txctl &= ~Tx_EnLCarr;
2419#ifdef WORKAROUND_LOSTCAR
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 /* WORKAROUND: ignore LostCrS in full duplex operation */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002421 if (!lp->phy_dev || !lp->link || lp->duplex == DUPLEX_FULL)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002422 txctl &= ~Tx_EnLCarr;
2423#endif
2424#endif /* !NO_CHECK_CARRIER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425#ifdef GATHER_TXINT
2426 txctl &= ~Tx_EnComp; /* disable global tx completion int. */
2427#endif
2428 tc_writel(txctl, &tr->Tx_Ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429}
2430
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002431#ifdef CONFIG_PM
2432static int tc35815_suspend(struct pci_dev *pdev, pm_message_t state)
2433{
2434 struct net_device *dev = pci_get_drvdata(pdev);
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002435 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002436 unsigned long flags;
2437
2438 pci_save_state(pdev);
2439 if (!netif_running(dev))
2440 return 0;
2441 netif_device_detach(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002442 if (lp->phy_dev)
2443 phy_stop(lp->phy_dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002444 spin_lock_irqsave(&lp->lock, flags);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002445 tc35815_chip_reset(dev);
2446 spin_unlock_irqrestore(&lp->lock, flags);
2447 pci_set_power_state(pdev, PCI_D3hot);
2448 return 0;
2449}
2450
2451static int tc35815_resume(struct pci_dev *pdev)
2452{
2453 struct net_device *dev = pci_get_drvdata(pdev);
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002454 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002455
2456 pci_restore_state(pdev);
2457 if (!netif_running(dev))
2458 return 0;
2459 pci_set_power_state(pdev, PCI_D0);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002460 tc35815_restart(dev);
Atsushi Nemoto59524a32008-06-25 11:41:01 +09002461 netif_carrier_off(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002462 if (lp->phy_dev)
2463 phy_start(lp->phy_dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002464 netif_device_attach(dev);
2465 return 0;
2466}
2467#endif /* CONFIG_PM */
2468
2469static struct pci_driver tc35815_pci_driver = {
2470 .name = MODNAME,
2471 .id_table = tc35815_pci_tbl,
2472 .probe = tc35815_init_one,
2473 .remove = __devexit_p(tc35815_remove_one),
2474#ifdef CONFIG_PM
2475 .suspend = tc35815_suspend,
2476 .resume = tc35815_resume,
2477#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478};
2479
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002480module_param_named(speed, options.speed, int, 0);
2481MODULE_PARM_DESC(speed, "0:auto, 10:10Mbps, 100:100Mbps");
2482module_param_named(duplex, options.duplex, int, 0);
2483MODULE_PARM_DESC(duplex, "0:auto, 1:half, 2:full");
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002484
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485static int __init tc35815_init_module(void)
2486{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002487 return pci_register_driver(&tc35815_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
2489
2490static void __exit tc35815_cleanup_module(void)
2491{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002492 pci_unregister_driver(&tc35815_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
Jeff Garzik420e8522007-02-24 17:02:16 -05002494
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495module_init(tc35815_init_module);
2496module_exit(tc35815_cleanup_module);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002497
2498MODULE_DESCRIPTION("TOSHIBA TC35815 PCI 10M/100M Ethernet driver");
2499MODULE_LICENSE("GPL");