ciphyreg.h revision 1.4
11.4Schs/* $NetBSD: ciphyreg.h,v 1.4 2006/03/12 22:41:41 chs Exp $ */
21.1Sjdolecek
31.1Sjdolecek/*-
41.1Sjdolecek * Copyright (c) 2004
51.1Sjdolecek *	Bill Paul <wpaul@windriver.com>.  All rights reserved.
61.1Sjdolecek *
71.1Sjdolecek * Redistribution and use in source and binary forms, with or without
81.1Sjdolecek * modification, are permitted provided that the following conditions
91.1Sjdolecek * are met:
101.1Sjdolecek * 1. Redistributions of source code must retain the above copyright
111.1Sjdolecek *    notice, this list of conditions and the following disclaimer.
121.1Sjdolecek * 2. Redistributions in binary form must reproduce the above copyright
131.1Sjdolecek *    notice, this list of conditions and the following disclaimer in the
141.1Sjdolecek *    documentation and/or other materials provided with the distribution.
151.1Sjdolecek * 3. All advertising materials mentioning features or use of this software
161.1Sjdolecek *    must display the following acknowledgement:
171.1Sjdolecek *	This product includes software developed by Bill Paul.
181.1Sjdolecek * 4. Neither the name of the author nor the names of any co-contributors
191.1Sjdolecek *    may be used to endorse or promote products derived from this software
201.1Sjdolecek *    without specific prior written permission.
211.1Sjdolecek *
221.1Sjdolecek * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
231.1Sjdolecek * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
241.1Sjdolecek * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
251.1Sjdolecek * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
261.1Sjdolecek * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
271.1Sjdolecek * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
281.1Sjdolecek * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
291.1Sjdolecek * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
301.1Sjdolecek * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
311.1Sjdolecek * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
321.1Sjdolecek * THE POSSIBILITY OF SUCH DAMAGE.
331.1Sjdolecek *
341.2Sperry * FreeBSD: src/sys/dev/mii/ciphyreg.h,v 1.2 2005/01/06 01:42:55 imp Exp
351.1Sjdolecek */
361.1Sjdolecek
371.1Sjdolecek#ifndef _DEV_MII_CIPHYREG_H_
381.1Sjdolecek#define	_DEV_MII_CIPHYREG_H_
391.1Sjdolecek
401.1Sjdolecek/*
411.1Sjdolecek * Register definitions for the Cicada CS8201 10/100/1000 gigE copper
421.1Sjdolecek * PHY, embedded within the VIA Networks VT6122 controller.
431.1Sjdolecek */
441.1Sjdolecek
451.1Sjdolecek/* Command register */
461.1Sjdolecek#define CIPHY_MII_BMCR		0x00
471.1Sjdolecek#define CIPHY_BMCR_RESET	0x8000
481.1Sjdolecek#define CIPHY_BMCR_LOOP		0x4000
491.1Sjdolecek#define CIPHY_BMCR_SPD0		0x2000	/* speed select, lower bit */
501.1Sjdolecek#define CIPHY_BMCR_AUTOEN	0x1000	/* Autoneg enabled */
511.1Sjdolecek#define CIPHY_BMCR_PDOWN	0x0800	/* Power down */
521.1Sjdolecek#define CIPHY_BMCR_STARTNEG	0x0200	/* Restart autoneg */
531.1Sjdolecek#define CIPHY_BMCR_FDX		0x0100	/* Duplex mode */
541.1Sjdolecek#define CIPHY_BMCR_CTEST	0x0080	/* Collision test enable */
551.1Sjdolecek#define CIPHY_BMCR_SPD1		0x0040	/* Speed select, upper bit */
561.1Sjdolecek
571.1Sjdolecek#define CIPHY_S1000		CIPHY_BMCR_SPD1	/* 1000mbps */
581.1Sjdolecek#define CIPHY_S100		CIPHY_BMCR_SPD0	/* 100mpbs */
591.1Sjdolecek#define CIPHY_S10		0		/* 10mbps */
601.1Sjdolecek
611.1Sjdolecek/* Status register */
621.1Sjdolecek#define CIPHY_MII_BMSR		0x01
631.1Sjdolecek#define CIPHY_BMSR_100T4	0x8000	/* 100 base T4 capable */
641.1Sjdolecek#define CIPHY_BMSR_100TXFDX	0x4000	/* 100 base Tx full duplex capable */
651.1Sjdolecek#define CIPHY_BMSR_100TXHDX	0x2000	/* 100 base Tx half duplex capable */
661.1Sjdolecek#define CIPHY_BMSR_10TFDX	0x1000	/* 10 base T full duplex capable */
671.1Sjdolecek#define CIPHY_BMSR_10THDX	0x0800	/* 10 base T half duplex capable */
681.1Sjdolecek#define CIPHY_BMSR_100T2FDX	0x0400	/* 100 base T2 full duplex capable */
691.1Sjdolecek#define CIPHY_BMSR_100T2HDX	0x0200	/* 100 base T2 half duplex capable */
701.1Sjdolecek#define CIPHY_BMSR_EXTSTS	0x0100	/* Extended status present */
711.1Sjdolecek#define CIPHY_BMSR_PRESUB	0x0040	/* Preamble surpression */
721.1Sjdolecek#define CIPHY_BMSR_ACOMP	0x0020	/* Autoneg complete */
731.1Sjdolecek#define CIPHY_BMSR_RFAULT	0x0010	/* Remote fault condition occured */
741.1Sjdolecek#define CIPHY_BMSR_ANEG		0x0008	/* Autoneg capable */
751.1Sjdolecek#define CIPHY_BMSR_LINK		0x0004	/* Link status */
761.1Sjdolecek#define CIPHY_BMSR_JABBER	0x0002	/* Jabber detected */
771.1Sjdolecek#define CIPHY_BMSR_EXT		0x0001	/* Extended capability */
781.1Sjdolecek
791.1Sjdolecek/* PHY ID registers */
801.1Sjdolecek#define CIPHY_MII_PHYIDR1	0x02
811.1Sjdolecek#define CIPHY_MII_PHYIDR2	0x03
821.1Sjdolecek
831.1Sjdolecek/* Autoneg advertisement */
841.1Sjdolecek#define CIPHY_MII_ANAR		0x04
851.1Sjdolecek#define CIPHY_ANAR_NP		0x8000	/* Next page */
861.1Sjdolecek#define CIPHY_ANAR_RF		0x2000	/* Remote fault */
871.1Sjdolecek#define CIPHY_ANAR_ASP		0x0800	/* Asymmetric Pause */
881.1Sjdolecek#define CIPHY_ANAR_PC		0x0400	/* Pause capable */
891.1Sjdolecek#define CIPHY_ANAR_T4		0x0200	/* local device supports 100bT4 */
901.1Sjdolecek#define CIPHY_ANAR_TX_FD	0x0100	/* local device supports 100bTx FD */
911.1Sjdolecek#define CIPHY_ANAR_TX		0x0080	/* local device supports 100bTx */
921.1Sjdolecek#define CIPHY_ANAR_10_FD	0x0040	/* local device supports 10bT FD */
931.1Sjdolecek#define CIPHY_ANAR_10		0x0020	/* local device supports 10bT */
941.1Sjdolecek#define CIPHY_ANAR_SEL		0x001F	/* selector field, 00001=Ethernet */
951.1Sjdolecek
961.1Sjdolecek/* Autoneg link partner ability */
971.1Sjdolecek#define CIPHY_MII_ANLPAR	0x05
981.1Sjdolecek#define CIPHY_ANLPAR_NP		0x8000	/* Next page */
991.1Sjdolecek#define CIPHY_ANLPAR_ACK	0x4000	/* link partner acknowledge */
1001.1Sjdolecek#define CIPHY_ANLPAR_RF		0x2000	/* Remote fault */
1011.1Sjdolecek#define CIPHY_ANLPAR_ASP	0x0800	/* Asymmetric Pause */
1021.1Sjdolecek#define CIPHY_ANLPAR_PC		0x0400	/* Pause capable */
1031.1Sjdolecek#define CIPHY_ANLPAR_T4		0x0200	/* link partner supports 100bT4 */
1041.1Sjdolecek#define CIPHY_ANLPAR_TX_FD	0x0100	/* link partner supports 100bTx FD */
1051.1Sjdolecek#define CIPHY_ANLPAR_TX		0x0080	/* link partner supports 100bTx */
1061.1Sjdolecek#define CIPHY_ANLPAR_10_FD	0x0040	/* link partner supports 10bT FD */
1071.1Sjdolecek#define CIPHY_ANLPAR_10		0x0020	/* link partner supports 10bT */
1081.1Sjdolecek#define CIPHY_ANLPAR_SEL	0x001F	/* selector field, 00001=Ethernet */
1091.1Sjdolecek
1101.1Sjdolecek#define CIPHY_SEL_TYPE		0x0001	/* ethernet */
1111.1Sjdolecek
1121.1Sjdolecek/* Antoneg expansion register */
1131.1Sjdolecek#define CIPHY_MII_ANER		0x06
1141.1Sjdolecek#define CIPHY_ANER_PDF		0x0010	/* Parallel detection fault */
1151.1Sjdolecek#define CIPHY_ANER_LPNP		0x0008	/* Link partner can next page */
1161.1Sjdolecek#define CIPHY_ANER_NP		0x0004	/* Local PHY can next page */
1171.1Sjdolecek#define CIPHY_ANER_RX		0x0002	/* Next page received */
1181.1Sjdolecek#define CIPHY_ANER_LPAN		0x0001 	/* Link partner autoneg capable */
1191.1Sjdolecek
1201.1Sjdolecek/* Autoneg next page transmit regisyer */
1211.1Sjdolecek#define CIPHY_MII_NEXTP		0x07
1221.1Sjdolecek#define CIPHY_NEXTP_MOREP	0x8000	/* More pages to follow */
1231.1Sjdolecek#define CIPHY_NEXTP_MESS	0x2000	/* 1 = message page, 0 = unformatted */
1241.1Sjdolecek#define CIPHY_NEXTP_ACK2	0x1000	/* MAC acknowledge */
1251.1Sjdolecek#define CIPHY_NEXTP_TOGGLE	0x0800	/* Toggle */
1261.1Sjdolecek#define CIPHY_NEXTP_CODE	0x07FF	/* Code bits */
1271.1Sjdolecek
1281.1Sjdolecek/* Autoneg link partner next page receive register */
1291.1Sjdolecek#define CIPHY_MII_NEXTP_LP	0x08
1301.1Sjdolecek#define CIPHY_NEXTPLP_MOREP	0x8000	/* More pages to follow */
1311.1Sjdolecek#define CIPHY_NEXTPLP_MESS	0x2000	/* 1 = message page, 0 = unformatted */
1321.1Sjdolecek#define CIPHY_NEXTPLP_ACK2	0x1000	/* MAC acknowledge */
1331.1Sjdolecek#define CIPHY_NEXTPLP_TOGGLE	0x0800	/* Toggle */
1341.1Sjdolecek#define CIPHY_NEXTPLP_CODE	0x07FF	/* Code bits */
1351.1Sjdolecek
1361.1Sjdolecek/* 1000BT control register */
1371.1Sjdolecek#define CIPHY_MII_1000CTL	0x09
1381.1Sjdolecek#define CIPHY_1000CTL_TST	0xE000	/* test modes */
1391.1Sjdolecek#define CIPHY_1000CTL_MSE	0x1000	/* Master/Slave manual enable */
1401.1Sjdolecek#define CIPHY_1000CTL_MSC	0x0800	/* Master/Slave select */
1411.1Sjdolecek#define CIPHY_1000CTL_RD	0x0400	/* Repeater/DTE */
1421.1Sjdolecek#define CIPHY_1000CTL_AFD	0x0200	/* Advertise full duplex */
1431.1Sjdolecek#define CIPHY_1000CTL_AHD	0x0100	/* Advertise half duplex */
1441.1Sjdolecek
1451.1Sjdolecek#define CIPHY_TEST_TX_JITTER			0x2000
1461.1Sjdolecek#define CIPHY_TEST_TX_JITTER_MASTER_MODE	0x4000
1471.1Sjdolecek#define CIPHY_TEST_TX_JITTER_SLAVE_MODE		0x6000
1481.1Sjdolecek#define CIPHY_TEST_TX_DISTORTION		0x8000
1491.1Sjdolecek
1501.1Sjdolecek/* 1000BT status register */
1511.1Sjdolecek#define CIPHY_MII_1000STS	0x0A
1521.1Sjdolecek#define CIPHY_1000STS_MSF	0x8000	/* Master/slave fault */
1531.1Sjdolecek#define CIPHY_1000STS_MSR	0x4000	/* Master/slave result */
1541.1Sjdolecek#define CIPHY_1000STS_LRS	0x2000	/* Local receiver status */
1551.1Sjdolecek#define CIPHY_1000STS_RRS	0x1000	/* Remote receiver status */
1561.1Sjdolecek#define CIPHY_1000STS_LPFD	0x0800	/* Link partner can FD */
1571.1Sjdolecek#define CIPHY_1000STS_LPHD	0x0400	/* Link partner can HD */
1581.1Sjdolecek#define CIPHY_1000STS_IEC	0x00FF	/* Idle error count */
1591.1Sjdolecek
1601.1Sjdolecek#define CIPHY_MII_EXTSTS	0x0F	/* Extended status */
1611.1Sjdolecek#define CIPHY_EXTSTS_X_FD_CAP	0x8000	/* 1000base-X FD capable */
1621.1Sjdolecek#define CIPHY_EXTSTS_X_HD_CAP	0x4000	/* 1000base-X HD capable */
1631.1Sjdolecek#define CIPHY_EXTSTS_T_FD_CAP	0x2000	/* 1000base-T FD capable */
1641.1Sjdolecek#define CIPHY_EXTSTS_T_HD_CAP	0x1000	/* 1000base-T HD capable */
1651.1Sjdolecek
1661.1Sjdolecek/* 1000BT status extension register #1 */
1671.1Sjdolecek#define CIPHY_MII_1000STS1	0x0F
1681.1Sjdolecek#define CIPHY_1000STS1_1000XFDX	0x8000	/* 1000baseX FDX capable */
1691.1Sjdolecek#define CIPHY_1000STS1_1000XHDX	0x4000	/* 1000baseX HDX capable */
1701.1Sjdolecek#define CIPHY_1000STS1_1000TFDX	0x2000	/* 1000baseT FDX capable */
1711.1Sjdolecek#define CIPHY_1000STS1_1000THDX	0x1000	/* 1000baseT HDX capable */
1721.1Sjdolecek
1731.1Sjdolecek/* Vendor-specific PHY registers */
1741.1Sjdolecek
1751.1Sjdolecek/* 100baseTX status extention register */
1761.1Sjdolecek#define CIPHY_MII_100STS	0x10
1771.1Sjdolecek#define CIPHY_100STS_DESLCK	0x8000	/* descrambler locked */
1781.1Sjdolecek#define CIPHY_100STS_LKCERR	0x4000	/* lock error detected/lock lost */
1791.1Sjdolecek#define CIPHY_100STS_DISC	0x2000	/* disconnect state */
1801.1Sjdolecek#define CIPHY_100STS_LINK	0x1000	/* current link state */
1811.1Sjdolecek#define CIPHY_100STS_RXERR	0x0800	/* receive error detected */
1821.1Sjdolecek#define CIPHY_100STS_TXERR	0x0400	/* transmit error detected */
1831.1Sjdolecek#define CIPHY_100STS_SSDERR	0x0200	/* false carrier error detected */
1841.1Sjdolecek#define CIPHY_100STS_ESDERR	0x0100	/* premature end of stream error */
1851.1Sjdolecek
1861.1Sjdolecek/* 1000BT status extention register #2 */
1871.1Sjdolecek#define CIPHY_MII_1000STS2	0x11
1881.1Sjdolecek#define CIPHY_1000STS2_DESLCK	0x8000	/* descrambler locked */
1891.1Sjdolecek#define CIPHY_1000STS2_LKCERR	0x4000	/* lock error detected/lock lost */
1901.1Sjdolecek#define CIPHY_1000STS2_DISC	0x2000	/* disconnect state */
1911.1Sjdolecek#define CIPHY_1000STS2_LINK	0x1000	/* current link state */
1921.1Sjdolecek#define CIPHY_1000STS2_RXERR	0x0800	/* receive error detected */
1931.1Sjdolecek#define CIPHY_1000STS2_TXERR	0x0400	/* transmit error detected */
1941.1Sjdolecek#define CIPHY_1000STS2_SSDERR	0x0200	/* false carrier error detected */
1951.1Sjdolecek#define CIPHY_1000STS2_ESDERR	0x0100	/* premature end of stream error */
1961.1Sjdolecek#define CIPHY_1000STS2_CARREXT	0x0080	/* carrier extention err detected */
1971.1Sjdolecek#define CIPHY_1000STS2_BCM5400	0x0040	/* non-complient BCM5400 detected */
1981.1Sjdolecek
1991.1Sjdolecek/* Bypass control register */
2001.1Sjdolecek#define CIPHY_MII_BYPASS	0x12
2011.1Sjdolecek#define CIPHY_BYPASS_TX		0x8000	/* transmit disable */
2021.1Sjdolecek#define CIPHY_BYPASS_4B5B	0x4000	/* bypass the 4B5B encoder */
2031.1Sjdolecek#define CIPHY_BYPASS_SCRAM	0x2000	/* bypass scrambler */
2041.1Sjdolecek#define CIPHY_BYPASS_DSCAM	0x1000	/* bypass descrambler */
2051.1Sjdolecek#define CIPHY_BYPASS_PCSRX	0x0800	/* bypass PCS receive */
2061.1Sjdolecek#define CIPHY_BYPASS_PCSTX	0x0400	/* bypass PCS transmit */
2071.1Sjdolecek#define CIPHY_BYPASS_LFI	0x0200	/* bypass LFI timer */
2081.1Sjdolecek#define CIPHY_BYPASS_TXCLK	0x0100	/* enable transmit clock on LED4 pin */
2091.1Sjdolecek#define CIPHY_BYPASS_BCM5400_F	0x0080	/* force BCM5400 detect */
2101.1Sjdolecek#define CIPHY_BYPASS_BCM5400	0x0040	/* bypass BCM5400 detect */
2111.1Sjdolecek#define CIPHY_BYPASS_PAIRSWAP	0x0020	/* disable automatic pair swap */
2121.1Sjdolecek#define CIPHY_BYPASS_POLARITY	0x0010	/* disable polarity correction */
2131.1Sjdolecek#define CIPHY_BYPASS_PARALLEL	0x0008	/* parallel detect enable */
2141.1Sjdolecek#define CIPHY_BYPASS_PULSE	0x0004	/* disable pulse shaping filter */
2151.1Sjdolecek#define CIPHY_BYPASS_1000BNP	0x0002	/* disable 1000BT next page exchange */
2161.1Sjdolecek
2171.1Sjdolecek/* RX error count register */
2181.1Sjdolecek#define CIPHY_MII_RXERR		0x13
2191.1Sjdolecek
2201.1Sjdolecek/* False carrier sense count register */
2211.1Sjdolecek#define CIPHY_MII_FCSERR	0x14
2221.1Sjdolecek
2231.1Sjdolecek/* Ddisconnect error counter */
2241.1Sjdolecek#define CIPHY_MII_DISCERR	0x15
2251.1Sjdolecek
2261.1Sjdolecek/* 10baseT control/status register */
2271.1Sjdolecek#define CIPHY_MII_10BTCSR	0x16
2281.1Sjdolecek#define CIPHY_10BTCSR_DLIT	0x8000	/* Disable data link integrity test */
2291.1Sjdolecek#define CIPHY_10BTCSR_JABBER	0x4000	/* Disable jabber detect */
2301.1Sjdolecek#define CIPHY_10BTCSR_ECHO	0x2000	/* Disable echo mode */
2311.1Sjdolecek#define CIPHY_10BTCSR_SQE	0x1000	/* Disable signal quality error */
2321.1Sjdolecek#define CIPHY_10BTCSR_SQUENCH	0x0C00	/* Squelch control */
2331.1Sjdolecek#define CIPHY_10BTCSR_EOFERR	0x0100	/* End of Frame error */
2341.1Sjdolecek#define CIPHY_10BTCSR_DISC	0x0080	/* Disconnect status */
2351.1Sjdolecek#define CIPHY_10BTCSR_LINK	0x0040	/* current link state */
2361.1Sjdolecek#define CIPHY_10BTCSR_ITRIM	0x0038	/* current reference trim */
2371.1Sjdolecek#define CIPHY_10BTCSR_CSR	0x0006	/* CSR behavior control */
2381.1Sjdolecek
2391.1Sjdolecek#define CIPHY_SQUELCH_300MV	0x0000
2401.1Sjdolecek#define CIPHY_SQUELCH_197MV	0x0400
2411.1Sjdolecek#define CIPHY_SQUELCH_450MV	0x0800
2421.1Sjdolecek#define CIPHY_SQUELCH_RSVD	0x0C00
2431.1Sjdolecek
2441.1Sjdolecek#define CIPHY_ITRIM_PLUS2	0x0000
2451.1Sjdolecek#define CIPHY_ITRIM_PLUS4	0x0008
2461.1Sjdolecek#define CIPHY_ITRIM_PLUS6	0x0010
2471.1Sjdolecek#define CIPHY_ITRIM_PLUS6_	0x0018
2481.1Sjdolecek#define CIPHY_ITRIM_MINUS4	0x0020
2491.1Sjdolecek#define CIPHY_ITRIM_MINUS4_	0x0028
2501.1Sjdolecek#define CIPHY_ITRIM_MINUS2	0x0030
2511.1Sjdolecek#define CIPHY_ITRIM_ZERO	0x0038
2521.1Sjdolecek
2531.1Sjdolecek/* Extended PHY control register #1 */
2541.1Sjdolecek#define CIPHY_MII_ECTL1		0x17
2551.1Sjdolecek#define CIPHY_ECTL1_ACTIPHY	0x0020	/* Enable ActiPHY power saving */
2561.4Schs#define CIPHY_ECTL1_IOVOL	0x0e00	/* MAC interface and I/O voltage select */
2571.4Schs#define CIPHY_ECTL1_INTSEL	0xf000	/* select MAC interface */
2581.4Schs
2591.4Schs#define CIPHY_IOVOL_3300MV	0x0000	/* 3.3V for I/O pins */
2601.4Schs#define CIPHY_IOVOL_2500MV	0x0200	/* 2.5V for I/O pins */
2611.4Schs
2621.4Schs#define CIPHY_INTSEL_GMII	0x0000	/* GMII/MII */
2631.4Schs#define CIPHY_INTSEL_RGMII	0x1000
2641.4Schs#define CIPHY_INTSEL_TBI	0x2000
2651.4Schs#define CIPHY_INTSEL_RTBI	0x3000
2661.1Sjdolecek
2671.1Sjdolecek/* Extended PHY control register #2 */
2681.1Sjdolecek#define CIPHY_MII_ECTL2		0x18
2691.1Sjdolecek#define CIPHY_ECTL2_ERATE	0xE000	/* 10/1000 edge rate control */
2701.1Sjdolecek#define CIPHY_ECTL2_VTRIM	0x1C00	/* voltage reference trim */
2711.1Sjdolecek#define CIPHY_ECTL2_CABLELEN	0x000E	/* Cable quality/length */
2721.1Sjdolecek#define CIPHY_ECTL2_ANALOGLOOP	0x0001	/* 1000BT analog loopback */
2731.1Sjdolecek
2741.1Sjdolecek#define CIPHY_CABLELEN_0TO10M		0x0000
2751.1Sjdolecek#define CIPHY_CABLELEN_10TO20M		0x0002
2761.1Sjdolecek#define CIPHY_CABLELEN_20TO40M		0x0004
2771.1Sjdolecek#define CIPHY_CABLELEN_40TO80M		0x0006
2781.1Sjdolecek#define CIPHY_CABLELEN_80TO100M		0x0008
2791.1Sjdolecek#define CIPHY_CABLELEN_100TO140M	0x000A
2801.1Sjdolecek#define CIPHY_CABLELEN_140TO180M	0x000C
2811.1Sjdolecek#define CIPHY_CABLELEN_OVER180M		0x000E
2821.1Sjdolecek
2831.1Sjdolecek/* Interrupt mask register */
2841.1Sjdolecek#define CIPHY_MII_IMR		0x19
2851.1Sjdolecek#define CIPHY_IMR_PINENABLE	0x8000	/* Interrupt pin enable */
2861.1Sjdolecek#define CIPHY_IMR_SPEED		0x4000	/* speed changed event */
2871.1Sjdolecek#define CIPHY_IMR_LINK		0x2000	/* link change/ActiPHY event */
2881.1Sjdolecek#define CIPHY_IMR_DPX		0x1000	/* duplex change event */
2891.1Sjdolecek#define CIPHY_IMR_ANEGERR	0x0800	/* autoneg error event */
2901.1Sjdolecek#define CIPHY_IMR_ANEGDONE	0x0400	/* autoneg done event */
2911.1Sjdolecek#define CIPHY_IMR_NPRX		0x0200	/* page received event */
2921.1Sjdolecek#define CIPHY_IMR_SYMERR	0x0100	/* symbol error event */
2931.1Sjdolecek#define CIPHY_IMR_LOCKERR	0x0080	/* descrambler lock lost event */
2941.1Sjdolecek#define CIPHY_IMR_XOVER		0x0040	/* MDI crossover change event */
2951.1Sjdolecek#define CIPHY_IMR_POLARITY	0x0020	/* polarity change event */
2961.1Sjdolecek#define CIPHY_IMR_JABBER	0x0010	/* jabber detect event */
2971.1Sjdolecek#define CIPHY_IMR_SSDERR	0x0008	/* false carrier detect event */
2981.1Sjdolecek#define CIPHY_IMR_ESDERR	0x0004	/* parallel detect error event */
2991.1Sjdolecek#define CIPHY_IMR_MASTERSLAVE	0x0002	/* master/slave resolve done event */
3001.1Sjdolecek#define CIPHY_IMR_RXERR		0x0001	/* RX error event */
3011.1Sjdolecek
3021.1Sjdolecek/* Interrupt status register */
3031.1Sjdolecek#define CIPHY_MII_ISR		0x1A
3041.1Sjdolecek#define CIPHY_ISR_IPENDING	0x8000	/* Interrupt is pending */
3051.1Sjdolecek#define CIPHY_ISR_SPEED		0x4000	/* speed changed event */
3061.1Sjdolecek#define CIPHY_ISR_LINK		0x2000	/* link change/ActiPHY event */
3071.1Sjdolecek#define CIPHY_ISR_DPX		0x1000	/* duplex change event */
3081.1Sjdolecek#define CIPHY_ISR_ANEGERR	0x0800	/* autoneg error event */
3091.1Sjdolecek#define CIPHY_ISR_ANEGDONE	0x0400	/* autoneg done event */
3101.1Sjdolecek#define CIPHY_ISR_NPRX		0x0200	/* page received event */
3111.1Sjdolecek#define CIPHY_ISR_SYMERR	0x0100	/* symbol error event */
3121.1Sjdolecek#define CIPHY_ISR_LOCKERR	0x0080	/* descrambler lock lost event */
3131.1Sjdolecek#define CIPHY_ISR_XOVER		0x0040	/* MDI crossover change event */
3141.1Sjdolecek#define CIPHY_ISR_POLARITY	0x0020	/* polarity change event */
3151.1Sjdolecek#define CIPHY_ISR_JABBER	0x0010	/* jabber detect event */
3161.1Sjdolecek#define CIPHY_ISR_SSDERR	0x0008	/* false carrier detect event */
3171.1Sjdolecek#define CIPHY_ISR_ESDERR	0x0004	/* parallel detect error event */
3181.1Sjdolecek#define CIPHY_ISR_MASTERSLAVE	0x0002	/* master/slave resolve done event */
3191.1Sjdolecek#define CIPHY_ISR_RXERR		0x0001	/* RX error event */
3201.1Sjdolecek
3211.1Sjdolecek/* LED control register */
3221.1Sjdolecek#define CIPHY_MII_LED		0x1B
3231.1Sjdolecek#define CIPHY_LED_LINK10FORCE	0x8000	/* Force on link10 LED */
3241.1Sjdolecek#define CIPHY_LED_LINK10DIS	0x4000	/* Disable link10 LED */
3251.1Sjdolecek#define CIPHY_LED_LINK100FORCE	0x2000	/* Force on link10 LED */
3261.1Sjdolecek#define CIPHY_LED_LINK100DIS	0x1000	/* Disable link100 LED */
3271.1Sjdolecek#define CIPHY_LED_LINK1000FORCE	0x0800	/* Force on link1000 LED */
3281.1Sjdolecek#define CIPHY_LED_LINK1000DIS	0x0400	/* Disable link1000 LED */
3291.1Sjdolecek#define CIPHY_LED_FDXFORCE	0x0200	/* Force on duplex LED */
3301.1Sjdolecek#define CIPHY_LED_FDXDIS	0x0100	/* Disable duplex LED */
3311.1Sjdolecek#define CIPHY_LED_ACTFORCE	0x0080	/* Force on activity LED */
3321.1Sjdolecek#define CIPHY_LED_ACTDIS	0x0040	/* Disable activity LED */
3331.1Sjdolecek#define CIPHY_LED_PULSE		0x0008	/* LED pulse enable */
3341.1Sjdolecek#define CIPHY_LED_LINKACTBLINK	0x0004	/* enable link/activity LED blink */
3351.1Sjdolecek#define CIPHY_LED_BLINKRATE	0x0002	/* blink rate 0=10hz, 1=5hz */
3361.1Sjdolecek
3371.1Sjdolecek/* Auxilliary control and status register */
3381.1Sjdolecek#define CIPHY_MII_AUXCSR	0x1C
3391.1Sjdolecek#define CIPHY_AUXCSR_ANEGDONE	0x8000	/* Autoneg complete */
3401.1Sjdolecek#define CIPHY_AUXCSR_ANEGOFF	0x4000	/* Autoneg disabled */
3411.1Sjdolecek#define CIPHY_AUXCSR_XOVER	0x2000	/* MDI/MDI-X crossover indication */
3421.1Sjdolecek#define CIPHY_AUXCSR_PAIRSWAP	0x1000	/* pair swap indication */
3431.1Sjdolecek#define CIPHY_AUXCSR_APOLARITY	0x0800	/* polarity inversion pair A */
3441.1Sjdolecek#define CIPHY_AUXCSR_BPOLARITY	0x0400	/* polarity inversion pair B */
3451.1Sjdolecek#define CIPHY_AUXCSR_CPOLARITY	0x0200	/* polarity inversion pair C */
3461.1Sjdolecek#define CIPHY_AUXCSR_DPOLARITY	0x0100	/* polarity inversion pair D */
3471.1Sjdolecek#define CIPHY_AUXCSR_FDX	0x0020	/* duplex 1=full, 0=half */
3481.1Sjdolecek#define CIPHY_AUXCSR_SPEED	0x0018	/* speed */
3491.1Sjdolecek#define CIPHY_AUXCSR_MDPPS	0x0004	/* No idea, not documented */
3501.1Sjdolecek#define CIPHY_AUXCSR_STICKYREST 0x0002	/* reset clears sticky bits */
3511.1Sjdolecek
3521.1Sjdolecek#define CIPHY_SPEED10		0x0000
3531.1Sjdolecek#define CIPHY_SPEED100		0x0008
3541.1Sjdolecek#define CIPHY_SPEED1000		0x0010
3551.1Sjdolecek
3561.1Sjdolecek/* Delay skew status register */
3571.1Sjdolecek#define CIPHY_MII_DSKEW		0x1D
3581.1Sjdolecek#define CIPHY_DSKEW_PAIRA	0x7000	/* Pair A skew in symbol times */
3591.1Sjdolecek#define CIPHY_DSKEW_PAIRB	0x0700	/* Pair B skew in symbol times */
3601.1Sjdolecek#define CIPHY_DSKEW_PAIRC	0x0070	/* Pair C skew in symbol times */
3611.1Sjdolecek#define CIPHY_DSKEW_PAIRD	0x0007	/* Pair D skew in symbol times */
3621.1Sjdolecek
3631.1Sjdolecek#endif /* _DEV_CIPHY_MIIREG_H_ */
364