diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-06 12:22:10 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-06 12:22:10 -0400 |
commit | efc0088f061e465abb1f83d3bb06296d2cdc535f (patch) | |
tree | 00cddfbed1cb9095ffe3a2b1651e455e7c520a42 /include | |
parent | 1311dd37ecf476be041d0452d4ee38619aadd5de (diff) | |
parent | 036e3622bf8394ff229ea0d348aa9a9a60e2c27a (diff) |
Merge branch 'network_master' of https://source.denx.de/u-boot/custodians/u-boot-net
Diffstat (limited to 'include')
-rw-r--r-- | include/phy.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/phy.h b/include/phy.h index 2754421ed4f..6b928636b6d 100644 --- a/include/phy.h +++ b/include/phy.h @@ -51,6 +51,10 @@ struct udevice; PHY_100BT_FEATURES | \ PHY_DEFAULT_FEATURES) +#define PHY_100BT1_FEATURES (SUPPORTED_TP | \ + SUPPORTED_MII | \ + SUPPORTED_100baseT_Full) + #define PHY_GBIT_FEATURES (PHY_BASIC_FEATURES | \ PHY_1000BT_FEATURES) @@ -523,6 +527,7 @@ int phy_micrel_ksz8xxx_init(void); int phy_micrel_ksz90x1_init(void); int phy_meson_gxl_init(void); int phy_natsemi_init(void); +int phy_nxp_tja11xx_init(void); int phy_realtek_init(void); int phy_smsc_init(void); int phy_teranetics_init(void); |