diff options
author | Justin Waters <justin.waters@timesys.com> | 2013-04-24 17:41:45 -0400 |
---|---|---|
committer | Justin Waters <justin.waters@timesys.com> | 2013-04-24 17:41:45 -0400 |
commit | 18282017b14c0b32b4aa6fd05df58ba5cff0b472 (patch) | |
tree | 24344ef4d64f38baee4f5b56a9b44cc775ab4b62 /arch/arm/lib/reset.c | |
parent | 75c641ece39c136001340df61f0ad57028ce4ffc (diff) |
LogicPD Support for OMAP3/DM3/AM3 boards 2.2 Update
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(); |