tc35815.c 71.0 KB
Newer Older
A
Atsushi Nemoto 已提交
1 2
/*
 * tc35815.c: A TOSHIBA TC35815CF PCI 10/100Mbps ethernet driver for linux.
L
Linus Torvalds 已提交
3 4 5
 *
 * Based on skelton.c by Donald Becker.
 *
A
Atsushi Nemoto 已提交
6 7 8 9 10 11 12 13 14 15
 * This driver is a replacement of older and less maintained version.
 * This is a header of the older version:
 *	-----<snip>-----
 *	Copyright 2001 MontaVista Software Inc.
 *	Author: MontaVista Software, Inc.
 *		ahennessy@mvista.com
 *	Copyright (C) 2000-2001 Toshiba Corporation
 *	static const char *version =
 *		"tc35815.c:v0.00 26/07/2000 by Toshiba Corporation\n";
 *	-----<snip>-----
L
Linus Torvalds 已提交
16
 *
A
Atsushi Nemoto 已提交
17 18 19
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
L
Linus Torvalds 已提交
20
 *
A
Atsushi Nemoto 已提交
21 22
 * (C) Copyright TOSHIBA CORPORATION 2004-2005
 * All Rights Reserved.
L
Linus Torvalds 已提交
23 24
 */

A
Atsushi Nemoto 已提交
25
#ifdef TC35815_NAPI
A
Atsushi Nemoto 已提交
26
#define DRV_VERSION	"1.38-NAPI"
A
Atsushi Nemoto 已提交
27
#else
A
Atsushi Nemoto 已提交
28
#define DRV_VERSION	"1.38"
A
Atsushi Nemoto 已提交
29 30 31
#endif
static const char *version = "tc35815.c:v" DRV_VERSION "\n";
#define MODNAME			"tc35815"
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/fcntl.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/in.h>
A
Atsushi Nemoto 已提交
40
#include <linux/if_vlan.h>
L
Linus Torvalds 已提交
41 42
#include <linux/slab.h>
#include <linux/string.h>
A
Atsushi Nemoto 已提交
43
#include <linux/spinlock.h>
L
Linus Torvalds 已提交
44 45 46 47 48 49 50
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/skbuff.h>
#include <linux/delay.h>
#include <linux/pci.h>
A
Atsushi Nemoto 已提交
51 52
#include <linux/phy.h>
#include <linux/workqueue.h>
53
#include <linux/platform_device.h>
L
Linus Torvalds 已提交
54 55 56 57 58 59
#include <asm/io.h>
#include <asm/byteorder.h>

/* First, a few definitions that the brave might change. */

#define GATHER_TXINT	/* On-Demand Tx Interrupt */
A
Atsushi Nemoto 已提交
60 61 62 63
#define WORKAROUND_LOSTCAR
#define WORKAROUND_100HALF_PROMISC
/* #define TC35815_USE_PACKEDBUFFER */

A
Atsushi Nemoto 已提交
64
enum tc35815_chiptype {
A
Atsushi Nemoto 已提交
65 66 67
	TC35815CF = 0,
	TC35815_NWU,
	TC35815_TX4939,
A
Atsushi Nemoto 已提交
68
};
A
Atsushi Nemoto 已提交
69

A
Atsushi Nemoto 已提交
70
/* indexed by tc35815_chiptype, above */
A
Atsushi Nemoto 已提交
71 72
static const struct {
	const char *name;
A
Atsushi Nemoto 已提交
73
} chip_info[] __devinitdata = {
A
Atsushi Nemoto 已提交
74 75 76 77 78 79 80 81 82 83 84
	{ "TOSHIBA TC35815CF 10/100BaseTX" },
	{ "TOSHIBA TC35815 with Wake on LAN" },
	{ "TOSHIBA TC35815/TX4939" },
};

static const struct pci_device_id tc35815_pci_tbl[] = {
	{PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC35815CF), .driver_data = TC35815CF },
	{PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC35815_NWU), .driver_data = TC35815_NWU },
	{PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA_2, PCI_DEVICE_ID_TOSHIBA_TC35815_TX4939), .driver_data = TC35815_TX4939 },
	{0,}
};
A
Atsushi Nemoto 已提交
85
MODULE_DEVICE_TABLE(pci, tc35815_pci_tbl);
L
Linus Torvalds 已提交
86

A
Atsushi Nemoto 已提交
87 88 89 90 91
/* see MODULE_PARM_DESC */
static struct tc35815_options {
	int speed;
	int duplex;
} options;
L
Linus Torvalds 已提交
92 93 94 95 96

/*
 * Registers
 */
struct tc35815_regs {
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
	__u32 DMA_Ctl;		/* 0x00 */
	__u32 TxFrmPtr;
	__u32 TxThrsh;
	__u32 TxPollCtr;
	__u32 BLFrmPtr;
	__u32 RxFragSize;
	__u32 Int_En;
	__u32 FDA_Bas;
	__u32 FDA_Lim;		/* 0x20 */
	__u32 Int_Src;
	__u32 unused0[2];
	__u32 PauseCnt;
	__u32 RemPauCnt;
	__u32 TxCtlFrmStat;
	__u32 unused1;
	__u32 MAC_Ctl;		/* 0x40 */
	__u32 CAM_Ctl;
	__u32 Tx_Ctl;
	__u32 Tx_Stat;
	__u32 Rx_Ctl;
	__u32 Rx_Stat;
	__u32 MD_Data;
	__u32 MD_CA;
	__u32 CAM_Adr;		/* 0x60 */
	__u32 CAM_Data;
	__u32 CAM_Ena;
	__u32 PROM_Ctl;
	__u32 PROM_Data;
	__u32 Algn_Cnt;
	__u32 CRC_Cnt;
	__u32 Miss_Cnt;
L
Linus Torvalds 已提交
128 129 130 131 132 133
};

/*
 * Bit assignments
 */
/* DMA_Ctl bit asign ------------------------------------------------------- */
A
Atsushi Nemoto 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146
#define DMA_RxAlign	       0x00c00000 /* 1:Reception Alignment	     */
#define DMA_RxAlign_1	       0x00400000
#define DMA_RxAlign_2	       0x00800000
#define DMA_RxAlign_3	       0x00c00000
#define DMA_M66EnStat	       0x00080000 /* 1:66MHz Enable State	     */
#define DMA_IntMask	       0x00040000 /* 1:Interupt mask		     */
#define DMA_SWIntReq	       0x00020000 /* 1:Software Interrupt request    */
#define DMA_TxWakeUp	       0x00010000 /* 1:Transmit Wake Up		     */
#define DMA_RxBigE	       0x00008000 /* 1:Receive Big Endian	     */
#define DMA_TxBigE	       0x00004000 /* 1:Transmit Big Endian	     */
#define DMA_TestMode	       0x00002000 /* 1:Test Mode		     */
#define DMA_PowrMgmnt	       0x00001000 /* 1:Power Management		     */
#define DMA_DmBurst_Mask       0x000001fc /* DMA Burst size		     */
L
Linus Torvalds 已提交
147 148

/* RxFragSize bit asign ---------------------------------------------------- */
A
Atsushi Nemoto 已提交
149 150
#define RxFrag_EnPack	       0x00008000 /* 1:Enable Packing		     */
#define RxFrag_MinFragMask     0x00000ffc /* Minimum Fragment		     */
L
Linus Torvalds 已提交
151 152

/* MAC_Ctl bit asign ------------------------------------------------------- */
A
Atsushi Nemoto 已提交
153 154 155 156 157 158 159 160 161 162 163 164
#define MAC_Link10	       0x00008000 /* 1:Link Status 10Mbits	     */
#define MAC_EnMissRoll	       0x00002000 /* 1:Enable Missed Roll	     */
#define MAC_MissRoll	       0x00000400 /* 1:Missed Roll		     */
#define MAC_Loop10	       0x00000080 /* 1:Loop 10 Mbps		     */
#define MAC_Conn_Auto	       0x00000000 /*00:Connection mode (Automatic)   */
#define MAC_Conn_10M	       0x00000020 /*01:		       (10Mbps endec)*/
#define MAC_Conn_Mll	       0x00000040 /*10:		       (Mll clock)   */
#define MAC_MacLoop	       0x00000010 /* 1:MAC Loopback		     */
#define MAC_FullDup	       0x00000008 /* 1:Full Duplex 0:Half Duplex     */
#define MAC_Reset	       0x00000004 /* 1:Software Reset		     */
#define MAC_HaltImm	       0x00000002 /* 1:Halt Immediate		     */
#define MAC_HaltReq	       0x00000001 /* 1:Halt request		     */
L
Linus Torvalds 已提交
165 166

/* PROM_Ctl bit asign ------------------------------------------------------ */
A
Atsushi Nemoto 已提交
167 168 169 170 171 172 173 174
#define PROM_Busy	       0x00008000 /* 1:Busy (Start Operation)	     */
#define PROM_Read	       0x00004000 /*10:Read operation		     */
#define PROM_Write	       0x00002000 /*01:Write operation		     */
#define PROM_Erase	       0x00006000 /*11:Erase operation		     */
					  /*00:Enable or Disable Writting,   */
					  /*	  as specified in PROM_Addr. */
#define PROM_Addr_Ena	       0x00000030 /*11xxxx:PROM Write enable	     */
					  /*00xxxx:	      disable	     */
L
Linus Torvalds 已提交
175 176

/* CAM_Ctl bit asign ------------------------------------------------------- */
A
Atsushi Nemoto 已提交
177 178 179 180 181 182
#define CAM_CompEn	       0x00000010 /* 1:CAM Compare Enable	     */
#define CAM_NegCAM	       0x00000008 /* 1:Reject packets CAM recognizes,*/
					  /*			accept other */
#define CAM_BroadAcc	       0x00000004 /* 1:Broadcast assept		     */
#define CAM_GroupAcc	       0x00000002 /* 1:Multicast assept		     */
#define CAM_StationAcc	       0x00000001 /* 1:unicast accept		     */
L
Linus Torvalds 已提交
183 184

/* CAM_Ena bit asign ------------------------------------------------------- */
A
Atsushi Nemoto 已提交
185
#define CAM_ENTRY_MAX		       21   /* CAM Data entry max count	     */
L
Linus Torvalds 已提交
186
#define CAM_Ena_Mask ((1<<CAM_ENTRY_MAX)-1) /* CAM Enable bits (Max 21bits)  */
A
Atsushi Nemoto 已提交
187
#define CAM_Ena_Bit(index)	(1 << (index))
L
Linus Torvalds 已提交
188 189 190 191 192
#define CAM_ENTRY_DESTINATION	0
#define CAM_ENTRY_SOURCE	1
#define CAM_ENTRY_MACCTL	20

/* Tx_Ctl bit asign -------------------------------------------------------- */
A
Atsushi Nemoto 已提交
193 194 195 196 197 198 199 200 201 202 203 204
#define Tx_En		       0x00000001 /* 1:Transmit enable		     */
#define Tx_TxHalt	       0x00000002 /* 1:Transmit Halt Request	     */
#define Tx_NoPad	       0x00000004 /* 1:Suppress Padding		     */
#define Tx_NoCRC	       0x00000008 /* 1:Suppress Padding		     */
#define Tx_FBack	       0x00000010 /* 1:Fast Back-off		     */
#define Tx_EnUnder	       0x00000100 /* 1:Enable Underrun		     */
#define Tx_EnExDefer	       0x00000200 /* 1:Enable Excessive Deferral     */
#define Tx_EnLCarr	       0x00000400 /* 1:Enable Lost Carrier	     */
#define Tx_EnExColl	       0x00000800 /* 1:Enable Excessive Collision    */
#define Tx_EnLateColl	       0x00001000 /* 1:Enable Late Collision	     */
#define Tx_EnTxPar	       0x00002000 /* 1:Enable Transmit Parity	     */
#define Tx_EnComp	       0x00004000 /* 1:Enable Completion	     */
L
Linus Torvalds 已提交
205 206

/* Tx_Stat bit asign ------------------------------------------------------- */
A
Atsushi Nemoto 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220
#define Tx_TxColl_MASK	       0x0000000F /* Tx Collision Count		     */
#define Tx_ExColl	       0x00000010 /* Excessive Collision	     */
#define Tx_TXDefer	       0x00000020 /* Transmit Defered		     */
#define Tx_Paused	       0x00000040 /* Transmit Paused		     */
#define Tx_IntTx	       0x00000080 /* Interrupt on Tx		     */
#define Tx_Under	       0x00000100 /* Underrun			     */
#define Tx_Defer	       0x00000200 /* Deferral			     */
#define Tx_NCarr	       0x00000400 /* No Carrier			     */
#define Tx_10Stat	       0x00000800 /* 10Mbps Status		     */
#define Tx_LateColl	       0x00001000 /* Late Collision		     */
#define Tx_TxPar	       0x00002000 /* Tx Parity Error		     */
#define Tx_Comp		       0x00004000 /* Completion			     */
#define Tx_Halted	       0x00008000 /* Tx Halted			     */
#define Tx_SQErr	       0x00010000 /* Signal Quality Error(SQE)	     */
L
Linus Torvalds 已提交
221 222

/* Rx_Ctl bit asign -------------------------------------------------------- */
A
Atsushi Nemoto 已提交
223 224 225 226 227 228 229 230 231 232 233 234
#define Rx_EnGood	       0x00004000 /* 1:Enable Good		     */
#define Rx_EnRxPar	       0x00002000 /* 1:Enable Receive Parity	     */
#define Rx_EnLongErr	       0x00000800 /* 1:Enable Long Error	     */
#define Rx_EnOver	       0x00000400 /* 1:Enable OverFlow		     */
#define Rx_EnCRCErr	       0x00000200 /* 1:Enable CRC Error		     */
#define Rx_EnAlign	       0x00000100 /* 1:Enable Alignment		     */
#define Rx_IgnoreCRC	       0x00000040 /* 1:Ignore CRC Value		     */
#define Rx_StripCRC	       0x00000010 /* 1:Strip CRC Value		     */
#define Rx_ShortEn	       0x00000008 /* 1:Short Enable		     */
#define Rx_LongEn	       0x00000004 /* 1:Long Enable		     */
#define Rx_RxHalt	       0x00000002 /* 1:Receive Halt Request	     */
#define Rx_RxEn		       0x00000001 /* 1:Receive Intrrupt Enable	     */
L
Linus Torvalds 已提交
235 236

/* Rx_Stat bit asign ------------------------------------------------------- */
A
Atsushi Nemoto 已提交
237 238 239
#define Rx_Halted	       0x00008000 /* Rx Halted			     */
#define Rx_Good		       0x00004000 /* Rx Good			     */
#define Rx_RxPar	       0x00002000 /* Rx Parity Error		     */
240
#define Rx_TypePkt	       0x00001000 /* Rx Type Packet		     */
A
Atsushi Nemoto 已提交
241 242 243 244 245 246 247
#define Rx_LongErr	       0x00000800 /* Rx Long Error		     */
#define Rx_Over		       0x00000400 /* Rx Overflow		     */
#define Rx_CRCErr	       0x00000200 /* Rx CRC Error		     */
#define Rx_Align	       0x00000100 /* Rx Alignment Error		     */
#define Rx_10Stat	       0x00000080 /* Rx 10Mbps Status		     */
#define Rx_IntRx	       0x00000040 /* Rx Interrupt		     */
#define Rx_CtlRecd	       0x00000020 /* Rx Control Receive		     */
248
#define Rx_InLenErr	       0x00000010 /* Rx In Range Frame Length Error  */
A
Atsushi Nemoto 已提交
249

250
#define Rx_Stat_Mask	       0x0000FFF0 /* Rx All Status Mask		     */
L
Linus Torvalds 已提交
251 252

/* Int_En bit asign -------------------------------------------------------- */
A
Atsushi Nemoto 已提交
253 254 255 256 257 258 259 260 261 262 263 264 265
#define Int_NRAbtEn	       0x00000800 /* 1:Non-recoverable Abort Enable  */
#define Int_TxCtlCmpEn	       0x00000400 /* 1:Transmit Ctl Complete Enable  */
#define Int_DmParErrEn	       0x00000200 /* 1:DMA Parity Error Enable	     */
#define Int_DParDEn	       0x00000100 /* 1:Data Parity Error Enable	     */
#define Int_EarNotEn	       0x00000080 /* 1:Early Notify Enable	     */
#define Int_DParErrEn	       0x00000040 /* 1:Detected Parity Error Enable  */
#define Int_SSysErrEn	       0x00000020 /* 1:Signalled System Error Enable */
#define Int_RMasAbtEn	       0x00000010 /* 1:Received Master Abort Enable  */
#define Int_RTargAbtEn	       0x00000008 /* 1:Received Target Abort Enable  */
#define Int_STargAbtEn	       0x00000004 /* 1:Signalled Target Abort Enable */
#define Int_BLExEn	       0x00000002 /* 1:Buffer List Exhausted Enable  */
#define Int_FDAExEn	       0x00000001 /* 1:Free Descriptor Area	     */
					  /*		   Exhausted Enable  */
