Skip to content
Snippets Groups Projects
Forked from Reform / reform-boundary-uboot
Source project has a limited visibility.
  • Wu, Josh's avatar
    633b6cce
    ARM: cache: implement a default weak flush_cache() function · 633b6cce
    Wu, Josh authored
    
    Current many cpu use the same flush_cache() function, which just call
    the flush_dcache_range().
    So implement a weak flush_cache() for all the cpus to use.
    
    In original weak flush_cache() in arch/arm/lib/cache.c, there has some
    code for ARM1136 & ARM926ejs. But in the arch/arm/cpu/arm1136/cpu.c and
    arch/arm/cpu/arm926ejs/cache.c, there implements a real flush_cache()
    function as well. That means the original code for ARM1136 & ARM926ejs
    in weak flush_cache() of arch/arm/lib/cache.c is totally useless.
    
    So in this patch remove such code in flush_cache() and only call
    flush_dcache_range().
    
    Signed-off-by: default avatarJosh Wu <josh.wu@atmel.com>
    633b6cce
    History
    ARM: cache: implement a default weak flush_cache() function
    Wu, Josh authored
    
    Current many cpu use the same flush_cache() function, which just call
    the flush_dcache_range().
    So implement a weak flush_cache() for all the cpus to use.
    
    In original weak flush_cache() in arch/arm/lib/cache.c, there has some
    code for ARM1136 & ARM926ejs. But in the arch/arm/cpu/arm1136/cpu.c and
    arch/arm/cpu/arm926ejs/cache.c, there implements a real flush_cache()
    function as well. That means the original code for ARM1136 & ARM926ejs
    in weak flush_cache() of arch/arm/lib/cache.c is totally useless.
    
    So in this patch remove such code in flush_cache() and only call
    flush_dcache_range().
    
    Signed-off-by: default avatarJosh Wu <josh.wu@atmel.com>