From 2708c81672f8d8be954afdf8d7187bae51d38a22 Mon Sep 17 00:00:00 2001 From: Romain Naour Date: Tue, 8 Oct 2024 09:54:26 +0200 Subject: [PATCH] net: ksz9477: add KSZ9896 switch support Add support for the KSZ9896 6-port Gigabit Ethernet Switch to the ksz9477 driver. The KSZ9896 is similar to KSZ9897 but has only one configurable MII/RMII/RGMII/GMII cpu port. Signed-off-by: Romain Naour --- drivers/net/ksz9477.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/net/ksz9477.c b/drivers/net/ksz9477.c index e67012a071..c8c6595d4a 100644 --- a/drivers/net/ksz9477.c +++ b/drivers/net/ksz9477.c @@ -541,6 +541,9 @@ static int ksz_i2c_probe(struct udevice *dev) case 0x00956700: puts("KSZ9567R: "); break; + case 0x00989600: + puts("KSZ9896C: "); + break; case 0x00989700: puts("KSZ9897S: "); break; @@ -576,6 +579,7 @@ static const struct udevice_id ksz_i2c_ids[] = { { .compatible = "microchip,ksz9477" }, { .compatible = "microchip,ksz9567" }, { .compatible = "microchip,ksz9893" }, + { .compatible = "microchip,ksz9896" }, { } }; -- 2.39.5