Lines Matching refs:end
31 static inline void clear_cf_icache(unsigned long start, unsigned long end) in clear_cf_icache() argument
40 static inline void clear_cf_dcache(unsigned long start, unsigned long end) in clear_cf_dcache() argument
49 static inline void clear_cf_bcache(unsigned long start, unsigned long end) in clear_cf_bcache() argument
62 static inline void flush_cf_icache(unsigned long start, unsigned long end) in flush_cf_icache() argument
66 for (set = start; set <= end; set += (0x10 - 3)) { in flush_cf_icache()
80 static inline void flush_cf_dcache(unsigned long start, unsigned long end) in flush_cf_dcache() argument
84 for (set = start; set <= end; set += (0x10 - 3)) { in flush_cf_dcache()
98 static inline void flush_cf_bcache(unsigned long start, unsigned long end) in flush_cf_bcache() argument
102 for (set = start; set <= end; set += (0x10 - 3)) { in flush_cf_bcache()
193 #define flush_cache_vmap(start, end) flush_cache_all() argument
194 #define flush_cache_vmap_early(start, end) do { } while (0) argument
195 #define flush_cache_vunmap(start, end) flush_cache_all() argument
209 unsigned long end) in flush_cache_range() argument
227 unsigned long addr, start, end; in __flush_pages_to_ram() local
230 end = (addr + nr * PAGE_SIZE - 1) & ICACHE_SET_MASK; in __flush_pages_to_ram()
231 if (start > end) { in __flush_pages_to_ram()
232 flush_cf_bcache(0, end); in __flush_pages_to_ram()
233 end = ICACHE_MAX_ADDR; in __flush_pages_to_ram()
235 flush_cf_bcache(start, end); in __flush_pages_to_ram()