L
Linus Torvalds 已提交
266 267

/* Int_Src bit asign ------------------------------------------------------- */
A
Atsushi Nemoto 已提交
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
#define Int_NRabt	       0x00004000 /* 1:Non Recoverable error	     */
#define Int_DmParErrStat       0x00002000 /* 1:DMA Parity Error & Clear	     */
#define Int_BLEx	       0x00001000 /* 1:Buffer List Empty & Clear     */
#define Int_FDAEx	       0x00000800 /* 1:FDA Empty & Clear	     */
#define Int_IntNRAbt	       0x00000400 /* 1:Non Recoverable Abort	     */
#define Int_IntCmp	       0x00000200 /* 1:MAC control packet complete   */
#define Int_IntExBD	       0x00000100 /* 1:Interrupt Extra BD & Clear    */
#define Int_DmParErr	       0x00000080 /* 1:DMA Parity Error & Clear	     */
#define Int_IntEarNot	       0x00000040 /* 1:Receive Data write & Clear    */
#define Int_SWInt	       0x00000020 /* 1:Software request & Clear	     */
#define Int_IntBLEx	       0x00000010 /* 1:Buffer List Empty & Clear     */
#define Int_IntFDAEx	       0x00000008 /* 1:FDA Empty & Clear	     */
#define Int_IntPCI	       0x00000004 /* 1:PCI controller & Clear	     */
#define Int_IntMacRx	       0x00000002 /* 1:Rx controller & Clear	     */
#define Int_IntMacTx	       0x00000001 /* 1:Tx controller & Clear	     */
L
Linus Torvalds 已提交
283 284

/* MD_CA bit asign --------------------------------------------------------- */
A
Atsushi Nemoto 已提交
285 286 287
#define MD_CA_PreSup	       0x00001000 /* 1:Preamble Supress		     */
#define MD_CA_Busy	       0x00000800 /* 1:Busy (Start Operation)	     */
#define MD_CA_Wr	       0x00000400 /* 1:Write 0:Read		     */
L
Linus Torvalds 已提交
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310


/*
 * Descriptors
 */

/* Frame descripter */
struct FDesc {
	volatile __u32 FDNext;
	volatile __u32 FDSystem;
	volatile __u32 FDStat;
	volatile __u32 FDCtl;
};

/* Buffer descripter */
struct BDesc {
	volatile __u32 BuffData;
	volatile __u32 BDCtl;
};

#define FD_ALIGN	16

/* Frame Descripter bit asign ---------------------------------------------- */
A
Atsushi Nemoto 已提交
311 312 313
#define FD_FDLength_MASK       0x0000FFFF /* Length MASK		     */
#define FD_BDCnt_MASK	       0x001F0000 /* BD count MASK in FD	     */
#define FD_FrmOpt_MASK	       0x7C000000 /* Frame option MASK		     */
L
Linus Torvalds 已提交
314
#define FD_FrmOpt_BigEndian    0x40000000 /* Tx/Rx */
A
Atsushi Nemoto 已提交
315 316
#define FD_FrmOpt_IntTx	       0x20000000 /* Tx only */
#define FD_FrmOpt_NoCRC	       0x10000000 /* Tx only */
L
Linus Torvalds 已提交
317 318
#define FD_FrmOpt_NoPadding    0x08000000 /* Tx only */
#define FD_FrmOpt_Packing      0x04000000 /* Rx only */
A
Atsushi Nemoto 已提交
319 320 321
#define FD_CownsFD	       0x80000000 /* FD Controller owner bit	     */
#define FD_Next_EOL	       0x00000001 /* FD EOL indicator		     */
#define FD_BDCnt_SHIFT	       16
L
Linus Torvalds 已提交
322 323

/* Buffer Descripter bit asign --------------------------------------------- */
A
Atsushi Nemoto 已提交
324 325 326 327 328
#define BD_BuffLength_MASK     0x0000FFFF /* Recieve Data Size		     */
#define BD_RxBDID_MASK	       0x00FF0000 /* BD ID Number MASK		     */
#define BD_RxBDSeqN_MASK       0x7F000000 /* Rx BD Sequence Number	     */
#define BD_CownsBD	       0x80000000 /* BD Controller owner bit	     */
#define BD_RxBDID_SHIFT	       16
L
Linus Torvalds 已提交
329 330 331 332 333 334 335 336
#define BD_RxBDSeqN_SHIFT      24


/* Some useful constants. */
#undef NO_CHECK_CARRIER	/* Does not check No-Carrier with TP */

#ifdef NO_CHECK_CARRIER
#define TX_CTL_CMD	(Tx_EnComp | Tx_EnTxPar | Tx_EnLateColl | \
A
Atsushi Nemoto 已提交
337 338
	Tx_EnExColl | Tx_EnExDefer | Tx_EnUnder | \
	Tx_En)	/* maybe  0x7b01 */
L
Linus Torvalds 已提交
339 340
#else
#define TX_CTL_CMD	(Tx_EnComp | Tx_EnTxPar | Tx_EnLateColl | \
A
Atsushi Nemoto 已提交
341 342
	Tx_EnExColl | Tx_EnLCarr | Tx_EnExDefer | Tx_EnUnder | \
	Tx_En)	/* maybe  0x7b01 */
L
Linus Torvalds 已提交
343
#endif
A
Atsushi Nemoto 已提交
344
/* Do not use Rx_StripCRC -- it causes trouble on BLEx/FDAEx condition */
L
Linus Torvalds 已提交
345
#define RX_CTL_CMD	(Rx_EnGood | Rx_EnRxPar | Rx_EnLongErr | Rx_EnOver \
A
Atsushi Nemoto 已提交
346
	| Rx_EnCRCErr | Rx_EnAlign | Rx_RxEn) /* maybe 0x6f01 */
L
Linus Torvalds 已提交
347
#define INT_EN_CMD  (Int_NRAbtEn | \
A
Atsushi Nemoto 已提交
348
	Int_DmParErrEn | Int_DParDEn | Int_DParErrEn | \
L
Linus Torvalds 已提交
349 350 351
	Int_SSysErrEn  | Int_RMasAbtEn | Int_RTargAbtEn | \
	Int_STargAbtEn | \
	Int_BLExEn  | Int_FDAExEn) /* maybe 0xb7f*/
A
Atsushi Nemoto 已提交
352
#define DMA_CTL_CMD	DMA_BURST_SIZE
A
Atsushi Nemoto 已提交
353
#define HAVE_DMA_RXALIGN(lp)	likely((lp)->chiptype != TC35815CF)
L
Linus Torvalds 已提交
354 355 356 357

/* Tuning parameters */
#define DMA_BURST_SIZE	32
#define TX_THRESHOLD	1024
A
Atsushi Nemoto 已提交
358 359 360 361
/* used threshold with packet max byte for low pci transfer ability.*/
#define TX_THRESHOLD_MAX 1536
/* setting threshold max value when overrun error occured this count. */
#define TX_THRESHOLD_KEEP_LIMIT 10
L
Linus Torvalds 已提交
362

A
Atsushi Nemoto 已提交
363 364
/* 16 + RX_BUF_NUM * 8 + RX_FD_NUM * 16 + TX_FD_NUM * 32 <= PAGE_SIZE*FD_PAGE_NUM */
#ifdef TC35815_USE_PACKEDBUFFER
L
Linus Torvalds 已提交
365
#define FD_PAGE_NUM 2
A
Atsushi Nemoto 已提交
366
#define RX_BUF_NUM	8	/* >= 2 */
L
Linus Torvalds 已提交
367 368
#define RX_FD_NUM	250	/* >= 32 */
#define TX_FD_NUM	128
A
Atsushi Nemoto 已提交
369 370 371 372 373 374 375 376 377
#define RX_BUF_SIZE	PAGE_SIZE
#else /* TC35815_USE_PACKEDBUFFER */
#define FD_PAGE_NUM 4
#define RX_BUF_NUM	128	/* < 256 */
#define RX_FD_NUM	256	/* >= 32 */
#define TX_FD_NUM	128
#if RX_CTL_CMD & Rx_LongEn
#define RX_BUF_SIZE	PAGE_SIZE
#elif RX_CTL_CMD & Rx_StripCRC
A
Atsushi Nemoto 已提交
378 379
#define RX_BUF_SIZE	\
	L1_CACHE_ALIGN(ETH_FRAME_LEN + VLAN_HLEN + NET_IP_ALIGN)
A
Atsushi Nemoto 已提交
380
#else
A
Atsushi Nemoto 已提交
381 382
#define RX_BUF_SIZE	\
	L1_CACHE_ALIGN(ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN + NET_IP_ALIGN)
A
Atsushi Nemoto 已提交
383 384 385 386
#endif
#endif /* TC35815_USE_PACKEDBUFFER */
#define RX_FD_RESERVE	(2 / 2)	/* max 2 BD per RxFD */
#define NAPI_WEIGHT	16
L
Linus Torvalds 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400

struct TxFD {
	struct FDesc fd;
	struct BDesc bd;
	struct BDesc unused;
};

struct RxFD {
	struct FDesc fd;
	struct BDesc bd[0];	/* variable length */
};

struct FrFD {
	struct FDesc fd;
A
Atsushi Nemoto 已提交
401
	struct BDesc bd[RX_BUF_NUM];
L
Linus Torvalds 已提交
402 403 404
};


405 406
#define tc_readl(addr)	ioread32(addr)
#define tc_writel(d, addr)	iowrite32(d, addr)
L
Linus Torvalds 已提交
407

A
Atsushi Nemoto 已提交
408 409
#define TC35815_TX_TIMEOUT  msecs_to_jiffies(400)

A
Atsushi Nemoto 已提交
410
/* Information that need to be kept for each controller. */
L
Linus Torvalds 已提交
411
struct tc35815_local {
A
Atsushi Nemoto 已提交
412
	struct pci_dev *pci_dev;
L
Linus Torvalds 已提交
413

414 415 416
	struct net_device *dev;
	struct napi_struct napi;

L
Linus Torvalds 已提交
417 418 419 420 421
	/* statistics */
	struct {
		int max_tx_qlen;
		int tx_ints;
		int rx_ints;
A
Atsushi Nemoto 已提交
422
		int tx_underrun;
L
Linus Torvalds 已提交
423 424
	} lstats;

A
Atsushi Nemoto 已提交
425 426 427 428 429 430 431
	/* Tx control lock.  This protects the transmit buffer ring
	 * state along with the "tx full" state of the driver.  This
	 * means all netif_queue flow control actions are protected
	 * by this lock as well.
	 */
	spinlock_t lock;

432
	struct mii_bus *mii_bus;
A
Atsushi Nemoto 已提交
433 434 435 436 437
	struct phy_device *phy_dev;
	int duplex;
	int speed;
	int link;
	struct work_struct restart_work;
L
Linus Torvalds 已提交
438 439 440 441

	/*
	 * Transmitting: Batch Mode.
	 *	1 BD in 1 TxFD.
A
Atsushi Nemoto 已提交
442
	 * Receiving: Packing Mode. (TC35815_USE_PACKEDBUFFER)
L
Linus Torvalds 已提交
443
	 *	1 circular FD for Free Buffer List.
A
Atsushi Nemoto 已提交
444
	 *	RX_BUF_NUM BD in Free Buffer FD.
L
Linus Torvalds 已提交
445
	 *	One Free Buffer BD has PAGE_SIZE data buffer.
A
Atsushi Nemoto 已提交
446 447 448 449
	 * Or Non-Packing Mode.
	 *	1 circular FD for Free Buffer List.
	 *	RX_BUF_NUM BD in Free Buffer FD.
	 *	One Free Buffer BD has ETH_FRAME_LEN data buffer.
L
Linus Torvalds 已提交
450
	 */
A
Atsushi Nemoto 已提交
451
	void *fd_buf;	/* for TxFD, RxFD, FrFD */
A
Atsushi Nemoto 已提交
452
	dma_addr_t fd_buf_dma;
L
Linus Torvalds 已提交
453
	struct TxFD *tfd_base;
A
Atsushi Nemoto 已提交
454 455
	unsigned int tfd_start;
	unsigned int tfd_end;
L
Linus Torvalds 已提交
456 457 458 459
	struct RxFD *rfd_base;
	struct RxFD *rfd_limit;
	struct RxFD *rfd_cur;
	struct FrFD *fbl_ptr;
A
Atsushi Nemoto 已提交
460
#ifdef TC35815_USE_PACKEDBUFFER
L
Linus Torvalds 已提交
461
	unsigned char fbl_curid;
A
Atsushi Nemoto 已提交
462
	void *data_buf[RX_BUF_NUM];		/* packing */
A
Atsushi Nemoto 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475
	dma_addr_t data_buf_dma[RX_BUF_NUM];
	struct {
		struct sk_buff *skb;
		dma_addr_t skb_dma;
	} tx_skbs[TX_FD_NUM];
#else
	unsigned int fbl_count;
	struct {
		struct sk_buff *skb;
		dma_addr_t skb_dma;
	} tx_skbs[TX_FD_NUM], rx_skbs[RX_BUF_NUM];
#endif
	u32 msg_enable;
A
Atsushi Nemoto 已提交
476
	enum tc35815_chiptype chiptype;
L
Linus Torvalds 已提交
477 478
};

A
Atsushi Nemoto 已提交
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
static inline dma_addr_t fd_virt_to_bus(struct tc35815_local *lp, void *virt)
{
	return lp->fd_buf_dma + ((u8 *)virt - (u8 *)lp->fd_buf);
}
#ifdef DEBUG
static inline void *fd_bus_to_virt(struct tc35815_local *lp, dma_addr_t bus)
{
	return (void *)((u8 *)lp->fd_buf + (bus - lp->fd_buf_dma));
}
#endif
#ifdef TC35815_USE_PACKEDBUFFER
static inline void *rxbuf_bus_to_virt(struct tc35815_local *lp, dma_addr_t bus)
{
	int i;
	for (i = 0; i < RX_BUF_NUM; i++) {
		if (bus >= lp->data_buf_dma[i] &&
		    bus < lp->data_buf_dma[i] + PAGE_SIZE)
			return (void *)((u8 *)lp->data_buf[i] +
					(bus - lp->data_buf_dma[i]));
	}
	return NULL;
}

#define TC35815_DMA_SYNC_ONDEMAND
A
Atsushi Nemoto 已提交
503
static void *alloc_rxbuf_page(struct pci_dev *hwdev, dma_addr_t *dma_handle)
A
Atsushi Nemoto 已提交
504 505 506 507 508
{
#ifdef TC35815_DMA_SYNC_ONDEMAND
	void *buf;
	/* pci_map + pci_dma_sync will be more effective than
	 * pci_alloc_consistent on some archs. */
A
Atsushi Nemoto 已提交
509 510
	buf = (void *)__get_free_page(GFP_ATOMIC);
	if (!buf)
A
Atsushi Nemoto 已提交
511 512 513
		return NULL;
	*dma_handle = pci_map_single(hwdev, buf, PAGE_SIZE,
				     PCI_DMA_FROMDEVICE);
514
	if (pci_dma_mapping_error(hwdev, *dma_handle)) {
A
Atsushi Nemoto 已提交
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
		free_page((unsigned long)buf);
		return NULL;
	}
	return buf;
#else
	return pci_alloc_consistent(hwdev, PAGE_SIZE, dma_handle);
#endif
}

static void free_rxbuf_page(struct pci_dev *hwdev, void *buf, dma_addr_t dma_handle)
{
#ifdef TC35815_DMA_SYNC_ONDEMAND
	pci_unmap_single(hwdev, dma_handle, PAGE_SIZE, PCI_DMA_FROMDEVICE);
	free_page((unsigned long)buf);
#else
	pci_free_consistent(hwdev, PAGE_SIZE, buf, dma_handle);
#endif
}
#else /* TC35815_USE_PACKEDBUFFER */
static struct sk_buff *alloc_rxbuf_skb(struct net_device *dev,
				       struct pci_dev *hwdev,
				       dma_addr_t *dma_handle)
{
	struct sk_buff *skb;
	skb = dev_alloc_skb(RX_BUF_SIZE);
	if (!skb)
		return NULL;
	*dma_handle = pci_map_single(hwdev, skb->data, RX_BUF_SIZE,
				     PCI_DMA_FROMDEVICE);
544
	if (pci_dma_mapping_error(hwdev, *dma_handle)) {
A
Atsushi Nemoto 已提交
545 546 547 548 549 550 551 552 553 554 555 556 557 558
		dev_kfree_skb_any(skb);
		return NULL;
	}
	skb_reserve(skb, 2);	/* make IP header 4byte aligned */
	return skb;
}

