mx53evk: Use gpio_direction_input prior to gpio_get_value
[oweals/u-boot.git] / board / freescale / mx31pdk / mx31pdk.c
index 9f8bc53e711c02fd40ed9f2b58b35417a24a277a..1d7b4f6d99be9f43866d046ba6be2a00a4dab3de 100644 (file)
@@ -71,11 +71,19 @@ int board_early_init_f(void)
        return 0;
 }
 
+void enable_caches(void)
+{
+       icache_enable();
+       dcache_enable();
+}
+
 int board_init(void)
 {
        /* adress of boot parameters */
        gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
 
+       enable_caches();
+
        return 0;
 }