mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
net: phy: realtek: Add support for RTL8201F PHY module.
This patch adds support for Realtek PHY RTL8201F 10/100Mbs (with variants: RTL8201FN and RTL8201FL) PHYceiver. It is present on Actions Semi Cubieboard7 board. Signed-off-by: Amit Singh Tomar <amittomer25@gmail.com>
This commit is contained in:
parent
3a21734605
commit
b0778d9c2c
1 changed files with 20 additions and 0 deletions
|
@ -159,6 +159,14 @@ static int rtl8211x_config(struct phy_device *phydev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
/* RealTek RTL8201F */
|
||||
static int rtl8201f_config(struct phy_device *phydev)
|
||||
{
|
||||
genphy_config_aneg(phydev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int rtl8211f_config(struct phy_device *phydev)
|
||||
{
|
||||
u16 reg;
|
||||
|
@ -398,12 +406,24 @@ static struct phy_driver RTL8211F_driver = {
|
|||
.writeext = &rtl8211f_phy_extwrite,
|
||||
};
|
||||
|
||||
/* Support for RTL8201F PHY */
|
||||
static struct phy_driver RTL8201F_driver = {
|
||||
.name = "RealTek RTL8201F 10/100Mbps Ethernet",
|
||||
.uid = 0x1cc816,
|
||||
.mask = 0xffffff,
|
||||
.features = PHY_BASIC_FEATURES,
|
||||
.config = &rtl8201f_config,
|
||||
.startup = &rtl8211e_startup,
|
||||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
int phy_realtek_init(void)
|
||||
{
|
||||
phy_register(&RTL8211B_driver);
|
||||
phy_register(&RTL8211E_driver);
|
||||
phy_register(&RTL8211F_driver);
|
||||
phy_register(&RTL8211DN_driver);
|
||||
phy_register(&RTL8201F_driver);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue