summaryrefslogtreecommitdiff
path: root/bootloader
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader')
-rw-r--r--bootloader/imx233.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/bootloader/imx233.c b/bootloader/imx233.c
index ebd67cea6c..79e5708bad 100644
--- a/bootloader/imx233.c
+++ b/bootloader/imx233.c
@@ -141,6 +141,11 @@ void main(uint32_t arg, uint32_t addr)
141 system_init(); 141 system_init();
142 kernel_init(); 142 kernel_init();
143 143
144 /* some ixm233 targets needs this because the cpu and/or memory is clocked
145 * at 24MHz, resulting in terribly slow boots and unusable usb mode.
146 * While we are at it, clock at maximum speed to minimise boot time. */
147 imx233_set_cpu_frequency(CPUFREQ_MAX);
148
144 power_init(); 149 power_init();
145 enable_irq(); 150 enable_irq();
146 151