static void free_rxbuf_skb(struct pci_dev *hwdev, struct sk_buff *skb, dma_addr_t dma_handle)
{
	pci_unmap_single(hwdev, dma_handle, RX_BUF_SIZE,
			 PCI_DMA_FROMDEVICE);
	dev_kfree_skb_any(skb);
}
#endif /* TC35815_USE_PACKEDBUFFER */
L
Linus Torvalds 已提交
559

A
Atsushi Nemoto 已提交
560
/* Index to functions, as function prototypes. */
L
Linus Torvalds 已提交
561 562 563

static int	tc35815_open(struct net_device *dev);
static int	tc35815_send_packet(struct sk_buff *skb, struct net_device *dev);
A
Atsushi Nemoto 已提交
564 565 566
static irqreturn_t	tc35815_interrupt(int irq, void *dev_id);
#ifdef TC35815_NAPI
static int	tc35815_rx(struct net_device *dev, int limit);
567
static int	tc35815_poll(struct napi_struct *napi, int budget);
A
Atsushi Nemoto 已提交
568
#else
L
Linus Torvalds 已提交
569
static void	tc35815_rx(struct net_device *dev);
A
Atsushi Nemoto 已提交
570
#endif
L
Linus Torvalds 已提交
571 572 573 574
static void	tc35815_txdone(struct net_device *dev);
static int	tc35815_close(struct net_device *dev);
static struct	net_device_stats *tc35815_get_stats(struct net_device *dev);
static void	tc35815_set_multicast_list(struct net_device *dev);
A
Atsushi Nemoto 已提交
575
static void	tc35815_tx_timeout(struct net_device *dev);
A
Atsushi Nemoto 已提交
576 577 578 579 580
static int	tc35815_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
#ifdef CONFIG_NET_POLL_CONTROLLER
static void	tc35815_poll_controller(struct net_device *dev);
#endif
static const struct ethtool_ops tc35815_ethtool_ops;
L
Linus Torvalds 已提交
581

A
Atsushi Nemoto 已提交
582
/* Example routines you must write ;->. */
A
Atsushi Nemoto 已提交
583 584
static void	tc35815_chip_reset(struct net_device *dev);
static void	tc35815_chip_init(struct net_device *dev);
L
Linus Torvalds 已提交
585

A
Atsushi Nemoto 已提交
586 587 588
#ifdef DEBUG
static void	panic_queues(struct net_device *dev);
#endif
L
Linus Torvalds 已提交
589

A
Atsushi Nemoto 已提交
590 591 592 593 594 595 596
static void tc35815_restart_work(struct work_struct *work);

static int tc_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
{
	struct net_device *dev = bus->priv;
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
597
	unsigned long timeout = jiffies + HZ;
A
Atsushi Nemoto 已提交
598 599

	tc_writel(MD_CA_Busy | (mii_id << 5) | (regnum & 0x1f), &tr->MD_CA);
600
	udelay(12); /* it takes 32 x 400ns at least */
A
Atsushi Nemoto 已提交
601 602 603 604 605 606 607 608 609 610 611 612 613
	while (tc_readl(&tr->MD_CA) & MD_CA_Busy) {
		if (time_after(jiffies, timeout))
			return -EIO;
		cpu_relax();
	}
	return tc_readl(&tr->MD_Data) & 0xffff;
}

static int tc_mdio_write(struct mii_bus *bus, int mii_id, int regnum, u16 val)
{
	struct net_device *dev = bus->priv;
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
614
	unsigned long timeout = jiffies + HZ;
A
Atsushi Nemoto 已提交
615 616 617 618

	tc_writel(val, &tr->MD_Data);
	tc_writel(MD_CA_Busy | MD_CA_Wr | (mii_id << 5) | (regnum & 0x1f),
		  &tr->MD_CA);
619
	udelay(12); /* it takes 32 x 400ns at least */
A
Atsushi Nemoto 已提交
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
	while (tc_readl(&tr->MD_CA) & MD_CA_Busy) {
		if (time_after(jiffies, timeout))
			return -EIO;
		cpu_relax();
	}
	return 0;
}

static void tc_handle_link_change(struct net_device *dev)
{
	struct tc35815_local *lp = netdev_priv(dev);
	struct phy_device *phydev = lp->phy_dev;
	unsigned long flags;
	int status_change = 0;

	spin_lock_irqsave(&lp->lock, flags);
	if (phydev->link &&
	    (lp->speed != phydev->speed || lp->duplex != phydev->duplex)) {
		struct tc35815_regs __iomem *tr =
			(struct tc35815_regs __iomem *)dev->base_addr;
		u32 reg;

		reg = tc_readl(&tr->MAC_Ctl);
		reg |= MAC_HaltReq;
		tc_writel(reg, &tr->MAC_Ctl);
		if (phydev->duplex == DUPLEX_FULL)
			reg |= MAC_FullDup;
		else
			reg &= ~MAC_FullDup;
		tc_writel(reg, &tr->MAC_Ctl);
		reg &= ~MAC_HaltReq;
		tc_writel(reg, &tr->MAC_Ctl);

		/*
		 * TX4939 PCFG.SPEEDn bit will be changed on
		 * NETDEV_CHANGE event.
		 */

#if !defined(NO_CHECK_CARRIER) && defined(WORKAROUND_LOSTCAR)
		/*
		 * WORKAROUND: enable LostCrS only if half duplex
		 * operation.
		 * (TX4939 does not have EnLCarr)
		 */
		if (phydev->duplex == DUPLEX_HALF &&
		    lp->chiptype != TC35815_TX4939)
			tc_writel(tc_readl(&tr->Tx_Ctl) | Tx_EnLCarr,
				  &tr->Tx_Ctl);
#endif

		lp->speed = phydev->speed;
		lp->duplex = phydev->duplex;
		status_change = 1;
	}

	if (phydev->link != lp->link) {
		if (phydev->link) {
#ifdef WORKAROUND_100HALF_PROMISC
			/* delayed promiscuous enabling */
			if (dev->flags & IFF_PROMISC)
				tc35815_set_multicast_list(dev);
#endif
		} else {
			lp->speed = 0;
			lp->duplex = -1;
		}
		lp->link = phydev->link;

		status_change = 1;
	}
	spin_unlock_irqrestore(&lp->lock, flags);

	if (status_change && netif_msg_link(lp)) {
		phy_print_status(phydev);
694 695 696 697 698
		pr_debug("%s: MII BMCR %04x BMSR %04x LPA %04x\n",
			 dev->name,
			 phy_read(phydev, MII_BMCR),
			 phy_read(phydev, MII_BMSR),
			 phy_read(phydev, MII_LPA));
A
Atsushi Nemoto 已提交
699 700 701 702 703 704 705 706 707 708 709 710
	}
}

static int tc_mii_probe(struct net_device *dev)
{
	struct tc35815_local *lp = netdev_priv(dev);
	struct phy_device *phydev = NULL;
	int phy_addr;
	u32 dropmask;

	/* find the first phy */
	for (phy_addr = 0; phy_addr < PHY_MAX_ADDR; phy_addr++) {
711
		if (lp->mii_bus->phy_map[phy_addr]) {
A
Atsushi Nemoto 已提交
712 713 714 715 716
			if (phydev) {
				printk(KERN_ERR "%s: multiple PHYs found\n",
				       dev->name);
				return -EINVAL;
			}
717
			phydev = lp->mii_bus->phy_map[phy_addr];
A
Atsushi Nemoto 已提交
718 719 720 721 722 723 724 725 726 727
			break;
		}
	}

	if (!phydev) {
		printk(KERN_ERR "%s: no PHY found\n", dev->name);
		return -ENODEV;
	}

	/* attach the mac to the phy */
728
	phydev = phy_connect(dev, dev_name(&phydev->dev),
A
Atsushi Nemoto 已提交
729 730 731 732 733 734 735 736 737
			     &tc_handle_link_change, 0,
			     lp->chiptype == TC35815_TX4939 ?
			     PHY_INTERFACE_MODE_RMII : PHY_INTERFACE_MODE_MII);
	if (IS_ERR(phydev)) {
		printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
		return PTR_ERR(phydev);
	}
	printk(KERN_INFO "%s: attached PHY driver [%s] "
		"(mii_bus:phy_addr=%s, id=%x)\n",
738
		dev->name, phydev->drv->name, dev_name(&phydev->dev),
A
Atsushi Nemoto 已提交
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768
		phydev->phy_id);

	/* mask with MAC supported features */
	phydev->supported &= PHY_BASIC_FEATURES;
	dropmask = 0;
	if (options.speed == 10)
		dropmask |= SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full;
	else if (options.speed == 100)
		dropmask |= SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full;
	if (options.duplex == 1)
		dropmask |= SUPPORTED_10baseT_Full | SUPPORTED_100baseT_Full;
	else if (options.duplex == 2)
		dropmask |= SUPPORTED_10baseT_Half | SUPPORTED_100baseT_Half;
	phydev->supported &= ~dropmask;
	phydev->advertising = phydev->supported;

	lp->link = 0;
	lp->speed = 0;
	lp->duplex = -1;
	lp->phy_dev = phydev;

	return 0;
}

static int tc_mii_init(struct net_device *dev)
{
	struct tc35815_local *lp = netdev_priv(dev);
	int err;
	int i;

769 770
	lp->mii_bus = mdiobus_alloc();
	if (lp->mii_bus == NULL) {
A
Atsushi Nemoto 已提交
771 772 773 774
		err = -ENOMEM;
		goto err_out;
	}

775 776 777 778 779 780 781 782 783 784 785 786 787
	lp->mii_bus->name = "tc35815_mii_bus";
	lp->mii_bus->read = tc_mdio_read;
	lp->mii_bus->write = tc_mdio_write;
	snprintf(lp->mii_bus->id, MII_BUS_ID_SIZE, "%x",
		 (lp->pci_dev->bus->number << 8) | lp->pci_dev->devfn);
	lp->mii_bus->priv = dev;
	lp->mii_bus->parent = &lp->pci_dev->dev;
	lp->mii_bus->irq = kmalloc(sizeof(int) * PHY_MAX_ADDR, GFP_KERNEL);
	if (!lp->mii_bus->irq) {
		err = -ENOMEM;
		goto err_out_free_mii_bus;
	}

A
Atsushi Nemoto 已提交
788
	for (i = 0; i < PHY_MAX_ADDR; i++)
789
		lp->mii_bus->irq[i] = PHY_POLL;
A
Atsushi Nemoto 已提交
790

791
	err = mdiobus_register(lp->mii_bus);
A
Atsushi Nemoto 已提交
792 793 794 795 796 797 798 799
	if (err)
		goto err_out_free_mdio_irq;
	err = tc_mii_probe(dev);
	if (err)
		goto err_out_unregister_bus;
	return 0;

err_out_unregister_bus:
800
	mdiobus_unregister(lp->mii_bus);
A
Atsushi Nemoto 已提交
801
err_out_free_mdio_irq:
802
	kfree(lp->mii_bus->irq);
A
Adrian Bunk 已提交
803
err_out_free_mii_bus:
804
	mdiobus_free(lp->mii_bus);
A
Atsushi Nemoto 已提交
805 806 807
err_out:
	return err;
}
L
Linus Torvalds 已提交
808

809 810 811 812 813 814 815 816 817 818
#ifdef CONFIG_CPU_TX49XX
/*
 * Find a platform_device providing a MAC address.  The platform code
 * should provide a "tc35815-mac" device with a MAC address in its
 * platform_data.
 */
static int __devinit tc35815_mac_match(struct device *dev, void *data)
{
	struct platform_device *plat_dev = to_platform_device(dev);
	struct pci_dev *pci_dev = data;
819
	unsigned int id = pci_dev->irq;
820 821 822 823 824
	return !strcmp(plat_dev->name, "tc35815-mac") && plat_dev->id == id;
}

static int __devinit tc35815_read_plat_dev_addr(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
825
	struct tc35815_local *lp = netdev_priv(dev);
826 827 828 829 830 831 832 833 834 835 836
	struct device *pd = bus_find_device(&platform_bus_type, NULL,
					    lp->pci_dev, tc35815_mac_match);
	if (pd) {
		if (pd->platform_data)
			memcpy(dev->dev_addr, pd->platform_data, ETH_ALEN);
		put_device(pd);
		return is_valid_ether_addr(dev->dev_addr) ? 0 : -ENODEV;
	}
	return -ENODEV;
}
#else
837
static int __devinit tc35815_read_plat_dev_addr(struct net_device *dev)
838 839 840 841 842
{
	return -ENODEV;
}
#endif

A
Atsushi Nemoto 已提交
843
static int __devinit tc35815_init_dev_addr(struct net_device *dev)
A
Atsushi Nemoto 已提交
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
{
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
	int i;

	while (tc_readl(&tr->PROM_Ctl) & PROM_Busy)
		;
	for (i = 0; i < 6; i += 2) {
		unsigned short data;
		tc_writel(PROM_Busy | PROM_Read | (i / 2 + 2), &tr->PROM_Ctl);
		while (tc_readl(&tr->PROM_Ctl) & PROM_Busy)
			;
		data = tc_readl(&tr->PROM_Data);
		dev->dev_addr[i] = data & 0xff;
		dev->dev_addr[i+1] = data >> 8;
	}
860 861 862
	if (!is_valid_ether_addr(dev->dev_addr))
		return tc35815_read_plat_dev_addr(dev);
	return 0;
A
Atsushi Nemoto 已提交
863
}
L
Linus Torvalds 已提交
864

865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
static const struct net_device_ops tc35815_netdev_ops = {
	.ndo_open		= tc35815_open,
	.ndo_stop		= tc35815_close,
	.ndo_start_xmit		= tc35815_send_packet,
	.ndo_get_stats		= tc35815_get_stats,
	.ndo_set_multicast_list	= tc35815_set_multicast_list,
	.ndo_tx_timeout		= tc35815_tx_timeout,
	.ndo_do_ioctl		= tc35815_ioctl,
	.ndo_validate_addr	= eth_validate_addr,
	.ndo_change_mtu		= eth_change_mtu,
	.ndo_set_mac_address	= eth_mac_addr,
#ifdef CONFIG_NET_POLL_CONTROLLER
	.ndo_poll_controller	= tc35815_poll_controller,
#endif
};

A
Atsushi Nemoto 已提交
881 882
static int __devinit tc35815_init_one(struct pci_dev *pdev,
				      const struct pci_device_id *ent)
