Home | History | Annotate | Line # | Download | only in mii
      1  1.2  thorpej /*	$NetBSD: acphyreg.h,v 1.2 2001/08/25 05:57:12 thorpej Exp $	*/
      2  1.1  thorpej 
      3  1.1  thorpej /*
      4  1.1  thorpej  * Copyright 2001 Wasabi Systems, Inc.
      5  1.1  thorpej  * All rights reserved.
      6  1.1  thorpej  *
      7  1.1  thorpej  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8  1.1  thorpej  *
      9  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     10  1.1  thorpej  * modification, are permitted provided that the following conditions
     11  1.1  thorpej  * are met:
     12  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     13  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     14  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     17  1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     18  1.1  thorpej  *    must display the following acknowledgement:
     19  1.1  thorpej  *	This product includes software developed for the NetBSD Project by
     20  1.1  thorpej  *	Wasabi Systems, Inc.
     21  1.1  thorpej  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22  1.1  thorpej  *    or promote products derived from this software without specific prior
     23  1.1  thorpej  *    written permission.
     24  1.1  thorpej  *
     25  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26  1.1  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29  1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     36  1.1  thorpej  */
     37  1.1  thorpej 
     38  1.1  thorpej #ifndef _DEV_MII_ACPHYREG_H_
     39  1.1  thorpej #define	_DEV_MII_ACPHYREG_H_
     40  1.1  thorpej 
     41  1.1  thorpej /*
     42  1.1  thorpej  * Altima AC101 PHY registers.
     43  1.2  thorpej  *
     44  1.2  thorpej  * Note the AC101 and the AMD Ac79c874 are the same PHY core.  There
     45  1.2  thorpej  * are some registers documented in the AC101 manual that are not in
     46  1.2  thorpej  * the Am79c874 manual, and vice-versa.  I have no idea how to tell
     47  1.2  thorpej  * the two apart, but we don't really use the registers that fall into
     48  1.2  thorpej  * this category, anyhow.
     49  1.1  thorpej  */
     50  1.1  thorpej 
     51  1.1  thorpej #define	MII_ACPHY_PILR		0x10	/* polarity and interrupt control */
     52  1.1  thorpej #define	PILR_REPEATER		0x8000	/* repeater mode */
     53  1.1  thorpej #define	PILR_INTR_LEVL		0x4000	/* 1 = active high, 0 = active low */
     54  1.1  thorpej #define	PILR_SQE_INHIBIT	0x0800	/* disable 10T SQE testing */
     55  1.1  thorpej #define	PILR_10T_LOOP		0x0400	/* enable loopback in 10T */
     56  1.1  thorpej #define	PILR_GPIO1_DATA		0x0200	/* GPIO1 pin */
     57  1.1  thorpej #define	PILR_GPIO1_DIR		0x0100	/* 1 = input */
     58  1.1  thorpej #define	PILR_GPIO0_DATA		0x0080	/* GPIO0 pin */
     59  1.1  thorpej #define	PILR_GPIO0_DIR		0x0040	/* 1 = input */
     60  1.1  thorpej #define	PILR_AUTO_POL_DIS	0x0020	/* disable auto-polarity */
     61  1.1  thorpej #define	PILR_REVERSE_POL	0x0010	/* 1 = reverse, 0 = normal */
     62  1.1  thorpej #define	PILR_RXCLK_CTRL		0x0001	/* disable RX_CLK when idle */
     63  1.1  thorpej 
     64  1.1  thorpej 
     65  1.1  thorpej #define	MII_ACPHY_ICSR		0x11	/* interrupt control/status */
     66  1.1  thorpej #define	ICSR_JABBER_IE		0x8000	/* jabber interrupt enable */
     67  1.1  thorpej #define	ICSR_RX_ER_IE		0x4000	/* Rx error interrupt enable */
     68  1.1  thorpej #define	ICSR_PAGE_RX_IE		0x2000	/* page received interrupt enable */
     69  1.1  thorpej #define	ICSR_PD_FAULT_IE	0x1000	/* parallel detection fault int en */
     70  1.1  thorpej #define	ICSR_LP_ACK_IE		0x0800	/* link partner ACK interrupt en */
     71  1.1  thorpej #define	ICSR_LNK_NOT_OK_IE	0x0400	/* link not okay interrupt enable */
     72  1.1  thorpej #define	ICSR_R_FAULT_IE		0x0200	/* remote fault interrupt enable */
     73  1.1  thorpej #define	ICSR_ANEG_COMP_IE	0x0100	/* autonegotiation complete int en */
     74  1.1  thorpej #define	ICSR_JABBER_INT		0x0080	/* jabber interrupt */
     75  1.1  thorpej #define	ICSR_RX_ER_INT		0x0040	/* Rx error interrupt */
     76  1.1  thorpej #define	ICSR_PAGE_RX_INT	0x0020	/* page received interrupt */
     77  1.1  thorpej #define	ICSR_PD_FAULT_INT	0x0010	/* parallel detection fault interrupt */
     78  1.1  thorpej #define	ICSR_LP_ACK_INT		0x0008	/* link partner ACK interrupt */
     79  1.1  thorpej #define	ICSR_LNK_NOT_OK_INT	0x0004	/* link not okay interrupt */
     80  1.1  thorpej #define	ICSR_R_FAULT_INT	0x0002	/* remote fault interrupt */
     81  1.1  thorpej #define	ICSR_ANEG_COMP_INT	0x0001	/* autonegotiation complete interrupt */
     82  1.1  thorpej 
     83  1.1  thorpej 
     84  1.1  thorpej #define	MII_ACPHY_DR		0x12	/* diagnostic register */
     85  1.1  thorpej #define	DR_DPLX			0x0800	/* full-duplex resolved */
     86  1.1  thorpej #define	DR_SPEED		0x0400	/* 100BASE-TX resolved */
     87  1.1  thorpej #define	DR_RX_PASS		0x0200	/* manchester/signal received */
     88  1.1  thorpej #define	DR_RX_LOCK		0x0100	/* PLL signal has been locked */
     89  1.1  thorpej 
     90  1.1  thorpej 
     91  1.1  thorpej #define	MII_ACPHY_PLR		0x13	/* power/loopback register */
     92  1.1  thorpej #define	PLR_TB125		0x0040	/* Tx transformer ratio 1.25:1 */
     93  1.1  thorpej #define	PLR_LOW_POWER_MODE	0x0020	/* enable advanced power saving mode */
     94  1.1  thorpej #define	PLR_TEST_LOOPBACK	0x0010	/* enable test loopback */
     95  1.1  thorpej #define	PLR_DIGITAL_LOOPBACK	0x0008	/* enable loopback */
     96  1.1  thorpej #define	PLR_LP_LPBK		0x0004	/* enable link pulse loopback */
     97  1.1  thorpej #define	PLR_NLP_LINK_INT_TEST	0x0002	/* send NLP instead of FLP */
     98  1.1  thorpej #define	PLR_REDUCE_TIMER	0x0001	/* reduce time constant for aneg */
     99  1.1  thorpej 
    100  1.1  thorpej 
    101  1.2  thorpej /*	AC101 only	*/
    102  1.1  thorpej #define	MII_ACPHY_CMR		0x14	/* cable measurement register */
    103  1.1  thorpej #define	CMR_MASK		0x00f0	/* cable measurement mask */
    104  1.1  thorpej 
    105  1.1  thorpej 
    106  1.2  thorpej #define	MII_ACPHY_MCR		0x15	/* mode control register */
    107  1.1  thorpej #define	MCR_NLP_DISABLE		0x4000	/* force good 10BASE-T link */
    108  1.1  thorpej #define	MCR_FORCE_LINK_UP	0x2000	/* force good 100BASE-TX link */
    109  1.1  thorpej #define	MCR_JABBER_DISABLE	0x1000	/* disable jabber function */
    110  1.1  thorpej #define	MCR_10BT_SEL		0x0800	/* enable 7-wire 10T operation */
    111  1.1  thorpej #define	MCR_CONF_ALED		0x0400	/* 1 = ALED only Rx, 0 = ALED Rx/Tx */
    112  1.1  thorpej #define	MCR_LED_SEL		0x0200	/* 1 = tqphy-compat LED config */
    113  1.1  thorpej #define	MCR_FEF_DIS		0x0100	/* disable far-end-fault insertion */
    114  1.1  thorpej #define	MCR_FORCE_FEF_TX	0x0080	/* force FEF transmission */
    115  1.1  thorpej #define	MCR_RX_ER_CNT_FULL	0x0040	/* Rx error counter full */
    116  1.1  thorpej #define	MCR_DIS_RX_ER_CNT	0x0020	/* disable Rx error counter */
    117  1.1  thorpej #define	MCR_DIS_WDT		0x0010	/* disable the watchdog timer */
    118  1.1  thorpej #define	MCR_EN_RPBK		0x0008	/* enable remote loopback */
    119  1.1  thorpej #define	MCR_DIS_SCRM		0x0004	/* enable 100M data scrambling */
    120  1.1  thorpej #define	MCR_PCSBP		0x0002	/* bypass PCS */
    121  1.1  thorpej #define	MCR_FX_SEL		0x0001	/* FX mode selected */
    122  1.1  thorpej 
    123  1.1  thorpej 
    124  1.2  thorpej /*	Am79c874 only	*/
    125  1.2  thorpej #define	MII_ACPHY_DCR		0x17	/* disconnect counter register */
    126  1.2  thorpej 
    127  1.2  thorpej 
    128  1.2  thorpej #define	MII_ACPHY_RECR		0x18	/* receive error counter register */
    129  1.1  thorpej 
    130  1.1  thorpej 
    131  1.1  thorpej #endif /* _DEV_MII_ACPHYREG_H_ */
    132