Lines Matching refs:start
30 static inline void clear_cf_icache(unsigned long start, unsigned long end) in clear_cf_icache() argument
39 static inline void clear_cf_dcache(unsigned long start, unsigned long end) in clear_cf_dcache() argument
48 static inline void clear_cf_bcache(unsigned long start, unsigned long end) in clear_cf_bcache() argument
61 static inline void flush_cf_icache(unsigned long start, unsigned long end) in flush_cf_icache() argument
65 for (set = start; set <= end; set += (0x10 - 3)) { in flush_cf_icache()
79 static inline void flush_cf_dcache(unsigned long start, unsigned long end) in flush_cf_dcache() argument
83 for (set = start; set <= end; set += (0x10 - 3)) { in flush_cf_dcache()
97 static inline void flush_cf_bcache(unsigned long start, unsigned long end) in flush_cf_bcache() argument
101 for (set = start; set <= end; set += (0x10 - 3)) { in flush_cf_bcache()
192 #define flush_cache_vmap(start, end) flush_cache_all() argument
193 #define flush_cache_vunmap(start, end) flush_cache_all() argument
206 unsigned long start, in flush_cache_range() argument
225 unsigned long addr, start, end; in __flush_page_to_ram() local
227 start = addr & ICACHE_SET_MASK; in __flush_page_to_ram()
229 if (start > end) { in __flush_page_to_ram()
233 flush_cf_bcache(start, end); in __flush_page_to_ram()