summaryrefslogtreecommitdiffstats
path: root/sys/arm/freescale
diff options
context:
space:
mode:
authorian <ian@FreeBSD.org>2017-03-02 04:55:54 +0000
committerian <ian@FreeBSD.org>2017-03-02 04:55:54 +0000
commit2a45fddcce7f1a8c1d4991d9268c2ee089023225 (patch)
tree56fb1a3d2ff10cc8234c8e41b845719e32ead3a4 /sys/arm/freescale
parent6c815d79b139a562617910f5e9757c9e134fe4eb (diff)
downloadFreeBSD-src-2a45fddcce7f1a8c1d4991d9268c2ee089023225.zip
FreeBSD-src-2a45fddcce7f1a8c1d4991d9268c2ee089023225.tar.gz
MFC r312679:
Handle imx6 erratum ERR004346... to reboot, clear the SRS bit twice within the same cycle of the 32khz clock. I've never actually noticed this error happening, but it's an easy fix.
Diffstat (limited to 'sys/arm/freescale')
-rw-r--r--sys/arm/freescale/imx/imx_machdep.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/arm/freescale/imx/imx_machdep.c b/sys/arm/freescale/imx/imx_machdep.c
index 3c60714..12e4172 100644
--- a/sys/arm/freescale/imx/imx_machdep.c
+++ b/sys/arm/freescale/imx/imx_machdep.c
@@ -69,11 +69,18 @@ imx_wdog_cpu_reset(vm_offset_t wdcr_physaddr)
* Trigger an immediate reset by clearing the SRS bit in the watchdog
* control register. The reset happens on the next cycle of the wdog
* 32KHz clock, so hang out in a spin loop until the reset takes effect.
+ *
+ * Imx6 erratum ERR004346 says the SRS bit has to be cleared twice
+ * within the same cycle of the 32khz clock to reliably trigger the
+ * reset. Writing it 3 times in a row ensures at least 2 of the writes
+ * happen in the same 32k clock cycle.
*/
if ((pcr = devmap_ptov(wdcr_physaddr, sizeof(*pcr))) == NULL) {
printf("cpu_reset() can't find its control register... locking up now.");
} else {
*pcr &= ~WDOG_CR_SRS;
+ *pcr &= ~WDOG_CR_SRS;
+ *pcr &= ~WDOG_CR_SRS;
}
for (;;)
continue;
OpenPOWER on IntegriCloud