2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2001 Patton Electronics Company
7 * Copyright (C) 2002 Momentum Computer
9 * Copyright 2000 MontaVista Software Inc.
10 * Author: MontaVista Software, Inc.
11 * stevel@mvista.com or support@mvista.com
13 * This program is free software; you can distribute it and/or modify it
14 * under the terms of the GNU General Public License (Version 2) as
15 * published by the Free Software Foundation.
17 * This program is distributed in the hope it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
26 * Ethernet driver definitions for the MIPS GT96100 Advanced
27 * Communication Controller.
29 * Modified for the Marvellous GT64240 Retarded Communication Controller.
34 #include <asm/gt64240.h>
36 #define ETHERNET_PORTS_DIFFERENCE_OFFSETS 0x400
38 /* Translate those weanie names from Galileo/VxWorks header files: */
40 #define GT64240_MRR MAIN_ROUTING_REGISTER
41 #define GT64240_CIU_ARBITER_CONFIG COMM_UNIT_ARBITER_CONFIGURATION_REGISTER
42 #define GT64240_CIU_ARBITER_CONTROL COMM_UNIT_ARBITER_CONTROL
43 #define GT64240_MAIN_LOW_CAUSE LOW_INTERRUPT_CAUSE_REGISTER
44 #define GT64240_MAIN_HIGH_CAUSE HIGH_INTERRUPT_CAUSE_REGISTER
45 #define GT64240_CPU_LOW_MASK CPU_INTERRUPT_MASK_REGISTER_LOW
46 #define GT64240_CPU_HIGH_MASK CPU_INTERRUPT_MASK_REGISTER_HIGH
47 #define GT64240_CPU_SELECT_CAUSE CPU_SELECT_CAUSE_REGISTER
49 #define GT64240_ETH_PHY_ADDR_REG ETHERNET_PHY_ADDRESS_REGISTER
50 #define GT64240_ETH_PORT_CONFIG ETHERNET0_PORT_CONFIGURATION_REGISTER
51 #define GT64240_ETH_PORT_CONFIG_EXT ETHERNET0_PORT_CONFIGURATION_EXTEND_REGISTER
52 #define GT64240_ETH_PORT_COMMAND ETHERNET0_PORT_COMMAND_REGISTER
53 #define GT64240_ETH_PORT_STATUS ETHERNET0_PORT_STATUS_REGISTER
54 #define GT64240_ETH_IO_SIZE ETHERNET_PORTS_DIFFERENCE_OFFSETS
55 #define GT64240_ETH_SMI_REG ETHERNET_SMI_REGISTER
56 #define GT64240_ETH_MIB_COUNT_BASE ETHERNET0_MIB_COUNTER_BASE
57 #define GT64240_ETH_SDMA_CONFIG ETHERNET0_SDMA_CONFIGURATION_REGISTER
58 #define GT64240_ETH_SDMA_COMM ETHERNET0_SDMA_COMMAND_REGISTER
59 #define GT64240_ETH_INT_MASK ETHERNET0_INTERRUPT_MASK_REGISTER
60 #define GT64240_ETH_INT_CAUSE ETHERNET0_INTERRUPT_CAUSE_REGISTER
61 #define GT64240_ETH_CURR_TX_DESC_PTR0 ETHERNET0_CURRENT_TX_DESCRIPTOR_POINTER0
62 #define GT64240_ETH_CURR_TX_DESC_PTR1 ETHERNET0_CURRENT_TX_DESCRIPTOR_POINTER1
63 #define GT64240_ETH_1ST_RX_DESC_PTR0 ETHERNET0_FIRST_RX_DESCRIPTOR_POINTER0
64 #define GT64240_ETH_CURR_RX_DESC_PTR0 ETHERNET0_CURRENT_RX_DESCRIPTOR_POINTER0
65 #define GT64240_ETH_HASH_TBL_PTR ETHERNET0_HASH_TABLE_POINTER_REGISTER
67 /* Turn on NAPI by default */
69 #define GT64240_NAPI 1
71 /* Some 64240 settings that SHOULD eventually be setup in PROM monitor: */
72 /* (Board-specific to the DSL3224 Rev A board ONLY!) */
73 #define D3224_MPP_CTRL0_SETTING 0x66669900
74 #define D3224_MPP_CTRL1_SETTING 0x00000000
75 #define D3224_MPP_CTRL2_SETTING 0x00887700
76 #define D3224_MPP_CTRL3_SETTING 0x00000044
77 #define D3224_GPP_IO_CTRL_SETTING 0x0000e800
78 #define D3224_GPP_LEVEL_CTRL_SETTING 0xf001f703
79 #define D3224_GPP_VALUE_SETTING 0x00000000
81 /* Keep the ring sizes a power of two for efficiency. */
82 //-#define TX_RING_SIZE 16
83 #define TX_RING_SIZE 64 /* TESTING !!! */
84 #define RX_RING_SIZE 32
85 #define PKT_BUF_SZ 1536 /* Size of each temporary Rx buffer. */
87 #define RX_HASH_TABLE_SIZE 16384
88 #define HASH_HOP_NUMBER 12
90 #define NUM_INTERFACES 3
92 #define GT64240ETH_TX_TIMEOUT HZ/4
94 #define MIPS_GT64240_BASE 0xf4000000
95 #define GT64240_ETH0_BASE (MIPS_GT64240_BASE + GT64240_ETH_PORT_CONFIG)
96 #define GT64240_ETH1_BASE (GT64240_ETH0_BASE + GT64240_ETH_IO_SIZE)
97 #define GT64240_ETH2_BASE (GT64240_ETH1_BASE + GT64240_ETH_IO_SIZE)
99 #if defined(CONFIG_MIPS_DSL3224)
100 #define GT64240_ETHER0_IRQ 4
101 #define GT64240_ETHER1_IRQ 4
103 #define GT64240_ETHER0_IRQ -1
104 #define GT64240_ETHER1_IRQ -1
107 #define REV_GT64240 0x1
108 #define REV_GT64240A 0x10
110 #define GT64240ETH_READ(gp, offset) \
111 GT_READ((gp)->port_offset + (offset))
113 #define GT64240ETH_WRITE(gp, offset, data) \
114 GT_WRITE((gp)->port_offset + (offset), (data))
116 #define GT64240ETH_SETBIT(gp, offset, bits) \
117 GT64240ETH_WRITE((gp), (offset), \
118 GT64240ETH_READ((gp), (offset)) | (bits))
120 #define GT64240ETH_CLRBIT(gp, offset, bits) \
121 GT64240ETH_WRITE((gp), (offset), \
122 GT64240ETH_READ((gp), (offset)) & ~(bits))
124 #define GT64240_READ(ofs) GT_READ(ofs)
125 #define GT64240_WRITE(ofs, data) GT_WRITE((ofs), (data))
127 /* Bit definitions of the SMI Reg */
129 smirDataMask
= 0xffff,
130 smirPhyAdMask
= 0x1f << 16,
132 smirRegAdMask
= 0x1f << 21,
134 smirOpCode
= 1 << 26,
135 smirReadValid
= 1 << 27,
139 /* Bit definitions of the Port Config Reg */
145 pcrLPBKMask
= 0x3 << 8,
152 pcrISLMask
= 0x7 << 28,
157 /* Bit definitions of the Port Config Extend Reg */
162 pcxrPRIOtxMask
= 0x7 << 3,
164 pcxrPRIOrxMask
= 0x3 << 6,
166 pcxrPRIOrxOverride
= 1 << 8,
168 pcxrFCTLen
= 1 << 10,
171 pcxrMFLMask
= 0x3 << 14,
173 pcxrMIBclrMode
= 1 << 16,
175 pcxrSpeeden
= 1 << 19,
176 pcxrRMIIen
= 1 << 20,
180 /* Bit definitions of the Port Command Reg */
186 /* Bit definitions of the Port Status Reg */
198 /* Bit definitions of the SDMA Config Reg */
200 sdcrRCMask
= 0xf << 2,
206 sdcrBSZMask
= 0x3 << 12,
210 /* Bit definitions of the SDMA Command Reg */
221 /* Bit definitions of the Interrupt Cause Reg */
224 icrTxBufferHigh
= 1 << 2,
225 icrTxBufferLow
= 1 << 3,
226 icrTxEndHigh
= 1 << 6,
227 icrTxEndLow
= 1 << 7,
229 icrTxErrorHigh
= 1 << 10,
230 icrTxErrorLow
= 1 << 11,
233 icrRxBufferQ0
= 1 << 16,
234 icrRxBufferQ1
= 1 << 17,
235 icrRxBufferQ2
= 1 << 18,
236 icrRxBufferQ3
= 1 << 19,
237 icrRxErrorQ0
= 1 << 20,
238 icrRxErrorQ1
= 1 << 21,
239 icrRxErrorQ2
= 1 << 22,
240 icrRxErrorQ3
= 1 << 23,
241 icrMIIPhySTC
= 1 << 28,
242 icrSMIdone
= 1 << 29,
243 icrEtherIntSum
= 1 << 31
247 /* The Rx and Tx descriptor lists. */
248 #ifdef __LITTLE_ENDIAN
251 u16 reserved
; //-prk21aug01 u32 reserved:16;
252 u16 byte_cnt
; //-prk21aug01 u32 byte_cnt:16;
259 u16 byte_cnt
; //-prk21aug01 u32 byte_cnt:16;
260 u16 buff_sz
; //-prk21aug01 u32 buff_sz:16;
264 #elif defined(__BIG_ENDIAN)
266 u16 byte_cnt
; //-prk21aug01 u32 byte_cnt:16;
267 u16 reserved
; //-prk21aug01 u32 reserved:16;
274 u16 buff_sz
; //-prk21aug01 u32 buff_sz:16;
275 u16 byte_cnt
; //-prk21aug01 u32 byte_cnt:16;
281 #error Either __BIG_ENDIAN or __LITTLE_ENDIAN must be defined!
285 /* Values for the Tx command-status descriptor entry. */
288 txAutoMode
= 1 << 30,
294 txErrorSummary
= 1 << 15,
295 txReTxCntMask
= 0x0f << 10,
297 txCollision
= 1 << 9,
298 txReTxLimit
= 1 << 8,
300 txLateCollision
= 1 << 5
304 /* Values for the Rx command-status descriptor entry. */
307 rxAutoMode
= 1 << 30,
311 rxErrorSummary
= 1 << 15,
313 rxHashExpired
= 1 << 13,
314 rxMissedFrame
= 1 << 12,
315 rxFrameType
= 1 << 11,
316 rxShortFrame
= 1 << 8,
317 rxMaxFrameLen
= 1 << 7,
319 rxCollision
= 1 << 4,
323 /* Bit fields of a Hash Table Entry */
324 enum hash_table_entry
{
336 u32 totalByteReceived
;
337 u32 totalFramesReceived
;
338 u32 broadcastFramesReceived
;
339 u32 multicastFramesReceived
;
351 u32 frames1024_MaxSize
;
354 u32 outMulticastFrames
;
355 u32 outBroadcastFrames
;
360 struct gt64240_private
{
361 gt64240_rd_t
*rx_ring
;
362 gt64240_td_t
*tx_ring
;
363 // The Rx and Tx rings must be 16-byte aligned
364 dma_addr_t rx_ring_dma
;
365 dma_addr_t tx_ring_dma
;
367 // The Hash Table must be 8-byte aligned
368 dma_addr_t hash_table_dma
;
371 // The Rx buffers must be 8-byte aligned
373 dma_addr_t rx_buff_dma
;
374 // Tx buffers (tx_skbuff[i]->data) with less than 8 bytes
375 // of payload must be 8-byte aligned
376 struct sk_buff
*tx_skbuff
[TX_RING_SIZE
];
377 int rx_next_out
; /* The next free ring entry to receive */
378 int tx_next_in
; /* The next free ring entry to send */
379 int tx_next_out
; /* The last ring entry the ISR processed */
380 int tx_count
; /* current # of pkts waiting to be sent in Tx ring */
381 int intr_work_done
; /* number of Rx and Tx pkts processed in the isr */
382 int tx_full
; /* Tx ring is full */
385 struct net_device_stats stats
;
388 int port_num
; // 0 or 1
391 int phy_addr
; // PHY address
392 u32 last_psr
; // last value of the port status register
394 int options
; /* User-settable misc. driver options. */
396 spinlock_t lock
; /* Serialise access to device */
397 struct mii_if_info mii_if
;
402 #endif /* _GT64240ETH_H */