L
Linus Torvalds 已提交
883
{
A
Atsushi Nemoto 已提交
884 885 886 887 888 889 890 891 892
	void __iomem *ioaddr = NULL;
	struct net_device *dev;
	struct tc35815_local *lp;
	int rc;

	static int printed_version;
	if (!printed_version++) {
		printk(version);
		dev_printk(KERN_DEBUG, &pdev->dev,
A
Atsushi Nemoto 已提交
893 894
			   "speed:%d duplex:%d\n",
			   options.speed, options.duplex);
A
Atsushi Nemoto 已提交
895 896 897 898 899 900
	}

	if (!pdev->irq) {
		dev_warn(&pdev->dev, "no IRQ assigned.\n");
		return -ENODEV;
	}
L
Linus Torvalds 已提交
901

A
Atsushi Nemoto 已提交
902
	/* dev zeroed in alloc_etherdev */
A
Atsushi Nemoto 已提交
903
	dev = alloc_etherdev(sizeof(*lp));
A
Atsushi Nemoto 已提交
904 905 906 907 908
	if (dev == NULL) {
		dev_err(&pdev->dev, "unable to alloc new ethernet\n");
		return -ENOMEM;
	}
	SET_NETDEV_DEV(dev, &pdev->dev);
A
Atsushi Nemoto 已提交
909
	lp = netdev_priv(dev);
910
	lp->dev = dev;
L
Linus Torvalds 已提交
911

A
Atsushi Nemoto 已提交
912
	/* enable device (incl. PCI PM wakeup), and bus-mastering */
913
	rc = pcim_enable_device(pdev);
A
Atsushi Nemoto 已提交
914 915
	if (rc)
		goto err_out;
916
	rc = pcim_iomap_regions(pdev, 1 << 1, MODNAME);
A
Atsushi Nemoto 已提交
917
	if (rc)
L
Linus Torvalds 已提交
918
		goto err_out;
919 920
	pci_set_master(pdev);
	ioaddr = pcim_iomap_table(pdev)[1];
L
Linus Torvalds 已提交
921

A
Atsushi Nemoto 已提交
922
	/* Initialize the device structure. */
923
	dev->netdev_ops = &tc35815_netdev_ops;
A
Atsushi Nemoto 已提交
924 925 926
	dev->ethtool_ops = &tc35815_ethtool_ops;
	dev->watchdog_timeo = TC35815_TX_TIMEOUT;
#ifdef TC35815_NAPI
927
	netif_napi_add(dev, &lp->napi, tc35815_poll, NAPI_WEIGHT);
A
Atsushi Nemoto 已提交
928
#endif
L
Linus Torvalds 已提交
929

A
Atsushi Nemoto 已提交
930
	dev->irq = pdev->irq;
A
Atsushi Nemoto 已提交
931
	dev->base_addr = (unsigned long)ioaddr;
L
Linus Torvalds 已提交
932

A
Atsushi Nemoto 已提交
933
	INIT_WORK(&lp->restart_work, tc35815_restart_work);
A
Atsushi Nemoto 已提交
934 935
	spin_lock_init(&lp->lock);
	lp->pci_dev = pdev;
A
Atsushi Nemoto 已提交
936
	lp->chiptype = ent->driver_data;
L
Linus Torvalds 已提交
937

A
Atsushi Nemoto 已提交
938 939
	lp->msg_enable = NETIF_MSG_TX_ERR | NETIF_MSG_HW | NETIF_MSG_DRV | NETIF_MSG_LINK;
	pci_set_drvdata(pdev, dev);
L
Linus Torvalds 已提交
940

A
Atsushi Nemoto 已提交
941
	/* Soft reset the chip. */
L
Linus Torvalds 已提交
942 943
	tc35815_chip_reset(dev);

A
Atsushi Nemoto 已提交
944
	/* Retrieve the ethernet address. */
945 946 947 948
	if (tc35815_init_dev_addr(dev)) {
		dev_warn(&pdev->dev, "not valid ether addr\n");
		random_ether_addr(dev->dev_addr);
	}
A
Atsushi Nemoto 已提交
949

A
Atsushi Nemoto 已提交
950
	rc = register_netdev(dev);
A
Atsushi Nemoto 已提交
951
	if (rc)
952
		goto err_out;
A
Atsushi Nemoto 已提交
953 954

	memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
J
Johannes Berg 已提交
955
	printk(KERN_INFO "%s: %s at 0x%lx, %pM, IRQ %d\n",
A
Atsushi Nemoto 已提交
956
		dev->name,
A
Atsushi Nemoto 已提交
957
		chip_info[ent->driver_data].name,
A
Atsushi Nemoto 已提交
958
		dev->base_addr,
J
Johannes Berg 已提交
959
		dev->dev_addr,
A
Atsushi Nemoto 已提交
960 961
		dev->irq);

A
Atsushi Nemoto 已提交
962 963 964
	rc = tc_mii_init(dev);
	if (rc)
		goto err_out_unregister;
L
Linus Torvalds 已提交
965

A
Atsushi Nemoto 已提交
966
	return 0;
L
Linus Torvalds 已提交
967

A
Atsushi Nemoto 已提交
968 969
err_out_unregister:
	unregister_netdev(dev);
A
Atsushi Nemoto 已提交
970
err_out:
A
Atsushi Nemoto 已提交
971
	free_netdev(dev);
A
Atsushi Nemoto 已提交
972 973
	return rc;
}
L
Linus Torvalds 已提交
974 975


A
Atsushi Nemoto 已提交
976
static void __devexit tc35815_remove_one(struct pci_dev *pdev)
A
Atsushi Nemoto 已提交
977
{
A
Atsushi Nemoto 已提交
978
	struct net_device *dev = pci_get_drvdata(pdev);
A
Atsushi Nemoto 已提交
979
	struct tc35815_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
980

A
Atsushi Nemoto 已提交
981
	phy_disconnect(lp->phy_dev);
982 983 984
	mdiobus_unregister(lp->mii_bus);
	kfree(lp->mii_bus->irq);
	mdiobus_free(lp->mii_bus);
A
Atsushi Nemoto 已提交
985 986 987
	unregister_netdev(dev);
	free_netdev(dev);
	pci_set_drvdata(pdev, NULL);
L
Linus Torvalds 已提交
988 989 990 991 992
}

static int
tc35815_init_queues(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
993
	struct tc35815_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
994 995 996 997
	int i;
	unsigned long fd_addr;

	if (!lp->fd_buf) {
A
Atsushi Nemoto 已提交
998 999 1000 1001 1002
		BUG_ON(sizeof(struct FDesc) +
		       sizeof(struct BDesc) * RX_BUF_NUM +
		       sizeof(struct FDesc) * RX_FD_NUM +
		       sizeof(struct TxFD) * TX_FD_NUM >
		       PAGE_SIZE * FD_PAGE_NUM);
L
Linus Torvalds 已提交
1003

A
Atsushi Nemoto 已提交
1004 1005 1006 1007
		lp->fd_buf = pci_alloc_consistent(lp->pci_dev,
						  PAGE_SIZE * FD_PAGE_NUM,
						  &lp->fd_buf_dma);
		if (!lp->fd_buf)
L
Linus Torvalds 已提交
1008
			return -ENOMEM;
A
Atsushi Nemoto 已提交
1009 1010
		for (i = 0; i < RX_BUF_NUM; i++) {
#ifdef TC35815_USE_PACKEDBUFFER
A
Atsushi Nemoto 已提交
1011 1012 1013 1014
			lp->data_buf[i] =
				alloc_rxbuf_page(lp->pci_dev,
						 &lp->data_buf_dma[i]);
			if (!lp->data_buf[i]) {
L
Linus Torvalds 已提交
1015
				while (--i >= 0) {
A
Atsushi Nemoto 已提交
1016 1017 1018 1019
					free_rxbuf_page(lp->pci_dev,
							lp->data_buf[i],
							lp->data_buf_dma[i]);
					lp->data_buf[i] = NULL;
L
Linus Torvalds 已提交
1020
				}
A
Atsushi Nemoto 已提交
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
				pci_free_consistent(lp->pci_dev,
						    PAGE_SIZE * FD_PAGE_NUM,
						    lp->fd_buf,
						    lp->fd_buf_dma);
				lp->fd_buf = NULL;
				return -ENOMEM;
			}
#else
			lp->rx_skbs[i].skb =
				alloc_rxbuf_skb(dev, lp->pci_dev,
						&lp->rx_skbs[i].skb_dma);
			if (!lp->rx_skbs[i].skb) {
				while (--i >= 0) {
					free_rxbuf_skb(lp->pci_dev,
						       lp->rx_skbs[i].skb,
						       lp->rx_skbs[i].skb_dma);
					lp->rx_skbs[i].skb = NULL;
				}
				pci_free_consistent(lp->pci_dev,
						    PAGE_SIZE * FD_PAGE_NUM,
						    lp->fd_buf,
						    lp->fd_buf_dma);
				lp->fd_buf = NULL;
L
Linus Torvalds 已提交
1044 1045 1046 1047
				return -ENOMEM;
			}
#endif
		}
A
Atsushi Nemoto 已提交
1048 1049 1050 1051 1052 1053
		printk(KERN_DEBUG "%s: FD buf %p DataBuf",
		       dev->name, lp->fd_buf);
#ifdef TC35815_USE_PACKEDBUFFER
		printk(" DataBuf");
		for (i = 0; i < RX_BUF_NUM; i++)
			printk(" %p", lp->data_buf[i]);
L
Linus Torvalds 已提交
1054
#endif
A
Atsushi Nemoto 已提交
1055
		printk("\n");
L
Linus Torvalds 已提交
1056
	} else {
A
Atsushi Nemoto 已提交
1057 1058 1059
		for (i = 0; i < FD_PAGE_NUM; i++)
			clear_page((void *)((unsigned long)lp->fd_buf +
					    i * PAGE_SIZE));
L
Linus Torvalds 已提交
1060 1061 1062 1063 1064 1065
	}
	fd_addr = (unsigned long)lp->fd_buf;

	/* Free Descriptors (for Receive) */
	lp->rfd_base = (struct RxFD *)fd_addr;
	fd_addr += sizeof(struct RxFD) * RX_FD_NUM;
A
Atsushi Nemoto 已提交
1066
	for (i = 0; i < RX_FD_NUM; i++)
L
Linus Torvalds 已提交
1067 1068
		lp->rfd_base[i].fd.FDCtl = cpu_to_le32(FD_CownsFD);
	lp->rfd_cur = lp->rfd_base;
A
Atsushi Nemoto 已提交
1069
	lp->rfd_limit = (struct RxFD *)fd_addr - (RX_FD_RESERVE + 1);
L
Linus Torvalds 已提交
1070 1071 1072 1073 1074

	/* Transmit Descriptors */
	lp->tfd_base = (struct TxFD *)fd_addr;
	fd_addr += sizeof(struct TxFD) * TX_FD_NUM;
	for (i = 0; i < TX_FD_NUM; i++) {
A
Atsushi Nemoto 已提交
1075 1076
		lp->tfd_base[i].fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, &lp->tfd_base[i+1]));
		lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
L
Linus Torvalds 已提交
1077 1078
		lp->tfd_base[i].fd.FDCtl = cpu_to_le32(0);
	}
A
Atsushi Nemoto 已提交
1079
	lp->tfd_base[TX_FD_NUM-1].fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, &lp->tfd_base[0]));
L
Linus Torvalds 已提交
1080 1081 1082 1083 1084
	lp->tfd_start = 0;
	lp->tfd_end = 0;

	/* Buffer List (for Receive) */
	lp->fbl_ptr = (struct FrFD *)fd_addr;
A
Atsushi Nemoto 已提交
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
	lp->fbl_ptr->fd.FDNext = cpu_to_le32(fd_virt_to_bus(lp, lp->fbl_ptr));
	lp->fbl_ptr->fd.FDCtl = cpu_to_le32(RX_BUF_NUM | FD_CownsFD);
#ifndef TC35815_USE_PACKEDBUFFER
	/*
	 * move all allocated skbs to head of rx_skbs[] array.
	 * fbl_count mighe not be RX_BUF_NUM if alloc_rxbuf_skb() in
	 * tc35815_rx() had failed.
	 */
	lp->fbl_count = 0;
	for (i = 0; i < RX_BUF_NUM; i++) {
		if (lp->rx_skbs[i].skb) {
			if (i != lp->fbl_count) {
				lp->rx_skbs[lp->fbl_count].skb =
					lp->rx_skbs[i].skb;
				lp->rx_skbs[lp->fbl_count].skb_dma =
					lp->rx_skbs[i].skb_dma;
			}
			lp->fbl_count++;
		}
	}
#endif
	for (i = 0; i < RX_BUF_NUM; i++) {
#ifdef TC35815_USE_PACKEDBUFFER
		lp->fbl_ptr->bd[i].BuffData = cpu_to_le32(lp->data_buf_dma[i]);
#else
		if (i >= lp->fbl_count) {
			lp->fbl_ptr->bd[i].BuffData = 0;
			lp->fbl_ptr->bd[i].BDCtl = 0;
			continue;
		}
		lp->fbl_ptr->bd[i].BuffData =
			cpu_to_le32(lp->rx_skbs[i].skb_dma);
#endif
L
Linus Torvalds 已提交
1118 1119
		/* BDID is index of FrFD.bd[] */
		lp->fbl_ptr->bd[i].BDCtl =
A
Atsushi Nemoto 已提交
1120 1121
			cpu_to_le32(BD_CownsBD | (i << BD_RxBDID_SHIFT) |
				    RX_BUF_SIZE);
L
Linus Torvalds 已提交
1122
	}
A
Atsushi Nemoto 已提交
1123
#ifdef TC35815_USE_PACKEDBUFFER
L
Linus Torvalds 已提交
1124
	lp->fbl_curid = 0;
A
Atsushi Nemoto 已提交
1125
#endif
L
Linus Torvalds 已提交
1126

A
Atsushi Nemoto 已提交
1127 1128
	printk(KERN_DEBUG "%s: TxFD %p RxFD %p FrFD %p\n",
	       dev->name, lp->tfd_base, lp->rfd_base, lp->fbl_ptr);
L
Linus Torvalds 已提交
1129 1130 1131 1132 1133 1134
	return 0;
}

static void
tc35815_clear_queues(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
1135
	struct tc35815_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
1136 1137 1138
	int i;

	for (i = 0; i < TX_FD_NUM; i++) {
A
Atsushi Nemoto 已提交
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
		u32 fdsystem = le32_to_cpu(lp->tfd_base[i].fd.FDSystem);
		struct sk_buff *skb =
			fdsystem != 0xffffffff ?
			lp->tx_skbs[fdsystem].skb : NULL;
#ifdef DEBUG
		if (lp->tx_skbs[i].skb != skb) {
			printk("%s: tx_skbs mismatch(%d).\n", dev->name, i);
			panic_queues(dev);
		}
#else
		BUG_ON(lp->tx_skbs[i].skb != skb);
#endif
		if (skb) {
			pci_unmap_single(lp->pci_dev, lp->tx_skbs[i].skb_dma, skb->len, PCI_DMA_TODEVICE);
			lp->tx_skbs[i].skb = NULL;
			lp->tx_skbs[i].skb_dma = 0;
L
Linus Torvalds 已提交
1155
			dev_kfree_skb_any(skb);
A
Atsushi Nemoto 已提交
1156 1157
		}
		lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
L
Linus Torvalds 已提交
1158 1159 1160 1161 1162 1163 1164 1165
	}

	tc35815_init_queues(dev);
}

static void
tc35815_free_queues(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
1166
	struct tc35815_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
1167 1168 1169 1170
	int i;

	if (lp->tfd_base) {
		for (i = 0; i < TX_FD_NUM; i++) {
A
Atsushi Nemoto 已提交
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
			u32 fdsystem = le32_to_cpu(lp->tfd_base[i].fd.FDSystem);
			struct sk_buff *skb =
				fdsystem != 0xffffffff ?
				lp->tx_skbs[fdsystem].skb : NULL;
#ifdef DEBUG
			if (lp->tx_skbs[i].skb != skb) {
				printk("%s: tx_skbs mismatch(%d).\n", dev->name, i);
				panic_queues(dev);
			}
#else
			BUG_ON(lp->tx_skbs[i].skb != skb);
#endif
			if (skb) {
				dev_kfree_skb(skb);
				pci_unmap_single(lp->pci_dev, lp->tx_skbs[i].skb_dma, skb->len, PCI_DMA_TODEVICE);
				lp->tx_skbs[i].skb = NULL;
				lp->tx_skbs[i].skb_dma = 0;
			}
			lp->tfd_base[i].fd.FDSystem = cpu_to_le32(0xffffffff);
L
Linus Torvalds 已提交
1190 1191 1192 1193 1194 1195 1196 1197
		}
	}

	lp->rfd_base = NULL;
	lp->rfd_limit = NULL;
	lp->rfd_cur = NULL;
	lp->fbl_ptr = NULL;

A
Atsushi Nemoto 已提交
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
	for (i = 0; i < RX_BUF_NUM; i++) {
#ifdef TC35815_USE_PACKEDBUFFER
		if (lp->data_buf[i]) {
			free_rxbuf_page(lp->pci_dev,
					lp->data_buf[i], lp->data_buf_dma[i]);
			lp->data_buf[i] = NULL;
		}
#else
		if (lp->rx_skbs[i].skb) {
			free_rxbuf_skb(lp->pci_dev, lp->rx_skbs[i].skb,
				       lp->rx_skbs[i].skb_dma);
			lp->rx_skbs[i].skb = NULL;
		}
#endif
	}
	if (lp->fd_buf) {
		pci_free_consistent(lp->pci_dev, PAGE_SIZE * FD_PAGE_NUM,
				    lp->fd_buf, lp->fd_buf_dma);
		lp->fd_buf = NULL;
L
Linus Torvalds 已提交
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
	}
}

static void
dump_txfd(struct TxFD *fd)
{
	printk("TxFD(%p): %08x %08x %08x %08x\n", fd,
	       le32_to_cpu(fd->fd.FDNext),
	       le32_to_cpu(fd->fd.FDSystem),
	       le32_to_cpu(fd->fd.FDStat),
	       le32_to_cpu(fd->fd.FDCtl));
	printk("BD: ");
	printk(" %08x %08x",
	       le32_to_cpu(fd->bd.BuffData),
	       le32_to_cpu(fd->bd.BDCtl));
	printk("\n");
}

