Re: [PATCH net-next v1 1/3] net: phy: realtek: add support for RTL8261CE_CG
From: Nicolai Buchwitz <nb@tipi-net.de>
Date: 2026-09-18 12:27:57
Also in:
lkml
On 16.9.2026 10:14, javen wrote:
quoted hunk ↗ jump to hunk
From: Javen Xu <redacted> Add support for RTL8261CE_CG, its phy id is 0x001cc899. RTL8261CE_CG share the same sub_phy_id and firmware with RTL8261C_CG. Signed-off-by: Javen Xu <redacted> --- drivers/net/phy/realtek/realtek_main.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+)diff --git a/drivers/net/phy/realtek/realtek_main.cb/drivers/net/phy/realtek/realtek_main.c index 97b0b67b9900..d0d09e8e8f5c 100644--- a/drivers/net/phy/realtek/realtek_main.c +++ b/drivers/net/phy/realtek/realtek_main.c@@ -257,6 +257,7 @@ #define RTL_8251B 0x001cc862 #define RTL_8261C 0x001cc890 #define RTL_8261C_CG 0x001cc898 +#define RTL_8261CE_CG 0x001cc899 #define RTL8261C_CE_MODEL 0x00 #define RTL8261D_MODEL 0x81@@ -3363,6 +3364,19 @@ static struct phy_driver realtek_drvs[] = { .soft_reset = genphy_c45_pma_soft_reset, .suspend = genphy_c45_pma_suspend, .resume = genphy_c45_pma_resume, + }, { + PHY_ID_MATCH_EXACT(RTL_8261CE_CG), + .name = "Realtek RTL8261CE 10Gbps PHY", + .probe = rtl8261x_probe, + .config_init = rtl8261x_config_init, + .get_features = rtl8261x_get_features, + .config_aneg = rtl8261x_config_aneg, + .read_status = rtl8261x_read_status, + .config_intr = rtl8261x_config_intr, + .handle_interrupt = rtl8261x_handle_interrupt, + .soft_reset = genphy_c45_pma_soft_reset, + .suspend = genphy_c45_pma_suspend, + .resume = genphy_c45_pma_resume, }, };
Reviewed-by: Nicolai Buchwitz <nb@tipi-net.de> Thanks, Nicolai