summaryrefslogtreecommitdiff
path: root/xen/arch/arm/include/asm/cache.h
blob: 240b6ae0eaa389699f9d49d076b569b9fc89b99b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __ARCH_ARM_CACHE_H
#define __ARCH_ARM_CACHE_H


/* L1 cache line size */
#define L1_CACHE_SHIFT  (CONFIG_ARM_L1_CACHE_SHIFT)
#define L1_CACHE_BYTES  (1 << L1_CACHE_SHIFT)

#define __read_mostly __section(".data.read_mostly")

#endif
/*
 * Local variables:
 * mode: C
 * c-file-style: "BSD"
 * c-basic-offset: 4
 * indent-tabs-mode: nil
 * End:
 */