rockchip: Don't skip low-level init

At present the low-level init is skipped on rockchip. Among other things
this means that the instruction cache is left disabled. Fix this.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2016-01-21 19:45:06 -07:00
parent 7b7ad5c31c
commit ad443b7290
3 changed files with 8 additions and 1 deletions

View File

@ -45,3 +45,7 @@ void enable_caches(void)
dcache_enable();
}
#endif
void lowlevel_init(void)
{
}

View File

@ -270,3 +270,7 @@ err:
/* No way to report error here */
hang();
}
void lowlevel_init(void)
{
}

View File

@ -16,7 +16,6 @@
#define CONFIG_BAUDRATE 115200
#define CONFIG_SYS_MALLOC_LEN (32 << 20)
#define CONFIG_SYS_CBSIZE 1024
#define CONFIG_SKIP_LOWLEVEL_INIT
#define CONFIG_SYS_THUMB_BUILD
#define CONFIG_OF_LIBFDT
#define CONFIG_DISPLAY_BOARDINFO