Home | History | Annotate | Line # | Download | only in mii
      1  1.2   martin /*	$NetBSD: dmphyreg.h,v 1.2 2008/04/28 20:23:53 martin Exp $	*/
      2  1.1  thorpej 
      3  1.1  thorpej /*-
      4  1.1  thorpej  * Copyright (c) 2000 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  *
     20  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21  1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22  1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23  1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24  1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25  1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26  1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27  1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28  1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29  1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30  1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31  1.1  thorpej  */
     32  1.1  thorpej 
     33  1.1  thorpej #ifndef _DEV_MII_DMPHYREG_H_
     34  1.1  thorpej #define	_DEV_MII_DMPHYREG_H_
     35  1.1  thorpej 
     36  1.1  thorpej /*
     37  1.1  thorpej  * Davicom DM9101 registers.
     38  1.1  thorpej  */
     39  1.1  thorpej 
     40  1.1  thorpej #define	MII_DMPHY_DSCR		0x10	/* DAVICOM Specified Config Reg */
     41  1.1  thorpej #define	DSCR_BP_4B5B		0x8000	/* bypass 4b5b encoding/decoding */
     42  1.1  thorpej #define	DSCR_SCR		0x4000	/* bypass scrambler/descrambler */
     43  1.1  thorpej #define	DSCR_ALIGN		0x2000	/* bypass symbol alignment */
     44  1.1  thorpej #define	DSCR_REPEATER		0x0800	/* repeater mode */
     45  1.1  thorpej #define	DSCR_TX			0x0400	/* 1 == 100baseTX, 0 == 100baseFX */
     46  1.1  thorpej #define	DSCR_UTP		0x0200	/* 1 == UTP, 0 == STP */
     47  1.1  thorpej #define	DSCR_CLK25MDIS		0x0100	/* CLK25M disable */
     48  1.1  thorpej #define	DSCR_F_LINK_100		0x0080	/* force good link in 100Mb/s mode */
     49  1.1  thorpej #define	DSCR_LINKLED_CTL	0x0020	/* 1 == link only, 0 == link+traffic */
     50  1.1  thorpej #define	DSCR_FDXLEN_MODE	0x0010	/* 1 == 10baseT polarity, 0 == FDX */
     51  1.1  thorpej #define	DSCR_SMRST		0x0008	/* reset state machine */
     52  1.1  thorpej #define	DSCR_MFPSC		0x0004	/* MF preamble suppression */
     53  1.1  thorpej #define	DSCR_SLEEP		0x0002	/* sleep mode */
     54  1.1  thorpej #define	DSCR_RLOUT		0x0001	/* remote loop-out control */
     55  1.1  thorpej 
     56  1.1  thorpej #define	MII_DMPHY_DSCSR		0x11	/* DAVICOM Spec'd Conf/Stat Reg */
     57  1.1  thorpej #define	DSCSR_100FDX		0x8000	/* 100Mb/s FDX */
     58  1.1  thorpej #define	DSCSR_100HDX		0x4000	/* 100Mb/s HDX */
     59  1.1  thorpej #define	DSCSR_10FDX		0x2000	/* 10Mb/s FDX */
     60  1.1  thorpej #define	DSCSR_10HDX		0x1000	/* 10Mb/s HDX */
     61  1.1  thorpej #define	DSCSR_PHYAD		0x01f0	/* PHY address */
     62  1.1  thorpej #define	DSCSR_ANMB		0x000f	/* Autonegotiation monitor */
     63  1.1  thorpej 
     64  1.1  thorpej #define	ANMB_IDLE		0x0000	/* idle */
     65  1.1  thorpej #define	ANMB_AB_MATCH		0x0001	/* ability match */
     66  1.1  thorpej #define	ANMB_ACK_MATCH		0x0002	/* acknowledge match */
     67  1.1  thorpej #define	ANMB_ACK_MATCH_FAIL	0x0003	/* acknowledge match fail */
     68  1.1  thorpej #define	ANMB_CON_MATCH		0x0004	/* consistency match */
     69  1.1  thorpej #define	ANMB_CON_MATCH_FAIL	0x0005	/* consistency match fail */
     70  1.1  thorpej #define	ANMB_PAR_LINK		0x0006	/* par detect signal link ready */
     71  1.1  thorpej #define	ANMB_PAR_LINK_FAIL	0x0007	/* par detect signal link ready fail */
     72  1.1  thorpej #define	ANMB_ANEG_OK		0x0008	/* autonegotiation completed ok */
     73  1.1  thorpej 
     74  1.1  thorpej #define	MII_DMPHY_BTCSR		0x12	/* 10baseT Configuration/Status */
     75  1.1  thorpej #define	BTCSR_LP_EN		0x4000	/* link pulse enable */
     76  1.1  thorpej #define	BTCSR_HBE		0x2000	/* heartbeat enable */
     77  1.1  thorpej #define	BTCSR_JABEN		0x0800	/* jabber enable */
     78  1.1  thorpej #define	BTCSR_10BT_SER		0x0400	/* 10baseT serial mode */
     79  1.1  thorpej #define	BTCSR_POLR		0x0001	/* polarity reversed */
     80  1.1  thorpej 
     81  1.1  thorpej #endif /* _DEV_MII_DMPHYREG_H_ */
     82