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

TOMOYO Linux Cross Reference
Linux/arch/xtensa/include/asm/cacheflush.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 /*
  2  * This file is subject to the terms and conditions of the GNU General Public
  3  * License.  See the file "COPYING" in the main directory of this archive
  4  * for more details.
  5  *
  6  * (C) 2001 - 2013 Tensilica Inc.
  7  */
  8 
  9 #ifndef _XTENSA_CACHEFLUSH_H
 10 #define _XTENSA_CACHEFLUSH_H
 11 
 12 #include <linux/mm.h>
 13 #include <asm/processor.h>
 14 #include <asm/page.h>
 15 
 16 /*
 17  * Lo-level routines for cache flushing.
 18  *
 19  * invalidate data or instruction cache:
 20  *
 21  * __invalidate_icache_all()
 22  * __invalidate_icache_page(adr)
 23  * __invalidate_dcache_page(adr)
 24  * __invalidate_icache_range(from,size)
 25  * __invalidate_dcache_range(from,size)
 26  *
 27  * flush data cache:
 28  *
 29  * __flush_dcache_page(adr)
 30  *
 31  * flush and invalidate data cache:
 32  *
 33  * __flush_invalidate_dcache_all()
 34  * __flush_invalidate_dcache_page(adr)
 35  * __flush_invalidate_dcache_range(from,size)
 36  *
 37  * specials for cache aliasing:
 38  *
 39  * __flush_invalidate_dcache_page_alias(vaddr,paddr)
 40  * __invalidate_dcache_page_alias(vaddr,paddr)
 41  * __invalidate_icache_page_alias(vaddr,paddr)
 42  */
 43 
 44 extern void __invalidate_dcache_all(void);
 45 extern void __invalidate_icache_all(void);
 46 extern void __invalidate_dcache_page(unsigned long);
 47 extern void __invalidate_icache_page(unsigned long);
 48 extern void __invalidate_icache_range(unsigned long, unsigned long);
 49 extern void __invalidate_dcache_range(unsigned long, unsigned long);
 50 
 51 #if XCHAL_DCACHE_IS_WRITEBACK
 52 extern void __flush_invalidate_dcache_all(void);
 53 extern void __flush_dcache_page(unsigned long);
 54 extern void __flush_dcache_range(unsigned long, unsigned long);
 55 extern void __flush_invalidate_dcache_page(unsigned long);
 56 extern void __flush_invalidate_dcache_range(unsigned long, unsigned long);
 57 #else
 58 static inline void __flush_dcache_page(unsigned long va)
 59 {
 60 }
 61 static inline void __flush_dcache_range(unsigned long va, unsigned long sz)
 62 {
 63 }
 64 # define __flush_invalidate_dcache_all()        __invalidate_dcache_all()
 65 # define __flush_invalidate_dcache_page(p)      __invalidate_dcache_page(p)
 66 # define __flush_invalidate_dcache_range(p,s)   __invalidate_dcache_range(p,s)
 67 #endif
 68 
 69 #if defined(CONFIG_MMU) && (DCACHE_WAY_SIZE > PAGE_SIZE)
 70 extern void __flush_invalidate_dcache_page_alias(unsigned long, unsigned long);
 71 extern void __invalidate_dcache_page_alias(unsigned long, unsigned long);
 72 #else
 73 static inline void __flush_invalidate_dcache_page_alias(unsigned long virt,
 74                                                         unsigned long phys) { }
 75 static inline void __invalidate_dcache_page_alias(unsigned long virt,
 76                                                   unsigned long phys) { }
 77 #endif
 78 #if defined(CONFIG_MMU) && (ICACHE_WAY_SIZE > PAGE_SIZE)
 79 extern void __invalidate_icache_page_alias(unsigned long, unsigned long);
 80 #else
 81 static inline void __invalidate_icache_page_alias(unsigned long virt,
 82                                                 unsigned long phys) { }
 83 #endif
 84 
 85 /*
 86  * We have physically tagged caches - nothing to do here -
 87  * unless we have cache aliasing.
 88  *
 89  * Pages can get remapped. Because this might change the 'color' of that page,
 90  * we have to flush the cache before the PTE is changed.
 91  * (see also Documentation/core-api/cachetlb.rst)
 92  */
 93 
 94 #if defined(CONFIG_MMU) && \
 95         ((DCACHE_WAY_SIZE > PAGE_SIZE) || defined(CONFIG_SMP))
 96 
 97 #ifdef CONFIG_SMP
 98 void flush_cache_all(void);
 99 void flush_cache_range(struct vm_area_struct*, ulong, ulong);
