]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/blackfin/include/asm/cache.h
Blackfin: use atomic kmalloc in L1 alloc so it too can be atomic
[net-next-2.6.git] / arch / blackfin / include / asm / cache.h
CommitLineData
1394f032 1/*
96f1050d
RG
2 * Copyright 2004-2009 Analog Devices Inc.
3 *
4 * Licensed under the GPL-2 or later.
1394f032 5 */
96f1050d 6
1394f032
BW
7#ifndef __ARCH_BLACKFIN_CACHE_H
8#define __ARCH_BLACKFIN_CACHE_H
9
10/*
11 * Bytes per L1 cache line
12 * Blackfin loads 32 bytes for cache
13 */
14#define L1_CACHE_SHIFT 5
15#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
16#define SMP_CACHE_BYTES L1_CACHE_BYTES
17
6b3087c6
GY
18#ifdef CONFIG_SMP
19#define __cacheline_aligned
20#else
21#define ____cacheline_aligned
22
1394f032
BW
23/*
24 * Put cacheline_aliged data to L1 data memory
25 */
26#ifdef CONFIG_CACHELINE_ALIGNED_L1
27#define __cacheline_aligned \
28 __attribute__((__aligned__(L1_CACHE_BYTES), \
29 __section__(".data_l1.cacheline_aligned")))
30#endif
31
6b3087c6
GY
32#endif
33
1394f032
BW
34/*
35 * largest L1 which this arch supports
36 */
37#define L1_CACHE_SHIFT_MAX 5
38
6b3087c6 39#if defined(CONFIG_SMP) && \
47e9dedb 40 !defined(CONFIG_BFIN_CACHE_COHERENT)
19a3b603 41# if defined(CONFIG_BFIN_EXTMEM_ICACHEABLE) || defined(CONFIG_BFIN_L2_ICACHEABLE)
47e9dedb
SZ
42# define __ARCH_SYNC_CORE_ICACHE
43# endif
19a3b603 44# if defined(CONFIG_BFIN_EXTMEM_DCACHEABLE) || defined(CONFIG_BFIN_L2_DCACHEABLE)
47e9dedb
SZ
45# define __ARCH_SYNC_CORE_DCACHE
46# endif
6b3087c6
GY
47#ifndef __ASSEMBLY__
48asmlinkage void __raw_smp_mark_barrier_asm(void);
49asmlinkage void __raw_smp_check_barrier_asm(void);
50
51static inline void smp_mark_barrier(void)
52{
53 __raw_smp_mark_barrier_asm();
54}
55static inline void smp_check_barrier(void)
56{
57 __raw_smp_check_barrier_asm();
58}
59
60void resync_core_dcache(void);
47e9dedb 61void resync_core_icache(void);
6b3087c6
GY
62#endif
63#endif
64
65
1394f032 66#endif