]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mm/flush.c
Merge with ../linux-2.6
[linux-2.6-omap-h63xx.git] / arch / arm / mm / flush.c
1 /*
2  *  linux/arch/arm/mm/flush.c
3  *
4  *  Copyright (C) 1995-2002 Russell King
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10 #include <linux/module.h>
11 #include <linux/mm.h>
12 #include <linux/pagemap.h>
13 #include <linux/shm.h>
14
15 #include <asm/cacheflush.h>
16 #include <asm/system.h>
17 #include <asm/tlbflush.h>
18
19 #ifdef CONFIG_CPU_CACHE_VIPT
20
21 void flush_cache_mm(struct mm_struct *mm)
22 {
23         if (cache_is_vivt()) {
24                 if (cpu_isset(smp_processor_id(), mm->cpu_vm_mask))
25                         __cpuc_flush_user_all();
26                 return;
27         }
28
29         if (cache_is_vipt_aliasing()) {
30                 asm(    "mcr    p15, 0, %0, c7, c14, 0\n"
31                 "       mcr     p15, 0, %0, c7, c5, 0\n"
32                 "       mcr     p15, 0, %0, c7, c10, 4"
33                     :
34                     : "r" (0)
35                     : "cc");
36         }
37 }
38
39 void flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end)
40 {
41         if (cache_is_vivt()) {
42                 if (cpu_isset(smp_processor_id(), vma->vm_mm->cpu_vm_mask))
43                         __cpuc_flush_user_range(start & PAGE_MASK, PAGE_ALIGN(end),
44                                                 vma->vm_flags);
45                 return;
46         }
47
48         if (cache_is_vipt_aliasing()) {
49                 asm(    "mcr    p15, 0, %0, c7, c14, 0\n"
50                 "       mcr     p15, 0, %0, c7, c5, 0\n"
51                 "       mcr     p15, 0, %0, c7, c10, 4"
52                     :
53                     : "r" (0)
54                     : "cc");
55         }
56 }
57
58 void flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn)
59 {
60         if (cache_is_vivt()) {
61                 if (cpu_isset(smp_processor_id(), vma->vm_mm->cpu_vm_mask)) {
62                         unsigned long addr = user_addr & PAGE_MASK;
63                         __cpuc_flush_user_range(addr, addr + PAGE_SIZE, vma->vm_flags);
64                 }
65                 return;
66         }
67
68         if (cache_is_vipt_aliasing())
69                 flush_pfn_alias(pfn, user_addr);
70 }
71
72 #define ALIAS_FLUSH_START       0xffff4000
73
74 #define TOP_PTE(x)      pte_offset_kernel(top_pmd, x)
75
76 static void flush_pfn_alias(unsigned long pfn, unsigned long vaddr)
77 {
78         unsigned long to = ALIAS_FLUSH_START + (CACHE_COLOUR(vaddr) << PAGE_SHIFT);
79
80         set_pte(TOP_PTE(to), pfn_pte(pfn, PAGE_KERNEL));
81         flush_tlb_kernel_page(to);
82
83         asm(    "mcrr   p15, 0, %1, %0, c14\n"
84         "       mcrr    p15, 0, %1, %0, c5\n"
85             :
86             : "r" (to), "r" (to + PAGE_SIZE - L1_CACHE_BYTES)
87             : "cc");
88 }
89 #else
90 #define flush_pfn_alias(pfn,vaddr)      do { } while (0)
91 #endif
92
93 void __flush_dcache_page(struct address_space *mapping, struct page *page)
94 {
95         /*
96          * Writeback any data associated with the kernel mapping of this
97          * page.  This ensures that data in the physical page is mutually
98          * coherent with the kernels mapping.
99          */
100         __cpuc_flush_dcache_page(page_address(page));
101
102         /*
103          * If this is a page cache page, and we have an aliasing VIPT cache,
104          * we only need to do one flush - which would be at the relevant
105          * userspace colour, which is congruent with page->index.
106          */
107         if (mapping && cache_is_vipt_aliasing())
108                 flush_pfn_alias(page_to_pfn(page),
109                                 page->index << PAGE_CACHE_SHIFT);
110 }
111
112 static void __flush_dcache_aliases(struct address_space *mapping, struct page *page)
113 {
114         struct mm_struct *mm = current->active_mm;
115         struct vm_area_struct *mpnt;
116         struct prio_tree_iter iter;
117         pgoff_t pgoff;
118
119         /*
120          * There are possible user space mappings of this page:
121          * - VIVT cache: we need to also write back and invalidate all user
122          *   data in the current VM view associated with this page.
123          * - aliasing VIPT: we only need to find one mapping of this page.
124          */
125         pgoff = page->index << (PAGE_CACHE_SHIFT - PAGE_SHIFT);
126
127         flush_dcache_mmap_lock(mapping);
128         vma_prio_tree_foreach(mpnt, &iter, &mapping->i_mmap, pgoff, pgoff) {
129                 unsigned long offset;
130
131                 /*
132                  * If this VMA is not in our MM, we can ignore it.
133                  */
134                 if (mpnt->vm_mm != mm)
135                         continue;
136                 if (!(mpnt->vm_flags & VM_MAYSHARE))
137                         continue;
138                 offset = (pgoff - mpnt->vm_pgoff) << PAGE_SHIFT;
139                 flush_cache_page(mpnt, mpnt->vm_start + offset, page_to_pfn(page));
140         }
141         flush_dcache_mmap_unlock(mapping);
142 }
143
144 /*
145  * Ensure cache coherency between kernel mapping and userspace mapping
146  * of this page.
147  *
148  * We have three cases to consider:
149  *  - VIPT non-aliasing cache: fully coherent so nothing required.
150  *  - VIVT: fully aliasing, so we need to handle every alias in our
151  *          current VM view.
152  *  - VIPT aliasing: need to handle one alias in our current VM view.
153  *
154  * If we need to handle aliasing:
155  *  If the page only exists in the page cache and there are no user
156  *  space mappings, we can be lazy and remember that we may have dirty
157  *  kernel cache lines for later.  Otherwise, we assume we have
158  *  aliasing mappings.
159  */
160 void flush_dcache_page(struct page *page)
161 {
162         struct address_space *mapping = page_mapping(page);
163
164         if (mapping && !mapping_mapped(mapping))
165                 set_bit(PG_dcache_dirty, &page->flags);
166         else {
167                 __flush_dcache_page(mapping, page);
168                 if (mapping && cache_is_vivt())
169                         __flush_dcache_aliases(mapping, page);
170         }
171 }
172 EXPORT_SYMBOL(flush_dcache_page);
173
174 void flush_cache_mm(struct mm_struct *mm)
175 {
176         if (cache_is_vivt()) {
177                 if (cpu_isset(smp_processor_id(), mm->cpu_vm_mask))
178                         __cpuc_flush_user_all();
179                 return;
180         }
181
182         if (cache_is_vipt_aliasing()) {
183                 asm(    "mcr    p15, 0, %0, c7, c14, 0\n"
184                 "       mcr     p15, 0, %0, c7, c5, 0\n"
185                 "       mcr     p15, 0, %0, c7, c10, 4"
186                     :
187                     : "r" (0)
188                     : "cc");
189         }
190 }
191
192 void flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end)
193 {
194         if (cache_is_vivt()) {
195                 if (cpu_isset(smp_processor_id(), vma->vm_mm->cpu_vm_mask))
196                         __cpuc_flush_user_range(start & PAGE_MASK, PAGE_ALIGN(end),
197                                                 vma->vm_flags);
198                 return;
199         }
200
201         if (cache_is_vipt_aliasing()) {
202                 asm(    "mcr    p15, 0, %0, c7, c14, 0\n"
203                 "       mcr     p15, 0, %0, c7, c5, 0\n"
204                 "       mcr     p15, 0, %0, c7, c10, 4"
205                     :
206                     : "r" (0)
207                     : "cc");
208         }
209 }
210
211 void flush_cache_page(struct vm_area_struct *vma, unsigned long user_addr, unsigned long pfn)
212 {
213         if (cache_is_vivt()) {
214                 if (cpu_isset(smp_processor_id(), vma->vm_mm->cpu_vm_mask)) {
215                         unsigned long addr = user_addr & PAGE_MASK;
216                         __cpuc_flush_user_range(addr, addr + PAGE_SIZE, vma->vm_flags);
217                 }
218                 return;
219         }
220
221         if (cache_is_vipt_aliasing())
222                 flush_pfn_alias(pfn, user_addr);
223 }