]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
power: reset: at91-reset: add support for sam9x60 SoC
authorNicolas Ferre <nicolas.ferre@microchip.com>
Wed, 6 Feb 2019 18:12:21 +0000 (19:12 +0100)
committerSebastian Reichel <sre@kernel.org>
Tue, 19 Feb 2019 23:41:01 +0000 (00:41 +0100)
Add support for additional reset causes and the proper compatibility
string for sam9x60 SoC. The restart function is the same as the samx7.

Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Reviewed-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/reset/at91-reset.c

index f44a9ffcc2ab32bb82344a5252e4738b36721e25..44ca983a49a1b32b8361c5bdd5fb4c3c337f4243 100644 (file)
@@ -44,6 +44,9 @@ enum reset_type {
        RESET_TYPE_WATCHDOG     = 2,
        RESET_TYPE_SOFTWARE     = 3,
        RESET_TYPE_USER         = 4,
+       RESET_TYPE_CPU_FAIL     = 6,
+       RESET_TYPE_XTAL_FAIL    = 7,
+       RESET_TYPE_ULP2         = 8,
 };
 
 static void __iomem *at91_ramc_base[2], *at91_rstc_base;
@@ -164,6 +167,15 @@ static void __init at91_reset_status(struct platform_device *pdev)
        case RESET_TYPE_USER:
                reason = "user reset";
                break;
+       case RESET_TYPE_CPU_FAIL:
+               reason = "CPU clock failure detection";
+               break;
+       case RESET_TYPE_XTAL_FAIL:
+               reason = "32.768 kHz crystal failure detection";
+               break;
+       case RESET_TYPE_ULP2:
+               reason = "ULP2 reset";
+               break;
        default:
                reason = "unknown reset";
                break;
@@ -183,6 +195,7 @@ static const struct of_device_id at91_reset_of_match[] = {
        { .compatible = "atmel,at91sam9g45-rstc", .data = at91sam9g45_restart },
        { .compatible = "atmel,sama5d3-rstc", .data = sama5d3_restart },
        { .compatible = "atmel,samx7-rstc", .data = samx7_restart },
+       { .compatible = "microchip,sam9x60-rstc", .data = samx7_restart },
        { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, at91_reset_of_match);