aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/tc35815.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/tc35815.c')
-rw-r--r--drivers/net/tc35815.c41
1 files changed, 21 insertions, 20 deletions
diff --git a/drivers/net/tc35815.c b/drivers/net/tc35815.c
index 99e423a5b9f1..4a55a162dfe6 100644
--- a/drivers/net/tc35815.c
+++ b/drivers/net/tc35815.c
@@ -47,6 +47,7 @@ static const char *version = "tc35815.c:v" DRV_VERSION "\n";
47#include <linux/phy.h> 47#include <linux/phy.h>
48#include <linux/workqueue.h> 48#include <linux/workqueue.h>
49#include <linux/platform_device.h> 49#include <linux/platform_device.h>
50#include <linux/prefetch.h>
50#include <asm/io.h> 51#include <asm/io.h>
51#include <asm/byteorder.h> 52#include <asm/byteorder.h>
52 53
@@ -119,13 +120,13 @@ struct tc35815_regs {
119/* 120/*
120 * Bit assignments 121 * Bit assignments
121 */ 122 */
122/* DMA_Ctl bit asign ------------------------------------------------------- */ 123/* DMA_Ctl bit assign ------------------------------------------------------- */
123#define DMA_RxAlign 0x00c00000 /* 1:Reception Alignment */ 124#define DMA_RxAlign 0x00c00000 /* 1:Reception Alignment */
124#define DMA_RxAlign_1 0x00400000 125#define DMA_RxAlign_1 0x00400000
125#define DMA_RxAlign_2 0x00800000 126#define DMA_RxAlign_2 0x00800000
126#define DMA_RxAlign_3 0x00c00000 127#define DMA_RxAlign_3 0x00c00000
127#define DMA_M66EnStat 0x00080000 /* 1:66MHz Enable State */ 128#define DMA_M66EnStat 0x00080000 /* 1:66MHz Enable State */
128#define DMA_IntMask 0x00040000 /* 1:Interupt mask */ 129#define DMA_IntMask 0x00040000 /* 1:Interrupt mask */
129#define DMA_SWIntReq 0x00020000 /* 1:Software Interrupt request */ 130#define DMA_SWIntReq 0x00020000 /* 1:Software Interrupt request */
130#define DMA_TxWakeUp 0x00010000 /* 1:Transmit Wake Up */ 131#define DMA_TxWakeUp 0x00010000 /* 1:Transmit Wake Up */
131#define DMA_RxBigE 0x00008000 /* 1:Receive Big Endian */ 132#define DMA_RxBigE 0x00008000 /* 1:Receive Big Endian */
@@ -134,11 +135,11 @@ struct tc35815_regs {
134#define DMA_PowrMgmnt 0x00001000 /* 1:Power Management */ 135#define DMA_PowrMgmnt 0x00001000 /* 1:Power Management */
135#define DMA_DmBurst_Mask 0x000001fc /* DMA Burst size */ 136#define DMA_DmBurst_Mask 0x000001fc /* DMA Burst size */
136 137
137/* RxFragSize bit asign ---------------------------------------------------- */ 138/* RxFragSize bit assign ---------------------------------------------------- */
138#define RxFrag_EnPack 0x00008000 /* 1:Enable Packing */ 139#define RxFrag_EnPack 0x00008000 /* 1:Enable Packing */
139#define RxFrag_MinFragMask 0x00000ffc /* Minimum Fragment */ 140#define RxFrag_MinFragMask 0x00000ffc /* Minimum Fragment */
140 141
141/* MAC_Ctl bit asign ------------------------------------------------------- */ 142/* MAC_Ctl bit assign ------------------------------------------------------- */
142#define MAC_Link10 0x00008000 /* 1:Link Status 10Mbits */ 143#define MAC_Link10 0x00008000 /* 1:Link Status 10Mbits */
143#define MAC_EnMissRoll 0x00002000 /* 1:Enable Missed Roll */ 144#define MAC_EnMissRoll 0x00002000 /* 1:Enable Missed Roll */
144#define MAC_MissRoll 0x00000400 /* 1:Missed Roll */ 145#define MAC_MissRoll 0x00000400 /* 1:Missed Roll */
@@ -152,7 +153,7 @@ struct tc35815_regs {
152#define MAC_HaltImm 0x00000002 /* 1:Halt Immediate */ 153#define MAC_HaltImm 0x00000002 /* 1:Halt Immediate */
153#define MAC_HaltReq 0x00000001 /* 1:Halt request */ 154#define MAC_HaltReq 0x00000001 /* 1:Halt request */
154 155
155/* PROM_Ctl bit asign ------------------------------------------------------ */ 156/* PROM_Ctl bit assign ------------------------------------------------------ */
156#define PROM_Busy 0x00008000 /* 1:Busy (Start Operation) */ 157#define PROM_Busy 0x00008000 /* 1:Busy (Start Operation) */
157#define PROM_Read 0x00004000 /*10:Read operation */ 158#define PROM_Read 0x00004000 /*10:Read operation */
158#define PROM_Write 0x00002000 /*01:Write operation */ 159#define PROM_Write 0x00002000 /*01:Write operation */
@@ -162,7 +163,7 @@ struct tc35815_regs {
162#define PROM_Addr_Ena 0x00000030 /*11xxxx:PROM Write enable */ 163#define PROM_Addr_Ena 0x00000030 /*11xxxx:PROM Write enable */
163 /*00xxxx: disable */ 164 /*00xxxx: disable */
164 165
165/* CAM_Ctl bit asign ------------------------------------------------------- */ 166/* CAM_Ctl bit assign ------------------------------------------------------- */
166#define CAM_CompEn 0x00000010 /* 1:CAM Compare Enable */ 167#define CAM_CompEn 0x00000010 /* 1:CAM Compare Enable */
167#define CAM_NegCAM 0x00000008 /* 1:Reject packets CAM recognizes,*/ 168#define CAM_NegCAM 0x00000008 /* 1:Reject packets CAM recognizes,*/
168 /* accept other */ 169 /* accept other */
@@ -170,7 +171,7 @@ struct tc35815_regs {
170#define CAM_GroupAcc 0x00000002 /* 1:Multicast assept */ 171#define CAM_GroupAcc 0x00000002 /* 1:Multicast assept */
171#define CAM_StationAcc 0x00000001 /* 1:unicast accept */ 172#define CAM_StationAcc 0x00000001 /* 1:unicast accept */
172 173
173/* CAM_Ena bit asign ------------------------------------------------------- */ 174/* CAM_Ena bit assign ------------------------------------------------------- */
174#define CAM_ENTRY_MAX 21 /* CAM Data entry max count */ 175#define CAM_ENTRY_MAX 21 /* CAM Data entry max count */
175#define CAM_Ena_Mask ((1<<CAM_ENTRY_MAX)-1) /* CAM Enable bits (Max 21bits) */ 176#define CAM_Ena_Mask ((1<<CAM_ENTRY_MAX)-1) /* CAM Enable bits (Max 21bits) */
176#define CAM_Ena_Bit(index) (1 << (index)) 177#define CAM_Ena_Bit(index) (1 << (index))
@@ -178,7 +179,7 @@ struct tc35815_regs {
178#define CAM_ENTRY_SOURCE 1 179#define CAM_ENTRY_SOURCE 1
179#define CAM_ENTRY_MACCTL 20 180#define CAM_ENTRY_MACCTL 20
180 181
181/* Tx_Ctl bit asign -------------------------------------------------------- */ 182/* Tx_Ctl bit assign -------------------------------------------------------- */
182#define Tx_En 0x00000001 /* 1:Transmit enable */ 183#define Tx_En 0x00000001 /* 1:Transmit enable */
183#define Tx_TxHalt 0x00000002 /* 1:Transmit Halt Request */ 184#define Tx_TxHalt 0x00000002 /* 1:Transmit Halt Request */
184#define Tx_NoPad 0x00000004 /* 1:Suppress Padding */ 185#define Tx_NoPad 0x00000004 /* 1:Suppress Padding */
@@ -192,7 +193,7 @@ struct tc35815_regs {
192#define Tx_EnTxPar 0x00002000 /* 1:Enable Transmit Parity */ 193#define Tx_EnTxPar 0x00002000 /* 1:Enable Transmit Parity */
193#define Tx_EnComp 0x00004000 /* 1:Enable Completion */ 194#define Tx_EnComp 0x00004000 /* 1:Enable Completion */
194 195
195/* Tx_Stat bit asign ------------------------------------------------------- */ 196/* Tx_Stat bit assign ------------------------------------------------------- */
196#define Tx_TxColl_MASK 0x0000000F /* Tx Collision Count */ 197#define Tx_TxColl_MASK 0x0000000F /* Tx Collision Count */
197#define Tx_ExColl 0x00000010 /* Excessive Collision */ 198#define Tx_ExColl 0x00000010 /* Excessive Collision */
198#define Tx_TXDefer 0x00000020 /* Transmit Defered */ 199#define Tx_TXDefer 0x00000020 /* Transmit Defered */
@@ -208,7 +209,7 @@ struct tc35815_regs {
208#define Tx_Halted 0x00008000 /* Tx Halted */ 209#define Tx_Halted 0x00008000 /* Tx Halted */
209#define Tx_SQErr 0x00010000 /* Signal Quality Error(SQE) */ 210#define Tx_SQErr 0x00010000 /* Signal Quality Error(SQE) */
210 211
211/* Rx_Ctl bit asign -------------------------------------------------------- */ 212/* Rx_Ctl bit assign -------------------------------------------------------- */
212#define Rx_EnGood 0x00004000 /* 1:Enable Good */ 213#define Rx_EnGood 0x00004000 /* 1:Enable Good */
213#define Rx_EnRxPar 0x00002000 /* 1:Enable Receive Parity */ 214#define Rx_EnRxPar 0x00002000 /* 1:Enable Receive Parity */
214#define Rx_EnLongErr 0x00000800 /* 1:Enable Long Error */ 215#define Rx_EnLongErr 0x00000800 /* 1:Enable Long Error */
@@ -222,7 +223,7 @@ struct tc35815_regs {
222#define Rx_RxHalt 0x00000002 /* 1:Receive Halt Request */ 223#define Rx_RxHalt 0x00000002 /* 1:Receive Halt Request */
223#define Rx_RxEn 0x00000001 /* 1:Receive Intrrupt Enable */ 224#define Rx_RxEn 0x00000001 /* 1:Receive Intrrupt Enable */
224 225
225/* Rx_Stat bit asign ------------------------------------------------------- */ 226/* Rx_Stat bit assign ------------------------------------------------------- */
226#define Rx_Halted 0x00008000 /* Rx Halted */ 227#define Rx_Halted 0x00008000 /* Rx Halted */
227#define Rx_Good 0x00004000 /* Rx Good */ 228#define Rx_Good 0x00004000 /* Rx Good */
228#define Rx_RxPar 0x00002000 /* Rx Parity Error */ 229#define Rx_RxPar 0x00002000 /* Rx Parity Error */
@@ -238,7 +239,7 @@ struct tc35815_regs {
238 239
239#define Rx_Stat_Mask 0x0000FFF0 /* Rx All Status Mask */ 240#define Rx_Stat_Mask 0x0000FFF0 /* Rx All Status Mask */
240 241
241/* Int_En bit asign -------------------------------------------------------- */ 242/* Int_En bit assign -------------------------------------------------------- */
242#define Int_NRAbtEn 0x00000800 /* 1:Non-recoverable Abort Enable */ 243#define Int_NRAbtEn 0x00000800 /* 1:Non-recoverable Abort Enable */
243#define Int_TxCtlCmpEn 0x00000400 /* 1:Transmit Ctl Complete Enable */ 244#define Int_TxCtlCmpEn 0x00000400 /* 1:Transmit Ctl Complete Enable */
244#define Int_DmParErrEn 0x00000200 /* 1:DMA Parity Error Enable */ 245#define Int_DmParErrEn 0x00000200 /* 1:DMA Parity Error Enable */
@@ -253,7 +254,7 @@ struct tc35815_regs {
253#define Int_FDAExEn 0x00000001 /* 1:Free Descriptor Area */ 254#define Int_FDAExEn 0x00000001 /* 1:Free Descriptor Area */
254 /* Exhausted Enable */ 255 /* Exhausted Enable */
255 256
256/* Int_Src bit asign ------------------------------------------------------- */ 257/* Int_Src bit assign ------------------------------------------------------- */
257#define Int_NRabt 0x00004000 /* 1:Non Recoverable error */ 258#define Int_NRabt 0x00004000 /* 1:Non Recoverable error */
258#define Int_DmParErrStat 0x00002000 /* 1:DMA Parity Error & Clear */ 259#define Int_DmParErrStat 0x00002000 /* 1:DMA Parity Error & Clear */
259#define Int_BLEx 0x00001000 /* 1:Buffer List Empty & Clear */ 260#define Int_BLEx 0x00001000 /* 1:Buffer List Empty & Clear */
@@ -270,8 +271,8 @@ struct tc35815_regs {
270#define Int_IntMacRx 0x00000002 /* 1:Rx controller & Clear */ 271#define Int_IntMacRx 0x00000002 /* 1:Rx controller & Clear */
271#define Int_IntMacTx 0x00000001 /* 1:Tx controller & Clear */ 272#define Int_IntMacTx 0x00000001 /* 1:Tx controller & Clear */
272 273
273/* MD_CA bit asign --------------------------------------------------------- */ 274/* MD_CA bit assign --------------------------------------------------------- */
274#define MD_CA_PreSup 0x00001000 /* 1:Preamble Supress */ 275#define MD_CA_PreSup 0x00001000 /* 1:Preamble Suppress */
275#define MD_CA_Busy 0x00000800 /* 1:Busy (Start Operation) */ 276#define MD_CA_Busy 0x00000800 /* 1:Busy (Start Operation) */
276#define MD_CA_Wr 0x00000400 /* 1:Write 0:Read */ 277#define MD_CA_Wr 0x00000400 /* 1:Write 0:Read */
277 278
@@ -296,7 +297,7 @@ struct BDesc {
296 297
297#define FD_ALIGN 16 298#define FD_ALIGN 16
298 299
299/* Frame Descripter bit asign ---------------------------------------------- */ 300/* Frame Descripter bit assign ---------------------------------------------- */
300#define FD_FDLength_MASK 0x0000FFFF /* Length MASK */ 301#define FD_FDLength_MASK 0x0000FFFF /* Length MASK */
301#define FD_BDCnt_MASK 0x001F0000 /* BD count MASK in FD */ 302#define FD_BDCnt_MASK 0x001F0000 /* BD count MASK in FD */
302#define FD_FrmOpt_MASK 0x7C000000 /* Frame option MASK */ 303#define FD_FrmOpt_MASK 0x7C000000 /* Frame option MASK */
@@ -309,8 +310,8 @@ struct BDesc {
309#define FD_Next_EOL 0x00000001 /* FD EOL indicator */ 310#define FD_Next_EOL 0x00000001 /* FD EOL indicator */
310#define FD_BDCnt_SHIFT 16 311#define FD_BDCnt_SHIFT 16
311 312
312/* Buffer Descripter bit asign --------------------------------------------- */ 313/* Buffer Descripter bit assign --------------------------------------------- */
313#define BD_BuffLength_MASK 0x0000FFFF /* Recieve Data Size */ 314#define BD_BuffLength_MASK 0x0000FFFF /* Receive Data Size */
314#define BD_RxBDID_MASK 0x00FF0000 /* BD ID Number MASK */ 315#define BD_RxBDID_MASK 0x00FF0000 /* BD ID Number MASK */
315#define BD_RxBDSeqN_MASK 0x7F000000 /* Rx BD Sequence Number */ 316#define BD_RxBDSeqN_MASK 0x7F000000 /* Rx BD Sequence Number */
316#define BD_CownsBD 0x80000000 /* BD Controller owner bit */ 317#define BD_CownsBD 0x80000000 /* BD Controller owner bit */
@@ -339,7 +340,7 @@ struct BDesc {
339#define TX_THRESHOLD 1024 340#define TX_THRESHOLD 1024
340/* used threshold with packet max byte for low pci transfer ability.*/ 341/* used threshold with packet max byte for low pci transfer ability.*/
341#define TX_THRESHOLD_MAX 1536 342#define TX_THRESHOLD_MAX 1536
342/* setting threshold max value when overrun error occured this count. */ 343/* setting threshold max value when overrun error occurred this count. */
343#define TX_THRESHOLD_KEEP_LIMIT 10 344#define TX_THRESHOLD_KEEP_LIMIT 10
344 345
345/* 16 + RX_BUF_NUM * 8 + RX_FD_NUM * 16 + TX_FD_NUM * 32 <= PAGE_SIZE*FD_PAGE_NUM */ 346/* 16 + RX_BUF_NUM * 8 + RX_FD_NUM * 16 + TX_FD_NUM * 32 <= PAGE_SIZE*FD_PAGE_NUM */
@@ -1167,7 +1168,7 @@ static void print_eth(const u8 *add)
1167static int tc35815_tx_full(struct net_device *dev) 1168static int tc35815_tx_full(struct net_device *dev)
1168{ 1169{
1169 struct tc35815_local *lp = netdev_priv(dev); 1170 struct tc35815_local *lp = netdev_priv(dev);
1170 return ((lp->tfd_start + 1) % TX_FD_NUM == lp->tfd_end); 1171 return (lp->tfd_start + 1) % TX_FD_NUM == lp->tfd_end;
1171} 1172}
1172 1173
1173static void tc35815_restart(struct net_device *dev) 1174static void tc35815_restart(struct net_device *dev)