mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 16:10:58 +00:00
phy: Add support for Marvell 88E1118R
Marvell 88E1118R has different uid then 88E1118. Signed-off-by: Michal Simek <monstr@monstr.eu> CC: Andy Fleming <afleming@freescale.com> CC: Zang Roy-R61911 <tie-fei.zang@freescale.com> CC: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
776e66e8f1
commit
b4b81e83f5
1 changed files with 11 additions and 0 deletions
|
@ -425,6 +425,16 @@ static struct phy_driver M88E1118_driver = {
|
|||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver M88E1118R_driver = {
|
||||
.name = "Marvell 88E1118R",
|
||||
.uid = 0x1410e40,
|
||||
.mask = 0xffffff0,
|
||||
.features = PHY_GBIT_FEATURES,
|
||||
.config = &m88e1118_config,
|
||||
.startup = &m88e1118_startup,
|
||||
.shutdown = &genphy_shutdown,
|
||||
};
|
||||
|
||||
static struct phy_driver M88E1121R_driver = {
|
||||
.name = "Marvell 88E1121R",
|
||||
.uid = 0x1410cb0,
|
||||
|
@ -461,6 +471,7 @@ int phy_marvell_init(void)
|
|||
phy_register(&M88E1145_driver);
|
||||
phy_register(&M88E1121R_driver);
|
||||
phy_register(&M88E1118_driver);
|
||||
phy_register(&M88E1118R_driver);
|
||||
phy_register(&M88E1111S_driver);
|
||||
phy_register(&M88E1011S_driver);
|
||||
|
||||
|
|
Loading…
Reference in a new issue