1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */ 2b8b572e1SStephen Rothwell #ifndef _ASM_POWERPC_CACHE_H 3b8b572e1SStephen Rothwell #define _ASM_POWERPC_CACHE_H 4b8b572e1SStephen Rothwell 5b8b572e1SStephen Rothwell #ifdef __KERNEL__ 6b8b572e1SStephen Rothwell 7b8b572e1SStephen Rothwell 8b8b572e1SStephen Rothwell /* bytes per L1 cache line */ 9968159c0SChristophe Leroy #if defined(CONFIG_PPC_8xx) || defined(CONFIG_403GCX) 10b8b572e1SStephen Rothwell #define L1_CACHE_SHIFT 4 11b8b572e1SStephen Rothwell #define MAX_COPY_PREFETCH 1 121128bb78SChristophe Leroy #define IFETCH_ALIGN_SHIFT 2 13b8b572e1SStephen Rothwell #elif defined(CONFIG_PPC_E500MC) 14b8b572e1SStephen Rothwell #define L1_CACHE_SHIFT 6 15b8b572e1SStephen Rothwell #define MAX_COPY_PREFETCH 4 161128bb78SChristophe Leroy #define IFETCH_ALIGN_SHIFT 3 17b8b572e1SStephen Rothwell #elif defined(CONFIG_PPC32) 18b8b572e1SStephen Rothwell #define MAX_COPY_PREFETCH 4 191128bb78SChristophe Leroy #define IFETCH_ALIGN_SHIFT 3 /* 603 fetches 2 insn at a time */ 20e7f75ad0SDave Kleikamp #if defined(CONFIG_PPC_47x) 21e7f75ad0SDave Kleikamp #define L1_CACHE_SHIFT 7 22e7f75ad0SDave Kleikamp #else 23e7f75ad0SDave Kleikamp #define L1_CACHE_SHIFT 5 24e7f75ad0SDave Kleikamp #endif 25b8b572e1SStephen Rothwell #else /* CONFIG_PPC64 */ 26b8b572e1SStephen Rothwell #define L1_CACHE_SHIFT 7 27f4329f2eSNicholas Piggin #define IFETCH_ALIGN_SHIFT 4 /* POWER8,9 */ 28b8b572e1SStephen Rothwell #endif 29b8b572e1SStephen Rothwell 30b8b572e1SStephen Rothwell #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT) 31b8b572e1SStephen Rothwell 32b8b572e1SStephen Rothwell #define SMP_CACHE_BYTES L1_CACHE_BYTES 33b8b572e1SStephen Rothwell 34f4329f2eSNicholas Piggin #define IFETCH_ALIGN_BYTES (1 << IFETCH_ALIGN_SHIFT) 35f4329f2eSNicholas Piggin 36d98fc70fSChristophe Leroy #if !defined(__ASSEMBLY__) 37d98fc70fSChristophe Leroy #ifdef CONFIG_PPC64 38e2827fe5SBenjamin Herrenschmidt 39e2827fe5SBenjamin Herrenschmidt struct ppc_cache_info { 40e2827fe5SBenjamin Herrenschmidt u32 size; 41e2827fe5SBenjamin Herrenschmidt u32 line_size; 42e2827fe5SBenjamin Herrenschmidt u32 block_size; /* L1 only */ 43e2827fe5SBenjamin Herrenschmidt u32 log_block_size; 44e2827fe5SBenjamin Herrenschmidt u32 blocks_per_page; 45e2827fe5SBenjamin Herrenschmidt u32 sets; 4698a5f361SBenjamin Herrenschmidt u32 assoc; 47e2827fe5SBenjamin Herrenschmidt }; 48e2827fe5SBenjamin Herrenschmidt 49b8b572e1SStephen Rothwell struct ppc64_caches { 50e2827fe5SBenjamin Herrenschmidt struct ppc_cache_info l1d; 51e2827fe5SBenjamin Herrenschmidt struct ppc_cache_info l1i; 5265e01f38SBenjamin Herrenschmidt struct ppc_cache_info l2; 5365e01f38SBenjamin Herrenschmidt struct ppc_cache_info l3; 54b8b572e1SStephen Rothwell }; 55b8b572e1SStephen Rothwell 56b8b572e1SStephen Rothwell extern struct ppc64_caches ppc64_caches; 57*22e9c88dSChristophe Leroy 58*22e9c88dSChristophe Leroy static inline u32 l1_cache_shift(void) 59*22e9c88dSChristophe Leroy { 60*22e9c88dSChristophe Leroy return ppc64_caches.l1d.log_block_size; 61*22e9c88dSChristophe Leroy } 62*22e9c88dSChristophe Leroy 63*22e9c88dSChristophe Leroy static inline u32 l1_cache_bytes(void) 64*22e9c88dSChristophe Leroy { 65*22e9c88dSChristophe Leroy return ppc64_caches.l1d.block_size; 66*22e9c88dSChristophe Leroy } 67d98fc70fSChristophe Leroy #else 68d98fc70fSChristophe Leroy static inline u32 l1_cache_shift(void) 69d98fc70fSChristophe Leroy { 70d98fc70fSChristophe Leroy return L1_CACHE_SHIFT; 71d98fc70fSChristophe Leroy } 72d98fc70fSChristophe Leroy 73d98fc70fSChristophe Leroy static inline u32 l1_cache_bytes(void) 74d98fc70fSChristophe Leroy { 75d98fc70fSChristophe Leroy return L1_CACHE_BYTES; 76d98fc70fSChristophe Leroy } 77d98fc70fSChristophe Leroy #endif 78d98fc70fSChristophe Leroy #endif /* ! __ASSEMBLY__ */ 79b8b572e1SStephen Rothwell 800ce63670SKevin Hao #if defined(__ASSEMBLY__) 810ce63670SKevin Hao /* 820ce63670SKevin Hao * For a snooping icache, we still need a dummy icbi to purge all the 830ce63670SKevin Hao * prefetched instructions from the ifetch buffers. We also need a sync 840ce63670SKevin Hao * before the icbi to order the the actual stores to memory that might 850ce63670SKevin Hao * have modified instructions with the icbi. 860ce63670SKevin Hao */ 870ce63670SKevin Hao #define PURGE_PREFETCHED_INS \ 880ce63670SKevin Hao sync; \ 890ce63670SKevin Hao icbi 0,r3; \ 900ce63670SKevin Hao sync; \ 910ce63670SKevin Hao isync 92ae3a197eSDavid Howells 930ce63670SKevin Hao #else 9454cb27a7SDenys Vlasenko #define __read_mostly __attribute__((__section__(".data..read_mostly"))) 95ae3a197eSDavid Howells 96d7cceda9SChristophe Leroy #ifdef CONFIG_PPC_BOOK3S_32 97ae3a197eSDavid Howells extern long _get_L2CR(void); 98ae3a197eSDavid Howells extern long _get_L3CR(void); 99ae3a197eSDavid Howells extern void _set_L2CR(unsigned long); 100ae3a197eSDavid Howells extern void _set_L3CR(unsigned long); 101ae3a197eSDavid Howells #else 102ae3a197eSDavid Howells #define _get_L2CR() 0L 103ae3a197eSDavid Howells #define _get_L3CR() 0L 104ae3a197eSDavid Howells #define _set_L2CR(val) do { } while(0) 105ae3a197eSDavid Howells #define _set_L3CR(val) do { } while(0) 106b8b572e1SStephen Rothwell #endif 107b8b572e1SStephen Rothwell 108d6bfa02fSChristophe Leroy static inline void dcbz(void *addr) 109d6bfa02fSChristophe Leroy { 1106c587584SChristophe Leroy __asm__ __volatile__ ("dcbz %y0" : : "Z"(*(u8 *)addr) : "memory"); 111d6bfa02fSChristophe Leroy } 112d6bfa02fSChristophe Leroy 113d6bfa02fSChristophe Leroy static inline void dcbi(void *addr) 114d6bfa02fSChristophe Leroy { 1156c587584SChristophe Leroy __asm__ __volatile__ ("dcbi %y0" : : "Z"(*(u8 *)addr) : "memory"); 116d6bfa02fSChristophe Leroy } 117d6bfa02fSChristophe Leroy 118d6bfa02fSChristophe Leroy static inline void dcbf(void *addr) 119d6bfa02fSChristophe Leroy { 1206c587584SChristophe Leroy __asm__ __volatile__ ("dcbf %y0" : : "Z"(*(u8 *)addr) : "memory"); 121d6bfa02fSChristophe Leroy } 122d6bfa02fSChristophe Leroy 123d6bfa02fSChristophe Leroy static inline void dcbst(void *addr) 124d6bfa02fSChristophe Leroy { 1256c587584SChristophe Leroy __asm__ __volatile__ ("dcbst %y0" : : "Z"(*(u8 *)addr) : "memory"); 126d6bfa02fSChristophe Leroy } 127ae3a197eSDavid Howells #endif /* !__ASSEMBLY__ */ 128b8b572e1SStephen Rothwell #endif /* __KERNEL__ */ 129b8b572e1SStephen Rothwell #endif /* _ASM_POWERPC_CACHE_H */ 130