blob: 8487ace9d2e3a8d73a8fedbe32a2447ec9575222 [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 */
239 /* 0x00001000 not use */
240#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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900248#define Rx_Stat_Mask 0x0000EFC0 /* Rx All Status Mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250/* Int_En bit asign -------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900251#define Int_NRAbtEn 0x00000800 /* 1:Non-recoverable Abort Enable */
252#define Int_TxCtlCmpEn 0x00000400 /* 1:Transmit Ctl Complete Enable */
253#define Int_DmParErrEn 0x00000200 /* 1:DMA Parity Error Enable */
254#define Int_DParDEn 0x00000100 /* 1:Data Parity Error Enable */
255#define Int_EarNotEn 0x00000080 /* 1:Early Notify Enable */
256#define Int_DParErrEn 0x00000040 /* 1:Detected Parity Error Enable */
257#define Int_SSysErrEn 0x00000020 /* 1:Signalled System Error Enable */
258#define Int_RMasAbtEn 0x00000010 /* 1:Received Master Abort Enable */
259#define Int_RTargAbtEn 0x00000008 /* 1:Received Target Abort Enable */
260#define Int_STargAbtEn 0x00000004 /* 1:Signalled Target Abort Enable */
261#define Int_BLExEn 0x00000002 /* 1:Buffer List Exhausted Enable */
262#define Int_FDAExEn 0x00000001 /* 1:Free Descriptor Area */
263 /* Exhausted Enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265/* Int_Src bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900266#define Int_NRabt 0x00004000 /* 1:Non Recoverable error */
267#define Int_DmParErrStat 0x00002000 /* 1:DMA Parity Error & Clear */
268#define Int_BLEx 0x00001000 /* 1:Buffer List Empty & Clear */
269#define Int_FDAEx 0x00000800 /* 1:FDA Empty & Clear */
270#define Int_IntNRAbt 0x00000400 /* 1:Non Recoverable Abort */
271#define Int_IntCmp 0x00000200 /* 1:MAC control packet complete */
272#define Int_IntExBD 0x00000100 /* 1:Interrupt Extra BD & Clear */
273#define Int_DmParErr 0x00000080 /* 1:DMA Parity Error & Clear */
274#define Int_IntEarNot 0x00000040 /* 1:Receive Data write & Clear */
275#define Int_SWInt 0x00000020 /* 1:Software request & Clear */
276#define Int_IntBLEx 0x00000010 /* 1:Buffer List Empty & Clear */
277#define Int_IntFDAEx 0x00000008 /* 1:FDA Empty & Clear */
278#define Int_IntPCI 0x00000004 /* 1:PCI controller & Clear */
279#define Int_IntMacRx 0x00000002 /* 1:Rx controller & Clear */
280#define Int_IntMacTx 0x00000001 /* 1:Tx controller & Clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282/* MD_CA bit asign --------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900283#define MD_CA_PreSup 0x00001000 /* 1:Preamble Supress */
284#define MD_CA_Busy 0x00000800 /* 1:Busy (Start Operation) */
285#define MD_CA_Wr 0x00000400 /* 1:Write 0:Read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*
289 * Descriptors
290 */
291
292/* Frame descripter */
293struct FDesc {
294 volatile __u32 FDNext;
295 volatile __u32 FDSystem;
296 volatile __u32 FDStat;
297 volatile __u32 FDCtl;
298};
299
300/* Buffer descripter */
301struct BDesc {
302 volatile __u32 BuffData;
303 volatile __u32 BDCtl;
304};
305
306#define FD_ALIGN 16
307
308/* Frame Descripter bit asign ---------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900309#define FD_FDLength_MASK 0x0000FFFF /* Length MASK */
310#define FD_BDCnt_MASK 0x001F0000 /* BD count MASK in FD */
311#define FD_FrmOpt_MASK 0x7C000000 /* Frame option MASK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#define FD_FrmOpt_BigEndian 0x40000000 /* Tx/Rx */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900313#define FD_FrmOpt_IntTx 0x20000000 /* Tx only */
314#define FD_FrmOpt_NoCRC 0x10000000 /* Tx only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315#define FD_FrmOpt_NoPadding 0x08000000 /* Tx only */
316#define FD_FrmOpt_Packing 0x04000000 /* Rx only */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900317#define FD_CownsFD 0x80000000 /* FD Controller owner bit */
318#define FD_Next_EOL 0x00000001 /* FD EOL indicator */
319#define FD_BDCnt_SHIFT 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321/* Buffer Descripter bit asign --------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900322#define BD_BuffLength_MASK 0x0000FFFF /* Recieve Data Size */
323#define BD_RxBDID_MASK 0x00FF0000 /* BD ID Number MASK */
324#define BD_RxBDSeqN_MASK 0x7F000000 /* Rx BD Sequence Number */
325#define BD_CownsBD 0x80000000 /* BD Controller owner bit */
326#define BD_RxBDID_SHIFT 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#define BD_RxBDSeqN_SHIFT 24
328
329
330/* Some useful constants. */
331#undef NO_CHECK_CARRIER /* Does not check No-Carrier with TP */
332
333#ifdef NO_CHECK_CARRIER
334#define TX_CTL_CMD (Tx_EnComp | Tx_EnTxPar | Tx_EnLateColl | \
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900335 Tx_EnExColl | Tx_EnExDefer | Tx_EnUnder | \
336 Tx_En) /* maybe 0x7b01 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337#else
338#define TX_CTL_CMD (Tx_EnComp | Tx_EnTxPar | Tx_EnLateColl | \
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900339 Tx_EnExColl | Tx_EnLCarr | Tx_EnExDefer | Tx_EnUnder | \
340 Tx_En) /* maybe 0x7b01 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341#endif
342#define RX_CTL_CMD (Rx_EnGood | Rx_EnRxPar | Rx_EnLongErr | Rx_EnOver \
343 | Rx_EnCRCErr | Rx_EnAlign | Rx_RxEn) /* maybe 0x6f01 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344#define INT_EN_CMD (Int_NRAbtEn | \
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900345 Int_DmParErrEn | Int_DParDEn | Int_DParErrEn | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 Int_SSysErrEn | Int_RMasAbtEn | Int_RTargAbtEn | \
347 Int_STargAbtEn | \
348 Int_BLExEn | Int_FDAExEn) /* maybe 0xb7f*/
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900349#define DMA_CTL_CMD DMA_BURST_SIZE
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900350#define HAVE_DMA_RXALIGN(lp) likely((lp)->chiptype != TC35815CF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352/* Tuning parameters */
353#define DMA_BURST_SIZE 32
354#define TX_THRESHOLD 1024
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900355/* used threshold with packet max byte for low pci transfer ability.*/
356#define TX_THRESHOLD_MAX 1536
357/* setting threshold max value when overrun error occured this count. */
358#define TX_THRESHOLD_KEEP_LIMIT 10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900360/* 16 + RX_BUF_NUM * 8 + RX_FD_NUM * 16 + TX_FD_NUM * 32 <= PAGE_SIZE*FD_PAGE_NUM */
361#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362#define FD_PAGE_NUM 2
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900363#define RX_BUF_NUM 8 /* >= 2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#define RX_FD_NUM 250 /* >= 32 */
365#define TX_FD_NUM 128
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900366#define RX_BUF_SIZE PAGE_SIZE
367#else /* TC35815_USE_PACKEDBUFFER */
368#define FD_PAGE_NUM 4
369#define RX_BUF_NUM 128 /* < 256 */
370#define RX_FD_NUM 256 /* >= 32 */
371#define TX_FD_NUM 128
372#if RX_CTL_CMD & Rx_LongEn
373#define RX_BUF_SIZE PAGE_SIZE
374#elif RX_CTL_CMD & Rx_StripCRC
375#define RX_BUF_SIZE ALIGN(ETH_FRAME_LEN + 4 + 2, 32) /* +2: reserve */
376#else
377#define RX_BUF_SIZE ALIGN(ETH_FRAME_LEN + 2, 32) /* +2: reserve */
378#endif
379#endif /* TC35815_USE_PACKEDBUFFER */
380#define RX_FD_RESERVE (2 / 2) /* max 2 BD per RxFD */
381#define NAPI_WEIGHT 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383struct TxFD {
384 struct FDesc fd;
385 struct BDesc bd;
386 struct BDesc unused;
387};
388
389struct RxFD {
390 struct FDesc fd;
391 struct BDesc bd[0]; /* variable length */
392};
393
394struct FrFD {
395 struct FDesc fd;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900396 struct BDesc bd[RX_BUF_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397};
398
399
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900400#define tc_readl(addr) ioread32(addr)
401#define tc_writel(d, addr) iowrite32(d, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900403#define TC35815_TX_TIMEOUT msecs_to_jiffies(400)
404
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900405/* Information that need to be kept for each controller. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406struct tc35815_local {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900407 struct pci_dev *pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700409 struct net_device *dev;
410 struct napi_struct napi;
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 struct {
414 int max_tx_qlen;
415 int tx_ints;
416 int rx_ints;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900417 int tx_underrun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 } lstats;
419
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900420 /* Tx control lock. This protects the transmit buffer ring
421 * state along with the "tx full" state of the driver. This
422 * means all netif_queue flow control actions are protected
423 * by this lock as well.
424 */
425 spinlock_t lock;
426
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900427 struct mii_bus mii_bus;
428 struct phy_device *phy_dev;
429 int duplex;
430 int speed;
431 int link;
432 struct work_struct restart_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 /*
435 * Transmitting: Batch Mode.
436 * 1 BD in 1 TxFD.
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900437 * Receiving: Packing Mode. (TC35815_USE_PACKEDBUFFER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * 1 circular FD for Free Buffer List.
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900439 * RX_BUF_NUM BD in Free Buffer FD.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * One Free Buffer BD has PAGE_SIZE data buffer.
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900441 * Or Non-Packing Mode.
442 * 1 circular FD for Free Buffer List.
443 * RX_BUF_NUM BD in Free Buffer FD.
444 * One Free Buffer BD has ETH_FRAME_LEN data buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900446 void *fd_buf; /* for TxFD, RxFD, FrFD */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900447 dma_addr_t fd_buf_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct TxFD *tfd_base;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900449 unsigned int tfd_start;
450 unsigned int tfd_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 struct RxFD *rfd_base;
452 struct RxFD *rfd_limit;
453 struct RxFD *rfd_cur;
454 struct FrFD *fbl_ptr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900455#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 unsigned char fbl_curid;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900457 void *data_buf[RX_BUF_NUM]; /* packing */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900458 dma_addr_t data_buf_dma[RX_BUF_NUM];
459 struct {
460 struct sk_buff *skb;
461 dma_addr_t skb_dma;
462 } tx_skbs[TX_FD_NUM];
463#else
464 unsigned int fbl_count;
465 struct {
466 struct sk_buff *skb;
467 dma_addr_t skb_dma;
468 } tx_skbs[TX_FD_NUM], rx_skbs[RX_BUF_NUM];
469#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900470 u32 msg_enable;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900471 enum tc35815_chiptype chiptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472};
473
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900474static inline dma_addr_t fd_virt_to_bus(struct tc35815_local *lp, void *virt)
475{
476 return lp->fd_buf_dma + ((u8 *)virt - (u8 *)lp->fd_buf);
477}
478#ifdef DEBUG
479static inline void *fd_bus_to_virt(struct tc35815_local *lp, dma_addr_t bus)
480{
481 return (void *)((u8 *)lp->fd_buf + (bus - lp->fd_buf_dma));
482}
483#endif
484#ifdef TC35815_USE_PACKEDBUFFER
485static inline void *rxbuf_bus_to_virt(struct tc35815_local *lp, dma_addr_t bus)
486{
487 int i;
488 for (i = 0; i < RX_BUF_NUM; i++) {
489 if (bus >= lp->data_buf_dma[i] &&
490 bus < lp->data_buf_dma[i] + PAGE_SIZE)
491 return (void *)((u8 *)lp->data_buf[i] +
492 (bus - lp->data_buf_dma[i]));
493 }
494 return NULL;
495}
496
497#define TC35815_DMA_SYNC_ONDEMAND
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900498static void *alloc_rxbuf_page(struct pci_dev *hwdev, dma_addr_t *dma_handle)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900499{
500#ifdef TC35815_DMA_SYNC_ONDEMAND
501 void *buf;
502 /* pci_map + pci_dma_sync will be more effective than
503 * pci_alloc_consistent on some archs. */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900504 buf = (void *)__get_free_page(GFP_ATOMIC);
505 if (!buf)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900506 return NULL;
507 *dma_handle = pci_map_single(hwdev, buf, PAGE_SIZE,
508 PCI_DMA_FROMDEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700509 if (pci_dma_mapping_error(hwdev, *dma_handle)) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900510 free_page((unsigned long)buf);
511 return NULL;
512 }
513 return buf;
514#else
515 return pci_alloc_consistent(hwdev, PAGE_SIZE, dma_handle);
516#endif
517}
518
519static void free_rxbuf_page(struct pci_dev *hwdev, void *buf, dma_addr_t dma_handle)
520{
521#ifdef TC35815_DMA_SYNC_ONDEMAND
522 pci_unmap_single(hwdev, dma_handle, PAGE_SIZE, PCI_DMA_FROMDEVICE);
523 free_page((unsigned long)buf);
524#else
525 pci_free_consistent(hwdev, PAGE_SIZE, buf, dma_handle);
526#endif
527}
528#else /* TC35815_USE_PACKEDBUFFER */
529static struct sk_buff *alloc_rxbuf_skb(struct net_device *dev,
530 struct pci_dev *hwdev,
531 dma_addr_t *dma_handle)
532{
533 struct sk_buff *skb;
534 skb = dev_alloc_skb(RX_BUF_SIZE);
535 if (!skb)
536 return NULL;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900537 *dma_handle = pci_map_single(hwdev, skb->data, RX_BUF_SIZE,
538 PCI_DMA_FROMDEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700539 if (pci_dma_mapping_error(hwdev, *dma_handle)) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900540 dev_kfree_skb_any(skb);
541 return NULL;
542 }
543 skb_reserve(skb, 2); /* make IP header 4byte aligned */
544 return skb;
545}
546
547static void free_rxbuf_skb(struct pci_dev *hwdev, struct sk_buff *skb, dma_addr_t dma_handle)
548{
549 pci_unmap_single(hwdev, dma_handle, RX_BUF_SIZE,
550 PCI_DMA_FROMDEVICE);
551 dev_kfree_skb_any(skb);
552}
553#endif /* TC35815_USE_PACKEDBUFFER */
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555/* Index to functions, as function prototypes. */
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557static int tc35815_open(struct net_device *dev);
558static int tc35815_send_packet(struct sk_buff *skb, struct net_device *dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900559static irqreturn_t tc35815_interrupt(int irq, void *dev_id);
560#ifdef TC35815_NAPI
561static int tc35815_rx(struct net_device *dev, int limit);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700562static int tc35815_poll(struct napi_struct *napi, int budget);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900563#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564static void tc35815_rx(struct net_device *dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900565#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566static void tc35815_txdone(struct net_device *dev);
567static int tc35815_close(struct net_device *dev);
568static struct net_device_stats *tc35815_get_stats(struct net_device *dev);
569static void tc35815_set_multicast_list(struct net_device *dev);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900570static void tc35815_tx_timeout(struct net_device *dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900571static int tc35815_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
572#ifdef CONFIG_NET_POLL_CONTROLLER
573static void tc35815_poll_controller(struct net_device *dev);
574#endif
575static const struct ethtool_ops tc35815_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900577/* Example routines you must write ;->. */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900578static void tc35815_chip_reset(struct net_device *dev);
579static void tc35815_chip_init(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900581#ifdef DEBUG
582static void panic_queues(struct net_device *dev);
583#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900585static void tc35815_restart_work(struct work_struct *work);
586
587static int tc_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
588{
589 struct net_device *dev = bus->priv;
590 struct tc35815_regs __iomem *tr =
591 (struct tc35815_regs __iomem *)dev->base_addr;
592 unsigned long timeout = jiffies + 10;
593
594 tc_writel(MD_CA_Busy | (mii_id << 5) | (regnum & 0x1f), &tr->MD_CA);
595 while (tc_readl(&tr->MD_CA) & MD_CA_Busy) {
596 if (time_after(jiffies, timeout))
597 return -EIO;
598 cpu_relax();
599 }
600 return tc_readl(&tr->MD_Data) & 0xffff;
601}
602
603static int tc_mdio_write(struct mii_bus *bus, int mii_id, int regnum, u16 val)
604{
605 struct net_device *dev = bus->priv;
606 struct tc35815_regs __iomem *tr =
607 (struct tc35815_regs __iomem *)dev->base_addr;
608 unsigned long timeout = jiffies + 10;
609
610 tc_writel(val, &tr->MD_Data);
611 tc_writel(MD_CA_Busy | MD_CA_Wr | (mii_id << 5) | (regnum & 0x1f),
612 &tr->MD_CA);
613 while (tc_readl(&tr->MD_CA) & MD_CA_Busy) {
614 if (time_after(jiffies, timeout))
615 return -EIO;
616 cpu_relax();
617 }
618 return 0;
619}
620
621static void tc_handle_link_change(struct net_device *dev)
622{
623 struct tc35815_local *lp = netdev_priv(dev);
624 struct phy_device *phydev = lp->phy_dev;
625 unsigned long flags;
626 int status_change = 0;
627
628 spin_lock_irqsave(&lp->lock, flags);
629 if (phydev->link &&
630 (lp->speed != phydev->speed || lp->duplex != phydev->duplex)) {
631 struct tc35815_regs __iomem *tr =
632 (struct tc35815_regs __iomem *)dev->base_addr;
633 u32 reg;
634
635 reg = tc_readl(&tr->MAC_Ctl);
636 reg |= MAC_HaltReq;
637 tc_writel(reg, &tr->MAC_Ctl);
638 if (phydev->duplex == DUPLEX_FULL)
639 reg |= MAC_FullDup;
640 else
641 reg &= ~MAC_FullDup;
642 tc_writel(reg, &tr->MAC_Ctl);
643 reg &= ~MAC_HaltReq;
644 tc_writel(reg, &tr->MAC_Ctl);
645
646 /*
647 * TX4939 PCFG.SPEEDn bit will be changed on
648 * NETDEV_CHANGE event.
649 */
650
651#if !defined(NO_CHECK_CARRIER) && defined(WORKAROUND_LOSTCAR)
652 /*
653 * WORKAROUND: enable LostCrS only if half duplex
654 * operation.
655 * (TX4939 does not have EnLCarr)
656 */
657 if (phydev->duplex == DUPLEX_HALF &&
658 lp->chiptype != TC35815_TX4939)
659 tc_writel(tc_readl(&tr->Tx_Ctl) | Tx_EnLCarr,
660 &tr->Tx_Ctl);
661#endif
662
663 lp->speed = phydev->speed;
664 lp->duplex = phydev->duplex;
665 status_change = 1;
666 }
667
668 if (phydev->link != lp->link) {
669 if (phydev->link) {
670#ifdef WORKAROUND_100HALF_PROMISC
671 /* delayed promiscuous enabling */
672 if (dev->flags & IFF_PROMISC)
673 tc35815_set_multicast_list(dev);
674#endif
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900675 } else {
676 lp->speed = 0;
677 lp->duplex = -1;
678 }
679 lp->link = phydev->link;
680
681 status_change = 1;
682 }
683 spin_unlock_irqrestore(&lp->lock, flags);
684
685 if (status_change && netif_msg_link(lp)) {
686 phy_print_status(phydev);
687#ifdef DEBUG
688 printk(KERN_DEBUG
689 "%s: MII BMCR %04x BMSR %04x LPA %04x\n",
690 dev->name,
691 phy_read(phydev, MII_BMCR),
692 phy_read(phydev, MII_BMSR),
693 phy_read(phydev, MII_LPA));
694#endif
695 }
696}
697
698static int tc_mii_probe(struct net_device *dev)
699{
700 struct tc35815_local *lp = netdev_priv(dev);
701 struct phy_device *phydev = NULL;
702 int phy_addr;
703 u32 dropmask;
704
705 /* find the first phy */
706 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
707 if (lp->mii_bus.phy_map[phy_addr]) {
708 if (phydev) {
709 printk(KERN_ERR "%s: multiple PHYs found\n",
710 dev->name);
711 return -EINVAL;
712 }
713 phydev = lp->mii_bus.phy_map[phy_addr];
714 break;
715 }
716 }
717
718 if (!phydev) {
719 printk(KERN_ERR "%s: no PHY found\n", dev->name);
720 return -ENODEV;
721 }
722
723 /* attach the mac to the phy */
724 phydev = phy_connect(dev, phydev->dev.bus_id,
725 &tc_handle_link_change, 0,
726 lp->chiptype == TC35815_TX4939 ?
727 PHY_INTERFACE_MODE_RMII : PHY_INTERFACE_MODE_MII);
728 if (IS_ERR(phydev)) {
729 printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
730 return PTR_ERR(phydev);
731 }
732 printk(KERN_INFO "%s: attached PHY driver [%s] "
733 "(mii_bus:phy_addr=%s, id=%x)\n",
734 dev->name, phydev->drv->name, phydev->dev.bus_id,
735 phydev->phy_id);
736
737 /* mask with MAC supported features */
738 phydev->supported &= PHY_BASIC_FEATURES;
739 dropmask = 0;
740 if (options.speed == 10)
741 dropmask |= SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full;
742 else if (options.speed == 100)
743 dropmask |= SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full;
744 if (options.duplex == 1)
745 dropmask |= SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Full;
746 else if (options.duplex == 2)
747 dropmask |= SUPPORTED_10baseT_Half | SUPPORTED_100baseT_Half;
748 phydev->supported &= ~dropmask;
749 phydev->advertising = phydev->supported;
750
751 lp->link = 0;
752 lp->speed = 0;
753 lp->duplex = -1;
754 lp->phy_dev = phydev;
755
756 return 0;
757}
758
759static int tc_mii_init(struct net_device *dev)
760{
761 struct tc35815_local *lp = netdev_priv(dev);
762 int err;
763 int i;
764
765 lp->mii_bus.name = "tc35815_mii_bus";
766 lp->mii_bus.read = tc_mdio_read;
767 lp->mii_bus.write = tc_mdio_write;
Atsushi Nemoto10e05f72008-04-13 00:11:46 +0900768 snprintf(lp->mii_bus.id, MII_BUS_ID_SIZE, "%x",
769 (lp->pci_dev->bus->number << 8) | lp->pci_dev->devfn);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900770 lp->mii_bus.priv = dev;
771 lp->mii_bus.dev = &lp->pci_dev->dev;
772 lp->mii_bus.irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
773 if (!lp->mii_bus.irq) {
774 err = -ENOMEM;
775 goto err_out;
776 }
777
778 for (i = 0; i < PHY_MAX_ADDR; i++)
779 lp->mii_bus.irq[i] = PHY_POLL;
780
781 err = mdiobus_register(&lp->mii_bus);
782 if (err)
783 goto err_out_free_mdio_irq;
784 err = tc_mii_probe(dev);
785 if (err)
786 goto err_out_unregister_bus;
787 return 0;
788
789err_out_unregister_bus:
790 mdiobus_unregister(&lp->mii_bus);
791err_out_free_mdio_irq:
792 kfree(lp->mii_bus.irq);
793err_out:
794 return err;
795}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900797#ifdef CONFIG_CPU_TX49XX
798/*
799 * Find a platform_device providing a MAC address. The platform code
800 * should provide a "tc35815-mac" device with a MAC address in its
801 * platform_data.
802 */
803static int __devinit tc35815_mac_match(struct device *dev, void *data)
804{
805 struct platform_device *plat_dev = to_platform_device(dev);
806 struct pci_dev *pci_dev = data;
Atsushi Nemoto06675e62008-01-19 01:15:52 +0900807 unsigned int id = pci_dev->irq;
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900808 return !strcmp(plat_dev->name, "tc35815-mac") && plat_dev->id == id;
809}
810
811static int __devinit tc35815_read_plat_dev_addr(struct net_device *dev)
812{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +0900813 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900814 struct device *pd = bus_find_device(&platform_bus_type, NULL,
815 lp->pci_dev, tc35815_mac_match);
816 if (pd) {
817 if (pd->platform_data)
818 memcpy(dev->dev_addr, pd->platform_data, ETH_ALEN);
819 put_device(pd);
820 return is_valid_ether_addr(dev->dev_addr) ? 0 : -ENODEV;
821 }
822 return -ENODEV;
823}
824#else
Yoichi Yuasa308a9062007-07-18 11:13:42 +0900825static int __devinit tc35815_read_plat_dev_addr(struct net_device *dev)
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900826{
827 return -ENODEV;
828}
829#endif
830
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900831static int __devinit tc35815_init_dev_addr(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900833 struct tc35815_regs __iomem *tr =
834 (struct tc35815_regs __iomem *)dev->base_addr;
835 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 while (tc_readl(&tr->PROM_Ctl) & PROM_Busy)
838 ;
839 for (i = 0; i < 6; i += 2) {
840 unsigned short data;
841 tc_writel(PROM_Busy | PROM_Read | (i / 2 + 2), &tr->PROM_Ctl);
842 while (tc_readl(&tr->PROM_Ctl) & PROM_Busy)
843 ;
844 data = tc_readl(&tr->PROM_Data);
845 dev->dev_addr[i] = data & 0xff;
846 dev->dev_addr[i+1] = data >> 8;
847 }
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900848 if (!is_valid_ether_addr(dev->dev_addr))
849 return tc35815_read_plat_dev_addr(dev);
850 return 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900851}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900853static int __devinit tc35815_init_one(struct pci_dev *pdev,
854 const struct pci_device_id *ent)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900855{
856 void __iomem *ioaddr = NULL;
857 struct net_device *dev;
858 struct tc35815_local *lp;
859 int rc;
Atsushi Nemoto958eb802008-04-11 00:24:24 +0900860 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900862 static int printed_version;
863 if (!printed_version++) {
864 printk(version);
865 dev_printk(KERN_DEBUG, &pdev->dev,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900866 "speed:%d duplex:%d\n",
867 options.speed, options.duplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900870 if (!pdev->irq) {
871 dev_warn(&pdev->dev, "no IRQ assigned.\n");
872 return -ENODEV;
873 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900875 /* dev zeroed in alloc_etherdev */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900876 dev = alloc_etherdev(sizeof(*lp));
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900877 if (dev == NULL) {
878 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
879 return -ENOMEM;
880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 SET_NETDEV_DEV(dev, &pdev->dev);
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +0900882 lp = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700883 lp->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900885 /* enable device (incl. PCI PM wakeup), and bus-mastering */
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900886 rc = pcim_enable_device(pdev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900887 if (rc)
888 goto err_out;
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900889 rc = pcim_iomap_regions(pdev, 1 << 1, MODNAME);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900890 if (rc)
891 goto err_out;
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900892 pci_set_master(pdev);
893 ioaddr = pcim_iomap_table(pdev)[1];
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900894
895 /* Initialize the device structure. */
896 dev->open = tc35815_open;
897 dev->hard_start_xmit = tc35815_send_packet;
898 dev->stop = tc35815_close;
899 dev->get_stats = tc35815_get_stats;
900 dev->set_multicast_list = tc35815_set_multicast_list;
901 dev->do_ioctl = tc35815_ioctl;
902 dev->ethtool_ops = &tc35815_ethtool_ops;
903 dev->tx_timeout = tc35815_tx_timeout;
904 dev->watchdog_timeo = TC35815_TX_TIMEOUT;
905#ifdef TC35815_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700906 netif_napi_add(dev, &lp->napi, tc35815_poll, NAPI_WEIGHT);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900907#endif
908#ifdef CONFIG_NET_POLL_CONTROLLER
909 dev->poll_controller = tc35815_poll_controller;
910#endif
911
912 dev->irq = pdev->irq;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900913 dev->base_addr = (unsigned long)ioaddr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900914
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900915 INIT_WORK(&lp->restart_work, tc35815_restart_work);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900916 spin_lock_init(&lp->lock);
917 lp->pci_dev = pdev;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900918 lp->chiptype = ent->driver_data;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900919
920 lp->msg_enable = NETIF_MSG_TX_ERR | NETIF_MSG_HW | NETIF_MSG_DRV | NETIF_MSG_LINK;
921 pci_set_drvdata(pdev, dev);
922
923 /* Soft reset the chip. */
924 tc35815_chip_reset(dev);
925
926 /* Retrieve the ethernet address. */
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900927 if (tc35815_init_dev_addr(dev)) {
928 dev_warn(&pdev->dev, "not valid ether addr\n");
929 random_ether_addr(dev->dev_addr);
930 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900931
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900932 rc = register_netdev(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900933 if (rc)
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900934 goto err_out;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900935
936 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Atsushi Nemoto958eb802008-04-11 00:24:24 +0900937 printk(KERN_INFO "%s: %s at 0x%lx, %s, IRQ %d\n",
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900938 dev->name,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900939 chip_info[ent->driver_data].name,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900940 dev->base_addr,
Atsushi Nemoto958eb802008-04-11 00:24:24 +0900941 print_mac(mac, dev->dev_addr),
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900942 dev->irq);
943
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900944 rc = tc_mii_init(dev);
945 if (rc)
946 goto err_out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 return 0;
949
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900950err_out_unregister:
951 unregister_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952err_out:
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900953 free_netdev(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900954 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
957
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900958static void __devexit tc35815_remove_one(struct pci_dev *pdev)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900959{
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900960 struct net_device *dev = pci_get_drvdata(pdev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900961 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900962
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900963 phy_disconnect(lp->phy_dev);
964 mdiobus_unregister(&lp->mii_bus);
965 kfree(lp->mii_bus.irq);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900966 unregister_netdev(dev);
967 free_netdev(dev);
968 pci_set_drvdata(pdev, NULL);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900969}
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971static int
972tc35815_init_queues(struct net_device *dev)
973{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +0900974 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 int i;
976 unsigned long fd_addr;
977
978 if (!lp->fd_buf) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900979 BUG_ON(sizeof(struct FDesc) +
980 sizeof(struct BDesc) * RX_BUF_NUM +
981 sizeof(struct FDesc) * RX_FD_NUM +
982 sizeof(struct TxFD) * TX_FD_NUM >
983 PAGE_SIZE * FD_PAGE_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900985 lp->fd_buf = pci_alloc_consistent(lp->pci_dev,
986 PAGE_SIZE * FD_PAGE_NUM,
987 &lp->fd_buf_dma);
988 if (!lp->fd_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return -ENOMEM;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900990 for (i = 0; i < RX_BUF_NUM; i++) {
991#ifdef TC35815_USE_PACKEDBUFFER
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900992 lp->data_buf[i] =
993 alloc_rxbuf_page(lp->pci_dev,
994 &lp->data_buf_dma[i]);
995 if (!lp->data_buf[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 while (--i >= 0) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900997 free_rxbuf_page(lp->pci_dev,
998 lp->data_buf[i],
999 lp->data_buf_dma[i]);
1000 lp->data_buf[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001002 pci_free_consistent(lp->pci_dev,
1003 PAGE_SIZE * FD_PAGE_NUM,
1004 lp->fd_buf,
1005 lp->fd_buf_dma);
1006 lp->fd_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return -ENOMEM;
1008 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001009#else
1010 lp->rx_skbs[i].skb =
1011 alloc_rxbuf_skb(dev, lp->pci_dev,
1012 &lp->rx_skbs[i].skb_dma);
1013 if (!lp->rx_skbs[i].skb) {
1014 while (--i >= 0) {
1015 free_rxbuf_skb(lp->pci_dev,
1016 lp->rx_skbs[i].skb,
1017 lp->rx_skbs[i].skb_dma);
1018 lp->rx_skbs[i].skb = NULL;
1019 }
1020 pci_free_consistent(lp->pci_dev,
1021 PAGE_SIZE * FD_PAGE_NUM,
1022 lp->fd_buf,
1023 lp->fd_buf_dma);
1024 lp->fd_buf = NULL;
1025 return -ENOMEM;
1026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027#endif
1028 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001029 printk(KERN_DEBUG "%s: FD buf %p DataBuf",
1030 dev->name, lp->fd_buf);
1031#ifdef TC35815_USE_PACKEDBUFFER
1032 printk(" DataBuf");
1033 for (i = 0; i < RX_BUF_NUM; i++)
1034 printk(" %p", lp->data_buf[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001036 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 } else {
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001038 for (i = 0; i < FD_PAGE_NUM; i++)
1039 clear_page((void *)((unsigned long)lp->fd_buf +
1040 i * PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 fd_addr = (unsigned long)lp->fd_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
1044 /* Free Descriptors (for Receive) */
1045 lp->rfd_base = (struct RxFD *)fd_addr;
1046 fd_addr += sizeof(struct RxFD) * RX_FD_NUM;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001047 for (i = 0; i < RX_FD_NUM; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 lp->rfd_base[i].fd.FDCtl = cpu_to_le32(FD_CownsFD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 lp->rfd_cur = lp->rfd_base;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001050 lp->rfd_limit = (struct RxFD *)fd_addr - (RX_FD_RESERVE + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 /* Transmit Descriptors */
1053 lp->tfd_base = (struct TxFD *)fd_addr;
1054 fd_addr += sizeof(struct TxFD) * TX_FD_NUM;
1055 for (i = 0; i < TX_FD_NUM; i++) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001056 lp->tfd_base[i].fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, &lp->tfd_base[i+1]));
1057 lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 lp->tfd_base[i].fd.FDCtl = cpu_to_le32(0);
1059 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001060 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 -07001061 lp->tfd_start = 0;
1062 lp->tfd_end = 0;
1063
1064 /* Buffer List (for Receive) */
1065 lp->fbl_ptr = (struct FrFD *)fd_addr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001066 lp->fbl_ptr->fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, lp->fbl_ptr));
1067 lp->fbl_ptr->fd.FDCtl = cpu_to_le32(RX_BUF_NUM | FD_CownsFD);
1068#ifndef TC35815_USE_PACKEDBUFFER
1069 /*
1070 * move all allocated skbs to head of rx_skbs[] array.
1071 * fbl_count mighe not be RX_BUF_NUM if alloc_rxbuf_skb() in
1072 * tc35815_rx() had failed.
1073 */
1074 lp->fbl_count = 0;
1075 for (i = 0; i < RX_BUF_NUM; i++) {
1076 if (lp->rx_skbs[i].skb) {
1077 if (i != lp->fbl_count) {
1078 lp->rx_skbs[lp->fbl_count].skb =
1079 lp->rx_skbs[i].skb;
1080 lp->rx_skbs[lp->fbl_count].skb_dma =
1081 lp->rx_skbs[i].skb_dma;
1082 }
1083 lp->fbl_count++;
1084 }
1085 }
1086#endif
1087 for (i = 0; i < RX_BUF_NUM; i++) {
1088#ifdef TC35815_USE_PACKEDBUFFER
1089 lp->fbl_ptr->bd[i].BuffData = cpu_to_le32(lp->data_buf_dma[i]);
1090#else
1091 if (i >= lp->fbl_count) {
1092 lp->fbl_ptr->bd[i].BuffData = 0;
1093 lp->fbl_ptr->bd[i].BDCtl = 0;
1094 continue;
1095 }
1096 lp->fbl_ptr->bd[i].BuffData =
1097 cpu_to_le32(lp->rx_skbs[i].skb_dma);
1098#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 /* BDID is index of FrFD.bd[] */
1100 lp->fbl_ptr->bd[i].BDCtl =
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001101 cpu_to_le32(BD_CownsBD | (i << BD_RxBDID_SHIFT) |
1102 RX_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001104#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 lp->fbl_curid = 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001108 printk(KERN_DEBUG "%s: TxFD %p RxFD %p FrFD %p\n",
1109 dev->name, lp->tfd_base, lp->rfd_base, lp->fbl_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return 0;
1111}
1112
1113static void
1114tc35815_clear_queues(struct net_device *dev)
1115{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001116 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 int i;
1118
1119 for (i = 0; i < TX_FD_NUM; i++) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001120 u32 fdsystem = le32_to_cpu(lp->tfd_base[i].fd.FDSystem);
1121 struct sk_buff *skb =
1122 fdsystem != 0xffffffff ?
1123 lp->tx_skbs[fdsystem].skb : NULL;
1124#ifdef DEBUG
1125 if (lp->tx_skbs[i].skb != skb) {
1126 printk("%s: tx_skbs mismatch(%d).\n", dev->name, i);
1127 panic_queues(dev);
1128 }
1129#else
1130 BUG_ON(lp->tx_skbs[i].skb != skb);
1131#endif
1132 if (skb) {
1133 pci_unmap_single(lp->pci_dev, lp->tx_skbs[i].skb_dma, skb->len, PCI_DMA_TODEVICE);
1134 lp->tx_skbs[i].skb = NULL;
1135 lp->tx_skbs[i].skb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 dev_kfree_skb_any(skb);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001137 }
1138 lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140
1141 tc35815_init_queues(dev);
1142}
1143
1144static void
1145tc35815_free_queues(struct net_device *dev)
1146{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001147 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 int i;
1149
1150 if (lp->tfd_base) {
1151 for (i = 0; i < TX_FD_NUM; i++) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001152 u32 fdsystem = le32_to_cpu(lp->tfd_base[i].fd.FDSystem);
1153 struct sk_buff *skb =
1154 fdsystem != 0xffffffff ?
1155 lp->tx_skbs[fdsystem].skb : NULL;
1156#ifdef DEBUG
1157 if (lp->tx_skbs[i].skb != skb) {
1158 printk("%s: tx_skbs mismatch(%d).\n", dev->name, i);
1159 panic_queues(dev);
1160 }
1161#else
1162 BUG_ON(lp->tx_skbs[i].skb != skb);
1163#endif
1164 if (skb) {
1165 dev_kfree_skb(skb);
1166 pci_unmap_single(lp->pci_dev, lp->tx_skbs[i].skb_dma, skb->len, PCI_DMA_TODEVICE);
1167 lp->tx_skbs[i].skb = NULL;
1168 lp->tx_skbs[i].skb_dma = 0;
1169 }
1170 lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172 }
1173
1174 lp->rfd_base = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 lp->rfd_limit = NULL;
1176 lp->rfd_cur = NULL;
1177 lp->fbl_ptr = NULL;
1178
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001179 for (i = 0; i < RX_BUF_NUM; i++) {
1180#ifdef TC35815_USE_PACKEDBUFFER
1181 if (lp->data_buf[i]) {
1182 free_rxbuf_page(lp->pci_dev,
1183 lp->data_buf[i], lp->data_buf_dma[i]);
1184 lp->data_buf[i] = NULL;
1185 }
1186#else
1187 if (lp->rx_skbs[i].skb) {
1188 free_rxbuf_skb(lp->pci_dev, lp->rx_skbs[i].skb,
1189 lp->rx_skbs[i].skb_dma);
1190 lp->rx_skbs[i].skb = NULL;
1191 }
1192#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001194 if (lp->fd_buf) {
1195 pci_free_consistent(lp->pci_dev, PAGE_SIZE * FD_PAGE_NUM,
1196 lp->fd_buf, lp->fd_buf_dma);
1197 lp->fd_buf = NULL;
1198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
1201static void
1202dump_txfd(struct TxFD *fd)
1203{
1204 printk("TxFD(%p): %08x %08x %08x %08x\n", fd,
1205 le32_to_cpu(fd->fd.FDNext),
1206 le32_to_cpu(fd->fd.FDSystem),
1207 le32_to_cpu(fd->fd.FDStat),
1208 le32_to_cpu(fd->fd.FDCtl));
1209 printk("BD: ");
1210 printk(" %08x %08x",
1211 le32_to_cpu(fd->bd.BuffData),
1212 le32_to_cpu(fd->bd.BDCtl));
1213 printk("\n");
1214}
1215
1216static int
1217dump_rxfd(struct RxFD *fd)
1218{
1219 int i, bd_count = (le32_to_cpu(fd->fd.FDCtl) & FD_BDCnt_MASK) >> FD_BDCnt_SHIFT;
1220 if (bd_count > 8)
1221 bd_count = 8;
1222 printk("RxFD(%p): %08x %08x %08x %08x\n", fd,
1223 le32_to_cpu(fd->fd.FDNext),
1224 le32_to_cpu(fd->fd.FDSystem),
1225 le32_to_cpu(fd->fd.FDStat),
1226 le32_to_cpu(fd->fd.FDCtl));
1227 if (le32_to_cpu(fd->fd.FDCtl) & FD_CownsFD)
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 printk("BD: ");
1230 for (i = 0; i < bd_count; i++)
1231 printk(" %08x %08x",
1232 le32_to_cpu(fd->bd[i].BuffData),
1233 le32_to_cpu(fd->bd[i].BDCtl));
1234 printk("\n");
1235 return bd_count;
1236}
1237
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001238#if defined(DEBUG) || defined(TC35815_USE_PACKEDBUFFER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239static void
1240dump_frfd(struct FrFD *fd)
1241{
1242 int i;
1243 printk("FrFD(%p): %08x %08x %08x %08x\n", fd,
1244 le32_to_cpu(fd->fd.FDNext),
1245 le32_to_cpu(fd->fd.FDSystem),
1246 le32_to_cpu(fd->fd.FDStat),
1247 le32_to_cpu(fd->fd.FDCtl));
1248 printk("BD: ");
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001249 for (i = 0; i < RX_BUF_NUM; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 printk(" %08x %08x",
1251 le32_to_cpu(fd->bd[i].BuffData),
1252 le32_to_cpu(fd->bd[i].BDCtl));
1253 printk("\n");
1254}
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001255#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001257#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258static void
1259panic_queues(struct net_device *dev)
1260{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001261 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 int i;
1263
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001264 printk("TxFD base %p, start %u, end %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 lp->tfd_base, lp->tfd_start, lp->tfd_end);
1266 printk("RxFD base %p limit %p cur %p\n",
1267 lp->rfd_base, lp->rfd_limit, lp->rfd_cur);
1268 printk("FrFD %p\n", lp->fbl_ptr);
1269 for (i = 0; i < TX_FD_NUM; i++)
1270 dump_txfd(&lp->tfd_base[i]);
1271 for (i = 0; i < RX_FD_NUM; i++) {
1272 int bd_count = dump_rxfd(&lp->rfd_base[i]);
1273 i += (bd_count + 1) / 2; /* skip BDs */
1274 }
1275 dump_frfd(lp->fbl_ptr);
1276 panic("%s: Illegal queue state.", dev->name);
1277}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278#endif
1279
Atsushi Nemoto958eb802008-04-11 00:24:24 +09001280static void print_eth(const u8 *add)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Atsushi Nemoto958eb802008-04-11 00:24:24 +09001282 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Atsushi Nemoto958eb802008-04-11 00:24:24 +09001284 printk(KERN_DEBUG "print_eth(%p)\n", add);
1285 printk(KERN_DEBUG " %s =>", print_mac(mac, add + 6));
1286 printk(KERN_CONT " %s : %02x%02x\n",
1287 print_mac(mac, add), add[12], add[13]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001290static int tc35815_tx_full(struct net_device *dev)
1291{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001292 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001293 return ((lp->tfd_start + 1) % TX_FD_NUM == lp->tfd_end);
1294}
1295
1296static void tc35815_restart(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
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001300 if (lp->phy_dev) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001301 int timeout;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001302
1303 phy_write(lp->phy_dev, MII_BMCR, BMCR_RESET);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001304 timeout = 100;
1305 while (--timeout) {
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001306 if (!(phy_read(lp->phy_dev, MII_BMCR) & BMCR_RESET))
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001307 break;
1308 udelay(1);
1309 }
1310 if (!timeout)
1311 printk(KERN_ERR "%s: BMCR reset failed.\n", dev->name);
1312 }
1313
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001314 spin_lock_irq(&lp->lock);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001315 tc35815_chip_reset(dev);
1316 tc35815_clear_queues(dev);
1317 tc35815_chip_init(dev);
1318 /* Reconfigure CAM again since tc35815_chip_init() initialize it. */
1319 tc35815_set_multicast_list(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001320 spin_unlock_irq(&lp->lock);
1321
1322 netif_wake_queue(dev);
1323}
1324
1325static void tc35815_restart_work(struct work_struct *work)
1326{
1327 struct tc35815_local *lp =
1328 container_of(work, struct tc35815_local, restart_work);
1329 struct net_device *dev = lp->dev;
1330
1331 tc35815_restart(dev);
1332}
1333
1334static void tc35815_schedule_restart(struct net_device *dev)
1335{
1336 struct tc35815_local *lp = netdev_priv(dev);
1337 struct tc35815_regs __iomem *tr =
1338 (struct tc35815_regs __iomem *)dev->base_addr;
1339
1340 /* disable interrupts */
1341 tc_writel(0, &tr->Int_En);
1342 tc_writel(tc_readl(&tr->DMA_Ctl) | DMA_IntMask, &tr->DMA_Ctl);
1343 schedule_work(&lp->restart_work);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001344}
1345
1346static void tc35815_tx_timeout(struct net_device *dev)
1347{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001348 struct tc35815_regs __iomem *tr =
1349 (struct tc35815_regs __iomem *)dev->base_addr;
1350
1351 printk(KERN_WARNING "%s: transmit timed out, status %#x\n",
1352 dev->name, tc_readl(&tr->Tx_Stat));
1353
1354 /* Try to restart the adaptor. */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001355 tc35815_schedule_restart(dev);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001356 dev->stats.tx_errors++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001357}
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359/*
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001360 * Open/initialize the controller. This is called (in the current kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 * sometime after booting when the 'ifconfig' program is run.
1362 *
1363 * This routine should set everything up anew at each open, even
1364 * registers that "should" only need to be set once at boot, so that
1365 * there is non-reboot way to recover if something goes wrong.
1366 */
1367static int
1368tc35815_open(struct net_device *dev)
1369{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001370 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 /*
1373 * This is used if the interrupt line can turned off (shared).
1374 * See 3c503.c for an example of selecting the IRQ at config-time.
1375 */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001376 if (request_irq(dev->irq, &tc35815_interrupt, IRQF_SHARED,
1377 dev->name, dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 tc35815_chip_reset(dev);
1381
1382 if (tc35815_init_queues(dev) != 0) {
1383 free_irq(dev->irq, dev);
1384 return -EAGAIN;
1385 }
1386
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001387#ifdef TC35815_NAPI
1388 napi_enable(&lp->napi);
1389#endif
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 /* Reset the hardware here. Don't forget to set the station address. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001392 spin_lock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 tc35815_chip_init(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001394 spin_unlock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Atsushi Nemoto59524a32008-06-25 11:41:01 +09001396 netif_carrier_off(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001397 /* schedule a link state check */
1398 phy_start(lp->phy_dev);
1399
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001400 /* We are now ready to accept transmit requeusts from
1401 * the queueing layer of the networking.
1402 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 netif_start_queue(dev);
1404
1405 return 0;
1406}
1407
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001408/* This will only be invoked if your driver is _not_ in XOFF state.
1409 * What this means is that you need not check it, and that this
1410 * invariant will hold if you make sure that the netif_*_queue()
1411 * calls are done at the proper times.
1412 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413static int tc35815_send_packet(struct sk_buff *skb, struct net_device *dev)
1414{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001415 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001416 struct TxFD *txfd;
1417 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001419 /* If some error occurs while trying to transmit this
1420 * packet, you should return '1' from this function.
1421 * In such a case you _may not_ do anything to the
1422 * SKB, it is still owned by the network queueing
1423 * layer when an error is returned. This means you
1424 * may not modify any SKB fields, you may not free
1425 * the SKB, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001428 /* This is the most common case for modern hardware.
1429 * The spinlock protects this code from the TX complete
1430 * hardware interrupt handler. Queue flow control is
1431 * thus managed under this lock as well.
1432 */
1433 spin_lock_irqsave(&lp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001435 /* failsafe... (handle txdone now if half of FDs are used) */
1436 if ((lp->tfd_start + TX_FD_NUM - lp->tfd_end) % TX_FD_NUM >
1437 TX_FD_NUM / 2)
1438 tc35815_txdone(dev);
1439
1440 if (netif_msg_pktdata(lp))
1441 print_eth(skb->data);
1442#ifdef DEBUG
1443 if (lp->tx_skbs[lp->tfd_start].skb) {
1444 printk("%s: tx_skbs conflict.\n", dev->name);
1445 panic_queues(dev);
1446 }
1447#else
1448 BUG_ON(lp->tx_skbs[lp->tfd_start].skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001450 lp->tx_skbs[lp->tfd_start].skb = skb;
1451 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 -07001452
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001453 /*add to ring */
1454 txfd = &lp->tfd_base[lp->tfd_start];
1455 txfd->bd.BuffData = cpu_to_le32(lp->tx_skbs[lp->tfd_start].skb_dma);
1456 txfd->bd.BDCtl = cpu_to_le32(skb->len);
1457 txfd->fd.FDSystem = cpu_to_le32(lp->tfd_start);
1458 txfd->fd.FDCtl = cpu_to_le32(FD_CownsFD | (1 << FD_BDCnt_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001460 if (lp->tfd_start == lp->tfd_end) {
1461 struct tc35815_regs __iomem *tr =
1462 (struct tc35815_regs __iomem *)dev->base_addr;
1463 /* Start DMA Transmitter. */
1464 txfd->fd.FDNext |= cpu_to_le32(FD_Next_EOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465#ifdef GATHER_TXINT
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001466 txfd->fd.FDCtl |= cpu_to_le32(FD_FrmOpt_IntTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001468 if (netif_msg_tx_queued(lp)) {
1469 printk("%s: starting TxFD.\n", dev->name);
1470 dump_txfd(txfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001472 tc_writel(fd_virt_to_bus(lp, txfd), &tr->TxFrmPtr);
1473 } else {
1474 txfd->fd.FDNext &= cpu_to_le32(~FD_Next_EOL);
1475 if (netif_msg_tx_queued(lp)) {
1476 printk("%s: queueing TxFD.\n", dev->name);
1477 dump_txfd(txfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001479 }
1480 lp->tfd_start = (lp->tfd_start + 1) % TX_FD_NUM;
1481
1482 dev->trans_start = jiffies;
1483
1484 /* If we just used up the very last entry in the
1485 * TX ring on this device, tell the queueing
1486 * layer to send no more.
1487 */
1488 if (tc35815_tx_full(dev)) {
1489 if (netif_msg_tx_queued(lp))
1490 printk(KERN_WARNING "%s: TxFD Exhausted.\n", dev->name);
1491 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
1493
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001494 /* When the TX completion hw interrupt arrives, this
1495 * is when the transmit statistics are updated.
1496 */
1497
1498 spin_unlock_irqrestore(&lp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return 0;
1500}
1501
1502#define FATAL_ERROR_INT \
1503 (Int_IntPCI | Int_DmParErr | Int_IntNRAbt)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001504static void tc35815_fatal_error_interrupt(struct net_device *dev, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 static int count;
1507 printk(KERN_WARNING "%s: Fatal Error Intterrupt (%#x):",
1508 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 if (status & Int_IntPCI)
1510 printk(" IntPCI");
1511 if (status & Int_DmParErr)
1512 printk(" DmParErr");
1513 if (status & Int_IntNRAbt)
1514 printk(" IntNRAbt");
1515 printk("\n");
1516 if (count++ > 100)
1517 panic("%s: Too many fatal errors.", dev->name);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001518 printk(KERN_WARNING "%s: Resetting ...\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 /* Try to restart the adaptor. */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001520 tc35815_schedule_restart(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001521}
1522
1523#ifdef TC35815_NAPI
1524static int tc35815_do_interrupt(struct net_device *dev, u32 status, int limit)
1525#else
1526static int tc35815_do_interrupt(struct net_device *dev, u32 status)
1527#endif
1528{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001529 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001530 struct tc35815_regs __iomem *tr =
1531 (struct tc35815_regs __iomem *)dev->base_addr;
1532 int ret = -1;
1533
1534 /* Fatal errors... */
1535 if (status & FATAL_ERROR_INT) {
1536 tc35815_fatal_error_interrupt(dev, status);
1537 return 0;
1538 }
1539 /* recoverable errors */
1540 if (status & Int_IntFDAEx) {
1541 /* disable FDAEx int. (until we make rooms...) */
1542 tc_writel(tc_readl(&tr->Int_En) & ~Int_FDAExEn, &tr->Int_En);
1543 printk(KERN_WARNING
1544 "%s: Free Descriptor Area Exhausted (%#x).\n",
1545 dev->name, status);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001546 dev->stats.rx_dropped++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001547 ret = 0;
1548 }
1549 if (status & Int_IntBLEx) {
1550 /* disable BLEx int. (until we make rooms...) */
1551 tc_writel(tc_readl(&tr->Int_En) & ~Int_BLExEn, &tr->Int_En);
1552 printk(KERN_WARNING
1553 "%s: Buffer List Exhausted (%#x).\n",
1554 dev->name, status);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001555 dev->stats.rx_dropped++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001556 ret = 0;
1557 }
1558 if (status & Int_IntExBD) {
1559 printk(KERN_WARNING
1560 "%s: Excessive Buffer Descriptiors (%#x).\n",
1561 dev->name, status);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001562 dev->stats.rx_length_errors++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001563 ret = 0;
1564 }
1565
1566 /* normal notification */
1567 if (status & Int_IntMacRx) {
1568 /* Got a packet(s). */
1569#ifdef TC35815_NAPI
1570 ret = tc35815_rx(dev, limit);
1571#else
1572 tc35815_rx(dev);
1573 ret = 0;
1574#endif
1575 lp->lstats.rx_ints++;
1576 }
1577 if (status & Int_IntMacTx) {
1578 /* Transmit complete. */
1579 lp->lstats.tx_ints++;
1580 tc35815_txdone(dev);
1581 netif_wake_queue(dev);
1582 ret = 0;
1583 }
1584 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586
1587/*
1588 * The typical workload of the driver:
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001589 * Handle the network interface interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 */
David Howells7d12e782006-10-05 14:55:46 +01001591static irqreturn_t tc35815_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 struct net_device *dev = dev_id;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001594 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001595 struct tc35815_regs __iomem *tr =
1596 (struct tc35815_regs __iomem *)dev->base_addr;
1597#ifdef TC35815_NAPI
1598 u32 dmactl = tc_readl(&tr->DMA_Ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001600 if (!(dmactl & DMA_IntMask)) {
1601 /* disable interrupts */
1602 tc_writel(dmactl | DMA_IntMask, &tr->DMA_Ctl);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001603 if (netif_rx_schedule_prep(dev, &lp->napi))
1604 __netif_rx_schedule(dev, &lp->napi);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001605 else {
1606 printk(KERN_ERR "%s: interrupt taken in poll\n",
1607 dev->name);
1608 BUG();
1609 }
1610 (void)tc_readl(&tr->Int_Src); /* flush */
1611 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001613 return IRQ_NONE;
1614#else
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001615 int handled;
1616 u32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001618 spin_lock(&lp->lock);
1619 status = tc_readl(&tr->Int_Src);
1620 tc_writel(status, &tr->Int_Src); /* write to clear */
1621 handled = tc35815_do_interrupt(dev, status);
1622 (void)tc_readl(&tr->Int_Src); /* flush */
1623 spin_unlock(&lp->lock);
1624 return IRQ_RETVAL(handled >= 0);
1625#endif /* TC35815_NAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001628#ifdef CONFIG_NET_POLL_CONTROLLER
1629static void tc35815_poll_controller(struct net_device *dev)
1630{
1631 disable_irq(dev->irq);
1632 tc35815_interrupt(dev->irq, dev);
1633 enable_irq(dev->irq);
1634}
1635#endif
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637/* We have a good packet(s), get it/them out of the buffers. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001638#ifdef TC35815_NAPI
1639static int
1640tc35815_rx(struct net_device *dev, int limit)
1641#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642static void
1643tc35815_rx(struct net_device *dev)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001644#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001646 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 unsigned int fdctl;
1648 int i;
1649 int buf_free_count = 0;
1650 int fd_free_count = 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001651#ifdef TC35815_NAPI
1652 int received = 0;
1653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 while (!((fdctl = le32_to_cpu(lp->rfd_cur->fd.FDCtl)) & FD_CownsFD)) {
1656 int status = le32_to_cpu(lp->rfd_cur->fd.FDStat);
1657 int pkt_len = fdctl & FD_FDLength_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 int bd_count = (fdctl & FD_BDCnt_MASK) >> FD_BDCnt_SHIFT;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001659#ifdef DEBUG
1660 struct RxFD *next_rfd;
1661#endif
1662#if (RX_CTL_CMD & Rx_StripCRC) == 0
1663 pkt_len -= 4;
1664#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001666 if (netif_msg_rx_status(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 dump_rxfd(lp->rfd_cur);
1668 if (status & Rx_Good) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 struct sk_buff *skb;
1670 unsigned char *data;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001671 int cur_bd;
1672#ifdef TC35815_USE_PACKEDBUFFER
1673 int offset;
1674#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001676#ifdef TC35815_NAPI
1677 if (--limit < 0)
1678 break;
1679#endif
1680#ifdef TC35815_USE_PACKEDBUFFER
1681 BUG_ON(bd_count > 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 skb = dev_alloc_skb(pkt_len + 2); /* +2: for reserve */
1683 if (skb == NULL) {
1684 printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n",
1685 dev->name);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001686 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 break;
1688 }
1689 skb_reserve(skb, 2); /* 16 bit alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 data = skb_put(skb, pkt_len);
1692
1693 /* copy from receive buffer */
1694 cur_bd = 0;
1695 offset = 0;
1696 while (offset < pkt_len && cur_bd < bd_count) {
1697 int len = le32_to_cpu(lp->rfd_cur->bd[cur_bd].BDCtl) &
1698 BD_BuffLength_MASK;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001699 dma_addr_t dma = le32_to_cpu(lp->rfd_cur->bd[cur_bd].BuffData);
1700 void *rxbuf = rxbuf_bus_to_virt(lp, dma);
1701 if (offset + len > pkt_len)
1702 len = pkt_len - offset;
1703#ifdef TC35815_DMA_SYNC_ONDEMAND
1704 pci_dma_sync_single_for_cpu(lp->pci_dev,
1705 dma, len,
1706 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707#endif
1708 memcpy(data + offset, rxbuf, len);
Atsushi Nemoto793bc0a2007-03-14 01:02:20 +09001709#ifdef TC35815_DMA_SYNC_ONDEMAND
1710 pci_dma_sync_single_for_device(lp->pci_dev,
1711 dma, len,
1712 PCI_DMA_FROMDEVICE);
1713#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 offset += len;
1715 cur_bd++;
1716 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001717#else /* TC35815_USE_PACKEDBUFFER */
1718 BUG_ON(bd_count > 1);
1719 cur_bd = (le32_to_cpu(lp->rfd_cur->bd[0].BDCtl)
1720 & BD_RxBDID_MASK) >> BD_RxBDID_SHIFT;
1721#ifdef DEBUG
1722 if (cur_bd >= RX_BUF_NUM) {
1723 printk("%s: invalid BDID.\n", dev->name);
1724 panic_queues(dev);
1725 }
1726 BUG_ON(lp->rx_skbs[cur_bd].skb_dma !=
1727 (le32_to_cpu(lp->rfd_cur->bd[0].BuffData) & ~3));
1728 if (!lp->rx_skbs[cur_bd].skb) {
1729 printk("%s: NULL skb.\n", dev->name);
1730 panic_queues(dev);
1731 }
1732#else
1733 BUG_ON(cur_bd >= RX_BUF_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001735 skb = lp->rx_skbs[cur_bd].skb;
1736 prefetch(skb->data);
1737 lp->rx_skbs[cur_bd].skb = NULL;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001738 pci_unmap_single(lp->pci_dev,
1739 lp->rx_skbs[cur_bd].skb_dma,
1740 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
1741 if (!HAVE_DMA_RXALIGN(lp))
1742 memmove(skb->data, skb->data - 2, pkt_len);
1743 data = skb_put(skb, pkt_len);
1744#endif /* TC35815_USE_PACKEDBUFFER */
1745 if (netif_msg_pktdata(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 print_eth(data);
1747 skb->protocol = eth_type_trans(skb, dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001748#ifdef TC35815_NAPI
1749 netif_receive_skb(skb);
1750 received++;
1751#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 netif_rx(skb);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001753#endif
1754 dev->last_rx = jiffies;
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001755 dev->stats.rx_packets++;
1756 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 } else {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001758 dev->stats.rx_errors++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001759 printk(KERN_DEBUG "%s: Rx error (status %x)\n",
1760 dev->name, status & Rx_Stat_Mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 /* WORKAROUND: LongErr and CRCErr means Overflow. */
1762 if ((status & Rx_LongErr) && (status & Rx_CRCErr)) {
1763 status &= ~(Rx_LongErr|Rx_CRCErr);
1764 status |= Rx_Over;
1765 }
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001766 if (status & Rx_LongErr)
1767 dev->stats.rx_length_errors++;
1768 if (status & Rx_Over)
1769 dev->stats.rx_fifo_errors++;
1770 if (status & Rx_CRCErr)
1771 dev->stats.rx_crc_errors++;
1772 if (status & Rx_Align)
1773 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 }
1775
1776 if (bd_count > 0) {
1777 /* put Free Buffer back to controller */
1778 int bdctl = le32_to_cpu(lp->rfd_cur->bd[bd_count - 1].BDCtl);
1779 unsigned char id =
1780 (bdctl & BD_RxBDID_MASK) >> BD_RxBDID_SHIFT;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001781#ifdef DEBUG
1782 if (id >= RX_BUF_NUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 printk("%s: invalid BDID.\n", dev->name);
1784 panic_queues(dev);
1785 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001786#else
1787 BUG_ON(id >= RX_BUF_NUM);
1788#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 /* free old buffers */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001790#ifdef TC35815_USE_PACKEDBUFFER
1791 while (lp->fbl_curid != id)
1792#else
Atsushi Nemotoccc57aa2008-06-26 17:14:15 +09001793 lp->fbl_count--;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001794 while (lp->fbl_count < RX_BUF_NUM)
1795#endif
1796 {
1797#ifdef TC35815_USE_PACKEDBUFFER
1798 unsigned char curid = lp->fbl_curid;
1799#else
1800 unsigned char curid =
1801 (id + 1 + lp->fbl_count) % RX_BUF_NUM;
1802#endif
1803 struct BDesc *bd = &lp->fbl_ptr->bd[curid];
1804#ifdef DEBUG
1805 bdctl = le32_to_cpu(bd->BDCtl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if (bdctl & BD_CownsBD) {
1807 printk("%s: Freeing invalid BD.\n",
1808 dev->name);
1809 panic_queues(dev);
1810 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001811#endif
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001812 /* pass BD to controller */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001813#ifndef TC35815_USE_PACKEDBUFFER
1814 if (!lp->rx_skbs[curid].skb) {
1815 lp->rx_skbs[curid].skb =
1816 alloc_rxbuf_skb(dev,
1817 lp->pci_dev,
1818 &lp->rx_skbs[curid].skb_dma);
1819 if (!lp->rx_skbs[curid].skb)
1820 break; /* try on next reception */
1821 bd->BuffData = cpu_to_le32(lp->rx_skbs[curid].skb_dma);
1822 }
1823#endif /* TC35815_USE_PACKEDBUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 /* Note: BDLength was modified by chip. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001825 bd->BDCtl = cpu_to_le32(BD_CownsBD |
1826 (curid << BD_RxBDID_SHIFT) |
1827 RX_BUF_SIZE);
1828#ifdef TC35815_USE_PACKEDBUFFER
1829 lp->fbl_curid = (curid + 1) % RX_BUF_NUM;
1830 if (netif_msg_rx_status(lp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 printk("%s: Entering new FBD %d\n",
1832 dev->name, lp->fbl_curid);
1833 dump_frfd(lp->fbl_ptr);
1834 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001835#else
1836 lp->fbl_count++;
1837#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 buf_free_count++;
1839 }
1840 }
1841
1842 /* put RxFD back to controller */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001843#ifdef DEBUG
1844 next_rfd = fd_bus_to_virt(lp,
1845 le32_to_cpu(lp->rfd_cur->fd.FDNext));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (next_rfd < lp->rfd_base || next_rfd > lp->rfd_limit) {
1847 printk("%s: RxFD FDNext invalid.\n", dev->name);
1848 panic_queues(dev);
1849 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001850#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 for (i = 0; i < (bd_count + 1) / 2 + 1; i++) {
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001852 /* pass FD to controller */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001853#ifdef DEBUG
1854 lp->rfd_cur->fd.FDNext = cpu_to_le32(0xdeaddead);
1855#else
1856 lp->rfd_cur->fd.FDNext = cpu_to_le32(FD_Next_EOL);
1857#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 lp->rfd_cur->fd.FDCtl = cpu_to_le32(FD_CownsFD);
1859 lp->rfd_cur++;
1860 fd_free_count++;
1861 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001862 if (lp->rfd_cur > lp->rfd_limit)
1863 lp->rfd_cur = lp->rfd_base;
1864#ifdef DEBUG
1865 if (lp->rfd_cur != next_rfd)
1866 printk("rfd_cur = %p, next_rfd %p\n",
1867 lp->rfd_cur, next_rfd);
1868#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
1870
1871 /* re-enable BL/FDA Exhaust interrupts. */
1872 if (fd_free_count) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001873 struct tc35815_regs __iomem *tr =
1874 (struct tc35815_regs __iomem *)dev->base_addr;
1875 u32 en, en_old = tc_readl(&tr->Int_En);
1876 en = en_old | Int_FDAExEn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 if (buf_free_count)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001878 en |= Int_BLExEn;
1879 if (en != en_old)
1880 tc_writel(en, &tr->Int_En);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001882#ifdef TC35815_NAPI
1883 return received;
1884#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001887#ifdef TC35815_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001888static int tc35815_poll(struct napi_struct *napi, int budget)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001889{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001890 struct tc35815_local *lp = container_of(napi, struct tc35815_local, napi);
1891 struct net_device *dev = lp->dev;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001892 struct tc35815_regs __iomem *tr =
1893 (struct tc35815_regs __iomem *)dev->base_addr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001894 int received = 0, handled;
1895 u32 status;
1896
1897 spin_lock(&lp->lock);
1898 status = tc_readl(&tr->Int_Src);
1899 do {
1900 tc_writel(status, &tr->Int_Src); /* write to clear */
1901
1902 handled = tc35815_do_interrupt(dev, status, limit);
1903 if (handled >= 0) {
1904 received += handled;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001905 if (received >= budget)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001906 break;
1907 }
1908 status = tc_readl(&tr->Int_Src);
1909 } while (status);
1910 spin_unlock(&lp->lock);
1911
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001912 if (received < budget) {
1913 netif_rx_complete(dev, napi);
1914 /* enable interrupts */
1915 tc_writel(tc_readl(&tr->DMA_Ctl) & ~DMA_IntMask, &tr->DMA_Ctl);
1916 }
1917 return received;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001918}
1919#endif
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921#ifdef NO_CHECK_CARRIER
1922#define TX_STA_ERR (Tx_ExColl|Tx_Under|Tx_Defer|Tx_LateColl|Tx_TxPar|Tx_SQErr)
1923#else
1924#define TX_STA_ERR (Tx_ExColl|Tx_Under|Tx_Defer|Tx_NCarr|Tx_LateColl|Tx_TxPar|Tx_SQErr)
1925#endif
1926
1927static void
1928tc35815_check_tx_stat(struct net_device *dev, int status)
1929{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001930 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 const char *msg = NULL;
1932
1933 /* count collisions */
1934 if (status & Tx_ExColl)
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001935 dev->stats.collisions += 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 if (status & Tx_TxColl_MASK)
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001937 dev->stats.collisions += status & Tx_TxColl_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001939#ifndef NO_CHECK_CARRIER
1940 /* TX4939 does not have NCarr */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001941 if (lp->chiptype == TC35815_TX4939)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 status &= ~Tx_NCarr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001943#ifdef WORKAROUND_LOSTCAR
1944 /* WORKAROUND: ignore LostCrS in full duplex operation */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001945 if (!lp->link || lp->duplex == DUPLEX_FULL)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001946 status &= ~Tx_NCarr;
1947#endif
1948#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 if (!(status & TX_STA_ERR)) {
1951 /* no error. */
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001952 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return;
1954 }
1955
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001956 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (status & Tx_ExColl) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001958 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 msg = "Excessive Collision.";
1960 }
1961 if (status & Tx_Under) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001962 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 msg = "Tx FIFO Underrun.";
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001964 if (lp->lstats.tx_underrun < TX_THRESHOLD_KEEP_LIMIT) {
1965 lp->lstats.tx_underrun++;
1966 if (lp->lstats.tx_underrun >= TX_THRESHOLD_KEEP_LIMIT) {
1967 struct tc35815_regs __iomem *tr =
1968 (struct tc35815_regs __iomem *)dev->base_addr;
1969 tc_writel(TX_THRESHOLD_MAX, &tr->TxThrsh);
1970 msg = "Tx FIFO Underrun.Change Tx threshold to max.";
1971 }
1972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 }
1974 if (status & Tx_Defer) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001975 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 msg = "Excessive Deferral.";
1977 }
1978#ifndef NO_CHECK_CARRIER
1979 if (status & Tx_NCarr) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001980 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 msg = "Lost Carrier Sense.";
1982 }
1983#endif
1984 if (status & Tx_LateColl) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001985 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 msg = "Late Collision.";
1987 }
1988 if (status & Tx_TxPar) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001989 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 msg = "Transmit Parity Error.";
1991 }
1992 if (status & Tx_SQErr) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001993 dev->stats.tx_heartbeat_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 msg = "Signal Quality Error.";
1995 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001996 if (msg && netif_msg_tx_err(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 printk(KERN_WARNING "%s: %s (%#x)\n", dev->name, msg, status);
1998}
1999
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002000/* This handles TX complete events posted by the device
2001 * via interrupts.
2002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003static void
2004tc35815_txdone(struct net_device *dev)
2005{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002006 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 struct TxFD *txfd;
2008 unsigned int fdctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 txfd = &lp->tfd_base[lp->tfd_end];
2011 while (lp->tfd_start != lp->tfd_end &&
2012 !((fdctl = le32_to_cpu(txfd->fd.FDCtl)) & FD_CownsFD)) {
2013 int status = le32_to_cpu(txfd->fd.FDStat);
2014 struct sk_buff *skb;
2015 unsigned long fdnext = le32_to_cpu(txfd->fd.FDNext);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002016 u32 fdsystem = le32_to_cpu(txfd->fd.FDSystem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002018 if (netif_msg_tx_done(lp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 printk("%s: complete TxFD.\n", dev->name);
2020 dump_txfd(txfd);
2021 }
2022 tc35815_check_tx_stat(dev, status);
2023
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002024 skb = fdsystem != 0xffffffff ?
2025 lp->tx_skbs[fdsystem].skb : NULL;
2026#ifdef DEBUG
2027 if (lp->tx_skbs[lp->tfd_end].skb != skb) {
2028 printk("%s: tx_skbs mismatch.\n", dev->name);
2029 panic_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002031#else
2032 BUG_ON(lp->tx_skbs[lp->tfd_end].skb != skb);
2033#endif
2034 if (skb) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002035 dev->stats.tx_bytes += skb->len;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002036 pci_unmap_single(lp->pci_dev, lp->tx_skbs[lp->tfd_end].skb_dma, skb->len, PCI_DMA_TODEVICE);
2037 lp->tx_skbs[lp->tfd_end].skb = NULL;
2038 lp->tx_skbs[lp->tfd_end].skb_dma = 0;
2039#ifdef TC35815_NAPI
2040 dev_kfree_skb_any(skb);
2041#else
2042 dev_kfree_skb_irq(skb);
2043#endif
2044 }
2045 txfd->fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 lp->tfd_end = (lp->tfd_end + 1) % TX_FD_NUM;
2048 txfd = &lp->tfd_base[lp->tfd_end];
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002049#ifdef DEBUG
2050 if ((fdnext & ~FD_Next_EOL) != fd_virt_to_bus(lp, txfd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 printk("%s: TxFD FDNext invalid.\n", dev->name);
2052 panic_queues(dev);
2053 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002054#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 if (fdnext & FD_Next_EOL) {
2056 /* DMA Transmitter has been stopping... */
2057 if (lp->tfd_end != lp->tfd_start) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002058 struct tc35815_regs __iomem *tr =
2059 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 int head = (lp->tfd_start + TX_FD_NUM - 1) % TX_FD_NUM;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002061 struct TxFD *txhead = &lp->tfd_base[head];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 int qlen = (lp->tfd_start + TX_FD_NUM
2063 - lp->tfd_end) % TX_FD_NUM;
2064
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002065#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 if (!(le32_to_cpu(txfd->fd.FDCtl) & FD_CownsFD)) {
2067 printk("%s: TxFD FDCtl invalid.\n", dev->name);
2068 panic_queues(dev);
2069 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002070#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 /* log max queue length */
2072 if (lp->lstats.max_tx_qlen < qlen)
2073 lp->lstats.max_tx_qlen = qlen;
2074
2075
2076 /* start DMA Transmitter again */
2077 txhead->fd.FDNext |= cpu_to_le32(FD_Next_EOL);
2078#ifdef GATHER_TXINT
2079 txhead->fd.FDCtl |= cpu_to_le32(FD_FrmOpt_IntTx);
2080#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002081 if (netif_msg_tx_queued(lp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 printk("%s: start TxFD on queue.\n",
2083 dev->name);
2084 dump_txfd(txfd);
2085 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002086 tc_writel(fd_virt_to_bus(lp, txfd), &tr->TxFrmPtr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
2088 break;
2089 }
2090 }
2091
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002092 /* If we had stopped the queue due to a "tx full"
2093 * condition, and space has now been made available,
2094 * wake up the queue.
2095 */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002096 if (netif_queue_stopped(dev) && !tc35815_tx_full(dev))
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002097 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
2100/* The inverse routine to tc35815_open(). */
2101static int
2102tc35815_close(struct net_device *dev)
2103{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002104 struct tc35815_local *lp = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 netif_stop_queue(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002107#ifdef TC35815_NAPI
2108 napi_disable(&lp->napi);
2109#endif
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002110 if (lp->phy_dev)
2111 phy_stop(lp->phy_dev);
2112 cancel_work_sync(&lp->restart_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 /* Flush the Tx and disable Rx here. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 tc35815_chip_reset(dev);
2116 free_irq(dev->irq, dev);
2117
2118 tc35815_free_queues(dev);
2119
2120 return 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122}
2123
2124/*
2125 * Get the current statistics.
2126 * This may be called with the card open or closed.
2127 */
2128static struct net_device_stats *tc35815_get_stats(struct net_device *dev)
2129{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002130 struct tc35815_regs __iomem *tr =
2131 (struct tc35815_regs __iomem *)dev->base_addr;
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002132 if (netif_running(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 /* Update the statistics from the device registers. */
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002134 dev->stats.rx_missed_errors = tc_readl(&tr->Miss_Cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002136 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002139static void tc35815_set_cam_entry(struct net_device *dev, int index, unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002141 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002142 struct tc35815_regs __iomem *tr =
2143 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 int cam_index = index * 6;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002145 u32 cam_data;
2146 u32 saved_addr;
Atsushi Nemoto958eb802008-04-11 00:24:24 +09002147 DECLARE_MAC_BUF(mac);
2148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 saved_addr = tc_readl(&tr->CAM_Adr);
2150
Atsushi Nemoto958eb802008-04-11 00:24:24 +09002151 if (netif_msg_hw(lp))
2152 printk(KERN_DEBUG "%s: CAM %d: %s\n",
2153 dev->name, index, print_mac(mac, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 if (index & 1) {
2155 /* read modify write */
2156 tc_writel(cam_index - 2, &tr->CAM_Adr);
2157 cam_data = tc_readl(&tr->CAM_Data) & 0xffff0000;
2158 cam_data |= addr[0] << 8 | addr[1];
2159 tc_writel(cam_data, &tr->CAM_Data);
2160 /* write whole word */
2161 tc_writel(cam_index + 2, &tr->CAM_Adr);
2162 cam_data = (addr[2] << 24) | (addr[3] << 16) | (addr[4] << 8) | addr[5];
2163 tc_writel(cam_data, &tr->CAM_Data);
2164 } else {
2165 /* write whole word */
2166 tc_writel(cam_index, &tr->CAM_Adr);
2167 cam_data = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3];
2168 tc_writel(cam_data, &tr->CAM_Data);
2169 /* read modify write */
2170 tc_writel(cam_index + 4, &tr->CAM_Adr);
2171 cam_data = tc_readl(&tr->CAM_Data) & 0x0000ffff;
2172 cam_data |= addr[4] << 24 | (addr[5] << 16);
2173 tc_writel(cam_data, &tr->CAM_Data);
2174 }
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 tc_writel(saved_addr, &tr->CAM_Adr);
2177}
2178
2179
2180/*
2181 * Set or clear the multicast filter for this adaptor.
2182 * num_addrs == -1 Promiscuous mode, receive all packets
2183 * num_addrs == 0 Normal mode, clear multicast list
2184 * num_addrs > 0 Multicast mode, receive normal and MC packets,
2185 * and do best-effort filtering.
2186 */
2187static void
2188tc35815_set_multicast_list(struct net_device *dev)
2189{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002190 struct tc35815_regs __iomem *tr =
2191 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002193 if (dev->flags & IFF_PROMISC) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002194#ifdef WORKAROUND_100HALF_PROMISC
2195 /* With some (all?) 100MHalf HUB, controller will hang
2196 * if we enabled promiscuous mode before linkup... */
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002197 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002198
2199 if (!lp->link)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002200 return;
2201#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 /* Enable promiscuous mode */
2203 tc_writel(CAM_CompEn | CAM_BroadAcc | CAM_GroupAcc | CAM_StationAcc, &tr->CAM_Ctl);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002204 } else if ((dev->flags & IFF_ALLMULTI) ||
2205 dev->mc_count > CAM_ENTRY_MAX - 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 /* CAM 0, 1, 20 are reserved. */
2207 /* Disable promiscuous mode, use normal mode. */
2208 tc_writel(CAM_CompEn | CAM_BroadAcc | CAM_GroupAcc, &tr->CAM_Ctl);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002209 } else if (dev->mc_count) {
2210 struct dev_mc_list *cur_addr = dev->mc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 int i;
2212 int ena_bits = CAM_Ena_Bit(CAM_ENTRY_SOURCE);
2213
2214 tc_writel(0, &tr->CAM_Ctl);
2215 /* Walk the address list, and load the filter */
2216 for (i = 0; i < dev->mc_count; i++, cur_addr = cur_addr->next) {
2217 if (!cur_addr)
2218 break;
2219 /* entry 0,1 is reserved. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002220 tc35815_set_cam_entry(dev, i + 2, cur_addr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 ena_bits |= CAM_Ena_Bit(i + 2);
2222 }
2223 tc_writel(ena_bits, &tr->CAM_Ena);
2224 tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002225 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 tc_writel(CAM_Ena_Bit(CAM_ENTRY_SOURCE), &tr->CAM_Ena);
2227 tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
2228 }
2229}
2230
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002231static void tc35815_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002233 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002234 strcpy(info->driver, MODNAME);
2235 strcpy(info->version, DRV_VERSION);
2236 strcpy(info->bus_info, pci_name(lp->pci_dev));
2237}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002238
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002239static int tc35815_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2240{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002241 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002242
2243 if (!lp->phy_dev)
2244 return -ENODEV;
2245 return phy_ethtool_gset(lp->phy_dev, cmd);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002246}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002248static int tc35815_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2249{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002250 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002251
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002252 if (!lp->phy_dev)
2253 return -ENODEV;
2254 return phy_ethtool_sset(lp->phy_dev, cmd);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002255}
2256
2257static u32 tc35815_get_msglevel(struct net_device *dev)
2258{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002259 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002260 return lp->msg_enable;
2261}
2262
2263static void tc35815_set_msglevel(struct net_device *dev, u32 datum)
2264{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002265 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002266 lp->msg_enable = datum;
2267}
2268
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002269static int tc35815_get_sset_count(struct net_device *dev, int sset)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002270{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002271 struct tc35815_local *lp = netdev_priv(dev);
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002272
2273 switch (sset) {
2274 case ETH_SS_STATS:
2275 return sizeof(lp->lstats) / sizeof(int);
2276 default:
2277 return -EOPNOTSUPP;
2278 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002279}
2280
2281static void tc35815_get_ethtool_stats(struct net_device *dev, struct ethtool_stats *stats, u64 *data)
2282{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002283 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002284 data[0] = lp->lstats.max_tx_qlen;
2285 data[1] = lp->lstats.tx_ints;
2286 data[2] = lp->lstats.rx_ints;
2287 data[3] = lp->lstats.tx_underrun;
2288}
2289
2290static struct {
2291 const char str[ETH_GSTRING_LEN];
2292} ethtool_stats_keys[] = {
2293 { "max_tx_qlen" },
2294 { "tx_ints" },
2295 { "rx_ints" },
2296 { "tx_underrun" },
2297};
2298
2299static void tc35815_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2300{
2301 memcpy(data, ethtool_stats_keys, sizeof(ethtool_stats_keys));
2302}
2303
2304static const struct ethtool_ops tc35815_ethtool_ops = {
2305 .get_drvinfo = tc35815_get_drvinfo,
2306 .get_settings = tc35815_get_settings,
2307 .set_settings = tc35815_set_settings,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002308 .get_link = ethtool_op_get_link,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002309 .get_msglevel = tc35815_get_msglevel,
2310 .set_msglevel = tc35815_set_msglevel,
2311 .get_strings = tc35815_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002312 .get_sset_count = tc35815_get_sset_count,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002313 .get_ethtool_stats = tc35815_get_ethtool_stats,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002314};
2315
2316static int tc35815_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2317{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002318 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002319
2320 if (!netif_running(dev))
2321 return -EINVAL;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002322 if (!lp->phy_dev)
2323 return -ENODEV;
2324 return phy_mii_ioctl(lp->phy_dev, if_mii(rq), cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325}
2326
2327static void tc35815_chip_reset(struct net_device *dev)
2328{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002329 struct tc35815_regs __iomem *tr =
2330 (struct tc35815_regs __iomem *)dev->base_addr;
2331 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 /* reset the controller */
2333 tc_writel(MAC_Reset, &tr->MAC_Ctl);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002334 udelay(4); /* 3200ns */
2335 i = 0;
2336 while (tc_readl(&tr->MAC_Ctl) & MAC_Reset) {
2337 if (i++ > 100) {
2338 printk(KERN_ERR "%s: MAC reset failed.\n", dev->name);
2339 break;
2340 }
2341 mdelay(1);
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 tc_writel(0, &tr->MAC_Ctl);
2344
2345 /* initialize registers to default value */
2346 tc_writel(0, &tr->DMA_Ctl);
2347 tc_writel(0, &tr->TxThrsh);
2348 tc_writel(0, &tr->TxPollCtr);
2349 tc_writel(0, &tr->RxFragSize);
2350 tc_writel(0, &tr->Int_En);
2351 tc_writel(0, &tr->FDA_Bas);
2352 tc_writel(0, &tr->FDA_Lim);
2353 tc_writel(0xffffffff, &tr->Int_Src); /* Write 1 to clear */
2354 tc_writel(0, &tr->CAM_Ctl);
2355 tc_writel(0, &tr->Tx_Ctl);
2356 tc_writel(0, &tr->Rx_Ctl);
2357 tc_writel(0, &tr->CAM_Ena);
2358 (void)tc_readl(&tr->Miss_Cnt); /* Read to clear */
2359
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002360 /* initialize internal SRAM */
2361 tc_writel(DMA_TestMode, &tr->DMA_Ctl);
2362 for (i = 0; i < 0x1000; i += 4) {
2363 tc_writel(i, &tr->CAM_Adr);
2364 tc_writel(0, &tr->CAM_Data);
2365 }
2366 tc_writel(0, &tr->DMA_Ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
2368
2369static void tc35815_chip_init(struct net_device *dev)
2370{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002371 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002372 struct tc35815_regs __iomem *tr =
2373 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 unsigned long txctl = TX_CTL_CMD;
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 /* load station address to CAM */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002377 tc35815_set_cam_entry(dev, CAM_ENTRY_SOURCE, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
2379 /* Enable CAM (broadcast and unicast) */
2380 tc_writel(CAM_Ena_Bit(CAM_ENTRY_SOURCE), &tr->CAM_Ena);
2381 tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
2382
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002383 /* Use DMA_RxAlign_2 to make IP header 4-byte aligned. */
2384 if (HAVE_DMA_RXALIGN(lp))
2385 tc_writel(DMA_BURST_SIZE | DMA_RxAlign_2, &tr->DMA_Ctl);
2386 else
2387 tc_writel(DMA_BURST_SIZE, &tr->DMA_Ctl);
2388#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 tc_writel(RxFrag_EnPack | ETH_ZLEN, &tr->RxFragSize); /* Packing */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002390#else
2391 tc_writel(ETH_ZLEN, &tr->RxFragSize);
2392#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 tc_writel(0, &tr->TxPollCtr); /* Batch mode */
2394 tc_writel(TX_THRESHOLD, &tr->TxThrsh);
2395 tc_writel(INT_EN_CMD, &tr->Int_En);
2396
2397 /* set queues */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002398 tc_writel(fd_virt_to_bus(lp, lp->rfd_base), &tr->FDA_Bas);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 tc_writel((unsigned long)lp->rfd_limit - (unsigned long)lp->rfd_base,
2400 &tr->FDA_Lim);
2401 /*
2402 * Activation method:
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002403 * First, enable the MAC Transmitter and the DMA Receive circuits.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 * Then enable the DMA Transmitter and the MAC Receive circuits.
2405 */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002406 tc_writel(fd_virt_to_bus(lp, lp->fbl_ptr), &tr->BLFrmPtr); /* start DMA receiver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 tc_writel(RX_CTL_CMD, &tr->Rx_Ctl); /* start MAC receiver */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002408
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 /* start MAC transmitter */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002410#ifndef NO_CHECK_CARRIER
2411 /* TX4939 does not have EnLCarr */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002412 if (lp->chiptype == TC35815_TX4939)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002413 txctl &= ~Tx_EnLCarr;
2414#ifdef WORKAROUND_LOSTCAR
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 /* WORKAROUND: ignore LostCrS in full duplex operation */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002416 if (!lp->phy_dev || !lp->link || lp->duplex == DUPLEX_FULL)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002417 txctl &= ~Tx_EnLCarr;
2418#endif
2419#endif /* !NO_CHECK_CARRIER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420#ifdef GATHER_TXINT
2421 txctl &= ~Tx_EnComp; /* disable global tx completion int. */
2422#endif
2423 tc_writel(txctl, &tr->Tx_Ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424}
2425
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002426#ifdef CONFIG_PM
2427static int tc35815_suspend(struct pci_dev *pdev, pm_message_t state)
2428{
2429 struct net_device *dev = pci_get_drvdata(pdev);
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002430 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002431 unsigned long flags;
2432
2433 pci_save_state(pdev);
2434 if (!netif_running(dev))
2435 return 0;
2436 netif_device_detach(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002437 if (lp->phy_dev)
2438 phy_stop(lp->phy_dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002439 spin_lock_irqsave(&lp->lock, flags);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002440 tc35815_chip_reset(dev);
2441 spin_unlock_irqrestore(&lp->lock, flags);
2442 pci_set_power_state(pdev, PCI_D3hot);
2443 return 0;
2444}
2445
2446static int tc35815_resume(struct pci_dev *pdev)
2447{
2448 struct net_device *dev = pci_get_drvdata(pdev);
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002449 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002450
2451 pci_restore_state(pdev);
2452 if (!netif_running(dev))
2453 return 0;
2454 pci_set_power_state(pdev, PCI_D0);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002455 tc35815_restart(dev);
Atsushi Nemoto59524a32008-06-25 11:41:01 +09002456 netif_carrier_off(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002457 if (lp->phy_dev)
2458 phy_start(lp->phy_dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002459 netif_device_attach(dev);
2460 return 0;
2461}
2462#endif /* CONFIG_PM */
2463
2464static struct pci_driver tc35815_pci_driver = {
2465 .name = MODNAME,
2466 .id_table = tc35815_pci_tbl,
2467 .probe = tc35815_init_one,
2468 .remove = __devexit_p(tc35815_remove_one),
2469#ifdef CONFIG_PM
2470 .suspend = tc35815_suspend,
2471 .resume = tc35815_resume,
2472#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473};
2474
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002475module_param_named(speed, options.speed, int, 0);
2476MODULE_PARM_DESC(speed, "0:auto, 10:10Mbps, 100:100Mbps");
2477module_param_named(duplex, options.duplex, int, 0);
2478MODULE_PARM_DESC(duplex, "0:auto, 1:half, 2:full");
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480static int __init tc35815_init_module(void)
2481{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002482 return pci_register_driver(&tc35815_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483}
2484
2485static void __exit tc35815_cleanup_module(void)
2486{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002487 pci_unregister_driver(&tc35815_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488}
Jeff Garzik420e8522007-02-24 17:02:16 -05002489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490module_init(tc35815_init_module);
2491module_exit(tc35815_cleanup_module);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002492
2493MODULE_DESCRIPTION("TOSHIBA TC35815 PCI 10M/100M Ethernet driver");
2494MODULE_LICENSE("GPL");