2 * Copyright (C) Freescale Semicondutor, Inc. 2006. All rights reserved.
4 * Author: Shlomi Gridish <gridish@freescale.com>
7 * Internal header file for UCC Gigabit Ethernet unit routines.
10 * Jun 28, 2006 Li Yang <LeoLi@freescale.com>
11 * - Rearrange code and style fixes
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
18 #ifndef __UCC_GETH_H__
19 #define __UCC_GETH_H__
21 #include <linux/kernel.h>
22 #include <linux/list.h>
23 #include <linux/fsl_devices.h>
25 #include <asm/immap_qe.h>
29 #include <asm/ucc_fast.h>
31 #include "ucc_geth_mii.h"
33 #define DRV_DESC "QE UCC Gigabit Ethernet Controller"
34 #define DRV_NAME "ucc_geth"
35 #define DRV_VERSION "1.1"
37 #define NUM_TX_QUEUES 8
38 #define NUM_RX_QUEUES 8
39 #define NUM_BDS_IN_PREFETCHED_BDS 4
40 #define TX_IP_OFFSET_ENTRY_MAX 8
41 #define NUM_OF_PADDRS 4
42 #define ENET_INIT_PARAM_MAX_ENTRIES_RX 9
43 #define ENET_INIT_PARAM_MAX_ENTRIES_TX 8
48 u32 maccfg1; /* mac configuration reg. 1 */
49 u32 maccfg2; /* mac configuration reg. 2 */
50 u32 ipgifg; /* interframe gap reg. */
51 u32 hafdup; /* half-duplex reg. */
53 u8 miimng[0x18]; /* MII management structure moved to _mii.h */
54 u32 ifctl; /* interface control reg */
55 u32 ifstat; /* interface statux reg */
56 u32 macstnaddr1; /* mac station address part 1 reg */
57 u32 macstnaddr2; /* mac station address part 2 reg */
59 u32 uempr; /* UCC Ethernet Mac parameter reg */
60 u32 utbipar; /* UCC tbi address reg */
61 u16 uescr; /* UCC Ethernet statistics control reg */
62 u8 res3[0x180 - 0x15A];
63 u32 tx64; /* Total number of frames (including bad
64 frames) transmitted that were exactly of the
65 minimal length (64 for un tagged, 68 for
66 tagged, or with length exactly equal to the
67 parameter MINLength */
68 u32 tx127; /* Total number of frames (including bad
69 frames) transmitted that were between
70 MINLength (Including FCS length==4) and 127
72 u32 tx255; /* Total number of frames (including bad
73 frames) transmitted that were between 128
74 (Including FCS length==4) and 255 octets */
75 u32 rx64; /* Total number of frames received including
76 bad frames that were exactly of the mninimal
78 u32 rx127; /* Total number of frames (including bad
79 frames) received that were between MINLength
80 (Including FCS length==4) and 127 octets */
81 u32 rx255; /* Total number of frames (including bad
82 frames) received that were between 128
83 (Including FCS length==4) and 255 octets */
84 u32 txok; /* Total number of octets residing in frames
85 that where involved in succesfull
87 u16 txcf; /* Total number of PAUSE control frames
88 transmitted by this MAC */
90 u32 tmca; /* Total number of frames that were transmitted
91 succesfully with the group address bit set
92 that are not broadcast frames */
93 u32 tbca; /* Total number of frames transmitted
94 succesfully that had destination address
95 field equal to the broadcast address */
96 u32 rxfok; /* Total number of frames received OK */
97 u32 rxbok; /* Total number of octets received OK */
98 u32 rbyt; /* Total number of octets received including
99 octets in bad frames. Must be implemented in
100 HW because it includes octets in frames that
101 never even reach the UCC */
102 u32 rmca; /* Total number of frames that were received
103 succesfully with the group address bit set
104 that are not broadcast frames */
105 u32 rbca; /* Total number of frames received succesfully
106 that had destination address equal to the
108 u32 scar; /* Statistics carry register */
109 u32 scam; /* Statistics caryy mask register */
110 u8 res5[0x200 - 0x1c4];
111 } __attribute__ ((packed));
113 /* UCC GETH TEMODR Register */
114 #define TEMODER_TX_RMON_STATISTICS_ENABLE 0x0100 /* enable Tx statistics
116 #define TEMODER_SCHEDULER_ENABLE 0x2000 /* enable scheduler */
117 #define TEMODER_IP_CHECKSUM_GENERATE 0x0400 /* generate IPv4
119 #define TEMODER_PERFORMANCE_OPTIMIZATION_MODE1 0x0200 /* enable performance
121 enhancement (mode1) */
122 #define TEMODER_RMON_STATISTICS 0x0100 /* enable tx statistics
124 #define TEMODER_NUM_OF_QUEUES_SHIFT (15-15) /* Number of queues <<
127 /* UCC GETH TEMODR Register */
128 #define REMODER_RX_RMON_STATISTICS_ENABLE 0x00001000 /* enable Rx
130 #define REMODER_RX_EXTENDED_FEATURES 0x80000000 /* enable
133 #define REMODER_VLAN_OPERATION_TAGGED_SHIFT (31-9 ) /* vlan operation
135 #define REMODER_VLAN_OPERATION_NON_TAGGED_SHIFT (31-10) /* vlan operation non
137 #define REMODER_RX_QOS_MODE_SHIFT (31-15) /* rx QoS mode << shift
139 #define REMODER_RMON_STATISTICS 0x00001000 /* enable rx
141 #define REMODER_RX_EXTENDED_FILTERING 0x00000800 /* extended
146 #define REMODER_NUM_OF_QUEUES_SHIFT (31-23) /* Number of queues <<
148 #define REMODER_DYNAMIC_MAX_FRAME_LENGTH 0x00000008 /* enable
152 #define REMODER_DYNAMIC_MIN_FRAME_LENGTH 0x00000004 /* enable
156 #define REMODER_IP_CHECKSUM_CHECK 0x00000002 /* check IPv4
158 #define REMODER_IP_ADDRESS_ALIGNMENT 0x00000001 /* align ip
163 /* UCC GETH Event Register */
164 #define UCCE_MPD 0x80000000 /* Magic packet
166 #define UCCE_SCAR 0x40000000
167 #define UCCE_GRA 0x20000000 /* Tx graceful
170 #define UCCE_CBPR 0x10000000
171 #define UCCE_BSY 0x08000000
172 #define UCCE_RXC 0x04000000
173 #define UCCE_TXC 0x02000000
174 #define UCCE_TXE 0x01000000
175 #define UCCE_TXB7 0x00800000
176 #define UCCE_TXB6 0x00400000
177 #define UCCE_TXB5 0x00200000
178 #define UCCE_TXB4 0x00100000
179 #define UCCE_TXB3 0x00080000
180 #define UCCE_TXB2 0x00040000
181 #define UCCE_TXB1 0x00020000
182 #define UCCE_TXB0 0x00010000
183 #define UCCE_RXB7 0x00008000
184 #define UCCE_RXB6 0x00004000
185 #define UCCE_RXB5 0x00002000
186 #define UCCE_RXB4 0x00001000
187 #define UCCE_RXB3 0x00000800
188 #define UCCE_RXB2 0x00000400
189 #define UCCE_RXB1 0x00000200
190 #define UCCE_RXB0 0x00000100
191 #define UCCE_RXF7 0x00000080
192 #define UCCE_RXF6 0x00000040
193 #define UCCE_RXF5 0x00000020
194 #define UCCE_RXF4 0x00000010
195 #define UCCE_RXF3 0x00000008
196 #define UCCE_RXF2 0x00000004
197 #define UCCE_RXF1 0x00000002
198 #define UCCE_RXF0 0x00000001
200 #define UCCE_RXBF_SINGLE_MASK (UCCE_RXF0)
201 #define UCCE_TXBF_SINGLE_MASK (UCCE_TXB0)
203 #define UCCE_TXB (UCCE_TXB7 | UCCE_TXB6 | UCCE_TXB5 | UCCE_TXB4 |\
204 UCCE_TXB3 | UCCE_TXB2 | UCCE_TXB1 | UCCE_TXB0)
205 #define UCCE_RXB (UCCE_RXB7 | UCCE_RXB6 | UCCE_RXB5 | UCCE_RXB4 |\
206 UCCE_RXB3 | UCCE_RXB2 | UCCE_RXB1 | UCCE_RXB0)
207 #define UCCE_RXF (UCCE_RXF7 | UCCE_RXF6 | UCCE_RXF5 | UCCE_RXF4 |\
208 UCCE_RXF3 | UCCE_RXF2 | UCCE_RXF1 | UCCE_RXF0)
209 #define UCCE_OTHER (UCCE_SCAR | UCCE_GRA | UCCE_CBPR | UCCE_BSY |\
210 UCCE_RXC | UCCE_TXC | UCCE_TXE)
212 #define UCCE_RX_EVENTS (UCCE_RXF | UCCE_BSY)
213 #define UCCE_TX_EVENTS (UCCE_TXB | UCCE_TXE)
215 /* UCC GETH UPSMR (Protocol Specific Mode Register) */
216 #define UPSMR_ECM 0x04000000 /* Enable CAM
221 #define UPSMR_HSE 0x02000000 /* Hardware
224 #define UPSMR_PRO 0x00400000 /* Promiscuous*/
225 #define UPSMR_CAP 0x00200000 /* CAM polarity
227 #define UPSMR_RSH 0x00100000 /* Receive
230 #define UPSMR_RPM 0x00080000 /* Reduced Pin
233 #define UPSMR_R10M 0x00040000 /* RGMII/RMII
235 #define UPSMR_RLPB 0x00020000 /* RMII
238 #define UPSMR_TBIM 0x00010000 /* Ten-bit
241 #define UPSMR_RMM 0x00001000 /* RMII/RGMII
243 #define UPSMR_CAM 0x00000400 /* CAM Address
245 #define UPSMR_BRO 0x00000200 /* Broadcast
247 #define UPSMR_RES1 0x00002000 /* Reserved
251 /* UCC GETH MACCFG1 (MAC Configuration 1 Register) */
252 #define MACCFG1_FLOW_RX 0x00000020 /* Flow Control
254 #define MACCFG1_FLOW_TX 0x00000010 /* Flow Control
256 #define MACCFG1_ENABLE_SYNCHED_RX 0x00000008 /* Rx Enable
260 #define MACCFG1_ENABLE_RX 0x00000004 /* Enable Rx */
261 #define MACCFG1_ENABLE_SYNCHED_TX 0x00000002 /* Tx Enable
265 #define MACCFG1_ENABLE_TX 0x00000001 /* Enable Tx */
267 /* UCC GETH MACCFG2 (MAC Configuration 2 Register) */
268 #define MACCFG2_PREL_SHIFT (31 - 19) /* Preamble
271 #define MACCFG2_PREL_MASK 0x0000f000 /* Preamble
273 #define MACCFG2_SRP 0x00000080 /* Soft Receive
275 #define MACCFG2_STP 0x00000040 /* Soft
278 #define MACCFG2_RESERVED_1 0x00000020 /* Reserved -
281 #define MACCFG2_LC 0x00000010 /* Length Check
283 #define MACCFG2_MPE 0x00000008 /* Magic packet
285 #define MACCFG2_FDX 0x00000001 /* Full Duplex */
286 #define MACCFG2_FDX_MASK 0x00000001 /* Full Duplex
288 #define MACCFG2_PAD_CRC 0x00000004
289 #define MACCFG2_CRC_EN 0x00000002
290 #define MACCFG2_PAD_AND_CRC_MODE_NONE 0x00000000 /* Neither
294 #define MACCFG2_PAD_AND_CRC_MODE_CRC_ONLY 0x00000002 /* Append CRC
296 #define MACCFG2_PAD_AND_CRC_MODE_PAD_AND_CRC 0x00000004
297 #define MACCFG2_INTERFACE_MODE_NIBBLE 0x00000100 /* nibble mode
300 #define MACCFG2_INTERFACE_MODE_BYTE 0x00000200 /* byte mode
303 #define MACCFG2_INTERFACE_MODE_MASK 0x00000300 /* mask
308 /* UCC GETH IPGIFG (Inter-frame Gap / Inter-Frame Gap Register) */
309 #define IPGIFG_NON_BACK_TO_BACK_IFG_PART1_SHIFT (31 - 7) /* Non
314 #define IPGIFG_NON_BACK_TO_BACK_IFG_PART2_SHIFT (31 - 15) /* Non
319 #define IPGIFG_MINIMUM_IFG_ENFORCEMENT_SHIFT (31 - 23) /* Mimimum IFG
322 #define IPGIFG_BACK_TO_BACK_IFG_SHIFT (31 - 31) /* back-to-back
326 #define IPGIFG_NON_BACK_TO_BACK_IFG_PART1_MAX 127 /* Non back-to-back
329 #define IPGIFG_NON_BACK_TO_BACK_IFG_PART2_MAX 127 /* Non back-to-back
332 #define IPGIFG_MINIMUM_IFG_ENFORCEMENT_MAX 255 /* Mimimum IFG
333 Enforcement max val */
334 #define IPGIFG_BACK_TO_BACK_IFG_MAX 127 /* back-to-back inter
336 #define IPGIFG_NBTB_CS_IPG_MASK 0x7F000000
337 #define IPGIFG_NBTB_IPG_MASK 0x007F0000
338 #define IPGIFG_MIN_IFG_MASK 0x0000FF00
339 #define IPGIFG_BTB_IPG_MASK 0x0000007F
341 /* UCC GETH HAFDUP (Half Duplex Register) */
342 #define HALFDUP_ALT_BEB_TRUNCATION_SHIFT (31 - 11) /* Alternate
348 #define HALFDUP_ALT_BEB_TRUNCATION_MAX 0xf /* Alternate Binary
350 Truncation max val */
351 #define HALFDUP_ALT_BEB 0x00080000 /* Alternate
355 #define HALFDUP_BACK_PRESSURE_NO_BACKOFF 0x00040000 /* Back
358 #define HALFDUP_NO_BACKOFF 0x00020000 /* No Backoff */
359 #define HALFDUP_EXCESSIVE_DEFER 0x00010000 /* Excessive
361 #define HALFDUP_MAX_RETRANSMISSION_SHIFT (31 - 19) /* Maximum
364 #define HALFDUP_MAX_RETRANSMISSION_MAX 0xf /* Maximum
367 #define HALFDUP_COLLISION_WINDOW_SHIFT (31 - 31) /* Collision
370 #define HALFDUP_COLLISION_WINDOW_MAX 0x3f /* Collision Window max
372 #define HALFDUP_ALT_BEB_TR_MASK 0x00F00000
373 #define HALFDUP_RETRANS_MASK 0x0000F000
374 #define HALFDUP_COL_WINDOW_MASK 0x0000003F
376 /* UCC GETH UCCS (Ethernet Status Register) */
377 #define UCCS_BPR 0x02 /* Back pressure (in
379 #define UCCS_PAU 0x02 /* Pause state (in full
381 #define UCCS_MPD 0x01 /* Magic Packet
384 /* UCC GETH IFSTAT (Interface Status Register) */
385 #define IFSTAT_EXCESS_DEFER 0x00000200 /* Excessive
389 /* UCC GETH MACSTNADDR1 (Station Address Part 1 Register) */
390 #define MACSTNADDR1_OCTET_6_SHIFT (31 - 7) /* Station
394 #define MACSTNADDR1_OCTET_5_SHIFT (31 - 15) /* Station
398 #define MACSTNADDR1_OCTET_4_SHIFT (31 - 23) /* Station
402 #define MACSTNADDR1_OCTET_3_SHIFT (31 - 31) /* Station
407 /* UCC GETH MACSTNADDR2 (Station Address Part 2 Register) */
408 #define MACSTNADDR2_OCTET_2_SHIFT (31 - 7) /* Station
412 #define MACSTNADDR2_OCTET_1_SHIFT (31 - 15) /* Station
417 /* UCC GETH UEMPR (Ethernet Mac Parameter Register) */
418 #define UEMPR_PAUSE_TIME_VALUE_SHIFT (31 - 15) /* Pause time
421 #define UEMPR_EXTENDED_PAUSE_TIME_VALUE_SHIFT (31 - 31) /* Extended
426 /* UCC GETH UTBIPAR (Ten Bit Interface Physical Address Register) */
427 #define UTBIPAR_PHY_ADDRESS_SHIFT (31 - 31) /* Phy address
429 #define UTBIPAR_PHY_ADDRESS_MASK 0x0000001f /* Phy address
432 /* UCC GETH UESCR (Ethernet Statistics Control Register) */
433 #define UESCR_AUTOZ 0x8000 /* Automatically zero
437 #define UESCR_CLRCNT 0x4000 /* Clear all statistics
439 #define UESCR_MAXCOV_SHIFT (15 - 7) /* Max
443 #define UESCR_SCOV_SHIFT (15 - 15) /* Status
448 /* UCC GETH UDSR (Data Synchronization Register) */
449 #define UDSR_MAGIC 0x067E
451 struct ucc_geth_thread_data_tx {
453 } __attribute__ ((packed));
455 struct ucc_geth_thread_data_rx {
457 } __attribute__ ((packed));
459 /* Send Queue Queue-Descriptor */
460 struct ucc_geth_send_queue_qd {
461 u32 bd_ring_base; /* pointer to BD ring base address */
463 u32 last_bd_completed_address;/* initialize to last entry in BD ring */
465 } __attribute__ ((packed));
467 struct ucc_geth_send_queue_mem_region {
468 struct ucc_geth_send_queue_qd sqqd[NUM_TX_QUEUES];
469 } __attribute__ ((packed));
471 struct ucc_geth_thread_tx_pram {
473 } __attribute__ ((packed));
475 struct ucc_geth_thread_rx_pram {
477 } __attribute__ ((packed));
479 #define THREAD_RX_PRAM_ADDITIONAL_FOR_EXTENDED_FILTERING 64
480 #define THREAD_RX_PRAM_ADDITIONAL_FOR_EXTENDED_FILTERING_8 64
481 #define THREAD_RX_PRAM_ADDITIONAL_FOR_EXTENDED_FILTERING_16 96
483 struct ucc_geth_scheduler {
484 u16 cpucount0; /* CPU packet counter */
485 u16 cpucount1; /* CPU packet counter */
486 u16 cecount0; /* QE packet counter */
487 u16 cecount1; /* QE packet counter */
488 u16 cpucount2; /* CPU packet counter */
489 u16 cpucount3; /* CPU packet counter */
490 u16 cecount2; /* QE packet counter */
491 u16 cecount3; /* QE packet counter */
492 u16 cpucount4; /* CPU packet counter */
493 u16 cpucount5; /* CPU packet counter */
494 u16 cecount4; /* QE packet counter */
495 u16 cecount5; /* QE packet counter */
496 u16 cpucount6; /* CPU packet counter */
497 u16 cpucount7; /* CPU packet counter */
498 u16 cecount6; /* QE packet counter */
499 u16 cecount7; /* QE packet counter */
500 u32 weightstatus[NUM_TX_QUEUES]; /* accumulated weight factor */
501 u32 rtsrshadow; /* temporary variable handled by QE */
502 u32 time; /* temporary variable handled by QE */
503 u32 ttl; /* temporary variable handled by QE */
504 u32 mblinterval; /* max burst length interval */
505 u16 nortsrbytetime; /* normalized value of byte time in tsr units */
506 u8 fracsiz; /* radix 2 log value of denom. of
509 u8 strictpriorityq; /* Strict Priority Mask register */
510 u8 txasap; /* Transmit ASAP register */
511 u8 extrabw; /* Extra BandWidth register */
512 u8 oldwfqmask; /* temporary variable handled by QE */
513 u8 weightfactor[NUM_TX_QUEUES];
514 /**< weight factor for queues */
515 u32 minw; /* temporary variable handled by QE */
516 u8 res1[0x70 - 0x64];
517 } __attribute__ ((packed));
519 struct ucc_geth_tx_firmware_statistics_pram {
520 u32 sicoltx; /* single collision */
521 u32 mulcoltx; /* multiple collision */
522 u32 latecoltxfr; /* late collision */
523 u32 frabortduecol; /* frames aborted due to transmit collision */
524 u32 frlostinmactxer; /* frames lost due to internal MAC error
525 transmission that are not counted on any
527 u32 carriersenseertx; /* carrier sense error */
528 u32 frtxok; /* frames transmitted OK */
529 u32 txfrexcessivedefer; /* frames with defferal time greater than
530 specified threshold */
531 u32 txpkts256; /* total packets (including bad) between 256
533 u32 txpkts512; /* total packets (including bad) between 512
535 u32 txpkts1024; /* total packets (including bad) between 1024
537 u32 txpktsjumbo; /* total packets (including bad) between 1024
538 and MAXLength octets */
539 } __attribute__ ((packed));
541 struct ucc_geth_rx_firmware_statistics_pram {
542 u32 frrxfcser; /* frames with crc error */
543 u32 fraligner; /* frames with alignment error */
544 u32 inrangelenrxer; /* in range length error */
545 u32 outrangelenrxer; /* out of range length error */
546 u32 frtoolong; /* frame too long */
548 u32 verylongevent; /* very long event */
549 u32 symbolerror; /* symbol error */
550 u32 dropbsy; /* drop because of BD not ready */
552 u32 mismatchdrop; /* drop because of MAC filtering (e.g. address
554 u32 underpkts; /* total frames less than 64 octets */
555 u32 pkts256; /* total frames (including bad) between 256 and
557 u32 pkts512; /* total frames (including bad) between 512 and
559 u32 pkts1024; /* total frames (including bad) between 1024
561 u32 pktsjumbo; /* total frames (including bad) between 1024
562 and MAXLength octets */
563 u32 frlossinmacer; /* frames lost because of internal MAC error
564 that is not counted in any other counter */
565 u32 pausefr; /* pause frames */
567 u32 removevlan; /* total frames that had their VLAN tag removed
569 u32 replacevlan; /* total frames that had their VLAN tag
571 u32 insertvlan; /* total frames that had their VLAN tag
573 } __attribute__ ((packed));
575 struct ucc_geth_rx_interrupt_coalescing_entry {
576 u32 interruptcoalescingmaxvalue; /* interrupt coalescing max
578 u32 interruptcoalescingcounter; /* interrupt coalescing counter,
580 interruptcoalescingmaxvalue */
581 } __attribute__ ((packed));
583 struct ucc_geth_rx_interrupt_coalescing_table {
584 struct ucc_geth_rx_interrupt_coalescing_entry coalescingentry[NUM_RX_QUEUES];
585 /**< interrupt coalescing entry */
586 } __attribute__ ((packed));
588 struct ucc_geth_rx_prefetched_bds {
589 struct qe_bd bd[NUM_BDS_IN_PREFETCHED_BDS]; /* prefetched bd */
590 } __attribute__ ((packed));
592 struct ucc_geth_rx_bd_queues_entry {
593 u32 bdbaseptr; /* BD base pointer */
594 u32 bdptr; /* BD pointer */
595 u32 externalbdbaseptr; /* external BD base pointer */
596 u32 externalbdptr; /* external BD pointer */
597 } __attribute__ ((packed));
599 struct ucc_geth_tx_global_pram {
601 u8 res0[0x38 - 0x02];
602 u32 sqptr; /* a base pointer to send queue memory region */
603 u32 schedulerbasepointer; /* a base pointer to scheduler memory
605 u32 txrmonbaseptr; /* base pointer to Tx RMON statistics counter */
606 u32 tstate; /* tx internal state. High byte contains
608 u8 iphoffset[TX_IP_OFFSET_ENTRY_MAX];
609 u32 vtagtable[0x8]; /* 8 4-byte VLAN tags */
610 u32 tqptr; /* a base pointer to the Tx Queues Memory
612 u8 res2[0x80 - 0x74];
613 } __attribute__ ((packed));
615 /* structure representing Extended Filtering Global Parameters in PRAM */
616 struct ucc_geth_exf_global_pram {
617 u32 l2pcdptr; /* individual address filter, high */
618 u8 res0[0x10 - 0x04];
619 } __attribute__ ((packed));
621 struct ucc_geth_rx_global_pram {
622 u32 remoder; /* ethernet mode reg. */
623 u32 rqptr; /* base pointer to the Rx Queues Memory Region*/
626 u16 typeorlen; /* cutoff point less than which, type/len field
627 is considered length */
629 u8 rxgstpack; /* acknowledgement on GRACEFUL STOP RX command*/
630 u32 rxrmonbaseptr; /* base pointer to Rx RMON statistics counter */
631 u8 res3[0x30 - 0x28];
632 u32 intcoalescingptr; /* Interrupt coalescing table pointer */
633 u8 res4[0x36 - 0x34];
634 u8 rstate; /* rx internal state. High byte contains
636 u8 res5[0x46 - 0x37];
637 u16 mrblr; /* max receive buffer length reg. */
638 u32 rbdqptr; /* base pointer to RxBD parameter table
640 u16 mflr; /* max frame length reg. */
641 u16 minflr; /* min frame length reg. */
642 u16 maxd1; /* max dma1 length reg. */
643 u16 maxd2; /* max dma2 length reg. */
644 u32 ecamptr; /* external CAM address */
645 u32 l2qt; /* VLAN priority mapping table. */
646 u32 l3qt[0x8]; /* IP priority mapping table. */
647 u16 vlantype; /* vlan type */
648 u16 vlantci; /* default vlan tci */
649 u8 addressfiltering[64]; /* address filtering data structure */
650 u32 exfGlobalParam; /* base address for extended filtering global
652 u8 res6[0x100 - 0xC4]; /* Initialize to zero */
653 } __attribute__ ((packed));
655 #define GRACEFUL_STOP_ACKNOWLEDGE_RX 0x01
657 /* structure representing InitEnet command */
658 struct ucc_geth_init_pram {
665 u8 largestexternallookupkeysize;
667 u32 rxthread[ENET_INIT_PARAM_MAX_ENTRIES_RX]; /* rx threads */
668 u8 res2[0x38 - 0x30];
669 u32 txglobal; /* tx global */
670 u32 txthread[ENET_INIT_PARAM_MAX_ENTRIES_TX]; /* tx threads */
672 } __attribute__ ((packed));
674 #define ENET_INIT_PARAM_RGF_SHIFT (32 - 4)
675 #define ENET_INIT_PARAM_TGF_SHIFT (32 - 8)
677 #define ENET_INIT_PARAM_RISC_MASK 0x0000003f
678 #define ENET_INIT_PARAM_PTR_MASK 0x00ffffc0
679 #define ENET_INIT_PARAM_SNUM_MASK 0xff000000
680 #define ENET_INIT_PARAM_SNUM_SHIFT 24
682 #define ENET_INIT_PARAM_MAGIC_RES_INIT1 0x06
683 #define ENET_INIT_PARAM_MAGIC_RES_INIT2 0x30
684 #define ENET_INIT_PARAM_MAGIC_RES_INIT3 0xff
685 #define ENET_INIT_PARAM_MAGIC_RES_INIT4 0x00
686 #define ENET_INIT_PARAM_MAGIC_RES_INIT5 0x0400
688 /* structure representing 82xx Address Filtering Enet Address in PRAM */
689 struct ucc_geth_82xx_enet_address {
691 u16 h; /* address (MSB) */
693 u16 l; /* address (LSB) */
694 } __attribute__ ((packed));
696 /* structure representing 82xx Address Filtering PRAM */
697 struct ucc_geth_82xx_address_filtering_pram {
698 u32 iaddr_h; /* individual address filter, high */
699 u32 iaddr_l; /* individual address filter, low */
700 u32 gaddr_h; /* group address filter, high */
701 u32 gaddr_l; /* group address filter, low */
702 struct ucc_geth_82xx_enet_address taddr;
703 struct ucc_geth_82xx_enet_address paddr[NUM_OF_PADDRS];
704 u8 res0[0x40 - 0x38];
705 } __attribute__ ((packed));
707 /* GETH Tx firmware statistics structure, used when calling
708 UCC_GETH_GetStatistics. */
709 struct ucc_geth_tx_firmware_statistics {
710 u32 sicoltx; /* single collision */
711 u32 mulcoltx; /* multiple collision */
712 u32 latecoltxfr; /* late collision */
713 u32 frabortduecol; /* frames aborted due to transmit collision */
714 u32 frlostinmactxer; /* frames lost due to internal MAC error
715 transmission that are not counted on any
717 u32 carriersenseertx; /* carrier sense error */
718 u32 frtxok; /* frames transmitted OK */
719 u32 txfrexcessivedefer; /* frames with defferal time greater than
720 specified threshold */
721 u32 txpkts256; /* total packets (including bad) between 256
723 u32 txpkts512; /* total packets (including bad) between 512
725 u32 txpkts1024; /* total packets (including bad) between 1024
727 u32 txpktsjumbo; /* total packets (including bad) between 1024
728 and MAXLength octets */
729 } __attribute__ ((packed));
731 /* GETH Rx firmware statistics structure, used when calling
732 UCC_GETH_GetStatistics. */
733 struct ucc_geth_rx_firmware_statistics {
734 u32 frrxfcser; /* frames with crc error */
735 u32 fraligner; /* frames with alignment error */
736 u32 inrangelenrxer; /* in range length error */
737 u32 outrangelenrxer; /* out of range length error */
738 u32 frtoolong; /* frame too long */
740 u32 verylongevent; /* very long event */
741 u32 symbolerror; /* symbol error */
742 u32 dropbsy; /* drop because of BD not ready */
744 u32 mismatchdrop; /* drop because of MAC filtering (e.g. address
746 u32 underpkts; /* total frames less than 64 octets */
747 u32 pkts256; /* total frames (including bad) between 256 and
749 u32 pkts512; /* total frames (including bad) between 512 and
751 u32 pkts1024; /* total frames (including bad) between 1024
753 u32 pktsjumbo; /* total frames (including bad) between 1024
754 and MAXLength octets */
755 u32 frlossinmacer; /* frames lost because of internal MAC error
756 that is not counted in any other counter */
757 u32 pausefr; /* pause frames */
759 u32 removevlan; /* total frames that had their VLAN tag removed
761 u32 replacevlan; /* total frames that had their VLAN tag
763 u32 insertvlan; /* total frames that had their VLAN tag
765 } __attribute__ ((packed));
767 /* GETH hardware statistics structure, used when calling
768 UCC_GETH_GetStatistics. */
769 struct ucc_geth_hardware_statistics {
770 u32 tx64; /* Total number of frames (including bad
771 frames) transmitted that were exactly of the
772 minimal length (64 for un tagged, 68 for
773 tagged, or with length exactly equal to the
774 parameter MINLength */
775 u32 tx127; /* Total number of frames (including bad
776 frames) transmitted that were between
777 MINLength (Including FCS length==4) and 127
779 u32 tx255; /* Total number of frames (including bad
780 frames) transmitted that were between 128
781 (Including FCS length==4) and 255 octets */
782 u32 rx64; /* Total number of frames received including
783 bad frames that were exactly of the mninimal
785 u32 rx127; /* Total number of frames (including bad
786 frames) received that were between MINLength
787 (Including FCS length==4) and 127 octets */
788 u32 rx255; /* Total number of frames (including bad
789 frames) received that were between 128
790 (Including FCS length==4) and 255 octets */
791 u32 txok; /* Total number of octets residing in frames
792 that where involved in succesfull
794 u16 txcf; /* Total number of PAUSE control frames
795 transmitted by this MAC */
796 u32 tmca; /* Total number of frames that were transmitted
797 succesfully with the group address bit set
798 that are not broadcast frames */
799 u32 tbca; /* Total number of frames transmitted
800 succesfully that had destination address
801 field equal to the broadcast address */
802 u32 rxfok; /* Total number of frames received OK */
803 u32 rxbok; /* Total number of octets received OK */
804 u32 rbyt; /* Total number of octets received including
805 octets in bad frames. Must be implemented in
806 HW because it includes octets in frames that
807 never even reach the UCC */
808 u32 rmca; /* Total number of frames that were received
809 succesfully with the group address bit set
810 that are not broadcast frames */
811 u32 rbca; /* Total number of frames received succesfully
812 that had destination address equal to the
814 } __attribute__ ((packed));
816 /* UCC GETH Tx errors returned via TxConf callback */
817 #define TX_ERRORS_DEF 0x0200
818 #define TX_ERRORS_EXDEF 0x0100
819 #define TX_ERRORS_LC 0x0080
820 #define TX_ERRORS_RL 0x0040
821 #define TX_ERRORS_RC_MASK 0x003C
822 #define TX_ERRORS_RC_SHIFT 2
823 #define TX_ERRORS_UN 0x0002
824 #define TX_ERRORS_CSL 0x0001
826 /* UCC GETH Rx errors returned via RxStore callback */
827 #define RX_ERRORS_CMR 0x0200
828 #define RX_ERRORS_M 0x0100
829 #define RX_ERRORS_BC 0x0080
830 #define RX_ERRORS_MC 0x0040
832 /* Transmit BD. These are in addition to values defined in uccf. */
833 #define T_VID 0x003c0000 /* insert VLAN id index mask. */
834 #define T_DEF (((u32) TX_ERRORS_DEF ) << 16)
835 #define T_EXDEF (((u32) TX_ERRORS_EXDEF ) << 16)
836 #define T_LC (((u32) TX_ERRORS_LC ) << 16)
837 #define T_RL (((u32) TX_ERRORS_RL ) << 16)
838 #define T_RC_MASK (((u32) TX_ERRORS_RC_MASK ) << 16)
839 #define T_UN (((u32) TX_ERRORS_UN ) << 16)
840 #define T_CSL (((u32) TX_ERRORS_CSL ) << 16)
841 #define T_ERRORS_REPORT (T_DEF | T_EXDEF | T_LC | T_RL | T_RC_MASK \
842 | T_UN | T_CSL) /* transmit errors to report */
844 /* Receive BD. These are in addition to values defined in uccf. */
845 #define R_LG 0x00200000 /* Frame length violation. */
846 #define R_NO 0x00100000 /* Non-octet aligned frame. */
847 #define R_SH 0x00080000 /* Short frame. */
848 #define R_CR 0x00040000 /* CRC error. */
849 #define R_OV 0x00020000 /* Overrun. */
850 #define R_IPCH 0x00010000 /* IP checksum check failed. */
851 #define R_CMR (((u32) RX_ERRORS_CMR ) << 16)
852 #define R_M (((u32) RX_ERRORS_M ) << 16)
853 #define R_BC (((u32) RX_ERRORS_BC ) << 16)
854 #define R_MC (((u32) RX_ERRORS_MC ) << 16)
855 #define R_ERRORS_REPORT (R_CMR | R_M | R_BC | R_MC) /* receive errors to
857 #define R_ERRORS_FATAL (R_LG | R_NO | R_SH | R_CR | \
858 R_OV | R_IPCH) /* receive errors to discard */
861 #define UCC_GETH_RX_GLOBAL_PRAM_ALIGNMENT 256
862 #define UCC_GETH_TX_GLOBAL_PRAM_ALIGNMENT 128
863 #define UCC_GETH_THREAD_RX_PRAM_ALIGNMENT 128
864 #define UCC_GETH_THREAD_TX_PRAM_ALIGNMENT 64
865 #define UCC_GETH_THREAD_DATA_ALIGNMENT 256 /* spec gives values
870 #define UCC_GETH_SEND_QUEUE_QUEUE_DESCRIPTOR_ALIGNMENT 32
871 #define UCC_GETH_SCHEDULER_ALIGNMENT 4 /* This is a guess */
872 #define UCC_GETH_TX_STATISTICS_ALIGNMENT 4 /* This is a guess */
873 #define UCC_GETH_RX_STATISTICS_ALIGNMENT 4 /* This is a guess */
874 #define UCC_GETH_RX_INTERRUPT_COALESCING_ALIGNMENT 64
875 #define UCC_GETH_RX_BD_QUEUES_ALIGNMENT 8 /* This is a guess */
876 #define UCC_GETH_RX_PREFETCHED_BDS_ALIGNMENT 128 /* This is a guess */
877 #define UCC_GETH_RX_EXTENDED_FILTERING_GLOBAL_PARAMETERS_ALIGNMENT 4 /* This
881 #define UCC_GETH_RX_BD_RING_ALIGNMENT 32
882 #define UCC_GETH_TX_BD_RING_ALIGNMENT 32
883 #define UCC_GETH_MRBLR_ALIGNMENT 128
884 #define UCC_GETH_RX_BD_RING_SIZE_ALIGNMENT 4
885 #define UCC_GETH_TX_BD_RING_SIZE_MEMORY_ALIGNMENT 32
886 #define UCC_GETH_RX_DATA_BUF_ALIGNMENT 64
888 #define UCC_GETH_TAD_EF 0x80
889 #define UCC_GETH_TAD_V 0x40
890 #define UCC_GETH_TAD_REJ 0x20
891 #define UCC_GETH_TAD_VTAG_OP_RIGHT_SHIFT 2
892 #define UCC_GETH_TAD_VTAG_OP_SHIFT 6
893 #define UCC_GETH_TAD_V_NON_VTAG_OP 0x20
894 #define UCC_GETH_TAD_RQOS_SHIFT 0
895 #define UCC_GETH_TAD_V_PRIORITY_SHIFT 5
896 #define UCC_GETH_TAD_CFI 0x10
898 #define UCC_GETH_VLAN_PRIORITY_MAX 8
899 #define UCC_GETH_IP_PRIORITY_MAX 64
900 #define UCC_GETH_TX_VTAG_TABLE_ENTRY_MAX 8
901 #define UCC_GETH_RX_BD_RING_SIZE_MIN 8
902 #define UCC_GETH_TX_BD_RING_SIZE_MIN 2
903 #define UCC_GETH_BD_RING_SIZE_MAX 0xffff
905 #define UCC_GETH_SIZE_OF_BD QE_SIZEOF_BD
907 /* Driver definitions */
908 #define TX_BD_RING_LEN 0x10
909 #define RX_BD_RING_LEN 0x10
910 #define UCC_GETH_DEV_WEIGHT TX_BD_RING_LEN
912 #define TX_RING_MOD_MASK(size) (size-1)
913 #define RX_RING_MOD_MASK(size) (size-1)
915 #define ENET_NUM_OCTETS_PER_ADDRESS 6
916 #define ENET_GROUP_ADDR 0x01 /* Group address mask
920 #define TX_TIMEOUT (1*HZ)
921 #define SKB_ALLOC_TIMEOUT 100000
922 #define PHY_INIT_TIMEOUT 100000
923 #define PHY_CHANGE_TIME 2
925 /* Fast Ethernet (10/100 Mbps) */
926 #define UCC_GETH_URFS_INIT 512 /* Rx virtual FIFO size
928 #define UCC_GETH_URFET_INIT 256 /* 1/2 urfs */
929 #define UCC_GETH_URFSET_INIT 384 /* 3/4 urfs */
930 #define UCC_GETH_UTFS_INIT 512 /* Tx virtual FIFO size
932 #define UCC_GETH_UTFET_INIT 256 /* 1/2 utfs */
933 #define UCC_GETH_UTFTT_INIT 128
934 /* Gigabit Ethernet (1000 Mbps) */
935 #define UCC_GETH_URFS_GIGA_INIT 4096/*2048*/ /* Rx virtual
937 #define UCC_GETH_URFET_GIGA_INIT 2048/*1024*/ /* 1/2 urfs */
938 #define UCC_GETH_URFSET_GIGA_INIT 3072/*1536*/ /* 3/4 urfs */
939 #define UCC_GETH_UTFS_GIGA_INIT 8192/*2048*/ /* Tx virtual
941 #define UCC_GETH_UTFET_GIGA_INIT 4096/*1024*/ /* 1/2 utfs */
942 #define UCC_GETH_UTFTT_GIGA_INIT 0x400/*0x40*/ /* */
944 #define UCC_GETH_REMODER_INIT 0 /* bits that must be
946 #define UCC_GETH_TEMODER_INIT 0xC000 /* bits that must */
947 #define UCC_GETH_UPSMR_INIT (UPSMR_RES1) /* Start value
950 #define UCC_GETH_MACCFG1_INIT 0
951 #define UCC_GETH_MACCFG2_INIT (MACCFG2_RESERVED_1)
953 /* Ethernet Address Type. */
954 enum enet_addr_type {
955 ENET_ADDR_TYPE_INDIVIDUAL,
956 ENET_ADDR_TYPE_GROUP,
957 ENET_ADDR_TYPE_BROADCAST
960 /* UCC GETH 82xx Ethernet Address Recognition Location */
961 enum ucc_geth_enet_address_recognition_location {
962 UCC_GETH_ENET_ADDRESS_RECOGNITION_LOCATION_STATION_ADDRESS,/* station
964 UCC_GETH_ENET_ADDRESS_RECOGNITION_LOCATION_PADDR_FIRST, /* additional
968 UCC_GETH_ENET_ADDRESS_RECOGNITION_LOCATION_PADDR2, /* additional
972 UCC_GETH_ENET_ADDRESS_RECOGNITION_LOCATION_PADDR3, /* additional
976 UCC_GETH_ENET_ADDRESS_RECOGNITION_LOCATION_PADDR_LAST, /* additional
980 UCC_GETH_ENET_ADDRESS_RECOGNITION_LOCATION_GROUP_HASH, /* group hash */
981 UCC_GETH_ENET_ADDRESS_RECOGNITION_LOCATION_INDIVIDUAL_HASH /* individual
985 /* UCC GETH vlan operation tagged */
986 enum ucc_geth_vlan_operation_tagged {
987 UCC_GETH_VLAN_OPERATION_TAGGED_NOP = 0x0, /* Tagged - nop */
988 UCC_GETH_VLAN_OPERATION_TAGGED_REPLACE_VID_PORTION_OF_Q_TAG
989 = 0x1, /* Tagged - replace vid portion of q tag */
990 UCC_GETH_VLAN_OPERATION_TAGGED_IF_VID0_REPLACE_VID_WITH_DEFAULT_VALUE
991 = 0x2, /* Tagged - if vid0 replace vid with default value */
992 UCC_GETH_VLAN_OPERATION_TAGGED_EXTRACT_Q_TAG_FROM_FRAME
993 = 0x3 /* Tagged - extract q tag from frame */
996 /* UCC GETH vlan operation non-tagged */
997 enum ucc_geth_vlan_operation_non_tagged {
998 UCC_GETH_VLAN_OPERATION_NON_TAGGED_NOP = 0x0, /* Non tagged - nop */
999 UCC_GETH_VLAN_OPERATION_NON_TAGGED_Q_TAG_INSERT = 0x1 /* Non tagged -
1004 /* UCC GETH Rx Quality of Service Mode */
1005 enum ucc_geth_qos_mode {
1006 UCC_GETH_QOS_MODE_DEFAULT = 0x0, /* default queue */
1007 UCC_GETH_QOS_MODE_QUEUE_NUM_FROM_L2_CRITERIA = 0x1, /* queue
1011 UCC_GETH_QOS_MODE_QUEUE_NUM_FROM_L3_CRITERIA = 0x2 /* queue
1017 /* UCC GETH Statistics Gathering Mode - These are bit flags, 'or' them together
1018 for combined functionality */
1019 enum ucc_geth_statistics_gathering_mode {
1020 UCC_GETH_STATISTICS_GATHERING_MODE_NONE = 0x00000000, /* No
1023 UCC_GETH_STATISTICS_GATHERING_MODE_HARDWARE = 0x00000001,/* Enable
1028 UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_TX = 0x00000004,/*Enable
1034 UCC_GETH_STATISTICS_GATHERING_MODE_FIRMWARE_RX = 0x00000008/* Enable
1042 /* UCC GETH Pad and CRC Mode - Note, Padding without CRC is not possible */
1043 enum ucc_geth_maccfg2_pad_and_crc_mode {
1044 UCC_GETH_PAD_AND_CRC_MODE_NONE
1045 = MACCFG2_PAD_AND_CRC_MODE_NONE, /* Neither Padding
1048 UCC_GETH_PAD_AND_CRC_MODE_CRC_ONLY
1049 = MACCFG2_PAD_AND_CRC_MODE_CRC_ONLY, /* Append
1051 UCC_GETH_PAD_AND_CRC_MODE_PAD_AND_CRC =
1052 MACCFG2_PAD_AND_CRC_MODE_PAD_AND_CRC
1055 /* UCC GETH upsmr Flow Control Mode */
1056 enum ucc_geth_flow_control_mode {
1057 UPSMR_AUTOMATIC_FLOW_CONTROL_MODE_NONE = 0x00000000, /* No automatic
1060 UPSMR_AUTOMATIC_FLOW_CONTROL_MODE_PAUSE_WHEN_EMERGENCY
1061 = 0x00004000 /* Send pause frame when RxFIFO reaches its
1062 emergency threshold */
1065 /* UCC GETH number of threads */
1066 enum ucc_geth_num_of_threads {
1067 UCC_GETH_NUM_OF_THREADS_1 = 0x1, /* 1 */
1068 UCC_GETH_NUM_OF_THREADS_2 = 0x2, /* 2 */
1069 UCC_GETH_NUM_OF_THREADS_4 = 0x0, /* 4 */
1070 UCC_GETH_NUM_OF_THREADS_6 = 0x3, /* 6 */
1071 UCC_GETH_NUM_OF_THREADS_8 = 0x4 /* 8 */
1074 /* UCC GETH number of station addresses */
1075 enum ucc_geth_num_of_station_addresses {
1076 UCC_GETH_NUM_OF_STATION_ADDRESSES_1, /* 1 */
1077 UCC_GETH_NUM_OF_STATION_ADDRESSES_5 /* 5 */
1080 /* UCC GETH 82xx Ethernet Address Container */
1081 struct enet_addr_container {
1082 u8 address[ENET_NUM_OCTETS_PER_ADDRESS]; /* ethernet address */
1083 enum ucc_geth_enet_address_recognition_location location; /* location in
1087 struct list_head node;
1090 #define ENET_ADDR_CONT_ENTRY(ptr) list_entry(ptr, struct enet_addr_container, node)
1092 /* UCC GETH Termination Action Descriptor (TAD) structure. */
1093 struct ucc_geth_tad_params {
1094 int rx_non_dynamic_extended_features_mode;
1096 enum ucc_geth_vlan_operation_tagged vtag_op;
1097 enum ucc_geth_vlan_operation_non_tagged vnontag_op;
1098 enum ucc_geth_qos_mode rqos;
1103 /* GETH protocol initialization structure */
1104 struct ucc_geth_info {
1105 struct ucc_fast_info uf_info;
1108 int ipCheckSumCheck;
1109 int ipCheckSumGenerate;
1110 int rxExtendedFiltering;
1111 u32 extendedFilteringChainPointer;
1113 int dynamicMaxFrameLength;
1114 int dynamicMinFrameLength;
1115 u8 nonBackToBackIfgPart1;
1116 u8 nonBackToBackIfgPart2;
1117 u8 miminumInterFrameGapEnforcement;
1118 u8 backToBackInterFrameGap;
1119 int ipAddressAlignment;
1127 int miiPreambleSupress;
1128 u8 altBebTruncation;
1130 int backPressureNoBackoff;
1133 u8 maxRetransmission;
1142 int receiveFlowControl;
1143 int transmitFlowControl;
1144 u8 maxGroupAddrInHash;
1145 u8 maxIndAddrInHash;
1159 u8 weightfactor[NUM_TX_QUEUES];
1160 u8 interruptcoalescingmaxvalue[NUM_RX_QUEUES];
1161 u8 l2qt[UCC_GETH_VLAN_PRIORITY_MAX];
1162 u8 l3qt[UCC_GETH_IP_PRIORITY_MAX];
1163 u32 vtagtable[UCC_GETH_TX_VTAG_TABLE_ENTRY_MAX];
1164 u8 iphoffset[TX_IP_OFFSET_ENTRY_MAX];
1165 u16 bdRingLenTx[NUM_TX_QUEUES];
1166 u16 bdRingLenRx[NUM_RX_QUEUES];
1167 enum ucc_geth_num_of_station_addresses numStationAddresses;
1168 enum qe_fltr_largest_external_tbl_lookup_key_size
1169 largestexternallookupkeysize;
1170 enum ucc_geth_statistics_gathering_mode statisticsMode;
1171 enum ucc_geth_vlan_operation_tagged vlanOperationTagged;
1172 enum ucc_geth_vlan_operation_non_tagged vlanOperationNonTagged;
1173 enum ucc_geth_qos_mode rxQoSMode;
1174 enum ucc_geth_flow_control_mode aufc;
1175 enum ucc_geth_maccfg2_pad_and_crc_mode padAndCrc;
1176 enum ucc_geth_num_of_threads numThreadsTx;
1177 enum ucc_geth_num_of_threads numThreadsRx;
1178 enum qe_risc_allocation riscTx;
1179 enum qe_risc_allocation riscRx;
1182 /* structure representing UCC GETH */
1183 struct ucc_geth_private {
1184 struct ucc_geth_info *ug_info;
1185 struct ucc_fast_private *uccf;
1186 struct net_device *dev;
1187 struct net_device_stats stats; /* linux network statistics */
1188 struct ucc_geth *ug_regs;
1189 struct ucc_geth_init_pram *p_init_enet_param_shadow;
1190 struct ucc_geth_exf_global_pram *p_exf_glbl_param;
1191 u32 exf_glbl_param_offset;
1192 struct ucc_geth_rx_global_pram *p_rx_glbl_pram;
1193 u32 rx_glbl_pram_offset;
1194 struct ucc_geth_tx_global_pram *p_tx_glbl_pram;
1195 u32 tx_glbl_pram_offset;
1196 struct ucc_geth_send_queue_mem_region *p_send_q_mem_reg;
1197 u32 send_q_mem_reg_offset;
1198 struct ucc_geth_thread_data_tx *p_thread_data_tx;
1199 u32 thread_dat_tx_offset;
1200 struct ucc_geth_thread_data_rx *p_thread_data_rx;
1201 u32 thread_dat_rx_offset;
1202 struct ucc_geth_scheduler *p_scheduler;
1203 u32 scheduler_offset;
1204 struct ucc_geth_tx_firmware_statistics_pram *p_tx_fw_statistics_pram;
1205 u32 tx_fw_statistics_pram_offset;
1206 struct ucc_geth_rx_firmware_statistics_pram *p_rx_fw_statistics_pram;
1207 u32 rx_fw_statistics_pram_offset;
1208 struct ucc_geth_rx_interrupt_coalescing_table *p_rx_irq_coalescing_tbl;
1209 u32 rx_irq_coalescing_tbl_offset;
1210 struct ucc_geth_rx_bd_queues_entry *p_rx_bd_qs_tbl;
1211 u32 rx_bd_qs_tbl_offset;
1212 u8 *p_tx_bd_ring[NUM_TX_QUEUES];
1213 u32 tx_bd_ring_offset[NUM_TX_QUEUES];
1214 u8 *p_rx_bd_ring[NUM_RX_QUEUES];
1215 u32 rx_bd_ring_offset[NUM_RX_QUEUES];
1216 u8 *confBd[NUM_TX_QUEUES];
1217 u8 *txBd[NUM_TX_QUEUES];
1218 u8 *rxBd[NUM_RX_QUEUES];
1219 int badFrame[NUM_RX_QUEUES];
1220 u16 cpucount[NUM_TX_QUEUES];
1221 volatile u16 *p_cpucount[NUM_TX_QUEUES];
1222 int indAddrRegUsed[NUM_OF_PADDRS];
1223 u8 paddr[NUM_OF_PADDRS][ENET_NUM_OCTETS_PER_ADDRESS]; /* ethernet address */
1224 u8 numGroupAddrInHash;
1225 u8 numIndAddrInHash;
1227 int rx_extended_features;
1228 int rx_non_dynamic_extended_features;
1229 struct list_head conf_skbs;
1230 struct list_head group_hash_q;
1231 struct list_head ind_hash_q;
1234 /* pointers to arrays of skbuffs for tx and rx */
1235 struct sk_buff **tx_skbuff[NUM_TX_QUEUES];
1236 struct sk_buff **rx_skbuff[NUM_RX_QUEUES];
1237 /* indices pointing to the next free sbk in skb arrays */
1238 u16 skb_curtx[NUM_TX_QUEUES];
1239 u16 skb_currx[NUM_RX_QUEUES];
1240 /* index of the first skb which hasn't been transmitted yet. */
1241 u16 skb_dirtytx[NUM_TX_QUEUES];
1243 struct ugeth_mii_info *mii_info;
1244 struct phy_device *phydev;
1245 phy_interface_t phy_interface;
1247 uint32_t msg_enable;
1253 #endif /* __UCC_GETH_H__ */