2 * include/asm-blackfin/cache.h
4 #ifndef __ARCH_BLACKFIN_CACHE_H
5 #define __ARCH_BLACKFIN_CACHE_H
8 * Bytes per L1 cache line
9 * Blackfin loads 32 bytes for cache
11 #define L1_CACHE_SHIFT 5
12 #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
13 #define SMP_CACHE_BYTES L1_CACHE_BYTES
16 #define __cacheline_aligned
18 #define ____cacheline_aligned
21 * Put cacheline_aliged data to L1 data memory
23 #ifdef CONFIG_CACHELINE_ALIGNED_L1
24 #define __cacheline_aligned \
25 __attribute__((__aligned__(L1_CACHE_BYTES), \
26 __section__(".data_l1.cacheline_aligned")))
32 * largest L1 which this arch supports
34 #define L1_CACHE_SHIFT_MAX 5
36 #if defined(CONFIG_SMP) && \
37 !defined(CONFIG_BFIN_CACHE_COHERENT) && \
38 defined(CONFIG_BFIN_DCACHE)
39 #define __ARCH_SYNC_CORE_DCACHE
41 asmlinkage void __raw_smp_mark_barrier_asm(void);
42 asmlinkage void __raw_smp_check_barrier_asm(void);
44 static inline void smp_mark_barrier(void)
46 __raw_smp_mark_barrier_asm();
48 static inline void smp_check_barrier(void)
50 __raw_smp_check_barrier_asm();
53 void resync_core_dcache(void);