static int
dump_rxfd(struct RxFD *fd)
{
	int i, bd_count = (le32_to_cpu(fd->fd.FDCtl) & FD_BDCnt_MASK) >> FD_BDCnt_SHIFT;
	if (bd_count > 8)
		bd_count = 8;
	printk("RxFD(%p): %08x %08x %08x %08x\n", fd,
	       le32_to_cpu(fd->fd.FDNext),
	       le32_to_cpu(fd->fd.FDSystem),
	       le32_to_cpu(fd->fd.FDStat),
	       le32_to_cpu(fd->fd.FDCtl));
	if (le32_to_cpu(fd->fd.FDCtl) & FD_CownsFD)
A
Atsushi Nemoto 已提交
1247
		return 0;
L
Linus Torvalds 已提交
1248 1249 1250 1251 1252 1253 1254 1255 1256
	printk("BD: ");
	for (i = 0; i < bd_count; i++)
		printk(" %08x %08x",
		       le32_to_cpu(fd->bd[i].BuffData),
		       le32_to_cpu(fd->bd[i].BDCtl));
	printk("\n");
	return bd_count;
}

A
Atsushi Nemoto 已提交
1257
#if defined(DEBUG) || defined(TC35815_USE_PACKEDBUFFER)
L
Linus Torvalds 已提交
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
static void
dump_frfd(struct FrFD *fd)
{
	int i;
	printk("FrFD(%p): %08x %08x %08x %08x\n", fd,
	       le32_to_cpu(fd->fd.FDNext),
	       le32_to_cpu(fd->fd.FDSystem),
	       le32_to_cpu(fd->fd.FDStat),
	       le32_to_cpu(fd->fd.FDCtl));
	printk("BD: ");
A
Atsushi Nemoto 已提交
1268
	for (i = 0; i < RX_BUF_NUM; i++)
L
Linus Torvalds 已提交
1269 1270 1271 1272 1273
		printk(" %08x %08x",
		       le32_to_cpu(fd->bd[i].BuffData),
		       le32_to_cpu(fd->bd[i].BDCtl));
	printk("\n");
}
A
Atsushi Nemoto 已提交
1274
#endif
L
Linus Torvalds 已提交
1275

A
Atsushi Nemoto 已提交
1276
#ifdef DEBUG
L
Linus Torvalds 已提交
1277 1278 1279
static void
panic_queues(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
1280
	struct tc35815_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
1281 1282
	int i;

A
Atsushi Nemoto 已提交
1283
	printk("TxFD base %p, start %u, end %u\n",
L
Linus Torvalds 已提交
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
	       lp->tfd_base, lp->tfd_start, lp->tfd_end);
	printk("RxFD base %p limit %p cur %p\n",
	       lp->rfd_base, lp->rfd_limit, lp->rfd_cur);
	printk("FrFD %p\n", lp->fbl_ptr);
	for (i = 0; i < TX_FD_NUM; i++)
		dump_txfd(&lp->tfd_base[i]);
	for (i = 0; i < RX_FD_NUM; i++) {
		int bd_count = dump_rxfd(&lp->rfd_base[i]);
		i += (bd_count + 1) / 2;	/* skip BDs */
	}
	dump_frfd(lp->fbl_ptr);
	panic("%s: Illegal queue state.", dev->name);
}
#endif

A
Atsushi Nemoto 已提交
1299
static void print_eth(const u8 *add)
L
Linus Torvalds 已提交
1300
{
A
Atsushi Nemoto 已提交
1301
	printk(KERN_DEBUG "print_eth(%p)\n", add);
J
Johannes Berg 已提交
1302 1303
	printk(KERN_DEBUG " %pM => %pM : %02x%02x\n",
		add + 6, add, add[12], add[13]);
L
Linus Torvalds 已提交
1304 1305
}

A
Atsushi Nemoto 已提交
1306 1307
static int tc35815_tx_full(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
1308
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
1309 1310 1311 1312 1313
	return ((lp->tfd_start + 1) % TX_FD_NUM == lp->tfd_end);
}

static void tc35815_restart(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
1314
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
1315

A
Atsushi Nemoto 已提交
1316
	if (lp->phy_dev) {
A
Atsushi Nemoto 已提交
1317
		int timeout;
A
Atsushi Nemoto 已提交
1318 1319

		phy_write(lp->phy_dev, MII_BMCR, BMCR_RESET);
A
Atsushi Nemoto 已提交
1320 1321
		timeout = 100;
		while (--timeout) {
A
Atsushi Nemoto 已提交
1322
			if (!(phy_read(lp->phy_dev, MII_BMCR) & BMCR_RESET))
A
Atsushi Nemoto 已提交
1323 1324 1325 1326 1327 1328 1329
				break;
			udelay(1);
		}
		if (!timeout)
			printk(KERN_ERR "%s: BMCR reset failed.\n", dev->name);
	}

A
Atsushi Nemoto 已提交
1330
	spin_lock_irq(&lp->lock);
A
Atsushi Nemoto 已提交
1331 1332 1333 1334 1335
	tc35815_chip_reset(dev);
	tc35815_clear_queues(dev);
	tc35815_chip_init(dev);
	/* Reconfigure CAM again since tc35815_chip_init() initialize it. */
	tc35815_set_multicast_list(dev);
A
Atsushi Nemoto 已提交
1336 1337 1338
	spin_unlock_irq(&lp->lock);

	netif_wake_queue(dev);
A
Atsushi Nemoto 已提交
1339 1340
}

A
Atsushi Nemoto 已提交
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
static void tc35815_restart_work(struct work_struct *work)
{
	struct tc35815_local *lp =
		container_of(work, struct tc35815_local, restart_work);
	struct net_device *dev = lp->dev;

	tc35815_restart(dev);
}

static void tc35815_schedule_restart(struct net_device *dev)
A
Atsushi Nemoto 已提交
1351
{
A
Atsushi Nemoto 已提交
1352
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
1353 1354 1355
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;

A
Atsushi Nemoto 已提交
1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
	/* disable interrupts */
	tc_writel(0, &tr->Int_En);
	tc_writel(tc_readl(&tr->DMA_Ctl) | DMA_IntMask, &tr->DMA_Ctl);
	schedule_work(&lp->restart_work);
}

static void tc35815_tx_timeout(struct net_device *dev)
{
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;

A
Atsushi Nemoto 已提交
1367 1368 1369 1370
	printk(KERN_WARNING "%s: transmit timed out, status %#x\n",
	       dev->name, tc_readl(&tr->Tx_Stat));

	/* Try to restart the adaptor. */
A
Atsushi Nemoto 已提交
1371
	tc35815_schedule_restart(dev);
A
Atsushi Nemoto 已提交
1372
	dev->stats.tx_errors++;
A
Atsushi Nemoto 已提交
1373 1374
}

L
Linus Torvalds 已提交
1375
/*
A
Atsushi Nemoto 已提交
1376
 * Open/initialize the controller. This is called (in the current kernel)
L
Linus Torvalds 已提交
1377 1378 1379 1380 1381 1382 1383 1384 1385
 * sometime after booting when the 'ifconfig' program is run.
 *
 * This routine should set everything up anew at each open, even
 * registers that "should" only need to be set once at boot, so that
 * there is non-reboot way to recover if something goes wrong.
 */
static int
tc35815_open(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
1386
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
1387

L
Linus Torvalds 已提交
1388 1389 1390 1391
	/*
	 * This is used if the interrupt line can turned off (shared).
	 * See 3c503.c for an example of selecting the IRQ at config-time.
	 */
A
Atsushi Nemoto 已提交
1392 1393
	if (request_irq(dev->irq, &tc35815_interrupt, IRQF_SHARED,
			dev->name, dev))
L
Linus Torvalds 已提交
1394 1395 1396 1397 1398 1399 1400 1401 1402
		return -EAGAIN;

	tc35815_chip_reset(dev);

	if (tc35815_init_queues(dev) != 0) {
		free_irq(dev->irq, dev);
		return -EAGAIN;
	}

1403 1404 1405 1406
#ifdef TC35815_NAPI
	napi_enable(&lp->napi);
#endif

L
Linus Torvalds 已提交
1407
	/* Reset the hardware here. Don't forget to set the station address. */
A
Atsushi Nemoto 已提交
1408
	spin_lock_irq(&lp->lock);
L
Linus Torvalds 已提交
1409
	tc35815_chip_init(dev);
A
Atsushi Nemoto 已提交
1410
	spin_unlock_irq(&lp->lock);
L
Linus Torvalds 已提交
1411

1412
	netif_carrier_off(dev);
A
Atsushi Nemoto 已提交
1413 1414 1415
	/* schedule a link state check */
	phy_start(lp->phy_dev);

A
Atsushi Nemoto 已提交
1416 1417 1418
	/* We are now ready to accept transmit requeusts from
	 * the queueing layer of the networking.
	 */
L
Linus Torvalds 已提交
1419 1420 1421 1422 1423
	netif_start_queue(dev);

	return 0;
}

A
Atsushi Nemoto 已提交
1424 1425 1426 1427 1428 1429
/* This will only be invoked if your driver is _not_ in XOFF state.
 * What this means is that you need not check it, and that this
 * invariant will hold if you make sure that the netif_*_queue()
 * calls are done at the proper times.
 */
static int tc35815_send_packet(struct sk_buff *skb, struct net_device *dev)
L
Linus Torvalds 已提交
1430
{
A
Atsushi Nemoto 已提交
1431
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
1432
	struct TxFD *txfd;
L
Linus Torvalds 已提交
1433 1434
	unsigned long flags;

A
Atsushi Nemoto 已提交
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
	/* If some error occurs while trying to transmit this
	 * packet, you should return '1' from this function.
	 * In such a case you _may not_ do anything to the
	 * SKB, it is still owned by the network queueing
	 * layer when an error is returned.  This means you
	 * may not modify any SKB fields, you may not free
	 * the SKB, etc.
	 */

	/* This is the most common case for modern hardware.
	 * The spinlock protects this code from the TX complete
	 * hardware interrupt handler.  Queue flow control is
	 * thus managed under this lock as well.
	 */
L
Linus Torvalds 已提交
1449 1450
	spin_lock_irqsave(&lp->lock, flags);

A
Atsushi Nemoto 已提交
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461
	/* failsafe... (handle txdone now if half of FDs are used) */
	if ((lp->tfd_start + TX_FD_NUM - lp->tfd_end) % TX_FD_NUM >
	    TX_FD_NUM / 2)
		tc35815_txdone(dev);

	if (netif_msg_pktdata(lp))
		print_eth(skb->data);
#ifdef DEBUG
	if (lp->tx_skbs[lp->tfd_start].skb) {
		printk("%s: tx_skbs conflict.\n", dev->name);
		panic_queues(dev);
L
Linus Torvalds 已提交
1462
	}
A
Atsushi Nemoto 已提交
1463 1464
#else
	BUG_ON(lp->tx_skbs[lp->tfd_start].skb);
L
Linus Torvalds 已提交
1465
#endif
A
Atsushi Nemoto 已提交
1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
	lp->tx_skbs[lp->tfd_start].skb = skb;
	lp->tx_skbs[lp->tfd_start].skb_dma = pci_map_single(lp->pci_dev, skb->data, skb->len, PCI_DMA_TODEVICE);

	/*add to ring */
	txfd = &lp->tfd_base[lp->tfd_start];
	txfd->bd.BuffData = cpu_to_le32(lp->tx_skbs[lp->tfd_start].skb_dma);
	txfd->bd.BDCtl = cpu_to_le32(skb->len);
	txfd->fd.FDSystem = cpu_to_le32(lp->tfd_start);
	txfd->fd.FDCtl = cpu_to_le32(FD_CownsFD | (1 << FD_BDCnt_SHIFT));

	if (lp->tfd_start == lp->tfd_end) {
		struct tc35815_regs __iomem *tr =
			(struct tc35815_regs __iomem *)dev->base_addr;
		/* Start DMA Transmitter. */
		txfd->fd.FDNext |= cpu_to_le32(FD_Next_EOL);
L
Linus Torvalds 已提交
1481
#ifdef GATHER_TXINT
A
Atsushi Nemoto 已提交
1482
		txfd->fd.FDCtl |= cpu_to_le32(FD_FrmOpt_IntTx);
L
Linus Torvalds 已提交
1483
#endif
A
Atsushi Nemoto 已提交
1484 1485 1486 1487 1488 1489 1490 1491 1492 1493
		if (netif_msg_tx_queued(lp)) {
			printk("%s: starting TxFD.\n", dev->name);
			dump_txfd(txfd);
		}
		tc_writel(fd_virt_to_bus(lp, txfd), &tr->TxFrmPtr);
	} else {
		txfd->fd.FDNext &= cpu_to_le32(~FD_Next_EOL);
		if (netif_msg_tx_queued(lp)) {
			printk("%s: queueing TxFD.\n", dev->name);
			dump_txfd(txfd);
L
Linus Torvalds 已提交
1494
		}
A
Atsushi Nemoto 已提交
1495 1496
	}
	lp->tfd_start = (lp->tfd_start + 1) % TX_FD_NUM;
L
Linus Torvalds 已提交
1497

A
Atsushi Nemoto 已提交
1498
	dev->trans_start = jiffies;
L
Linus Torvalds 已提交
1499

A
Atsushi Nemoto 已提交
1500 1501 1502 1503 1504 1505 1506 1507
	/* If we just used up the very last entry in the
	 * TX ring on this device, tell the queueing
	 * layer to send no more.
	 */
	if (tc35815_tx_full(dev)) {
		if (netif_msg_tx_queued(lp))
			printk(KERN_WARNING "%s: TxFD Exhausted.\n", dev->name);
		netif_stop_queue(dev);
L
Linus Torvalds 已提交
1508 1509
	}

A
Atsushi Nemoto 已提交
1510 1511 1512 1513 1514
	/* When the TX completion hw interrupt arrives, this
	 * is when the transmit statistics are updated.
	 */

	spin_unlock_irqrestore(&lp->lock, flags);
1515
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
1516 1517 1518 1519
}

#define FATAL_ERROR_INT \
	(Int_IntPCI | Int_DmParErr | Int_IntNRAbt)
A
Atsushi Nemoto 已提交
1520
static void tc35815_fatal_error_interrupt(struct net_device *dev, u32 status)
L
Linus Torvalds 已提交
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533
{
	static int count;
	printk(KERN_WARNING "%s: Fatal Error Intterrupt (%#x):",
	       dev->name, status);
	if (status & Int_IntPCI)
		printk(" IntPCI");
	if (status & Int_DmParErr)
		printk(" DmParErr");
	if (status & Int_IntNRAbt)
		printk(" IntNRAbt");
	printk("\n");
	if (count++ > 100)
		panic("%s: Too many fatal errors.", dev->name);
A
Atsushi Nemoto 已提交
1534
	printk(KERN_WARNING "%s: Resetting ...\n", dev->name);
L
Linus Torvalds 已提交
1535
	/* Try to restart the adaptor. */
A
Atsushi Nemoto 已提交
1536
	tc35815_schedule_restart(dev);
A
Atsushi Nemoto 已提交
1537 1538 1539 1540 1541 1542 1543 1544
}

#ifdef TC35815_NAPI
static int tc35815_do_interrupt(struct net_device *dev, u32 status, int limit)
#else
static int tc35815_do_interrupt(struct net_device *dev, u32 status)
#endif
{
A
Atsushi Nemoto 已提交
1545
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
1546 1547 1548 1549 1550 1551 1552 1553 1554
	int ret = -1;

	/* Fatal errors... */
	if (status & FATAL_ERROR_INT) {
		tc35815_fatal_error_interrupt(dev, status);
		return 0;
	}
	/* recoverable errors */
	if (status & Int_IntFDAEx) {
1555 1556 1557 1558
		if (netif_msg_rx_err(lp))
			dev_warn(&dev->dev,
				 "Free Descriptor Area Exhausted (%#x).\n",
				 status);
A
Atsushi Nemoto 已提交
1559
		dev->stats.rx_dropped++;
A
Atsushi Nemoto 已提交
1560 1561 1562
		ret = 0;
	}
	if (status & Int_IntBLEx) {
1563 1564 1565 1566
		if (netif_msg_rx_err(lp))
			dev_warn(&dev->dev,
				 "Buffer List Exhausted (%#x).\n",
				 status);
A
Atsushi Nemoto 已提交
1567
		dev->stats.rx_dropped++;
A
Atsushi Nemoto 已提交
1568 1569 1570
		ret = 0;
	}
	if (status & Int_IntExBD) {
1571 1572 1573 1574
		if (netif_msg_rx_err(lp))
			dev_warn(&dev->dev,
				 "Excessive Buffer Descriptiors (%#x).\n",
				 status);
A
Atsushi Nemoto 已提交
1575
		dev->stats.rx_length_errors++;
A
Atsushi Nemoto 已提交
1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597
		ret = 0;
	}

	/* normal notification */
	if (status & Int_IntMacRx) {
		/* Got a packet(s). */
#ifdef TC35815_NAPI
		ret = tc35815_rx(dev, limit);
#else
		tc35815_rx(dev);
		ret = 0;
#endif
		lp->lstats.rx_ints++;
	}
	if (status & Int_IntMacTx) {
		/* Transmit complete. */
		lp->lstats.tx_ints++;
		tc35815_txdone(dev);
		netif_wake_queue(dev);
		ret = 0;
	}
	return ret;
L
Linus Torvalds 已提交
1598 1599 1600 1601
}

