3 * Ingo Assmus <ingo.assmus@keymile.com>
5 * based on - Driver for MV64460X ethernet ports
6 * Copyright (C) 2002 rabeeh@galileo.co.il
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * mv_eth.h - header file for the polled mode GT ethernet driver
31 #ifndef __DB64460_ETH_H__
32 #define __DB64460_ETH_H__
34 #include <asm/types.h>
36 #include <asm/byteorder.h>
40 #include <asm/errno.h>
41 #include "../../Marvell/include/core.h"
43 /*************************************************************************
44 **************************************************************************
45 **************************************************************************
46 * The first part is the high level driver of the gigE ethernet ports. *
47 **************************************************************************
48 **************************************************************************
49 *************************************************************************/
57 /* In case not using SG on Tx, define MAX_SKB_FRAGS as 0 */
59 #define MAX_SKB_FRAGS 0
63 /*#define MAX_RX_QUEUE_NUM 8*/
64 /*#define MAX_TX_QUEUE_NUM 8*/
65 #define MAX_RX_QUEUE_NUM 1
66 #define MAX_TX_QUEUE_NUM 1
69 /* Use one TX queue and one RX queue */
70 #define MV64460_TX_QUEUE_NUM 1
71 #define MV64460_RX_QUEUE_NUM 1
74 * Number of RX / TX descriptors on RX / TX rings.
75 * Note that allocating RX descriptors is done by allocating the RX
76 * ring AND a preallocated RX buffers (skb's) for each descriptor.
77 * The TX descriptors only allocates the TX descriptors ring,
78 * with no pre allocated TX buffers (skb's are allocated by higher layers.
81 /* Default TX ring size is 10 descriptors */
82 #ifdef CONFIG_MV64460_ETH_TXQUEUE_SIZE
83 #define MV64460_TX_QUEUE_SIZE CONFIG_MV64460_ETH_TXQUEUE_SIZE
85 #define MV64460_TX_QUEUE_SIZE 4
88 /* Default RX ring size is 4 descriptors */
89 #ifdef CONFIG_MV64460_ETH_RXQUEUE_SIZE
90 #define MV64460_RX_QUEUE_SIZE CONFIG_MV64460_ETH_RXQUEUE_SIZE
92 #define MV64460_RX_QUEUE_SIZE 4
95 #ifdef CONFIG_RX_BUFFER_SIZE
96 #define MV64460_RX_BUFFER_SIZE CONFIG_RX_BUFFER_SIZE
98 #define MV64460_RX_BUFFER_SIZE 1600
101 #ifdef CONFIG_TX_BUFFER_SIZE
102 #define MV64460_TX_BUFFER_SIZE CONFIG_TX_BUFFER_SIZE
104 #define MV64460_TX_BUFFER_SIZE 1600
108 * Network device statistics. Akin to the 2.0 ether stats but
109 * with byte counters.
112 struct net_device_stats
114 unsigned long rx_packets; /* total packets received */
115 unsigned long tx_packets; /* total packets transmitted */
116 unsigned long rx_bytes; /* total bytes received */
117 unsigned long tx_bytes; /* total bytes transmitted */
118 unsigned long rx_errors; /* bad packets received */
119 unsigned long tx_errors; /* packet transmit problems */
120 unsigned long rx_dropped; /* no space in linux buffers */
121 unsigned long tx_dropped; /* no space available in linux */
122 unsigned long multicast; /* multicast packets received */
123 unsigned long collisions;
125 /* detailed rx_errors: */
126 unsigned long rx_length_errors;
127 unsigned long rx_over_errors; /* receiver ring buff overflow */
128 unsigned long rx_crc_errors; /* recved pkt with crc error */
129 unsigned long rx_frame_errors; /* recv'd frame alignment error */
130 unsigned long rx_fifo_errors; /* recv'r fifo overrun */
131 unsigned long rx_missed_errors; /* receiver missed packet */
133 /* detailed tx_errors */
134 unsigned long tx_aborted_errors;
135 unsigned long tx_carrier_errors;
136 unsigned long tx_fifo_errors;
137 unsigned long tx_heartbeat_errors;
138 unsigned long tx_window_errors;
141 unsigned long rx_compressed;
142 unsigned long tx_compressed;
146 /* Private data structure used for ethernet device */
147 struct mv64460_eth_priv {
148 unsigned int port_num;
149 struct net_device_stats *stats;
151 /* to buffer area aligned */
152 char * p_eth_tx_buffer[MV64460_TX_QUEUE_SIZE+1]; /*pointers to alligned tx buffs in memory space */
153 char * p_eth_rx_buffer[MV64460_RX_QUEUE_SIZE+1]; /*pointers to allinged rx buffs in memory space */
155 /* Size of Tx Ring per queue */
156 unsigned int tx_ring_size [MAX_TX_QUEUE_NUM];
158 /* Size of Rx Ring per queue */
159 unsigned int rx_ring_size [MAX_RX_QUEUE_NUM];
161 /* Magic Number for Ethernet running */
162 unsigned int eth_running;
167 int mv64460_eth_init (struct eth_device *dev);
168 int mv64460_eth_stop (struct eth_device *dev);
169 int mv64460_eth_start_xmit(struct eth_device *dev, void *packet, int length);
170 int mv64460_eth_open (struct eth_device *dev);
173 /*************************************************************************
174 **************************************************************************
175 **************************************************************************
176 * The second part is the low level driver of the gigE ethernet ports. *
177 **************************************************************************
178 **************************************************************************
179 *************************************************************************/
182 /********************************************************************************
183 * Header File for : MV-643xx network interface header
186 * This header file contains macros typedefs and function declaration for
187 * the Marvell Gig Bit Ethernet Controller.
192 *******************************************************************************/
195 #ifdef CONFIG_SPECIAL_CONSISTENT_MEMORY
196 #ifdef CONFIG_MV64460_SRAM_CACHEABLE
197 /* In case SRAM is cacheable but not cache coherent */
198 #define D_CACHE_FLUSH_LINE(addr, offset) \
200 __asm__ __volatile__ ("dcbf %0,%1" : : "r" (addr), "r" (offset)); \
203 /* In case SRAM is cache coherent or non-cacheable */
204 #define D_CACHE_FLUSH_LINE(addr, offset) ;
207 #ifdef CONFIG_NOT_COHERENT_CACHE
208 /* In case of descriptors on DDR but not cache coherent */
209 #define D_CACHE_FLUSH_LINE(addr, offset) \
211 __asm__ __volatile__ ("dcbf %0,%1" : : "r" (addr), "r" (offset)); \
214 /* In case of descriptors on DDR and cache coherent */
215 #define D_CACHE_FLUSH_LINE(addr, offset) ;
216 #endif /* CONFIG_NOT_COHERENT_CACHE */
217 #endif /* CONFIG_SPECIAL_CONSISTENT_MEMORY */
220 #define CPU_PIPE_FLUSH \
222 __asm__ __volatile__ ("eieio"); \
228 /* Default port configuration value */
229 #define PORT_CONFIG_VALUE \
230 ETH_UNICAST_NORMAL_MODE | \
231 ETH_DEFAULT_RX_QUEUE_0 | \
232 ETH_DEFAULT_RX_ARP_QUEUE_0 | \
233 ETH_RECEIVE_BC_IF_NOT_IP_OR_ARP | \
234 ETH_RECEIVE_BC_IF_IP | \
235 ETH_RECEIVE_BC_IF_ARP | \
236 ETH_CAPTURE_TCP_FRAMES_DIS | \
237 ETH_CAPTURE_UDP_FRAMES_DIS | \
238 ETH_DEFAULT_RX_TCP_QUEUE_0 | \
239 ETH_DEFAULT_RX_UDP_QUEUE_0 | \
240 ETH_DEFAULT_RX_BPDU_QUEUE_0
242 /* Default port extend configuration value */
243 #define PORT_CONFIG_EXTEND_VALUE \
244 ETH_SPAN_BPDU_PACKETS_AS_NORMAL | \
245 ETH_PARTITION_DISABLE
248 /* Default sdma control value */
249 #ifdef CONFIG_NOT_COHERENT_CACHE
250 #define PORT_SDMA_CONFIG_VALUE \
251 ETH_RX_BURST_SIZE_16_64BIT | \
252 GT_ETH_IPG_INT_RX(0) | \
253 ETH_TX_BURST_SIZE_16_64BIT;
255 #define PORT_SDMA_CONFIG_VALUE \
256 ETH_RX_BURST_SIZE_4_64BIT | \
257 GT_ETH_IPG_INT_RX(0) | \
258 ETH_TX_BURST_SIZE_4_64BIT;
261 #define GT_ETH_IPG_INT_RX(value) \
262 ((value & 0x3fff) << 8)
264 /* Default port serial control value */
265 #define PORT_SERIAL_CONTROL_VALUE \
266 ETH_FORCE_LINK_PASS | \
267 ETH_ENABLE_AUTO_NEG_FOR_DUPLX | \
268 ETH_DISABLE_AUTO_NEG_FOR_FLOW_CTRL | \
269 ETH_ADV_SYMMETRIC_FLOW_CTRL | \
270 ETH_FORCE_FC_MODE_NO_PAUSE_DIS_TX | \
271 ETH_FORCE_BP_MODE_NO_JAM | \
273 ETH_DO_NOT_FORCE_LINK_FAIL | \
274 ETH_RETRANSMIT_16_ETTEMPTS | \
275 ETH_ENABLE_AUTO_NEG_SPEED_GMII | \
277 ETH_DISABLE_AUTO_NEG_BYPASS | \
278 ETH_AUTO_NEG_NO_CHANGE | \
279 ETH_MAX_RX_PACKET_1552BYTE | \
280 ETH_CLR_EXT_LOOPBACK | \
281 ETH_SET_FULL_DUPLEX_MODE | \
282 ETH_ENABLE_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX;
284 #define RX_BUFFER_MAX_SIZE 0xFFFF
285 #define TX_BUFFER_MAX_SIZE 0xFFFF /* Buffer are limited to 64k */
287 #define RX_BUFFER_MIN_SIZE 0x8
288 #define TX_BUFFER_MIN_SIZE 0x8
290 /* Tx WRR confoguration macros */
291 #define PORT_MAX_TRAN_UNIT 0x24 /* MTU register (default) 9KByte */
292 #define PORT_MAX_TOKEN_BUCKET_SIZE 0x_fFFF /* PMTBS register (default) */
293 #define PORT_TOKEN_RATE 1023 /* PTTBRC register (default) */
295 /* MAC accepet/reject macros */
296 #define ACCEPT_MAC_ADDR 0
297 #define REJECT_MAC_ADDR 1
299 /* Size of a Tx/Rx descriptor used in chain list data structure */
300 #define RX_DESC_ALIGNED_SIZE 0x20
301 #define TX_DESC_ALIGNED_SIZE 0x20
303 /* An offest in Tx descriptors to store data for buffers less than 8 Bytes */
304 #define TX_BUF_OFFSET_IN_DESC 0x18
305 /* Buffer offset from buffer pointer */
306 #define RX_BUF_OFFSET 0x2
309 #define ETH_BAR_GAP 0x8
310 #define ETH_SIZE_REG_GAP 0x8
311 #define ETH_HIGH_ADDR_REMAP_REG_GAP 0x4
312 #define ETH_PORT_ACCESS_CTRL_GAP 0x4
314 /* Gigabit Ethernet Unit Global Registers */
316 /* MIB Counters register definitions */
317 #define ETH_MIB_GOOD_OCTETS_RECEIVED_LOW 0x0
318 #define ETH_MIB_GOOD_OCTETS_RECEIVED_HIGH 0x4
319 #define ETH_MIB_BAD_OCTETS_RECEIVED 0x8
320 #define ETH_MIB_INTERNAL_MAC_TRANSMIT_ERR 0xc
321 #define ETH_MIB_GOOD_FRAMES_RECEIVED 0x10
322 #define ETH_MIB_BAD_FRAMES_RECEIVED 0x14
323 #define ETH_MIB_BROADCAST_FRAMES_RECEIVED 0x18
324 #define ETH_MIB_MULTICAST_FRAMES_RECEIVED 0x1c
325 #define ETH_MIB_FRAMES_64_OCTETS 0x20
326 #define ETH_MIB_FRAMES_65_TO_127_OCTETS 0x24
327 #define ETH_MIB_FRAMES_128_TO_255_OCTETS 0x28
328 #define ETH_MIB_FRAMES_256_TO_511_OCTETS 0x2c
329 #define ETH_MIB_FRAMES_512_TO_1023_OCTETS 0x30
330 #define ETH_MIB_FRAMES_1024_TO_MAX_OCTETS 0x34
331 #define ETH_MIB_GOOD_OCTETS_SENT_LOW 0x38
332 #define ETH_MIB_GOOD_OCTETS_SENT_HIGH 0x3c
333 #define ETH_MIB_GOOD_FRAMES_SENT 0x40
334 #define ETH_MIB_EXCESSIVE_COLLISION 0x44
335 #define ETH_MIB_MULTICAST_FRAMES_SENT 0x48
336 #define ETH_MIB_BROADCAST_FRAMES_SENT 0x4c
337 #define ETH_MIB_UNREC_MAC_CONTROL_RECEIVED 0x50
338 #define ETH_MIB_FC_SENT 0x54
339 #define ETH_MIB_GOOD_FC_RECEIVED 0x58
340 #define ETH_MIB_BAD_FC_RECEIVED 0x5c
341 #define ETH_MIB_UNDERSIZE_RECEIVED 0x60
342 #define ETH_MIB_FRAGMENTS_RECEIVED 0x64
343 #define ETH_MIB_OVERSIZE_RECEIVED 0x68
344 #define ETH_MIB_JABBER_RECEIVED 0x6c
345 #define ETH_MIB_MAC_RECEIVE_ERROR 0x70
346 #define ETH_MIB_BAD_CRC_EVENT 0x74
347 #define ETH_MIB_COLLISION 0x78
348 #define ETH_MIB_LATE_COLLISION 0x7c
350 /* Port serial status reg (PSR) */
351 #define ETH_INTERFACE_GMII_MII 0
352 #define ETH_INTERFACE_PCM BIT0
353 #define ETH_LINK_IS_DOWN 0
354 #define ETH_LINK_IS_UP BIT1
355 #define ETH_PORT_AT_HALF_DUPLEX 0
356 #define ETH_PORT_AT_FULL_DUPLEX BIT2
357 #define ETH_RX_FLOW_CTRL_DISABLED 0
358 #define ETH_RX_FLOW_CTRL_ENBALED BIT3
359 #define ETH_GMII_SPEED_100_10 0
360 #define ETH_GMII_SPEED_1000 BIT4
361 #define ETH_MII_SPEED_10 0
362 #define ETH_MII_SPEED_100 BIT5
364 #define ETH_TX_IN_PROGRESS BIT7
365 #define ETH_BYPASS_NO_ACTIVE 0
366 #define ETH_BYPASS_ACTIVE BIT8
367 #define ETH_PORT_NOT_AT_PARTITION_STATE 0
368 #define ETH_PORT_AT_PARTITION_STATE BIT9
369 #define ETH_PORT_TX_FIFO_NOT_EMPTY 0
370 #define ETH_PORT_TX_FIFO_EMPTY BIT10
373 /* These macros describes the Port configuration reg (Px_cR) bits */
374 #define ETH_UNICAST_NORMAL_MODE 0
375 #define ETH_UNICAST_PROMISCUOUS_MODE BIT0
376 #define ETH_DEFAULT_RX_QUEUE_0 0
377 #define ETH_DEFAULT_RX_QUEUE_1 BIT1
378 #define ETH_DEFAULT_RX_QUEUE_2 BIT2
379 #define ETH_DEFAULT_RX_QUEUE_3 (BIT2 | BIT1)
380 #define ETH_DEFAULT_RX_QUEUE_4 BIT3
381 #define ETH_DEFAULT_RX_QUEUE_5 (BIT3 | BIT1)
382 #define ETH_DEFAULT_RX_QUEUE_6 (BIT3 | BIT2)
383 #define ETH_DEFAULT_RX_QUEUE_7 (BIT3 | BIT2 | BIT1)
384 #define ETH_DEFAULT_RX_ARP_QUEUE_0 0
385 #define ETH_DEFAULT_RX_ARP_QUEUE_1 BIT4
386 #define ETH_DEFAULT_RX_ARP_QUEUE_2 BIT5
387 #define ETH_DEFAULT_RX_ARP_QUEUE_3 (BIT5 | BIT4)
388 #define ETH_DEFAULT_RX_ARP_QUEUE_4 BIT6
389 #define ETH_DEFAULT_RX_ARP_QUEUE_5 (BIT6 | BIT4)
390 #define ETH_DEFAULT_RX_ARP_QUEUE_6 (BIT6 | BIT5)
391 #define ETH_DEFAULT_RX_ARP_QUEUE_7 (BIT6 | BIT5 | BIT4)
392 #define ETH_RECEIVE_BC_IF_NOT_IP_OR_ARP 0
393 #define ETH_REJECT_BC_IF_NOT_IP_OR_ARP BIT7
394 #define ETH_RECEIVE_BC_IF_IP 0
395 #define ETH_REJECT_BC_IF_IP BIT8
396 #define ETH_RECEIVE_BC_IF_ARP 0
397 #define ETH_REJECT_BC_IF_ARP BIT9
398 #define ETH_TX_AM_NO_UPDATE_ERROR_SUMMARY BIT12
399 #define ETH_CAPTURE_TCP_FRAMES_DIS 0
400 #define ETH_CAPTURE_TCP_FRAMES_EN BIT14
401 #define ETH_CAPTURE_UDP_FRAMES_DIS 0
402 #define ETH_CAPTURE_UDP_FRAMES_EN BIT15
403 #define ETH_DEFAULT_RX_TCP_QUEUE_0 0
404 #define ETH_DEFAULT_RX_TCP_QUEUE_1 BIT16
405 #define ETH_DEFAULT_RX_TCP_QUEUE_2 BIT17
406 #define ETH_DEFAULT_RX_TCP_QUEUE_3 (BIT17 | BIT16)
407 #define ETH_DEFAULT_RX_TCP_QUEUE_4 BIT18
408 #define ETH_DEFAULT_RX_TCP_QUEUE_5 (BIT18 | BIT16)
409 #define ETH_DEFAULT_RX_TCP_QUEUE_6 (BIT18 | BIT17)
410 #define ETH_DEFAULT_RX_TCP_QUEUE_7 (BIT18 | BIT17 | BIT16)
411 #define ETH_DEFAULT_RX_UDP_QUEUE_0 0
412 #define ETH_DEFAULT_RX_UDP_QUEUE_1 BIT19
413 #define ETH_DEFAULT_RX_UDP_QUEUE_2 BIT20
414 #define ETH_DEFAULT_RX_UDP_QUEUE_3 (BIT20 | BIT19)
415 #define ETH_DEFAULT_RX_UDP_QUEUE_4 (BIT21
416 #define ETH_DEFAULT_RX_UDP_QUEUE_5 (BIT21 | BIT19)
417 #define ETH_DEFAULT_RX_UDP_QUEUE_6 (BIT21 | BIT20)
418 #define ETH_DEFAULT_RX_UDP_QUEUE_7 (BIT21 | BIT20 | BIT19)
419 #define ETH_DEFAULT_RX_BPDU_QUEUE_0 0
420 #define ETH_DEFAULT_RX_BPDU_QUEUE_1 BIT22
421 #define ETH_DEFAULT_RX_BPDU_QUEUE_2 BIT23
422 #define ETH_DEFAULT_RX_BPDU_QUEUE_3 (BIT23 | BIT22)
423 #define ETH_DEFAULT_RX_BPDU_QUEUE_4 BIT24
424 #define ETH_DEFAULT_RX_BPDU_QUEUE_5 (BIT24 | BIT22)
425 #define ETH_DEFAULT_RX_BPDU_QUEUE_6 (BIT24 | BIT23)
426 #define ETH_DEFAULT_RX_BPDU_QUEUE_7 (BIT24 | BIT23 | BIT22)
429 /* These macros describes the Port configuration extend reg (Px_cXR) bits*/
430 #define ETH_CLASSIFY_EN BIT0
431 #define ETH_SPAN_BPDU_PACKETS_AS_NORMAL 0
432 #define ETH_SPAN_BPDU_PACKETS_TO_RX_QUEUE_7 BIT1
433 #define ETH_PARTITION_DISABLE 0
434 #define ETH_PARTITION_ENABLE BIT2
437 /* Tx/Rx queue command reg (RQCR/TQCR)*/
438 #define ETH_QUEUE_0_ENABLE BIT0
439 #define ETH_QUEUE_1_ENABLE BIT1
440 #define ETH_QUEUE_2_ENABLE BIT2
441 #define ETH_QUEUE_3_ENABLE BIT3
442 #define ETH_QUEUE_4_ENABLE BIT4
443 #define ETH_QUEUE_5_ENABLE BIT5
444 #define ETH_QUEUE_6_ENABLE BIT6
445 #define ETH_QUEUE_7_ENABLE BIT7
446 #define ETH_QUEUE_0_DISABLE BIT8
447 #define ETH_QUEUE_1_DISABLE BIT9
448 #define ETH_QUEUE_2_DISABLE BIT10
449 #define ETH_QUEUE_3_DISABLE BIT11
450 #define ETH_QUEUE_4_DISABLE BIT12
451 #define ETH_QUEUE_5_DISABLE BIT13
452 #define ETH_QUEUE_6_DISABLE BIT14
453 #define ETH_QUEUE_7_DISABLE BIT15
455 /* These macros describes the Port Sdma configuration reg (SDCR) bits */
456 #define ETH_RIFB BIT0
457 #define ETH_RX_BURST_SIZE_1_64BIT 0
458 #define ETH_RX_BURST_SIZE_2_64BIT BIT1
459 #define ETH_RX_BURST_SIZE_4_64BIT BIT2
460 #define ETH_RX_BURST_SIZE_8_64BIT (BIT2 | BIT1)
461 #define ETH_RX_BURST_SIZE_16_64BIT BIT3
462 #define ETH_BLM_RX_NO_SWAP BIT4
463 #define ETH_BLM_RX_BYTE_SWAP 0
464 #define ETH_BLM_TX_NO_SWAP BIT5
465 #define ETH_BLM_TX_BYTE_SWAP 0
466 #define ETH_DESCRIPTORS_BYTE_SWAP BIT6
467 #define ETH_DESCRIPTORS_NO_SWAP 0
468 #define ETH_TX_BURST_SIZE_1_64BIT 0
469 #define ETH_TX_BURST_SIZE_2_64BIT BIT22
470 #define ETH_TX_BURST_SIZE_4_64BIT BIT23
471 #define ETH_TX_BURST_SIZE_8_64BIT (BIT23 | BIT22)
472 #define ETH_TX_BURST_SIZE_16_64BIT BIT24
474 /* These macros describes the Port serial control reg (PSCR) bits */
475 #define ETH_SERIAL_PORT_DISABLE 0
476 #define ETH_SERIAL_PORT_ENABLE BIT0
477 #define ETH_FORCE_LINK_PASS BIT1
478 #define ETH_DO_NOT_FORCE_LINK_PASS 0
479 #define ETH_ENABLE_AUTO_NEG_FOR_DUPLX 0
480 #define ETH_DISABLE_AUTO_NEG_FOR_DUPLX BIT2
481 #define ETH_ENABLE_AUTO_NEG_FOR_FLOW_CTRL 0
482 #define ETH_DISABLE_AUTO_NEG_FOR_FLOW_CTRL BIT3
483 #define ETH_ADV_NO_FLOW_CTRL 0
484 #define ETH_ADV_SYMMETRIC_FLOW_CTRL BIT4
485 #define ETH_FORCE_FC_MODE_NO_PAUSE_DIS_TX 0
486 #define ETH_FORCE_FC_MODE_TX_PAUSE_DIS BIT5
487 #define ETH_FORCE_BP_MODE_NO_JAM 0
488 #define ETH_FORCE_BP_MODE_JAM_TX BIT7
489 #define ETH_FORCE_BP_MODE_JAM_TX_ON_RX_ERR BIT8
490 #define ETH_FORCE_LINK_FAIL 0
491 #define ETH_DO_NOT_FORCE_LINK_FAIL BIT10
492 #define ETH_RETRANSMIT_16_ETTEMPTS 0
493 #define ETH_RETRANSMIT_FOREVER BIT11
494 #define ETH_DISABLE_AUTO_NEG_SPEED_GMII BIT13
495 #define ETH_ENABLE_AUTO_NEG_SPEED_GMII 0
496 #define ETH_DTE_ADV_0 0
497 #define ETH_DTE_ADV_1 BIT14
498 #define ETH_DISABLE_AUTO_NEG_BYPASS 0
499 #define ETH_ENABLE_AUTO_NEG_BYPASS BIT15
500 #define ETH_AUTO_NEG_NO_CHANGE 0
501 #define ETH_RESTART_AUTO_NEG BIT16
502 #define ETH_MAX_RX_PACKET_1518BYTE 0
503 #define ETH_MAX_RX_PACKET_1522BYTE BIT17
504 #define ETH_MAX_RX_PACKET_1552BYTE BIT18
505 #define ETH_MAX_RX_PACKET_9022BYTE (BIT18 | BIT17)
506 #define ETH_MAX_RX_PACKET_9192BYTE BIT19
507 #define ETH_MAX_RX_PACKET_9700BYTE (BIT19 | BIT17)
508 #define ETH_SET_EXT_LOOPBACK BIT20
509 #define ETH_CLR_EXT_LOOPBACK 0
510 #define ETH_SET_FULL_DUPLEX_MODE BIT21
511 #define ETH_SET_HALF_DUPLEX_MODE 0
512 #define ETH_ENABLE_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX BIT22
513 #define ETH_DISABLE_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX 0
514 #define ETH_SET_GMII_SPEED_TO_10_100 0
515 #define ETH_SET_GMII_SPEED_TO_1000 BIT23
516 #define ETH_SET_MII_SPEED_TO_10 0
517 #define ETH_SET_MII_SPEED_TO_100 BIT24
521 #define ETH_SMI_BUSY BIT28 /* 0 - Write, 1 - Read */
522 #define ETH_SMI_READ_VALID BIT27 /* 0 - Write, 1 - Read */
523 #define ETH_SMI_OPCODE_WRITE 0 /* Completion of Read operation */
524 #define ETH_SMI_OPCODE_READ BIT26 /* Operation is in progress */
526 /* SDMA command status fields macros */
528 /* Tx & Rx descriptors status */
529 #define ETH_ERROR_SUMMARY (BIT0)
531 /* Tx & Rx descriptors command */
532 #define ETH_BUFFER_OWNED_BY_DMA (BIT31)
534 /* Tx descriptors status */
535 #define ETH_LC_ERROR (0 )
536 #define ETH_UR_ERROR (BIT1 )
537 #define ETH_RL_ERROR (BIT2 )
538 #define ETH_LLC_SNAP_FORMAT (BIT9 )
540 /* Rx descriptors status */
541 #define ETH_CRC_ERROR (0 )
542 #define ETH_OVERRUN_ERROR (BIT1 )
543 #define ETH_MAX_FRAME_LENGTH_ERROR (BIT2 )
544 #define ETH_RESOURCE_ERROR ((BIT2 | BIT1))
545 #define ETH_VLAN_TAGGED (BIT19)
546 #define ETH_BPDU_FRAME (BIT20)
547 #define ETH_TCP_FRAME_OVER_IP_V_4 (0 )
548 #define ETH_UDP_FRAME_OVER_IP_V_4 (BIT21)
549 #define ETH_OTHER_FRAME_TYPE (BIT22)
550 #define ETH_LAYER_2_IS_ETH_V_2 (BIT23)
551 #define ETH_FRAME_TYPE_IP_V_4 (BIT24)
552 #define ETH_FRAME_HEADER_OK (BIT25)
553 #define ETH_RX_LAST_DESC (BIT26)
554 #define ETH_RX_FIRST_DESC (BIT27)
555 #define ETH_UNKNOWN_DESTINATION_ADDR (BIT28)
556 #define ETH_RX_ENABLE_INTERRUPT (BIT29)
557 #define ETH_LAYER_4_CHECKSUM_OK (BIT30)
559 /* Rx descriptors byte count */
560 #define ETH_FRAME_FRAGMENTED (BIT2)
562 /* Tx descriptors command */
563 #define ETH_LAYER_4_CHECKSUM_FIRST_DESC (BIT10)
564 #define ETH_FRAME_SET_TO_VLAN (BIT15)
565 #define ETH_TCP_FRAME (0 )
566 #define ETH_UDP_FRAME (BIT16)
567 #define ETH_GEN_TCP_UDP_CHECKSUM (BIT17)
568 #define ETH_GEN_IP_V_4_CHECKSUM (BIT18)
569 #define ETH_ZERO_PADDING (BIT19)
570 #define ETH_TX_LAST_DESC (BIT20)
571 #define ETH_TX_FIRST_DESC (BIT21)
572 #define ETH_GEN_CRC (BIT22)
573 #define ETH_TX_ENABLE_INTERRUPT (BIT23)
574 #define ETH_AUTO_MODE (BIT30)
576 /* Address decode parameters */
577 /* Ethernet Base Address Register bits */
578 #define EBAR_TARGET_DRAM 0x00000000
579 #define EBAR_TARGET_DEVICE 0x00000001
580 #define EBAR_TARGET_CBS 0x00000002
581 #define EBAR_TARGET_PCI0 0x00000003
582 #define EBAR_TARGET_PCI1 0x00000004
583 #define EBAR_TARGET_CUNIT 0x00000005
584 #define EBAR_TARGET_AUNIT 0x00000006
585 #define EBAR_TARGET_GUNIT 0x00000007
587 /* Window attributes */
588 #define EBAR_ATTR_DRAM_CS0 0x00000E00
589 #define EBAR_ATTR_DRAM_CS1 0x00000D00
590 #define EBAR_ATTR_DRAM_CS2 0x00000B00
591 #define EBAR_ATTR_DRAM_CS3 0x00000700
593 /* DRAM Target interface */
594 #define EBAR_ATTR_DRAM_NO_CACHE_COHERENCY 0x00000000
595 #define EBAR_ATTR_DRAM_CACHE_COHERENCY_WT 0x00001000
596 #define EBAR_ATTR_DRAM_CACHE_COHERENCY_WB 0x00002000
598 /* Device Bus Target interface */
599 #define EBAR_ATTR_DEVICE_DEVCS0 0x00001E00
600 #define EBAR_ATTR_DEVICE_DEVCS1 0x00001D00
601 #define EBAR_ATTR_DEVICE_DEVCS2 0x00001B00
602 #define EBAR_ATTR_DEVICE_DEVCS3 0x00001700
603 #define EBAR_ATTR_DEVICE_BOOTCS3 0x00000F00
605 /* PCI Target interface */
606 #define EBAR_ATTR_PCI_BYTE_SWAP 0x00000000
607 #define EBAR_ATTR_PCI_NO_SWAP 0x00000100
608 #define EBAR_ATTR_PCI_BYTE_WORD_SWAP 0x00000200
609 #define EBAR_ATTR_PCI_WORD_SWAP 0x00000300
610 #define EBAR_ATTR_PCI_NO_SNOOP_NOT_ASSERT 0x00000000
611 #define EBAR_ATTR_PCI_NO_SNOOP_ASSERT 0x00000400
612 #define EBAR_ATTR_PCI_IO_SPACE 0x00000000
613 #define EBAR_ATTR_PCI_MEMORY_SPACE 0x00000800
614 #define EBAR_ATTR_PCI_REQ64_FORCE 0x00000000
615 #define EBAR_ATTR_PCI_REQ64_SIZE 0x00001000
617 /* CPU 60x bus or internal SRAM interface */
618 #define EBAR_ATTR_CBS_SRAM_BLOCK0 0x00000000
619 #define EBAR_ATTR_CBS_SRAM_BLOCK1 0x00000100
620 #define EBAR_ATTR_CBS_SRAM 0x00000000
621 #define EBAR_ATTR_CBS_CPU_BUS 0x00000800
623 /* Window access control */
624 #define EWIN_ACCESS_NOT_ALLOWED 0
625 #define EWIN_ACCESS_READ_ONLY BIT0
626 #define EWIN_ACCESS_FULL (BIT1 | BIT0)
627 #define EWIN0_ACCESS_MASK 0x0003
628 #define EWIN1_ACCESS_MASK 0x000C
629 #define EWIN2_ACCESS_MASK 0x0030
630 #define EWIN3_ACCESS_MASK 0x00C0
634 typedef enum _eth_port
641 typedef enum _eth_func_ret_status
643 ETH_OK, /* Returned as expected. */
644 ETH_ERROR, /* Fundamental error. */
645 ETH_RETRY, /* Could not process request. Try later. */
646 ETH_END_OF_JOB, /* Ring has nothing to process. */
647 ETH_QUEUE_FULL, /* Ring resource error. */
648 ETH_QUEUE_LAST_RESOURCE /* Ring resources about to exhaust. */
649 }ETH_FUNC_RET_STATUS;
651 typedef enum _eth_queue
663 typedef enum _addr_win
673 typedef enum _eth_target
682 typedef struct _eth_rx_desc
684 unsigned short byte_cnt ; /* Descriptor buffer byte count */
685 unsigned short buf_size ; /* Buffer size */
686 unsigned int cmd_sts ; /* Descriptor command status */
687 unsigned int next_desc_ptr; /* Next descriptor pointer */
688 unsigned int buf_ptr ; /* Descriptor buffer pointer */
689 unsigned int return_info ; /* User resource return information */
693 typedef struct _eth_tx_desc
695 unsigned short byte_cnt ; /* Descriptor buffer byte count */
696 unsigned short l4i_chk ; /* CPU provided TCP Checksum */
697 unsigned int cmd_sts ; /* Descriptor command status */
698 unsigned int next_desc_ptr; /* Next descriptor pointer */
699 unsigned int buf_ptr ; /* Descriptor buffer pointer */
700 unsigned int return_info ; /* User resource return information */
703 /* Unified struct for Rx and Tx operations. The user is not required to */
704 /* be familier with neither Tx nor Rx descriptors. */
705 typedef struct _pkt_info
707 unsigned short byte_cnt ; /* Descriptor buffer byte count */
708 unsigned short l4i_chk ; /* Tx CPU provided TCP Checksum */
709 unsigned int cmd_sts ; /* Descriptor command status */
710 unsigned int buf_ptr ; /* Descriptor buffer pointer */
711 unsigned int return_info ; /* User resource return information */
715 typedef struct _eth_win_param
717 ETH_ADDR_WIN win; /* Window number. See ETH_ADDR_WIN enum */
718 ETH_TARGET target; /* System targets. See ETH_TARGET enum */
719 unsigned short attributes; /* BAR attributes. See above macros. */
720 unsigned int base_addr; /* Window base address in unsigned int form */
721 unsigned int high_addr; /* Window high address in unsigned int form */
722 unsigned int size; /* Size in MBytes. Must be % 64Kbyte. */
723 bool enable; /* Enable/disable access to the window. */
724 unsigned short access_ctrl; /* Access ctrl register. see above macros */
728 /* Ethernet port specific infomation */
730 typedef struct _eth_port_ctrl
732 ETH_PORT port_num; /* User Ethernet port number */
733 int port_phy_addr; /* User phy address of Ethrnet port */
734 unsigned char port_mac_addr[6]; /* User defined port MAC address. */
735 unsigned int port_config; /* User port configuration value */
736 unsigned int port_config_extend; /* User port config extend value */
737 unsigned int port_sdma_config; /* User port SDMA config value */
738 unsigned int port_serial_control; /* User port serial control value */
739 unsigned int port_tx_queue_command; /* Port active Tx queues summary */
740 unsigned int port_rx_queue_command; /* Port active Rx queues summary */
742 /* User function to cast virtual address to CPU bus address */
743 unsigned int (*port_virt_to_phys)(unsigned int addr);
744 /* User scratch pad for user specific data structures */
747 bool rx_resource_err[MAX_RX_QUEUE_NUM]; /* Rx ring resource error flag */
748 bool tx_resource_err[MAX_TX_QUEUE_NUM]; /* Tx ring resource error flag */
750 /* Tx/Rx rings managment indexes fields. For driver use */
752 /* Next available Rx resource */
753 volatile ETH_RX_DESC *p_rx_curr_desc_q[MAX_RX_QUEUE_NUM];
754 /* Returning Rx resource */
755 volatile ETH_RX_DESC *p_rx_used_desc_q[MAX_RX_QUEUE_NUM];
757 /* Next available Tx resource */
758 volatile ETH_TX_DESC *p_tx_curr_desc_q[MAX_TX_QUEUE_NUM];
759 /* Returning Tx resource */
760 volatile ETH_TX_DESC *p_tx_used_desc_q[MAX_TX_QUEUE_NUM];
761 /* An extra Tx index to support transmit of multiple buffers per packet */
762 volatile ETH_TX_DESC *p_tx_first_desc_q[MAX_TX_QUEUE_NUM];
764 /* Tx/Rx rings size and base variables fields. For driver use */
766 volatile ETH_RX_DESC *p_rx_desc_area_base[MAX_RX_QUEUE_NUM];
767 unsigned int rx_desc_area_size[MAX_RX_QUEUE_NUM];
768 char *p_rx_buffer_base[MAX_RX_QUEUE_NUM];
770 volatile ETH_TX_DESC *p_tx_desc_area_base[MAX_TX_QUEUE_NUM];
771 unsigned int tx_desc_area_size[MAX_TX_QUEUE_NUM];
772 char *p_tx_buffer_base[MAX_TX_QUEUE_NUM];
777 /* ethernet.h API list */
779 /* Port operation control routines */
780 static void eth_port_init (ETH_PORT_INFO *p_eth_port_ctrl);
781 static void eth_port_reset(ETH_PORT eth_port_num);
782 static bool eth_port_start(ETH_PORT_INFO *p_eth_port_ctrl);
785 /* Port MAC address routines */
786 static void eth_port_uc_addr_set (ETH_PORT eth_port_num,
787 unsigned char *p_addr,
790 static void eth_port_mc_addr (ETH_PORT eth_port_num,
791 unsigned char *p_addr,
796 /* PHY and MIB routines */
797 static bool ethernet_phy_reset(ETH_PORT eth_port_num);
799 static bool eth_port_write_smi_reg(ETH_PORT eth_port_num,
800 unsigned int phy_reg,
803 static bool eth_port_read_smi_reg(ETH_PORT eth_port_num,
804 unsigned int phy_reg,
805 unsigned int* value);
807 static void eth_clear_mib_counters(ETH_PORT eth_port_num);
809 /* Port data flow control routines */
810 static ETH_FUNC_RET_STATUS eth_port_send (ETH_PORT_INFO *p_eth_port_ctrl,
812 PKT_INFO *p_pkt_info);
813 static ETH_FUNC_RET_STATUS eth_tx_return_desc(ETH_PORT_INFO *p_eth_port_ctrl,
815 PKT_INFO *p_pkt_info);
816 static ETH_FUNC_RET_STATUS eth_port_receive (ETH_PORT_INFO *p_eth_port_ctrl,
818 PKT_INFO *p_pkt_info);
819 static ETH_FUNC_RET_STATUS eth_rx_return_buff(ETH_PORT_INFO *p_eth_port_ctrl,
821 PKT_INFO *p_pkt_info);
824 static bool ether_init_tx_desc_ring(ETH_PORT_INFO *p_eth_port_ctrl,
828 unsigned int tx_desc_base_addr,
829 unsigned int tx_buff_base_addr);
831 static bool ether_init_rx_desc_ring(ETH_PORT_INFO *p_eth_port_ctrl,
835 unsigned int rx_desc_base_addr,
836 unsigned int rx_buff_base_addr);
838 #endif /* MV64460_ETH_ */