diff options
author | Neil Armstrong <narmstrong@baylibre.com> | 2017-10-18 10:02:10 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-11-17 07:44:13 -0500 |
commit | 8995a96d1d6760c930e37fc92fb718624f5d8fbf (patch) | |
tree | c9d5c60ce91091dfa6d5a1de484a545cd51c190d /include/phy.h | |
parent | 50a327ded68b7e675389ad284ea3f8c62e683bda (diff) | |
download | u-boot-8995a96d1d6760c930e37fc92fb718624f5d8fbf.tar.gz |
net: phy: Add Amlogic Meson GXL Internal PHY support
The Amlogic Meson GXL/GXM families embeds an internal RMII Ethernet PHY.
The PHY acts as a generic PHY but needs a slight configuration right
before it's configuration.
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Diffstat (limited to 'include/phy.h')
-rw-r--r-- | include/phy.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/phy.h b/include/phy.h index a0b1f12317..50f1e12f8c 100644 --- a/include/phy.h +++ b/include/phy.h @@ -268,6 +268,7 @@ int phy_lxt_init(void); int phy_marvell_init(void); 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_realtek_init(void); int phy_smsc_init(void); |