/*
 * The typical workload of the driver:
A
Atsushi Nemoto 已提交
1602
 * Handle the network interface interrupts.
L
Linus Torvalds 已提交
1603
 */
1604
static irqreturn_t tc35815_interrupt(int irq, void *dev_id)
L
Linus Torvalds 已提交
1605 1606
{
	struct net_device *dev = dev_id;
1607
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
1608 1609 1610 1611 1612 1613 1614 1615
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
#ifdef TC35815_NAPI
	u32 dmactl = tc_readl(&tr->DMA_Ctl);

	if (!(dmactl & DMA_IntMask)) {
		/* disable interrupts */
		tc_writel(dmactl | DMA_IntMask, &tr->DMA_Ctl);
1616 1617
		if (napi_schedule_prep(&lp->napi))
			__napi_schedule(&lp->napi);
A
Atsushi Nemoto 已提交
1618 1619 1620 1621
		else {
			printk(KERN_ERR "%s: interrupt taken in poll\n",
			       dev->name);
			BUG();
L
Linus Torvalds 已提交
1622
		}
A
Atsushi Nemoto 已提交
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
		(void)tc_readl(&tr->Int_Src);	/* flush */
		return IRQ_HANDLED;
	}
	return IRQ_NONE;
#else
	int handled;
	u32 status;

	spin_lock(&lp->lock);
	status = tc_readl(&tr->Int_Src);
1633 1634 1635
	/* BLEx, FDAEx will be cleared later */
	tc_writel(status & ~(Int_BLEx | Int_FDAEx),
		  &tr->Int_Src);	/* write to clear */
A
Atsushi Nemoto 已提交
1636
	handled = tc35815_do_interrupt(dev, status);
1637 1638
	if (status & (Int_BLEx | Int_FDAEx))
		tc_writel(status & (Int_BLEx | Int_FDAEx), &tr->Int_Src);
A
Atsushi Nemoto 已提交
1639 1640 1641 1642 1643
	(void)tc_readl(&tr->Int_Src);	/* flush */
	spin_unlock(&lp->lock);
	return IRQ_RETVAL(handled >= 0);
#endif /* TC35815_NAPI */
}
L
Linus Torvalds 已提交
1644

A
Atsushi Nemoto 已提交
1645 1646 1647 1648 1649 1650
#ifdef CONFIG_NET_POLL_CONTROLLER
static void tc35815_poll_controller(struct net_device *dev)
{
	disable_irq(dev->irq);
	tc35815_interrupt(dev->irq, dev);
	enable_irq(dev->irq);
L
Linus Torvalds 已提交
1651
}
A
Atsushi Nemoto 已提交
1652
#endif
L
Linus Torvalds 已提交
1653 1654

/* We have a good packet(s), get it/them out of the buffers. */
A
Atsushi Nemoto 已提交
1655 1656 1657 1658
#ifdef TC35815_NAPI
static int
tc35815_rx(struct net_device *dev, int limit)
#else
L
Linus Torvalds 已提交
1659 1660
static void
tc35815_rx(struct net_device *dev)
A
Atsushi Nemoto 已提交
1661
#endif
L
Linus Torvalds 已提交
1662
{
A
Atsushi Nemoto 已提交
1663
	struct tc35815_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
1664 1665
	unsigned int fdctl;
	int i;
A
Atsushi Nemoto 已提交
1666 1667 1668
#ifdef TC35815_NAPI
	int received = 0;
#endif
L
Linus Torvalds 已提交
1669 1670 1671 1672 1673

	while (!((fdctl = le32_to_cpu(lp->rfd_cur->fd.FDCtl)) & FD_CownsFD)) {
		int status = le32_to_cpu(lp->rfd_cur->fd.FDStat);
		int pkt_len = fdctl & FD_FDLength_MASK;
		int bd_count = (fdctl & FD_BDCnt_MASK) >> FD_BDCnt_SHIFT;
A
Atsushi Nemoto 已提交
1674 1675 1676 1677
#ifdef DEBUG
		struct RxFD *next_rfd;
#endif
#if (RX_CTL_CMD & Rx_StripCRC) == 0
A
Atsushi Nemoto 已提交
1678
		pkt_len -= ETH_FCS_LEN;
A
Atsushi Nemoto 已提交
1679
#endif
L
Linus Torvalds 已提交
1680

A
Atsushi Nemoto 已提交
1681
		if (netif_msg_rx_status(lp))
L
Linus Torvalds 已提交
1682 1683 1684 1685
			dump_rxfd(lp->rfd_cur);
		if (status & Rx_Good) {
			struct sk_buff *skb;
			unsigned char *data;
A
Atsushi Nemoto 已提交
1686 1687 1688 1689
			int cur_bd;
#ifdef TC35815_USE_PACKEDBUFFER
			int offset;
#endif
1690

A
Atsushi Nemoto 已提交
1691 1692 1693 1694 1695 1696
#ifdef TC35815_NAPI
			if (--limit < 0)
				break;
#endif
#ifdef TC35815_USE_PACKEDBUFFER
			BUG_ON(bd_count > 2);
A
Atsushi Nemoto 已提交
1697
			skb = dev_alloc_skb(pkt_len + NET_IP_ALIGN);
L
Linus Torvalds 已提交
1698 1699 1700
			if (skb == NULL) {
				printk(KERN_NOTICE "%s: Memory squeeze, dropping packet.\n",
				       dev->name);
A
Atsushi Nemoto 已提交
1701
				dev->stats.rx_dropped++;
L
Linus Torvalds 已提交
1702 1703
				break;
			}
A
Atsushi Nemoto 已提交
1704
			skb_reserve(skb, NET_IP_ALIGN);
L
Linus Torvalds 已提交
1705 1706 1707 1708 1709 1710 1711 1712 1713

			data = skb_put(skb, pkt_len);

			/* copy from receive buffer */
			cur_bd = 0;
			offset = 0;
			while (offset < pkt_len && cur_bd < bd_count) {
				int len = le32_to_cpu(lp->rfd_cur->bd[cur_bd].BDCtl) &
					BD_BuffLength_MASK;
A
Atsushi Nemoto 已提交
1714 1715 1716 1717 1718 1719 1720 1721
				dma_addr_t dma = le32_to_cpu(lp->rfd_cur->bd[cur_bd].BuffData);
				void *rxbuf = rxbuf_bus_to_virt(lp, dma);
				if (offset + len > pkt_len)
					len = pkt_len - offset;
#ifdef TC35815_DMA_SYNC_ONDEMAND
				pci_dma_sync_single_for_cpu(lp->pci_dev,
							    dma, len,
							    PCI_DMA_FROMDEVICE);
L
Linus Torvalds 已提交
1722 1723
#endif
				memcpy(data + offset, rxbuf, len);
1724 1725 1726 1727 1728
#ifdef TC35815_DMA_SYNC_ONDEMAND
				pci_dma_sync_single_for_device(lp->pci_dev,
							       dma, len,
							       PCI_DMA_FROMDEVICE);
#endif
L
Linus Torvalds 已提交
1729 1730 1731
				offset += len;
				cur_bd++;
			}
A
Atsushi Nemoto 已提交
1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
#else /* TC35815_USE_PACKEDBUFFER */
			BUG_ON(bd_count > 1);
			cur_bd = (le32_to_cpu(lp->rfd_cur->bd[0].BDCtl)
				  & BD_RxBDID_MASK) >> BD_RxBDID_SHIFT;
#ifdef DEBUG
			if (cur_bd >= RX_BUF_NUM) {
				printk("%s: invalid BDID.\n", dev->name);
				panic_queues(dev);
			}
			BUG_ON(lp->rx_skbs[cur_bd].skb_dma !=
			       (le32_to_cpu(lp->rfd_cur->bd[0].BuffData) & ~3));
			if (!lp->rx_skbs[cur_bd].skb) {
				printk("%s: NULL skb.\n", dev->name);
				panic_queues(dev);
			}
#else
			BUG_ON(cur_bd >= RX_BUF_NUM);
L
Linus Torvalds 已提交
1749
#endif
A
Atsushi Nemoto 已提交
1750 1751 1752 1753 1754 1755
			skb = lp->rx_skbs[cur_bd].skb;
			prefetch(skb->data);
			lp->rx_skbs[cur_bd].skb = NULL;
			pci_unmap_single(lp->pci_dev,
					 lp->rx_skbs[cur_bd].skb_dma,
					 RX_BUF_SIZE, PCI_DMA_FROMDEVICE);
A
Atsushi Nemoto 已提交
1756 1757 1758
			if (!HAVE_DMA_RXALIGN(lp) && NET_IP_ALIGN)
				memmove(skb->data, skb->data - NET_IP_ALIGN,
					pkt_len);
A
Atsushi Nemoto 已提交
1759 1760 1761
			data = skb_put(skb, pkt_len);
#endif /* TC35815_USE_PACKEDBUFFER */
			if (netif_msg_pktdata(lp))
L
Linus Torvalds 已提交
1762 1763
				print_eth(data);
			skb->protocol = eth_type_trans(skb, dev);
A
Atsushi Nemoto 已提交
1764 1765 1766 1767
#ifdef TC35815_NAPI
			netif_receive_skb(skb);
			received++;
#else
L
Linus Torvalds 已提交
1768
			netif_rx(skb);
A
Atsushi Nemoto 已提交
1769
#endif
A
Atsushi Nemoto 已提交
1770 1771
			dev->stats.rx_packets++;
			dev->stats.rx_bytes += pkt_len;
L
Linus Torvalds 已提交
1772
		} else {
A
Atsushi Nemoto 已提交
1773
			dev->stats.rx_errors++;
1774 1775 1776
			if (netif_msg_rx_err(lp))
				dev_info(&dev->dev, "Rx error (status %x)\n",
					 status & Rx_Stat_Mask);
L
Linus Torvalds 已提交
1777 1778 1779 1780 1781
			/* WORKAROUND: LongErr and CRCErr means Overflow. */
			if ((status & Rx_LongErr) && (status & Rx_CRCErr)) {
				status &= ~(Rx_LongErr|Rx_CRCErr);
				status |= Rx_Over;
			}
A
Atsushi Nemoto 已提交
1782 1783 1784 1785 1786 1787 1788 1789
			if (status & Rx_LongErr)
				dev->stats.rx_length_errors++;
			if (status & Rx_Over)
				dev->stats.rx_fifo_errors++;
			if (status & Rx_CRCErr)
				dev->stats.rx_crc_errors++;
			if (status & Rx_Align)
				dev->stats.rx_frame_errors++;
L
Linus Torvalds 已提交
1790 1791 1792 1793 1794 1795 1796
		}

		if (bd_count > 0) {
			/* put Free Buffer back to controller */
			int bdctl = le32_to_cpu(lp->rfd_cur->bd[bd_count - 1].BDCtl);
			unsigned char id =
				(bdctl & BD_RxBDID_MASK) >> BD_RxBDID_SHIFT;
A
Atsushi Nemoto 已提交
1797 1798
#ifdef DEBUG
			if (id >= RX_BUF_NUM) {
L
Linus Torvalds 已提交
1799 1800 1801
				printk("%s: invalid BDID.\n", dev->name);
				panic_queues(dev);
			}
A
Atsushi Nemoto 已提交
1802 1803 1804
#else
			BUG_ON(id >= RX_BUF_NUM);
#endif
L
Linus Torvalds 已提交
1805
			/* free old buffers */
A
Atsushi Nemoto 已提交
1806 1807 1808
#ifdef TC35815_USE_PACKEDBUFFER
			while (lp->fbl_curid != id)
#else
1809
			lp->fbl_count--;
A
Atsushi Nemoto 已提交
1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821
			while (lp->fbl_count < RX_BUF_NUM)
#endif
			{
#ifdef TC35815_USE_PACKEDBUFFER
				unsigned char curid = lp->fbl_curid;
#else
				unsigned char curid =
					(id + 1 + lp->fbl_count) % RX_BUF_NUM;
#endif
				struct BDesc *bd = &lp->fbl_ptr->bd[curid];
#ifdef DEBUG
				bdctl = le32_to_cpu(bd->BDCtl);
L
Linus Torvalds 已提交
1822 1823 1824 1825 1826
				if (bdctl & BD_CownsBD) {
					printk("%s: Freeing invalid BD.\n",
					       dev->name);
					panic_queues(dev);
				}
A
Atsushi Nemoto 已提交
1827
#endif
1828
				/* pass BD to controller */
A
Atsushi Nemoto 已提交
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839
#ifndef TC35815_USE_PACKEDBUFFER
				if (!lp->rx_skbs[curid].skb) {
					lp->rx_skbs[curid].skb =
						alloc_rxbuf_skb(dev,
								lp->pci_dev,
								&lp->rx_skbs[curid].skb_dma);
					if (!lp->rx_skbs[curid].skb)
						break; /* try on next reception */
					bd->BuffData = cpu_to_le32(lp->rx_skbs[curid].skb_dma);
				}
#endif /* TC35815_USE_PACKEDBUFFER */
L
Linus Torvalds 已提交
1840
				/* Note: BDLength was modified by chip. */
A
Atsushi Nemoto 已提交
1841 1842 1843 1844 1845 1846
				bd->BDCtl = cpu_to_le32(BD_CownsBD |
							(curid << BD_RxBDID_SHIFT) |
							RX_BUF_SIZE);
#ifdef TC35815_USE_PACKEDBUFFER
				lp->fbl_curid = (curid + 1) % RX_BUF_NUM;
				if (netif_msg_rx_status(lp)) {
L
Linus Torvalds 已提交
1847 1848 1849 1850
					printk("%s: Entering new FBD %d\n",
					       dev->name, lp->fbl_curid);
					dump_frfd(lp->fbl_ptr);
				}
A
Atsushi Nemoto 已提交
1851 1852 1853
#else
				lp->fbl_count++;
#endif
L
Linus Torvalds 已提交
1854 1855 1856 1857
			}
		}

		/* put RxFD back to controller */
A
Atsushi Nemoto 已提交
1858 1859 1860
#ifdef DEBUG
		next_rfd = fd_bus_to_virt(lp,
					  le32_to_cpu(lp->rfd_cur->fd.FDNext));
L
Linus Torvalds 已提交
1861 1862 1863 1864
		if (next_rfd < lp->rfd_base || next_rfd > lp->rfd_limit) {
			printk("%s: RxFD FDNext invalid.\n", dev->name);
			panic_queues(dev);
		}
A
Atsushi Nemoto 已提交
1865
#endif
L
Linus Torvalds 已提交
1866
		for (i = 0; i < (bd_count + 1) / 2 + 1; i++) {
1867
			/* pass FD to controller */
A
Atsushi Nemoto 已提交
1868 1869 1870 1871 1872
#ifdef DEBUG
			lp->rfd_cur->fd.FDNext = cpu_to_le32(0xdeaddead);
#else
			lp->rfd_cur->fd.FDNext = cpu_to_le32(FD_Next_EOL);
#endif
L
Linus Torvalds 已提交
1873 1874 1875
			lp->rfd_cur->fd.FDCtl = cpu_to_le32(FD_CownsFD);
			lp->rfd_cur++;
		}
A
Atsushi Nemoto 已提交
1876 1877 1878 1879 1880 1881 1882
		if (lp->rfd_cur > lp->rfd_limit)
			lp->rfd_cur = lp->rfd_base;
#ifdef DEBUG
		if (lp->rfd_cur != next_rfd)
			printk("rfd_cur = %p, next_rfd %p\n",
			       lp->rfd_cur, next_rfd);
#endif
L
Linus Torvalds 已提交
1883 1884
	}

A
Atsushi Nemoto 已提交
1885 1886 1887
#ifdef TC35815_NAPI
	return received;
#endif
L
Linus Torvalds 已提交
1888 1889
}

