cachetlb.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:14k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. Cache and TLB Flushing
  2.      Under Linux
  3.     David S. Miller <davem@redhat.com>
  4. This document describes the cache/tlb flushing interfaces called
  5. by the Linux VM subsystem.  It enumerates over each interface,
  6. describes it's intended purpose, and what side effect is expected
  7. after the interface is invoked.
  8. The side effects described below are stated for a uniprocessor
  9. implementation, and what is to happen on that single processor.  The
  10. SMP cases are a simple extension, in that you just extend the
  11. definition such that the side effect for a particular interface occurs
  12. on all processors in the system.  Don't let this scare you into
  13. thinking SMP cache/tlb flushing must be so inefficient, this is in
  14. fact an area where many optimizations are possible.  For example,
  15. if it can be proven that a user address space has never executed
  16. on a cpu (see vma->cpu_vm_mask), one need not perform a flush
  17. for this address space on that cpu.
  18. First, the TLB flushing interfaces, since they are the simplest.  The
  19. "TLB" is abstracted under Linux as something the cpu uses to cache
  20. virtual-->physical address translations obtained from the software
  21. page tables.  Meaning that if the software page tables change, it is
  22. possible for stale translations to exist in this "TLB" cache.
  23. Therefore when software page table changes occur, the kernel will
  24. invoke one of the following flush methods _after_ the page table
  25. changes occur:
  26. 1) void flush_tlb_all(void)
  27. The most severe flush of all.  After this interface runs,
  28. any previous page table modification whatsoever will be
  29. visible to the cpu.
  30. This is usually invoked when the kernel page tables are
  31. changed, since such translations are "global" in nature.
  32. 2) void flush_tlb_mm(struct mm_struct *mm)
  33. This interface flushes an entire user address space from
  34. the TLB.  After running, this interface must make sure that
  35. any previous page table modifications for the address space
  36. 'mm' will be visible to the cpu.  That is, after running,
  37. there will be no entries in the TLB for 'mm'.
  38. This interface is used to handle whole address space
  39. page table operations such as what happens during
  40. fork, and exec.
  41. 3) void flush_tlb_range(struct mm_struct *mm,
  42. unsigned long start, unsigned long end)
  43. Here we are flushing a specific range of (user) virtual
  44. address translations from the TLB.  After running, this
  45. interface must make sure that any previous page table
  46. modifications for the address space 'mm' in the range 'start'
  47. to 'end' will be visible to the cpu.  That is, after running,
  48. there will be no entries in the TLB for 'mm' for virtual
  49. addresses in the range 'start' to 'end'.
  50. Primarily, this is used for munmap() type operations.
  51. The interface is provided in hopes that the port can find
  52. a suitably efficient method for removing multiple page
  53. sized translations from the TLB, instead of having the kernel
  54. call flush_tlb_page (see below) for each entry which may be
  55. modified.
  56. 4) void flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
  57. This time we need to remove the PAGE_SIZE sized translation
  58. from the TLB.  The 'vma' is the backing structure used by
  59. Linux to keep track of mmap'd regions for a process, the
  60. address space is available via vma->vm_mm.  Also, one may
  61. test (vma->vm_flags & VM_EXEC) to see if this region is
  62. executable (and thus could be in the 'instruction TLB' in
  63. split-tlb type setups).
  64. After running, this interface must make sure that any previous
  65. page table modification for address space 'vma->vm_mm' for
  66. user virtual address 'page' will be visible to the cpu.  That
  67. is, after running, there will be no entries in the TLB for
  68. 'vma->vm_mm' for virtual address 'page'.
  69. This is used primarily during fault processing.
  70. 5) void flush_tlb_pgtables(struct mm_struct *mm,
  71.    unsigned long start, unsigned long end)
  72.    The software page tables for address space 'mm' for virtual
  73.    addresses in the range 'start' to 'end' are being torn down.
  74.    Some platforms cache the lowest level of the software page tables
  75.    in a linear virtually mapped array, to make TLB miss processing
  76.    more efficient.  On such platforms, since the TLB is caching the
  77.    software page table structure, it needs to be flushed when parts
  78.    of the software page table tree are unlinked/freed.
  79.    Sparc64 is one example of a platform which does this.
  80.    Usually, when munmap()'ing an area of user virtual address
  81.    space, the kernel leaves the page table parts around and just
  82.    marks the individual pte's as invalid.  However, if very large
  83.    portions of the address space are unmapped, the kernel frees up
  84.    those portions of the software page tables to prevent potential
  85.    excessive kernel memory usage caused by erratic mmap/mmunmap
  86.    sequences.  It is at these times that flush_tlb_pgtables will
  87.    be invoked.
  88. 6) void update_mmu_cache(struct vm_area_struct *vma,
  89.  unsigned long address, pte_t pte)
  90. At the end of every page fault, this routine is invoked to
  91. tell the architecture specific code that a translation
  92. described by "pte" now exists at virtual address "address"
  93. for address space "vma->vm_mm", in the software page tables.
  94. A port may use this information in any way it so chooses.
  95. For example, it could use this event to pre-load TLB
  96. translations for software managed TLB configurations.
  97. The sparc64 port currently does this.
  98. Next, we have the cache flushing interfaces.  In general, when Linux
  99. is changing an existing virtual-->physical mapping to a new value,
  100. the sequence will be in one of the following forms:
  101. 1) flush_cache_mm(mm);
  102.    change_all_page_tables_of(mm);
  103.    flush_tlb_mm(mm);
  104. 2) flush_cache_range(mm, start, end);
  105.    change_range_of_page_tables(mm, start, end);
  106.    flush_tlb_range(mm, start, end);
  107. 3) flush_cache_page(vma, page);
  108.    set_pte(pte_pointer, new_pte_val);
  109.    flush_tlb_page(vma, page);
  110. The cache level flush will always be first, because this allows
  111. us to properly handle systems whose caches are strict and require
  112. a virtual-->physical translation to exist for a virtual address
  113. when that virtual address is flushed from the cache.  The HyperSparc
  114. cpu is one such cpu with this attribute.
  115. The cache flushing routines below need only deal with cache flushing
  116. to the extent that it is necessary for a particular cpu.  Mostly,
  117. these routines must be implemented for cpus which have virtually
  118. indexed caches which must be flushed when virtual-->physical
  119. translations are changed or removed.  So, for example, the physically
  120. indexed physically tagged caches of IA32 processors have no need to
  121. implement these interfaces since the caches are fully synchronized
  122. and have no dependency on translation information.
  123. Here are the routines, one by one:
  124. 1) void flush_cache_all(void)
  125. The most severe flush of all.  After this interface runs,
  126. the entire cpu cache is flushed.
  127. This is usually invoked when the kernel page tables are
  128. changed, since such translations are "global" in nature.
  129. 2) void flush_cache_mm(struct mm_struct *mm)
  130. This interface flushes an entire user address space from
  131. the caches.  That is, after running, there will be no cache
  132. lines associated with 'mm'.
  133. This interface is used to handle whole address space
  134. page table operations such as what happens during
  135. fork, exit, and exec.
  136. 3) void flush_cache_range(struct mm_struct *mm,
  137.   unsigned long start, unsigned long end)
  138. Here we are flushing a specific range of (user) virtual
  139. addresses from the cache.  After running, there will be no
  140. entries in the cache for 'mm' for virtual addresses in the
  141. range 'start' to 'end'.
  142. Primarily, this is used for munmap() type operations.
  143. The interface is provided in hopes that the port can find
  144. a suitably efficient method for removing multiple page
  145. sized regions from the cache, instead of having the kernel
  146. call flush_cache_page (see below) for each entry which may be
  147. modified.
  148. 4) void flush_cache_page(struct vm_area_struct *vma, unsigned long page)
  149. This time we need to remove a PAGE_SIZE sized range
  150. from the cache.  The 'vma' is the backing structure used by
  151. Linux to keep track of mmap'd regions for a process, the
  152. address space is available via vma->vm_mm.  Also, one may
  153. test (vma->vm_flags & VM_EXEC) to see if this region is
  154. executable (and thus could be in the 'instruction cache' in
  155. "Harvard" type cache layouts).
  156. After running, there will be no entries in the cache for
  157. 'vma->vm_mm' for virtual address 'page'.
  158. This is used primarily during fault processing.
  159. There exists another whole class of cpu cache issues which currently
  160. require a whole different set of interfaces to handle properly.
  161. The biggest problem is that of virtual aliasing in the data cache
  162. of a processor.
  163. Is your port susceptible to virtual aliasing in it's D-cache?
  164. Well, if your D-cache is virtually indexed, is larger in size than
  165. PAGE_SIZE, and does not prevent multiple cache lines for the same
  166. physical address from existing at once, you have this problem.
  167. If your D-cache has this problem, first define asm/shmparam.h SHMLBA
  168. properly, it should essentially be the size of your virtually
  169. addressed D-cache (or if the size is variable, the largest possible
  170. size).  This setting will force the SYSv IPC layer to only allow user
  171. processes to mmap shared memory at address which are a multiple of
  172. this value.
  173. NOTE: This does not fix shared mmaps, check out the sparc64 port for
  174. one way to solve this (in particular SPARC_FLAG_MMAPSHARED).
  175. Next, you have two methods to solve the D-cache aliasing issue for all
  176. other cases.  Please keep in mind that fact that, for a given page
  177. mapped into some user address space, there is always at least one more
  178. mapping, that of the kernel in it's linear mapping starting at
  179. PAGE_OFFSET.  So immediately, once the first user maps a given
  180. physical page into its address space, by implication the D-cache
  181. aliasing problem has the potential to exist since the kernel already
  182. maps this page at its virtual address.
  183. First, I describe the old method to deal with this problem.  I am
  184. describing it for documentation purposes, but it is deprecated and the
  185. latter method I describe next should be used by all new ports and all
  186. existing ports should move over to the new mechanism as well.
  187.   flush_page_to_ram(struct page *page)
  188. The physical page 'page' is about to be place into the
  189. user address space of a process.  If it is possible for
  190. stores done recently by the kernel into this physical
  191. page, to not be visible to an arbitrary mapping in userspace,
  192. you must flush this page from the D-cache.
  193. If the D-cache is writeback in nature, the dirty data (if
  194. any) for this physical page must be written back to main
  195. memory before the cache lines are invalidated.
  196. Admittedly, the author did not think very much when designing this
  197. interface.  It does not give the architecture enough information about
  198. what exactly is going on, and there is no context to base a judgment
  199. on about whether an alias is possible at all.  The new interfaces to
  200. deal with D-cache aliasing are meant to address this by telling the
  201. architecture specific code exactly which is going on at the proper points
  202. in time.
  203. Here is the new interface:
  204.   void copy_user_page(void *to, void *from, unsigned long address)
  205.   void clear_user_page(void *to, unsigned long address)
  206. These two routines store data in user anonymous or COW
  207. pages.  It allows a port to efficiently avoid D-cache alias
  208. issues between userspace and the kernel.
  209. For example, a port may temporarily map 'from' and 'to' to
  210. kernel virtual addresses during the copy.  The virtual address
  211. for these two pages is chosen in such a way that the kernel
  212. load/store instructions happen to virtual addresses which are
  213. of the same "color" as the user mapping of the page.  Sparc64
  214. for example, uses this technique.
  215. The "address" parameter tells the virtual address where the
  216. user will ultimately have this page mapped.
  217. If D-cache aliasing is not an issue, these two routines may
  218. simply call memcpy/memset directly and do nothing more.
  219.   void flush_dcache_page(struct page *page)
  220. Any time the kernel writes to a page cache page, _OR_
  221. the kernel is about to read from a page cache page and
  222. user space shared/writable mappings of this page potentially
  223. exist, this routine is called.
  224. NOTE: This routine need only be called for page cache pages
  225.       which can potentially ever be mapped into the address
  226.       space of a user process.  So for example, VFS layer code
  227.       handling vfs symlinks in the page cache need not call
  228.       this interface at all.
  229. The phrase "kernel writes to a page cache page" means,
  230. specifically, that the kernel executes store instructions
  231. that dirty data in that page at the page->virtual mapping
  232. of that page.  It is important to flush here to handle
  233. D-cache aliasing, to make sure these kernel stores are
  234. visible to user space mappings of that page.
  235. The corollary case is just as important, if there are users
  236. which have shared+writable mappings of this file, we must make
  237. sure that kernel reads of these pages will see the most recent
  238. stores done by the user.
  239. If D-cache aliasing is not an issue, this routine may
  240. simply be defined as a nop on that architecture.
  241.         There is a bit set aside in page->flags (PG_arch_1) as
  242. "architecture private".  The kernel guarantees that,
  243. for pagecache pages, it will clear this bit when such
  244. a page first enters the pagecache.
  245. This allows these interfaces to be implemented much more
  246. efficiently.  It allows one to "defer" (perhaps indefinitely)
  247. the actual flush if there are currently no user processes
  248. mapping this page.  See sparc64's flush_dcache_page and
  249. update_mmu_cache implementations for an example of how to go
  250. about doing this.
  251. The idea is, first at flush_dcache_page() time, if
  252. page->mapping->i_mmap{,_shared} are empty lists, just mark the
  253. architecture private page flag bit.  Later, in
  254. update_mmu_cache(), a check is made of this flag bit, and if
  255. set the flush is done and the flag bit is cleared.
  256. IMPORTANT NOTE: It is often important, if you defer the flush,
  257. that the actual flush occurs on the same CPU
  258. as did the cpu stores into the page to make it
  259. dirty.  Again, see sparc64 for examples of how
  260. to deal with this.
  261.   void flush_icache_range(unsigned long start, unsigned long end)
  262.    When the kernel stores into addresses that it will execute
  263. out of (eg when loading modules), this function is called.
  264. If the icache does not snoop stores then this routine will need
  265. to flush it.
  266.   void flush_icache_page(struct vm_area_struct *vma, struct page *page)
  267. All the functionality of flush_icache_page can be implemented in
  268. flush_dcache_page and update_mmu_cache. In 2.5 the hope is to
  269. remove this interface completely.