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

#include <xen/config.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:
 */