]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
Fix boot from NOR due to incorrect reset delay.
authorStelian Pop <stelian@popies.net>
Wed, 21 May 2008 22:15:40 +0000 (00:15 +0200)
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Sat, 5 Jul 2008 15:32:22 +0000 (17:32 +0200)
commit19bd688484322fe62d1a66c8299da6ff9e967ff9
tree81845ce540644642eefb8674d9b3dc5282ec6020
parenta524e112b424c6843800ea2f19d3a8cf01d0aa94
Fix boot from NOR due to incorrect reset delay.

AT91 RSTC registers are battery-backuped, so their values
are not reset across power cycles. One of those registers,
the AT91_RSTC_MR register, is being modified by U-Boot, in
the ethernet initialisation routine, to generate a 500ms
user reset.

Unfortunately, this value is not being restored afterwards,
causing subsequent resets to also last for 500ms.

This long reset sequence causes problems (at least) in the
boot sequence from NOR: by the time the CPU tries to load
a program from the NOR flash, the latter is still in reset
and not yet available.

Additionaly, this patch fixes a bug in the original code which
caused the reset delay to last for 2s instead of 500ms.

Signed-off-by: Stelian Pop <stelian@popies.net>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
board/atmel/at91cap9adk/at91cap9adk.c
board/atmel/at91sam9260ek/at91sam9260ek.c
board/atmel/at91sam9263ek/at91sam9263ek.c