aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@armlinux.org.uk>2016-08-19 16:34:45 +0100
committerRussell King <rmk+kernel@armlinux.org.uk>2016-08-26 15:09:24 +0100
commitda60626e7d02a4f385cae80e450afc8b07035368 (patch)
tree20ae6b6ef2ac2ffb08a096dff763c302a2043f00
parentARM: 8600/1: Enforce some NS-SVC initialisation (diff)
downloadlinux-dev-da60626e7d02a4f385cae80e450afc8b07035368.tar.xz
linux-dev-da60626e7d02a4f385cae80e450afc8b07035368.zip
ARM: sa1100: clear reset status prior to reboot
Clear the current reset status prior to rebooting the platform. This adds the bit missing from 04fef228fb00 ("[ARM] pxa: introduce reset_status and clear_reset_status for driver's usage"). Fixes: 04fef228fb00 ("[ARM] pxa: introduce reset_status and clear_reset_status for driver's usage") Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
-rw-r--r--arch/arm/mach-sa1100/generic.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-sa1100/generic.c b/arch/arm/mach-sa1100/generic.c
index 2e2c35b8e0d4..3e09beddb6e8 100644
--- a/arch/arm/mach-sa1100/generic.c
+++ b/arch/arm/mach-sa1100/generic.c
@@ -34,6 +34,7 @@
#include <mach/hardware.h>
#include <mach/irqs.h>
+#include <mach/reset.h>
#include "generic.h"
#include <clocksource/pxa.h>
@@ -95,6 +96,8 @@ static void sa1100_power_off(void)
void sa11x0_restart(enum reboot_mode mode, const char *cmd)
{
+ clear_reset_status(RESET_STATUS_ALL);
+
if (mode == REBOOT_SOFT) {
/* Jump into ROM at address 0 */
soft_restart(0);