]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
watchdog: meson-wdt: add support for the watchdog on Meson8 and Meson8m2
authorMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Tue, 11 Jul 2017 22:14:38 +0000 (00:14 +0200)
committerWim Van Sebroeck <wim@iguana.be>
Sat, 9 Sep 2017 18:14:01 +0000 (20:14 +0200)
The watchdog IP block on Meson8 and Meson8m2 is already supported by the
existing meson-wdt driver. Meson8 uses the same register bits as Meson6,
while the newer Meson8m2 SoC uses the same register bits as Meson8b.

Currently watchdog support on Meson8 SoC already works because
meson8.dtsi simply uses the "amlogic,meson6-wdt" compatible. Adding a
separate compatible for Meson8 makes this more explicit though.

Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Documentation/devicetree/bindings/watchdog/meson-wdt.txt
drivers/watchdog/meson_wdt.c

index ae70185d96e645df9ad6a97b9d5e2faa45bd5743..8a6d84cb36c96521a74d3d8b12aae1f4fd1a97f6 100644 (file)
@@ -2,7 +2,11 @@ Meson SoCs Watchdog timer
 
 Required properties:
 
-- compatible : should be "amlogic,meson6-wdt" or "amlogic,meson8b-wdt"
+- compatible : depending on the SoC this should be one of:
+       "amlogic,meson6-wdt" on Meson6 SoCs
+       "amlogic,meson8-wdt" and "amlogic,meson6-wdt" on Meson8 SoCs
+       "amlogic,meson8b-wdt" on Meson8b SoCs
+       "amlogic,meson8m2-wdt" and "amlogic,meson8b-wdt" on Meson8m2 SoCs
 - reg : Specifies base physical address and size of the registers.
 
 Example:
index 491b9bf13d849d2f2bc578538e113073b757f70f..304274c67735440b6360a4097fe8f09bb04a43ce 100644 (file)
@@ -155,7 +155,9 @@ static const struct watchdog_ops meson_wdt_ops = {
 
 static const struct of_device_id meson_wdt_dt_ids[] = {
        { .compatible = "amlogic,meson6-wdt", .data = &meson6_wdt_data },
+       { .compatible = "amlogic,meson8-wdt", .data = &meson6_wdt_data },
        { .compatible = "amlogic,meson8b-wdt", .data = &meson8b_wdt_data },
+       { .compatible = "amlogic,meson8m2-wdt", .data = &meson8b_wdt_data },
        { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, meson_wdt_dt_ids);