100 void flush_icache_range(unsigned long start, unsigned long end);
101 void flush_cache_page(struct vm_area_struct*,
102                              unsigned long, unsigned long);
103 #define flush_cache_all flush_cache_all
104 #define flush_cache_range flush_cache_range
105 #define flush_icache_range flush_icache_range
106 #define flush_cache_page flush_cache_page
107 #else
108 #define flush_cache_all local_flush_cache_all
109 #define flush_cache_range local_flush_cache_range
110 #define flush_icache_range local_flush_icache_range
111 #define flush_cache_page  local_flush_cache_page
112 #endif
113 
114 #define local_flush_cache_all()                                         \
115         do {                                                            \
116                 __flush_invalidate_dcache_all();                        \
117                 __invalidate_icache_all();                              \
118         } while (0)
119 
120 #define flush_cache_mm(mm)              flush_cache_all()
121 #define flush_cache_dup_mm(mm)          flush_cache_mm(mm)
122 
123 #define flush_cache_vmap(start,end)             flush_cache_all()
124 #define flush_cache_vmap_early(start,end)       do { } while (0)
125 #define flush_cache_vunmap(start,end)           flush_cache_all()
126 
127 void flush_dcache_folio(struct folio *folio);
128 #define flush_dcache_folio flush_dcache_folio
129 
130 #define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
131 static inline void flush_dcache_page(struct page *page)
132 {
133         flush_dcache_folio(page_folio(page));
134 }
135 
136 void local_flush_cache_range(struct vm_area_struct *vma,
137                 unsigned long start, unsigned long end);
138 void local_flush_cache_page(struct vm_area_struct *vma,
139                 unsigned long address, unsigned long pfn);
140 
141 #else
142 
143 #define flush_icache_range local_flush_icache_range
144 
145 #endif
146 
147 #define flush_icache_user_range flush_icache_range
148 
149 /* Ensure consistency between data and instruction cache. */
150 #define local_flush_icache_range(start, end)                            \
151         do {                                                            \
152                 __flush_dcache_range(start, (end) - (start));           \
153                 __invalidate_icache_range(start,(end) - (start));       \
154         } while (0)
155 
156 #if defined(CONFIG_MMU) && (DCACHE_WAY_SIZE > PAGE_SIZE)
157 
158 extern void copy_to_user_page(struct vm_area_struct*, struct page*,
159                 unsigned long, void*, const void*, unsigned long);
160 extern void copy_from_user_page(struct vm_area_struct*, struct page*,
161                 unsigned long, void*, const void*, unsigned long);
162 #define copy_to_user_page copy_to_user_page
163 #define copy_from_user_page copy_from_user_page
164 
165 #else
166 
167 #define copy_to_user_page(vma, page, vaddr, dst, src, len)              \
168         do {                                                            \
169                 memcpy(dst, src, len);                                  \
170                 __flush_dcache_range((unsigned long) dst, len);         \
171                 __invalidate_icache_range((unsigned long) dst, len);    \
172         } while (0)
173 
174 #define copy_from_user_page(vma, page, vaddr, dst, src, len) \
175         memcpy(dst, src, len)
176 
177 #endif
178 
179 #include <asm-generic/cacheflush.h>
180 
181 #endif /* _XTENSA_CACHEFLUSH_H */
182 

~ [ 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