~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/powerpc/include/asm/cache.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _ASM_POWERPC_CACHE_H
  3 #define _ASM_POWERPC_CACHE_H
  4 
  5 #ifdef __KERNEL__
  6 
  7 
  8 /* bytes per L1 cache line */
  9 #if defined(CONFIG_PPC_8xx)
 10 #define L1_CACHE_SHIFT          4
 11 #define MAX_COPY_PREFETCH       1
 12 #define IFETCH_ALIGN_SHIFT      2
 13 #elif defined(CONFIG_PPC_E500MC)
 14 #define L1_CACHE_SHIFT          6
 15 #define MAX_COPY_PREFETCH       4
 16 #define IFETCH_ALIGN_SHIFT      3
 17 #elif defined(CONFIG_PPC32)
 18 #define MAX_COPY_PREFETCH       4
 19 #define IFETCH_ALIGN_SHIFT      3       /* 603 fetches 2 insn at a time */
 20 #if defined(CONFIG_PPC_47x)
 21 #define L1_CACHE_SHIFT          7
 22 #else
 23 #define L1_CACHE_SHIFT          5
 24 #endif
 25 #else /* CONFIG_PPC64 */
 26 #define L1_CACHE_SHIFT          7
 27 #define IFETCH_ALIGN_SHIFT      4 /* POWER8,9 */
 28 #endif
 29 
 30 #define L1_CACHE_BYTES          (1 << L1_CACHE_SHIFT)
 31 
 32 #define SMP_CACHE_BYTES         L1_CACHE_BYTES
 33 
 34 #define IFETCH_ALIGN_BYTES      (1 << IFETCH_ALIGN_SHIFT)
 35 
 36 #ifdef CONFIG_NOT_COHERENT_CACHE
 37 #define ARCH_DMA_MINALIGN       L1_CACHE_BYTES
 38 #endif
 39 
 40 #if !defined(__ASSEMBLY__)
 41 #ifdef CONFIG_PPC64
 42 
 43 struct ppc_cache_info {
 44         u32 size;
 45         u32 line_size;
 46         u32 block_size; /* L1 only */
 47         u32 log_block_size;
 48         u32 blocks_per_page;
 49         u32 sets;
 50         u32 assoc;
 51 };
 52 
 53 struct ppc64_caches {
 54         struct ppc_cache_info l1d;
 55         struct ppc_cache_info l1i;
 56         struct ppc_cache_info l2;
 57         struct ppc_cache_info l3;
 58 };
 59 
 60 extern struct ppc64_caches ppc64_caches;
 61 
 62 static inline u32 l1_dcache_shift(void)
 63 {
 64         return ppc64_caches.l1d.log_block_size;
 65 }
 66 
 67 static inline u32 l1_dcache_bytes(void)
 68 {
 69         return ppc64_caches.l1d.block_size;
 70 }
 71 
 72 static inline u32 l1_icache_shift(void)
 73 {
 74         return ppc64_caches.l1i.log_block_size;
 75 }
 76 
 77 static inline u32 l1_icache_bytes(void)
 78 {
 79         return ppc64_caches.l1i.block_size;
 80 }
 81 #else
 82 static inline u32 l1_dcache_shift(void)
 83 {
 84         return L1_CACHE_SHIFT;
 85 }
 86 
 87 static inline u32 l1_dcache_bytes(void)
 88 {
 89         return L1_CACHE_BYTES;
 90 }
 91 
 92 static inline u32 l1_icache_shift(void)
 93 {
 94         return L1_CACHE_SHIFT;
 95 }
 96 
 97 static inline u32 l1_icache_bytes(void)
 98 {
 99         return L1_CACHE_BYTES;
100 }
101 
102 #endif
103 
104 #define __read_mostly __section(".data..read_mostly")
105 
106 #ifdef CONFIG_PPC_BOOK3S_32
107 extern long _get_L2CR(void);
108 extern long _get_L3CR(void);
109 extern void _set_L2CR(unsigned long);
110 extern void _set_L3CR(unsigned long);
111 #else
112 #define _get_L2CR()     0L
113 #define _get_L3CR()     0L
114 #define _set_L2CR(val)  do { } while(0)
115 #define _set_L3CR(val)  do { } while(0)
116 #endif
117 
118 static inline void dcbz(void *addr)
119 {
120         __asm__ __volatile__ ("dcbz 0, %0" : : "r"(addr) : "memory");
121 }
122 
123 static inline void dcbi(void *addr)
124 {
125         __asm__ __volatile__ ("dcbi 0, %0" : : "r"(addr) : "memory");
126 }
127 
128 static inline void dcbf(void *addr)
129 {
130         __asm__ __volatile__ ("dcbf 0, %0" : : "r"(addr) : "memory");
131 }
132 
133 static inline void dcbst(void *addr)
134 {
135         __asm__ __volatile__ ("dcbst 0, %0" : : "r"(addr) : "memory");
136 }
137 
138 static inline void icbi(void *addr)
139 {
140         asm volatile ("icbi 0, %0" : : "r"(addr) : "memory");
141 }
142 
143 static inline void iccci(void *addr)
144 {
145         asm volatile ("iccci 0, %0" : : "r"(addr) : "memory");
146 }
147 
148 #endif /* !__ASSEMBLY__ */
149 #endif /* __KERNEL__ */
150 #endif /* _ASM_POWERPC_CACHE_H */
151 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php