]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
net: phy: aquantia: add support for Marvell CUX3410 10Gb PHY
authorWeijie Gao <weijie.gao@mediatek.com>
Tue, 27 Jan 2026 02:08:45 +0000 (10:08 +0800)
committerJerome Forissier <jerome.forissier@arm.com>
Wed, 4 Feb 2026 08:04:36 +0000 (09:04 +0100)
The CUX3410 is similar to AQR113C. The main difference is CUX3410 does not
support MACSEC.

Signed-off-by: Bo-Cun Chen <bc-bocun.chen@mediatek.com>
drivers/net/phy/aquantia.c

index e0deef58f52497b10c1babe30603686e07f0687a..10b87dfb8abaf23bce18329b78497b27fa0510b9 100644 (file)
@@ -714,3 +714,17 @@ U_BOOT_PHY_DRIVER(aqr412) = {
        .shutdown = &gen10g_shutdown,
        .data = AQUANTIA_GEN3,
 };
+
+U_BOOT_PHY_DRIVER(cux3410) = {
+       .name = "Marvell CUX3410",
+       .uid = 0x31c31dd3,
+       .mask = 0xfffffff0,
+       .features = PHY_10G_FEATURES,
+       .mmds = (MDIO_MMD_PMAPMD | MDIO_MMD_PCS |
+                MDIO_MMD_PHYXS | MDIO_MMD_AN |
+                MDIO_MMD_VEND1),
+       .config = &aquantia_config,
+       .startup = &aquantia_startup,
+       .shutdown = &gen10g_shutdown,
+       .data = AQUANTIA_GEN3,
+};