Home | History | Annotate | Line # | Download | only in ic
gemreg.h revision 1.11
      1 /*	$NetBSD: gemreg.h,v 1.11 2008/01/05 20:27:44 jdc Exp $ */
      2 
      3 /*
      4  *
      5  * Copyright (C) 2001 Eduardo Horvath.
      6  * All rights reserved.
      7  *
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  *
     18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR  ``AS IS'' AND
     19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR  BE LIABLE
     22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28  * SUCH DAMAGE.
     29  *
     30  */
     31 
     32 #ifndef	_IF_GEMREG_H
     33 #define	_IF_GEMREG_H
     34 
     35 /*
     36  * Register definitions for Sun GEM Gigabit Ethernet
     37  * See `GEM Gigabit Ethernet ASIC Specification'
     38  *   http://www.sun.com/processors/manuals/ge.pdf
     39  * Section 3.1.3 GEM Register Space (from Rev 1.2)
     40  */
     41 
     42 /*
     43  * Global Resources
     44  * Section 3.1.4.1
     45  *
     46  * First bank: this registers live at the start of the PCI
     47  * mapping, and at the start of the second bank of the SBUS
     48  * version.
     49  */
     50 #define	GEM_SEB_STATE		0x0000	/* SEB State (R/O) */
     51 #define	GEM_CONFIG		0x0004	/* Configuration */
     52 #define	GEM_STATUS		0x000c	/* Status */
     53 /* Note: Reading the status register auto-clears bits 0-6 */
     54 #define	GEM_INTMASK		0x0010	/* Interrupt Mask */
     55 #define	GEM_INTACK		0x0014	/* Interrupt Acknowledge (W/O) */
     56 #define	GEM_STATUS_ALIAS	0x001c	/* Status Alias */
     57 /* This is the same as GEM_STATUS but reading it does not auto-clear bits. */
     58 
     59 /*
     60  * Second bank: this registers live at offset 0x1000 of the PCI
     61  * mapping, and at the start of the first bank of the SBUS
     62  * version.
     63  */
     64 #define GEM_PCI_BANK2_OFFSET	0x1000
     65 #define GEM_PCI_BANK2_SIZE	0x14
     66 #define	GEM_ERROR_STATUS	0x0000	/* PCI error Status */
     67 #define	GEM_ERROR_MASK		0x0004	/* PCI Error Mask */
     68 #define GEM_SBUS_CONFIG		0x0004
     69 #define	GEM_BIF_CONFIG		0x0008	/* BIF Configuration */
     70 #define	GEM_BIF_DIAG		0x000c	/* BIF Diagnostic */
     71 #define	GEM_RESET		0x0010	/* Software Reset */
     72 
     73 
     74 /*
     75  * Bits in GEM_SEB_STATE register
     76  * For diagnostic use
     77  */
     78 #define	GEM_SEB_ARB		0x000000002	/* Arbitration status */
     79 #define	GEM_SEB_RXWON		0x000000004
     80 
     81 /*
     82  * Bits in GEM_CONFIG register
     83  * Default: 0x00042
     84  */
     85 #define	GEM_CONFIG_BURST_64	0x000000000	/* 0->infinity, 1->64KB */
     86 #define	GEM_CONFIG_BURST_INF	0x000000001	/* 0->infinity, 1->64KB */
     87 #define	GEM_CONFIG_TXDMA_LIMIT	0x00000003e
     88 #define	GEM_CONFIG_RXDMA_LIMIT	0x0000007c0
     89 /* GEM_CONFIG_RONPAULBIT and GEM_CONFIG_BUG2FIX are Apple only. */
     90 #define	GEM_CONFIG_RONPAULBIT	0x000000800	/* after infinite burst use
     91 						 * memory read multiple for
     92 						 * PCI commands */
     93 #define	GEM_CONFIG_BUG2FIX	0x000001000	/* fix RX hang after overflow */
     94 
     95 #define	GEM_CONFIG_TXDMA_LIMIT_SHIFT	1
     96 #define	GEM_CONFIG_RXDMA_LIMIT_SHIFT	6
     97 
     98 
     99 /*
    100  * Interrupt bits, for both the GEM_STATUS and GEM_INTMASK regs.
    101  * Bits 0-6 auto-clear when read.
    102  */
    103 #define	GEM_INTR_TX_INTME	0x000000001	/* Frame w/INTME bit set sent */
    104 #define	GEM_INTR_TX_EMPTY	0x000000002	/* TX ring empty */
    105 #define	GEM_INTR_TX_DONE	0x000000004	/* TX complete */
    106 #define	GEM_INTR_RX_DONE	0x000000010	/* Got a packet */
    107 #define	GEM_INTR_RX_NOBUF	0x000000020	/* No free receive buffers */
    108 #define	GEM_INTR_RX_TAG_ERR	0x000000040	/* RX Tag framing error */
    109 #define	GEM_INTR_PERR		0x000000080	/* Parity error */
    110 #define	GEM_INTR_PCS		0x000002000	/* PCS interrupt */
    111 #define	GEM_INTR_TX_MAC		0x000004000	/* TX MAC interrupt */
    112 #define	GEM_INTR_RX_MAC		0x000008000	/* RX MAC interrupt */
    113 #define	GEM_INTR_MAC_CONTROL	0x000010000	/* MAC control interrupt */
    114 #define	GEM_INTR_MIF		0x000020000	/* MIF interrupt */
    115 #define	GEM_INTR_BERR		0x000040000	/* Bus error interrupt */
    116 #define GEM_INTR_BITS	"\177\020"					\
    117 			"b\0INTME\0b\1TXEMPTY\0b\2TXDONE\0"		\
    118 			"b\4RXDONE\0b\5RXNOBUF\0b\6RX_TAG_ERR\0"	\
    119 			"b\xdPCS\0b\xeTXMAC\0b\xfRXMAC\0"		\
    120 			"b\x10MAC_CONTROL\0b\x11MIF\0b\x12IBERR\0\0"
    121 
    122 /* Top part (bits 19-31) of GEM_STATUS has TX completion information */
    123 #define	GEM_STATUS_TX_COMPL	0xfff800000	/* TX completion reg. */
    124 
    125 
    126 /*
    127  * Bits in GEM_ERROR_STATUS and GEM_ERROR_MASK PCI registers
    128  */
    129 #define	GEM_ERROR_STAT_BADACK	0x000000001	/* No ACK64# */
    130 #define	GEM_ERROR_STAT_DTRTO	0x000000002	/* Delayed xaction timeout */
    131 #define	GEM_ERROR_STAT_OTHERS	0x000000004	/* Other PCI errors.  Read PCI
    132 						   Status Register in PCI
    133 						   Configuration space */
    134 #define	GEM_ERROR_BITS		"\177\020b\0ACKBAD\0b\1DTRTO\0b\2OTHER\0\0"
    135 
    136 
    137 /*
    138  * Bits in GEM_SBUS_CONFIG register
    139  */
    140 #define GEM_SBUS_CFG_BMODE64	0x00000008
    141 #define GEM_SBUS_CFG_PARITY	0x00000200
    142 
    143 
    144 /*
    145  * Bits in GEM_BIF_CONFIG register
    146  * Default: 0x0
    147  */
    148 #define	GEM_BIF_CONFIG_SLOWCLK	0x000000001	/* Parity error timing */
    149 #define	GEM_BIF_CONFIG_HOST_64	0x000000002	/* 64-bit host */
    150 #define	GEM_BIF_CONFIG_B64D_DIS	0x000000004	/* no 64-bit data cycle */
    151 #define	GEM_BIF_CONFIG_M66EN	0x000000008
    152 #define	GEM_BIF_CONFIG_BITS	"\177\020b\0SLOWCLK\0b\1HOST64\0"	\
    153 				"b\2B64DIS\0b\3M66EN\0\0"
    154 
    155 
    156 /*
    157  * Bits in GEM_BIF_DIAG register
    158  * Default: 0x00000000
    159  */
    160 #define GEN_BIF_DIAG_PCIBURST	0x007f0000	/* PCI Burst Controller state
    161 						 * machine */
    162 #define GEN_BIF_DIAG_STATE	0xff000000	/* BIF state machine */
    163 
    164 /*
    165  * Bits in GEM_RESET register
    166  * RESET_TX and RESET_RX self clear when complete.
    167  */
    168 #define	GEM_RESET_TX		0x000000001	/* Reset TX half */
    169 #define	GEM_RESET_RX		0x000000002	/* Reset RX half */
    170 #define	GEM_RESET_GLOBAL	0x000000003	/* Global Reset */
    171 #define	GEM_RESET_RSTOUT	0x000000004	/* Force PCI RSTOUT# */
    172 
    173 
    174 /*
    175  * TX DMA Programmable Resources
    176  * Section 3.1.4.2
    177  * The 53 most significant bits of the Descriptor Base Low/High registers
    178  * are used as the TX descriptor ring base address.  The ring base must be
    179  * initialized to a 2KByte-aligned address after power-on or software reset.
    180  */
    181 #define	GEM_TX_KICK		0x2000		/* TX Kick */
    182 /* Note: Write last valid desc + 1 */
    183 #define	GEM_TX_CONFIG		0x2004		/* TX Configuration */
    184 #define	GEM_TX_RING_PTR_LO	0x2008		/* TX Descriptor Base Low */
    185 #define	GEM_TX_RING_PTR_HI	0x200c		/* TX Descriptor Base High */
    186 /*				0x2010		   Reserved */
    187 #define	GEM_TX_FIFO_WR_PTR	0x2014		/* TX FIFO Write Pointer */
    188 #define	GEM_TX_FIFO_SDWR_PTR	0x2018		/* TX FIFO Shadow Write Ptr */
    189 #define	GEM_TX_FIFO_RD_PTR	0x201c		/* TX FIFO Read Pointer */
    190 #define	GEM_TX_FIFO_SDRD_PTR	0x2020		/* TX FIFO Shadow Read Ptr */
    191 #define	GEM_TX_FIFO_PKT_CNT	0x2024		/* TX FIFO Packet Counter */
    192 #define	GEM_TX_STATE_MACHINE	0x2028		/* TX State Machine */
    193 /*				0x202c		   Unknown */
    194 #define	GEM_TX_DATA_PTR_LO	0x2030		/* TX Data Pointer Low */
    195 #define	GEM_TX_DATA_PTR_HI	0x2034		/* TX Data Pointer High */
    196 
    197 #define	GEM_TX_COMPLETION	0x2100		/* TX Completion */
    198 #define	GEM_TX_FIFO_ADDRESS	0x2104		/* TX FIFO Address */
    199 #define	GEM_TX_FIFO_TAG		0x2108		/* TX FIFO Tag */
    200 #define	GEM_TX_FIFO_DATA_LO	0x210c		/* TX FIFO Data Low */
    201 #define	GEM_TX_FIFO_DATA_HI_T1	0x2110		/* TX FIFO Data HighT1 */
    202 #define	GEM_TX_FIFO_DATA_HI_T0	0x2114		/* TX FIFO Data HighT0 */
    203 #define	GEM_TX_FIFO_SIZE	0x2118		/* TX FIFO Size */
    204 #define	GEM_TX_DEBUG		0x3028
    205 
    206 
    207 /*
    208  * Bits in GEM_TX_CONFIG register
    209  * Default: 0x118c10
    210  * TX FIFO Threshold should be set to 0x4ff
    211  */
    212 #define	GEM_TX_CONFIG_TXDMA_EN	0x00000001	/* TX DMA enable */
    213 #define	GEM_TX_CONFIG_TXRING_SZ	0x0000001e	/* TX ring size */
    214 #define GEM_TX_CONFIG_TXFIFO_SL 0x00000020	/* TX DMA FIFO PIO select */
    215 #define	GEM_TX_CONFIG_TXFIFO_TH	0x001ffc00	/* TX fifo threshold */
    216 #define	GEM_TX_CONFIG_PACED	0x00200000	/* TX_all_int modifier */
    217 
    218 #define	GEM_RING_SZ_32		(0<<1)	/* 32 descriptors */
    219 #define	GEM_RING_SZ_64		(1<<1)
    220 #define	GEM_RING_SZ_128		(2<<1)
    221 #define	GEM_RING_SZ_256		(3<<1)
    222 #define	GEM_RING_SZ_512		(4<<1)
    223 #define	GEM_RING_SZ_1024	(5<<1)
    224 #define	GEM_RING_SZ_2048	(6<<1)
    225 #define	GEM_RING_SZ_4096	(7<<1)
    226 #define	GEM_RING_SZ_8192	(8<<1)	/* Default */
    227 
    228 
    229 /*
    230  * Bits in GEM_TX_COMPLETION register
    231  */
    232 #define	GEM_TX_COMPLETION_MASK	0x00001fff	/* # of last descriptor */
    233 
    234 
    235 /*
    236  * RX DMA Programmable Resources
    237  * Section 3.1.4.3
    238  * The 53 most significant bits of the Descriptor Base Low/High registers
    239  * are used as the RX descriptor ring base address.  The ring base must be
    240  * initialized to a 2KByte-aligned address after power-on or software reset.
    241  */
    242 #define	GEM_RX_CONFIG		0x4000		/* RX Configuration */
    243 #define	GEM_RX_RING_PTR_LO	0x4004		/* RX Descriptor Base Low */
    244 #define	GEM_RX_RING_PTR_HI	0x4008		/* RX Descriptor Base High */
    245 #define	GEM_RX_FIFO_WR_PTR	0x400c		/* RX FIFO Write Pointer */
    246 #define	GEM_RX_FIFO_SDWR_PTR	0x4010		/* RX FIFO Shadow Write Ptr */
    247 #define	GEM_RX_FIFO_RD_PTR	0x4014		/* RX FIFO Read Pointer */
    248 #define	GEM_RX_FIFO_PKT_CNT	0x4018		/* RX FIFO Packet Counter */
    249 #define	GEM_RX_STATE_MACHINE	0x401c		/* RX State Machine */
    250 #define	GEM_RX_PAUSE_THRESH	0x4020		/* Pause Thresholds */
    251 #define	GEM_RX_DATA_PTR_LO	0x4024		/* RX Data Pointer Low */
    252 #define	GEM_RX_DATA_PTR_HI	0x4028		/* RX Data Pointer High */
    253 
    254 #define	GEM_RX_KICK		0x4100		/* RX Kick */
    255 /* Note: Write last valid desc + 1.  Must be a multiple of 4 */
    256 #define	GEM_RX_COMPLETION	0x4104		/* RX Completion */
    257 #define	GEM_RX_BLANKING		0x4108		/* RX Blanking */
    258 #define	GEM_RX_FIFO_ADDRESS	0x410c		/* RX FIFO Address */
    259 #define	GEM_RX_FIFO_TAG		0x4110		/* RX FIFO Tag */
    260 #define	GEM_RX_FIFO_DATA_LO	0x4114		/* RX FIFO Data Low */
    261 #define	GEM_RX_FIFO_DATA_HI_T1	0x4118		/* RX FIFO Data HighT0 */
    262 #define	GEM_RX_FIFO_DATA_HI_T0	0x411c		/* RX FIFO Data HighT1 */
    263 #define	GEM_RX_FIFO_SIZE	0x4120		/* RX FIFO Size */
    264 
    265 
    266 /*
    267  * Bits in GEM_RX_CONFIG register
    268  * Default: 0x1000010
    269  */
    270 #define	GEM_RX_CONFIG_RXDMA_EN	0x00000001	/* RX DMA enable */
    271 #define	GEM_RX_CONFIG_RXRING_SZ	0x0000001e	/* RX ring size */
    272 #define	GEM_RX_CONFIG_BATCH_DIS	0x00000020	/* desc batching disable */
    273 #define	GEM_RX_CONFIG_FBOFF	0x00001c00	/* first byte offset */
    274 #define	GEM_RX_CONFIG_CXM_START	0x000fe000	/* cksum start offset bytes */
    275 #define	GEM_RX_CONFIG_FIFO_THRS	0x07000000	/* fifo threshold size */
    276 
    277 #define	GEM_THRSH_64	0
    278 #define	GEM_THRSH_128	1
    279 #define	GEM_THRSH_256	2
    280 #define	GEM_THRSH_512	3
    281 #define	GEM_THRSH_1024	4
    282 #define	GEM_THRSH_2048	5
    283 
    284 #define	GEM_RX_CONFIG_FIFO_THRS_SHIFT	24
    285 #define	GEM_RX_CONFIG_FBOFF_SHFT	10
    286 #define	GEM_RX_CONFIG_CXM_START_SHFT	13
    287 
    288 
    289 /* GEM_RX_PAUSE_THRESH register bits -- sizes in multiples of 64 bytes */
    290 #define	GEM_RX_PTH_XOFF_THRESH	0x000001ff
    291 #define	GEM_RX_PTH_XON_THRESH	0x001ff000
    292 
    293 
    294 /* GEM_RX_BLANKING register bits */
    295 #define	GEM_RX_BLANKING_PACKETS	0x000001ff	/* Delay intr for x packets */
    296 #define	GEM_RX_BLANKING_TIME	0x000ff000	/* Delay intr for x ticks */
    297 #define	GEM_RX_BLANKING_TIME_SHIFT 12
    298 /* One tick is 2048 PCI clocks, or 16us at 66MHz */
    299 
    300 
    301 /*
    302  * MAC Programmable Resources
    303  * Section 3.1.5
    304  */
    305 #define	GEM_MAC_TXRESET		0x6000		/* TX MAC Software Reset Cmd */
    306 #define	GEM_MAC_RXRESET		0x6004		/* RX MAC Software Reset Cmd */
    307 /* Note: Store 1, cleared when done for TXRESET and RXRESET */
    308 #define	GEM_MAC_SEND_PAUSE_CMD	0x6008		/* Send Pause Command */
    309 #define	GEM_MAC_TX_STATUS	0x6010		/* TX MAC Status */
    310 #define	GEM_MAC_RX_STATUS	0x6014		/* RX MAC Status */
    311 #define	GEM_MAC_CONTROL_STATUS	0x6018		/* MAC Control Status */
    312 #define	GEM_MAC_TX_MASK		0x6020		/* TX MAC Mask */
    313 #define	GEM_MAC_RX_MASK		0x6024		/* RX MAC Mask */
    314 #define	GEM_MAC_CONTROL_MASK	0x6028		/* MAC Control Mask */
    315 #define	GEM_MAC_TX_CONFIG	0x6030		/* TX MAC Configuration */
    316 #define	GEM_MAC_RX_CONFIG	0x6034		/* XX MAC Configuration */
    317 #define	GEM_MAC_CONTROL_CONFIG	0x6038		/* MAC Control Configuration */
    318 #define	GEM_MAC_XIF_CONFIG	0x603c		/* XIF Configuration */
    319 #define	GEM_MAC_IPG0		0x6040		/* InterPacketGap0 */
    320 #define	GEM_MAC_IPG1		0x6044		/* InterPacketGap1 */
    321 #define	GEM_MAC_IPG2		0x6048		/* InterPacketGap2 */
    322 #define	GEM_MAC_SLOT_TIME	0x604c		/* SlotTime, bits 0-7 */
    323 #define	GEM_MAC_MAC_MIN_FRAME	0x6050		/* MinFrameSize */
    324 #define	GEM_MAC_MAC_MAX_FRAME	0x6054		/* MaxFrameSize */
    325 #define	GEM_MAC_PREAMBLE_LEN	0x6058		/* PA Size */
    326 #define	GEM_MAC_JAM_SIZE	0x605c		/* JamSize */
    327 #define	GEM_MAC_ATTEMPT_LIMIT	0x6060		/* Attempt Limit */
    328 #define	GEM_MAC_CONTROL_TYPE	0x6064		/* MAC Control Type */
    329 
    330 #define	GEM_MAC_ADDR0		0x6080		/* Normal MAC address 0 */
    331 #define	GEM_MAC_ADDR1		0x6084
    332 #define	GEM_MAC_ADDR2		0x6088
    333 #define	GEM_MAC_ADDR3		0x608c		/* Alternate MAC address 0 */
    334 #define	GEM_MAC_ADDR4		0x6090
    335 #define	GEM_MAC_ADDR5		0x6094
    336 #define	GEM_MAC_ADDR6		0x6098		/* Control MAC address 0 */
    337 #define	GEM_MAC_ADDR7		0x609c
    338 #define	GEM_MAC_ADDR8		0x60a0
    339 
    340 #define	GEM_MAC_ADDR_FILTER0	0x60a4		/* Address Filter */
    341 #define	GEM_MAC_ADDR_FILTER1	0x60a8
    342 #define	GEM_MAC_ADDR_FILTER2	0x60ac
    343 #define	GEM_MAC_ADR_FLT_MASK1_2	0x60b0		/* Address Filter Mask 2&1 */
    344 #define	GEM_MAC_ADR_FLT_MASK0	0x60b4		/* Address Filter Mask 0 */
    345 
    346 #define	GEM_MAC_HASH0		0x60c0		/* Hash table 0 */
    347 #define	GEM_MAC_HASH1		0x60c4
    348 #define	GEM_MAC_HASH2		0x60c8
    349 #define	GEM_MAC_HASH3		0x60cc
    350 #define	GEM_MAC_HASH4		0x60d0
    351 #define	GEM_MAC_HASH5		0x60d4
    352 #define	GEM_MAC_HASH6		0x60d8
    353 #define	GEM_MAC_HASH7		0x60dc
    354 #define	GEM_MAC_HASH8		0x60e0
    355 #define	GEM_MAC_HASH9		0x60e4
    356 #define	GEM_MAC_HASH10		0x60e8
    357 #define	GEM_MAC_HASH11		0x60ec
    358 #define	GEM_MAC_HASH12		0x60f0
    359 #define	GEM_MAC_HASH13		0x60f4
    360 #define	GEM_MAC_HASH14		0x60f8
    361 #define	GEM_MAC_HASH15		0x60fc
    362 
    363 #define	GEM_MAC_NORM_COLL_CNT	0x6100		/* Normal Collision Counter */
    364 #define	GEM_MAC_FIRST_COLL_CNT	0x6104		/* First Attempt Successful
    365 						   Collision Counter */
    366 #define	GEM_MAC_EXCESS_COLL_CNT	0x6108		/* Excess Collision Counter */
    367 #define	GEM_MAC_LATE_COLL_CNT	0x610c		/* Late Collision Counter */
    368 #define	GEM_MAC_DEFER_TMR_CNT	0x6110		/* Defer Timer */
    369 #define	GEM_MAC_PEAK_ATTEMPTS	0x6114		/* Peak Attempts */
    370 #define	GEM_MAC_RX_FRAME_COUNT	0x6118		/* Receive Frame Counter */
    371 #define	GEM_MAC_RX_LEN_ERR_CNT	0x611c		/* Length Error Counter */
    372 #define	GEM_MAC_RX_ALIGN_ERR	0x6120		/* Alignment Error Counter */
    373 #define	GEM_MAC_RX_CRC_ERR_CNT	0x6124		/* FCS Error Counter */
    374 #define	GEM_MAC_RX_CODE_VIOL	0x6128		/* RX Code Violation Error
    375 						   Counter */
    376 
    377 #define	GEM_MAC_RANDOM_SEED	0x6130		/* Random Number Seed */
    378 #define	GEM_MAC_MAC_STATE	0x6134		/* State Machine */
    379 
    380 
    381 /*
    382  * Bits in GEM_MAC_SEND_PAUSE_CMD register
    383  * Pause time is in units of Slot Times.
    384  */
    385 #define	GEM_MAC_PAUSE_CMD_TIME	0x0000ffff
    386 #define	GEM_MAC_PAUSE_CMD_SEND	0x00010000
    387 
    388 
    389 /*
    390  * Bits in GEM_MAC_TX_STATUS and _MASK register
    391  * Interrupt bits are auto-cleared when the status register is read and
    392  * the corresponding bit is set in the mask register.
    393  */
    394 #define	GEM_MAC_TX_XMIT_DONE	0x00000001	/* Successful transmission */
    395 #define	GEM_MAC_TX_UNDERRUN	0x00000002	/* TX "data starvation" */
    396 #define	GEM_MAC_TX_PKT_TOO_LONG	0x00000004	/* Frame exceeds max. length */
    397 #define	GEM_MAC_TX_NCC_EXP	0x00000008	/* Normal collision counter has
    398 						   rolled over */
    399 #define	GEM_MAC_TX_ECC_EXP	0x00000010	/* Excessive coll cnt rolled */
    400 #define	GEM_MAC_TX_LCC_EXP	0x00000020	/* Late coll cnt rolled */
    401 #define	GEM_MAC_TX_FCC_EXP	0x00000040	/* First coll cnt rolled */
    402 #define	GEM_MAC_TX_DEFER_EXP	0x00000080	/* Defer timer cnt rolled */
    403 #define	GEM_MAC_TX_PEAK_EXP	0x00000100	/* Peak attempts cnt rolled */
    404 
    405 
    406 /*
    407  * Bits in GEM_MAC_RX_STATUS and _MASK register
    408  */
    409 #define	GEM_MAC_RX_DONE		0x00000001	/* Successful reception */
    410 #define	GEM_MAC_RX_OVERFLOW	0x00000002	/* RX resource lack */
    411 #define	GEM_MAC_RX_FRAME_CNT	0x00000004	/* Receive frame counter has
    412 						   rolled over */
    413 #define	GEM_MAC_RX_ALIGN_EXP	0x00000008	/* Alignment error cnt rolled */
    414 #define	GEM_MAC_RX_CRC_EXP	0x00000010	/* CRC error cnt rolled */
    415 #define	GEM_MAC_RX_LEN_EXP	0x00000020	/* Length error cnt rolled */
    416 #define	GEM_MAC_RX_CVI_EXP	0x00000040	/* Code violation err rolled */
    417 
    418 
    419 /*
    420  * Bits in GEM_MAC_CONTROL_STATUS and GEM_MAC_CONTROL_MASK register
    421  */
    422 #define	GEM_MAC_PAUSED		0x00000001	/* Pause received */
    423 #define	GEM_MAC_PAUSE		0x00000002	/* enter pause state */
    424 #define	GEM_MAC_RESUME		0x00000004	/* exit pause state */
    425 #define	GEM_MAC_PAUSE_TIME	0xffff0000	/* Pause time received */
    426 #define	GEM_MAC_STATUS_BITS	"\177\020b\0PAUSED\0b\1PAUSE\0b\2RESUME\0\0"
    427 
    428 
    429 /*
    430  * Bits in GEM_MAC_XIF_CONFIG register
    431  * Default: 0x00
    432  */
    433 #define	GEM_MAC_XIF_TX_MII_ENA	0x00000001	/* Enable MII output */
    434 #define	GEM_MAC_XIF_MII_LOOPBK	0x00000002	/* Enable (G)MII loopback */
    435 #define	GEM_MAC_XIF_ECHO_DISABL	0x00000004	/* Disable echo */
    436 #define	GEM_MAC_XIF_GMII_MODE	0x00000008	/* Select GMII/MII mode */
    437 #define	GEM_MAC_XIF_MII_BUF_ENA	0x00000010	/* Enable MII recv buffers */
    438 #define	GEM_MAC_XIF_LINK_LED	0x00000020	/* force link LED active */
    439 #define	GEM_MAC_XIF_FDPLX_LED	0x00000040	/* force FDPLX LED active */
    440 #define	GEM_MAC_XIF_BITS	"\177\020b\0TXMIIENA\0b\1MIILOOP\0b\2NOECHO" \
    441 				"\0b\3GMII\0b\4MIIBUFENA\0b\5LINKLED\0" \
    442 				"b\6FDLED\0\0"
    443 
    444 
    445 /*
    446  * Bits in GEM_MAC_TX_CONFIG register
    447  * GEM_MAC_TX_ENABLE must be cleared and a delay imposed before writing to
    448  * other bits in this register or any of the MAC parameters registers.
    449  * The GEM_MAC_TX_ENABLE bit will read 0 when the transmitter has stopped.
    450  * Carrier Extension must be set when operating in Half-Duplex at 1Gbps,
    451  * and disabled otherwise.  To enable this GEM_MAC_TX_CARR_EXTEND and
    452  * GEM_MAC_RX_CARR_EXTEND must be set to 1 and the Slot Time register must
    453  * be set to 0x200.
    454  */
    455 #define	GEM_MAC_TX_ENABLE	0x00000001	/* TX enable */
    456 #define	GEM_MAC_TX_IGN_CARRIER	0x00000002	/* Ignore carrier sense */
    457 #define	GEM_MAC_TX_IGN_COLLIS	0x00000004	/* ignore collisions */
    458 #define	GEM_MAC_TX_ENA_IPG0	0x00000008	/* extend Rx-to-TX IPG */
    459 #define	GEM_MAC_TX_NGU		0x00000010	/* Never give up */
    460 #define	GEM_MAC_TX_NGU_LIMIT	0x00000020	/* Never give up limit */
    461 #define	GEM_MAC_TX_NO_BACKOFF	0x00000040	/* Never backoff on coll */
    462 #define	GEM_MAC_TX_SLOWDOWN	0x00000080	/* Watch carrier sense */
    463 #define	GEM_MAC_TX_NO_FCS	0x00000100	/* no FCS will be generated */
    464 #define	GEM_MAC_TX_CARR_EXTEND	0x00000200	/* Ena TX Carrier Extension */
    465 #define	GEM_MAC_TX_CONFIG_BITS	"\177\020" \
    466 				"b\0TXENA\0b\1IGNCAR\0b\2IGNCOLLIS\0" \
    467 				"b\3IPG0ENA\0b\4TXNGU\0b\5TXNGULIM\0" \
    468 				"b\6NOBKOFF\0b\7SLOWDN\0b\x8NOFCS\0" \
    469 				"b\x9TXCARREXT\0\0"
    470 
    471 
    472 /*
    473  * Bits in GEM_MAC_RX_CONFIG register
    474  * The GEM_MAC_RX_ENABLE bit must be cleared and a delay of 3.2ms imposed
    475  * before writing to other bits in this register or any of the MAC
    476  * parameters registers.  The GEM_MAC_RX_ENABLE bit will read 0 when the
    477  * receiver has stopped.
    478  * The GEM_MAC_RX_HASH_FILTER bit must be cleared and a delay of 3.2ms
    479  * imposed before writing to any of the Hash Table registers.  The
    480  * GEM_MAC_RX_HASH_FILTER bit will read 0 when the registers may be written.
    481  * The GEM_MAC_RX_ADDR_FILTER bit must be cleared and a delay of 3.2ms
    482  * imposed before writing to any of the Address Filter registers.  The
    483  * GEM_MAC_RX_ADDR_FILTER bit will read 0 when the registers may be written.
    484  * See "Carrier Extension" above.
    485  */
    486 #define	GEM_MAC_RX_ENABLE	0x00000001	/* RX enable */
    487 #define	GEM_MAC_RX_STRIP_PAD	0x00000002	/* strip pad bytes */
    488 #define	GEM_MAC_RX_STRIP_CRC	0x00000004
    489 #define	GEM_MAC_RX_PROMISCUOUS	0x00000008	/* promiscuous mode */
    490 #define	GEM_MAC_RX_PROMISC_GRP	0x00000010	/* promiscuous group mode */
    491 #define	GEM_MAC_RX_HASH_FILTER	0x00000020	/* enable hash filter */
    492 #define	GEM_MAC_RX_ADDR_FILTER	0x00000040	/* enable address filter */
    493 #define	GEM_MAC_RX_ERRCHK_DIS	0x00000080	/* disable error discard */
    494 #define	GEM_MAC_RX_CARR_EXTEND	0x00000100	/* Ena RX Carrier Extension */
    495 #define	GEM_MAC_RX_CONFIG_BITS	"\177\020" \
    496 				"b\0RXENA\0b\1STRPAD\0b\2STRCRC\0" \
    497 				"b\3PROMIS\0b\4PROMISCGRP\0b\5HASHFLTR\0" \
    498 				"b\6ADDRFLTR\0b\7ERRCHKDIS\0b\x9TXCARREXT\0\0"
    499 
    500 
    501 /*
    502  * Bits in GEM_MAC_CONTROL_CONFIG
    503  * Default; 0x0
    504  */
    505 #define	GEM_MAC_CC_TX_PAUSE	0x00000001	/* send pause enabled */
    506 #define	GEM_MAC_CC_RX_PAUSE	0x00000002	/* receive pause enabled */
    507 #define	GEM_MAC_CC_PASS_PAUSE	0x00000004	/* pass pause up */
    508 #define	GEM_MAC_CC_BITS		"\177\020b\0TXPAUSE\0b\1RXPAUSE\0b\2NOPAUSE\0\0"
    509 
    510 
    511 /*
    512  * Bits in GEM_MAC_SLOT_TIME register
    513  * The slot time is used as PAUSE time unit, value depends on whether carrier
    514  * extension is enabled.
    515  */
    516 #define	GEM_MAC_SLOT_TIME_CARR_EXTEND	0x200
    517 #define	GEM_MAC_SLOT_TIME_NORMAL	0x40
    518 
    519 
    520 /*
    521  * Recommended values for MAC registers:
    522  *	GEM_MAC_IPG0	0x00
    523  *	GEM_MAC_IPG1	0x08
    524  *	GEM_MAC_IPG2	0x04
    525  *	GEM_MAC_SLOT_TIME	0x40		(see "Carrier Extension" above)
    526  *   Bits in GEM_MAC_MAC_MAX_FRAME register
    527  *   max burst size	0x7fff0000
    528  *   max frame size	0x00007fff
    529  *	GEM_MAC_MAC_MIN_FRAME	0x40
    530  *	GEM_MAC_MAC_MAX_FRAME	0x200005ee
    531  *	GEM_MAC_PREAMBLE_LEN	0x07		(minimum of 0x02)
    532  *	GEM_MAC_JAM_SIZE	0x04
    533  *	GEM_MAC_ATTEMPT_LIMIT	0x10
    534  *	GEM_MAC_CONTROL_TYPE	0x8808
    535  */
    536 
    537 
    538 /*
    539  * Address detection and filtering registers (16-bit unless noted):
    540  *	GEM_MAC_ADDR0		normal priority MAC address bits 32-47
    541  *	GEM_MAC_ADDR1		normal priority MAC address bits 16-31
    542  *	GEM_MAC_ADDR2		normal priority MAC address bits 0-15
    543  *	GEM_MAC_ADDR3		alternate MAC address bits 32-47
    544  *	GEM_MAC_ADDR4		alternate MAC address bits 16-31
    545  *	GEM_MAC_ADDR5		alternate MAC address bits 0-15
    546  *	GEM_MAC_ADDR6		MAC control address bits 32-47
    547  *	GEM_MAC_ADDR7		MAC control address bits 16-31
    548  *	GEM_MAC_ADDR8		MAC control address bits 0-15
    549  *	GEM_MAC_ADDR_FILTER0	address filter bits 32-47
    550  *	GEM_MAC_ADDR_FILTER1	address filter bits 16-31
    551  *	GEM_MAC_ADDR_FILTER2	address filter bits 0-15
    552  *	GEM_MAC_ADR_FLT_MASK1_2	mask for GEM_MAC_ADDR_FILTER1 and 2 (8-bit)
    553  *	GEM_MAC_ADR_FLT_MASK0	mask for GEM_MAC_ADDR_FILTER0
    554  *	GEM_MAC_HASH0		hash table bits 240-255
    555  *	GEM_MAC_HASH1		hash table bits 224-239
    556  *	GEM_MAC_HASH2		hash table bits 208-223
    557  *	GEM_MAC_HASH3		hash table bits 192-207
    558  *	GEM_MAC_HASH4		hash table bits 176-191
    559  *	GEM_MAC_HASH5		hash table bits 160-175
    560  *	GEM_MAC_HASH6		hash table bits 144-159
    561  *	GEM_MAC_HASH7		hash table bits 128-143
    562  *	GEM_MAC_HASH8		hash table bits 112-127
    563  *	GEM_MAC_HASH9		hash table bits 96-111
    564  *	GEM_MAC_HASH10		hash table bits 80-95
    565  *	GEM_MAC_HASH11		hash table bits 64-79
    566  *	GEM_MAC_HASH12		hash table bits 48-63
    567  *	GEM_MAC_HASH13		hash table bits 32-47
    568  *	GEM_MAC_HASH14		hash table bits 16-31
    569  *	GEM_MAC_HASH15		hash table bits 0-15
    570  */
    571 
    572 /*
    573  * Recommended values for statistic registers:
    574  *	GEM_MAC_NORM_COLL_CNT	0x0000
    575  *	GEM_MAC_FIRST_COLL_CNT	0x0000
    576  *	GEM_MAC_EXCESS_COLL_CNT	0x0000
    577  *	GEM_MAC_LATE_COLL_CNT	0x0000
    578  *	GEM_MAC_DEFER_TMR_CNT	0x0000
    579  *	GEM_MAC_PEAK_ATTEMPTS	0x0000
    580  *	GEM_MAC_RX_FRAME_COUNT	0x0000
    581  *	GEM_MAC_RX_LEN_ERR_CNT	0x0000
    582  *	GEM_MAC_RX_ALIGN_ERR	0x0000
    583  *	GEM_MAC_RX_CRC_ERR_CNT	0x0000
    584  *	GEM_MAC_RX_CODE_VIOL	0x0000
    585  */
    586 
    587 
    588 /*
    589  * MIF Programmable Resources
    590  * Section 3.1.5.8
    591  * Bit-bang registers use low bit only
    592  */
    593 #define	GEM_MIF_BB_CLOCK	0x6200		/* MIF Bit-Bang Clock */
    594 #define	GEM_MIF_BB_DATA		0x6204		/* MIF Bit-Bang Data */
    595 #define	GEM_MIF_BB_OUTPUT_ENAB	0x6208		/* MIF Bit-Bang Output Enable */
    596 #define	GEM_MIF_FRAME		0x620c		/* MIF Frame/Output */
    597 #define	GEM_MIF_CONFIG		0x6210		/* MIF Configuration */
    598 #define	GEM_MIF_INTERRUPT_MASK	0x6214		/* MIF Mask */
    599 #define	GEM_MIF_BASIC_STATUS	0x6218		/* MIF Status */
    600 #define	GEM_MIF_STATE_MACHINE	0x621c		/* MIF State Machine */
    601 
    602 
    603 /*
    604  * Bits in GEM_MIF_FRAME register
    605  */
    606 #define	GEM_MIF_FRAME_DATA	0x0000ffff	/* Instruction payload */
    607 #define	GEM_MIF_FRAME_TA0	0x00010000	/* TA bit, 1 for completion */
    608 #define	GEM_MIF_FRAME_TA1	0x00020000	/* TA bits */
    609 #define	GEM_MIF_FRAME_REG_ADDR	0x007c0000	/* Register address */
    610 #define	GEM_MIF_FRAME_PHY_ADDR	0x0f800000	/* PHY address, should be 0 */
    611 #define	GEM_MIF_FRAME_OP	0x30000000	/* operation - write/read */
    612 #define	GEM_MIF_FRAME_START	0xc0000000	/* START bits */
    613 
    614 #define	GEM_MIF_FRAME_READ	0x60020000
    615 #define	GEM_MIF_FRAME_WRITE	0x50020000
    616 
    617 #define	GEM_MIF_REG_SHIFT	18
    618 #define	GEM_MIF_PHY_SHIFT	23
    619 
    620 
    621 /*
    622  * Bits in GEM_MIF_CONFIG register
    623  */
    624 #define	GEM_MIF_CONFIG_PHY_SEL	0x00000001	/* PHY select, 0=MDIO_0 */
    625 #define	GEM_MIF_CONFIG_POLL_ENA	0x00000002	/* poll enable */
    626 #define	GEM_MIF_CONFIG_BB_ENA	0x00000004	/* bit bang enable */
    627 #define	GEM_MIF_CONFIG_REG_ADR	0x000000f8	/* poll register address */
    628 #define	GEM_MIF_CONFIG_MDI0	0x00000100	/* MDIO_0 B-B data/attached */
    629 #define	GEM_MIF_CONFIG_MDI1	0x00000200	/* MDIO_1 B-B data/attached */
    630 #define	GEM_MIF_CONFIG_PHY_ADR	0x00007c00	/* poll PHY address */
    631 /* MDIO_0 is onboard transceiver MDIO_1 is external, PHY addr for both is 0 */
    632 #define	GEM_MIF_CONFIG_BITS	"\177\020b\0PHYSEL\0b\1POLL\0b\2BBENA\0" \
    633 				"b\x8MDIO0\0b\x9MDIO1\0\0"
    634 
    635 
    636 /*
    637  * Bits in GEM_MIF_BASIC_STATUS and GEM_MIF_INTERRUPT_MASK
    638  * The Basic part is the last value read in the POLL field of the config
    639  * register.
    640  * The status part indicates the bits that have changed.
    641  */
    642 #define	GEM_MIF_STATUS		0x0000ffff
    643 #define	GEM_MIF_BASIC		0xffff0000
    644 
    645 
    646 /*
    647  * PCS/Serialink Registers
    648  * Section 3.1.6
    649  * DO NOT TOUCH THESE REGISTERS ON ERI -- IT HARD HANGS.
    650  */
    651 #define	GEM_MII_CONTROL		0x9000		/* PCS MII Control */
    652 #define	GEM_MII_STATUS		0x9004		/* PCS MII Status */
    653 #define	GEM_MII_ANAR		0x9008		/* PCS MII Advertisement */
    654 #define	GEM_MII_ANLPAR		0x900c		/* PCS MII Link Partner
    655 						   Ability */
    656 #define	GEM_MII_CONFIG		0x9010		/* PCS Configuration */
    657 #define	GEM_MII_STATE_MACHINE	0x9014		/* PCS State Machine */
    658 #define	GEM_MII_INTERRUP_STATUS	0x9018		/* PCS Interrupt Status */
    659 #define	GEM_MII_DATAPATH_MODE	0x9050		/* Datapath Mode Register */
    660 #define	GEM_MII_SLINK_CONTROL	0x9054		/* Serialink Control */
    661 #define	GEM_MII_OUTPUT_SELECT	0x9058		/* Share Output Select */
    662 #define	GEM_MII_SLINK_STATUS	0x905c		/* Serialink Status */
    663 
    664 
    665 /*
    666  * Bits in GEM_MII_CONTROL register
    667  * PCS "BMCR" (Basic Mode Control Reg)
    668  * Default: 0x1040
    669  * AUTONEG and RESET self clear when relevant process is completed.
    670  */
    671 #define GEM_MII_1GB_SPEED_SEL	0x00000040	/* 1000Mb/s, always 1 */
    672 #define	GEM_MII_CONTROL_COL_TST	0x00000080	/* collision test */
    673 #define	GEM_MII_CONTROL_FDUPLEX	0x00000100	/* full duplex, always 0 */
    674 #define	GEM_MII_CONTROL_RAN	0x00000200	/* restart auto negotiation */
    675 #define	GEM_MII_CONTROL_ISOLATE	0x00000400	/* isolate PHY, ignored */
    676 #define	GEM_MII_CONTROL_POWERDN	0x00000800	/* power down, ignored */
    677 #define	GEM_MII_CONTROL_AUTONEG	0x00001000	/* auto negotiation enabled */
    678 #define	GEM_MII_CONTROL_SPEED	0x00002000	/* speed select, ignored */
    679 #define	GEM_MII_CONTROL_LOOPBK	0x00004000	/* Serialink loopback */
    680 #define	GEM_MII_CONTROL_RESET	0x00008000	/* Reset PCS */
    681 #define	GEM_MII_CONTROL_BITS	"\177\020b\7COLTST\0b\x8_FD\0b\x9RAN\0" \
    682 				"b\xaISOLATE\0b\xbPWRDWN\0b\xc_ANEG\0" \
    683 				"b\xdGIGE\0b\xeLOOP\0b\xfRESET\0\0"
    684 
    685 
    686 /*
    687  * Bits in GEM_MII_STATUS register.
    688  * PCS "BMSR" (Basic Mode Status Reg)
    689  * Default: 0x0108
    690  */
    691 #define	GEM_MII_STATUS_EXTCAP	0x00000001	/* extended capability, always 0 */
    692 #define	GEM_MII_STATUS_JABBER	0x00000002	/* jabber detected, always 0 */
    693 #define	GEM_MII_STATUS_LINK_STS	0x00000004	/* link status, 1=up */
    694 #define	GEM_MII_STATUS_ACFG	0x00000008	/* can auto neg, always 1 */
    695 #define	GEM_MII_STATUS_REM_FLT	0x00000010	/* remote fault detected */
    696 #define	GEM_MII_STATUS_ANEG_CPT	0x00000020	/* auto negotiate complete */
    697 #define	GEM_MII_STATUS_EXT_STS	0x00000100	/* Is 1000Base-X, always 1 */
    698 #define	GEM_MII_STATUS_GB_HDX	0x00000200	/* can perform GBit HDX */
    699 #define	GEM_MII_STATUS_GB_FDX	0x00000400	/* can perform GBit FDX */
    700 #define	GEM_MII_STATUS_BITS	"\177\020b\0EXTCAP\0b\1JABBER\0b\2LINKSTS\0" \
    701 				"b\3ACFG\0b\4REMFLT\0b\5ANEGCPT\0b\x9GBHDX\0" \
    702 				"b\xaGBFDX\0\0"
    703 
    704 
    705 /*
    706  * Bits in GEM_MII_ANAR and GEM_MII_ANLPAR registers
    707  * GEM_MII_ANAR contains our capabilities for auto- negotiation
    708  * (Default: 0x00e0) and GEM_MII_ANLPAR contains the link partners
    709  * abilities and is only valid after auto-negotiation completes.
    710  */
    711 #define	GEM_MII_ANEG_FUL_DUPLX	0x00000020	/* can do 1000Base-X FDX */
    712 #define	GEM_MII_ANEG_HLF_DUPLX	0x00000040	/* can do 1000Base-X HDX */
    713 #define	GEM_MII_ANEG_SYM_PAUSE	0x00000080	/* can do symmetric pause */
    714 #define	GEM_MII_ANEG_ASYM_PAUSE	0x00000100	/* can do asymmetric pause */
    715 #define	GEM_MII_ANEG_RF		0x00003000	/* advertise remote fault */
    716 #define	GEM_MII_ANEG_ACK	0x00004000	/* ack reception of
    717 						   Link Partner Capability */
    718 #define	GEM_MII_ANEG_NP		0x00008000	/* next page bit, always 0 */
    719 #define	GEM_MII_ANEG_BITS	"\177\020b\5FDX\0b\6HDX\0b\7SYMPAUSE\0" \
    720 				"\b\x8_ASYMPAUSE\0\b\xdREMFLT\0\b\xeLPACK\0" \
    721 				"\b\xfNPBIT\0\0"
    722 
    723 
    724 /*
    725  * Bits in GEM_MII_CONFIG register
    726  * Default: 0x0
    727  * GEM_MII_CONFIG_ENABLE must be 0 when modifiying the GEM_MII_ANAR
    728  * register.  To isolate the MC from the media, set this bit to 0 and
    729  * restart auto-negotiation in GEM_MII_CONTROL.
    730  */
    731 #define	GEM_MII_CONFIG_ENABLE	0x00000001	/* Enable PCS */
    732 #define	GEM_MII_CONFIG_SDO	0x00000002	/* Signal Detect Override */
    733 #define	GEM_MII_CONFIG_SDL	0x00000004	/* Signal Detect active low */
    734 #define	GEM_MII_CONFIG_TIMER	0x0000000e	/* link monitor timer values */
    735 #define	GEM_MII_CONFIG_JS	0x00000018	/* Jitter Study, 0 normal
    736 						 * 1 high freq, 2 low freq */
    737 #define	GEM_MII_CONFIG_ANTO	0x00000020	/* 10ms ANEG timer override */
    738 #define	GEM_MII_CONFIG_BITS	"\177\020b\0PCSENA\0\0"
    739 
    740 
    741 /*
    742  * Bits in GEM_MII_STATE_MACHINE register
    743  * XXX These are best guesses from observed behavior.
    744  */
    745 #define	GEM_MII_FSM_STOP	0x00000000	/* stopped */
    746 #define	GEM_MII_FSM_RUN		0x00000001	/* running */
    747 #define	GEM_MII_FSM_UNKWN	0x00000100	/* unknown */
    748 #define	GEM_MII_FSM_DONE	0x00000101	/* complete */
    749 
    750 
    751 /*
    752  * Bits in GEM_MII_INTERRUP_STATUS register
    753  * No mask register; mask with the global interrupt mask register.
    754  */
    755 #define	GEM_MII_INTERRUP_LINK	0x00000004	/* PCS link status change */
    756 
    757 
    758 /*
    759  * Bits in GEM_MII_DATAPATH_MODE register
    760  * Default: none
    761  */
    762 #define	GEM_MII_DATAPATH_SERIAL	0x00000001	/* Use internal Serialink */
    763 #define	GEM_MII_DATAPATH_SERDES	0x00000002	/* Use PCS via 10bit interfac */
    764 #define	GEM_MII_DATAPATH_MII	0x00000004	/* Use {G}MII, not PCS */
    765 #define	GEM_MII_DATAPATH_MIIOUT	0x00000008	/* Set serial output on GMII */
    766 #define GEM_MII_DATAPATH_BITS	"\177\020"				\
    767 				"b\0SERIAL\0b\1SERDES\0b\2MII\0b\3MIIOUT\0\0"
    768 
    769 
    770 /*
    771  * Bits in GEM_MII_SLINK_CONTROL register
    772  * Default: 0x000
    773  */
    774 #define	GEM_MII_SLINK_LOOPBACK	0x00000001	/* enable loopback on Serialink
    775 						   disable loopback on SERDES */
    776 #define	GEM_MII_SLINK_EN_SYNC_D	0x00000002	/* enable sync detection */
    777 #define	GEM_MII_SLINK_LOCK_REF	0x00000004	/* lock reference clock */
    778 #define	GEM_MII_SLINK_EMPHASIS	0x00000018	/* enable emphasis */
    779 #define	GEM_MII_SLINK_SELFTEST	0x000001c0
    780 #define	GEM_MII_SLINK_POWER_OFF	0x00000200	/* Power down Serialink block */
    781 #define	GEM_MII_SLINK_RX_ZERO	0x00000c00	/* PLL input to Serialink */
    782 #define	GEM_MII_SLINK_RX_POLL	0x00003000	/* PLL input to Serialink */
    783 #define	GEM_MII_SLINK_TX_ZERO	0x0000c000	/* PLL input to Serialink */
    784 #define	GEM_MII_SLINK_TX_POLL	0x00030000	/* PLL input to Serialink */
    785 #define	GEM_MII_SLINK_CONTROL_BITS					\
    786 				"\177\020b\0LOOP\0b\1ENASYNC\0b\2LOCKREF" \
    787 				"\0b\3EMPHASIS1\0b\4EMPHASIS2\0b\x9PWRDWN\0\0"
    788 
    789 
    790 /*
    791  * Bits in GEM_MII_OUTPUT_SELECT register
    792  * Default: 0x0
    793  */
    794 #define GEM_MII_PROM_ADDR	0x00000003	/* Test output multiplexor */
    795 
    796 
    797 /*
    798  * Bits in GEM_MII_SLINK_STATUS register
    799  * Default: 0x0
    800  */
    801 #define	GEM_MII_SLINK_TEST	0x00000000	/* undergoing test */
    802 #define	GEM_MII_SLINK_LOCKED	0x00000001	/* waiting 500us lockrefn */
    803 #define	GEM_MII_SLINK_COMMA	0x00000002	/* waiting for comma detect */
    804 #define	GEM_MII_SLINK_SYNC	0x00000003	/* recv data synchronized */
    805 
    806 
    807 /*
    808  * PCI Expansion ROM runtime access
    809  * Sun GEMs map a 1MB space for the PCI Expansion ROM as the second half
    810  * of the first register bank, although they only support up to 64KB ROMs.
    811  */
    812 #define	GEM_PCI_ROM_OFFSET	0x100000
    813 #define	GEM_PCI_ROM_SIZE	0x10000
    814 
    815 
    816 /* Wired GEM PHY addresses */
    817 #define	GEM_PHYAD_INTERNAL	1
    818 #define	GEM_PHYAD_EXTERNAL	0
    819 
    820 /*
    821  * GEM descriptor table structures.
    822  */
    823 struct gem_desc {
    824 	volatile uint64_t	gd_flags;
    825 	volatile uint64_t	gd_addr;
    826 };
    827 
    828 /* Transmit flags */
    829 #define	GEM_TD_BUFSIZE		0x0000000000007fffLL
    830 #define	GEM_TD_CXSUM_START	0x00000000001f8000LL	/* Cxsum start offset */
    831 #define	GEM_TD_CXSUM_STARTSHFT	15
    832 #define	GEM_TD_CXSUM_STUFF	0x000000001fe00000LL	/* Cxsum stuff offset */
    833 #define	GEM_TD_CXSUM_STUFFSHFT	21
    834 #define	GEM_TD_CXSUM_ENABLE	0x0000000020000000LL	/* Cxsum generation enable */
    835 #define	GEM_TD_END_OF_PACKET	0x0000000040000000LL
    836 #define	GEM_TD_START_OF_PACKET	0x0000000080000000LL
    837 #define	GEM_TD_INTERRUPT_ME	0x0000000100000000LL	/* Interrupt me now */
    838 #define	GEM_TD_NO_CRC		0x0000000200000000LL	/* do not insert crc */
    839 /*
    840  * Only need to set GEM_TD_CXSUM_ENABLE, GEM_TD_CXSUM_STUFF,
    841  * GEM_TD_CXSUM_START, and GEM_TD_INTERRUPT_ME in 1st descriptor of a group.
    842  */
    843 
    844 /* Receive flags */
    845 #define	GEM_RD_CHECKSUM		0x000000000000ffffLL	/* is the complement */
    846 #define	GEM_RD_BUFSIZE		0x000000007fff0000LL
    847 #define	GEM_RD_OWN		0x0000000080000000LL	/* 1 - owned by h/w */
    848 #define	GEM_RD_HASHVAL		0x0ffff00000000000LL
    849 #define	GEM_RD_HASH_PASS	0x1000000000000000LL	/* passed hash filter */
    850 #define	GEM_RD_ALTERNATE_MAC	0x2000000000000000LL	/* Alternate MAC adrs */
    851 #define	GEM_RD_BAD_CRC		0x4000000000000000LL
    852 
    853 #define	GEM_RD_BUFSHIFT		16
    854 #define	GEM_RD_BUFLEN(x)	(((x)&GEM_RD_BUFSIZE)>>GEM_RD_BUFSHIFT)
    855 
    856 #endif
    857