summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-01-04 10:34:32 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2021-01-05 13:01:55 +0100
commitcada638c2f116ce79973824d3bf088799625f624 (patch)
tree4accd8d30f9f2d3221f65746886108fb323d0986 /arch/arm/mach-at91
parent3dabf45ec41774b3555ba4715cf93a203582f426 (diff)
downloadbarebox-cada638c2f116ce79973824d3bf088799625f624.tar.gz
barebox-cada638c2f116ce79973824d3bf088799625f624.tar.xz
ARM: at91: at91sam9x5: fix co-existance of erratum-aware and generic reset
We have a generic at91sam9 reset driver, but it's unaware of the erratum on the at91sam9x5, which can prevent reboot from NAND due to interference from SDRAM. The workaround is packing the powering down of the DDR and the system reset into a single cache line and executing that. This would be a bit tedious to add into the device tree probed driver, thus: - Don't activate the work around if we are device-tree enabled, but have a newer SoC - Give the workaround a slightly higher priority, so it's taken instead of the generic DT driver This fixes an issue of failing reset with the at91_multi_defconfig, because both reset drivers have the same priority of 100. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r--arch/arm/mach-at91/at91sam9x5.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/arm/mach-at91/at91sam9x5.c b/arch/arm/mach-at91/at91sam9x5.c
index 086e27a79f..8266b512c9 100644
--- a/arch/arm/mach-at91/at91sam9x5.c
+++ b/arch/arm/mach-at91/at91sam9x5.c
@@ -11,10 +11,17 @@ static void at91sam9x5_restart(struct restart_handler *rst)
IOMEM(AT91SAM9X5_BASE_RSTC + AT91_RSTC_CR));
}
+static struct restart_handler restart;
+
static int at91sam9x5_initialize(void)
{
- restart_handler_register_fn("soc", at91sam9x5_restart);
+ if (IS_ENABLED(CONFIG_OFDEVICE) && !of_machine_is_compatible("atmel,at91sam9x5"))
+ return 0;
+
+ restart.name = "soc";
+ restart.priority = 110;
+ restart.restart = at91sam9x5_restart;
- return 0;
+ return restart_handler_register(&restart);
}
coredevice_initcall(at91sam9x5_initialize);