]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
spi: sprd: adi: Add a reset reason for factory test mode
authorSherry Zong <sherry.zong@unisoc.com>
Fri, 26 Jul 2019 07:20:50 +0000 (15:20 +0800)
committerMark Brown <broonie@kernel.org>
Fri, 26 Jul 2019 11:24:09 +0000 (12:24 +0100)
Add a new reset flag to indicate that the system need enter factory test
mode after restarting system.

Signed-off-by: Sherry Zong <sherry.zong@unisoc.com>
Signed-off-by: Baolin Wang <baolin.wang@linaro.org>
Link: https://lore.kernel.org/r/8ae5651e876b527920ff878721a8a8ef47b099ac.1564125131.git.baolin.wang@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-sprd-adi.c

index 0b3f23ad64794cd6c79f61cf5459474568154504..509ce6943adca41505867b630c87a4b49fbbc514 100644 (file)
@@ -98,6 +98,7 @@
 #define HWRST_STATUS_AUTODLOADER       0xa0
 #define HWRST_STATUS_IQMODE            0xb0
 #define HWRST_STATUS_SPRDISK           0xc0
+#define HWRST_STATUS_FACTORYTEST       0xe0
 
 /* Use default timeout 50 ms that converts to watchdog values */
 #define WDG_LOAD_VAL                   ((50 * 1000) / 32768)
@@ -339,6 +340,8 @@ static int sprd_adi_restart_handler(struct notifier_block *this,
                reboot_mode = HWRST_STATUS_SPRDISK;
        else if (!strncmp(cmd, "tospanic", 8))
                reboot_mode = HWRST_STATUS_SECURITY;
+       else if (!strncmp(cmd, "factorytest", 11))
+               reboot_mode = HWRST_STATUS_FACTORYTEST;
        else
                reboot_mode = HWRST_STATUS_NORMAL;