1 Cache and TLB Flushing 2 Under Linux 3 4 David S. Miller <davem@redhat.com> 5 6This document describes the cache/tlb flushing interfaces called 7by the Linux VM subsystem. It enumerates over each interface, 8describes it's intended purpose, and what side effect is expected 9after the interface is invoked. 10 11The side effects described below are stated for a uniprocessor 12implementation, and what is to happen on that single processor. The 13SMP cases are a simple extension, in that you just extend the 14definition such that the side effect for a particular interface occurs 15on all processors in the system. Don't let this scare you into 16thinking SMP cache/tlb flushing must be so inefficient, this is in 17fact an area where many optimizations are possible. For example, 18if it can be proven that a user address space has never executed 19on a cpu (see vma->cpu_vm_mask), one need not perform a flush 20for this address space on that cpu. 21 22First, the TLB flushing interfaces, since they are the simplest. The 23"TLB" is abstracted under Linux as something the cpu uses to cache 24virtual-->physical address translations obtained from the software 25page tables. Meaning that if the software page tables change, it is 26possible for stale translations to exist in this "TLB" cache. 27Therefore when software page table changes occur, the kernel will 28invoke one of the following flush methods _after_ the page table 29changes occur: 30 311) void flush_tlb_all(void) 32 33 The most severe flush of all. After this interface runs, 34 any previous page table modification whatsoever will be 35 visible to the cpu. 36 37 This is usually invoked when the kernel page tables are 38 changed, since such translations are "global" in nature. 39 402) void flush_tlb_mm(struct mm_struct *mm) 41 42 This interface flushes an entire user address space from 43 the TLB. After running, this interface must make sure that 44 any previous page table modifications for the address space 45 'mm' will be visible to the cpu. That is, after running, 46 there will be no entries in the TLB for 'mm'. 47 48 This interface is used to handle whole address space 49 page table operations such as what happens during 50 fork, and exec. 51 52 Platform developers note that generic code will always 53 invoke this interface without mm->page_table_lock held. 54 553) void flush_tlb_range(struct vm_area_struct *vma, 56 unsigned long start, unsigned long end) 57 58 Here we are flushing a specific range of (user) virtual 59 address translations from the TLB. After running, this 60 interface must make sure that any previous page table 61 modifications for the address space 'vma->vm_mm' in the range 62 'start' to 'end-1' will be visible to the cpu. That is, after 63 running, here will be no entries in the TLB for 'mm' for 64 virtual addresses in the range 'start' to 'end-1'. 65 66 The "vma" is the backing store being used for the region. 67 Primarily, this is used for munmap() type operations. 68 69 The interface is provided in hopes that the port can find 70 a suitably efficient method for removing multiple page 71 sized translations from the TLB, instead of having the kernel 72 call flush_tlb_page (see below) for each entry which may be 73 modified. 74 75 Platform developers note that generic code will always 76 invoke this interface with mm->page_table_lock held. 77 784) void flush_tlb_page(struct vm_area_struct *vma, unsigned long addr) 79 80 This time we need to remove the PAGE_SIZE sized translation 81 from the TLB. The 'vma' is the backing structure used by 82 Linux to keep track of mmap'd regions for a process, the 83 address space is available via vma->vm_mm. Also, one may 84 test (vma->vm_flags & VM_EXEC) to see if this region is 85 executable (and thus could be in the 'instruction TLB' in 86 split-tlb type setups). 87 88 After running, this interface must make sure that any previous 89 page table modification for address space 'vma->vm_mm' for 90 user virtual address 'addr' will be visible to the cpu. That 91 is, after running, there will be no entries in the TLB for 92 'vma->vm_mm' for virtual address 'addr'. 93 94 This is used primarily during fault processing. 95 96 Platform developers note that generic code will always 97 invoke this interface with mm->page_table_lock held. 98 995) void flush_tlb_pgtables(struct mm_struct *mm, 100 unsigned long start, unsigned long end) 101 102 The software page tables for address space 'mm' for virtual 103 addresses in the range 'start' to 'end-1' are being torn down. 104 105 Some platforms cache the lowest level of the software page tables 106 in a linear virtually mapped array, to make TLB miss processing 107 more efficient. On such platforms, since the TLB is caching the 108 software page table structure, it needs to be flushed when parts 109 of the software page table tree are unlinked/freed. 110 111 Sparc64 is one example of a platform which does this. 112 113 Usually, when munmap()'ing an area of user virtual address 114 space, the kernel leaves the page table parts around and just 115 marks the individual pte's as invalid. However, if very large 116 portions of the address space are unmapped, the kernel frees up 117 those portions of the software page tables to prevent potential 118 excessive kernel memory usage caused by erratic mmap/mmunmap 119 sequences. It is at these times that flush_tlb_pgtables will 120 be invoked. 121 1226) void update_mmu_cache(struct vm_area_struct *vma, 123 unsigned long address, pte_t pte) 124 125 At the end of every page fault, this routine is invoked to 126 tell the architecture specific code that a translation 127 described by "pte" now exists at virtual address "address" 128 for address space "vma->vm_mm", in the software page tables. 129 130 A port may use this information in any way it so chooses. 131 For example, it could use this event to pre-load TLB 132 translations for software managed TLB configurations. 133 The sparc64 port currently does this. 134 1357) void tlb_migrate_finish(struct mm_struct *mm) 136 137 This interface is called at the end of an explicit 138 process migration. This interface provides a hook 139 to allow a platform to update TLB or context-specific 140 information for the address space. 141 142 The ia64 sn2 platform is one example of a platform 143 that uses this interface. 144 1458) void lazy_mmu_prot_update(pte_t pte) 146 This interface is called whenever the protection on 147 any user PTEs change. This interface provides a notification 148 to architecture specific code to take appropiate action. 149 150Next, we have the cache flushing interfaces. In general, when Linux 151is changing an existing virtual-->physical mapping to a new value, 152the sequence will be in one of the following forms: 153 154 1) flush_cache_mm(mm); 155 change_all_page_tables_of(mm); 156 flush_tlb_mm(mm); 157 158 2) flush_cache_range(vma, start, end); 159 change_range_of_page_tables(mm, start, end); 160 flush_tlb_range(vma, start, end); 161 162 3) flush_cache_page(vma, addr); 163 set_pte(pte_pointer, new_pte_val); 164 flush_tlb_page(vma, addr); 165 166The cache level flush will always be first, because this allows 167us to properly handle systems whose caches are strict and require 168a virtual-->physical translation to exist for a virtual address 169when that virtual address is flushed from the cache. The HyperSparc 170cpu is one such cpu with this attribute. 171 172The cache flushing routines below need only deal with cache flushing 173to the extent that it is necessary for a particular cpu. Mostly, 174these routines must be implemented for cpus which have virtually 175indexed caches which must be flushed when virtual-->physical 176translations are changed or removed. So, for example, the physically 177indexed physically tagged caches of IA32 processors have no need to 178implement these interfaces since the caches are fully synchronized 179and have no dependency on translation information. 180 181Here are the routines, one by one: 182 1831) void flush_cache_mm(struct mm_struct *mm) 184 185 This interface flushes an entire user address space from 186 the caches. That is, after running, there will be no cache 187 lines associated with 'mm'. 188 189 This interface is used to handle whole address space 190 page table operations such as what happens during 191 fork, exit, and exec. 192 1932) void flush_cache_range(struct vm_area_struct *vma, 194 unsigned long start, unsigned long end) 195 196 Here we are flushing a specific range of (user) virtual 197 addresses from the cache. After running, there will be no 198 entries in the cache for 'vma->vm_mm' for virtual addresses in 199 the range 'start' to 'end-1'. 200 201 The "vma" is the backing store being used for the region. 202 Primarily, this is used for munmap() type operations. 203 204 The interface is provided in hopes that the port can find 205 a suitably efficient method for removing multiple page 206 sized regions from the cache, instead of having the kernel 207 call flush_cache_page (see below) for each entry which may be 208 modified. 209 2103) void flush_cache_page(struct vm_area_struct *vma, unsigned long addr) 211 212 This time we need to remove a PAGE_SIZE sized range 213 from the cache. The 'vma' is the backing structure used by 214 Linux to keep track of mmap'd regions for a process, the 215 address space is available via vma->vm_mm. Also, one may 216 test (vma->vm_flags & VM_EXEC) to see if this region is 217 executable (and thus could be in the 'instruction cache' in 218 "Harvard" type cache layouts). 219 220 After running, there will be no entries in the cache for 221 'vma->vm_mm' for virtual address 'addr'. 222 223 This is used primarily during fault processing. 224 2254) void flush_cache_kmaps(void) 226 227 This routine need only be implemented if the platform utilizes 228 highmem. It will be called right before all of the kmaps 229 are invalidated. 230 231 After running, there will be no entries in the cache for 232 the kernel virtual address range PKMAP_ADDR(0) to 233 PKMAP_ADDR(LAST_PKMAP). 234 235 This routing should be implemented in asm/highmem.h 236 2375) void flush_cache_vmap(unsigned long start, unsigned long end) 238 void flush_cache_vunmap(unsigned long start, unsigned long end) 239 240 Here in these two interfaces we are flushing a specific range 241 of (kernel) virtual addresses from the cache. After running, 242 there will be no entries in the cache for the kernel address 243 space for virtual addresses in the range 'start' to 'end-1'. 244 245 The first of these two routines is invoked after map_vm_area() 246 has installed the page table entries. The second is invoked 247 before unmap_vm_area() deletes the page table entries. 248 249There exists another whole class of cpu cache issues which currently 250require a whole different set of interfaces to handle properly. 251The biggest problem is that of virtual aliasing in the data cache 252of a processor. 253 254Is your port susceptible to virtual aliasing in it's D-cache? 255Well, if your D-cache is virtually indexed, is larger in size than 256PAGE_SIZE, and does not prevent multiple cache lines for the same 257physical address from existing at once, you have this problem. 258 259If your D-cache has this problem, first define asm/shmparam.h SHMLBA 260properly, it should essentially be the size of your virtually 261addressed D-cache (or if the size is variable, the largest possible 262size). This setting will force the SYSv IPC layer to only allow user 263processes to mmap shared memory at address which are a multiple of 264this value. 265 266NOTE: This does not fix shared mmaps, check out the sparc64 port for 267one way to solve this (in particular SPARC_FLAG_MMAPSHARED). 268 269Next, you have to solve the D-cache aliasing issue for all 270other cases. Please keep in mind that fact that, for a given page 271mapped into some user address space, there is always at least one more 272mapping, that of the kernel in it's linear mapping starting at 273PAGE_OFFSET. So immediately, once the first user maps a given 274physical page into its address space, by implication the D-cache 275aliasing problem has the potential to exist since the kernel already 276maps this page at its virtual address. 277 278 void copy_user_page(void *to, void *from, unsigned long addr, struct page *page) 279 void clear_user_page(void *to, unsigned long addr, struct page *page) 280 281 These two routines store data in user anonymous or COW 282 pages. It allows a port to efficiently avoid D-cache alias 283 issues between userspace and the kernel. 284 285 For example, a port may temporarily map 'from' and 'to' to 286 kernel virtual addresses during the copy. The virtual address 287 for these two pages is chosen in such a way that the kernel 288 load/store instructions happen to virtual addresses which are 289 of the same "color" as the user mapping of the page. Sparc64 290 for example, uses this technique. 291 292 The 'addr' parameter tells the virtual address where the 293 user will ultimately have this page mapped, and the 'page' 294 parameter gives a pointer to the struct page of the target. 295 296 If D-cache aliasing is not an issue, these two routines may 297 simply call memcpy/memset directly and do nothing more. 298 299 void flush_dcache_page(struct page *page) 300 301 Any time the kernel writes to a page cache page, _OR_ 302 the kernel is about to read from a page cache page and 303 user space shared/writable mappings of this page potentially 304 exist, this routine is called. 305 306 NOTE: This routine need only be called for page cache pages 307 which can potentially ever be mapped into the address 308 space of a user process. So for example, VFS layer code 309 handling vfs symlinks in the page cache need not call 310 this interface at all. 311 312 The phrase "kernel writes to a page cache page" means, 313 specifically, that the kernel executes store instructions 314 that dirty data in that page at the page->virtual mapping 315 of that page. It is important to flush here to handle 316 D-cache aliasing, to make sure these kernel stores are 317 visible to user space mappings of that page. 318 319 The corollary case is just as important, if there are users 320 which have shared+writable mappings of this file, we must make 321 sure that kernel reads of these pages will see the most recent 322 stores done by the user. 323 324 If D-cache aliasing is not an issue, this routine may 325 simply be defined as a nop on that architecture. 326 327 There is a bit set aside in page->flags (PG_arch_1) as 328 "architecture private". The kernel guarantees that, 329 for pagecache pages, it will clear this bit when such 330 a page first enters the pagecache. 331 332 This allows these interfaces to be implemented much more 333 efficiently. It allows one to "defer" (perhaps indefinitely) 334 the actual flush if there are currently no user processes 335 mapping this page. See sparc64's flush_dcache_page and 336 update_mmu_cache implementations for an example of how to go 337 about doing this. 338 339 The idea is, first at flush_dcache_page() time, if 340 page->mapping->i_mmap is an empty tree and ->i_mmap_nonlinear 341 an empty list, just mark the architecture private page flag bit. 342 Later, in update_mmu_cache(), a check is made of this flag bit, 343 and if set the flush is done and the flag bit is cleared. 344 345 IMPORTANT NOTE: It is often important, if you defer the flush, 346 that the actual flush occurs on the same CPU 347 as did the cpu stores into the page to make it 348 dirty. Again, see sparc64 for examples of how 349 to deal with this. 350 351 void copy_to_user_page(struct vm_area_struct *vma, struct page *page, 352 unsigned long user_vaddr, 353 void *dst, void *src, int len) 354 void copy_from_user_page(struct vm_area_struct *vma, struct page *page, 355 unsigned long user_vaddr, 356 void *dst, void *src, int len) 357 When the kernel needs to copy arbitrary data in and out 358 of arbitrary user pages (f.e. for ptrace()) it will use 359 these two routines. 360 361 Any necessary cache flushing or other coherency operations 362 that need to occur should happen here. If the processor's 363 instruction cache does not snoop cpu stores, it is very 364 likely that you will need to flush the instruction cache 365 for copy_to_user_page(). 366 367 void flush_icache_range(unsigned long start, unsigned long end) 368 When the kernel stores into addresses that it will execute 369 out of (eg when loading modules), this function is called. 370 371 If the icache does not snoop stores then this routine will need 372 to flush it. 373 374 void flush_icache_page(struct vm_area_struct *vma, struct page *page) 375 All the functionality of flush_icache_page can be implemented in 376 flush_dcache_page and update_mmu_cache. In 2.7 the hope is to 377 remove this interface completely. 378

