]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
watchdog: apple: Add "apple,t8103-wdt" compatible
authorJanne Grunau <j@jannau.net>
Thu, 30 Apr 2026 21:34:43 +0000 (23:34 +0200)
committerTom Rini <trini@konsulko.com>
Tue, 12 May 2026 18:08:05 +0000 (12:08 -0600)
After discussion with the devicetree maintainers we agreed to not extend
lists with the generic compatible "apple,wdt" anymore [1]. Use
"apple,t8103-wdt" as base compatible as it is the SoC driver and
bindings were originally written for.
The t602x (M2 Pro/Max/Ultra) devicetrees submitted in [2] use this
compatible as fallback instead of "apple,wdt".

Link: https://lore.kernel.org/asahi/12ab93b7-1fc2-4ce0-926e-c8141cfe81bf@kernel.org/
Link: https://lore.kernel.org/asahi/20250828-dt-apple-t6020-v1-0-507ba4c4b98e@jannau.net/
Signed-off-by: Janne Grunau <j@jannau.net>
Reviewed-by: Stefan Roese <stefan.roese@mailbox.org>
Acked-by: Mark Kettenis <kettenis@openbsd.org>
drivers/watchdog/apple_wdt.c

index c7307f41cb74db62ef43766aa5880912dba04632..9e9989942162e189eb28765d1893481e88b37dd2 100644 (file)
@@ -78,6 +78,7 @@ static const struct wdt_ops apple_wdt_ops = {
 };
 
 static const struct udevice_id apple_wdt_ids[] = {
+       { .compatible = "apple,t8103-wdt" },
        { .compatible = "apple,wdt" },
        { /* sentinel */ }
 };