summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233/system-imx233.c
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2014-02-10 22:28:46 +0100
committerAmaury Pouly <amaury.pouly@gmail.com>2014-02-10 23:14:26 +0100
commit935c0ad14a6f7840c12c3c7fd706e8166cd73f6a (patch)
tree80c764ee7e8759d8c7dabf8e95d636fc49769a4c /firmware/target/arm/imx233/system-imx233.c
parent34fb6906dd645688870ff137a3d94cb58abca120 (diff)
downloadrockbox-935c0ad14a6f7840c12c3c7fd706e8166cd73f6a.tar.gz
rockbox-935c0ad14a6f7840c12c3c7fd706e8166cd73f6a.zip
imx233: stop the watchdog before loading main firmware
Change-Id: I0a13444d6788a09b0fc04ed1a5115cb2e5fe6f57
Diffstat (limited to 'firmware/target/arm/imx233/system-imx233.c')
-rw-r--r--firmware/target/arm/imx233/system-imx233.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/firmware/target/arm/imx233/system-imx233.c b/firmware/target/arm/imx233/system-imx233.c
index 5298f7cff9..d5ed7fc774 100644
--- a/firmware/target/arm/imx233/system-imx233.c
+++ b/firmware/target/arm/imx233/system-imx233.c
@@ -197,6 +197,13 @@ void system_init(void)
197#endif 197#endif
198} 198}
199 199
200void system_prepare_fw_start(void)
201{
202 /* keep alive to get enough time, stop watchdog */
203 imx233_keep_alive();
204 imx233_rtc_enable_watchdog(false);
205}
206
200bool imx233_us_elapsed(uint32_t ref, unsigned us_delay) 207bool imx233_us_elapsed(uint32_t ref, unsigned us_delay)
201{ 208{
202 uint32_t cur = HW_DIGCTL_MICROSECONDS; 209 uint32_t cur = HW_DIGCTL_MICROSECONDS;