i96-uboot/arch/arm/cpu/arm926ejs/rda/cpu.c

13 lines
191 B
C

#include <common.h>
#include <asm/arch/hardware.h>
void enable_caches(void)
{
#ifndef CONFIG_SYS_ICACHE_OFF
icache_enable();
#endif
#ifndef CONFIG_SYS_DCACHE_OFF
dcache_enable();
#endif
}