150461Swpaul/*	$NetBSD: tlphyreg.h,v 1.1 1998/08/10 23:59:58 thorpej Exp $	*/
250461Swpaul
3139749Simp/*-
450461Swpaul * Copyright (c) 1997 Manuel Bouyer.  All rights reserved.
550461Swpaul *
650461Swpaul * Redistribution and use in source and binary forms, with or without
750461Swpaul * modification, are permitted provided that the following conditions
850461Swpaul * are met:
950461Swpaul * 1. Redistributions of source code must retain the above copyright
1050461Swpaul *    notice, this list of conditions and the following disclaimer.
1150461Swpaul * 2. Redistributions in binary form must reproduce the above copyright
1250461Swpaul *    notice, this list of conditions and the following disclaimer in the
1350461Swpaul *    documentation and/or other materials provided with the distribution.
1450461Swpaul *
1550461Swpaul * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1650461Swpaul * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1750461Swpaul * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
1850461Swpaul * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
1950461Swpaul * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2050461Swpaul * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2150461Swpaul * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2250461Swpaul * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2350461Swpaul * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2450461Swpaul * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2550461Swpaul *
2650480Speter * $FreeBSD: releng/11.0/sys/dev/mii/tlphyreg.h 213188 2010-09-26 22:11:41Z marius $
2750461Swpaul */
2850461Swpaul
2950461Swpaul#ifndef _DEV_MII_TLPHYREG_H_
3050461Swpaul#define	_DEV_MII_TLPHYREG_H_
3150461Swpaul
3250461Swpaul/*
3350461Swpaul * Registers for the TI ThunderLAN internal PHY.
3450461Swpaul */
3550461Swpaul
3650461Swpaul#define	MII_TLPHY_ID	0x10	/* ThunderLAN PHY ID */
3750461Swpaul#define	ID_10BASETAUI	0x0001	/* 10baseT/AUI PHY */
3850461Swpaul
3950461Swpaul#define	MII_TLPHY_CTRL	0x11	/* Control regiseter */
4050461Swpaul#define	CTRL_ILINK	0x8000	/* Ignore link */
4150461Swpaul#define	CTRL_SWPOL	0x4000	/* swap polarity */
4250461Swpaul#define	CTRL_AUISEL	0x2000	/* Select AUI */
4350461Swpaul#define	CTRL_SQEEN	0x1000	/* Enable SQE */
4450461Swpaul#define	CTRL_NFEW	0x0004	/* Not far end wrap */
4550461Swpaul#define	CTRL_INTEN	0x0002	/* Interrupts enable */
4650461Swpaul#define	CTRL_TINT	0x0001	/* Test Interrupts */
4750461Swpaul
4850461Swpaul#define	MII_TLPHY_ST	0x12	/* Status register */
4950461Swpaul#define	ST_MII_INT	0x8000	/* MII interrupt */
5050461Swpaul#define	ST_PHOK		0x4000	/* Power high OK */
5150461Swpaul#define	ST_POLOK	0x2000	/* Polarity OK */
5250461Swpaul#define	ST_TPE		0x1000	/* Twisted pair energy */
5350461Swpaul
5450461Swpaul#endif /* _DEV_MII_TLPHYREG_H_ */
55