Skip to content
Snippets Groups Projects
Commit c6a40f6e authored by Luca Ellero's avatar Luca Ellero Committed by Joe Hershberger
Browse files

net: phy: micrel: add support for KSZ8081MNX


This patch adds a support for KSZ8081MNX in MII mode.

Signed-off-by: default avatarLuca Ellero <luca.ellero@brickedbrain.com>
Acked-by: default avatarPavel Machek <pavel@denx.de>
parent a095f047
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,16 @@ static struct phy_driver KSZ804_driver = {
.shutdown = &genphy_shutdown,
};
static struct phy_driver KSZ8081_driver = {
.name = "Micrel KSZ8081",
.uid = 0x221560,
.mask = 0xfffff0,
.features = PHY_BASIC_FEATURES,
.config = &genphy_config,
.startup = &genphy_startup,
.shutdown = &genphy_shutdown,
};
/**
* KSZ8895
*/
......@@ -272,6 +282,7 @@ static struct phy_driver ksz9031_driver = {
int phy_micrel_init(void)
{
phy_register(&KSZ804_driver);
phy_register(&KSZ8081_driver);
#ifdef CONFIG_PHY_MICREL_KSZ9021
phy_register(&ksz9021_driver);
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment