diff options
author | Chris Packham <chris.packham@alliedtelesis.co.nz> | 2024-06-11 07:34:14 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2024-06-15 03:41:59 +0200 |
commit | 9e42a2ea7f6703e2092c39171c2bf1fd7eec0bd3 (patch) | |
tree | d9d875ab0ba893550a0e22bd33961acbf3559aa2 /drivers/net/phy | |
parent | eth: lan966x: don't clear unsupported stats (diff) | |
download | linux-9e42a2ea7f6703e2092c39171c2bf1fd7eec0bd3.tar.xz linux-9e42a2ea7f6703e2092c39171c2bf1fd7eec0bd3.zip |
net: phy: realtek: add support for rtl8224 2.5Gbps PHY
The Realtek RTL8224 PHY is a 2.5Gbps capable PHY. It only uses the
clause 45 MDIO interface and can leverage the support that has already
been added for the other 822x PHYs.
Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Link: https://lore.kernel.org/r/20240611053415.2111723-1-chris.packham@alliedtelesis.co.nz
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/realtek.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/phy/realtek.c b/drivers/net/phy/realtek.c index 7ab41f95dae5..2174893c974f 100644 --- a/drivers/net/phy/realtek.c +++ b/drivers/net/phy/realtek.c @@ -1318,6 +1318,14 @@ static struct phy_driver realtek_drvs[] = { .read_page = rtl821x_read_page, .write_page = rtl821x_write_page, }, { + PHY_ID_MATCH_EXACT(0x001ccad0), + .name = "RTL8224 2.5Gbps PHY", + .get_features = rtl822x_c45_get_features, + .config_aneg = rtl822x_c45_config_aneg, + .read_status = rtl822x_c45_read_status, + .suspend = genphy_c45_pma_suspend, + .resume = rtlgen_c45_resume, + }, { PHY_ID_MATCH_EXACT(0x001cc961), .name = "RTL8366RB Gigabit Ethernet", .config_init = &rtl8366rb_config_init, |