blob: ed0afc1e44a43324a31fb59994b42a768ecb8e33 [file] [log] [blame]
David Gibson26ef5c02005-11-10 11:50:16 +11001#ifndef _ASM_POWERPC_CACHE_H
2#define _ASM_POWERPC_CACHE_H
3
4#ifdef __KERNEL__
5
David Gibson26ef5c02005-11-10 11:50:16 +11006
7/* bytes per L1 cache line */
8#if defined(CONFIG_8xx) || defined(CONFIG_403GCX)
9#define L1_CACHE_SHIFT 4
10#define MAX_COPY_PREFETCH 1
Kumar Gala3dfa8772008-06-16 09:41:32 -050011#elif defined(CONFIG_PPC_E500MC)
12#define L1_CACHE_SHIFT 6
13#define MAX_COPY_PREFETCH 4
David Gibson26ef5c02005-11-10 11:50:16 +110014#elif defined(CONFIG_PPC32)
David Gibson26ef5c02005-11-10 11:50:16 +110015#define MAX_COPY_PREFETCH 4
Dave Kleikampe7f75ad2010-03-05 10:43:12 +000016#if defined(CONFIG_PPC_47x)
17#define L1_CACHE_SHIFT 7
18#else
19#define L1_CACHE_SHIFT 5
20#endif
David Gibson26ef5c02005-11-10 11:50:16 +110021#else /* CONFIG_PPC64 */
22#define L1_CACHE_SHIFT 7
23#endif
24
25#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
26
27#define SMP_CACHE_BYTES L1_CACHE_BYTES
David Gibson26ef5c02005-11-10 11:50:16 +110028
29#if defined(__powerpc64__) && !defined(__ASSEMBLY__)
30struct ppc64_caches {
31 u32 dsize; /* L1 d-cache size */
32 u32 dline_size; /* L1 d-cache line size */
33 u32 log_dline_size;
34 u32 dlines_per_page;
35 u32 isize; /* L1 i-cache size */
36 u32 iline_size; /* L1 i-cache line size */
37 u32 log_iline_size;
38 u32 ilines_per_page;
39};
40
41extern struct ppc64_caches ppc64_caches;
42#endif /* __powerpc64__ && ! __ASSEMBLY__ */
43
Kevin Hao0ce63672013-08-22 09:30:35 +080044#if defined(__ASSEMBLY__)
45/*
46 * For a snooping icache, we still need a dummy icbi to purge all the
47 * prefetched instructions from the ifetch buffers. We also need a sync
48 * before the icbi to order the the actual stores to memory that might
49 * have modified instructions with the icbi.
50 */
51#define PURGE_PREFETCHED_INS \
52 sync; \
53 icbi 0,r3; \
54 sync; \
55 isync
David Howellsae3a1972012-03-28 18:30:02 +010056
Kevin Hao0ce63672013-08-22 09:30:35 +080057#else
Denys Vlasenko54cb27a2010-02-20 01:03:44 +010058#define __read_mostly __attribute__((__section__(".data..read_mostly")))
David Howellsae3a1972012-03-28 18:30:02 +010059
60#ifdef CONFIG_6xx
61extern long _get_L2CR(void);
62extern long _get_L3CR(void);
63extern void _set_L2CR(unsigned long);
64extern void _set_L3CR(unsigned long);
65#else
66#define _get_L2CR() 0L
67#define _get_L3CR() 0L
68#define _set_L2CR(val) do { } while(0)
69#define _set_L3CR(val) do { } while(0)
Tony Breedsbd67fcf2007-07-04 14:04:31 +100070#endif
71
David Howellsae3a1972012-03-28 18:30:02 +010072extern void cacheable_memzero(void *p, unsigned int nb);
73extern void *cacheable_memcpy(void *, const void *, unsigned int);
74
75#endif /* !__ASSEMBLY__ */
David Gibson26ef5c02005-11-10 11:50:16 +110076#endif /* __KERNEL__ */
77#endif /* _ASM_POWERPC_CACHE_H */