Home | History | Annotate | Line # | Download | only in ic
smc83c170reg.h revision 1.3.8.1
      1  1.3.8.1  thorpej /*	$NetBSD: smc83c170reg.h,v 1.3.8.1 1999/08/02 21:59:06 thorpej Exp $	*/
      2      1.1  thorpej 
      3      1.1  thorpej /*-
      4      1.1  thorpej  * Copyright (c) 1998 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 of the Numerical Aerospace Simulation Facility,
      9      1.1  thorpej  * NASA Ames Research Center.
     10      1.1  thorpej  *
     11      1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     12      1.1  thorpej  * modification, are permitted provided that the following conditions
     13      1.1  thorpej  * are met:
     14      1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     15      1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     16      1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17      1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     18      1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     19      1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     20      1.1  thorpej  *    must display the following acknowledgement:
     21      1.1  thorpej  *	This product includes software developed by the NetBSD
     22      1.1  thorpej  *	Foundation, Inc. and its contributors.
     23      1.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24      1.1  thorpej  *    contributors may be used to endorse or promote products derived
     25      1.1  thorpej  *    from this software without specific prior written permission.
     26      1.1  thorpej  *
     27      1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28      1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29      1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30      1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31      1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32      1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33      1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34      1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35      1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36      1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37      1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38      1.1  thorpej  */
     39      1.1  thorpej 
     40      1.1  thorpej #ifndef _DEV_IC_SMC83C170REG_H_
     41      1.1  thorpej #define	_DEV_IC_SMC83C170REG_H_
     42      1.1  thorpej 
     43      1.1  thorpej /*
     44      1.1  thorpej  * Register description for the Standard Microsystems Corp. 83C170
     45      1.1  thorpej  * Ethernet PCI Integrated Controller (EPIC/100).
     46      1.1  thorpej  */
     47      1.1  thorpej 
     48      1.1  thorpej /*
     49      1.1  thorpej  * EPIC transmit descriptor.  Must be 4-byte aligned.
     50      1.1  thorpej  */
     51      1.1  thorpej struct epic_txdesc {
     52      1.1  thorpej 	u_int16_t	et_txstatus;	/* transmit status; see below */
     53      1.1  thorpej 	u_int16_t	et_txlength;	/* transmit length */
     54      1.1  thorpej 	u_int32_t	et_bufaddr;	/* buffer address */
     55      1.1  thorpej 	u_int16_t	et_buflength;	/* buffer length */
     56      1.1  thorpej 	u_int16_t	et_control;	/* control word; see below */
     57      1.1  thorpej 	u_int32_t	et_nextdesc;	/* next descriptor pointer */
     58      1.1  thorpej };
     59      1.1  thorpej 
     60      1.1  thorpej /* et_txstatus */
     61      1.1  thorpej #define	ET_TXSTAT_OWNER		0x8000	/* NIC owns descriptor */
     62      1.1  thorpej #define	ET_TXSTAT_COLLMASK	0x1f00	/* collisions */
     63      1.1  thorpej #define	ET_TXSTAT_DEFERRING	0x0080	/* deferring due to jabber */
     64      1.1  thorpej #define	ET_TXSTAT_OOWCOLL	0x0040	/* out of window collision */
     65      1.1  thorpej #define	ET_TXSTAT_CDHB		0x0020	/* collision detect heartbeat */
     66      1.1  thorpej #define	ET_TXSTAT_UNDERRUN	0x0010	/* DMA underrun */
     67      1.1  thorpej #define	ET_TXSTAT_CARSENSELOST	0x0008	/* carrier lost */
     68      1.1  thorpej #define	ET_TXSTAT_TXWITHCOLL	0x0004	/* encountered collisions during tx */
     69      1.1  thorpej #define	ET_TXSTAT_NONDEFERRED	0x0002	/* transmitted without deferring */
     70      1.1  thorpej #define	ET_TXSTAT_PACKETTX	0x0001	/* packet transmitted successfully */
     71      1.1  thorpej 
     72      1.1  thorpej #define	TXSTAT_COLLISIONS(x)	(((x) & ET_TXSTAT_COLLMASK) >> 8)
     73      1.1  thorpej 
     74      1.1  thorpej /* et_control */
     75      1.1  thorpej #define	ET_TXCTL_LASTDESC	0x0010	/* last descriptor in frame */
     76      1.1  thorpej #define	ET_TXCTL_NOCRC		0x0008	/* disable CRC generation */
     77      1.1  thorpej #define	ET_TXCTL_IAF		0x0004	/* interrupt after frame */
     78      1.1  thorpej #define	ET_TXCTL_LFFORM		0x0002	/* alternate fraglist format */
     79      1.1  thorpej #define	ET_TXCTL_FRAGLIST	0x0001	/* descriptor points to fraglist */
     80      1.1  thorpej 
     81      1.1  thorpej /*
     82      1.1  thorpej  * EPIC receive descriptor.  Must be 4-byte aligned.
     83      1.1  thorpej  */
     84      1.1  thorpej struct epic_rxdesc {
     85      1.1  thorpej 	u_int16_t	er_rxstatus;	/* receive status; see below */
     86      1.1  thorpej 	u_int16_t	er_rxlength;	/* receive frame length */
     87      1.1  thorpej 	u_int32_t	er_bufaddr;	/* buffer address */
     88      1.1  thorpej 	u_int16_t	er_buflength;	/* buffer length */
     89      1.1  thorpej 	u_int16_t	er_control;	/* control word; see below */
     90      1.1  thorpej 	u_int32_t	er_nextdesc;	/* next descriptor pointer */
     91      1.1  thorpej };
     92      1.1  thorpej 
     93      1.1  thorpej /* er_rxstatus */
     94      1.1  thorpej #define	ER_RXSTAT_OWNER		0x8000	/* NIC owns descriptor */
     95      1.1  thorpej #define	ER_RXSTAT_HDRCOPIED	0x4000	/* rx status posted after hdr copy */
     96      1.1  thorpej #define	ER_RXSTAT_FRAGLISTERR	0x2000	/* ran out of frags to copy frame */
     97      1.1  thorpej #define	ER_RXSTAT_NETSTATVALID	0x1000	/* length and status are valid */
     98      1.1  thorpej #define	ER_RXSTAT_RCVRDIS	0x0040	/* receiver disabled */
     99      1.1  thorpej #define	ER_RXSTAT_BCAST		0x0020	/* broadcast address recognized */
    100      1.1  thorpej #define	ER_RXSTAT_MCAST		0x0010	/* multicast address recognized */
    101      1.1  thorpej #define	ER_RXSTAT_MISSEDPKT	0x0008	/* missed packet */
    102      1.1  thorpej #define	ER_RXSTAT_CRCERROR	0x0004	/* EPIC or MII asserted CRC error */
    103      1.1  thorpej #define	ER_RXSTAT_ALIGNERROR	0x0002	/* frame not byte-aligned */
    104      1.1  thorpej #define	ER_RXSTAT_PKTINTACT	0x0001	/* packet received without error */
    105      1.1  thorpej 
    106      1.1  thorpej /* er_control */
    107      1.1  thorpej #define	ER_RXCTL_HEADER		0x0004	/* descriptor is for hdr copy */
    108      1.1  thorpej #define	ER_RXCTL_LFFORM		0x0002	/* alternate fraglist format */
    109      1.1  thorpej #define	ER_RXCTL_FRAGLIST	0x0001	/* descriptor points to fraglist */
    110      1.1  thorpej 
    111      1.1  thorpej #define	EPIC_NFRAGS		63	/* maximum number of frags in list */
    112      1.1  thorpej 
    113      1.1  thorpej /*
    114      1.1  thorpej  * EPIC fraglist descriptor.
    115      1.1  thorpej  */
    116      1.1  thorpej struct epic_fraglist {
    117      1.1  thorpej 	u_int32_t	ef_nfrags;	/* number of frags in list */
    118      1.1  thorpej 	struct {
    119      1.1  thorpej 		u_int32_t ef_addr;	/* address of frag */
    120      1.1  thorpej 		u_int32_t ef_length;	/* length of frag */
    121      1.1  thorpej 	} ef_frags[EPIC_NFRAGS];
    122      1.1  thorpej };
    123      1.1  thorpej 
    124      1.1  thorpej /*
    125      1.1  thorpej  * EPIC control registers.
    126      1.1  thorpej  */
    127      1.1  thorpej 
    128      1.1  thorpej #define	EPIC_COMMAND		0x00 /* COMMAND */
    129      1.1  thorpej #define	COMMAND_TXUGO		0x00000080	/* start tx after underrun */
    130      1.1  thorpej #define	COMMAND_STOP_RDMA	0x00000040	/* stop rx dma */
    131      1.1  thorpej #define	COMMAND_STOP_TDMA	0x00000020	/* stop tx dma */
    132      1.1  thorpej #define	COMMAND_NEXTFRAME	0x00000010	/* move onto next rx frame */
    133      1.1  thorpej #define	COMMAND_RXQUEUED	0x00000008	/* queue a rx descriptor */
    134      1.1  thorpej #define	COMMAND_TXQUEUED	0x00000004	/* queue a tx descriptor */
    135      1.1  thorpej #define	COMMAND_START_RX	0x00000002	/* start receiver */
    136      1.1  thorpej #define	COMMAND_STOP_RX		0x00000001	/* stop receiver */
    137      1.1  thorpej 
    138      1.1  thorpej #define	EPIC_INTSTAT		0x04 /* INTERRUPT STATUS */
    139      1.1  thorpej #define	INTSTAT_PTA		0x08000000	/* PCI target abort */
    140      1.1  thorpej #define	INTSTAT_PMA		0x04000000	/* PCI master abort */
    141      1.1  thorpej #define	INTSTAT_APE		0x02000000	/* PCI address parity error */
    142      1.1  thorpej #define	INTSTAT_DPE		0x01000000	/* PCI data parity error */
    143      1.1  thorpej #define	INTSTAT_RSV		0x00800000	/* rx status valid */
    144      1.1  thorpej #define	INTSTAT_RCTS		0x00400000	/* rx copy threshold status */
    145      1.1  thorpej #define	INTSTAT_RBE		0x00200000	/* rx buffers empty */
    146      1.1  thorpej #define	INTSTAT_TCIP		0x00100000	/* tx copy in progress */
    147      1.1  thorpej #define	INTSTAT_RCIP		0x00080000	/* rx copy in progress */
    148      1.1  thorpej #define	INTSTAT_TXIDLE		0x00040000	/* transmit idle */
    149      1.1  thorpej #define	INTSTAT_RXIDLE		0x00020000	/* receive idle */
    150      1.1  thorpej #define	INTSTAT_INT_ACTV	0x00010000	/* interrupt active */
    151      1.1  thorpej #define	INTSTAT_GP2_INT		0x00008000	/* gpio2 low (PHY event) */
    152      1.1  thorpej #define	INTSTAT_FATAL_INT	0x00001000	/* fatal error occured */
    153      1.1  thorpej #define	INTSTAT_RCT		0x00000800	/* rx copy threshold crossed */
    154      1.1  thorpej #define	INTSTAT_PREI		0x00000400	/* preemptive interrupt */
    155      1.1  thorpej #define	INTSTAT_CNT		0x00000200	/* counter overflow */
    156      1.1  thorpej #define	INTSTAT_TXU		0x00000100	/* transmit underrun */
    157      1.1  thorpej #define	INTSTAT_TQE		0x00000080	/* transmit queue empty */
    158      1.1  thorpej #define	INTSTAT_TCC		0x00000040	/* transmit chain complete */
    159      1.1  thorpej #define	INTSTAT_TXC		0x00000020	/* transmit complete */
    160      1.1  thorpej #define	INTSTAT_RXE		0x00000010	/* receive error */
    161      1.1  thorpej #define	INTSTAT_OVW		0x00000008	/* rx buffer overflow */
    162      1.1  thorpej #define	INTSTAT_RQE		0x00000004	/* receive queue empty */
    163      1.1  thorpej #define	INTSTAT_HCC		0x00000002	/* header copy complete */
    164      1.1  thorpej #define	INTSTAT_RCC		0x00000001	/* receive copy complete */
    165      1.1  thorpej 
    166      1.1  thorpej #define	EPIC_INTMASK		0x08 /* INTERRUPT MASK */
    167      1.1  thorpej 	/* Bits 0-15 enable the corresponding interrupt in INTSTAT. */
    168      1.1  thorpej 
    169      1.1  thorpej #define	EPIC_GENCTL		0x0c /* GENERAL CONTROL */
    170      1.1  thorpej #define	GENCTL_RESET_PHY	0x00004000	/* reset PHY */
    171      1.1  thorpej #define	GENCTL_SOFT1		0x00002000	/* software use */
    172      1.1  thorpej #define	GENCTL_SOFT0		0x00001000	/* software use */
    173      1.1  thorpej #define	GENCTL_MEM_READ_CTL1	0x00000800	/* PCI memory control */
    174      1.1  thorpej #define	GENCTL_MEM_READ_CTL0	0x00000400	/* (see below) */
    175      1.1  thorpej #define	GENCTL_RX_FIFO_THRESH1	0x00000200	/* rx fifo thresh */
    176      1.1  thorpej #define	GENCTL_RX_FIFO_THRESH0	0x00000100	/* (see below) */
    177      1.1  thorpej #define	GENCTL_BIG_ENDIAN	0x00000020	/* big endian mode */
    178      1.1  thorpej #define	GENCTL_ONECOPY		0x00000010	/* auto-NEXTFRAME */
    179      1.1  thorpej #define	GENCTL_POWERDOWN	0x00000008	/* powersave sleep mode */
    180      1.1  thorpej #define	GENCTL_SOFTINT		0x00000004	/* software-generated intr */
    181      1.1  thorpej #define	GENCTL_INTENA		0x00000002	/* interrupt enable */
    182      1.1  thorpej #define	GENCTL_SOFTRESET	0x00000001	/* initialize EPIC */
    183      1.1  thorpej 
    184      1.1  thorpej /*
    185      1.1  thorpej  * Explanation of MEMORY READ CONTROL:
    186      1.1  thorpej  *
    187      1.1  thorpej  * These bits control which PCI command the transmit DMA will use when
    188      1.1  thorpej  * bursting data over the PCI bus.  When CTL1 is set, the transmit DMA
    189      1.1  thorpej  * will use the PCI "memory read line" command.  When CTL0 is set, the
    190      1.1  thorpej  * transmit DMA will use the PCI "memory read multiple" command.  When
    191      1.1  thorpej  * neither bit is set, the transmit DMA will use the "memory read" command.
    192      1.1  thorpej  * Use of "memory read line" or "memory read multiple" may enhance
    193      1.1  thorpej  * performance on some systems.
    194      1.1  thorpej  */
    195      1.1  thorpej 
    196      1.1  thorpej /*
    197      1.1  thorpej  * Explanation of RECEIVE FIFO THRESHOLD:
    198      1.1  thorpej  *
    199      1.1  thorpej  * Controls the level at which the PCI burst state machine begins to
    200      1.1  thorpej  * empty the receive FIFO.  Default is "1/2 full" (0,1).
    201      1.1  thorpej  *
    202      1.1  thorpej  *	0,0	1/4 full	32 bytes
    203      1.1  thorpej  *	0,1	1/2 full	64 bytes
    204      1.1  thorpej  *	1,0	3/4 full	96 bytes
    205      1.1  thorpej  *	1,1	full		128 bytes
    206      1.1  thorpej  */
    207      1.1  thorpej 
    208      1.1  thorpej #define	EPIC_NVCTL		0x10 /* NON-VOLATILE CONTROL */
    209      1.1  thorpej #define	NVCTL_IPG_DLY_MASK	0x00000780	/* interpacket delay gap */
    210      1.1  thorpej #define	NVCTL_CB_MODE		0x00000040	/* CardBus mode */
    211      1.1  thorpej #define	NVCTL_GPIO2		0x00000020	/* general purpose i/o */
    212      1.1  thorpej #define	NVCTL_GPIO1		0x00000010	/* ... */
    213      1.1  thorpej #define	NVCTL_GPOE2		0x00000008	/* general purpose output ena */
    214      1.1  thorpej #define	NVCTL_GPOE1		0x00000004	/* ... */
    215      1.1  thorpej #define	NVCTL_CLKRUNSUPP	0x00000002	/* clock run supported */
    216      1.1  thorpej #define	NVCTL_ENAMEMMAP		0x00000001	/* enable memory map */
    217      1.1  thorpej 
    218      1.1  thorpej #define	NVCTL_IPG_DLY(x)	(((x) & NVCTL_IPG_DLY_MASK) >> 7)
    219      1.1  thorpej 
    220      1.1  thorpej #define	EPIC_EECTL		0x14 /* EEPROM CONTROL */
    221      1.1  thorpej #define	EECTL_EEPROMSIZE	0x00000040	/* eeprom size; see below */
    222      1.1  thorpej #define	EECTL_EERDY		0x00000020	/* eeprom ready */
    223      1.1  thorpej #define	EECTL_EEDO		0x00000010	/* eeprom data out (from) */
    224      1.1  thorpej #define	EECTL_EEDI		0x00000008	/* eeprom data in (to) */
    225      1.1  thorpej #define	EECTL_EESK		0x00000004	/* eeprom clock */
    226      1.1  thorpej #define	EECTL_EECS		0x00000002	/* eeprom chip select */
    227      1.1  thorpej #define	EECTL_ENABLE		0x00000001	/* eeprom enable */
    228      1.1  thorpej 
    229      1.1  thorpej /*
    230      1.1  thorpej  * Explanation of EEPROM SIZE:
    231      1.1  thorpej  *
    232      1.1  thorpej  * Indicates the size of the serial EEPROM:
    233      1.1  thorpej  *
    234      1.1  thorpej  *	1	16x16 or 64x16
    235      1.1  thorpej  *	0	128x16 or 256x16
    236      1.1  thorpej  */
    237      1.1  thorpej 
    238      1.1  thorpej /*
    239      1.1  thorpej  * Serial EEPROM opcodes, including start bit:
    240      1.1  thorpej  */
    241      1.1  thorpej #define	EPIC_EEPROM_OPC_WRITE	0x05
    242      1.1  thorpej #define	EPIC_EEPROM_OPC_READ	0x06
    243      1.1  thorpej 
    244      1.1  thorpej #define	EPIC_PBLCNT		0x18 /* PBLCNT */
    245      1.1  thorpej #define	PBLCNT_MASK		0x0000003f	/* programmable burst length */
    246      1.1  thorpej 
    247      1.1  thorpej #define	EPIC_TEST		0x1c /* TEST */
    248      1.2  thorpej #define	TEST_CLOCKTEST		0x00000008
    249      1.1  thorpej 
    250      1.1  thorpej #define	EPIC_CRCCNT		0x20 /* CRC ERROR COUNTER */
    251      1.1  thorpej #define	CRCCNT_MASK		0x0000000f	/* crc errs since last read */
    252      1.1  thorpej 
    253      1.1  thorpej #define	EPIC_ALICNT		0x24 /* FRAME ALIGNMENT ERROR COUNTER */
    254      1.1  thorpej #define	ALICNT_MASK		0x0000000f	/* align errs since last read */
    255      1.1  thorpej 
    256      1.1  thorpej #define	EPIC_MPCNT		0x28 /* MISSED PACKET COUNTER */
    257      1.1  thorpej #define	MPCNT_MASK		0x0000000f	/* miss. pkts since last read */
    258      1.1  thorpej 
    259      1.1  thorpej #define	EPIC_RXFIFO		0x2c
    260      1.1  thorpej 
    261      1.1  thorpej #define	EPIC_MMCTL		0x30 /* MII MANAGEMENT INTERFACE CONTROL */
    262      1.1  thorpej #define	MMCTL_PHY_ADDR_MASK	0x00003e00	/* phy address field */
    263      1.1  thorpej #define	MMCTL_PHY_REG_ADDR_MASK	0x000001f0	/* phy register address field */
    264      1.1  thorpej #define	MMCTL_RESPONDER		0x00000008	/* phy responder */
    265      1.1  thorpej #define	MMCTL_WRITE		0x00000002	/* write to phy */
    266      1.1  thorpej #define	MMCTL_READ		0x00000001	/* read from phy */
    267      1.3  thorpej 
    268      1.3  thorpej #define	MMCTL_ARG(phy, reg, cmd)	(((phy) << 9) | ((reg) << 4) | (cmd))
    269      1.1  thorpej 
    270      1.1  thorpej #define	EPIC_MMDATA		0x34 /* MII MANAGEMENT INTERFACE DATA */
    271      1.1  thorpej #define	MMDATA_MASK		0x0000ffff	/* MII frame data */
    272      1.1  thorpej 
    273      1.1  thorpej #define	EPIC_MIICFG		0x38 /* MII CONFIGURATION */
    274      1.1  thorpej #define	MIICFG_ALTDIR		0x00000080	/* alternate direction */
    275      1.1  thorpej #define	MIICFG_ALTDATA		0x00000040	/* alternate data */
    276      1.1  thorpej #define	MIICFG_ALTCLOCK		0x00000020	/* alternate clock source */
    277      1.1  thorpej #define	MIICFG_ENASER		0x00000010	/* enable serial manag intf */
    278      1.1  thorpej #define	MIICFG_PHYPRESENT	0x00000008	/* phy present on MII */
    279      1.1  thorpej #define	MIICFG_LINKSTATUS	0x00000004	/* 694 link status */
    280      1.1  thorpej #define	MIICFG_ENABLE		0x00000002	/* enable 694 */
    281      1.1  thorpej #define	MIICFG_SERMODEENA	0x00000001	/* serial mode enable */
    282      1.1  thorpej 
    283      1.1  thorpej #define	EPIC_IPG		0x3c /* INTERPACKET GAP */
    284      1.1  thorpej #define	IPG_INTERFRAME_MASK	0x00007f00	/* interframe gap time */
    285      1.1  thorpej #define	IPG_INTERPKT_MASK	0x000000ff	/* interpacket gap time */
    286      1.1  thorpej 
    287      1.1  thorpej #define	EPIC_LAN0		0x40 /* LAN ADDRESS */
    288      1.1  thorpej 
    289      1.1  thorpej #define	EPIC_LAN1		0x44
    290      1.1  thorpej 
    291      1.1  thorpej #define	EPIC_LAN2		0x48
    292      1.1  thorpej 
    293      1.1  thorpej #define	LANn_MASK		0x0000ffff
    294      1.1  thorpej 
    295      1.1  thorpej /*
    296      1.1  thorpej  * Explanation of LAN ADDRESS registers:
    297      1.1  thorpej  *
    298      1.1  thorpej  * LAN address is described as:
    299      1.1  thorpej  *
    300      1.1  thorpej  *	0000 [n1][n0][n3][n2] | 0000 [n5][n4][n7][n6] | 0000 [n9][n8][n11][n10]
    301      1.1  thorpej  *
    302      1.1  thorpej  * n == one nibble, mapped as follows:
    303      1.1  thorpej  *
    304      1.1  thorpej  *	LAN0	[15-12]		n3
    305      1.1  thorpej  *	LAN0	[11-8]		n2
    306      1.1  thorpej  *	LAN0	[7-4]		n1
    307      1.1  thorpej  *	LAN0	[3-0]		n0
    308      1.1  thorpej  *	LAN1	[15-12]		n7
    309      1.1  thorpej  *	LAN1	[11-8]		n6
    310      1.1  thorpej  *	LAN1	[7-4]		n5
    311      1.1  thorpej  *	LAN1	[3-0]		n4
    312      1.1  thorpej  *	LAN2	[15-12]		n11
    313      1.1  thorpej  *	LAN2	[11-8]		n10
    314      1.1  thorpej  *	LAN2	[7-4]		n9
    315      1.1  thorpej  *	LAN2	[3-0]		n8
    316      1.1  thorpej  *
    317      1.1  thorpej  * The LAN address is automatically recalled from the EEPROM after a
    318      1.1  thorpej  * hard reseet.
    319      1.1  thorpej  */
    320      1.1  thorpej 
    321      1.1  thorpej #define	EPIC_IDCHK		0x4c /* BOARD ID/CHECKSUM */
    322      1.1  thorpej #define	IDCHK_ID_MASK		0x0000ff00	/* board ID */
    323      1.1  thorpej #define	IDCHK_CKSUM_MASK	0x000000ff	/* checksum (should be 0xff) */
    324      1.1  thorpej 
    325      1.1  thorpej #define	EPIC_MC0		0x50 /* MULTICAST ADDDRESS HASH TABLE */
    326      1.1  thorpej 
    327      1.1  thorpej #define	EPIC_MC1		0x54
    328      1.1  thorpej 
    329      1.1  thorpej #define	EPIC_MC2		0x58
    330      1.1  thorpej 
    331      1.1  thorpej #define	EPIC_MC3		0x5c
    332      1.1  thorpej 
    333      1.1  thorpej /*
    334      1.1  thorpej  * Explanation of MULTICAST ADDRESS HASH TABLE registers:
    335      1.1  thorpej  *
    336      1.1  thorpej  * Bits in the hash table are encoded as follows:
    337      1.1  thorpej  *
    338      1.1  thorpej  *	MC0	[15-0]
    339      1.1  thorpej  *	MC1	[31-16]
    340      1.1  thorpej  *	MC2	[47-32]
    341      1.1  thorpej  *	MC3	[53-48]
    342      1.1  thorpej  */
    343      1.1  thorpej 
    344      1.1  thorpej #define	EPIC_RXCON		0x60 /* RECEIVE CONTROL */
    345      1.1  thorpej #define	RXCON_EXTBUFSIZESEL1	0x00000200	/* ext buf size; see below */
    346      1.1  thorpej #define	RXCON_EXTBUFSIZESEL0	0x00000100	/* ... */
    347      1.1  thorpej #define	RXCON_EARLYRXENABLE	0x00000080	/* early receive enable */
    348      1.1  thorpej #define	RXCON_MONITORMODE	0x00000040	/* monitor mode */
    349      1.1  thorpej #define	RXCON_PROMISCMODE	0x00000020	/* promiscuous mode */
    350      1.1  thorpej #define	RXCON_RXINVADDR		0x00000010	/* rx inv individual addr */
    351      1.1  thorpej #define	RXCON_RXMULTICAST	0x00000008	/* receive multicast */
    352      1.1  thorpej #define	RXCON_RXBROADCAST	0x00000004	/* receive broadcast */
    353      1.1  thorpej #define	RXCON_RXRUNT		0x00000002	/* receive runt frames */
    354      1.1  thorpej #define	RXCON_SAVEERRPKTS	0x00000001	/* save errored packets */
    355      1.1  thorpej 
    356      1.1  thorpej /*
    357      1.1  thorpej  * Explanation of EXTERNAL BUFFER SIZE SELECT:
    358      1.1  thorpej  *
    359      1.1  thorpej  * 	0,0	external buffer access is disabled
    360      1.1  thorpej  *	0,1	16k
    361      1.1  thorpej  *	1,0	32k
    362      1.1  thorpej  *	1,1	128k
    363      1.1  thorpej  */
    364      1.1  thorpej 
    365      1.1  thorpej #define	EPIC_RXSTAT		0x64 /* RECEIVE STATUS */
    366      1.1  thorpej 
    367      1.1  thorpej #define	EPIC_RXCNT		0x68
    368      1.1  thorpej 
    369      1.1  thorpej #define	EPIC_RXTEST		0x6c
    370      1.1  thorpej 
    371      1.1  thorpej #define	EPIC_TXCON		0x70 /* TRANSMIT CONTROL */
    372      1.1  thorpej #define	TXCON_SLOTTIME_MASK	0x000000f8	/* slot time */
    373      1.1  thorpej #define	TXCON_LOOPBACK_D2	0x00000004	/* loopback mode bit 2 */
    374      1.1  thorpej #define	TXCON_LOOPBACK_D1	0x00000002	/* loopback mode bit 1 */
    375      1.1  thorpej #define	TXCON_EARLYTX_ENABLE	0x00000001	/* early transmit enable */
    376      1.1  thorpej 
    377      1.1  thorpej /*
    378      1.1  thorpej  * Explanation of LOOPBACK MODE BIT:
    379      1.1  thorpej  *
    380      1.1  thorpej  *	0,0	normal operation
    381      1.1  thorpej  *	0,1	internal loopback (before PHY)
    382      1.1  thorpej  *	1,0	external loopback (after PHY)
    383      1.1  thorpej  *	1,1	full duplex - decouples transmit and receive blocks
    384      1.1  thorpej  */
    385      1.1  thorpej 
    386      1.1  thorpej #define	EPIC_TXSTAT		0x74 /* TRANSMIT STATUS */
    387      1.1  thorpej 
    388      1.1  thorpej #define	EPIC_TDPAR		0x78
    389      1.1  thorpej 
    390      1.1  thorpej #define	EPIC_TXTEST		0x7c
    391      1.1  thorpej 
    392      1.1  thorpej #define	EPIC_PRFDAR		0x80
    393      1.1  thorpej 
    394      1.1  thorpej #define	EPIC_PRCDAR		0x84 /* PCI RECEIVE CURRENT DESCRIPTOR ADDR */
    395      1.1  thorpej 
    396      1.1  thorpej #define	EPIC_PRHDAR		0x88
    397      1.1  thorpej 
    398      1.1  thorpej #define	EPIC_PRFLAR		0x8c
    399      1.1  thorpej 
    400      1.1  thorpej #define	EPIC_PRDLGTH		0x90
    401      1.1  thorpej 
    402      1.1  thorpej #define	EPIC_PRFCNT		0x94
    403      1.1  thorpej 
    404      1.1  thorpej #define	EPIC_PRLCAR		0x98
    405      1.1  thorpej 
    406      1.1  thorpej #define	EPIC_PRLPAR		0x9c
    407      1.1  thorpej 
    408      1.1  thorpej #define	EPIC_PREFAR		0xa0
    409      1.1  thorpej 
    410      1.1  thorpej #define	EPIC_PRSTAT		0xa4 /* PCI RECEIVE DMA STATUS */
    411      1.1  thorpej 
    412      1.1  thorpej #define	EPIC_PRBUF		0xa8
    413      1.1  thorpej 
    414      1.1  thorpej #define	EPIC_RDNCAR		0xac
    415      1.1  thorpej 
    416      1.1  thorpej #define	EPIC_PRCPTHR		0xb0 /* PCI RECEIVE COPY THRESHOLD */
    417      1.1  thorpej 
    418      1.1  thorpej #define	EPIC_ROMDATA		0xb4
    419      1.1  thorpej 
    420      1.1  thorpej #define	EPIC_PREEMPR		0xbc
    421      1.1  thorpej 
    422      1.1  thorpej #define	EPIC_PTFDAR		0xc0
    423      1.1  thorpej 
    424      1.1  thorpej #define	EPIC_PTCDAR		0xc4 /* PCI TRANSMIT CURRENT DESCRIPTOR ADDR */
    425      1.1  thorpej 
    426      1.1  thorpej #define	EPIC_PTHDAR		0xc8
    427      1.1  thorpej 
    428      1.1  thorpej #define	EPIC_PTFLAR		0xcc
    429      1.1  thorpej 
    430      1.1  thorpej #define	EPIC_PTDLGTH		0xd0
    431      1.1  thorpej 
    432      1.1  thorpej #define	EPIC_PTFCNT		0xd4
    433      1.1  thorpej 
    434      1.1  thorpej #define	EPIC_PTLCAR		0xd8
    435      1.1  thorpej 
    436      1.1  thorpej #define	EPIC_ETXTHR		0xdc /* EARLY TRANSMIT THRESHOLD */
    437      1.1  thorpej 
    438      1.1  thorpej #define	EPIC_PTETXC		0xe0
    439      1.1  thorpej 
    440      1.1  thorpej #define	EPIC_PTSTAT		0xe4
    441      1.1  thorpej 
    442      1.1  thorpej #define	EPIC_PTBUF		0xe8
    443      1.1  thorpej 
    444      1.1  thorpej #define	EPIC_PTFDAR2		0xec
    445      1.1  thorpej 
    446      1.1  thorpej #define	EPIC_FEVTR		0xf0 /* FEVTR (CardBus) */
    447      1.1  thorpej 
    448      1.1  thorpej #define	EPIC_FEVTRMSKR		0xf4 /* FEVTRMSKR (CardBus) */
    449      1.1  thorpej 
    450      1.1  thorpej #define	EPIC_FPRSTSTR		0xf8 /* FPRSTR (CardBus) */
    451      1.1  thorpej 
    452      1.1  thorpej #define	EPIC_FFRCEVTR		0xfc /* PPRCEVTR (CardBus) */
    453      1.1  thorpej 
    454      1.1  thorpej /*
    455      1.1  thorpej  * EEPROM format:
    456      1.1  thorpej  *
    457      1.1  thorpej  *	Word	Bits	Description
    458      1.1  thorpej  *	----	----	-----------
    459      1.1  thorpej  *	0	7-0	LAN Address Byte 0
    460      1.1  thorpej  *	0	15-8	LAN Address Byte 1
    461      1.1  thorpej  *	1	7-0	LAN Address Byte 2
    462      1.1  thorpej  *	1	15-8	LAN Address Byte 3
    463      1.1  thorpej  *	2	7-0	LAN Address Byte 4
    464      1.1  thorpej  *	2	15-8	LAN Address Byte 5
    465      1.1  thorpej  *	3	7-0	Board ID
    466      1.1  thorpej  *	3	15-8	Checksum
    467      1.1  thorpej  *	4	5-0	Non-Volatile Control Register Contents
    468      1.1  thorpej  *	5	7-0	PCI Minimum Grant Desired Setting
    469      1.1  thorpej  *	5	15-8	PCI Maximum Latency Desired Setting
    470      1.1  thorpej  *	6	15-0	Subsystem Vendor ID
    471      1.1  thorpej  *	7	14-0	Subsystem ID
    472      1.1  thorpej  */
    473      1.1  thorpej 
    474      1.1  thorpej #endif /* _DEV_IC_SMC83C170REG_H_ */
    475