summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuuso Rinta <[email protected]>2026-05-04 12:36:58 +0300
committerStefan Roese <[email protected]>2026-06-09 11:51:19 +0200
commit9124bf185ba6206dd2286a78addd74a5449bd9c3 (patch)
treea4b725440826c96b6fbff5cdaaff8dde4e1fbaa3
parent1a489a1a4375237ce1cabf7f95e2c57506350e7f (diff)
watchdog: octeontx_wdt: fix DT matches to Marvell compatibles
The OcteonTX watchdog driver currently matches arm,sbsa-gwdt. On systems with multiple watchdog devices this can be ambiguous since arm,sbsa-gwdt is a generic SBSA binding. Replace the SBSA match with SoC-specific Marvell compatibles marvell,cn10624-wdt and marvell,cn9670-wdt. These compatibles align with the upstream Linux device tree binding: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/devicetree/bindings/watchdog/marvell,cn10624-wdt.yaml Reviewed-by: Aaro Koskinen <[email protected]> Signed-off-by: Juuso Rinta <[email protected]> Reviewed-by: Stefan Roese <[email protected]>
-rw-r--r--drivers/watchdog/octeontx_wdt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/watchdog/octeontx_wdt.c b/drivers/watchdog/octeontx_wdt.c
index c79d9539c13..7299a9f9739 100644
--- a/drivers/watchdog/octeontx_wdt.c
+++ b/drivers/watchdog/octeontx_wdt.c
@@ -159,7 +159,8 @@ static const struct octeontx_wdt_data octeon_data = {
};
static const struct udevice_id octeontx_wdt_ids[] = {
- { .compatible = "arm,sbsa-gwdt", .data = (ulong)&octeontx_data },
+ { .compatible = "marvell,cn10624-wdt", .data = (ulong)&octeontx_data },
+ { .compatible = "marvell,cn9670-wdt", .data = (ulong)&octeontx_data },
{ .compatible = "cavium,octeon-7890-ciu3", .data = (ulong)&octeon_data },
{}
};