aic6915reg.h revision 1.1.4.1       1  1.1.4.1  jdolecek /*	$NetBSD: aic6915reg.h,v 1.1.4.1 2002/06/23 17:46:11 jdolecek Exp $	*/
      2      1.1   thorpej 
      3      1.1   thorpej /*-
      4      1.1   thorpej  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5      1.1   thorpej  * All rights reserved.
      6      1.1   thorpej  *
      7      1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1   thorpej  * by Jason R. Thorpe.
      9      1.1   thorpej  *
     10      1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     11      1.1   thorpej  * modification, are permitted provided that the following conditions
     12      1.1   thorpej  * are met:
     13      1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     14      1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     15      1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17      1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     18      1.1   thorpej  * 3. All advertising materials mentioning features or use of this software
     19      1.1   thorpej  *    must display the following acknowledgement:
     20      1.1   thorpej  *	This product includes software developed by the NetBSD
     21      1.1   thorpej  *	Foundation, Inc. and its contributors.
     22      1.1   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.1   thorpej  *    contributors may be used to endorse or promote products derived
     24      1.1   thorpej  *    from this software without specific prior written permission.
     25      1.1   thorpej  *
     26      1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1   thorpej  */
     38      1.1   thorpej 
     39      1.1   thorpej #ifndef _DEV_IC_AIC6915REG_H_
     40      1.1   thorpej #define	_DEV_IC_AIC6915REG_H_
     41      1.1   thorpej 
     42      1.1   thorpej /*
     43      1.1   thorpej  * Register description for the Adaptec AIC-6915 (``Starfire'')
     44      1.1   thorpej  * 10/100 Ethernet controller.
     45      1.1   thorpej  */
     46      1.1   thorpej 
     47      1.1   thorpej /*
     48      1.1   thorpej  * Receive Buffer Descriptor (One-size, 32-bit addressing)
     49      1.1   thorpej  */
     50      1.1   thorpej struct sf_rbd32 {
     51      1.1   thorpej 	uint32_t	rbd32_addr;		/* address, flags */
     52      1.1   thorpej } __attribute__((__packed__));
     53      1.1   thorpej 
     54      1.1   thorpej /*
     55      1.1   thorpej  * Receive Buffer Descriptor (One-size, 64-bit addressing)
     56      1.1   thorpej  */
     57      1.1   thorpej struct sf_rbd64 {
     58      1.1   thorpej 	uint32_t	rbd64_addr_lo;		/* address (LSD), flags */
     59      1.1   thorpej 	uint32_t	rbd64_addr_hi;		/* address (MDS) */
     60      1.1   thorpej } __attribute__((__packed__));
     61      1.1   thorpej 
     62      1.1   thorpej #define	RBD_V		(1U << 0)	/* valid descriptor */
     63      1.1   thorpej #define	RBD_E		(1U << 1)	/* end of ring */
     64      1.1   thorpej 
     65      1.1   thorpej /*
     66      1.1   thorpej  * Short (Type 0) Completion Descriptor
     67      1.1   thorpej  */
     68      1.1   thorpej struct sf_rcd_short {
     69      1.1   thorpej 	uint32_t	rcd_word0;	/* length, end index, status1 */
     70      1.1   thorpej } __attribute__((__packed__));
     71      1.1   thorpej 
     72      1.1   thorpej /*
     73      1.1   thorpej  * Basic (Type 1) Completion Descriptor
     74      1.1   thorpej  */
     75      1.1   thorpej struct sf_rcd_basic {
     76      1.1   thorpej 	uint32_t	rcd_word0;	/* length, end index, status1 */
     77      1.1   thorpej 	uint32_t	rcd_word1;	/* VLAN ID, status2 */
     78      1.1   thorpej } __attribute__((__packed__));
     79      1.1   thorpej 
     80      1.1   thorpej /*
     81      1.1   thorpej  * Checksum (Type 2) Completion Descriptor
     82      1.1   thorpej  */
     83      1.1   thorpej struct sf_rcd_checksum {
     84      1.1   thorpej 	uint32_t	rcd_word0;	/* length, end index, status1 */
     85      1.1   thorpej 	uint32_t	rcd_word1;	/* partial TCP/UDP checksum, status2 */
     86      1.1   thorpej } __attribute__((__packed__));
     87      1.1   thorpej 
     88      1.1   thorpej /*
     89      1.1   thorpej  * Full (Type 3) Completion Descriptor
     90      1.1   thorpej  */
     91      1.1   thorpej struct sf_rcd_full {
     92      1.1   thorpej 	uint32_t	rcd_word0;	/* length, end index, status1 */
     93      1.1   thorpej 	uint32_t	rcd_word1;	/* start index, status3, status2 */
     94      1.1   thorpej 	uint32_t	rcd_word2;	/* VLAN ID + priority, TCP/UDP csum */
     95      1.1   thorpej 	uint32_t	rcd_timestamp;	/* timestamp */
     96      1.1   thorpej } __attribute__((__packed__));
     97      1.1   thorpej 
     98      1.1   thorpej #define	RCD_W0_ID		(1U << 30)
     99      1.1   thorpej 
    100      1.1   thorpej #define	RCD_W0_Length(x)	((x) & 0xffff)
    101      1.1   thorpej #define	RCD_W0_EndIndex(x)	(((x) >> 16) & 0x7ff)
    102      1.1   thorpej #define	RCD_W0_BufferQueue	(1U << 27)	/* 1 == Queue 2 */
    103      1.1   thorpej #define	RCD_W0_FifoFull		(1U << 28)	/* FIFO full */
    104      1.1   thorpej #define	RCD_W0_OK		(1U << 29)	/* packet is OK */
    105      1.1   thorpej 
    106      1.1   thorpej /* Status2 field */
    107      1.1   thorpej #define	RCD_W1_FrameType	(7U << 16)
    108      1.1   thorpej #define	RCD_W1_FrameType_Unknown (0 << 16)
    109      1.1   thorpej #define	RCD_W1_FrameType_IPv4	(1U << 16)
    110      1.1   thorpej #define	RCD_W1_FrameType_IPv6	(2U << 16)
    111      1.1   thorpej #define	RCD_W1_FrameType_IPX	(3U << 16)
    112      1.1   thorpej #define	RCD_W1_FrameType_ICMP	(4U << 16)
    113      1.1   thorpej #define	RCD_W1_FrameType_Unsupported (5U << 16)
    114      1.1   thorpej #define	RCD_W1_UdpFrame		(1U << 19)
    115      1.1   thorpej #define	RCD_W1_TcpFrame		(1U << 20)
    116      1.1   thorpej #define	RCD_W1_Fragmented	(1U << 21)
    117      1.1   thorpej #define	RCD_W1_PartialChecksumValid (1U << 22)
    118      1.1   thorpej #define	RCD_W1_ChecksumBad	(1U << 23)
    119      1.1   thorpej #define	RCD_W1_ChecksumOk	(1U << 24)
    120      1.1   thorpej #define	RCD_W1_VlanFrame	(1U << 25)
    121      1.1   thorpej #define	RCD_W1_ReceiveCodeViolation (1U << 26)
    122      1.1   thorpej #define	RCD_W1_Dribble		(1U << 27)
    123      1.1   thorpej #define	RCD_W1_ISLCRCerror	(1U << 28)
    124      1.1   thorpej #define	RCD_W1_CRCerror		(1U << 29)
    125      1.1   thorpej #define	RCD_W1_Hash		(1U << 30)
    126      1.1   thorpej #define	RCD_W1_Perfect		(1U << 31)
    127      1.1   thorpej 
    128      1.1   thorpej #define	RCD_W1_VLANID(x)	((x) & 0xffff)
    129      1.1   thorpej #define	RCD_W1_TCP_UDP_Checksum(x) ((x) & 0xffff)
    130      1.1   thorpej 
    131      1.1   thorpej /* Status3 field */
    132      1.1   thorpej #define	RCD_W1_Trailer		(1U << 11)
    133      1.1   thorpej #define	RCD_W1_Header		(1U << 12)
    134      1.1   thorpej #define	RCD_W1_ControlFrame	(1U << 13)
    135      1.1   thorpej #define	RCD_W1_PauseFrame	(1U << 14)
    136      1.1   thorpej #define	RCD_W1_IslFrame		(1U << 15)
    137      1.1   thorpej 
    138      1.1   thorpej #define	RCD_W1_StartIndex(x)	((x) & 0x7ff)
    139      1.1   thorpej 
    140      1.1   thorpej #define	RCD_W2_TCP_UDP_Checksum(x) ((x) >> 16)
    141      1.1   thorpej #define	RCD_W2_VLANID(x)	((x) & 0xffff)
    142      1.1   thorpej 
    143      1.1   thorpej /*
    144      1.1   thorpej  * Number of transmit buffer fragments we use.  This is arbitrary, but
    145      1.1   thorpej  * we choose it carefully; see blow.
    146      1.1   thorpej  */
    147  1.1.4.1  jdolecek #define	SF_NTXFRAGS		15
    148      1.1   thorpej 
    149      1.1   thorpej /*
    150      1.1   thorpej  * Type 0, 32-bit addressing mode (Frame Descriptor) Transmit Descriptor
    151      1.1   thorpej  *
    152  1.1.4.1  jdolecek  * NOTE: The total length of this structure is: 8 + (15 * 8) == 128
    153  1.1.4.1  jdolecek  * This means 16 Tx indices per Type 0 descriptor.  This is important later
    154      1.1   thorpej  * on; see below.
    155      1.1   thorpej  */
    156      1.1   thorpej struct sf_txdesc0 {
    157      1.1   thorpej 	/* skip field */
    158      1.1   thorpej 	uint32_t	td_word0;	/* ID, flags */
    159      1.1   thorpej 	uint32_t	td_word1;	/* Tx buffer count */
    160      1.1   thorpej 	struct {
    161      1.1   thorpej 		uint32_t fr_addr;	/* address */
    162      1.1   thorpej 		uint32_t fr_len;	/* length */
    163      1.1   thorpej 	} __attribute__((__packed__)) td_frags[SF_NTXFRAGS];
    164      1.1   thorpej } __attribute__((__packed__));
    165      1.1   thorpej 
    166      1.1   thorpej #define	TD_W1_NTXBUFS		(0xff << 0)
    167      1.1   thorpej 
    168      1.1   thorpej /*
    169      1.1   thorpej  * Type 1, 32-bit addressing mode (Buffer Descriptor) Transmit Descriptor
    170      1.1   thorpej  */
    171      1.1   thorpej struct sf_txdesc1 {
    172      1.1   thorpej 	/* skip field */
    173      1.1   thorpej 	uint32_t	td_word0;	/* ID, flags */
    174      1.1   thorpej 	uint32_t	td_addr;	/* buffer address */
    175      1.1   thorpej } __attribute__((__packed__));
    176      1.1   thorpej 
    177      1.1   thorpej #define	TD_W0_ID		(0xb << 28)
    178      1.1   thorpej #define	TD_W0_INTR		(1U << 27)
    179      1.1   thorpej #define	TD_W0_END		(1U << 26)
    180      1.1   thorpej #define	TD_W0_CALTCP		(1U << 25)
    181      1.1   thorpej #define	TD_W0_CRCEN		(1U << 24)
    182      1.1   thorpej #define	TD_W0_LEN		(0xffff << 0)
    183      1.1   thorpej #define	TD_W0_NTXBUFS		(0xff << 16)
    184      1.1   thorpej #define	TD_W0_NTXBUFS_SHIFT	16
    185      1.1   thorpej 
    186      1.1   thorpej /*
    187      1.1   thorpej  * Type 2, 64-bit addressing mode (Buffer Descriptor) Transmit Descriptor
    188      1.1   thorpej  */
    189      1.1   thorpej struct sf_txdesc2 {
    190      1.1   thorpej 	/* skip field */
    191      1.1   thorpej 	uint32_t	td_word0;	/* ID, flags */
    192      1.1   thorpej 	uint32_t	td_reserved;
    193      1.1   thorpej 	uint32_t	td_addr_lo;	/* buffer address (LSD) */
    194      1.1   thorpej 	uint32_t	td_addr_hi;	/* buffer address (MSD) */
    195      1.1   thorpej } __attribute__((__packed__));
    196      1.1   thorpej 
    197      1.1   thorpej /*
    198      1.1   thorpej  * Transmit Completion Descriptor.
    199      1.1   thorpej  */
    200      1.1   thorpej struct sf_tcd {
    201      1.1   thorpej 	uint32_t	tcd_word0;	/* index, priority, flags */
    202      1.1   thorpej } __attribute__((__packed__));
    203      1.1   thorpej 
    204      1.1   thorpej #define	TCD_DMA_ID		(0x4 << 29)
    205      1.1   thorpej #define	TCD_INDEX(x)		((x) & 0x7fff)
    206      1.1   thorpej #define	TCD_PR			(1U << 15)
    207      1.1   thorpej #define	TCD_TIMESTAMP(x)	(((x) >> 16) & 0x1fff)
    208      1.1   thorpej 
    209      1.1   thorpej #define	TCD_TX_ID		(0x5 << 29)
    210      1.1   thorpej #define	TCD_CRCerror		(1U << 16)
    211      1.1   thorpej #define	TCD_FieldLengthCkError	(1U << 17)
    212      1.1   thorpej #define	TCD_FieldLengthRngError	(1U << 18)
    213      1.1   thorpej #define	TCD_PacketTxOk		(1U << 19)
    214      1.1   thorpej #define	TCD_Deferred		(1U << 20)
    215      1.1   thorpej #define	TCD_ExDeferral		(1U << 21)
    216      1.1   thorpej #define	TCD_ExCollisions	(1U << 22)
    217      1.1   thorpej #define	TCD_LateCollision	(1U << 23)
    218      1.1   thorpej #define	TCD_LongFrame		(1U << 24)
    219      1.1   thorpej #define	TCD_FIFOUnderrun	(1U << 25)
    220      1.1   thorpej #define	TCD_ControlTx		(1U << 26)
    221      1.1   thorpej #define	TCD_PauseTx		(1U << 27)
    222      1.1   thorpej #define	TCD_TxPaused		(1U << 28)
    223      1.1   thorpej 
    224      1.1   thorpej /*
    225      1.1   thorpej  * The Tx indices are in units of 8 bytes, and since we are using
    226  1.1.4.1  jdolecek  * Tx descriptors that are 128 bytes long, we need to divide by 16
    227      1.1   thorpej  * to get the actual index that we care about.
    228      1.1   thorpej  */
    229  1.1.4.1  jdolecek #define	SF_TXDINDEX_TO_HOST(x)		((x) >> 4)
    230  1.1.4.1  jdolecek #define	SF_TXDINDEX_TO_CHIP(x)		((x) << 4)
    231      1.1   thorpej 
    232      1.1   thorpej /*
    233      1.1   thorpej  * To make matters worse, the manual lies about the indices in the
    234      1.1   thorpej  * completion queue entires.  It claims they are in 8-byte units,
    235      1.1   thorpej  * but they're actually *BYTES*, which means we need to divide by
    236  1.1.4.1  jdolecek  * 128 to get the actual index.
    237      1.1   thorpej  */
    238  1.1.4.1  jdolecek #define	SF_TCD_INDEX_TO_HOST(x)		((x) >> 7)
    239      1.1   thorpej 
    240      1.1   thorpej /*
    241      1.1   thorpej  * PCI configuration space addresses.
    242      1.1   thorpej  */
    243      1.1   thorpej #define	SF_PCI_MEMBA		(PCI_MAPREG_START + 0x00)
    244      1.1   thorpej #define	SF_PCI_IOBA		(PCI_MAPREG_START + 0x08)
    245      1.1   thorpej 
    246      1.1   thorpej #define	SF_GENREG_OFFSET	0x50000
    247      1.1   thorpej #define	SF_FUNCREG_SIZE		0x100
    248      1.1   thorpej 
    249      1.1   thorpej /*
    250      1.1   thorpej  * PCI functional registers.
    251      1.1   thorpej  */
    252      1.1   thorpej #define	SF_PciDeviceConfig	0x40
    253      1.1   thorpej #define	PDC_EnDpeInt		(1U << 31)	/* enable DPE PCIint */
    254      1.1   thorpej #define	PDC_EnSseInt		(1U << 30)	/* enable SSE PCIint */
    255      1.1   thorpej #define	PDC_EnRmaInt		(1U << 29)	/* enable RMA PCIint */
    256      1.1   thorpej #define	PDC_EnRtaInt		(1U << 28)	/* enable RTA PCIint */
    257      1.1   thorpej #define	PDC_EnStaInt		(1U << 27)	/* enable STA PCIint */
    258      1.1   thorpej #define	PDC_EnDprInt		(1U << 24)	/* enable DPR PCIint */
    259      1.1   thorpej #define	PDC_IntEnable		(1U << 23)	/* enable PCI_INTA_ */
    260      1.1   thorpej #define	PDC_ExternalRegCsWidth	(7U << 20)	/* external chip-sel width */
    261      1.1   thorpej #define	PDC_StopMWrOnCacheLineDis (1U << 19)
    262      1.1   thorpej #define	PDC_EpromCsWidth	(7U << 16)
    263      1.1   thorpej #define	PDC_EnBeLogic		(1U << 15)
    264      1.1   thorpej #define	PDC_LatencyStopOnCacheLine (1U << 14)
    265      1.1   thorpej #define	PDC_PCIMstDmaEn		(1U << 13)
    266      1.1   thorpej #define	PDC_StopOnCachelineEn	(1U << 12)
    267      1.1   thorpej #define	PDC_FifoThreshold	(0xf << 8)
    268      1.1   thorpej #define	PDC_FifoThreshold_SHIFT	8
    269      1.1   thorpej #define	PDC_MemRdCmdEn		(1U << 7)
    270      1.1   thorpej #define	PDC_StopOnPerr		(1U << 6)
    271      1.1   thorpej #define	PDC_AbortOnAddrParityErr (1U << 5)
    272      1.1   thorpej #define	PDC_EnIncrement		(1U << 4)
    273      1.1   thorpej #define	PDC_System64		(1U << 2)
    274      1.1   thorpej #define	PDC_Force64		(1U << 1)
    275      1.1   thorpej #define	PDC_SoftReset		(1U << 0)
    276      1.1   thorpej 
    277      1.1   thorpej #define	SF_BacControl		0x44
    278      1.1   thorpej #define	BC_DescSwapMode		(0x3 << 6)
    279      1.1   thorpej #define	BC_DataSwapMode		(0x3 << 4)
    280      1.1   thorpej #define	BC_SingleDmaMode	(1U << 3)
    281      1.1   thorpej #define	BC_PreferTxDmaReq	(1U << 2)
    282      1.1   thorpej #define	BC_PreferRxDmaReq	(1U << 1)
    283      1.1   thorpej #define	BC_BacDmaEn		(1U << 0)
    284      1.1   thorpej 
    285      1.1   thorpej #define	SF_PciMonitor1		0x48
    286      1.1   thorpej 
    287      1.1   thorpej #define	SF_PciMonitor2		0x4c
    288      1.1   thorpej 
    289      1.1   thorpej #define	SF_PMC			0x50
    290      1.1   thorpej 
    291      1.1   thorpej #define	SF_PMCSR		0x54
    292      1.1   thorpej 
    293      1.1   thorpej #define	SF_PMEvent		0x58
    294      1.1   thorpej 
    295      1.1   thorpej #define	SF_SerialEpromControl	0x60
    296      1.1   thorpej #define	SEC_InitDone		(1U << 3)
    297      1.1   thorpej #define	SEC_Idle		(1U << 2)
    298      1.1   thorpej #define	SEC_WriteEnable		(1U << 1)
    299      1.1   thorpej #define	SEC_WriteDisable	(1U << 0)
    300      1.1   thorpej 
    301      1.1   thorpej #define	SF_PciComplianceTesting	0x64
    302      1.1   thorpej 
    303      1.1   thorpej #define	SF_IndirectIoAccess	0x68
    304      1.1   thorpej 
    305      1.1   thorpej #define	SF_IndirectIoDataPort	0x6c
    306      1.1   thorpej 
    307      1.1   thorpej /*
    308      1.1   thorpej  * Ethernet functional registers.
    309      1.1   thorpej  */
    310      1.1   thorpej #define	SF_GeneralEthernetCtrl	0x70
    311      1.1   thorpej #define	GEC_SetSoftInt		(1U << 8)
    312      1.1   thorpej #define	GEC_TxGfpEn		(1U << 5)
    313      1.1   thorpej #define	GEC_RxGfpEn		(1U << 4)
    314      1.1   thorpej #define	GEC_TxDmaEn		(1U << 3)
    315      1.1   thorpej #define	GEC_RxDmaEn		(1U << 2)
    316      1.1   thorpej #define	GEC_TransmitEn		(1U << 1)
    317      1.1   thorpej #define	GEC_ReceiveEn		(1U << 0)
    318      1.1   thorpej 
    319      1.1   thorpej #define	SF_TimersControl	0x74
    320      1.1   thorpej #define	TC_EarlyRxQ1IntDelayDisable	(1U << 31)
    321      1.1   thorpej #define	TC_RxQ1DoneIntDelayDisable	(1U << 30)
    322      1.1   thorpej #define	TC_EarlyRxQ2IntDelayDisable	(1U << 29)
    323      1.1   thorpej #define	TC_RxQ2DoneIntDelayDisable	(1U << 28)
    324      1.1   thorpej #define	TC_TimeStampResolution		(1U << 26)
    325      1.1   thorpej #define	TC_GeneralTimerResolution	(1U << 25)
    326      1.1   thorpej #define	TC_OneShotMode			(1U << 24)
    327      1.1   thorpej #define	TC_GeneralTimerInterval		(0xff << 16)
    328      1.1   thorpej #define	TC_GeneralTimerInterval_SHIFT	16
    329      1.1   thorpej #define	TC_TxFrameCompleteIntDelayDisable (1U << 15)
    330      1.1   thorpej #define	TC_TxQueueDoneIntDelayDisable	(1U << 14)
    331      1.1   thorpej #define	TC_TxDmaDoneIntDelayDisable	(1U << 13)
    332      1.1   thorpej #define	TC_RxHiPrBypass			(1U << 12)
    333      1.1   thorpej #define	TC_Timer10X			(1U << 11)
    334      1.1   thorpej #define	TC_SmallRxFrame			(3U << 9)
    335      1.1   thorpej #define	TC_SmallFrameBypass		(1U << 8)
    336      1.1   thorpej #define	TC_IntMaskMode			(3U << 5)
    337      1.1   thorpej #define	TC_IntMaskPeriod		(0x1f << 0)
    338      1.1   thorpej 
    339      1.1   thorpej #define	SF_CurrentTime		0x78
    340      1.1   thorpej 
    341      1.1   thorpej #define	SF_InterruptStatus	0x80
    342      1.1   thorpej #define	IS_GPIO3			(1U << 31)
    343      1.1   thorpej #define	IS_GPIO2			(1U << 30)
    344      1.1   thorpej #define	IS_GPIO1			(1U << 29)
    345      1.1   thorpej #define	IS_GPIO0			(1U << 28)
    346      1.1   thorpej #define	IS_StatisticWrapInt		(1U << 27)
    347      1.1   thorpej #define	IS_AbnormalInterrupt		(1U << 25)
    348      1.1   thorpej #define	IS_GeneralTimerInt		(1U << 24)
    349      1.1   thorpej #define	IS_SoftInt			(1U << 23)
    350      1.1   thorpej #define	IS_RxCompletionQueue1Int	(1U << 22)
    351      1.1   thorpej #define	IS_TxCompletionQueueInt		(1U << 21)
    352      1.1   thorpej #define	IS_PCIInt			(1U << 20)
    353      1.1   thorpej #define	IS_DmaErrInt			(1U << 19)
    354      1.1   thorpej #define	IS_TxDataLowInt			(1U << 18)
    355      1.1   thorpej #define	IS_RxCompletionQueue2Int	(1U << 17)
    356      1.1   thorpej #define	IS_RxQ1LowBuffersInt		(1U << 16)
    357      1.1   thorpej #define	IS_NormalInterrupt		(1U << 15)
    358      1.1   thorpej #define	IS_TxFrameCompleteInt		(1U << 14)
    359      1.1   thorpej #define	IS_TxDmaDoneInt			(1U << 13)
    360      1.1   thorpej #define	IS_TxQueueDoneInt		(1U << 12)
    361      1.1   thorpej #define	IS_EarlyRxQ2Int			(1U << 11)
    362      1.1   thorpej #define	IS_EarlyRxQ1Int			(1U << 10)
    363      1.1   thorpej #define	IS_RxQ2DoneInt			(1U << 9)
    364      1.1   thorpej #define	IS_RxQ1DoneInt			(1U << 8)
    365      1.1   thorpej #define	IS_RxGfpNoResponseInt		(1U << 7)
    366      1.1   thorpej #define	IS_RxQ2LowBuffersInt		(1U << 6)
    367      1.1   thorpej #define	IS_NoTxChecksumInt		(1U << 5)
    368      1.1   thorpej #define	IS_TxLowPrMismatchInt		(1U << 4)
    369      1.1   thorpej #define	IS_TxHiPrMismatchInt		(1U << 3)
    370      1.1   thorpej #define	IS_GfpRxInt			(1U << 2)
    371      1.1   thorpej #define	IS_GfpTxInt			(1U << 1)
    372      1.1   thorpej #define	IS_PCIPadInt			(1U << 0)
    373      1.1   thorpej 
    374      1.1   thorpej #define	SF_ShadowInterruptStatus 0x84
    375      1.1   thorpej 
    376      1.1   thorpej #define	SF_InterruptEn		0x88
    377      1.1   thorpej 
    378      1.1   thorpej #define	SF_GPIO			0x8c
    379      1.1   thorpej #define	GPIOCtrl(x)		(1U << (24 + (x)))
    380      1.1   thorpej #define	GPIOOutMode(x)		(1U << (16 + (x)))
    381      1.1   thorpej #define	GPIOInpMode(x, y)	((y) << (8 + ((x) * 2)))
    382      1.1   thorpej #define	GPIOData(x)		(1U << (x))
    383      1.1   thorpej 
    384      1.1   thorpej #define	SF_TxDescQueueCtrl	0x90
    385      1.1   thorpej #define	TDQC_TxHighPriorityFifoThreshold(x)	((x) << 24)
    386      1.1   thorpej #define	TDQC_SkipLength(x)			((x) << 16)
    387      1.1   thorpej #define	TDQC_TxDmaBurstSize(x)			((x) << 8)
    388      1.1   thorpej #define	TDQC_TxDescQueue64bitAddr		(1U << 7)
    389      1.1   thorpej #define	TDQC_MinFrameSpacing(x)			((x) << 4)
    390      1.1   thorpej #define	TDQC_DisableTxDmaCompletion		(1U << 3)
    391      1.1   thorpej #define	TDQC_TxDescType(x)			((x) << 0)
    392      1.1   thorpej 
    393      1.1   thorpej #define	SF_HiPrTxDescQueueBaseAddr 0x94
    394      1.1   thorpej 
    395      1.1   thorpej #define	SF_LoPrTxDescQueueBaseAddr 0x98
    396      1.1   thorpej 
    397      1.1   thorpej #define	SF_TxDescQueueHighAddr	0x9c
    398      1.1   thorpej 
    399      1.1   thorpej #define	SF_TxDescQueueProducerIndex 0xa0
    400      1.1   thorpej #define	TDQPI_HiPrTxProducerIndex(x)		((x) << 16)
    401      1.1   thorpej #define	TDQPI_LoPrTxProducerIndex(x)		((x) << 0)
    402      1.1   thorpej #define	TDQPI_HiPrTxProducerIndex_get(x)	(((x) >> 16) & 0x7ff)
    403      1.1   thorpej #define	TDQPI_LoPrTxProducerIndex_get(x)	(((x) >> 0) & 0x7ff)
    404      1.1   thorpej 
    405      1.1   thorpej #define	SF_TxDescQueueConsumerIndex 0xa4
    406      1.1   thorpej #define	TDQCI_HiPrTxConsumerIndex(x)		(((x) >> 16) & 0x7ff)
    407      1.1   thorpej #define	TDQCI_LoPrTxConsumerIndex(s)		(((x) >> 0) & 0x7ff)
    408      1.1   thorpej 
    409      1.1   thorpej #define	SF_TxDmaStatus1		0xa8
    410      1.1   thorpej 
    411      1.1   thorpej #define	SF_TxDmaStatus2		0xac
    412      1.1   thorpej 
    413      1.1   thorpej #define	SF_TransmitFrameCSR	0xb0
    414      1.1   thorpej #define	TFCSR_TxFrameStatus			(0xff << 16)
    415      1.1   thorpej #define	TFCSR_TxDebugConfigBits			(0x7f << 9)
    416      1.1   thorpej #define	TFCSR_DmaCompletionAfterTransmitComplete (1U << 8)
    417      1.1   thorpej #define	TFCSR_TransmitThreshold(x)		((x) << 0)
    418      1.1   thorpej 
    419      1.1   thorpej #define	SF_CompletionQueueHighAddr 0xb4
    420      1.1   thorpej 
    421      1.1   thorpej #define	SF_TxCompletionQueueCtrl 0xb8
    422      1.1   thorpej #define	TCQC_TxCompletionBaseAddress		0xffffff00
    423      1.1   thorpej #define	TCQC_TxCompletion64bitAddress		(1U << 7)
    424      1.1   thorpej #define	TCQC_TxCompletionProducerWe		(1U << 6)
    425      1.1   thorpej #define	TCQC_TxCompletionSize			(1U << 5)
    426      1.1   thorpej #define	TCQC_CommonQueueMode			(1U << 4)
    427      1.1   thorpej #define	TCQC_TxCompletionQueueThreshold		((x) << 0)
    428      1.1   thorpej 
    429      1.1   thorpej #define	SF_RxCompletionQueue1Ctrl 0xbc
    430      1.1   thorpej #define	RCQ1C_RxCompletionQ1BaseAddress		0xffffff00
    431      1.1   thorpej #define	RCQ1C_RxCompletionQ164bitAddress	(1U << 7)
    432      1.1   thorpej #define	RCQ1C_RxCompletionQ1ProducerWe		(1U << 6)
    433      1.1   thorpej #define	RCQ1C_RxCompletionQ1Type(x)		((x) << 4)
    434      1.1   thorpej #define	RCQ1C_RxCompletionQ1Threshold(x)	((x) << 0)
    435      1.1   thorpej 
    436      1.1   thorpej #define	SF_RxCompletionQueue2Ctrl 0xc0
    437      1.1   thorpej #define	RCQ1C_RxCompletionQ2BaseAddress		0xffffff00
    438      1.1   thorpej #define	RCQ1C_RxCompletionQ264bitAddress	(1U << 7)
    439      1.1   thorpej #define	RCQ1C_RxCompletionQ2ProducerWe		(1U << 6)
    440      1.1   thorpej #define	RCQ1C_RxCompletionQ2Type(x)		((x) << 4)
    441      1.1   thorpej #define	RCQ1C_RxCompletionQ2Threshold(x)	((x) << 0)
    442      1.1   thorpej 
    443      1.1   thorpej #define	SF_CompletionQueueConsumerIndex 0xc4
    444      1.1   thorpej #define	CQCI_TxCompletionThresholdMode		(1U << 31)
    445      1.1   thorpej #define	CQCI_TxCompletionConsumerIndex(x)	((x) << 16)
    446      1.1   thorpej #define	CQCI_TxCompletionConsumerIndex_get(x)	(((x) >> 16) & 0x7ff)
    447      1.1   thorpej #define	CQCI_RxCompletionQ1ThresholdMode	(1U << 15)
    448      1.1   thorpej #define	CQCI_RxCompletionQ1ConsumerIndex(x)	((x) << 0)
    449      1.1   thorpej #define	CQCI_RxCompletionQ1ConsumerIndex_get(x)	((x) & 0x7ff)
    450      1.1   thorpej 
    451      1.1   thorpej #define	SF_CompletionQueueProducerIndex 0xc8
    452      1.1   thorpej #define	CQPI_TxCompletionProducerIndex(x)	((x) << 16)
    453      1.1   thorpej #define	CQPI_TxCompletionProducerIndex_get(x)	(((x) >> 16) & 0x7ff)
    454      1.1   thorpej #define	CQPI_RxCompletionQ1ProducerIndex(x)	((x) << 0)
    455      1.1   thorpej #define	CQPI_RxCompletionQ1ProducerIndex_get(x)	((x) & 0x7ff)
    456      1.1   thorpej 
    457      1.1   thorpej #define	SF_RxHiPrCompletionPtrs	0xcc
    458      1.1   thorpej #define	RHPCP_RxCompletionQ2ProducerIndex(x)	((x) << 16)
    459      1.1   thorpej #define	RHPCP_RxCompletionQ2ThresholdMode	(1U << 15)
    460      1.1   thorpej #define	RHPCP_RxCompletionQ2ConsumerIndex(x)	((x) << 0)
    461      1.1   thorpej 
    462      1.1   thorpej #define	SF_RxDmaCtrl		0xd0
    463      1.1   thorpej #define	RDC_RxReportBadFrames			(1U << 31)
    464      1.1   thorpej #define	RDC_RxDmaShortFrames			(1U << 30)
    465      1.1   thorpej #define	RDC_RxDmaBadFrames			(1U << 29)
    466      1.1   thorpej #define	RDC_RxDmaCrcErrorFrames			(1U << 28)
    467      1.1   thorpej #define	RDC_RxDmaControlFrame			(1U << 27)
    468      1.1   thorpej #define	RDC_RxDmaPauseFrame			(1U << 26)
    469      1.1   thorpej #define	RDC_RxChecksumMode(x)			((x) << 24)
    470      1.1   thorpej #define	RDC_RxCompletionQ2Enable		(1U << 23)
    471      1.1   thorpej #define	RDC_RxDmaQueueMode(x)			((x) << 20)
    472      1.1   thorpej #define	RDC_RxUseBackupQueue			(1U << 19)
    473      1.1   thorpej #define	RDC_RxDmaCrc				(1U << 18)
    474      1.1   thorpej #define	RDC_RxEarlyIntThreshold(x)		((x) << 12)
    475      1.1   thorpej #define	RDC_RxHighPriorityThreshold(x)		((x) << 8)
    476      1.1   thorpej #define	RDC_RxBurstSize(x)			((x) << 0)
    477      1.1   thorpej 
    478      1.1   thorpej #define	SF_RxDescQueue1Ctrl	0xd4
    479      1.1   thorpej #define	RDQ1C_RxQ1BufferLength(x)		((x) << 16)
    480      1.1   thorpej #define	RDQ1C_RxPrefetchDescriptorsMode		(1U << 15)
    481      1.1   thorpej #define	RDQ1C_RxDescQ1Entries			(1U << 14)
    482      1.1   thorpej #define	RDQ1C_RxVariableSizeQueues		(1U << 13)
    483      1.1   thorpej #define	RDQ1C_Rx64bitBufferAddresses		(1U << 12)
    484      1.1   thorpej #define	RDQ1C_Rx64bitDescQueueAddress		(1U << 11)
    485      1.1   thorpej #define	RDQ1C_RxDescSpacing(x)			((x) << 8)
    486      1.1   thorpej #define	RDQ1C_RxQ1ConsumerWe			(1U << 7)
    487      1.1   thorpej #define	RDQ1C_RxQ1MinDescriptorsThreshold(x)	((x) << 0)
    488      1.1   thorpej 
    489      1.1   thorpej #define	SF_RxDescQueue2Ctrl	0xd8
    490      1.1   thorpej #define	RDQ2C_RxQ2BufferLength(x)		((x) << 16)
    491      1.1   thorpej #define	RDQ2C_RxDescQ2Entries			(1U << 14)
    492      1.1   thorpej #define	RDQ2C_RxQ2MinDescriptorsThreshold(x)	((x) << 0)
    493      1.1   thorpej 
    494      1.1   thorpej #define	SF_RxDescQueueHighAddress 0xdc
    495      1.1   thorpej 
    496      1.1   thorpej #define	SF_RxDescQueue1LowAddress 0xe0
    497      1.1   thorpej 
    498      1.1   thorpej #define	SF_RxDescQueue2LowAddress 0xe4
    499      1.1   thorpej 
    500      1.1   thorpej #define	SF_RxDescQueue1Ptrs	0xe8
    501      1.1   thorpej #define	RXQ1P_RxDescQ1Consumer(x)		((x) << 16)
    502      1.1   thorpej #define	RXQ1P_RxDescQ1Producer(x)		((x) << 0)
    503      1.1   thorpej #define	RXQ1P_RxDescQ1Producer_get(x)		((x) & 0x7ff)
    504      1.1   thorpej 
    505      1.1   thorpej #define	SF_RxDescQueue2Ptrs	0xec
    506      1.1   thorpej #define	RXQ2P_RxDescQ2Consumer(x)		((x) << 16)
    507      1.1   thorpej #define	RXQ2P_RxDescQ2Producer(x)		((x) << 0)
    508      1.1   thorpej 
    509      1.1   thorpej #define	SF_RxDmaStatus		0xf0
    510      1.1   thorpej #define	RDS_RxFramesLostCount(x)		((x) & 0xffff)
    511      1.1   thorpej 
    512      1.1   thorpej #define	SF_RxAddressFilteringCtl 0xf4
    513      1.1   thorpej #define	RAFC_PerfectAddressPriority(x)		(1U << ((x) + 16))
    514      1.1   thorpej #define	RAFC_MinVlanPriority(x)			((x) << 13)
    515      1.1   thorpej #define	RAFC_PassMulticastExceptBroadcast	(1U << 12)
    516      1.1   thorpej #define	RAFC_WakeupMode(x)			((x) << 10)
    517      1.1   thorpej #define	RAFC_VlanMode(x)			((x) << 8)
    518      1.1   thorpej #define	RAFC_PerfectFilteringMode(x)		((x) << 6)
    519      1.1   thorpej #define	RAFC_HashFilteringMode(x)		((x) << 4)
    520      1.1   thorpej #define	RAFC_HashPriorityEnable			(1U << 3)
    521      1.1   thorpej #define	RAFC_PassBroadcast			(1U << 2)
    522      1.1   thorpej #define	RAFC_PassMulticast			(1U << 1)
    523      1.1   thorpej #define	RAFC_PromiscuousMode			(1U << 0)
    524      1.1   thorpej 
    525      1.1   thorpej #define	SF_RxFrameTestOut	0xf8
    526      1.1   thorpej 
    527      1.1   thorpej /*
    528      1.1   thorpej  * Additional PCI registers.  To access these registers via I/O space,
    529      1.1   thorpej  * indirect access must be used.
    530      1.1   thorpej  */
    531      1.1   thorpej #define	SF_PciTargetStatus	0x100
    532      1.1   thorpej 
    533      1.1   thorpej #define	SF_PciMasterStatus1	0x104
    534      1.1   thorpej 
    535      1.1   thorpej #define	SF_PciMasterStatus2	0x108
    536      1.1   thorpej 
    537      1.1   thorpej #define	SF_PciDmaLowHostAddr	0x10c
    538      1.1   thorpej 
    539      1.1   thorpej #define	SF_BacDmaDiagnostic0	0x110
    540      1.1   thorpej 
    541      1.1   thorpej #define	SF_BacDmaDiagnostic1	0x114
    542      1.1   thorpej 
    543      1.1   thorpej #define	SF_BacDmaDiagnostic2	0x118
    544      1.1   thorpej 
    545      1.1   thorpej #define	SF_BacDmaDiagnostic3	0x11c
    546      1.1   thorpej 
    547      1.1   thorpej #define	SF_MacAddr1		0x120
    548      1.1   thorpej 
    549      1.1   thorpej #define	SF_MacAddr2		0x124
    550      1.1   thorpej 
    551      1.1   thorpej #define	SF_FunctionEvent	0x130
    552      1.1   thorpej 
    553      1.1   thorpej #define	SF_FunctionEventMask	0x134
    554      1.1   thorpej 
    555      1.1   thorpej #define	SF_FunctionPresentState	0x138
    556      1.1   thorpej 
    557      1.1   thorpej #define	SF_ForceFunction	0x13c
    558      1.1   thorpej 
    559      1.1   thorpej #define	SF_EEPROM_BASE		0x1000
    560      1.1   thorpej 
    561      1.1   thorpej #define	SF_MII_BASE		0x2000
    562      1.1   thorpej #define	MiiDataValid		(1U << 31)
    563      1.1   thorpej #define	MiiBusy			(1U << 30)
    564      1.1   thorpej #define	MiiRegDataPort(x)	((x) & 0xffff)
    565      1.1   thorpej 
    566      1.1   thorpej #define	SF_MII_PHY_REG(p, r)	(SF_MII_BASE +				\
    567      1.1   thorpej 				 ((p) * 32 * sizeof(uint32_t)) +	\
    568      1.1   thorpej 				 ((r) * sizeof(uint32_t)))
    569      1.1   thorpej 
    570      1.1   thorpej #define	SF_TestMode		0x4000
    571      1.1   thorpej 
    572      1.1   thorpej #define	SF_RxFrameProcessorCtrl	0x4004
    573      1.1   thorpej 
    574      1.1   thorpej #define	SF_TxFrameProcessorCtrl	0x4008
    575      1.1   thorpej 
    576      1.1   thorpej #define	SF_MacConfig1		0x5000
    577      1.1   thorpej #define	MC1_SoftRst			(1U << 15)
    578      1.1   thorpej #define	MC1_MiiLoopBack			(1U << 14)
    579      1.1   thorpej #define	MC1_TestMode(x)			((x) << 12)
    580      1.1   thorpej #define	MC1_TxFlowEn			(1U << 11)
    581      1.1   thorpej #define	MC1_RxFlowEn			(1U << 10)
    582      1.1   thorpej #define	MC1_PreambleDetectCount		(1U << 9)
    583      1.1   thorpej #define	MC1_PassAllRxPackets		(1U << 8)
    584      1.1   thorpej #define	MC1_PurePreamble		(1U << 7)
    585      1.1   thorpej #define	MC1_LengthCheck			(1U << 6)
    586      1.1   thorpej #define	MC1_NoBackoff			(1U << 5)
    587      1.1   thorpej #define	MC1_DelayCRC			(1U << 4)
    588      1.1   thorpej #define	MC1_TxHalfDuplexJam		(1U << 3)
    589      1.1   thorpej #define	MC1_PadEn			(1U << 2)
    590      1.1   thorpej #define	MC1_FullDuplex			(1U << 1)
    591      1.1   thorpej #define	MC1_HugeFrame			(1U << 0)
    592      1.1   thorpej 
    593      1.1   thorpej #define	SF_MacConfig2		0x5004
    594      1.1   thorpej #define	MC2_TxCRCerr			(1U << 15)
    595      1.1   thorpej #define	MC2_TxIslCRCerr			(1U << 14)
    596      1.1   thorpej #define	MC2_RxCRCerr			(1U << 13)
    597      1.1   thorpej #define	MC2_RxIslCRCerr			(1U << 12)
    598      1.1   thorpej #define	MC2_TXCF			(1U << 11)
    599      1.1   thorpej #define	MC2_CtlSoftRst			(1U << 10)
    600      1.1   thorpej #define	MC2_RxSoftRst			(1U << 9)
    601      1.1   thorpej #define	MC2_TxSoftRst			(1U << 8)
    602      1.1   thorpej #define	MC2_RxISLEn			(1U << 7)
    603      1.1   thorpej #define	MC2_BackPressureNoBackOff	(1U << 6)
    604      1.1   thorpej #define	MC2_AutoVlanPad			(1U << 5)
    605      1.1   thorpej #define	MC2_MandatoryVLANPad		(1U << 4)
    606      1.1   thorpej #define	MC2_TxISLAppen			(1U << 3)
    607      1.1   thorpej #define	MC2_TxISLEn			(1U << 2)
    608      1.1   thorpej #define	MC2_SimuRst			(1U << 1)
    609      1.1   thorpej #define	MC2_TxXmtEn			(1U << 0)
    610      1.1   thorpej 
    611      1.1   thorpej #define	SF_BkToBkIPG		0x5008
    612      1.1   thorpej 
    613      1.1   thorpej #define	SF_NonBkToBkIPG		0x500c
    614      1.1   thorpej 
    615      1.1   thorpej #define	SF_ColRetry		0x5010
    616      1.1   thorpej 
    617      1.1   thorpej #define	SF_MaxLength		0x5014
    618      1.1   thorpej 
    619      1.1   thorpej #define	SF_TxNibbleCnt		0x5018
    620      1.1   thorpej 
    621      1.1   thorpej #define	SF_TxByteCnt		0x501c
    622      1.1   thorpej 
    623      1.1   thorpej #define	SF_ReTxCnt		0x5020
    624      1.1   thorpej 
    625      1.1   thorpej #define	SF_RandomNumGen		0x5024
    626      1.1   thorpej 
    627      1.1   thorpej #define	SF_MskRandomNum		0x5028
    628      1.1   thorpej 
    629      1.1   thorpej #define	SF_TotalTxCnt		0x5034
    630      1.1   thorpej 
    631      1.1   thorpej #define	SF_RxByteCnt		0x5040
    632      1.1   thorpej 
    633      1.1   thorpej #define	SF_TxPauseTimer		0x5060
    634      1.1   thorpej 
    635      1.1   thorpej #define	SF_VLANType		0x5064
    636      1.1   thorpej 
    637      1.1   thorpej #define	SF_MiiStatus		0x5070
    638      1.1   thorpej 
    639      1.1   thorpej #define	SF_PERFECT_BASE		0x6000
    640      1.1   thorpej #define	SF_PERFECT_SIZE		0x100
    641      1.1   thorpej 
    642      1.1   thorpej #define	SF_HASH_BASE		0x6100
    643      1.1   thorpej #define	SF_HASH_SIZE		0x200
    644      1.1   thorpej 
    645      1.1   thorpej #define	SF_STATS_BASE		0x7000
    646      1.1   thorpej struct sf_stats {
    647      1.1   thorpej 	uint32_t	TransmitOKFrames;
    648      1.1   thorpej 	uint32_t	SingleCollisionFrames;
    649      1.1   thorpej 	uint32_t	MultipleCollisionFrames;
    650      1.1   thorpej 	uint32_t	TransmitCRCErrors;
    651      1.1   thorpej 	uint32_t	TransmitOKOctets;
    652      1.1   thorpej 	uint32_t	TransmitDeferredFrames;
    653      1.1   thorpej 	uint32_t	TransmitLateCollisionCount;
    654      1.1   thorpej 	uint32_t	TransmitPauseControlFrames;
    655      1.1   thorpej 	uint32_t	TransmitControlFrames;
    656      1.1   thorpej 	uint32_t	TransmitAbortDueToExcessiveCollisions;
    657      1.1   thorpej 	uint32_t	TransmitAbortDueToExcessingDeferral;
    658      1.1   thorpej 	uint32_t	MulticastFramesTransmittedOK;
    659      1.1   thorpej 	uint32_t	BroadcastFramesTransmittedOK;
    660      1.1   thorpej 	uint32_t	FramesLostDueToInternalTransmitErrors;
    661      1.1   thorpej 	uint32_t	ReceiveOKFrames;
    662      1.1   thorpej 	uint32_t	ReceiveCRCErrors;
    663      1.1   thorpej 	uint32_t	AlignmentErrors;
    664      1.1   thorpej 	uint32_t	ReceiveOKOctets;
    665      1.1   thorpej 	uint32_t	PauseFramesReceivedOK;
    666      1.1   thorpej 	uint32_t	ControlFramesReceivedOK;
    667      1.1   thorpej 	uint32_t	ControlFramesReceivedWithUnsupportedOpcode;
    668      1.1   thorpej 	uint32_t	ReceiveFramesTooLong;
    669      1.1   thorpej 	uint32_t	ReceiveFramesTooShort;
    670      1.1   thorpej 	uint32_t	ReceiveFramesJabbersError;
    671      1.1   thorpej 	uint32_t	ReceiveFramesFragments;
    672      1.1   thorpej 	uint32_t	ReceivePackets64Bytes;
    673      1.1   thorpej 	uint32_t	ReceivePackets127Bytes;
    674      1.1   thorpej 	uint32_t	ReceivePackets255Bytes;
    675      1.1   thorpej 	uint32_t	ReceivePackets511Bytes;
    676      1.1   thorpej 	uint32_t	ReceivePackets1023Bytes;
    677      1.1   thorpej 	uint32_t	ReceivePackets1518Bytes;
    678      1.1   thorpej 	uint32_t	FramesLostDueToInternalReceiveErrors;
    679      1.1   thorpej 	uint32_t	TransmitFifoUnderflowCounts;
    680      1.1   thorpej };
    681      1.1   thorpej 
    682      1.1   thorpej #define	SF_TxGfpMem		0x8000
    683      1.1   thorpej 
    684      1.1   thorpej #define	SF_RxGfpMem		0xa000
    685      1.1   thorpej 
    686      1.1   thorpej #endif /* _DEV_IC_AIC6915REG_H_ */
    687