Home | History | Annotate | Line # | Download | only in pci
if_casreg.h revision 1.1.4.2
      1 /*	$NetBSD: if_casreg.h,v 1.1.4.2 2010/03/11 15:03:45 yamt Exp $ */
      2 /*	$OpenBSD: if_casreg.h,v 1.10 2008/05/31 22:49:03 kettenis Exp $	*/
      3 
      4 /*
      5  *
      6  * Copyright (C) 2007 Mark Kettenis.
      7  * Copyright (C) 2001 Eduardo Horvath.
      8  * All rights reserved.
      9  *
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  *
     20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR  ``AS IS'' AND
     21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR  BE LIABLE
     24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     30  * SUCH DAMAGE.
     31  *
     32  */
     33 
     34 #ifndef	_IF_CASREG_H
     35 #define	_IF_CASREG_H
     36 
     37 /*
     38  * Register definitions for Sun Cassini ethernet controllers.
     39  */
     40 
     41 /*
     42  * First bank: these registers live at the start of the PCI mapping.
     43  */
     44 #define	CAS_SEB_STATE		0x0000	/* SEB state reg, R/O */
     45 #define	CAS_CONFIG		0x0004	/* config reg */
     46 #define	CAS_STATUS		0x000c	/* status reg */
     47 /* Note: Reading the status reg clears bits 0-6 */
     48 #define	CAS_INTMASK		0x0010
     49 #define	CAS_INTACK		0x0014	/* Interrupt acknowledge, W/O */
     50 #define	CAS_STATUS_ALIAS	0x001c
     51 /* Note: Same as CAS_STATUS but reading it does not clear bits. */
     52 
     53 #define	CAS_ERROR_STATUS	0x1000  /* PCI error status R/C */
     54 #define	CAS_ERROR_MASK		0x0004
     55 #define	CAS_BIF_CONFIG		0x0008  /* BIF config reg */
     56 #define	CAS_BIF_DIAG		0x000c
     57 #define	CAS_RESET		0x1010  /* Software reset register */
     58 
     59 /* Bits in CAS_SEB register */
     60 #define	CAS_SEB_ARB		0x000000002	/* Arbitration status */
     61 #define	CAS_SEB_RXWON		0x000000004
     62 
     63 /* Bits in CAS_CONFIG register */
     64 #define	CAS_CONFIG_BURST_64	0x000000000	/* 0->infinity, 1->64KB */
     65 #define	CAS_CONFIG_BURST_INF	0x000000001	/* 0->infinity, 1->64KB */
     66 #define	CAS_CONFIG_TXDMA_LIMIT	0x00000003e
     67 #define	CAS_CONFIG_RXDMA_LIMIT	0x0000007c0
     68 
     69 #define	CAS_CONFIG_TXDMA_LIMIT_SHIFT	1
     70 #define	CAS_CONFIG_RXDMA_LIMIT_SHIFT	6
     71 
     72 /* Top part of CAS_STATUS has TX completion information */
     73 #define	CAS_STATUS_TX_COMPL	0xfff800000	/* TX completion reg. */
     74 
     75 /*
     76  * Interrupt bits, for both the CAS_STATUS and CAS_INTMASK regs.
     77  * Bits 0-6 auto-clear when read.
     78  */
     79 #define	CAS_INTR_TX_INTME	0x000000001	/* Frame w/INTME bit set sent */
     80 #define	CAS_INTR_TX_EMPTY	0x000000002	/* TX ring empty */
     81 #define	CAS_INTR_TX_DONE	0x000000004	/* TX complete */
     82 #define	CAS_INTR_TX_TAG_ERR	0x000000008
     83 #define	CAS_INTR_RX_DONE	0x000000010	/* Got a packet */
     84 #define	CAS_INTR_RX_NOBUF	0x000000020
     85 #define	CAS_INTR_RX_TAG_ERR	0x000000040
     86 #define	CAS_INTR_RX_COMP_FULL	0x000000080
     87 #define	CAS_INTR_PCS		0x000002000	/* Physical Code Sub-layer */
     88 #define	CAS_INTR_TX_MAC		0x000004000
     89 #define	CAS_INTR_RX_MAC		0x000008000
     90 #define	CAS_INTR_MAC_CONTROL	0x000010000	/* MAC control interrupt */
     91 #define	CAS_INTR_MIF		0x000020000
     92 #define	CAS_INTR_BERR		0x000040000	/* Bus error interrupt */
     93 #define CAS_INTR_BITS	"\020"					\
     94 			"\1INTME\2TXEMPTY\3TXDONE\4TX_TAG_ERR"	\
     95 			"\5RXDONE\6RXNOBUF\7RX_TAG_ERR"		\
     96 			"\10RX_COMP_FULL"			\
     97 			"\16PCS\17TXMAC\20RXMAC"		\
     98 			"\21MACCONTROL\22MIF\23BERR"
     99 
    100 /* CAS_ERROR_STATUS and CAS_ERROR_MASK PCI error bits */
    101 #define	CAS_ERROR_STAT_BADACK	0x000000001	/* No ACK64# */
    102 #define	CAS_ERROR_STAT_DTRTO	0x000000002	/* Delayed xaction timeout */
    103 #define	CAS_ERROR_STAT_OTHERS	0x000000004
    104 
    105 /* CAS_BIF_CONFIG register bits */
    106 #define	CAS_BIF_CONFIG_SLOWCLK	0x000000001	/* Parity error timing */
    107 #define	CAS_BIF_CONFIG_HOST_64	0x000000002	/* 64-bit host */
    108 #define	CAS_BIF_CONFIG_B64D_DIS	0x000000004	/* no 64-bit data cycle */
    109 #define	CAS_BIF_CONFIG_M66EN	0x000000008
    110 
    111 /* CAS_RESET register bits -- TX and RX self clear when complete. */
    112 #define	CAS_RESET_TX		0x000000001	/* Reset TX half */
    113 #define	CAS_RESET_RX		0x000000002	/* Reset RX half */
    114 #define	CAS_RESET_RSTOUT	0x000000004	/* Force PCI RSTOUT# */
    115 #define	CAS_RESET_BLOCK_PCS	0x00000008	/* Block PCS reset */
    116 
    117 /* TX DMA registers */
    118 #define	CAS_TX_CONFIG		0x2004
    119 
    120 #define	CAS_TX_FIFO_WR_PTR	0x2014		/* FIFO write pointer */
    121 #define	CAS_TX_FIFO_SDWR_PTR	0x2018		/* FIFO shadow write pointer */
    122 #define	CAS_TX_FIFO_RD_PTR	0x201c		/* FIFO read pointer */
    123 #define	CAS_TX_FIFO_SDRD_PTR	0x2020		/* FIFO shadow read pointer */
    124 #define	CAS_TX_FIFO_PKT_CNT	0x2024		/* FIFO packet counter */
    125 
    126 #define	CAS_TX_STATE_MACHINE	0x2028		/* ETX state machine reg */
    127 #define	CAS_TX_DATA_PTR		0x2030		/* ETX state machine reg (64-bit)*/
    128 
    129 #define	CAS_TX_KICK1		0x2038		/* Write last valid desc + 1 */
    130 #define	CAS_TX_KICK2		0x203c
    131 #define	CAS_TX_KICK3		0x2040
    132 #define	CAS_TX_KICK4		0x2044
    133 #define	CAS_TX_COMPLETION1	0x2048
    134 #define	CAS_TX_COMPLETION2	0x204c
    135 #define	CAS_TX_COMPLETION3	0x2050
    136 #define	CAS_TX_COMPLETION4	0x2054
    137 #define	CAS_TX_RING_PTR_LO1	0x2060
    138 #define	CAS_TX_RING_PTR_HI1	0x2064
    139 #define	CAS_TX_RING_PTR_LO2	0x2068
    140 #define	CAS_TX_RING_PTR_HI2	0x206c
    141 #define	CAS_TX_RING_PTR_LO3	0x2070
    142 #define	CAS_TX_RING_PTR_HI3	0x2074
    143 #define	CAS_TX_RING_PTR_LO4	0x2078
    144 #define	CAS_TX_RING_PTR_HI4	0x207c
    145 #define	CAS_TX_MAXBURST1	0x2080
    146 #define	CAS_TX_MAXBURST2	0x2084
    147 #define	CAS_TX_MAXBURST3	0x2088
    148 #define	CAS_TX_MAXBURST4	0x208c
    149 
    150 #define CAS_TX_KICK		CAS_TX_KICK3
    151 #define CAS_TX_COMPLETION	CAS_TX_COMPLETION3
    152 #define CAS_TX_RING_PTR_LO	CAS_TX_RING_PTR_LO3
    153 #define CAS_TX_RING_PTR_HI	CAS_TX_RING_PTR_HI3
    154 
    155 #define	CAS_TX_FIFO_ADDRESS	0x2104
    156 #define	CAS_TX_FIFO_TAG		0x2108
    157 #define	CAS_TX_FIFO_DATA_LO	0x210c
    158 #define	CAS_TX_FIFO_DATA_HI_T1	0x2110
    159 #define	CAS_TX_FIFO_DATA_HI_T0	0x2114
    160 #define	CAS_TX_FIFO_SIZE	0x2118
    161 #define	CAS_TX_DEBUG		0x3028
    162 
    163 /* CAS_TX_CONFIG register bits. */
    164 #define	CAS_TX_CONFIG_TXDMA_EN	0x00000001	/* TX DMA enable */
    165 #define	CAS_TX_CONFIG_TXRING_SZ	0x0000003c	/* TX ring size */
    166 #define	CAS_TX_CONFIG_PACED	0x00100000	/* TX_all_int modifier */
    167 
    168 #define	CAS_RING_SZ_32		0	/* 32 descriptors */
    169 #define	CAS_RING_SZ_64		1
    170 #define	CAS_RING_SZ_128		2
    171 #define	CAS_RING_SZ_256		3
    172 #define	CAS_RING_SZ_512		4
    173 #define	CAS_RING_SZ_1024	5
    174 #define	CAS_RING_SZ_2048	6
    175 #define	CAS_RING_SZ_4096	7
    176 #define	CAS_RING_SZ_8192	8
    177 
    178 /* CAS_TX_COMPLETION register bits */
    179 #define	CAS_TX_COMPLETION_MASK	0x00001fff	/* # of last descriptor */
    180 
    181 /* RX DMA registers */
    182 #define	CAS_RX_CONFIG		0x4000
    183 #define	CAS_RX_PAGE_SIZE	0x4004
    184 #define	CAS_RX_FIFO_WR_PTR	0x4008		/* FIFO write pointer */
    185 #define	CAS_RX_FIFO_RD_PTR	0x400c		/* FIFO read pointer */
    186 #define	CAS_RX_IPPFIFO_WR_PTR	0x4010		/* IPP FIFO write pointer */
    187 #define	CAS_RX_IPPFIFO_RD_PTR	0x4014		/* IPP FIFO read pointer */
    188 #define	CAS_RX_IPPFIFO_SDWR_PTR	0x4018		/* FIFO shadow write pointer */
    189 #define	CAS_RX_DEBUG		0x401c		/* Debug reg */
    190 #define	CAS_RX_PAUSE_THRESH	0x4020
    191 #define	CAS_RX_KICK		0x4024		/* Write last valid desc + 1 */
    192 #define	CAS_RX_DRING_PTR_LO	0x4028
    193 #define	CAS_RX_DRING_PTR_HI	0x402c
    194 #define	CAS_RX_CRING_PTR_LO	0x4030
    195 #define	CAS_RX_CRING_PTR_HI	0x4034
    196 #define	CAS_RX_COMPLETION	0x4038		/* First pending desc */
    197 #define	CAS_RX_COMP_HEAD	0x403c
    198 #define	CAS_RX_COMP_TAIL	0x4040
    199 #define	CAS_RX_BLANKING		0x4044		/* Interrupt blanking reg */
    200 #define	CAS_RX_RED		0x404c		/* Random Early Detection */
    201 
    202 #define	CAS_RX_IPP_PKT_CNT	0x4054		/* IPP packet counter */
    203 
    204 #define	CAS_RX_FIFO_ADDRESS	0x4080
    205 #define	CAS_RX_FIFO_TAG		0x4084
    206 #define	CAS_RX_FIFO_DATA_LO	0x4088
    207 #define	CAS_RX_FIFO_DATA_HI_T0	0x408c
    208 #define	CAS_RX_FIFO_DATA_HI_T1	0x4090
    209 
    210 /* The following registers only exist on Cassini+. */
    211 #define	CAS_RX_DRING_PTR_LO2	0x4200
    212 #define	CAS_RX_DRING_PTR_HI2	0x4204
    213 #define	CAS_RX_CRING_PTR_LO2	0x4208
    214 #define	CAS_RX_CRING_PTR_HI2	0x420c
    215 #define	CAS_RX_CRING_PTR_LO3	0x4210
    216 #define	CAS_RX_CRING_PTR_HI3	0x4214
    217 #define	CAS_RX_CRING_PTR_LO4	0x4218
    218 #define	CAS_RX_CRING_PTR_HI4	0x421c
    219 #define	CAS_RX_KICK2		0x4220
    220 #define	CAS_RX_COMPLETION2	0x4224
    221 #define	CAS_RX_COMP_HEAD2	0x4228
    222 #define	CAS_RX_COMP_TAIL2	0x422c
    223 #define	CAS_RX_COMP_HEAD3	0x4230
    224 #define	CAS_RX_COMP_TAIL3	0x4234
    225 #define	CAS_RX_COMP_HEAD4	0x4238
    226 #define	CAS_RX_COMP_TAIL4	0x423c
    227 
    228 /* CAS_RX_CONFIG register bits. */
    229 #define	CAS_RX_CONFIG_RXDMA_EN	0x00000001	/* RX DMA enable */
    230 #define	CAS_RX_CONFIG_RXDRNG_SZ	0x0000001e	/* RX descriptor ring size */
    231 #define	CAS_RX_CONFIG_RXCRNG_SZ	0x000001e0	/* RX completion ring size */
    232 #define	CAS_RX_CONFIG_BATCH_DIS	0x00000200	/* desc batching disable */
    233 #define	CAS_RX_CONFIG_FBOFF	0x00001c00	/* first byte offset */
    234 
    235 #define	CAS_RX_CONFIG_RXDRNG_SZ_SHIFT	1
    236 #define	CAS_RX_CONFIG_RXCRNG_SZ_SHIFT	5
    237 #define	CAS_RX_CONFIG_FBOFF_SHFT	10
    238 #define	CAS_RX_CONFIG_RXDRNG2_SZ_SHIFT	16	/* Cassini+ */
    239 
    240 /* CAS_RX_PAGE_SIZE register bits. */
    241 #define	CAS_RX_PAGE_SIZE_SZ	0x00000003	/* Page size */
    242 #define	CAS_RX_PAGE_SIZE_COUNT	0x00007800	/* MTU buffers per page */
    243 #define	CAS_RX_PAGE_SIZE_STRIDE	0x18000000	/* MTU buffer separation */
    244 #define	CAS_RX_PAGE_SIZE_FBOFF	0xc0000000	/* Firts byte offset */
    245 
    246 #define	CAS_RX_PAGE_SIZE_COUNT_SHIFT	11
    247 #define	CAS_RX_PAGE_SIZE_STRIDE_SHIFT	27
    248 #define	CAS_RX_PAGE_SIZE_FBOFF_SHIFT	30
    249 
    250 /* CAS_RX_PAUSE_THRESH register bits -- sizes in multiples of 64 bytes */
    251 #define	CAS_RX_PTH_XOFF_THRESH	0x000001ff
    252 #define	CAS_RX_PTH_XON_THRESH	0x07fc0000
    253 
    254 /* CAS_RX_BLANKING register bits */
    255 #define	CAS_RX_BLANKING_PACKETS	0x000001ff	/* Delay intr for x packets */
    256 #define	CAS_RX_BLANKING_TIME	0x03fc0000	/* Delay intr for x ticks */
    257 /* One tick is 1048 PCI clocks, or 16us at 66MHz */
    258 
    259 /* CAS_MAC registers */
    260 #define	CAS_MAC_TXRESET		0x6000		/* Store 1, cleared when done */
    261 #define	CAS_MAC_RXRESET		0x6004		/* ditto */
    262 #define	CAS_MAC_SEND_PAUSE_CMD	0x6008
    263 #define	CAS_MAC_TX_STATUS	0x6010
    264 #define	CAS_MAC_RX_STATUS	0x6014
    265 #define	CAS_MAC_CONTROL_STATUS	0x6018		/* MAC control status reg */
    266 #define	CAS_MAC_TX_MASK		0x6020		/* TX MAC mask register */
    267 #define	CAS_MAC_RX_MASK		0x6024
    268 #define	CAS_MAC_CONTROL_MASK	0x6028
    269 #define	CAS_MAC_TX_CONFIG	0x6030
    270 #define	CAS_MAC_RX_CONFIG	0x6034
    271 #define	CAS_MAC_CONTROL_CONFIG	0x6038
    272 #define	CAS_MAC_XIF_CONFIG	0x603c
    273 #define	CAS_MAC_IPG0		0x6040		/* inter packet gap 0 */
    274 #define	CAS_MAC_IPG1		0x6044		/* inter packet gap 1 */
    275 #define	CAS_MAC_IPG2		0x6048		/* inter packet gap 2 */
    276 #define	CAS_MAC_SLOT_TIME	0x604c		/* slot time, bits 0-7 */
    277 #define	CAS_MAC_MAC_MIN_FRAME	0x6050
    278 #define	CAS_MAC_MAC_MAX_FRAME	0x6054
    279 #define	CAS_MAC_PREAMBLE_LEN	0x6058
    280 #define	CAS_MAC_JAM_SIZE	0x605c
    281 #define	CAS_MAC_ATTEMPT_LIMIT	0x6060
    282 #define	CAS_MAC_CONTROL_TYPE	0x6064
    283 
    284 #define	CAS_MAC_ADDR0		0x6080		/* Normal MAC address 0 */
    285 #define	CAS_MAC_ADDR1		0x6084
    286 #define	CAS_MAC_ADDR2		0x6088
    287 #define	CAS_MAC_ADDR3		0x608c		/* Alternate MAC address 0 */
    288 #define	CAS_MAC_ADDR4		0x6090
    289 #define	CAS_MAC_ADDR5		0x6094
    290 #define	CAS_MAC_ADDR42		0x6128		/* Control MAC address 0 */
    291 #define	CAS_MAC_ADDR43		0x612c
    292 #define	CAS_MAC_ADDR44		0x6130
    293 
    294 #define	CAS_MAC_ADDR_FILTER0	0x614c
    295 #define	CAS_MAC_ADDR_FILTER1	0x6150
    296 #define	CAS_MAC_ADDR_FILTER2	0x6154
    297 #define	CAS_MAC_ADR_FLT_MASK1_2	0x6158		/* Address filter mask 1,2 */
    298 #define	CAS_MAC_ADR_FLT_MASK0	0x615c		/* Address filter mask 0 reg */
    299 
    300 #define	CAS_MAC_HASH0		0x6160		/* Hash table 0 */
    301 #define	CAS_MAC_HASH1		0x6164
    302 #define	CAS_MAC_HASH2		0x6168
    303 #define	CAS_MAC_HASH3		0x616c
    304 #define	CAS_MAC_HASH4		0x6170
    305 #define	CAS_MAC_HASH5		0x6174
    306 #define	CAS_MAC_HASH6		0x6178
    307 #define	CAS_MAC_HASH7		0x617c
    308 #define	CAS_MAC_HASH8		0x6180
    309 #define	CAS_MAC_HASH9		0x6184
    310 #define	CAS_MAC_HASH10		0x6188
    311 #define	CAS_MAC_HASH11		0x618c
    312 #define	CAS_MAC_HASH12		0x6190
    313 #define	CAS_MAC_HASH13		0x6194
    314 #define	CAS_MAC_HASH14		0x6198
    315 #define	CAS_MAC_HASH15		0x619c
    316 
    317 #define	CAS_MAC_NORM_COLL_CNT	0x61a0		/* Normal collision counter */
    318 #define	CAS_MAC_FIRST_COLL_CNT	0x61a4		/* 1st successful collision cntr */
    319 #define	CAS_MAC_EXCESS_COLL_CNT	0x61a8		/* Excess collision counter */
    320 #define	CAS_MAC_LATE_COLL_CNT	0x61ac		/* Late collision counter */
    321 #define	CAS_MAC_DEFER_TMR_CNT	0x61b0		/* defer timer counter */
    322 #define	CAS_MAC_PEAK_ATTEMPTS	0x61b4
    323 #define	CAS_MAC_RX_FRAME_COUNT	0x61b8
    324 #define	CAS_MAC_RX_LEN_ERR_CNT	0x61bc
    325 #define	CAS_MAC_RX_ALIGN_ERR	0x61c0
    326 #define	CAS_MAC_RX_CRC_ERR_CNT	0x61c4
    327 #define	CAS_MAC_RX_CODE_VIOL	0x61c8
    328 #define	CAS_MAC_RANDOM_SEED	0x61cc
    329 #define	CAS_MAC_MAC_STATE	0x61d0		/* MAC sstate machine reg */
    330 
    331 /* CAS_MAC_SEND_PAUSE_CMD register bits */
    332 #define	CAS_MAC_PAUSE_CMD_TIME	0x0000ffff
    333 #define	CAS_MAC_PAUSE_CMD_SEND	0x00010000
    334 
    335 /* CAS_MAC_TX_STATUS and _MASK register bits */
    336 #define	CAS_MAC_TX_XMIT_DONE	0x00000001
    337 #define	CAS_MAC_TX_UNDERRUN	0x00000002
    338 #define	CAS_MAC_TX_PKT_TOO_LONG	0x00000004
    339 #define	CAS_MAC_TX_NCC_EXP	0x00000008	/* Normal collision cnt exp */
    340 #define	CAS_MAC_TX_ECC_EXP	0x00000010
    341 #define	CAS_MAC_TX_LCC_EXP	0x00000020
    342 #define	CAS_MAC_TX_FCC_EXP	0x00000040
    343 #define	CAS_MAC_TX_DEFER_EXP	0x00000080
    344 #define	CAS_MAC_TX_PEAK_EXP	0x00000100
    345 
    346 /* CAS_MAC_RX_STATUS and _MASK register bits */
    347 #define	CAS_MAC_RX_DONE		0x00000001
    348 #define	CAS_MAC_RX_OVERFLOW	0x00000002
    349 #define	CAS_MAC_RX_FRAME_CNT	0x00000004
    350 #define	CAS_MAC_RX_ALIGN_EXP	0x00000008
    351 #define	CAS_MAC_RX_CRC_EXP	0x00000010
    352 #define	CAS_MAC_RX_LEN_EXP	0x00000020
    353 #define	CAS_MAC_RX_CVI_EXP	0x00000040	/* Code violation */
    354 
    355 /* CAS_MAC_CONTROL_STATUS and CAS_MAC_CONTROL_MASK register bits */
    356 #define	CAS_MAC_PAUSED		0x00000001	/* Pause received */
    357 #define	CAS_MAC_PAUSE		0x00000002	/* enter pause state */
    358 #define	CAS_MAC_RESUME		0x00000004	/* exit pause state */
    359 #define	CAS_MAC_PAUSE_TIME	0xffff0000
    360 
    361 /* CAS_MAC_XIF_CONFIG register bits */
    362 #define	CAS_MAC_XIF_TX_MII_ENA	0x00000001	/* Enable XIF output drivers */
    363 #define	CAS_MAC_XIF_MII_LOOPBK	0x00000002	/* Enable MII loopback mode */
    364 #define	CAS_MAC_XIF_ECHO_DISABL	0x00000004	/* Disable echo */
    365 #define	CAS_MAC_XIF_GMII_MODE	0x00000008	/* Select GMII/MII mode */
    366 #define	CAS_MAC_XIF_MII_BUF_ENA	0x00000010	/* Enable MII recv buffers */
    367 #define	CAS_MAC_XIF_LINK_LED	0x00000020	/* force link LED active */
    368 #define	CAS_MAC_XIF_FDPLX_LED	0x00000040	/* force FDPLX LED active */
    369 
    370 /* CAS_MAC_SLOT_TIME register bits */
    371 #define	CAS_MAC_SLOT_INT	0x40
    372 #define	CAS_MAC_SLOT_EXT	0x200		/* external phy */
    373 
    374 /* CAS_MAC_TX_CONFIG register bits */
    375 #define	CAS_MAC_TX_ENABLE	0x00000001	/* TX enable */
    376 #define	CAS_MAC_TX_IGN_CARRIER	0x00000002	/* Ignore carrier sense */
    377 #define	CAS_MAC_TX_IGN_COLLIS	0x00000004	/* ignore collisions */
    378 #define	CAS_MAC_TX_ENA_IPG0	0x00000008	/* extend Rx-to-TX IPG */
    379 #define	CAS_MAC_TX_NGU		0x00000010	/* Never give up */
    380 #define	CAS_MAC_TX_NGU_LIMIT	0x00000020	/* Never give up limit */
    381 #define	CAS_MAC_TX_NO_BACKOFF	0x00000040
    382 #define	CAS_MAC_TX_SLOWDOWN	0x00000080
    383 #define	CAS_MAC_TX_NO_FCS	0x00000100	/* no FCS will be generated */
    384 #define	CAS_MAC_TX_CARR_EXTEND	0x00000200	/* Ena TX Carrier Extension */
    385 /* Carrier Extension is required for half duplex Gbps operation */
    386 
    387 /* CAS_MAC_RX_CONFIG register bits */
    388 #define	CAS_MAC_RX_ENABLE	0x00000001	/* RX enable */
    389 #define	CAS_MAC_RX_STRIP_PAD	0x00000002	/* strip pad bytes */
    390 #define	CAS_MAC_RX_STRIP_CRC	0x00000004
    391 #define	CAS_MAC_RX_PROMISCUOUS	0x00000008	/* promiscuous mode */
    392 #define	CAS_MAC_RX_PROMISC_GRP	0x00000010	/* promiscuous group mode */
    393 #define	CAS_MAC_RX_HASH_FILTER	0x00000020	/* enable hash filter */
    394 #define	CAS_MAC_RX_ADDR_FILTER	0x00000040	/* enable address filter */
    395 #define	CAS_MAC_RX_ERRCHK_DIS	0x00000080	/* disable error checking */
    396 #define	CAS_MAC_RX_CARR_EXTEND	0x00000100	/* Ena RX Carrier Extension */
    397 /*
    398  * Carrier Extension enables reception of packet bursts generated by
    399  * senders with carrier extension enabled.
    400  */
    401 
    402 /* CAS_MAC_CONTROL_CONFIG bits */
    403 #define	CAS_MAC_CC_TX_PAUSE	0x00000001	/* send pause enabled */
    404 #define	CAS_MAC_CC_RX_PAUSE	0x00000002	/* receive pause enabled */
    405 #define	CAS_MAC_CC_PASS_PAUSE	0x00000004	/* pass pause up */
    406 
    407 /* Cassini MIF registers */
    408 /* Bit bang registers use low bit only */
    409 #define	CAS_MIF_BB_CLOCK	0x6200		/* bit bang clock */
    410 #define	CAS_MIF_BB_DATA		0x6204		/* bit bang data */
    411 #define	CAS_MIF_BB_OUTPUT_ENAB	0x6208
    412 #define	CAS_MIF_FRAME		0x620c		/* MIF frame - ctl and data */
    413 #define	CAS_MIF_CONFIG		0x6210
    414 #define	CAS_MIF_INTERRUPT_MASK	0x6214
    415 #define	CAS_MIF_BASIC_STATUS	0x6218
    416 #define	CAS_MIF_STATE_MACHINE	0x621c
    417 
    418 /* CAS_MIF_FRAME bits */
    419 #define	CAS_MIF_FRAME_DATA	0x0000ffff
    420 #define	CAS_MIF_FRAME_TA0	0x00010000	/* TA bit, 1 for completion */
    421 #define	CAS_MIF_FRAME_TA1	0x00020000	/* TA bits */
    422 #define	CAS_MIF_FRAME_REG_ADDR	0x007c0000
    423 #define	CAS_MIF_FRAME_PHY_ADDR	0x0f800000	/* phy address, should be 0 */
    424 #define	CAS_MIF_FRAME_OP	0x30000000	/* operation - write/read */
    425 #define	CAS_MIF_FRAME_START	0xc0000000	/* START bits */
    426 
    427 #define	CAS_MIF_FRAME_READ	0x60020000
    428 #define	CAS_MIF_FRAME_WRITE	0x50020000
    429 
    430 #define	CAS_MIF_REG_SHIFT	18
    431 #define	CAS_MIF_PHY_SHIFT	23
    432 
    433 /* CAS_MIF_CONFIG register bits */
    434 #define	CAS_MIF_CONFIG_PHY_SEL	0x00000001	/* PHY select, 0=MDIO0 */
    435 #define	CAS_MIF_CONFIG_POLL_ENA	0x00000002	/* poll enable */
    436 #define	CAS_MIF_CONFIG_BB_ENA	0x00000004	/* bit bang enable */
    437 #define	CAS_MIF_CONFIG_REG_ADR	0x000000f8	/* poll register address */
    438 #define	CAS_MIF_CONFIG_MDI0	0x00000100	/* MDIO_0 Data/MDIO_0 atached */
    439 #define	CAS_MIF_CONFIG_MDI1	0x00000200	/* MDIO_1 Data/MDIO_1 atached */
    440 #define	CAS_MIF_CONFIG_PHY_ADR	0x00007c00	/* poll PHY address */
    441 /* MDI0 is onboard transceiver MID1 is external, PHYAD for both is 0 */
    442 
    443 /* CAS_MIF_BASIC_STATUS and CAS_MIF_INTERRUPT_MASK bits */
    444 #define	CAS_MIF_STATUS		0x0000ffff
    445 #define	CAS_MIF_BASIC		0xffff0000
    446 /*
    447  * The Basic part is the last value read in the POLL field of the config
    448  * register.
    449  *
    450  * The status part indicates the bits that have changed.
    451  */
    452 
    453 /* Cassini PCS/Serial link registers */
    454 #define	CAS_MII_CONTROL		0x9000
    455 #define	CAS_MII_STATUS		0x9004
    456 #define	CAS_MII_ANAR		0x9008		/* MII advertisement reg */
    457 #define	CAS_MII_ANLPAR		0x900c		/* Link Partner Ability Reg */
    458 #define	CAS_MII_CONFIG		0x9010
    459 #define	CAS_MII_STATE_MACHINE	0x9014
    460 #define	CAS_MII_INTERRUP_STATUS	0x9018		/* PCS interrupt state */
    461 #define	CAS_MII_DATAPATH_MODE	0x9050
    462 #define	CAS_MII_SLINK_CONTROL	0x9054		/* Serial link control */
    463 #define	CAS_MII_OUTPUT_SELECT	0x9058
    464 #define	CAS_MII_SLINK_STATUS	0x905c		/* serial link status */
    465 #define	CAS_MII_PACKET_COUNT	0x9060
    466 
    467 /* CAS_MII_CONTROL bits */
    468 #define	CAS_MII_CONTROL_RESET	0x00008000
    469 #define	CAS_MII_CONTROL_LOOPBK	0x00004000	/* 10-bit i/f loopback */
    470 #define	CAS_MII_CONTROL_1000M	0x00002000	/* speed select, always 0 */
    471 #define	CAS_MII_CONTROL_AUTONEG	0x00001000	/* auto negotiation enabled */
    472 #define	CAS_MII_CONTROL_POWERDN	0x00000800
    473 #define	CAS_MII_CONTROL_ISOLATE	0x00000400	/* isolate phy from mii */
    474 #define	CAS_MII_CONTROL_RAN	0x00000200	/* restart auto negotiation */
    475 #define	CAS_MII_CONTROL_FDUPLEX	0x00000100	/* full duplex, always 0 */
    476 #define	CAS_MII_CONTROL_COL_TST	0x00000080	/* collision test */
    477 
    478 /* CAS_MII_STATUS reg - PCS "BMSR" (Basic Mode Status Reg) */
    479 #define	CAS_MII_STATUS_GB_FDX	0x00000400	/* can perform GBit FDX */
    480 #define	CAS_MII_STATUS_GB_HDX	0x00000200	/* can perform GBit HDX */
    481 #define	CAS_MII_STATUS_UNK	0x00000100
    482 #define	CAS_MII_STATUS_ANEG_CPT	0x00000020	/* auto negotiate compete */
    483 #define	CAS_MII_STATUS_REM_FLT	0x00000010	/* remote fault detected */
    484 #define	CAS_MII_STATUS_ACFG	0x00000008	/* can auto negotiate */
    485 #define	CAS_MII_STATUS_LINK_STS	0x00000004	/* link status */
    486 #define	CAS_MII_STATUS_JABBER	0x00000002	/* jabber condition detected */
    487 #define	CAS_MII_STATUS_EXTCAP	0x00000001	/* extended register capability */
    488 
    489 /* CAS_MII_ANAR and CAS_MII_ANLPAR reg bits */
    490 #define	CAS_MII_ANEG_NP		0x00008000	/* next page bit */
    491 #define	CAS_MII_ANEG_ACK	0x00004000	/* ack reception of */
    492 						/* Link Partner Capability */
    493 #define	CAS_MII_ANEG_RF		0x00003000	/* advertise remote fault cap */
    494 #define	CAS_MII_ANEG_ASYM_PAUSE	0x00000100	/* asymmetric pause */
    495 #define	CAS_MII_ANEG_SYM_PAUSE	0x00000080	/* symmetric pause */
    496 #define	CAS_MII_ANEG_HLF_DUPLX	0x00000040
    497 #define	CAS_MII_ANEG_FUL_DUPLX	0x00000020
    498 
    499 /* CAS_MII_CONFIG reg */
    500 #define	CAS_MII_CONFIG_TIMER	0x0000000e	/* link monitor timer values */
    501 #define	CAS_MII_CONFIG_ANTO	0x00000020	/* 10ms ANEG timer override */
    502 #define	CAS_MII_CONFIG_JS	0x00000018	/* Jitter Study, 0 normal
    503 						 * 1 high freq, 2 low freq */
    504 #define	CAS_MII_CONFIG_SDL	0x00000004	/* Signal Detect active low */
    505 #define	CAS_MII_CONFIG_SDO	0x00000002	/* Signal Detect Override */
    506 #define	CAS_MII_CONFIG_ENABLE	0x00000001	/* Enable PCS */
    507 
    508 /*
    509  * CAS_MII_STATE_MACHINE
    510  * XXX These are best guesses from observed behavior.
    511  */
    512 #define	CAS_MII_FSM_STOP	0x00000000	/* stopped */
    513 #define	CAS_MII_FSM_RUN		0x00000001	/* running */
    514 #define	CAS_MII_FSM_UNKWN	0x00000100	/* unknown */
    515 #define	CAS_MII_FSM_DONE	0x00000101	/* complete */
    516 
    517 /*
    518  * CAS_MII_INTERRUP_STATUS reg
    519  * No mask register; mask with the global interrupt mask register.
    520  */
    521 #define	CAS_MII_INTERRUP_LINK	0x00000002	/* PCS link status change */
    522 
    523 /* CAS_MII_DATAPATH_MODE reg */
    524 #define	CAS_MII_DATAPATH_SERIAL	0x00000001	/* Serial link */
    525 #define	CAS_MII_DATAPATH_SERDES	0x00000002	/* Use PCS via 10bit interfac */
    526 #define	CAS_MII_DATAPATH_MII	0x00000004	/* Use {G}MII, not PCS */
    527 #define	CAS_MII_DATAPATH_MIIOUT	0x00000008	/* enable serial output on GMII */
    528 
    529 /* CAS_MII_SLINK_CONTROL reg */
    530 #define	CAS_MII_SLINK_LOOPBACK	0x00000001	/* enable loopback at sl, logic
    531 						 * reversed for SERDES */
    532 #define	CAS_MII_SLINK_EN_SYNC_D	0x00000002	/* enable sync detection */
    533 #define	CAS_MII_SLINK_LOCK_REF	0x00000004	/* lock reference clock */
    534 #define	CAS_MII_SLINK_EMPHASIS	0x00000008	/* enable emphasis */
    535 #define	CAS_MII_SLINK_SELFTEST	0x000001c0
    536 #define	CAS_MII_SLINK_POWER_OFF	0x00000200	/* Power down serial link */
    537 
    538 /* CAS_MII_SLINK_STATUS reg */
    539 #define	CAS_MII_SLINK_TEST	0x00000000	/* undergoing test */
    540 #define	CAS_MII_SLINK_LOCKED	0x00000001	/* waiting 500us lockrefn */
    541 #define	CAS_MII_SLINK_COMMA	0x00000002	/* waiting for comma detect */
    542 #define	CAS_MII_SLINK_SYNC	0x00000003	/* recv data synchronized */
    543 
    544 /* Wired PHY addresses */
    545 #define	CAS_PHYAD_INTERNAL	1
    546 #define	CAS_PHYAD_EXTERNAL	0
    547 
    548 /*
    549  * Cassini ring structures.
    550  */
    551 
    552 /* Descriptor rings */
    553 struct cas_desc {
    554 	uint64_t	cd_flags;
    555 	uint64_t	cd_addr;
    556 };
    557 
    558 /* Transmit flags */
    559 #define	CAS_TD_BUFSIZE		0x0000000000007fffLL
    560 #define	CAS_TD_CXSUM_START	0x00000000001f8000LL	/* Cxsum start offset */
    561 #define	CAS_TD_CXSUM_STARTSHFT  15
    562 #define	CAS_TD_CXSUM_STUFF	0x000000001fe00000LL	/* Cxsum stuff offset */
    563 #define	CAS_TD_CXSUM_STUFFSHFT  21
    564 #define	CAS_TD_CXSUM_ENABLE	0x0000000020000000LL	/* Cxsum generation enable */
    565 #define	CAS_TD_END_OF_PACKET	0x0000000040000000LL
    566 #define	CAS_TD_START_OF_PACKET	0x0000000080000000LL
    567 #define	CAS_TD_INTERRUPT_ME	0x0000000100000000LL	/* Interrupt me now */
    568 #define	CAS_TD_NO_CRC		0x0000000200000000LL	/* do not insert crc */
    569 /*
    570  * Only need to set CAS_TD_CXSUM_ENABLE, CAS_TD_CXSUM_STUFF,
    571  * CAS_TD_CXSUM_START, and CAS_TD_INTERRUPT_ME in 1st descriptor of a group.
    572  */
    573 
    574 /* Completion ring */
    575 struct cas_comp {
    576 	u_int64_t	cc_word[4];
    577 };
    578 
    579 #define	CAS_RC0_TYPE		0xc000000000000000ULL
    580 #define	CAS_RC0_RELEASE_HDR	0x2000000000000000ULL
    581 #define	CAS_RC0_RELEASE_DATA	0x1000000000000000ULL
    582 #define	CAS_RC0_SPLIT		0x0400000000000000ULL
    583 #define	CAS_RC0_SKIP_MASK	0x0180000000000000ULL
    584 #define	CAS_RC0_SKIP_SHIFT	55
    585 #define CAS_RC0_DATA_IDX_MASK	0x007ffe0000000000ULL
    586 #define CAS_RC0_DATA_IDX_SHIFT	41
    587 #define CAS_RC0_DATA_OFF_MASK	0x000001fff8000000ULL
    588 #define CAS_RC0_DATA_OFF_SHIFT	27
    589 #define CAS_RC0_DATA_LEN_MASK	0x0000000007ffe000ULL
    590 #define CAS_RC0_DATA_LEN_SHIFT	13
    591 
    592 #define CAS_RC0_SKIP(w) \
    593 	(((w) & CAS_RC0_SKIP_MASK) >> CAS_RC0_SKIP_SHIFT)
    594 #define CAS_RC0_DATA_IDX(w) \
    595 	(((w) & CAS_RC0_DATA_IDX_MASK) >> CAS_RC0_DATA_IDX_SHIFT)
    596 #define CAS_RC0_DATA_OFF(w) \
    597 	(((w) & CAS_RC0_DATA_OFF_MASK) >> CAS_RC0_DATA_OFF_SHIFT)
    598 #define CAS_RC0_DATA_LEN(w) \
    599 	(((w) & CAS_RC0_DATA_LEN_MASK) >> CAS_RC0_DATA_LEN_SHIFT)
    600 
    601 #define CAS_RC1_HDR_IDX_MASK	0xfffc000000000000ULL
    602 #define CAS_RC1_HDR_IDX_SHIFT	50
    603 #define CAS_RC1_HDR_OFF_MASK	0x0003f00000000000ULL
    604 #define CAS_RC1_HDR_OFF_SHIFT	44
    605 #define CAS_RC1_HDR_LEN_MASK	0x00000ff800000000ULL
    606 #define CAS_RC1_HDR_LEN_SHIFT	35
    607 
    608 #define CAS_RC1_HDR_IDX(w) \
    609 	(((w) & CAS_RC1_HDR_IDX_MASK) >> CAS_RC1_HDR_IDX_SHIFT)
    610 #define CAS_RC1_HDR_OFF(w) \
    611 	(((w) & CAS_RC1_HDR_OFF_MASK) >> CAS_RC1_HDR_OFF_SHIFT)
    612 #define CAS_RC1_HDR_LEN(w) \
    613 	(((w) & CAS_RC1_HDR_LEN_MASK) >> CAS_RC1_HDR_LEN_SHIFT)
    614 
    615 #define	CAS_RC3_OWN		0x0000080000000000ULL /* Owned by hardware */
    616 
    617 #endif /* _IF_CASREG_H */
    618