mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 17:28:15 +00:00
net: phy: realtek: Add support for RTL8211F(D)(I)-VD-CG
Add support for the RTL8211F(D)(I)-VD-CG PHY present on the i.MX93 EVK board. Signed-off-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
This commit is contained in:
parent
d5eae216d8
commit
f935716935
1 changed files with 14 additions and 0 deletions
|
@ -446,6 +446,20 @@ U_BOOT_PHY_DRIVER(rtl8211f) = {
|
|||
.writeext = &rtl8211f_phy_extwrite,
|
||||
};
|
||||
|
||||
/* Support for RTL8211F-VD PHY */
|
||||
U_BOOT_PHY_DRIVER(rtl8211fvd) = {
|
||||
.name = "RealTek RTL8211F-VD",
|
||||
.uid = 0x1cc878,
|
||||
.mask = 0xffffff,
|
||||
.features = PHY_GBIT_FEATURES,
|
||||
.probe = &rtl8211f_probe,
|
||||
.config = &rtl8211f_config,
|
||||
.startup = &rtl8211f_startup,
|
||||
.shutdown = &genphy_shutdown,
|
||||
.readext = &rtl8211f_phy_extread,
|
||||
.writeext = &rtl8211f_phy_extwrite,
|
||||
};
|
||||
|
||||
/* Support for RTL8201F PHY */
|
||||
U_BOOT_PHY_DRIVER(rtl8201f) = {
|
||||
.name = "RealTek RTL8201F 10/100Mbps Ethernet",
|
||||
|
|
Loading…
Reference in a new issue