From: Simon Glass Date: Thu, 28 Feb 2013 19:26:11 +0000 (+0000) Subject: x86: Add basic cache operations X-Git-Tag: v2013.04-rc2~95 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8937140957eb91060b766781bb3a9e2b191529a5;p=u-boot x86: Add basic cache operations At present most x86 cache operations are undefined. Add a basic implementation for these. Signed-off-by: Simon Glass --- diff --git a/arch/x86/cpu/cpu.c b/arch/x86/cpu/cpu.c index 6a23974ff5..1a2f85c1fe 100644 --- a/arch/x86/cpu/cpu.c +++ b/arch/x86/cpu/cpu.c @@ -228,3 +228,26 @@ void flush_dcache_range(unsigned long start, unsigned long stop) void invalidate_dcache_range(unsigned long start, unsigned long stop) { } + +void dcache_enable(void) +{ + enable_caches(); +} + +void dcache_disable(void) +{ + disable_caches(); +} + +void icache_enable(void) +{ +} + +void icache_disable(void) +{ +} + +int icache_status(void) +{ + return 1; +}