]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
mx6: Fix reset cause for Power On Reset case
authorFabio Estevam <fabio.estevam@freescale.com>
Tue, 13 Mar 2012 07:26:48 +0000 (07:26 +0000)
committerStefano Babic <sbabic@denx.de>
Tue, 27 Mar 2012 07:41:16 +0000 (09:41 +0200)
After booting mx6qsabrelite from POR the following is reported:

CPU:   Freescale i.MX61 family rev1.0 at 792 MHz
Reset cause: unknown reset

This is because both the POR and WDOG bits are set after reset.

Fix this by also checking both bits in the POR case.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
arch/arm/cpu/armv7/imx-common/cpu.c

index 1e30ae501a127e448bf733a563a169c52acc6d9e..6d7486b47b5600b8de23deebce3b1364d9c7a647 100644 (file)
@@ -44,6 +44,7 @@ static char *get_reset_cause(void)
 
        switch (cause) {
        case 0x00001:
+       case 0x00011:
                return "POR";
        case 0x00004:
                return "CSU";