diff options
Diffstat (limited to 'arch/arm/lib/reset.c')
-rw-r--r-- | arch/arm/lib/reset.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/arm/lib/reset.c b/arch/arm/lib/reset.c index 08e6acb2615..b0f3a5eca17 100644 --- a/arch/arm/lib/reset.c +++ b/arch/arm/lib/reset.c @@ -38,11 +38,17 @@ */ #include <common.h> - +#include <nand.h> int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { puts ("resetting ...\n"); +#ifdef CONFIG_OMAP3_LOGIC + /* Disable the in-chip ECC since reset doesn't cause the PoP NAND + * to internally reset */ + nand_disable_in_chip_ecc(); +#endif + udelay (50000); /* wait 50 ms */ disable_interrupts(); |