A
Atsushi Nemoto 已提交
1890
#ifdef TC35815_NAPI
1891
static int tc35815_poll(struct napi_struct *napi, int budget)
A
Atsushi Nemoto 已提交
1892
{
1893 1894
	struct tc35815_local *lp = container_of(napi, struct tc35815_local, napi);
	struct net_device *dev = lp->dev;
A
Atsushi Nemoto 已提交
1895 1896 1897 1898 1899 1900 1901 1902
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
	int received = 0, handled;
	u32 status;

	spin_lock(&lp->lock);
	status = tc_readl(&tr->Int_Src);
	do {
1903 1904 1905
		/* BLEx, FDAEx will be cleared later */
		tc_writel(status & ~(Int_BLEx | Int_FDAEx),
			  &tr->Int_Src);	/* write to clear */
A
Atsushi Nemoto 已提交
1906

1907
		handled = tc35815_do_interrupt(dev, status, budget - received);
1908 1909 1910
		if (status & (Int_BLEx | Int_FDAEx))
			tc_writel(status & (Int_BLEx | Int_FDAEx),
				  &tr->Int_Src);
A
Atsushi Nemoto 已提交
1911 1912
		if (handled >= 0) {
			received += handled;
1913
			if (received >= budget)
A
Atsushi Nemoto 已提交
1914 1915 1916 1917 1918 1919
				break;
		}
		status = tc_readl(&tr->Int_Src);
	} while (status);
	spin_unlock(&lp->lock);

1920
	if (received < budget) {
1921
		napi_complete(napi);
1922 1923 1924 1925
		/* enable interrupts */
		tc_writel(tc_readl(&tr->DMA_Ctl) & ~DMA_IntMask, &tr->DMA_Ctl);
	}
	return received;
A
Atsushi Nemoto 已提交
1926 1927 1928
}
#endif

L
Linus Torvalds 已提交
1929 1930 1931 1932 1933 1934 1935 1936 1937
#ifdef NO_CHECK_CARRIER
#define TX_STA_ERR	(Tx_ExColl|Tx_Under|Tx_Defer|Tx_LateColl|Tx_TxPar|Tx_SQErr)
#else
#define TX_STA_ERR	(Tx_ExColl|Tx_Under|Tx_Defer|Tx_NCarr|Tx_LateColl|Tx_TxPar|Tx_SQErr)
#endif

static void
tc35815_check_tx_stat(struct net_device *dev, int status)
{
A
Atsushi Nemoto 已提交
1938
	struct tc35815_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
1939 1940 1941 1942
	const char *msg = NULL;

	/* count collisions */
	if (status & Tx_ExColl)
A
Atsushi Nemoto 已提交
1943
		dev->stats.collisions += 16;
L
Linus Torvalds 已提交
1944
	if (status & Tx_TxColl_MASK)
A
Atsushi Nemoto 已提交
1945
		dev->stats.collisions += status & Tx_TxColl_MASK;
L
Linus Torvalds 已提交
1946

A
Atsushi Nemoto 已提交
1947 1948
#ifndef NO_CHECK_CARRIER
	/* TX4939 does not have NCarr */
A
Atsushi Nemoto 已提交
1949
	if (lp->chiptype == TC35815_TX4939)
A
Atsushi Nemoto 已提交
1950 1951
		status &= ~Tx_NCarr;
#ifdef WORKAROUND_LOSTCAR
L
Linus Torvalds 已提交
1952
	/* WORKAROUND: ignore LostCrS in full duplex operation */
A
Atsushi Nemoto 已提交
1953
	if (!lp->link || lp->duplex == DUPLEX_FULL)
L
Linus Torvalds 已提交
1954
		status &= ~Tx_NCarr;
A
Atsushi Nemoto 已提交
1955 1956
#endif
#endif
L
Linus Torvalds 已提交
1957 1958 1959

	if (!(status & TX_STA_ERR)) {
		/* no error. */
A
Atsushi Nemoto 已提交
1960
		dev->stats.tx_packets++;
L
Linus Torvalds 已提交
1961 1962 1963
		return;
	}

A
Atsushi Nemoto 已提交
1964
	dev->stats.tx_errors++;
L
Linus Torvalds 已提交
1965
	if (status & Tx_ExColl) {
A
Atsushi Nemoto 已提交
1966
		dev->stats.tx_aborted_errors++;
L
Linus Torvalds 已提交
1967 1968 1969
		msg = "Excessive Collision.";
	}
	if (status & Tx_Under) {
A
Atsushi Nemoto 已提交
1970
		dev->stats.tx_fifo_errors++;
L
Linus Torvalds 已提交
1971
		msg = "Tx FIFO Underrun.";
A
Atsushi Nemoto 已提交
1972 1973 1974 1975 1976 1977 1978 1979 1980
		if (lp->lstats.tx_underrun < TX_THRESHOLD_KEEP_LIMIT) {
			lp->lstats.tx_underrun++;
			if (lp->lstats.tx_underrun >= TX_THRESHOLD_KEEP_LIMIT) {
				struct tc35815_regs __iomem *tr =
					(struct tc35815_regs __iomem *)dev->base_addr;
				tc_writel(TX_THRESHOLD_MAX, &tr->TxThrsh);
				msg = "Tx FIFO Underrun.Change Tx threshold to max.";
			}
		}
L
Linus Torvalds 已提交
1981 1982
	}
	if (status & Tx_Defer) {
A
Atsushi Nemoto 已提交
1983
		dev->stats.tx_fifo_errors++;
L
Linus Torvalds 已提交
1984 1985 1986 1987
		msg = "Excessive Deferral.";
	}
#ifndef NO_CHECK_CARRIER
	if (status & Tx_NCarr) {
A
Atsushi Nemoto 已提交
1988
		dev->stats.tx_carrier_errors++;
L
Linus Torvalds 已提交
1989 1990 1991 1992
		msg = "Lost Carrier Sense.";
	}
#endif
	if (status & Tx_LateColl) {
A
Atsushi Nemoto 已提交
1993
		dev->stats.tx_aborted_errors++;
L
Linus Torvalds 已提交
1994 1995 1996
		msg = "Late Collision.";
	}
	if (status & Tx_TxPar) {
A
Atsushi Nemoto 已提交
1997
		dev->stats.tx_fifo_errors++;
L
Linus Torvalds 已提交
1998 1999 2000
		msg = "Transmit Parity Error.";
	}
	if (status & Tx_SQErr) {
A
Atsushi Nemoto 已提交
2001
		dev->stats.tx_heartbeat_errors++;
L
Linus Torvalds 已提交
2002 2003
		msg = "Signal Quality Error.";
	}
A
Atsushi Nemoto 已提交
2004
	if (msg && netif_msg_tx_err(lp))
L
Linus Torvalds 已提交
2005 2006 2007
		printk(KERN_WARNING "%s: %s (%#x)\n", dev->name, msg, status);
}

A
Atsushi Nemoto 已提交
2008 2009 2010
/* This handles TX complete events posted by the device
 * via interrupts.
 */
L
Linus Torvalds 已提交
2011 2012 2013
static void
tc35815_txdone(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
2014
	struct tc35815_local *lp = netdev_priv(dev);
L
Linus Torvalds 已提交
2015 2016 2017 2018 2019 2020 2021 2022 2023
	struct TxFD *txfd;
	unsigned int fdctl;

	txfd = &lp->tfd_base[lp->tfd_end];
	while (lp->tfd_start != lp->tfd_end &&
	       !((fdctl = le32_to_cpu(txfd->fd.FDCtl)) & FD_CownsFD)) {
		int status = le32_to_cpu(txfd->fd.FDStat);
		struct sk_buff *skb;
		unsigned long fdnext = le32_to_cpu(txfd->fd.FDNext);
A
Atsushi Nemoto 已提交
2024
		u32 fdsystem = le32_to_cpu(txfd->fd.FDSystem);
L
Linus Torvalds 已提交
2025

A
Atsushi Nemoto 已提交
2026
		if (netif_msg_tx_done(lp)) {
L
Linus Torvalds 已提交
2027 2028 2029 2030 2031
			printk("%s: complete TxFD.\n", dev->name);
			dump_txfd(txfd);
		}
		tc35815_check_tx_stat(dev, status);

A
Atsushi Nemoto 已提交
2032 2033 2034 2035 2036 2037 2038 2039 2040 2041
		skb = fdsystem != 0xffffffff ?
			lp->tx_skbs[fdsystem].skb : NULL;
#ifdef DEBUG
		if (lp->tx_skbs[lp->tfd_end].skb != skb) {
			printk("%s: tx_skbs mismatch.\n", dev->name);
			panic_queues(dev);
		}
#else
		BUG_ON(lp->tx_skbs[lp->tfd_end].skb != skb);
#endif
L
Linus Torvalds 已提交
2042
		if (skb) {
A
Atsushi Nemoto 已提交
2043
			dev->stats.tx_bytes += skb->len;
A
Atsushi Nemoto 已提交
2044 2045 2046 2047
			pci_unmap_single(lp->pci_dev, lp->tx_skbs[lp->tfd_end].skb_dma, skb->len, PCI_DMA_TODEVICE);
			lp->tx_skbs[lp->tfd_end].skb = NULL;
			lp->tx_skbs[lp->tfd_end].skb_dma = 0;
#ifdef TC35815_NAPI
L
Linus Torvalds 已提交
2048
			dev_kfree_skb_any(skb);
A
Atsushi Nemoto 已提交
2049 2050 2051
#else
			dev_kfree_skb_irq(skb);
#endif
L
Linus Torvalds 已提交
2052
		}
A
Atsushi Nemoto 已提交
2053
		txfd->fd.FDSystem = cpu_to_le32(0xffffffff);
L
Linus Torvalds 已提交
2054 2055 2056

		lp->tfd_end = (lp->tfd_end + 1) % TX_FD_NUM;
		txfd = &lp->tfd_base[lp->tfd_end];
A
Atsushi Nemoto 已提交
2057 2058
#ifdef DEBUG
		if ((fdnext & ~FD_Next_EOL) != fd_virt_to_bus(lp, txfd)) {
L
Linus Torvalds 已提交
2059 2060 2061
			printk("%s: TxFD FDNext invalid.\n", dev->name);
			panic_queues(dev);
		}
A
Atsushi Nemoto 已提交
2062
#endif
L
Linus Torvalds 已提交
2063 2064 2065
		if (fdnext & FD_Next_EOL) {
			/* DMA Transmitter has been stopping... */
			if (lp->tfd_end != lp->tfd_start) {
A
Atsushi Nemoto 已提交
2066 2067
				struct tc35815_regs __iomem *tr =
					(struct tc35815_regs __iomem *)dev->base_addr;
L
Linus Torvalds 已提交
2068
				int head = (lp->tfd_start + TX_FD_NUM - 1) % TX_FD_NUM;
A
Atsushi Nemoto 已提交
2069
				struct TxFD *txhead = &lp->tfd_base[head];
L
Linus Torvalds 已提交
2070 2071 2072
				int qlen = (lp->tfd_start + TX_FD_NUM
					    - lp->tfd_end) % TX_FD_NUM;

A
Atsushi Nemoto 已提交
2073
#ifdef DEBUG
L
Linus Torvalds 已提交
2074 2075 2076 2077
				if (!(le32_to_cpu(txfd->fd.FDCtl) & FD_CownsFD)) {
					printk("%s: TxFD FDCtl invalid.\n", dev->name);
					panic_queues(dev);
				}
A
Atsushi Nemoto 已提交
2078
#endif
L
Linus Torvalds 已提交
2079 2080 2081 2082 2083 2084 2085 2086 2087 2088
				/* log max queue length */
				if (lp->lstats.max_tx_qlen < qlen)
					lp->lstats.max_tx_qlen = qlen;


				/* start DMA Transmitter again */
				txhead->fd.FDNext |= cpu_to_le32(FD_Next_EOL);
#ifdef GATHER_TXINT
				txhead->fd.FDCtl |= cpu_to_le32(FD_FrmOpt_IntTx);
#endif
A
Atsushi Nemoto 已提交
2089
				if (netif_msg_tx_queued(lp)) {
L
Linus Torvalds 已提交
2090 2091 2092 2093
					printk("%s: start TxFD on queue.\n",
					       dev->name);
					dump_txfd(txfd);
				}
A
Atsushi Nemoto 已提交
2094
				tc_writel(fd_virt_to_bus(lp, txfd), &tr->TxFrmPtr);
L
Linus Torvalds 已提交
2095 2096 2097 2098 2099
			}
			break;
		}
	}

A
Atsushi Nemoto 已提交
2100 2101 2102 2103
	/* If we had stopped the queue due to a "tx full"
	 * condition, and space has now been made available,
	 * wake up the queue.
	 */
A
Atsushi Nemoto 已提交
2104
	if (netif_queue_stopped(dev) && !tc35815_tx_full(dev))
A
Atsushi Nemoto 已提交
2105
		netif_wake_queue(dev);
L
Linus Torvalds 已提交
2106 2107 2108 2109 2110 2111
}

/* The inverse routine to tc35815_open(). */
static int
tc35815_close(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
2112
	struct tc35815_local *lp = netdev_priv(dev);
2113

L
Linus Torvalds 已提交
2114
	netif_stop_queue(dev);
2115 2116 2117
#ifdef TC35815_NAPI
	napi_disable(&lp->napi);
#endif
A
Atsushi Nemoto 已提交
2118 2119 2120
	if (lp->phy_dev)
		phy_stop(lp->phy_dev);
	cancel_work_sync(&lp->restart_work);
L
Linus Torvalds 已提交
2121 2122 2123 2124 2125 2126 2127 2128

	/* Flush the Tx and disable Rx here. */
	tc35815_chip_reset(dev);
	free_irq(dev->irq, dev);

	tc35815_free_queues(dev);

	return 0;
A
Atsushi Nemoto 已提交
2129

L
Linus Torvalds 已提交
2130 2131 2132 2133 2134 2135 2136 2137
}

/*
 * Get the current statistics.
 * This may be called with the card open or closed.
 */
static struct net_device_stats *tc35815_get_stats(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
2138 2139
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
A
Atsushi Nemoto 已提交
2140
	if (netif_running(dev))
L
Linus Torvalds 已提交
2141
		/* Update the statistics from the device registers. */
A
Atsushi Nemoto 已提交
2142
		dev->stats.rx_missed_errors = tc_readl(&tr->Miss_Cnt);
L
Linus Torvalds 已提交
2143

A
Atsushi Nemoto 已提交
2144
	return &dev->stats;
L
Linus Torvalds 已提交
2145 2146
}

A
Atsushi Nemoto 已提交
2147
static void tc35815_set_cam_entry(struct net_device *dev, int index, unsigned char *addr)
L
Linus Torvalds 已提交
2148
{
A
Atsushi Nemoto 已提交
2149
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2150 2151
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
L
Linus Torvalds 已提交
2152
	int cam_index = index * 6;
A
Atsushi Nemoto 已提交
2153 2154
	u32 cam_data;
	u32 saved_addr;
A
Atsushi Nemoto 已提交
2155

L
Linus Torvalds 已提交
2156 2157
	saved_addr = tc_readl(&tr->CAM_Adr);

A
Atsushi Nemoto 已提交
2158
	if (netif_msg_hw(lp))
J
Johannes Berg 已提交
2159 2160
		printk(KERN_DEBUG "%s: CAM %d: %pM\n",
			dev->name, index, addr);
L
Linus Torvalds 已提交
2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196
	if (index & 1) {
		/* read modify write */
		tc_writel(cam_index - 2, &tr->CAM_Adr);
		cam_data = tc_readl(&tr->CAM_Data) & 0xffff0000;
		cam_data |= addr[0] << 8 | addr[1];
		tc_writel(cam_data, &tr->CAM_Data);
		/* write whole word */
		tc_writel(cam_index + 2, &tr->CAM_Adr);
		cam_data = (addr[2] << 24) | (addr[3] << 16) | (addr[4] << 8) | addr[5];
		tc_writel(cam_data, &tr->CAM_Data);
	} else {
		/* write whole word */
		tc_writel(cam_index, &tr->CAM_Adr);
		cam_data = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3];
		tc_writel(cam_data, &tr->CAM_Data);
		/* read modify write */
		tc_writel(cam_index + 4, &tr->CAM_Adr);
		cam_data = tc_readl(&tr->CAM_Data) & 0x0000ffff;
		cam_data |= addr[4] << 24 | (addr[5] << 16);
		tc_writel(cam_data, &tr->CAM_Data);
	}

	tc_writel(saved_addr, &tr->CAM_Adr);
}


/*
 * Set or clear the multicast filter for this adaptor.
 * num_addrs == -1	Promiscuous mode, receive all packets
 * num_addrs == 0	Normal mode, clear multicast list
 * num_addrs > 0	Multicast mode, receive normal and MC packets,
 *			and do best-effort filtering.
 */
