blob: 3d3847904c00c218119b8292255513d88e175fc5 [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 Nemoto297713d2009-08-06 04:41:45 +000026#define DRV_VERSION "1.38-NAPI"
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090027#else
Atsushi Nemoto297713d2009-08-06 04:41:45 +000028#define DRV_VERSION "1.38"
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>
Atsushi Nemoto82a99282008-12-11 20:58:04 -080040#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/slab.h>
42#include <linux/string.h>
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090043#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/errno.h>
45#include <linux/init.h>
46#include <linux/netdevice.h>
47#include <linux/etherdevice.h>
48#include <linux/skbuff.h>
49#include <linux/delay.h>
50#include <linux/pci.h>
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090051#include <linux/phy.h>
52#include <linux/workqueue.h>
Atsushi Nemotobd43da82007-06-29 22:34:53 +090053#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/byteorder.h>
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* First, a few definitions that the brave might change. */
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#define GATHER_TXINT /* On-Demand Tx Interrupt */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090060#define WORKAROUND_LOSTCAR
61#define WORKAROUND_100HALF_PROMISC
62/* #define TC35815_USE_PACKEDBUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090064enum tc35815_chiptype {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090065 TC35815CF = 0,
66 TC35815_NWU,
67 TC35815_TX4939,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090068};
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090069
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090070/* indexed by tc35815_chiptype, above */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090071static const struct {
72 const char *name;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +090073} chip_info[] __devinitdata = {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090074 { "TOSHIBA TC35815CF 10/100BaseTX" },
75 { "TOSHIBA TC35815 with Wake on LAN" },
76 { "TOSHIBA TC35815/TX4939" },
77};
78
79static const struct pci_device_id tc35815_pci_tbl[] = {
80 {PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC35815CF), .driver_data = TC35815CF },
81 {PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC35815_NWU), .driver_data = TC35815_NWU },
82 {PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC35815_TX4939), .driver_data = TC35815_TX4939 },
83 {0,}
84};
Atsushi Nemoto7f225b42008-04-11 00:25:31 +090085MODULE_DEVICE_TABLE(pci, tc35815_pci_tbl);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090086
87/* see MODULE_PARM_DESC */
88static struct tc35815_options {
89 int speed;
90 int duplex;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +090091} options;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/*
94 * Registers
95 */
96struct tc35815_regs {
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +090097 __u32 DMA_Ctl; /* 0x00 */
98 __u32 TxFrmPtr;
99 __u32 TxThrsh;
100 __u32 TxPollCtr;
101 __u32 BLFrmPtr;
102 __u32 RxFragSize;
103 __u32 Int_En;
104 __u32 FDA_Bas;
105 __u32 FDA_Lim; /* 0x20 */
106 __u32 Int_Src;
107 __u32 unused0[2];
108 __u32 PauseCnt;
109 __u32 RemPauCnt;
110 __u32 TxCtlFrmStat;
111 __u32 unused1;
112 __u32 MAC_Ctl; /* 0x40 */
113 __u32 CAM_Ctl;
114 __u32 Tx_Ctl;
115 __u32 Tx_Stat;
116 __u32 Rx_Ctl;
117 __u32 Rx_Stat;
118 __u32 MD_Data;
119 __u32 MD_CA;
120 __u32 CAM_Adr; /* 0x60 */
121 __u32 CAM_Data;
122 __u32 CAM_Ena;
123 __u32 PROM_Ctl;
124 __u32 PROM_Data;
125 __u32 Algn_Cnt;
126 __u32 CRC_Cnt;
127 __u32 Miss_Cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
130/*
131 * Bit assignments
132 */
133/* DMA_Ctl bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900134#define DMA_RxAlign 0x00c00000 /* 1:Reception Alignment */
135#define DMA_RxAlign_1 0x00400000
136#define DMA_RxAlign_2 0x00800000
137#define DMA_RxAlign_3 0x00c00000
138#define DMA_M66EnStat 0x00080000 /* 1:66MHz Enable State */
139#define DMA_IntMask 0x00040000 /* 1:Interupt mask */
140#define DMA_SWIntReq 0x00020000 /* 1:Software Interrupt request */
141#define DMA_TxWakeUp 0x00010000 /* 1:Transmit Wake Up */
142#define DMA_RxBigE 0x00008000 /* 1:Receive Big Endian */
143#define DMA_TxBigE 0x00004000 /* 1:Transmit Big Endian */
144#define DMA_TestMode 0x00002000 /* 1:Test Mode */
145#define DMA_PowrMgmnt 0x00001000 /* 1:Power Management */
146#define DMA_DmBurst_Mask 0x000001fc /* DMA Burst size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148/* RxFragSize bit asign ---------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900149#define RxFrag_EnPack 0x00008000 /* 1:Enable Packing */
150#define RxFrag_MinFragMask 0x00000ffc /* Minimum Fragment */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152/* MAC_Ctl bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900153#define MAC_Link10 0x00008000 /* 1:Link Status 10Mbits */
154#define MAC_EnMissRoll 0x00002000 /* 1:Enable Missed Roll */
155#define MAC_MissRoll 0x00000400 /* 1:Missed Roll */
156#define MAC_Loop10 0x00000080 /* 1:Loop 10 Mbps */
157#define MAC_Conn_Auto 0x00000000 /*00:Connection mode (Automatic) */
158#define MAC_Conn_10M 0x00000020 /*01: (10Mbps endec)*/
159#define MAC_Conn_Mll 0x00000040 /*10: (Mll clock) */
160#define MAC_MacLoop 0x00000010 /* 1:MAC Loopback */
161#define MAC_FullDup 0x00000008 /* 1:Full Duplex 0:Half Duplex */
162#define MAC_Reset 0x00000004 /* 1:Software Reset */
163#define MAC_HaltImm 0x00000002 /* 1:Halt Immediate */
164#define MAC_HaltReq 0x00000001 /* 1:Halt request */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166/* PROM_Ctl bit asign ------------------------------------------------------ */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900167#define PROM_Busy 0x00008000 /* 1:Busy (Start Operation) */
168#define PROM_Read 0x00004000 /*10:Read operation */
169#define PROM_Write 0x00002000 /*01:Write operation */
170#define PROM_Erase 0x00006000 /*11:Erase operation */
171 /*00:Enable or Disable Writting, */
172 /* as specified in PROM_Addr. */
173#define PROM_Addr_Ena 0x00000030 /*11xxxx:PROM Write enable */
174 /*00xxxx: disable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176/* CAM_Ctl bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900177#define CAM_CompEn 0x00000010 /* 1:CAM Compare Enable */
178#define CAM_NegCAM 0x00000008 /* 1:Reject packets CAM recognizes,*/
179 /* accept other */
180#define CAM_BroadAcc 0x00000004 /* 1:Broadcast assept */
181#define CAM_GroupAcc 0x00000002 /* 1:Multicast assept */
182#define CAM_StationAcc 0x00000001 /* 1:unicast accept */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184/* CAM_Ena bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900185#define CAM_ENTRY_MAX 21 /* CAM Data entry max count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define CAM_Ena_Mask ((1<<CAM_ENTRY_MAX)-1) /* CAM Enable bits (Max 21bits) */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900187#define CAM_Ena_Bit(index) (1 << (index))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188#define CAM_ENTRY_DESTINATION 0
189#define CAM_ENTRY_SOURCE 1
190#define CAM_ENTRY_MACCTL 20
191
192/* Tx_Ctl bit asign -------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900193#define Tx_En 0x00000001 /* 1:Transmit enable */
194#define Tx_TxHalt 0x00000002 /* 1:Transmit Halt Request */
195#define Tx_NoPad 0x00000004 /* 1:Suppress Padding */
196#define Tx_NoCRC 0x00000008 /* 1:Suppress Padding */
197#define Tx_FBack 0x00000010 /* 1:Fast Back-off */
198#define Tx_EnUnder 0x00000100 /* 1:Enable Underrun */
199#define Tx_EnExDefer 0x00000200 /* 1:Enable Excessive Deferral */
200#define Tx_EnLCarr 0x00000400 /* 1:Enable Lost Carrier */
201#define Tx_EnExColl 0x00000800 /* 1:Enable Excessive Collision */
202#define Tx_EnLateColl 0x00001000 /* 1:Enable Late Collision */
203#define Tx_EnTxPar 0x00002000 /* 1:Enable Transmit Parity */
204#define Tx_EnComp 0x00004000 /* 1:Enable Completion */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206/* Tx_Stat bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900207#define Tx_TxColl_MASK 0x0000000F /* Tx Collision Count */
208#define Tx_ExColl 0x00000010 /* Excessive Collision */
209#define Tx_TXDefer 0x00000020 /* Transmit Defered */
210#define Tx_Paused 0x00000040 /* Transmit Paused */
211#define Tx_IntTx 0x00000080 /* Interrupt on Tx */
212#define Tx_Under 0x00000100 /* Underrun */
213#define Tx_Defer 0x00000200 /* Deferral */
214#define Tx_NCarr 0x00000400 /* No Carrier */
215#define Tx_10Stat 0x00000800 /* 10Mbps Status */
216#define Tx_LateColl 0x00001000 /* Late Collision */
217#define Tx_TxPar 0x00002000 /* Tx Parity Error */
218#define Tx_Comp 0x00004000 /* Completion */
219#define Tx_Halted 0x00008000 /* Tx Halted */
220#define Tx_SQErr 0x00010000 /* Signal Quality Error(SQE) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222/* Rx_Ctl bit asign -------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900223#define Rx_EnGood 0x00004000 /* 1:Enable Good */
224#define Rx_EnRxPar 0x00002000 /* 1:Enable Receive Parity */
225#define Rx_EnLongErr 0x00000800 /* 1:Enable Long Error */
226#define Rx_EnOver 0x00000400 /* 1:Enable OverFlow */
227#define Rx_EnCRCErr 0x00000200 /* 1:Enable CRC Error */
228#define Rx_EnAlign 0x00000100 /* 1:Enable Alignment */
229#define Rx_IgnoreCRC 0x00000040 /* 1:Ignore CRC Value */
230#define Rx_StripCRC 0x00000010 /* 1:Strip CRC Value */
231#define Rx_ShortEn 0x00000008 /* 1:Short Enable */
232#define Rx_LongEn 0x00000004 /* 1:Long Enable */
233#define Rx_RxHalt 0x00000002 /* 1:Receive Halt Request */
234#define Rx_RxEn 0x00000001 /* 1:Receive Intrrupt Enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236/* Rx_Stat bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900237#define Rx_Halted 0x00008000 /* Rx Halted */
238#define Rx_Good 0x00004000 /* Rx Good */
239#define Rx_RxPar 0x00002000 /* Rx Parity Error */
Atsushi Nemoto842e08b2008-10-28 22:30:23 +0900240#define Rx_TypePkt 0x00001000 /* Rx Type Packet */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900241#define Rx_LongErr 0x00000800 /* Rx Long Error */
242#define Rx_Over 0x00000400 /* Rx Overflow */
243#define Rx_CRCErr 0x00000200 /* Rx CRC Error */
244#define Rx_Align 0x00000100 /* Rx Alignment Error */
245#define Rx_10Stat 0x00000080 /* Rx 10Mbps Status */
246#define Rx_IntRx 0x00000040 /* Rx Interrupt */
247#define Rx_CtlRecd 0x00000020 /* Rx Control Receive */
Atsushi Nemoto842e08b2008-10-28 22:30:23 +0900248#define Rx_InLenErr 0x00000010 /* Rx In Range Frame Length Error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Atsushi Nemoto842e08b2008-10-28 22:30:23 +0900250#define Rx_Stat_Mask 0x0000FFF0 /* Rx All Status Mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252/* Int_En bit asign -------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900253#define Int_NRAbtEn 0x00000800 /* 1:Non-recoverable Abort Enable */
254#define Int_TxCtlCmpEn 0x00000400 /* 1:Transmit Ctl Complete Enable */
255#define Int_DmParErrEn 0x00000200 /* 1:DMA Parity Error Enable */
256#define Int_DParDEn 0x00000100 /* 1:Data Parity Error Enable */
257#define Int_EarNotEn 0x00000080 /* 1:Early Notify Enable */
258#define Int_DParErrEn 0x00000040 /* 1:Detected Parity Error Enable */
259#define Int_SSysErrEn 0x00000020 /* 1:Signalled System Error Enable */
260#define Int_RMasAbtEn 0x00000010 /* 1:Received Master Abort Enable */
261#define Int_RTargAbtEn 0x00000008 /* 1:Received Target Abort Enable */
262#define Int_STargAbtEn 0x00000004 /* 1:Signalled Target Abort Enable */
263#define Int_BLExEn 0x00000002 /* 1:Buffer List Exhausted Enable */
264#define Int_FDAExEn 0x00000001 /* 1:Free Descriptor Area */
265 /* Exhausted Enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267/* Int_Src bit asign ------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900268#define Int_NRabt 0x00004000 /* 1:Non Recoverable error */
269#define Int_DmParErrStat 0x00002000 /* 1:DMA Parity Error & Clear */
270#define Int_BLEx 0x00001000 /* 1:Buffer List Empty & Clear */
271#define Int_FDAEx 0x00000800 /* 1:FDA Empty & Clear */
272#define Int_IntNRAbt 0x00000400 /* 1:Non Recoverable Abort */
273#define Int_IntCmp 0x00000200 /* 1:MAC control packet complete */
274#define Int_IntExBD 0x00000100 /* 1:Interrupt Extra BD & Clear */
275#define Int_DmParErr 0x00000080 /* 1:DMA Parity Error & Clear */
276#define Int_IntEarNot 0x00000040 /* 1:Receive Data write & Clear */
277#define Int_SWInt 0x00000020 /* 1:Software request & Clear */
278#define Int_IntBLEx 0x00000010 /* 1:Buffer List Empty & Clear */
279#define Int_IntFDAEx 0x00000008 /* 1:FDA Empty & Clear */
280#define Int_IntPCI 0x00000004 /* 1:PCI controller & Clear */
281#define Int_IntMacRx 0x00000002 /* 1:Rx controller & Clear */
282#define Int_IntMacTx 0x00000001 /* 1:Tx controller & Clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284/* MD_CA bit asign --------------------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900285#define MD_CA_PreSup 0x00001000 /* 1:Preamble Supress */
286#define MD_CA_Busy 0x00000800 /* 1:Busy (Start Operation) */
287#define MD_CA_Wr 0x00000400 /* 1:Write 0:Read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/*
291 * Descriptors
292 */
293
294/* Frame descripter */
295struct FDesc {
296 volatile __u32 FDNext;
297 volatile __u32 FDSystem;
298 volatile __u32 FDStat;
299 volatile __u32 FDCtl;
300};
301
302/* Buffer descripter */
303struct BDesc {
304 volatile __u32 BuffData;
305 volatile __u32 BDCtl;
306};
307
308#define FD_ALIGN 16
309
310/* Frame Descripter bit asign ---------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900311#define FD_FDLength_MASK 0x0000FFFF /* Length MASK */
312#define FD_BDCnt_MASK 0x001F0000 /* BD count MASK in FD */
313#define FD_FrmOpt_MASK 0x7C000000 /* Frame option MASK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#define FD_FrmOpt_BigEndian 0x40000000 /* Tx/Rx */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900315#define FD_FrmOpt_IntTx 0x20000000 /* Tx only */
316#define FD_FrmOpt_NoCRC 0x10000000 /* Tx only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#define FD_FrmOpt_NoPadding 0x08000000 /* Tx only */
318#define FD_FrmOpt_Packing 0x04000000 /* Rx only */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900319#define FD_CownsFD 0x80000000 /* FD Controller owner bit */
320#define FD_Next_EOL 0x00000001 /* FD EOL indicator */
321#define FD_BDCnt_SHIFT 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323/* Buffer Descripter bit asign --------------------------------------------- */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900324#define BD_BuffLength_MASK 0x0000FFFF /* Recieve Data Size */
325#define BD_RxBDID_MASK 0x00FF0000 /* BD ID Number MASK */
326#define BD_RxBDSeqN_MASK 0x7F000000 /* Rx BD Sequence Number */
327#define BD_CownsBD 0x80000000 /* BD Controller owner bit */
328#define BD_RxBDID_SHIFT 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#define BD_RxBDSeqN_SHIFT 24
330
331
332/* Some useful constants. */
333#undef NO_CHECK_CARRIER /* Does not check No-Carrier with TP */
334
335#ifdef NO_CHECK_CARRIER
336#define TX_CTL_CMD (Tx_EnComp | Tx_EnTxPar | Tx_EnLateColl | \
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900337 Tx_EnExColl | Tx_EnExDefer | Tx_EnUnder | \
338 Tx_En) /* maybe 0x7b01 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339#else
340#define TX_CTL_CMD (Tx_EnComp | Tx_EnTxPar | Tx_EnLateColl | \
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900341 Tx_EnExColl | Tx_EnLCarr | Tx_EnExDefer | Tx_EnUnder | \
342 Tx_En) /* maybe 0x7b01 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343#endif
Atsushi Nemoto297713d2009-08-06 04:41:45 +0000344/* Do not use Rx_StripCRC -- it causes trouble on BLEx/FDAEx condition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345#define RX_CTL_CMD (Rx_EnGood | Rx_EnRxPar | Rx_EnLongErr | Rx_EnOver \
Atsushi Nemoto297713d2009-08-06 04:41:45 +0000346 | Rx_EnCRCErr | Rx_EnAlign | Rx_RxEn) /* maybe 0x6f01 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347#define INT_EN_CMD (Int_NRAbtEn | \
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900348 Int_DmParErrEn | Int_DParDEn | Int_DParErrEn | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 Int_SSysErrEn | Int_RMasAbtEn | Int_RTargAbtEn | \
350 Int_STargAbtEn | \
351 Int_BLExEn | Int_FDAExEn) /* maybe 0xb7f*/
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900352#define DMA_CTL_CMD DMA_BURST_SIZE
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900353#define HAVE_DMA_RXALIGN(lp) likely((lp)->chiptype != TC35815CF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355/* Tuning parameters */
356#define DMA_BURST_SIZE 32
357#define TX_THRESHOLD 1024
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900358/* used threshold with packet max byte for low pci transfer ability.*/
359#define TX_THRESHOLD_MAX 1536
360/* setting threshold max value when overrun error occured this count. */
361#define TX_THRESHOLD_KEEP_LIMIT 10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900363/* 16 + RX_BUF_NUM * 8 + RX_FD_NUM * 16 + TX_FD_NUM * 32 <= PAGE_SIZE*FD_PAGE_NUM */
364#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365#define FD_PAGE_NUM 2
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900366#define RX_BUF_NUM 8 /* >= 2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367#define RX_FD_NUM 250 /* >= 32 */
368#define TX_FD_NUM 128
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900369#define RX_BUF_SIZE PAGE_SIZE
370#else /* TC35815_USE_PACKEDBUFFER */
371#define FD_PAGE_NUM 4
372#define RX_BUF_NUM 128 /* < 256 */
373#define RX_FD_NUM 256 /* >= 32 */
374#define TX_FD_NUM 128
375#if RX_CTL_CMD & Rx_LongEn
376#define RX_BUF_SIZE PAGE_SIZE
377#elif RX_CTL_CMD & Rx_StripCRC
Atsushi Nemoto82a99282008-12-11 20:58:04 -0800378#define RX_BUF_SIZE \
379 L1_CACHE_ALIGN(ETH_FRAME_LEN + VLAN_HLEN + NET_IP_ALIGN)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900380#else
Atsushi Nemoto82a99282008-12-11 20:58:04 -0800381#define RX_BUF_SIZE \
382 L1_CACHE_ALIGN(ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN + NET_IP_ALIGN)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900383#endif
384#endif /* TC35815_USE_PACKEDBUFFER */
385#define RX_FD_RESERVE (2 / 2) /* max 2 BD per RxFD */
386#define NAPI_WEIGHT 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388struct TxFD {
389 struct FDesc fd;
390 struct BDesc bd;
391 struct BDesc unused;
392};
393
394struct RxFD {
395 struct FDesc fd;
396 struct BDesc bd[0]; /* variable length */
397};
398
399struct FrFD {
400 struct FDesc fd;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900401 struct BDesc bd[RX_BUF_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402};
403
404
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900405#define tc_readl(addr) ioread32(addr)
406#define tc_writel(d, addr) iowrite32(d, addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900408#define TC35815_TX_TIMEOUT msecs_to_jiffies(400)
409
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900410/* Information that need to be kept for each controller. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411struct tc35815_local {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900412 struct pci_dev *pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700414 struct net_device *dev;
415 struct napi_struct napi;
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 /* statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 struct {
419 int max_tx_qlen;
420 int tx_ints;
421 int rx_ints;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900422 int tx_underrun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 } lstats;
424
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900425 /* Tx control lock. This protects the transmit buffer ring
426 * state along with the "tx full" state of the driver. This
427 * means all netif_queue flow control actions are protected
428 * by this lock as well.
429 */
430 spinlock_t lock;
431
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700432 struct mii_bus *mii_bus;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900433 struct phy_device *phy_dev;
434 int duplex;
435 int speed;
436 int link;
437 struct work_struct restart_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 /*
440 * Transmitting: Batch Mode.
441 * 1 BD in 1 TxFD.
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900442 * Receiving: Packing Mode. (TC35815_USE_PACKEDBUFFER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * 1 circular FD for Free Buffer List.
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900444 * RX_BUF_NUM BD in Free Buffer FD.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * One Free Buffer BD has PAGE_SIZE data buffer.
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900446 * Or Non-Packing Mode.
447 * 1 circular FD for Free Buffer List.
448 * RX_BUF_NUM BD in Free Buffer FD.
449 * One Free Buffer BD has ETH_FRAME_LEN data buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900451 void *fd_buf; /* for TxFD, RxFD, FrFD */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900452 dma_addr_t fd_buf_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 struct TxFD *tfd_base;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900454 unsigned int tfd_start;
455 unsigned int tfd_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 struct RxFD *rfd_base;
457 struct RxFD *rfd_limit;
458 struct RxFD *rfd_cur;
459 struct FrFD *fbl_ptr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900460#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 unsigned char fbl_curid;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900462 void *data_buf[RX_BUF_NUM]; /* packing */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900463 dma_addr_t data_buf_dma[RX_BUF_NUM];
464 struct {
465 struct sk_buff *skb;
466 dma_addr_t skb_dma;
467 } tx_skbs[TX_FD_NUM];
468#else
469 unsigned int fbl_count;
470 struct {
471 struct sk_buff *skb;
472 dma_addr_t skb_dma;
473 } tx_skbs[TX_FD_NUM], rx_skbs[RX_BUF_NUM];
474#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900475 u32 msg_enable;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900476 enum tc35815_chiptype chiptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477};
478
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900479static inline dma_addr_t fd_virt_to_bus(struct tc35815_local *lp, void *virt)
480{
481 return lp->fd_buf_dma + ((u8 *)virt - (u8 *)lp->fd_buf);
482}
483#ifdef DEBUG
484static inline void *fd_bus_to_virt(struct tc35815_local *lp, dma_addr_t bus)
485{
486 return (void *)((u8 *)lp->fd_buf + (bus - lp->fd_buf_dma));
487}
488#endif
489#ifdef TC35815_USE_PACKEDBUFFER
490static inline void *rxbuf_bus_to_virt(struct tc35815_local *lp, dma_addr_t bus)
491{
492 int i;
493 for (i = 0; i < RX_BUF_NUM; i++) {
494 if (bus >= lp->data_buf_dma[i] &&
495 bus < lp->data_buf_dma[i] + PAGE_SIZE)
496 return (void *)((u8 *)lp->data_buf[i] +
497 (bus - lp->data_buf_dma[i]));
498 }
499 return NULL;
500}
501
502#define TC35815_DMA_SYNC_ONDEMAND
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900503static void *alloc_rxbuf_page(struct pci_dev *hwdev, dma_addr_t *dma_handle)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900504{
505#ifdef TC35815_DMA_SYNC_ONDEMAND
506 void *buf;
507 /* pci_map + pci_dma_sync will be more effective than
508 * pci_alloc_consistent on some archs. */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900509 buf = (void *)__get_free_page(GFP_ATOMIC);
510 if (!buf)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900511 return NULL;
512 *dma_handle = pci_map_single(hwdev, buf, PAGE_SIZE,
513 PCI_DMA_FROMDEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700514 if (pci_dma_mapping_error(hwdev, *dma_handle)) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900515 free_page((unsigned long)buf);
516 return NULL;
517 }
518 return buf;
519#else
520 return pci_alloc_consistent(hwdev, PAGE_SIZE, dma_handle);
521#endif
522}
523
524static void free_rxbuf_page(struct pci_dev *hwdev, void *buf, dma_addr_t dma_handle)
525{
526#ifdef TC35815_DMA_SYNC_ONDEMAND
527 pci_unmap_single(hwdev, dma_handle, PAGE_SIZE, PCI_DMA_FROMDEVICE);
528 free_page((unsigned long)buf);
529#else
530 pci_free_consistent(hwdev, PAGE_SIZE, buf, dma_handle);
531#endif
532}
533#else /* TC35815_USE_PACKEDBUFFER */
534static struct sk_buff *alloc_rxbuf_skb(struct net_device *dev,
535 struct pci_dev *hwdev,
536 dma_addr_t *dma_handle)
537{
538 struct sk_buff *skb;
539 skb = dev_alloc_skb(RX_BUF_SIZE);
540 if (!skb)
541 return NULL;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900542 *dma_handle = pci_map_single(hwdev, skb->data, RX_BUF_SIZE,
543 PCI_DMA_FROMDEVICE);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700544 if (pci_dma_mapping_error(hwdev, *dma_handle)) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900545 dev_kfree_skb_any(skb);
546 return NULL;
547 }
548 skb_reserve(skb, 2); /* make IP header 4byte aligned */
549 return skb;
550}
551
552static void free_rxbuf_skb(struct pci_dev *hwdev, struct sk_buff *skb, dma_addr_t dma_handle)
553{
554 pci_unmap_single(hwdev, dma_handle, RX_BUF_SIZE,
555 PCI_DMA_FROMDEVICE);
556 dev_kfree_skb_any(skb);
557}
558#endif /* TC35815_USE_PACKEDBUFFER */
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560/* Index to functions, as function prototypes. */
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562static int tc35815_open(struct net_device *dev);
563static int tc35815_send_packet(struct sk_buff *skb, struct net_device *dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900564static irqreturn_t tc35815_interrupt(int irq, void *dev_id);
565#ifdef TC35815_NAPI
566static int tc35815_rx(struct net_device *dev, int limit);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700567static int tc35815_poll(struct napi_struct *napi, int budget);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900568#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569static void tc35815_rx(struct net_device *dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571static void tc35815_txdone(struct net_device *dev);
572static int tc35815_close(struct net_device *dev);
573static struct net_device_stats *tc35815_get_stats(struct net_device *dev);
574static void tc35815_set_multicast_list(struct net_device *dev);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900575static void tc35815_tx_timeout(struct net_device *dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900576static int tc35815_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
577#ifdef CONFIG_NET_POLL_CONTROLLER
578static void tc35815_poll_controller(struct net_device *dev);
579#endif
580static const struct ethtool_ops tc35815_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900582/* Example routines you must write ;->. */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900583static void tc35815_chip_reset(struct net_device *dev);
584static void tc35815_chip_init(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900586#ifdef DEBUG
587static void panic_queues(struct net_device *dev);
588#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900590static void tc35815_restart_work(struct work_struct *work);
591
592static int tc_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
593{
594 struct net_device *dev = bus->priv;
595 struct tc35815_regs __iomem *tr =
596 (struct tc35815_regs __iomem *)dev->base_addr;
Atsushi Nemotoc60a5cf2009-08-06 04:41:47 +0000597 unsigned long timeout = jiffies + HZ;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900598
599 tc_writel(MD_CA_Busy | (mii_id << 5) | (regnum & 0x1f), &tr->MD_CA);
Atsushi Nemotoc60a5cf2009-08-06 04:41:47 +0000600 udelay(12); /* it takes 32 x 400ns at least */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900601 while (tc_readl(&tr->MD_CA) & MD_CA_Busy) {
602 if (time_after(jiffies, timeout))
603 return -EIO;
604 cpu_relax();
605 }
606 return tc_readl(&tr->MD_Data) & 0xffff;
607}
608
609static int tc_mdio_write(struct mii_bus *bus, int mii_id, int regnum, u16 val)
610{
611 struct net_device *dev = bus->priv;
612 struct tc35815_regs __iomem *tr =
613 (struct tc35815_regs __iomem *)dev->base_addr;
Atsushi Nemotoc60a5cf2009-08-06 04:41:47 +0000614 unsigned long timeout = jiffies + HZ;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900615
616 tc_writel(val, &tr->MD_Data);
617 tc_writel(MD_CA_Busy | MD_CA_Wr | (mii_id << 5) | (regnum & 0x1f),
618 &tr->MD_CA);
Atsushi Nemotoc60a5cf2009-08-06 04:41:47 +0000619 udelay(12); /* it takes 32 x 400ns at least */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900620 while (tc_readl(&tr->MD_CA) & MD_CA_Busy) {
621 if (time_after(jiffies, timeout))
622 return -EIO;
623 cpu_relax();
624 }
625 return 0;
626}
627
628static void tc_handle_link_change(struct net_device *dev)
629{
630 struct tc35815_local *lp = netdev_priv(dev);
631 struct phy_device *phydev = lp->phy_dev;
632 unsigned long flags;
633 int status_change = 0;
634
635 spin_lock_irqsave(&lp->lock, flags);
636 if (phydev->link &&
637 (lp->speed != phydev->speed || lp->duplex != phydev->duplex)) {
638 struct tc35815_regs __iomem *tr =
639 (struct tc35815_regs __iomem *)dev->base_addr;
640 u32 reg;
641
642 reg = tc_readl(&tr->MAC_Ctl);
643 reg |= MAC_HaltReq;
644 tc_writel(reg, &tr->MAC_Ctl);
645 if (phydev->duplex == DUPLEX_FULL)
646 reg |= MAC_FullDup;
647 else
648 reg &= ~MAC_FullDup;
649 tc_writel(reg, &tr->MAC_Ctl);
650 reg &= ~MAC_HaltReq;
651 tc_writel(reg, &tr->MAC_Ctl);
652
653 /*
654 * TX4939 PCFG.SPEEDn bit will be changed on
655 * NETDEV_CHANGE event.
656 */
657
658#if !defined(NO_CHECK_CARRIER) && defined(WORKAROUND_LOSTCAR)
659 /*
660 * WORKAROUND: enable LostCrS only if half duplex
661 * operation.
662 * (TX4939 does not have EnLCarr)
663 */
664 if (phydev->duplex == DUPLEX_HALF &&
665 lp->chiptype != TC35815_TX4939)
666 tc_writel(tc_readl(&tr->Tx_Ctl) | Tx_EnLCarr,
667 &tr->Tx_Ctl);
668#endif
669
670 lp->speed = phydev->speed;
671 lp->duplex = phydev->duplex;
672 status_change = 1;
673 }
674
675 if (phydev->link != lp->link) {
676 if (phydev->link) {
677#ifdef WORKAROUND_100HALF_PROMISC
678 /* delayed promiscuous enabling */
679 if (dev->flags & IFF_PROMISC)
680 tc35815_set_multicast_list(dev);
681#endif
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900682 } else {
683 lp->speed = 0;
684 lp->duplex = -1;
685 }
686 lp->link = phydev->link;
687
688 status_change = 1;
689 }
690 spin_unlock_irqrestore(&lp->lock, flags);
691
692 if (status_change && netif_msg_link(lp)) {
693 phy_print_status(phydev);
Joe Perches72903832009-05-15 07:59:42 +0000694 pr_debug("%s: MII BMCR %04x BMSR %04x LPA %04x\n",
695 dev->name,
696 phy_read(phydev, MII_BMCR),
697 phy_read(phydev, MII_BMSR),
698 phy_read(phydev, MII_LPA));
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900699 }
700}
701
702static int tc_mii_probe(struct net_device *dev)
703{
704 struct tc35815_local *lp = netdev_priv(dev);
705 struct phy_device *phydev = NULL;
706 int phy_addr;
707 u32 dropmask;
708
709 /* find the first phy */
710 for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700711 if (lp->mii_bus->phy_map[phy_addr]) {
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900712 if (phydev) {
713 printk(KERN_ERR "%s: multiple PHYs found\n",
714 dev->name);
715 return -EINVAL;
716 }
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700717 phydev = lp->mii_bus->phy_map[phy_addr];
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900718 break;
719 }
720 }
721
722 if (!phydev) {
723 printk(KERN_ERR "%s: no PHY found\n", dev->name);
724 return -ENODEV;
725 }
726
727 /* attach the mac to the phy */
Kay Sieversdb1d7bf2009-01-26 21:12:58 -0800728 phydev = phy_connect(dev, dev_name(&phydev->dev),
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900729 &tc_handle_link_change, 0,
730 lp->chiptype == TC35815_TX4939 ?
731 PHY_INTERFACE_MODE_RMII : PHY_INTERFACE_MODE_MII);
732 if (IS_ERR(phydev)) {
733 printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
734 return PTR_ERR(phydev);
735 }
736 printk(KERN_INFO "%s: attached PHY driver [%s] "
737 "(mii_bus:phy_addr=%s, id=%x)\n",
Kay Sieversdb1d7bf2009-01-26 21:12:58 -0800738 dev->name, phydev->drv->name, dev_name(&phydev->dev),
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900739 phydev->phy_id);
740
741 /* mask with MAC supported features */
742 phydev->supported &= PHY_BASIC_FEATURES;
743 dropmask = 0;
744 if (options.speed == 10)
745 dropmask |= SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full;
746 else if (options.speed == 100)
747 dropmask |= SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full;
748 if (options.duplex == 1)
749 dropmask |= SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Full;
750 else if (options.duplex == 2)
751 dropmask |= SUPPORTED_10baseT_Half | SUPPORTED_100baseT_Half;
752 phydev->supported &= ~dropmask;
753 phydev->advertising = phydev->supported;
754
755 lp->link = 0;
756 lp->speed = 0;
757 lp->duplex = -1;
758 lp->phy_dev = phydev;
759
760 return 0;
761}
762
763static int tc_mii_init(struct net_device *dev)
764{
765 struct tc35815_local *lp = netdev_priv(dev);
766 int err;
767 int i;
768
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700769 lp->mii_bus = mdiobus_alloc();
770 if (lp->mii_bus == NULL) {
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900771 err = -ENOMEM;
772 goto err_out;
773 }
774
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700775 lp->mii_bus->name = "tc35815_mii_bus";
776 lp->mii_bus->read = tc_mdio_read;
777 lp->mii_bus->write = tc_mdio_write;
778 snprintf(lp->mii_bus->id, MII_BUS_ID_SIZE, "%x",
779 (lp->pci_dev->bus->number << 8) | lp->pci_dev->devfn);
780 lp->mii_bus->priv = dev;
781 lp->mii_bus->parent = &lp->pci_dev->dev;
782 lp->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
783 if (!lp->mii_bus->irq) {
784 err = -ENOMEM;
785 goto err_out_free_mii_bus;
786 }
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900787
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700788 for (i = 0; i < PHY_MAX_ADDR; i++)
789 lp->mii_bus->irq[i] = PHY_POLL;
790
791 err = mdiobus_register(lp->mii_bus);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900792 if (err)
793 goto err_out_free_mdio_irq;
794 err = tc_mii_probe(dev);
795 if (err)
796 goto err_out_unregister_bus;
797 return 0;
798
799err_out_unregister_bus:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700800 mdiobus_unregister(lp->mii_bus);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900801err_out_free_mdio_irq:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700802 kfree(lp->mii_bus->irq);
Adrian Bunk51cf7562008-10-12 21:01:53 -0700803err_out_free_mii_bus:
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700804 mdiobus_free(lp->mii_bus);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900805err_out:
806 return err;
807}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900809#ifdef CONFIG_CPU_TX49XX
810/*
811 * Find a platform_device providing a MAC address. The platform code
812 * should provide a "tc35815-mac" device with a MAC address in its
813 * platform_data.
814 */
815static int __devinit tc35815_mac_match(struct device *dev, void *data)
816{
817 struct platform_device *plat_dev = to_platform_device(dev);
818 struct pci_dev *pci_dev = data;
Atsushi Nemoto06675e62008-01-19 01:15:52 +0900819 unsigned int id = pci_dev->irq;
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900820 return !strcmp(plat_dev->name, "tc35815-mac") && plat_dev->id == id;
821}
822
823static int __devinit tc35815_read_plat_dev_addr(struct net_device *dev)
824{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +0900825 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900826 struct device *pd = bus_find_device(&platform_bus_type, NULL,
827 lp->pci_dev, tc35815_mac_match);
828 if (pd) {
829 if (pd->platform_data)
830 memcpy(dev->dev_addr, pd->platform_data, ETH_ALEN);
831 put_device(pd);
832 return is_valid_ether_addr(dev->dev_addr) ? 0 : -ENODEV;
833 }
834 return -ENODEV;
835}
836#else
Yoichi Yuasa308a9062007-07-18 11:13:42 +0900837static int __devinit tc35815_read_plat_dev_addr(struct net_device *dev)
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900838{
839 return -ENODEV;
840}
841#endif
842
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900843static int __devinit tc35815_init_dev_addr(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900845 struct tc35815_regs __iomem *tr =
846 (struct tc35815_regs __iomem *)dev->base_addr;
847 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 while (tc_readl(&tr->PROM_Ctl) & PROM_Busy)
850 ;
851 for (i = 0; i < 6; i += 2) {
852 unsigned short data;
853 tc_writel(PROM_Busy | PROM_Read | (i / 2 + 2), &tr->PROM_Ctl);
854 while (tc_readl(&tr->PROM_Ctl) & PROM_Busy)
855 ;
856 data = tc_readl(&tr->PROM_Data);
857 dev->dev_addr[i] = data & 0xff;
858 dev->dev_addr[i+1] = data >> 8;
859 }
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900860 if (!is_valid_ether_addr(dev->dev_addr))
861 return tc35815_read_plat_dev_addr(dev);
862 return 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900863}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Alexander Beregalov5a1c28b2009-04-11 07:38:54 +0000865static const struct net_device_ops tc35815_netdev_ops = {
866 .ndo_open = tc35815_open,
867 .ndo_stop = tc35815_close,
868 .ndo_start_xmit = tc35815_send_packet,
869 .ndo_get_stats = tc35815_get_stats,
870 .ndo_set_multicast_list = tc35815_set_multicast_list,
871 .ndo_tx_timeout = tc35815_tx_timeout,
872 .ndo_do_ioctl = tc35815_ioctl,
873 .ndo_validate_addr = eth_validate_addr,
874 .ndo_change_mtu = eth_change_mtu,
875 .ndo_set_mac_address = eth_mac_addr,
876#ifdef CONFIG_NET_POLL_CONTROLLER
877 .ndo_poll_controller = tc35815_poll_controller,
878#endif
879};
880
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900881static int __devinit tc35815_init_one(struct pci_dev *pdev,
882 const struct pci_device_id *ent)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900883{
884 void __iomem *ioaddr = NULL;
885 struct net_device *dev;
886 struct tc35815_local *lp;
887 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900889 static int printed_version;
890 if (!printed_version++) {
891 printk(version);
892 dev_printk(KERN_DEBUG, &pdev->dev,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900893 "speed:%d duplex:%d\n",
894 options.speed, options.duplex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900897 if (!pdev->irq) {
898 dev_warn(&pdev->dev, "no IRQ assigned.\n");
899 return -ENODEV;
900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900902 /* dev zeroed in alloc_etherdev */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900903 dev = alloc_etherdev(sizeof(*lp));
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900904 if (dev == NULL) {
905 dev_err(&pdev->dev, "unable to alloc new ethernet\n");
906 return -ENOMEM;
907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 SET_NETDEV_DEV(dev, &pdev->dev);
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +0900909 lp = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700910 lp->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900912 /* enable device (incl. PCI PM wakeup), and bus-mastering */
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900913 rc = pcim_enable_device(pdev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900914 if (rc)
915 goto err_out;
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900916 rc = pcim_iomap_regions(pdev, 1 << 1, MODNAME);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900917 if (rc)
918 goto err_out;
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900919 pci_set_master(pdev);
920 ioaddr = pcim_iomap_table(pdev)[1];
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900921
922 /* Initialize the device structure. */
Alexander Beregalov5a1c28b2009-04-11 07:38:54 +0000923 dev->netdev_ops = &tc35815_netdev_ops;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900924 dev->ethtool_ops = &tc35815_ethtool_ops;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900925 dev->watchdog_timeo = TC35815_TX_TIMEOUT;
926#ifdef TC35815_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700927 netif_napi_add(dev, &lp->napi, tc35815_poll, NAPI_WEIGHT);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900928#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900929
930 dev->irq = pdev->irq;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900931 dev->base_addr = (unsigned long)ioaddr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900932
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900933 INIT_WORK(&lp->restart_work, tc35815_restart_work);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900934 spin_lock_init(&lp->lock);
935 lp->pci_dev = pdev;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900936 lp->chiptype = ent->driver_data;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900937
938 lp->msg_enable = NETIF_MSG_TX_ERR | NETIF_MSG_HW | NETIF_MSG_DRV | NETIF_MSG_LINK;
939 pci_set_drvdata(pdev, dev);
940
941 /* Soft reset the chip. */
942 tc35815_chip_reset(dev);
943
944 /* Retrieve the ethernet address. */
Atsushi Nemotobd43da82007-06-29 22:34:53 +0900945 if (tc35815_init_dev_addr(dev)) {
946 dev_warn(&pdev->dev, "not valid ether addr\n");
947 random_ether_addr(dev->dev_addr);
948 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900949
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900950 rc = register_netdev(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900951 if (rc)
Atsushi Nemoto22adf7e2008-04-11 00:24:45 +0900952 goto err_out;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900953
954 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
Johannes Berge1749612008-10-27 15:59:26 -0700955 printk(KERN_INFO "%s: %s at 0x%lx, %pM, IRQ %d\n",
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900956 dev->name,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900957 chip_info[ent->driver_data].name,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900958 dev->base_addr,
Johannes Berge1749612008-10-27 15:59:26 -0700959 dev->dev_addr,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900960 dev->irq);
961
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900962 rc = tc_mii_init(dev);
963 if (rc)
964 goto err_out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 return 0;
967
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900968err_out_unregister:
969 unregister_netdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970err_out:
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900971 free_netdev(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900972 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
975
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900976static void __devexit tc35815_remove_one(struct pci_dev *pdev)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900977{
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900978 struct net_device *dev = pci_get_drvdata(pdev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900979 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900980
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +0900981 phy_disconnect(lp->phy_dev);
Lennert Buytenhek298cf9be2008-10-08 16:29:57 -0700982 mdiobus_unregister(lp->mii_bus);
983 kfree(lp->mii_bus->irq);
984 mdiobus_free(lp->mii_bus);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +0900985 unregister_netdev(dev);
986 free_netdev(dev);
987 pci_set_drvdata(pdev, NULL);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990static int
991tc35815_init_queues(struct net_device *dev)
992{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +0900993 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 int i;
995 unsigned long fd_addr;
996
997 if (!lp->fd_buf) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +0900998 BUG_ON(sizeof(struct FDesc) +
999 sizeof(struct BDesc) * RX_BUF_NUM +
1000 sizeof(struct FDesc) * RX_FD_NUM +
1001 sizeof(struct TxFD) * TX_FD_NUM >
1002 PAGE_SIZE * FD_PAGE_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001004 lp->fd_buf = pci_alloc_consistent(lp->pci_dev,
1005 PAGE_SIZE * FD_PAGE_NUM,
1006 &lp->fd_buf_dma);
1007 if (!lp->fd_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return -ENOMEM;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001009 for (i = 0; i < RX_BUF_NUM; i++) {
1010#ifdef TC35815_USE_PACKEDBUFFER
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001011 lp->data_buf[i] =
1012 alloc_rxbuf_page(lp->pci_dev,
1013 &lp->data_buf_dma[i]);
1014 if (!lp->data_buf[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 while (--i >= 0) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001016 free_rxbuf_page(lp->pci_dev,
1017 lp->data_buf[i],
1018 lp->data_buf_dma[i]);
1019 lp->data_buf[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001021 pci_free_consistent(lp->pci_dev,
1022 PAGE_SIZE * FD_PAGE_NUM,
1023 lp->fd_buf,
1024 lp->fd_buf_dma);
1025 lp->fd_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return -ENOMEM;
1027 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001028#else
1029 lp->rx_skbs[i].skb =
1030 alloc_rxbuf_skb(dev, lp->pci_dev,
1031 &lp->rx_skbs[i].skb_dma);
1032 if (!lp->rx_skbs[i].skb) {
1033 while (--i >= 0) {
1034 free_rxbuf_skb(lp->pci_dev,
1035 lp->rx_skbs[i].skb,
1036 lp->rx_skbs[i].skb_dma);
1037 lp->rx_skbs[i].skb = NULL;
1038 }
1039 pci_free_consistent(lp->pci_dev,
1040 PAGE_SIZE * FD_PAGE_NUM,
1041 lp->fd_buf,
1042 lp->fd_buf_dma);
1043 lp->fd_buf = NULL;
1044 return -ENOMEM;
1045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046#endif
1047 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001048 printk(KERN_DEBUG "%s: FD buf %p DataBuf",
1049 dev->name, lp->fd_buf);
1050#ifdef TC35815_USE_PACKEDBUFFER
1051 printk(" DataBuf");
1052 for (i = 0; i < RX_BUF_NUM; i++)
1053 printk(" %p", lp->data_buf[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001055 printk("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 } else {
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001057 for (i = 0; i < FD_PAGE_NUM; i++)
1058 clear_page((void *)((unsigned long)lp->fd_buf +
1059 i * PAGE_SIZE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 fd_addr = (unsigned long)lp->fd_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 /* Free Descriptors (for Receive) */
1064 lp->rfd_base = (struct RxFD *)fd_addr;
1065 fd_addr += sizeof(struct RxFD) * RX_FD_NUM;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001066 for (i = 0; i < RX_FD_NUM; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 lp->rfd_base[i].fd.FDCtl = cpu_to_le32(FD_CownsFD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 lp->rfd_cur = lp->rfd_base;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001069 lp->rfd_limit = (struct RxFD *)fd_addr - (RX_FD_RESERVE + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /* Transmit Descriptors */
1072 lp->tfd_base = (struct TxFD *)fd_addr;
1073 fd_addr += sizeof(struct TxFD) * TX_FD_NUM;
1074 for (i = 0; i < TX_FD_NUM; i++) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001075 lp->tfd_base[i].fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, &lp->tfd_base[i+1]));
1076 lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 lp->tfd_base[i].fd.FDCtl = cpu_to_le32(0);
1078 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001079 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 -07001080 lp->tfd_start = 0;
1081 lp->tfd_end = 0;
1082
1083 /* Buffer List (for Receive) */
1084 lp->fbl_ptr = (struct FrFD *)fd_addr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001085 lp->fbl_ptr->fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, lp->fbl_ptr));
1086 lp->fbl_ptr->fd.FDCtl = cpu_to_le32(RX_BUF_NUM | FD_CownsFD);
1087#ifndef TC35815_USE_PACKEDBUFFER
1088 /*
1089 * move all allocated skbs to head of rx_skbs[] array.
1090 * fbl_count mighe not be RX_BUF_NUM if alloc_rxbuf_skb() in
1091 * tc35815_rx() had failed.
1092 */
1093 lp->fbl_count = 0;
1094 for (i = 0; i < RX_BUF_NUM; i++) {
1095 if (lp->rx_skbs[i].skb) {
1096 if (i != lp->fbl_count) {
1097 lp->rx_skbs[lp->fbl_count].skb =
1098 lp->rx_skbs[i].skb;
1099 lp->rx_skbs[lp->fbl_count].skb_dma =
1100 lp->rx_skbs[i].skb_dma;
1101 }
1102 lp->fbl_count++;
1103 }
1104 }
1105#endif
1106 for (i = 0; i < RX_BUF_NUM; i++) {
1107#ifdef TC35815_USE_PACKEDBUFFER
1108 lp->fbl_ptr->bd[i].BuffData = cpu_to_le32(lp->data_buf_dma[i]);
1109#else
1110 if (i >= lp->fbl_count) {
1111 lp->fbl_ptr->bd[i].BuffData = 0;
1112 lp->fbl_ptr->bd[i].BDCtl = 0;
1113 continue;
1114 }
1115 lp->fbl_ptr->bd[i].BuffData =
1116 cpu_to_le32(lp->rx_skbs[i].skb_dma);
1117#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* BDID is index of FrFD.bd[] */
1119 lp->fbl_ptr->bd[i].BDCtl =
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001120 cpu_to_le32(BD_CownsBD | (i << BD_RxBDID_SHIFT) |
1121 RX_BUF_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001123#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 lp->fbl_curid = 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001125#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001127 printk(KERN_DEBUG "%s: TxFD %p RxFD %p FrFD %p\n",
1128 dev->name, lp->tfd_base, lp->rfd_base, lp->fbl_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return 0;
1130}
1131
1132static void
1133tc35815_clear_queues(struct net_device *dev)
1134{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001135 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 int i;
1137
1138 for (i = 0; i < TX_FD_NUM; i++) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001139 u32 fdsystem = le32_to_cpu(lp->tfd_base[i].fd.FDSystem);
1140 struct sk_buff *skb =
1141 fdsystem != 0xffffffff ?
1142 lp->tx_skbs[fdsystem].skb : NULL;
1143#ifdef DEBUG
1144 if (lp->tx_skbs[i].skb != skb) {
1145 printk("%s: tx_skbs mismatch(%d).\n", dev->name, i);
1146 panic_queues(dev);
1147 }
1148#else
1149 BUG_ON(lp->tx_skbs[i].skb != skb);
1150#endif
1151 if (skb) {
1152 pci_unmap_single(lp->pci_dev, lp->tx_skbs[i].skb_dma, skb->len, PCI_DMA_TODEVICE);
1153 lp->tx_skbs[i].skb = NULL;
1154 lp->tx_skbs[i].skb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 dev_kfree_skb_any(skb);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001156 }
1157 lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
1159
1160 tc35815_init_queues(dev);
1161}
1162
1163static void
1164tc35815_free_queues(struct net_device *dev)
1165{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001166 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 int i;
1168
1169 if (lp->tfd_base) {
1170 for (i = 0; i < TX_FD_NUM; i++) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001171 u32 fdsystem = le32_to_cpu(lp->tfd_base[i].fd.FDSystem);
1172 struct sk_buff *skb =
1173 fdsystem != 0xffffffff ?
1174 lp->tx_skbs[fdsystem].skb : NULL;
1175#ifdef DEBUG
1176 if (lp->tx_skbs[i].skb != skb) {
1177 printk("%s: tx_skbs mismatch(%d).\n", dev->name, i);
1178 panic_queues(dev);
1179 }
1180#else
1181 BUG_ON(lp->tx_skbs[i].skb != skb);
1182#endif
1183 if (skb) {
1184 dev_kfree_skb(skb);
1185 pci_unmap_single(lp->pci_dev, lp->tx_skbs[i].skb_dma, skb->len, PCI_DMA_TODEVICE);
1186 lp->tx_skbs[i].skb = NULL;
1187 lp->tx_skbs[i].skb_dma = 0;
1188 }
1189 lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
1191 }
1192
1193 lp->rfd_base = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 lp->rfd_limit = NULL;
1195 lp->rfd_cur = NULL;
1196 lp->fbl_ptr = NULL;
1197
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001198 for (i = 0; i < RX_BUF_NUM; i++) {
1199#ifdef TC35815_USE_PACKEDBUFFER
1200 if (lp->data_buf[i]) {
1201 free_rxbuf_page(lp->pci_dev,
1202 lp->data_buf[i], lp->data_buf_dma[i]);
1203 lp->data_buf[i] = NULL;
1204 }
1205#else
1206 if (lp->rx_skbs[i].skb) {
1207 free_rxbuf_skb(lp->pci_dev, lp->rx_skbs[i].skb,
1208 lp->rx_skbs[i].skb_dma);
1209 lp->rx_skbs[i].skb = NULL;
1210 }
1211#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001213 if (lp->fd_buf) {
1214 pci_free_consistent(lp->pci_dev, PAGE_SIZE * FD_PAGE_NUM,
1215 lp->fd_buf, lp->fd_buf_dma);
1216 lp->fd_buf = NULL;
1217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218}
1219
1220static void
1221dump_txfd(struct TxFD *fd)
1222{
1223 printk("TxFD(%p): %08x %08x %08x %08x\n", fd,
1224 le32_to_cpu(fd->fd.FDNext),
1225 le32_to_cpu(fd->fd.FDSystem),
1226 le32_to_cpu(fd->fd.FDStat),
1227 le32_to_cpu(fd->fd.FDCtl));
1228 printk("BD: ");
1229 printk(" %08x %08x",
1230 le32_to_cpu(fd->bd.BuffData),
1231 le32_to_cpu(fd->bd.BDCtl));
1232 printk("\n");
1233}
1234
1235static int
1236dump_rxfd(struct RxFD *fd)
1237{
1238 int i, bd_count = (le32_to_cpu(fd->fd.FDCtl) & FD_BDCnt_MASK) >> FD_BDCnt_SHIFT;
1239 if (bd_count > 8)
1240 bd_count = 8;
1241 printk("RxFD(%p): %08x %08x %08x %08x\n", fd,
1242 le32_to_cpu(fd->fd.FDNext),
1243 le32_to_cpu(fd->fd.FDSystem),
1244 le32_to_cpu(fd->fd.FDStat),
1245 le32_to_cpu(fd->fd.FDCtl));
1246 if (le32_to_cpu(fd->fd.FDCtl) & FD_CownsFD)
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 printk("BD: ");
1249 for (i = 0; i < bd_count; i++)
1250 printk(" %08x %08x",
1251 le32_to_cpu(fd->bd[i].BuffData),
1252 le32_to_cpu(fd->bd[i].BDCtl));
1253 printk("\n");
1254 return bd_count;
1255}
1256
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001257#if defined(DEBUG) || defined(TC35815_USE_PACKEDBUFFER)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258static void
1259dump_frfd(struct FrFD *fd)
1260{
1261 int i;
1262 printk("FrFD(%p): %08x %08x %08x %08x\n", fd,
1263 le32_to_cpu(fd->fd.FDNext),
1264 le32_to_cpu(fd->fd.FDSystem),
1265 le32_to_cpu(fd->fd.FDStat),
1266 le32_to_cpu(fd->fd.FDCtl));
1267 printk("BD: ");
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001268 for (i = 0; i < RX_BUF_NUM; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 printk(" %08x %08x",
1270 le32_to_cpu(fd->bd[i].BuffData),
1271 le32_to_cpu(fd->bd[i].BDCtl));
1272 printk("\n");
1273}
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001274#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001276#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277static void
1278panic_queues(struct net_device *dev)
1279{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001280 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 int i;
1282
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001283 printk("TxFD base %p, start %u, end %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 lp->tfd_base, lp->tfd_start, lp->tfd_end);
1285 printk("RxFD base %p limit %p cur %p\n",
1286 lp->rfd_base, lp->rfd_limit, lp->rfd_cur);
1287 printk("FrFD %p\n", lp->fbl_ptr);
1288 for (i = 0; i < TX_FD_NUM; i++)
1289 dump_txfd(&lp->tfd_base[i]);
1290 for (i = 0; i < RX_FD_NUM; i++) {
1291 int bd_count = dump_rxfd(&lp->rfd_base[i]);
1292 i += (bd_count + 1) / 2; /* skip BDs */
1293 }
1294 dump_frfd(lp->fbl_ptr);
1295 panic("%s: Illegal queue state.", dev->name);
1296}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297#endif
1298
Atsushi Nemoto958eb802008-04-11 00:24:24 +09001299static void print_eth(const u8 *add)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Atsushi Nemoto958eb802008-04-11 00:24:24 +09001301 printk(KERN_DEBUG "print_eth(%p)\n", add);
Johannes Berge1749612008-10-27 15:59:26 -07001302 printk(KERN_DEBUG " %pM => %pM : %02x%02x\n",
1303 add + 6, add, add[12], add[13]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001306static int tc35815_tx_full(struct net_device *dev)
1307{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001308 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001309 return ((lp->tfd_start + 1) % TX_FD_NUM == lp->tfd_end);
1310}
1311
1312static void tc35815_restart(struct net_device *dev)
1313{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001314 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001315
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001316 if (lp->phy_dev) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001317 int timeout;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001318
1319 phy_write(lp->phy_dev, MII_BMCR, BMCR_RESET);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001320 timeout = 100;
1321 while (--timeout) {
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001322 if (!(phy_read(lp->phy_dev, MII_BMCR) & BMCR_RESET))
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001323 break;
1324 udelay(1);
1325 }
1326 if (!timeout)
1327 printk(KERN_ERR "%s: BMCR reset failed.\n", dev->name);
1328 }
1329
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001330 spin_lock_irq(&lp->lock);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001331 tc35815_chip_reset(dev);
1332 tc35815_clear_queues(dev);
1333 tc35815_chip_init(dev);
1334 /* Reconfigure CAM again since tc35815_chip_init() initialize it. */
1335 tc35815_set_multicast_list(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001336 spin_unlock_irq(&lp->lock);
1337
1338 netif_wake_queue(dev);
1339}
1340
1341static void tc35815_restart_work(struct work_struct *work)
1342{
1343 struct tc35815_local *lp =
1344 container_of(work, struct tc35815_local, restart_work);
1345 struct net_device *dev = lp->dev;
1346
1347 tc35815_restart(dev);
1348}
1349
1350static void tc35815_schedule_restart(struct net_device *dev)
1351{
1352 struct tc35815_local *lp = netdev_priv(dev);
1353 struct tc35815_regs __iomem *tr =
1354 (struct tc35815_regs __iomem *)dev->base_addr;
1355
1356 /* disable interrupts */
1357 tc_writel(0, &tr->Int_En);
1358 tc_writel(tc_readl(&tr->DMA_Ctl) | DMA_IntMask, &tr->DMA_Ctl);
1359 schedule_work(&lp->restart_work);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001360}
1361
1362static void tc35815_tx_timeout(struct net_device *dev)
1363{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001364 struct tc35815_regs __iomem *tr =
1365 (struct tc35815_regs __iomem *)dev->base_addr;
1366
1367 printk(KERN_WARNING "%s: transmit timed out, status %#x\n",
1368 dev->name, tc_readl(&tr->Tx_Stat));
1369
1370 /* Try to restart the adaptor. */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001371 tc35815_schedule_restart(dev);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001372 dev->stats.tx_errors++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001373}
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375/*
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001376 * Open/initialize the controller. This is called (in the current kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 * sometime after booting when the 'ifconfig' program is run.
1378 *
1379 * This routine should set everything up anew at each open, even
1380 * registers that "should" only need to be set once at boot, so that
1381 * there is non-reboot way to recover if something goes wrong.
1382 */
1383static int
1384tc35815_open(struct net_device *dev)
1385{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001386 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 /*
1389 * This is used if the interrupt line can turned off (shared).
1390 * See 3c503.c for an example of selecting the IRQ at config-time.
1391 */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09001392 if (request_irq(dev->irq, &tc35815_interrupt, IRQF_SHARED,
1393 dev->name, dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 tc35815_chip_reset(dev);
1397
1398 if (tc35815_init_queues(dev) != 0) {
1399 free_irq(dev->irq, dev);
1400 return -EAGAIN;
1401 }
1402
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001403#ifdef TC35815_NAPI
1404 napi_enable(&lp->napi);
1405#endif
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /* Reset the hardware here. Don't forget to set the station address. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001408 spin_lock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 tc35815_chip_init(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001410 spin_unlock_irq(&lp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Atsushi Nemoto59524a32008-06-25 11:41:01 +09001412 netif_carrier_off(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001413 /* schedule a link state check */
1414 phy_start(lp->phy_dev);
1415
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001416 /* We are now ready to accept transmit requeusts from
1417 * the queueing layer of the networking.
1418 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 netif_start_queue(dev);
1420
1421 return 0;
1422}
1423
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001424/* This will only be invoked if your driver is _not_ in XOFF state.
1425 * What this means is that you need not check it, and that this
1426 * invariant will hold if you make sure that the netif_*_queue()
1427 * calls are done at the proper times.
1428 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429static int tc35815_send_packet(struct sk_buff *skb, struct net_device *dev)
1430{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001431 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001432 struct TxFD *txfd;
1433 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001435 /* If some error occurs while trying to transmit this
1436 * packet, you should return '1' from this function.
1437 * In such a case you _may not_ do anything to the
1438 * SKB, it is still owned by the network queueing
1439 * layer when an error is returned. This means you
1440 * may not modify any SKB fields, you may not free
1441 * the SKB, etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001444 /* This is the most common case for modern hardware.
1445 * The spinlock protects this code from the TX complete
1446 * hardware interrupt handler. Queue flow control is
1447 * thus managed under this lock as well.
1448 */
1449 spin_lock_irqsave(&lp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001451 /* failsafe... (handle txdone now if half of FDs are used) */
1452 if ((lp->tfd_start + TX_FD_NUM - lp->tfd_end) % TX_FD_NUM >
1453 TX_FD_NUM / 2)
1454 tc35815_txdone(dev);
1455
1456 if (netif_msg_pktdata(lp))
1457 print_eth(skb->data);
1458#ifdef DEBUG
1459 if (lp->tx_skbs[lp->tfd_start].skb) {
1460 printk("%s: tx_skbs conflict.\n", dev->name);
1461 panic_queues(dev);
1462 }
1463#else
1464 BUG_ON(lp->tx_skbs[lp->tfd_start].skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001466 lp->tx_skbs[lp->tfd_start].skb = skb;
1467 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 -07001468
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001469 /*add to ring */
1470 txfd = &lp->tfd_base[lp->tfd_start];
1471 txfd->bd.BuffData = cpu_to_le32(lp->tx_skbs[lp->tfd_start].skb_dma);
1472 txfd->bd.BDCtl = cpu_to_le32(skb->len);
1473 txfd->fd.FDSystem = cpu_to_le32(lp->tfd_start);
1474 txfd->fd.FDCtl = cpu_to_le32(FD_CownsFD | (1 << FD_BDCnt_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001476 if (lp->tfd_start == lp->tfd_end) {
1477 struct tc35815_regs __iomem *tr =
1478 (struct tc35815_regs __iomem *)dev->base_addr;
1479 /* Start DMA Transmitter. */
1480 txfd->fd.FDNext |= cpu_to_le32(FD_Next_EOL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481#ifdef GATHER_TXINT
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001482 txfd->fd.FDCtl |= cpu_to_le32(FD_FrmOpt_IntTx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001484 if (netif_msg_tx_queued(lp)) {
1485 printk("%s: starting TxFD.\n", dev->name);
1486 dump_txfd(txfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001488 tc_writel(fd_virt_to_bus(lp, txfd), &tr->TxFrmPtr);
1489 } else {
1490 txfd->fd.FDNext &= cpu_to_le32(~FD_Next_EOL);
1491 if (netif_msg_tx_queued(lp)) {
1492 printk("%s: queueing TxFD.\n", dev->name);
1493 dump_txfd(txfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001495 }
1496 lp->tfd_start = (lp->tfd_start + 1) % TX_FD_NUM;
1497
1498 dev->trans_start = jiffies;
1499
1500 /* If we just used up the very last entry in the
1501 * TX ring on this device, tell the queueing
1502 * layer to send no more.
1503 */
1504 if (tc35815_tx_full(dev)) {
1505 if (netif_msg_tx_queued(lp))
1506 printk(KERN_WARNING "%s: TxFD Exhausted.\n", dev->name);
1507 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
1509
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001510 /* When the TX completion hw interrupt arrives, this
1511 * is when the transmit statistics are updated.
1512 */
1513
1514 spin_unlock_irqrestore(&lp->lock, flags);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001515 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
1518#define FATAL_ERROR_INT \
1519 (Int_IntPCI | Int_DmParErr | Int_IntNRAbt)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001520static void tc35815_fatal_error_interrupt(struct net_device *dev, u32 status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
1522 static int count;
1523 printk(KERN_WARNING "%s: Fatal Error Intterrupt (%#x):",
1524 dev->name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (status & Int_IntPCI)
1526 printk(" IntPCI");
1527 if (status & Int_DmParErr)
1528 printk(" DmParErr");
1529 if (status & Int_IntNRAbt)
1530 printk(" IntNRAbt");
1531 printk("\n");
1532 if (count++ > 100)
1533 panic("%s: Too many fatal errors.", dev->name);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001534 printk(KERN_WARNING "%s: Resetting ...\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 /* Try to restart the adaptor. */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001536 tc35815_schedule_restart(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001537}
1538
1539#ifdef TC35815_NAPI
1540static int tc35815_do_interrupt(struct net_device *dev, u32 status, int limit)
1541#else
1542static int tc35815_do_interrupt(struct net_device *dev, u32 status)
1543#endif
1544{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001545 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001546 int ret = -1;
1547
1548 /* Fatal errors... */
1549 if (status & FATAL_ERROR_INT) {
1550 tc35815_fatal_error_interrupt(dev, status);
1551 return 0;
1552 }
1553 /* recoverable errors */
1554 if (status & Int_IntFDAEx) {
Atsushi Nemotodb30f5e2009-08-06 04:41:46 +00001555 if (netif_msg_rx_err(lp))
1556 dev_warn(&dev->dev,
1557 "Free Descriptor Area Exhausted (%#x).\n",
1558 status);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001559 dev->stats.rx_dropped++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001560 ret = 0;
1561 }
1562 if (status & Int_IntBLEx) {
Atsushi Nemotodb30f5e2009-08-06 04:41:46 +00001563 if (netif_msg_rx_err(lp))
1564 dev_warn(&dev->dev,
1565 "Buffer List Exhausted (%#x).\n",
1566 status);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001567 dev->stats.rx_dropped++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001568 ret = 0;
1569 }
1570 if (status & Int_IntExBD) {
Atsushi Nemotodb30f5e2009-08-06 04:41:46 +00001571 if (netif_msg_rx_err(lp))
1572 dev_warn(&dev->dev,
1573 "Excessive Buffer Descriptiors (%#x).\n",
1574 status);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001575 dev->stats.rx_length_errors++;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001576 ret = 0;
1577 }
1578
1579 /* normal notification */
1580 if (status & Int_IntMacRx) {
1581 /* Got a packet(s). */
1582#ifdef TC35815_NAPI
1583 ret = tc35815_rx(dev, limit);
1584#else
1585 tc35815_rx(dev);
1586 ret = 0;
1587#endif
1588 lp->lstats.rx_ints++;
1589 }
1590 if (status & Int_IntMacTx) {
1591 /* Transmit complete. */
1592 lp->lstats.tx_ints++;
1593 tc35815_txdone(dev);
1594 netif_wake_queue(dev);
Atsushi Nemoto02c5c8e2009-10-26 03:46:21 +00001595#ifdef TC35815_NAPI
1596 if (ret < 0)
1597 ret = 0;
1598#else
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001599 ret = 0;
Atsushi Nemoto02c5c8e2009-10-26 03:46:21 +00001600#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001601 }
1602 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
1605/*
1606 * The typical workload of the driver:
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001607 * Handle the network interface interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 */
David Howells7d12e782006-10-05 14:55:46 +01001609static irqreturn_t tc35815_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 struct net_device *dev = dev_id;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001612 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001613 struct tc35815_regs __iomem *tr =
1614 (struct tc35815_regs __iomem *)dev->base_addr;
1615#ifdef TC35815_NAPI
1616 u32 dmactl = tc_readl(&tr->DMA_Ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001618 if (!(dmactl & DMA_IntMask)) {
1619 /* disable interrupts */
1620 tc_writel(dmactl | DMA_IntMask, &tr->DMA_Ctl);
Ben Hutchings288379f2009-01-19 16:43:59 -08001621 if (napi_schedule_prep(&lp->napi))
1622 __napi_schedule(&lp->napi);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001623 else {
1624 printk(KERN_ERR "%s: interrupt taken in poll\n",
1625 dev->name);
1626 BUG();
1627 }
1628 (void)tc_readl(&tr->Int_Src); /* flush */
1629 return IRQ_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001631 return IRQ_NONE;
1632#else
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001633 int handled;
1634 u32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001636 spin_lock(&lp->lock);
1637 status = tc_readl(&tr->Int_Src);
Atsushi Nemotodb30f5e2009-08-06 04:41:46 +00001638 /* BLEx, FDAEx will be cleared later */
1639 tc_writel(status & ~(Int_BLEx | Int_FDAEx),
1640 &tr->Int_Src); /* write to clear */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001641 handled = tc35815_do_interrupt(dev, status);
Atsushi Nemotodb30f5e2009-08-06 04:41:46 +00001642 if (status & (Int_BLEx | Int_FDAEx))
1643 tc_writel(status & (Int_BLEx | Int_FDAEx), &tr->Int_Src);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001644 (void)tc_readl(&tr->Int_Src); /* flush */
1645 spin_unlock(&lp->lock);
1646 return IRQ_RETVAL(handled >= 0);
1647#endif /* TC35815_NAPI */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648}
1649
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001650#ifdef CONFIG_NET_POLL_CONTROLLER
1651static void tc35815_poll_controller(struct net_device *dev)
1652{
1653 disable_irq(dev->irq);
1654 tc35815_interrupt(dev->irq, dev);
1655 enable_irq(dev->irq);
1656}
1657#endif
1658
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659/* We have a good packet(s), get it/them out of the buffers. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001660#ifdef TC35815_NAPI
1661static int
1662tc35815_rx(struct net_device *dev, int limit)
1663#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664static void
1665tc35815_rx(struct net_device *dev)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001666#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001668 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 unsigned int fdctl;
1670 int i;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001671#ifdef TC35815_NAPI
1672 int received = 0;
1673#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 while (!((fdctl = le32_to_cpu(lp->rfd_cur->fd.FDCtl)) & FD_CownsFD)) {
1676 int status = le32_to_cpu(lp->rfd_cur->fd.FDStat);
1677 int pkt_len = fdctl & FD_FDLength_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 int bd_count = (fdctl & FD_BDCnt_MASK) >> FD_BDCnt_SHIFT;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001679#ifdef DEBUG
1680 struct RxFD *next_rfd;
1681#endif
1682#if (RX_CTL_CMD & Rx_StripCRC) == 0
Atsushi Nemoto82a99282008-12-11 20:58:04 -08001683 pkt_len -= ETH_FCS_LEN;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001684#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001686 if (netif_msg_rx_status(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 dump_rxfd(lp->rfd_cur);
1688 if (status & Rx_Good) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 struct sk_buff *skb;
1690 unsigned char *data;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001691 int cur_bd;
1692#ifdef TC35815_USE_PACKEDBUFFER
1693 int offset;
1694#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001696#ifdef TC35815_NAPI
1697 if (--limit < 0)
1698 break;
1699#endif
1700#ifdef TC35815_USE_PACKEDBUFFER
1701 BUG_ON(bd_count > 2);
Atsushi Nemoto82a99282008-12-11 20:58:04 -08001702 skb = dev_alloc_skb(pkt_len + NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 if (skb == NULL) {
1704 printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n",
1705 dev->name);
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001706 dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 break;
1708 }
Atsushi Nemoto82a99282008-12-11 20:58:04 -08001709 skb_reserve(skb, NET_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 data = skb_put(skb, pkt_len);
1712
1713 /* copy from receive buffer */
1714 cur_bd = 0;
1715 offset = 0;
1716 while (offset < pkt_len && cur_bd < bd_count) {
1717 int len = le32_to_cpu(lp->rfd_cur->bd[cur_bd].BDCtl) &
1718 BD_BuffLength_MASK;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001719 dma_addr_t dma = le32_to_cpu(lp->rfd_cur->bd[cur_bd].BuffData);
1720 void *rxbuf = rxbuf_bus_to_virt(lp, dma);
1721 if (offset + len > pkt_len)
1722 len = pkt_len - offset;
1723#ifdef TC35815_DMA_SYNC_ONDEMAND
1724 pci_dma_sync_single_for_cpu(lp->pci_dev,
1725 dma, len,
1726 PCI_DMA_FROMDEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727#endif
1728 memcpy(data + offset, rxbuf, len);
Atsushi Nemoto793bc0a2007-03-14 01:02:20 +09001729#ifdef TC35815_DMA_SYNC_ONDEMAND
1730 pci_dma_sync_single_for_device(lp->pci_dev,
1731 dma, len,
1732 PCI_DMA_FROMDEVICE);
1733#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 offset += len;
1735 cur_bd++;
1736 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001737#else /* TC35815_USE_PACKEDBUFFER */
1738 BUG_ON(bd_count > 1);
1739 cur_bd = (le32_to_cpu(lp->rfd_cur->bd[0].BDCtl)
1740 & BD_RxBDID_MASK) >> BD_RxBDID_SHIFT;
1741#ifdef DEBUG
1742 if (cur_bd >= RX_BUF_NUM) {
1743 printk("%s: invalid BDID.\n", dev->name);
1744 panic_queues(dev);
1745 }
1746 BUG_ON(lp->rx_skbs[cur_bd].skb_dma !=
1747 (le32_to_cpu(lp->rfd_cur->bd[0].BuffData) & ~3));
1748 if (!lp->rx_skbs[cur_bd].skb) {
1749 printk("%s: NULL skb.\n", dev->name);
1750 panic_queues(dev);
1751 }
1752#else
1753 BUG_ON(cur_bd >= RX_BUF_NUM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001755 skb = lp->rx_skbs[cur_bd].skb;
1756 prefetch(skb->data);
1757 lp->rx_skbs[cur_bd].skb = NULL;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001758 pci_unmap_single(lp->pci_dev,
1759 lp->rx_skbs[cur_bd].skb_dma,
1760 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
Atsushi Nemoto82a99282008-12-11 20:58:04 -08001761 if (!HAVE_DMA_RXALIGN(lp) && NET_IP_ALIGN)
1762 memmove(skb->data, skb->data - NET_IP_ALIGN,
1763 pkt_len);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001764 data = skb_put(skb, pkt_len);
1765#endif /* TC35815_USE_PACKEDBUFFER */
1766 if (netif_msg_pktdata(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 print_eth(data);
1768 skb->protocol = eth_type_trans(skb, dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001769#ifdef TC35815_NAPI
1770 netif_receive_skb(skb);
1771 received++;
1772#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 netif_rx(skb);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001774#endif
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001775 dev->stats.rx_packets++;
1776 dev->stats.rx_bytes += pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 } else {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001778 dev->stats.rx_errors++;
Atsushi Nemotodb30f5e2009-08-06 04:41:46 +00001779 if (netif_msg_rx_err(lp))
1780 dev_info(&dev->dev, "Rx error (status %x)\n",
1781 status & Rx_Stat_Mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 /* WORKAROUND: LongErr and CRCErr means Overflow. */
1783 if ((status & Rx_LongErr) && (status & Rx_CRCErr)) {
1784 status &= ~(Rx_LongErr|Rx_CRCErr);
1785 status |= Rx_Over;
1786 }
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001787 if (status & Rx_LongErr)
1788 dev->stats.rx_length_errors++;
1789 if (status & Rx_Over)
1790 dev->stats.rx_fifo_errors++;
1791 if (status & Rx_CRCErr)
1792 dev->stats.rx_crc_errors++;
1793 if (status & Rx_Align)
1794 dev->stats.rx_frame_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
1796
1797 if (bd_count > 0) {
1798 /* put Free Buffer back to controller */
1799 int bdctl = le32_to_cpu(lp->rfd_cur->bd[bd_count - 1].BDCtl);
1800 unsigned char id =
1801 (bdctl & BD_RxBDID_MASK) >> BD_RxBDID_SHIFT;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001802#ifdef DEBUG
1803 if (id >= RX_BUF_NUM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 printk("%s: invalid BDID.\n", dev->name);
1805 panic_queues(dev);
1806 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001807#else
1808 BUG_ON(id >= RX_BUF_NUM);
1809#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 /* free old buffers */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001811#ifdef TC35815_USE_PACKEDBUFFER
1812 while (lp->fbl_curid != id)
1813#else
Atsushi Nemotoccc57aa2008-06-26 17:14:15 +09001814 lp->fbl_count--;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001815 while (lp->fbl_count < RX_BUF_NUM)
1816#endif
1817 {
1818#ifdef TC35815_USE_PACKEDBUFFER
1819 unsigned char curid = lp->fbl_curid;
1820#else
1821 unsigned char curid =
1822 (id + 1 + lp->fbl_count) % RX_BUF_NUM;
1823#endif
1824 struct BDesc *bd = &lp->fbl_ptr->bd[curid];
1825#ifdef DEBUG
1826 bdctl = le32_to_cpu(bd->BDCtl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (bdctl & BD_CownsBD) {
1828 printk("%s: Freeing invalid BD.\n",
1829 dev->name);
1830 panic_queues(dev);
1831 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001832#endif
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001833 /* pass BD to controller */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001834#ifndef TC35815_USE_PACKEDBUFFER
1835 if (!lp->rx_skbs[curid].skb) {
1836 lp->rx_skbs[curid].skb =
1837 alloc_rxbuf_skb(dev,
1838 lp->pci_dev,
1839 &lp->rx_skbs[curid].skb_dma);
1840 if (!lp->rx_skbs[curid].skb)
1841 break; /* try on next reception */
1842 bd->BuffData = cpu_to_le32(lp->rx_skbs[curid].skb_dma);
1843 }
1844#endif /* TC35815_USE_PACKEDBUFFER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 /* Note: BDLength was modified by chip. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001846 bd->BDCtl = cpu_to_le32(BD_CownsBD |
1847 (curid << BD_RxBDID_SHIFT) |
1848 RX_BUF_SIZE);
1849#ifdef TC35815_USE_PACKEDBUFFER
1850 lp->fbl_curid = (curid + 1) % RX_BUF_NUM;
1851 if (netif_msg_rx_status(lp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 printk("%s: Entering new FBD %d\n",
1853 dev->name, lp->fbl_curid);
1854 dump_frfd(lp->fbl_ptr);
1855 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001856#else
1857 lp->fbl_count++;
1858#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 }
1860 }
1861
1862 /* put RxFD back to controller */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001863#ifdef DEBUG
1864 next_rfd = fd_bus_to_virt(lp,
1865 le32_to_cpu(lp->rfd_cur->fd.FDNext));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (next_rfd < lp->rfd_base || next_rfd > lp->rfd_limit) {
1867 printk("%s: RxFD FDNext invalid.\n", dev->name);
1868 panic_queues(dev);
1869 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001870#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 for (i = 0; i < (bd_count + 1) / 2 + 1; i++) {
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02001872 /* pass FD to controller */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001873#ifdef DEBUG
1874 lp->rfd_cur->fd.FDNext = cpu_to_le32(0xdeaddead);
1875#else
1876 lp->rfd_cur->fd.FDNext = cpu_to_le32(FD_Next_EOL);
1877#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 lp->rfd_cur->fd.FDCtl = cpu_to_le32(FD_CownsFD);
1879 lp->rfd_cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001881 if (lp->rfd_cur > lp->rfd_limit)
1882 lp->rfd_cur = lp->rfd_base;
1883#ifdef DEBUG
1884 if (lp->rfd_cur != next_rfd)
1885 printk("rfd_cur = %p, next_rfd %p\n",
1886 lp->rfd_cur, next_rfd);
1887#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
1889
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001890#ifdef TC35815_NAPI
1891 return received;
1892#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001895#ifdef TC35815_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001896static int tc35815_poll(struct napi_struct *napi, int budget)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001897{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001898 struct tc35815_local *lp = container_of(napi, struct tc35815_local, napi);
1899 struct net_device *dev = lp->dev;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001900 struct tc35815_regs __iomem *tr =
1901 (struct tc35815_regs __iomem *)dev->base_addr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001902 int received = 0, handled;
1903 u32 status;
1904
1905 spin_lock(&lp->lock);
1906 status = tc_readl(&tr->Int_Src);
1907 do {
Atsushi Nemotodb30f5e2009-08-06 04:41:46 +00001908 /* BLEx, FDAEx will be cleared later */
1909 tc_writel(status & ~(Int_BLEx | Int_FDAEx),
1910 &tr->Int_Src); /* write to clear */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001911
Atsushi Nemotoa2c465d2009-04-02 01:17:36 -07001912 handled = tc35815_do_interrupt(dev, status, budget - received);
Atsushi Nemotodb30f5e2009-08-06 04:41:46 +00001913 if (status & (Int_BLEx | Int_FDAEx))
1914 tc_writel(status & (Int_BLEx | Int_FDAEx),
1915 &tr->Int_Src);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001916 if (handled >= 0) {
1917 received += handled;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001918 if (received >= budget)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001919 break;
1920 }
1921 status = tc_readl(&tr->Int_Src);
1922 } while (status);
1923 spin_unlock(&lp->lock);
1924
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001925 if (received < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -08001926 napi_complete(napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001927 /* enable interrupts */
1928 tc_writel(tc_readl(&tr->DMA_Ctl) & ~DMA_IntMask, &tr->DMA_Ctl);
1929 }
1930 return received;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001931}
1932#endif
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934#ifdef NO_CHECK_CARRIER
1935#define TX_STA_ERR (Tx_ExColl|Tx_Under|Tx_Defer|Tx_LateColl|Tx_TxPar|Tx_SQErr)
1936#else
1937#define TX_STA_ERR (Tx_ExColl|Tx_Under|Tx_Defer|Tx_NCarr|Tx_LateColl|Tx_TxPar|Tx_SQErr)
1938#endif
1939
1940static void
1941tc35815_check_tx_stat(struct net_device *dev, int status)
1942{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09001943 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 const char *msg = NULL;
1945
1946 /* count collisions */
1947 if (status & Tx_ExColl)
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001948 dev->stats.collisions += 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 if (status & Tx_TxColl_MASK)
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001950 dev->stats.collisions += status & Tx_TxColl_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001952#ifndef NO_CHECK_CARRIER
1953 /* TX4939 does not have NCarr */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001954 if (lp->chiptype == TC35815_TX4939)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 status &= ~Tx_NCarr;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001956#ifdef WORKAROUND_LOSTCAR
1957 /* WORKAROUND: ignore LostCrS in full duplex operation */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09001958 if (!lp->link || lp->duplex == DUPLEX_FULL)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001959 status &= ~Tx_NCarr;
1960#endif
1961#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
1963 if (!(status & TX_STA_ERR)) {
1964 /* no error. */
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001965 dev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return;
1967 }
1968
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001969 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 if (status & Tx_ExColl) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001971 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 msg = "Excessive Collision.";
1973 }
1974 if (status & Tx_Under) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001975 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 msg = "Tx FIFO Underrun.";
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001977 if (lp->lstats.tx_underrun < TX_THRESHOLD_KEEP_LIMIT) {
1978 lp->lstats.tx_underrun++;
1979 if (lp->lstats.tx_underrun >= TX_THRESHOLD_KEEP_LIMIT) {
1980 struct tc35815_regs __iomem *tr =
1981 (struct tc35815_regs __iomem *)dev->base_addr;
1982 tc_writel(TX_THRESHOLD_MAX, &tr->TxThrsh);
1983 msg = "Tx FIFO Underrun.Change Tx threshold to max.";
1984 }
1985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987 if (status & Tx_Defer) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001988 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 msg = "Excessive Deferral.";
1990 }
1991#ifndef NO_CHECK_CARRIER
1992 if (status & Tx_NCarr) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001993 dev->stats.tx_carrier_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 msg = "Lost Carrier Sense.";
1995 }
1996#endif
1997 if (status & Tx_LateColl) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09001998 dev->stats.tx_aborted_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 msg = "Late Collision.";
2000 }
2001 if (status & Tx_TxPar) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002002 dev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 msg = "Transmit Parity Error.";
2004 }
2005 if (status & Tx_SQErr) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002006 dev->stats.tx_heartbeat_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 msg = "Signal Quality Error.";
2008 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002009 if (msg && netif_msg_tx_err(lp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 printk(KERN_WARNING "%s: %s (%#x)\n", dev->name, msg, status);
2011}
2012
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002013/* This handles TX complete events posted by the device
2014 * via interrupts.
2015 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016static void
2017tc35815_txdone(struct net_device *dev)
2018{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002019 struct tc35815_local *lp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 struct TxFD *txfd;
2021 unsigned int fdctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 txfd = &lp->tfd_base[lp->tfd_end];
2024 while (lp->tfd_start != lp->tfd_end &&
2025 !((fdctl = le32_to_cpu(txfd->fd.FDCtl)) & FD_CownsFD)) {
2026 int status = le32_to_cpu(txfd->fd.FDStat);
2027 struct sk_buff *skb;
2028 unsigned long fdnext = le32_to_cpu(txfd->fd.FDNext);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002029 u32 fdsystem = le32_to_cpu(txfd->fd.FDSystem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002031 if (netif_msg_tx_done(lp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 printk("%s: complete TxFD.\n", dev->name);
2033 dump_txfd(txfd);
2034 }
2035 tc35815_check_tx_stat(dev, status);
2036
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002037 skb = fdsystem != 0xffffffff ?
2038 lp->tx_skbs[fdsystem].skb : NULL;
2039#ifdef DEBUG
2040 if (lp->tx_skbs[lp->tfd_end].skb != skb) {
2041 printk("%s: tx_skbs mismatch.\n", dev->name);
2042 panic_queues(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002044#else
2045 BUG_ON(lp->tx_skbs[lp->tfd_end].skb != skb);
2046#endif
2047 if (skb) {
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002048 dev->stats.tx_bytes += skb->len;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002049 pci_unmap_single(lp->pci_dev, lp->tx_skbs[lp->tfd_end].skb_dma, skb->len, PCI_DMA_TODEVICE);
2050 lp->tx_skbs[lp->tfd_end].skb = NULL;
2051 lp->tx_skbs[lp->tfd_end].skb_dma = 0;
2052#ifdef TC35815_NAPI
2053 dev_kfree_skb_any(skb);
2054#else
2055 dev_kfree_skb_irq(skb);
2056#endif
2057 }
2058 txfd->fd.FDSystem = cpu_to_le32(0xffffffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 lp->tfd_end = (lp->tfd_end + 1) % TX_FD_NUM;
2061 txfd = &lp->tfd_base[lp->tfd_end];
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002062#ifdef DEBUG
2063 if ((fdnext & ~FD_Next_EOL) != fd_virt_to_bus(lp, txfd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 printk("%s: TxFD FDNext invalid.\n", dev->name);
2065 panic_queues(dev);
2066 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002067#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 if (fdnext & FD_Next_EOL) {
2069 /* DMA Transmitter has been stopping... */
2070 if (lp->tfd_end != lp->tfd_start) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002071 struct tc35815_regs __iomem *tr =
2072 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 int head = (lp->tfd_start + TX_FD_NUM - 1) % TX_FD_NUM;
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002074 struct TxFD *txhead = &lp->tfd_base[head];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 int qlen = (lp->tfd_start + TX_FD_NUM
2076 - lp->tfd_end) % TX_FD_NUM;
2077
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002078#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (!(le32_to_cpu(txfd->fd.FDCtl) & FD_CownsFD)) {
2080 printk("%s: TxFD FDCtl invalid.\n", dev->name);
2081 panic_queues(dev);
2082 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002083#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 /* log max queue length */
2085 if (lp->lstats.max_tx_qlen < qlen)
2086 lp->lstats.max_tx_qlen = qlen;
2087
2088
2089 /* start DMA Transmitter again */
2090 txhead->fd.FDNext |= cpu_to_le32(FD_Next_EOL);
2091#ifdef GATHER_TXINT
2092 txhead->fd.FDCtl |= cpu_to_le32(FD_FrmOpt_IntTx);
2093#endif
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002094 if (netif_msg_tx_queued(lp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 printk("%s: start TxFD on queue.\n",
2096 dev->name);
2097 dump_txfd(txfd);
2098 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002099 tc_writel(fd_virt_to_bus(lp, txfd), &tr->TxFrmPtr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 }
2101 break;
2102 }
2103 }
2104
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002105 /* If we had stopped the queue due to a "tx full"
2106 * condition, and space has now been made available,
2107 * wake up the queue.
2108 */
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002109 if (netif_queue_stopped(dev) && !tc35815_tx_full(dev))
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002110 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111}
2112
2113/* The inverse routine to tc35815_open(). */
2114static int
2115tc35815_close(struct net_device *dev)
2116{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002117 struct tc35815_local *lp = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 netif_stop_queue(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002120#ifdef TC35815_NAPI
2121 napi_disable(&lp->napi);
2122#endif
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002123 if (lp->phy_dev)
2124 phy_stop(lp->phy_dev);
2125 cancel_work_sync(&lp->restart_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 /* Flush the Tx and disable Rx here. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 tc35815_chip_reset(dev);
2129 free_irq(dev->irq, dev);
2130
2131 tc35815_free_queues(dev);
2132
2133 return 0;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
2136
2137/*
2138 * Get the current statistics.
2139 * This may be called with the card open or closed.
2140 */
2141static struct net_device_stats *tc35815_get_stats(struct net_device *dev)
2142{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002143 struct tc35815_regs __iomem *tr =
2144 (struct tc35815_regs __iomem *)dev->base_addr;
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002145 if (netif_running(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 /* Update the statistics from the device registers. */
Atsushi Nemoto7bb82e82009-08-06 04:41:48 +00002147 dev->stats.rx_missed_errors += tc_readl(&tr->Miss_Cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Atsushi Nemotoc201abd92008-04-11 00:24:12 +09002149 return &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150}
2151
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002152static void tc35815_set_cam_entry(struct net_device *dev, int index, unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002154 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002155 struct tc35815_regs __iomem *tr =
2156 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 int cam_index = index * 6;
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002158 u32 cam_data;
2159 u32 saved_addr;
Atsushi Nemoto958eb802008-04-11 00:24:24 +09002160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 saved_addr = tc_readl(&tr->CAM_Adr);
2162
Atsushi Nemoto958eb802008-04-11 00:24:24 +09002163 if (netif_msg_hw(lp))
Johannes Berge1749612008-10-27 15:59:26 -07002164 printk(KERN_DEBUG "%s: CAM %d: %pM\n",
2165 dev->name, index, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (index & 1) {
2167 /* read modify write */
2168 tc_writel(cam_index - 2, &tr->CAM_Adr);
2169 cam_data = tc_readl(&tr->CAM_Data) & 0xffff0000;
2170 cam_data |= addr[0] << 8 | addr[1];
2171 tc_writel(cam_data, &tr->CAM_Data);
2172 /* write whole word */
2173 tc_writel(cam_index + 2, &tr->CAM_Adr);
2174 cam_data = (addr[2] << 24) | (addr[3] << 16) | (addr[4] << 8) | addr[5];
2175 tc_writel(cam_data, &tr->CAM_Data);
2176 } else {
2177 /* write whole word */
2178 tc_writel(cam_index, &tr->CAM_Adr);
2179 cam_data = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3];
2180 tc_writel(cam_data, &tr->CAM_Data);
2181 /* read modify write */
2182 tc_writel(cam_index + 4, &tr->CAM_Adr);
2183 cam_data = tc_readl(&tr->CAM_Data) & 0x0000ffff;
2184 cam_data |= addr[4] << 24 | (addr[5] << 16);
2185 tc_writel(cam_data, &tr->CAM_Data);
2186 }
2187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 tc_writel(saved_addr, &tr->CAM_Adr);
2189}
2190
2191
2192/*
2193 * Set or clear the multicast filter for this adaptor.
2194 * num_addrs == -1 Promiscuous mode, receive all packets
2195 * num_addrs == 0 Normal mode, clear multicast list
2196 * num_addrs > 0 Multicast mode, receive normal and MC packets,
2197 * and do best-effort filtering.
2198 */
2199static void
2200tc35815_set_multicast_list(struct net_device *dev)
2201{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002202 struct tc35815_regs __iomem *tr =
2203 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002205 if (dev->flags & IFF_PROMISC) {
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002206#ifdef WORKAROUND_100HALF_PROMISC
2207 /* With some (all?) 100MHalf HUB, controller will hang
2208 * if we enabled promiscuous mode before linkup... */
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002209 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002210
2211 if (!lp->link)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002212 return;
2213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 /* Enable promiscuous mode */
2215 tc_writel(CAM_CompEn | CAM_BroadAcc | CAM_GroupAcc | CAM_StationAcc, &tr->CAM_Ctl);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002216 } else if ((dev->flags & IFF_ALLMULTI) ||
2217 dev->mc_count > CAM_ENTRY_MAX - 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 /* CAM 0, 1, 20 are reserved. */
2219 /* Disable promiscuous mode, use normal mode. */
2220 tc_writel(CAM_CompEn | CAM_BroadAcc | CAM_GroupAcc, &tr->CAM_Ctl);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002221 } else if (dev->mc_count) {
2222 struct dev_mc_list *cur_addr = dev->mc_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 int i;
2224 int ena_bits = CAM_Ena_Bit(CAM_ENTRY_SOURCE);
2225
2226 tc_writel(0, &tr->CAM_Ctl);
2227 /* Walk the address list, and load the filter */
2228 for (i = 0; i < dev->mc_count; i++, cur_addr = cur_addr->next) {
2229 if (!cur_addr)
2230 break;
2231 /* entry 0,1 is reserved. */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002232 tc35815_set_cam_entry(dev, i + 2, cur_addr->dmi_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 ena_bits |= CAM_Ena_Bit(i + 2);
2234 }
2235 tc_writel(ena_bits, &tr->CAM_Ena);
2236 tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
Atsushi Nemoto7f225b42008-04-11 00:25:31 +09002237 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 tc_writel(CAM_Ena_Bit(CAM_ENTRY_SOURCE), &tr->CAM_Ena);
2239 tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
2240 }
2241}
2242
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002243static void tc35815_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002245 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002246 strcpy(info->driver, MODNAME);
2247 strcpy(info->version, DRV_VERSION);
2248 strcpy(info->bus_info, pci_name(lp->pci_dev));
2249}
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002250
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002251static int tc35815_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2252{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002253 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002254
2255 if (!lp->phy_dev)
2256 return -ENODEV;
2257 return phy_ethtool_gset(lp->phy_dev, cmd);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002258}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002260static int tc35815_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2261{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002262 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002263
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002264 if (!lp->phy_dev)
2265 return -ENODEV;
2266 return phy_ethtool_sset(lp->phy_dev, cmd);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002267}
2268
2269static u32 tc35815_get_msglevel(struct net_device *dev)
2270{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002271 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002272 return lp->msg_enable;
2273}
2274
2275static void tc35815_set_msglevel(struct net_device *dev, u32 datum)
2276{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002277 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002278 lp->msg_enable = datum;
2279}
2280
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002281static int tc35815_get_sset_count(struct net_device *dev, int sset)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002282{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002283 struct tc35815_local *lp = netdev_priv(dev);
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002284
2285 switch (sset) {
2286 case ETH_SS_STATS:
2287 return sizeof(lp->lstats) / sizeof(int);
2288 default:
2289 return -EOPNOTSUPP;
2290 }
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002291}
2292
2293static void tc35815_get_ethtool_stats(struct net_device *dev, struct ethtool_stats *stats, u64 *data)
2294{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002295 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002296 data[0] = lp->lstats.max_tx_qlen;
2297 data[1] = lp->lstats.tx_ints;
2298 data[2] = lp->lstats.rx_ints;
2299 data[3] = lp->lstats.tx_underrun;
2300}
2301
2302static struct {
2303 const char str[ETH_GSTRING_LEN];
2304} ethtool_stats_keys[] = {
2305 { "max_tx_qlen" },
2306 { "tx_ints" },
2307 { "rx_ints" },
2308 { "tx_underrun" },
2309};
2310
2311static void tc35815_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2312{
2313 memcpy(data, ethtool_stats_keys, sizeof(ethtool_stats_keys));
2314}
2315
2316static const struct ethtool_ops tc35815_ethtool_ops = {
2317 .get_drvinfo = tc35815_get_drvinfo,
2318 .get_settings = tc35815_get_settings,
2319 .set_settings = tc35815_set_settings,
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002320 .get_link = ethtool_op_get_link,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002321 .get_msglevel = tc35815_get_msglevel,
2322 .set_msglevel = tc35815_set_msglevel,
2323 .get_strings = tc35815_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002324 .get_sset_count = tc35815_get_sset_count,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002325 .get_ethtool_stats = tc35815_get_ethtool_stats,
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002326};
2327
2328static int tc35815_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2329{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002330 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002331
2332 if (!netif_running(dev))
2333 return -EINVAL;
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002334 if (!lp->phy_dev)
2335 return -ENODEV;
2336 return phy_mii_ioctl(lp->phy_dev, if_mii(rq), cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
2339static void tc35815_chip_reset(struct net_device *dev)
2340{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002341 struct tc35815_regs __iomem *tr =
2342 (struct tc35815_regs __iomem *)dev->base_addr;
2343 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 /* reset the controller */
2345 tc_writel(MAC_Reset, &tr->MAC_Ctl);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002346 udelay(4); /* 3200ns */
2347 i = 0;
2348 while (tc_readl(&tr->MAC_Ctl) & MAC_Reset) {
2349 if (i++ > 100) {
2350 printk(KERN_ERR "%s: MAC reset failed.\n", dev->name);
2351 break;
2352 }
2353 mdelay(1);
2354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 tc_writel(0, &tr->MAC_Ctl);
2356
2357 /* initialize registers to default value */
2358 tc_writel(0, &tr->DMA_Ctl);
2359 tc_writel(0, &tr->TxThrsh);
2360 tc_writel(0, &tr->TxPollCtr);
2361 tc_writel(0, &tr->RxFragSize);
2362 tc_writel(0, &tr->Int_En);
2363 tc_writel(0, &tr->FDA_Bas);
2364 tc_writel(0, &tr->FDA_Lim);
2365 tc_writel(0xffffffff, &tr->Int_Src); /* Write 1 to clear */
2366 tc_writel(0, &tr->CAM_Ctl);
2367 tc_writel(0, &tr->Tx_Ctl);
2368 tc_writel(0, &tr->Rx_Ctl);
2369 tc_writel(0, &tr->CAM_Ena);
2370 (void)tc_readl(&tr->Miss_Cnt); /* Read to clear */
2371
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002372 /* initialize internal SRAM */
2373 tc_writel(DMA_TestMode, &tr->DMA_Ctl);
2374 for (i = 0; i < 0x1000; i += 4) {
2375 tc_writel(i, &tr->CAM_Adr);
2376 tc_writel(0, &tr->CAM_Data);
2377 }
2378 tc_writel(0, &tr->DMA_Ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
2381static void tc35815_chip_init(struct net_device *dev)
2382{
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002383 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002384 struct tc35815_regs __iomem *tr =
2385 (struct tc35815_regs __iomem *)dev->base_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 unsigned long txctl = TX_CTL_CMD;
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 /* load station address to CAM */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002389 tc35815_set_cam_entry(dev, CAM_ENTRY_SOURCE, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
2391 /* Enable CAM (broadcast and unicast) */
2392 tc_writel(CAM_Ena_Bit(CAM_ENTRY_SOURCE), &tr->CAM_Ena);
2393 tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
2394
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002395 /* Use DMA_RxAlign_2 to make IP header 4-byte aligned. */
2396 if (HAVE_DMA_RXALIGN(lp))
2397 tc_writel(DMA_BURST_SIZE | DMA_RxAlign_2, &tr->DMA_Ctl);
2398 else
2399 tc_writel(DMA_BURST_SIZE, &tr->DMA_Ctl);
2400#ifdef TC35815_USE_PACKEDBUFFER
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 tc_writel(RxFrag_EnPack | ETH_ZLEN, &tr->RxFragSize); /* Packing */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002402#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 tc_writel(0, &tr->TxPollCtr); /* Batch mode */
2404 tc_writel(TX_THRESHOLD, &tr->TxThrsh);
2405 tc_writel(INT_EN_CMD, &tr->Int_En);
2406
2407 /* set queues */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002408 tc_writel(fd_virt_to_bus(lp, lp->rfd_base), &tr->FDA_Bas);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 tc_writel((unsigned long)lp->rfd_limit - (unsigned long)lp->rfd_base,
2410 &tr->FDA_Lim);
2411 /*
2412 * Activation method:
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002413 * First, enable the MAC Transmitter and the DMA Receive circuits.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 * Then enable the DMA Transmitter and the MAC Receive circuits.
2415 */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002416 tc_writel(fd_virt_to_bus(lp, lp->fbl_ptr), &tr->BLFrmPtr); /* start DMA receiver */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 tc_writel(RX_CTL_CMD, &tr->Rx_Ctl); /* start MAC receiver */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002418
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 /* start MAC transmitter */
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002420#ifndef NO_CHECK_CARRIER
2421 /* TX4939 does not have EnLCarr */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002422 if (lp->chiptype == TC35815_TX4939)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002423 txctl &= ~Tx_EnLCarr;
2424#ifdef WORKAROUND_LOSTCAR
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 /* WORKAROUND: ignore LostCrS in full duplex operation */
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002426 if (!lp->phy_dev || !lp->link || lp->duplex == DUPLEX_FULL)
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002427 txctl &= ~Tx_EnLCarr;
2428#endif
2429#endif /* !NO_CHECK_CARRIER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430#ifdef GATHER_TXINT
2431 txctl &= ~Tx_EnComp; /* disable global tx completion int. */
2432#endif
2433 tc_writel(txctl, &tr->Tx_Ctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434}
2435
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002436#ifdef CONFIG_PM
2437static int tc35815_suspend(struct pci_dev *pdev, pm_message_t state)
2438{
2439 struct net_device *dev = pci_get_drvdata(pdev);
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002440 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002441 unsigned long flags;
2442
2443 pci_save_state(pdev);
2444 if (!netif_running(dev))
2445 return 0;
2446 netif_device_detach(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002447 if (lp->phy_dev)
2448 phy_stop(lp->phy_dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002449 spin_lock_irqsave(&lp->lock, flags);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002450 tc35815_chip_reset(dev);
2451 spin_unlock_irqrestore(&lp->lock, flags);
2452 pci_set_power_state(pdev, PCI_D3hot);
2453 return 0;
2454}
2455
2456static int tc35815_resume(struct pci_dev *pdev)
2457{
2458 struct net_device *dev = pci_get_drvdata(pdev);
Atsushi Nemotoee79b7f2008-04-11 00:24:36 +09002459 struct tc35815_local *lp = netdev_priv(dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002460
2461 pci_restore_state(pdev);
2462 if (!netif_running(dev))
2463 return 0;
2464 pci_set_power_state(pdev, PCI_D0);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002465 tc35815_restart(dev);
Atsushi Nemoto59524a32008-06-25 11:41:01 +09002466 netif_carrier_off(dev);
Atsushi Nemotoc6686fe2008-04-12 00:47:46 +09002467 if (lp->phy_dev)
2468 phy_start(lp->phy_dev);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002469 netif_device_attach(dev);
2470 return 0;
2471}
2472#endif /* CONFIG_PM */
2473
2474static struct pci_driver tc35815_pci_driver = {
2475 .name = MODNAME,
2476 .id_table = tc35815_pci_tbl,
2477 .probe = tc35815_init_one,
2478 .remove = __devexit_p(tc35815_remove_one),
2479#ifdef CONFIG_PM
2480 .suspend = tc35815_suspend,
2481 .resume = tc35815_resume,
2482#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483};
2484
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002485module_param_named(speed, options.speed, int, 0);
2486MODULE_PARM_DESC(speed, "0:auto, 10:10Mbps, 100:100Mbps");
2487module_param_named(duplex, options.duplex, int, 0);
2488MODULE_PARM_DESC(duplex, "0:auto, 1:half, 2:full");
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490static int __init tc35815_init_module(void)
2491{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002492 return pci_register_driver(&tc35815_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493}
2494
2495static void __exit tc35815_cleanup_module(void)
2496{
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002497 pci_unregister_driver(&tc35815_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
Jeff Garzik420e8522007-02-24 17:02:16 -05002499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500module_init(tc35815_init_module);
2501module_exit(tc35815_cleanup_module);
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09002502
2503MODULE_DESCRIPTION("TOSHIBA TC35815 PCI 10M/100M Ethernet driver");
2504MODULE_LICENSE("GPL");