/* * (C) Copyright 2010 * Michael Kurz . * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ #ifndef RTL8366_MII_H #define RTL8366_MII_H #define MII_CONTROL_REG 0 #define MII_STATUS_REG 1 #define MII_PHY_ID0 2 #define MII_PHY_ID1 3 #define MII_LOCAL_CAP 4 #define MII_REMOTE_CAP 5 #define MII_EXT_AUTONEG 6 #define MII_LOCAL_NEXT_PAGE 7 #define MII_REMOTE_NEXT_PAGE 8 #define MII_GIGA_CONTROL 9 #define MII_GIGA_STATUS 10 #define MII_EXT_STATUS_REG 15 /* Control register */ #define MII_CONTROL_1000MBPS 6 #define MII_CONTROL_COLL_TEST 7 #define MII_CONTROL_FULLDUPLEX 8 #define MII_CONTROL_RENEG 9 #define MII_CONTROL_ISOLATE 10 #define MII_CONTROL_POWERDOWN 11 #define MII_CONTROL_AUTONEG 12 #define MII_CONTROL_100MBPS 13 #define MII_CONTROL_LOOPBACK 14 #define MII_CONTROL_RESET 15 /* Status/Extended status register */ /* Basic status */ #define MII_STATUS_CAPABILITY 0 #define MII_STATUS_JABBER 1 #define MII_STATUS_LINK_UP 2 #define MII_STATUS_AUTONEG_ABLE 3 #define MII_STATUS_REMOTE_FAULT 4 #define MII_STATUS_AUTONEG_DONE 5 #define MII_STATUS_NO_PREAMBLE 6 #define MII_STATUS_RESERVED 7 #define MII_STATUS_EXTENDED 8 #define MII_STATUS_100_T2_HALF 9 #define MII_STATUS_100_T2_FULL 10 #define MII_STATUS_10_TX_HALF 11 #define MII_STATUS_10_TX_FULL 12 #define MII_STATUS_100_TX_HALF 13 #define MII_STATUS_100_TX_FULL 14 #define MII_STATUS_100_T4 15 #define MII_GIGA_CONTROL_HALF 8 #define MII_GIGA_CONTROL_FULL 9 #define MII_GIGA_STATUS_HALF 10 #define MII_GIGA_STATUS_FULL 11 /* Extended status */ #define MII_STATUS_1000_T_HALF 12 #define MII_STATUS_1000_T_FULL 13 #define MII_STATUS_1000_X_HALF 14 #define MII_STATUS_1000_X_FULL 15 /* Local/Remmote capability register */ #define MII_CAP_10BASE_TX 5 #define MII_CAP_10BASE_TX_FULL 6 #define MII_CAP_100BASE_TX 7 #define MII_CAP_100BASE_TX_FULL 8 #define MII_CAP_100BASE_T4 9 #define MII_CAP_SYMM_PAUSE 10 #define MII_CAP_ASYMM_PAUSE 11 #define MII_CAP_RESERVED 12 #define MII_CAP_REMOTE_FAULT 13 #define MII_CAP_ACKNOWLEDGE 14 #define MII_CAP_NEXT_PAGE 15 #define MII_CAP_IEEE_802_3 0x0001 #define MII_LINK_MODE_MASK 0x1f #define REALTEK_RTL8366_CHIP_ID0 0x001C #define REALTEK_RTL8366_CHIP_ID1 0xC940 #define REALTEK_RTL8366_CHIP_ID1_MP 0xC960 #define REALTEK_MIN_PORT_ID 0 #define REALTEK_MAX_PORT_ID 5 #define REALTEK_MIN_PHY_ID REALTEK_MIN_PORT_ID #define REALTEK_MAX_PHY_ID 4 #define REALTEK_CPU_PORT_ID REALTEK_MAX_PORT_ID #define REALTEK_PHY_PORT_MASK ((1<<(REALTEK_MAX_PHY_ID+1)) - (1<