static void
tc35815_set_multicast_list(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
2197 2198
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
L
Linus Torvalds 已提交
2199

A
Atsushi Nemoto 已提交
2200
	if (dev->flags & IFF_PROMISC) {
A
Atsushi Nemoto 已提交
2201 2202 2203
#ifdef WORKAROUND_100HALF_PROMISC
		/* With some (all?) 100MHalf HUB, controller will hang
		 * if we enabled promiscuous mode before linkup... */
A
Atsushi Nemoto 已提交
2204
		struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2205 2206

		if (!lp->link)
A
Atsushi Nemoto 已提交
2207 2208
			return;
#endif
L
Linus Torvalds 已提交
2209 2210
		/* Enable promiscuous mode */
		tc_writel(CAM_CompEn | CAM_BroadAcc | CAM_GroupAcc | CAM_StationAcc, &tr->CAM_Ctl);
A
Atsushi Nemoto 已提交
2211 2212
	} else if ((dev->flags & IFF_ALLMULTI) ||
		  dev->mc_count > CAM_ENTRY_MAX - 3) {
L
Linus Torvalds 已提交
2213 2214 2215
		/* CAM 0, 1, 20 are reserved. */
		/* Disable promiscuous mode, use normal mode. */
		tc_writel(CAM_CompEn | CAM_BroadAcc | CAM_GroupAcc, &tr->CAM_Ctl);
A
Atsushi Nemoto 已提交
2216 2217
	} else if (dev->mc_count) {
		struct dev_mc_list *cur_addr = dev->mc_list;
L
Linus Torvalds 已提交
2218 2219 2220 2221 2222 2223 2224 2225 2226
		int i;
		int ena_bits = CAM_Ena_Bit(CAM_ENTRY_SOURCE);

		tc_writel(0, &tr->CAM_Ctl);
		/* Walk the address list, and load the filter */
		for (i = 0; i < dev->mc_count; i++, cur_addr = cur_addr->next) {
			if (!cur_addr)
				break;
			/* entry 0,1 is reserved. */
A
Atsushi Nemoto 已提交
2227
			tc35815_set_cam_entry(dev, i + 2, cur_addr->dmi_addr);
L
Linus Torvalds 已提交
2228 2229 2230 2231
			ena_bits |= CAM_Ena_Bit(i + 2);
		}
		tc_writel(ena_bits, &tr->CAM_Ena);
		tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
A
Atsushi Nemoto 已提交
2232
	} else {
L
Linus Torvalds 已提交
2233 2234 2235 2236 2237
		tc_writel(CAM_Ena_Bit(CAM_ENTRY_SOURCE), &tr->CAM_Ena);
		tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);
	}
}

A
Atsushi Nemoto 已提交
2238
static void tc35815_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
L
Linus Torvalds 已提交
2239
{
A
Atsushi Nemoto 已提交
2240
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2241 2242 2243 2244
	strcpy(info->driver, MODNAME);
	strcpy(info->version, DRV_VERSION);
	strcpy(info->bus_info, pci_name(lp->pci_dev));
}
2245

A
Atsushi Nemoto 已提交
2246 2247
static int tc35815_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
{
A
Atsushi Nemoto 已提交
2248
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2249

A
Atsushi Nemoto 已提交
2250 2251 2252
	if (!lp->phy_dev)
		return -ENODEV;
	return phy_ethtool_gset(lp->phy_dev, cmd);
A
Atsushi Nemoto 已提交
2253 2254
}

A
Atsushi Nemoto 已提交
2255
static int tc35815_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
A
Atsushi Nemoto 已提交
2256
{
A
Atsushi Nemoto 已提交
2257
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2258

A
Atsushi Nemoto 已提交
2259 2260 2261
	if (!lp->phy_dev)
		return -ENODEV;
	return phy_ethtool_sset(lp->phy_dev, cmd);
A
Atsushi Nemoto 已提交
2262 2263 2264 2265
}

static u32 tc35815_get_msglevel(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
2266
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2267 2268 2269 2270 2271
	return lp->msg_enable;
}

static void tc35815_set_msglevel(struct net_device *dev, u32 datum)
{
A
Atsushi Nemoto 已提交
2272
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2273 2274 2275
	lp->msg_enable = datum;
}

2276
static int tc35815_get_sset_count(struct net_device *dev, int sset)
A
Atsushi Nemoto 已提交
2277
{
A
Atsushi Nemoto 已提交
2278
	struct tc35815_local *lp = netdev_priv(dev);
2279 2280 2281 2282 2283 2284 2285

	switch (sset) {
	case ETH_SS_STATS:
		return sizeof(lp->lstats) / sizeof(int);
	default:
		return -EOPNOTSUPP;
	}
A
Atsushi Nemoto 已提交
2286
}
L
Linus Torvalds 已提交
2287

A
Atsushi Nemoto 已提交
2288 2289
static void tc35815_get_ethtool_stats(struct net_device *dev, struct ethtool_stats *stats, u64 *data)
{
A
Atsushi Nemoto 已提交
2290
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314
	data[0] = lp->lstats.max_tx_qlen;
	data[1] = lp->lstats.tx_ints;
	data[2] = lp->lstats.rx_ints;
	data[3] = lp->lstats.tx_underrun;
}

static struct {
	const char str[ETH_GSTRING_LEN];
} ethtool_stats_keys[] = {
	{ "max_tx_qlen" },
	{ "tx_ints" },
	{ "rx_ints" },
	{ "tx_underrun" },
};

static void tc35815_get_strings(struct net_device *dev, u32 stringset, u8 *data)
{
	memcpy(data, ethtool_stats_keys, sizeof(ethtool_stats_keys));
}

static const struct ethtool_ops tc35815_ethtool_ops = {
	.get_drvinfo		= tc35815_get_drvinfo,
	.get_settings		= tc35815_get_settings,
	.set_settings		= tc35815_set_settings,
A
Atsushi Nemoto 已提交
2315
	.get_link		= ethtool_op_get_link,
A
Atsushi Nemoto 已提交
2316 2317 2318
	.get_msglevel		= tc35815_get_msglevel,
	.set_msglevel		= tc35815_set_msglevel,
	.get_strings		= tc35815_get_strings,
2319
	.get_sset_count		= tc35815_get_sset_count,
A
Atsushi Nemoto 已提交
2320 2321 2322 2323 2324
	.get_ethtool_stats	= tc35815_get_ethtool_stats,
};

static int tc35815_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
{
A
Atsushi Nemoto 已提交
2325
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2326 2327 2328

	if (!netif_running(dev))
		return -EINVAL;
A
Atsushi Nemoto 已提交
2329 2330 2331
	if (!lp->phy_dev)
		return -ENODEV;
	return phy_mii_ioctl(lp->phy_dev, if_mii(rq), cmd);
A
Atsushi Nemoto 已提交
2332 2333 2334 2335 2336 2337 2338
}

static void tc35815_chip_reset(struct net_device *dev)
{
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
	int i;
L
Linus Torvalds 已提交
2339 2340
	/* reset the controller */
	tc_writel(MAC_Reset, &tr->MAC_Ctl);
A
Atsushi Nemoto 已提交
2341 2342 2343 2344 2345 2346 2347 2348 2349
	udelay(4); /* 3200ns */
	i = 0;
	while (tc_readl(&tr->MAC_Ctl) & MAC_Reset) {
		if (i++ > 100) {
			printk(KERN_ERR "%s: MAC reset failed.\n", dev->name);
			break;
		}
		mdelay(1);
	}
L
Linus Torvalds 已提交
2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366
	tc_writel(0, &tr->MAC_Ctl);

	/* initialize registers to default value */
	tc_writel(0, &tr->DMA_Ctl);
	tc_writel(0, &tr->TxThrsh);
	tc_writel(0, &tr->TxPollCtr);
	tc_writel(0, &tr->RxFragSize);
	tc_writel(0, &tr->Int_En);
	tc_writel(0, &tr->FDA_Bas);
	tc_writel(0, &tr->FDA_Lim);
	tc_writel(0xffffffff, &tr->Int_Src);	/* Write 1 to clear */
	tc_writel(0, &tr->CAM_Ctl);
	tc_writel(0, &tr->Tx_Ctl);
	tc_writel(0, &tr->Rx_Ctl);
	tc_writel(0, &tr->CAM_Ena);
	(void)tc_readl(&tr->Miss_Cnt);	/* Read to clear */

A
Atsushi Nemoto 已提交
2367 2368 2369 2370 2371 2372 2373
	/* initialize internal SRAM */
	tc_writel(DMA_TestMode, &tr->DMA_Ctl);
	for (i = 0; i < 0x1000; i += 4) {
		tc_writel(i, &tr->CAM_Adr);
		tc_writel(0, &tr->CAM_Data);
	}
	tc_writel(0, &tr->DMA_Ctl);
L
Linus Torvalds 已提交
2374 2375 2376 2377
}

static void tc35815_chip_init(struct net_device *dev)
{
A
Atsushi Nemoto 已提交
2378
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2379 2380
	struct tc35815_regs __iomem *tr =
		(struct tc35815_regs __iomem *)dev->base_addr;
L
Linus Torvalds 已提交
2381 2382 2383
	unsigned long txctl = TX_CTL_CMD;

	/* load station address to CAM */
A
Atsushi Nemoto 已提交
2384
	tc35815_set_cam_entry(dev, CAM_ENTRY_SOURCE, dev->dev_addr);
L
Linus Torvalds 已提交
2385 2386 2387 2388 2389

	/* Enable CAM (broadcast and unicast) */
	tc_writel(CAM_Ena_Bit(CAM_ENTRY_SOURCE), &tr->CAM_Ena);
	tc_writel(CAM_CompEn | CAM_BroadAcc, &tr->CAM_Ctl);

A
Atsushi Nemoto 已提交
2390 2391 2392 2393 2394 2395
	/* Use DMA_RxAlign_2 to make IP header 4-byte aligned. */
	if (HAVE_DMA_RXALIGN(lp))
		tc_writel(DMA_BURST_SIZE | DMA_RxAlign_2, &tr->DMA_Ctl);
	else
		tc_writel(DMA_BURST_SIZE, &tr->DMA_Ctl);
#ifdef TC35815_USE_PACKEDBUFFER
L
Linus Torvalds 已提交
2396
	tc_writel(RxFrag_EnPack | ETH_ZLEN, &tr->RxFragSize);	/* Packing */
A
Atsushi Nemoto 已提交
2397 2398 2399
#else
	tc_writel(ETH_ZLEN, &tr->RxFragSize);
#endif
L
Linus Torvalds 已提交
2400 2401 2402 2403 2404
	tc_writel(0, &tr->TxPollCtr);	/* Batch mode */
	tc_writel(TX_THRESHOLD, &tr->TxThrsh);
	tc_writel(INT_EN_CMD, &tr->Int_En);

	/* set queues */
A
Atsushi Nemoto 已提交
2405
	tc_writel(fd_virt_to_bus(lp, lp->rfd_base), &tr->FDA_Bas);
L
Linus Torvalds 已提交
2406 2407 2408 2409
	tc_writel((unsigned long)lp->rfd_limit - (unsigned long)lp->rfd_base,
		  &tr->FDA_Lim);
	/*
	 * Activation method:
A
Atsushi Nemoto 已提交
2410
	 * First, enable the MAC Transmitter and the DMA Receive circuits.
L
Linus Torvalds 已提交
2411 2412
	 * Then enable the DMA Transmitter and the MAC Receive circuits.
	 */
A
Atsushi Nemoto 已提交
2413
	tc_writel(fd_virt_to_bus(lp, lp->fbl_ptr), &tr->BLFrmPtr);	/* start DMA receiver */
L
Linus Torvalds 已提交
2414
	tc_writel(RX_CTL_CMD, &tr->Rx_Ctl);	/* start MAC receiver */
A
Atsushi Nemoto 已提交
2415

L
Linus Torvalds 已提交
2416
	/* start MAC transmitter */
A
Atsushi Nemoto 已提交
2417 2418
#ifndef NO_CHECK_CARRIER
	/* TX4939 does not have EnLCarr */
A
Atsushi Nemoto 已提交
2419
	if (lp->chiptype == TC35815_TX4939)
A
Atsushi Nemoto 已提交
2420 2421
		txctl &= ~Tx_EnLCarr;
#ifdef WORKAROUND_LOSTCAR
L
Linus Torvalds 已提交
2422
	/* WORKAROUND: ignore LostCrS in full duplex operation */
A
Atsushi Nemoto 已提交
2423
	if (!lp->phy_dev || !lp->link || lp->duplex == DUPLEX_FULL)
A
Atsushi Nemoto 已提交
2424 2425 2426
		txctl &= ~Tx_EnLCarr;
#endif
#endif /* !NO_CHECK_CARRIER */
L
Linus Torvalds 已提交
2427 2428 2429 2430
#ifdef GATHER_TXINT
	txctl &= ~Tx_EnComp;	/* disable global tx completion int. */
#endif
	tc_writel(txctl, &tr->Tx_Ctl);
A
Atsushi Nemoto 已提交
2431 2432 2433 2434 2435 2436
}

#ifdef CONFIG_PM
static int tc35815_suspend(struct pci_dev *pdev, pm_message_t state)
{
	struct net_device *dev = pci_get_drvdata(pdev);
A
Atsushi Nemoto 已提交
2437
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2438 2439 2440 2441 2442 2443
	unsigned long flags;

	pci_save_state(pdev);
	if (!netif_running(dev))
		return 0;
	netif_device_detach(dev);
A
Atsushi Nemoto 已提交
2444 2445
	if (lp->phy_dev)
		phy_stop(lp->phy_dev);
A
Atsushi Nemoto 已提交
2446 2447
	spin_lock_irqsave(&lp->lock, flags);
	tc35815_chip_reset(dev);
L
Linus Torvalds 已提交
2448
	spin_unlock_irqrestore(&lp->lock, flags);
A
Atsushi Nemoto 已提交
2449 2450
	pci_set_power_state(pdev, PCI_D3hot);
	return 0;
L
Linus Torvalds 已提交
2451 2452
}

A
Atsushi Nemoto 已提交
2453 2454 2455
static int tc35815_resume(struct pci_dev *pdev)
{
	struct net_device *dev = pci_get_drvdata(pdev);
A
Atsushi Nemoto 已提交
2456
	struct tc35815_local *lp = netdev_priv(dev);
A
Atsushi Nemoto 已提交
2457 2458 2459 2460 2461 2462

	pci_restore_state(pdev);
	if (!netif_running(dev))
		return 0;
	pci_set_power_state(pdev, PCI_D0);
	tc35815_restart(dev);
2463
	netif_carrier_off(dev);
A
Atsushi Nemoto 已提交
2464 2465
	if (lp->phy_dev)
		phy_start(lp->phy_dev);
A
Atsushi Nemoto 已提交
2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
	netif_device_attach(dev);
	return 0;
}
#endif /* CONFIG_PM */

static struct pci_driver tc35815_pci_driver = {
	.name		= MODNAME,
	.id_table	= tc35815_pci_tbl,
	.probe		= tc35815_init_one,
	.remove		= __devexit_p(tc35815_remove_one),
#ifdef CONFIG_PM
	.suspend	= tc35815_suspend,
	.resume		= tc35815_resume,
#endif
L
Linus Torvalds 已提交
2480 2481
};

A
Atsushi Nemoto 已提交
2482 2483 2484 2485 2486
module_param_named(speed, options.speed, int, 0);
MODULE_PARM_DESC(speed, "0:auto, 10:10Mbps, 100:100Mbps");
module_param_named(duplex, options.duplex, int, 0);
MODULE_PARM_DESC(duplex, "0:auto, 1:half, 2:full");

L
Linus Torvalds 已提交
2487 2488
static int __init tc35815_init_module(void)
{
A
Atsushi Nemoto 已提交
2489
	return pci_register_driver(&tc35815_pci_driver);
L
Linus Torvalds 已提交
2490 2491 2492 2493
}

static void __exit tc35815_cleanup_module(void)
{
A
Atsushi Nemoto 已提交
2494
	pci_unregister_driver(&tc35815_pci_driver);
L
Linus Torvalds 已提交
2495
}
2496

L
Linus Torvalds 已提交
2497 2498
module_init(tc35815_init_module);
module_exit(tc35815_cleanup_module);
A
Atsushi Nemoto 已提交
2499 2500 2501

MODULE_DESCRIPTION("TOSHIBA TC35815 PCI 10M/100M Ethernet driver");
MODULE_LICENSE("GPL");