From: Greg Ungerer <g...@uclinux.org> Add a base set of bit definitions for the standard MII phy "Auto-Negotiation Link Partner Ability Register" (ANLPAR).
The original definitions moved into mii.h from the allwinner_emac driver did not define these. Signed-off-by: Greg Ungerer <g...@uclinux.org> --- include/hw/net/mii.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/hw/net/mii.h b/include/hw/net/mii.h index 4d93114..cd2a4e2 100644 --- a/include/hw/net/mii.h +++ b/include/hw/net/mii.h @@ -57,6 +57,13 @@ #define MII_ANAR_10 (1 << 5) #define MII_ANAR_CSMACD (1 << 0) +#define MII_ANLPAR_ACK (1 << 14) +#define MII_ANLPAR_TXFD (1 << 8) +#define MII_ANLPAR_TX (1 << 7) +#define MII_ANLPAR_10FD (1 << 6) +#define MII_ANLPAR_10 (1 << 5) +#define MII_ANLPAR_CSMACD (1 << 0) + /* List of vendor identifiers */ #define RTL8201CP_PHYID1 0x0000 #define RTL8201CP_PHYID2 0x8201 -- 1.9.1