blob: 08c6991dc9c9925a36e5057047fdf3956639078f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/asm-arm/tlbflush.h
3 *
4 * Copyright (C) 1999-2003 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#ifndef _ASMARM_TLBFLUSH_H
11#define _ASMARM_TLBFLUSH_H
12
Hyok S. Choi01579032006-02-24 21:41:25 +000013
14#ifndef CONFIG_MMU
15
16#define tlb_flush(tlb) ((void) tlb)
17
Russell Kingfb1c7762006-02-24 21:44:56 +000018#else /* CONFIG_MMU */
Hyok S. Choi01579032006-02-24 21:41:25 +000019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/glue.h>
21
22#define TLB_V3_PAGE (1 << 0)
23#define TLB_V4_U_PAGE (1 << 1)
24#define TLB_V4_D_PAGE (1 << 2)
25#define TLB_V4_I_PAGE (1 << 3)
26#define TLB_V6_U_PAGE (1 << 4)
27#define TLB_V6_D_PAGE (1 << 5)
28#define TLB_V6_I_PAGE (1 << 6)
29
30#define TLB_V3_FULL (1 << 8)
31#define TLB_V4_U_FULL (1 << 9)
32#define TLB_V4_D_FULL (1 << 10)
33#define TLB_V4_I_FULL (1 << 11)
34#define TLB_V6_U_FULL (1 << 12)
35#define TLB_V6_D_FULL (1 << 13)
36#define TLB_V6_I_FULL (1 << 14)
37
38#define TLB_V6_U_ASID (1 << 16)
39#define TLB_V6_D_ASID (1 << 17)
40#define TLB_V6_I_ASID (1 << 18)
41
42#define TLB_DCLEAN (1 << 30)
43#define TLB_WB (1 << 31)
44
45/*
46 * MMU TLB Model
47 * =============
48 *
49 * We have the following to choose from:
50 * v3 - ARMv3
51 * v4 - ARMv4 without write buffer
52 * v4wb - ARMv4 with write buffer without I TLB flush entry instruction
53 * v4wbi - ARMv4 with write buffer with I TLB flush entry instruction
54 * v6wbi - ARMv6 with write buffer with I TLB flush entry instruction
55 */
56#undef _TLB
57#undef MULTI_TLB
58
59#define v3_tlb_flags (TLB_V3_FULL | TLB_V3_PAGE)
60
61#ifdef CONFIG_CPU_TLB_V3
62# define v3_possible_flags v3_tlb_flags
63# define v3_always_flags v3_tlb_flags
64# ifdef _TLB
65# define MULTI_TLB 1
66# else
67# define _TLB v3
68# endif
69#else
70# define v3_possible_flags 0
71# define v3_always_flags (-1UL)
72#endif
73
74#define v4_tlb_flags (TLB_V4_U_FULL | TLB_V4_U_PAGE)
75
76#ifdef CONFIG_CPU_TLB_V4WT
77# define v4_possible_flags v4_tlb_flags
78# define v4_always_flags v4_tlb_flags
79# ifdef _TLB
80# define MULTI_TLB 1
81# else
82# define _TLB v4
83# endif
84#else
85# define v4_possible_flags 0
86# define v4_always_flags (-1UL)
87#endif
88
89#define v4wbi_tlb_flags (TLB_WB | TLB_DCLEAN | \
90 TLB_V4_I_FULL | TLB_V4_D_FULL | \
91 TLB_V4_I_PAGE | TLB_V4_D_PAGE)
92
93#ifdef CONFIG_CPU_TLB_V4WBI
94# define v4wbi_possible_flags v4wbi_tlb_flags
95# define v4wbi_always_flags v4wbi_tlb_flags
96# ifdef _TLB
97# define MULTI_TLB 1
98# else
99# define _TLB v4wbi
100# endif
101#else
102# define v4wbi_possible_flags 0
103# define v4wbi_always_flags (-1UL)
104#endif
105
106#define v4wb_tlb_flags (TLB_WB | TLB_DCLEAN | \
107 TLB_V4_I_FULL | TLB_V4_D_FULL | \
108 TLB_V4_D_PAGE)
109
110#ifdef CONFIG_CPU_TLB_V4WB
111# define v4wb_possible_flags v4wb_tlb_flags
112# define v4wb_always_flags v4wb_tlb_flags
113# ifdef _TLB
114# define MULTI_TLB 1
115# else
116# define _TLB v4wb
117# endif
118#else
119# define v4wb_possible_flags 0
120# define v4wb_always_flags (-1UL)
121#endif
122
123#define v6wbi_tlb_flags (TLB_WB | TLB_DCLEAN | \
124 TLB_V6_I_FULL | TLB_V6_D_FULL | \
125 TLB_V6_I_PAGE | TLB_V6_D_PAGE | \
126 TLB_V6_I_ASID | TLB_V6_D_ASID)
127
128#ifdef CONFIG_CPU_TLB_V6
129# define v6wbi_possible_flags v6wbi_tlb_flags
130# define v6wbi_always_flags v6wbi_tlb_flags
131# ifdef _TLB
132# define MULTI_TLB 1
133# else
134# define _TLB v6wbi
135# endif
136#else
137# define v6wbi_possible_flags 0
138# define v6wbi_always_flags (-1UL)
139#endif
140
141#ifndef _TLB
142#error Unknown TLB model
143#endif
144
145#ifndef __ASSEMBLY__
146
147struct cpu_tlb_fns {
148 void (*flush_user_range)(unsigned long, unsigned long, struct vm_area_struct *);
149 void (*flush_kern_range)(unsigned long, unsigned long);
150 unsigned long tlb_flags;
151};
152
153/*
154 * Select the calling method
155 */
156#ifdef MULTI_TLB
157
158#define __cpu_flush_user_tlb_range cpu_tlb.flush_user_range
159#define __cpu_flush_kern_tlb_range cpu_tlb.flush_kern_range
160
161#else
162
163#define __cpu_flush_user_tlb_range __glue(_TLB,_flush_user_tlb_range)
164#define __cpu_flush_kern_tlb_range __glue(_TLB,_flush_kern_tlb_range)
165
166extern void __cpu_flush_user_tlb_range(unsigned long, unsigned long, struct vm_area_struct *);
167extern void __cpu_flush_kern_tlb_range(unsigned long, unsigned long);
168
169#endif
170
171extern struct cpu_tlb_fns cpu_tlb;
172
173#define __cpu_tlb_flags cpu_tlb.tlb_flags
174
175/*
176 * TLB Management
177 * ==============
178 *
179 * The arch/arm/mm/tlb-*.S files implement these methods.
180 *
181 * The TLB specific code is expected to perform whatever tests it
182 * needs to determine if it should invalidate the TLB for each
183 * call. Start addresses are inclusive and end addresses are
184 * exclusive; it is safe to round these addresses down.
185 *
186 * flush_tlb_all()
187 *
188 * Invalidate the entire TLB.
189 *
190 * flush_tlb_mm(mm)
191 *
192 * Invalidate all TLB entries in a particular address
193 * space.
194 * - mm - mm_struct describing address space
195 *
196 * flush_tlb_range(mm,start,end)
197 *
198 * Invalidate a range of TLB entries in the specified
199 * address space.
200 * - mm - mm_struct describing address space
201 * - start - start address (may not be aligned)
202 * - end - end address (exclusive, may not be aligned)
203 *
204 * flush_tlb_page(vaddr,vma)
205 *
206 * Invalidate the specified page in the specified address range.
207 * - vaddr - virtual address (may not be aligned)
208 * - vma - vma_struct describing address range
209 *
210 * flush_kern_tlb_page(kaddr)
211 *
212 * Invalidate the TLB entry for the specified page. The address
213 * will be in the kernels virtual memory space. Current uses
214 * only require the D-TLB to be invalidated.
215 * - kaddr - Kernel virtual memory address
216 */
217
218/*
219 * We optimise the code below by:
220 * - building a set of TLB flags that might be set in __cpu_tlb_flags
221 * - building a set of TLB flags that will always be set in __cpu_tlb_flags
222 * - if we're going to need __cpu_tlb_flags, access it once and only once
223 *
224 * This allows us to build optimal assembly for the single-CPU type case,
225 * and as close to optimal given the compiler constrants for multi-CPU
226 * case. We could do better for the multi-CPU case if the compiler
227 * implemented the "%?" method, but this has been discontinued due to too
228 * many people getting it wrong.
229 */
230#define possible_tlb_flags (v3_possible_flags | \
231 v4_possible_flags | \
232 v4wbi_possible_flags | \
233 v4wb_possible_flags | \
234 v6wbi_possible_flags)
235
236#define always_tlb_flags (v3_always_flags & \
237 v4_always_flags & \
238 v4wbi_always_flags & \
239 v4wb_always_flags & \
240 v6wbi_always_flags)
241
242#define tlb_flag(f) ((always_tlb_flags & (f)) || (__tlb_flag & possible_tlb_flags & (f)))
243
Russell King603fff52005-06-28 13:40:39 +0100244static inline void local_flush_tlb_all(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 const int zero = 0;
247 const unsigned int __tlb_flag = __cpu_tlb_flags;
248
249 if (tlb_flag(TLB_WB))
Catalin Marinase6a5d662007-02-05 14:47:51 +0100250 dsb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 if (tlb_flag(TLB_V3_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100253 asm("mcr p15, 0, %0, c6, c0, 0" : : "r" (zero) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (tlb_flag(TLB_V4_U_FULL | TLB_V6_U_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100255 asm("mcr p15, 0, %0, c8, c7, 0" : : "r" (zero) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (tlb_flag(TLB_V4_D_FULL | TLB_V6_D_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100257 asm("mcr p15, 0, %0, c8, c6, 0" : : "r" (zero) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 if (tlb_flag(TLB_V4_I_FULL | TLB_V6_I_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100259 asm("mcr p15, 0, %0, c8, c5, 0" : : "r" (zero) : "cc");
Catalin Marinase6a5d662007-02-05 14:47:51 +0100260
261 if (tlb_flag(TLB_V6_I_FULL | TLB_V6_D_FULL |
262 TLB_V6_I_PAGE | TLB_V6_D_PAGE |
263 TLB_V6_I_ASID | TLB_V6_D_ASID)) {
264 /* flush the branch target cache */
265 asm("mcr p15, 0, %0, c7, c5, 6" : : "r" (zero) : "cc");
266 dsb();
267 isb();
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Russell King603fff52005-06-28 13:40:39 +0100271static inline void local_flush_tlb_mm(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 const int zero = 0;
274 const int asid = ASID(mm);
275 const unsigned int __tlb_flag = __cpu_tlb_flags;
276
277 if (tlb_flag(TLB_WB))
Catalin Marinase6a5d662007-02-05 14:47:51 +0100278 dsb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 if (cpu_isset(smp_processor_id(), mm->cpu_vm_mask)) {
281 if (tlb_flag(TLB_V3_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100282 asm("mcr p15, 0, %0, c6, c0, 0" : : "r" (zero) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (tlb_flag(TLB_V4_U_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100284 asm("mcr p15, 0, %0, c8, c7, 0" : : "r" (zero) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (tlb_flag(TLB_V4_D_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100286 asm("mcr p15, 0, %0, c8, c6, 0" : : "r" (zero) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (tlb_flag(TLB_V4_I_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100288 asm("mcr p15, 0, %0, c8, c5, 0" : : "r" (zero) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290
291 if (tlb_flag(TLB_V6_U_ASID))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100292 asm("mcr p15, 0, %0, c8, c7, 2" : : "r" (asid) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (tlb_flag(TLB_V6_D_ASID))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100294 asm("mcr p15, 0, %0, c8, c6, 2" : : "r" (asid) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (tlb_flag(TLB_V6_I_ASID))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100296 asm("mcr p15, 0, %0, c8, c5, 2" : : "r" (asid) : "cc");
Catalin Marinase6a5d662007-02-05 14:47:51 +0100297
298 if (tlb_flag(TLB_V6_I_FULL | TLB_V6_D_FULL |
299 TLB_V6_I_PAGE | TLB_V6_D_PAGE |
300 TLB_V6_I_ASID | TLB_V6_D_ASID)) {
301 /* flush the branch target cache */
302 asm("mcr p15, 0, %0, c7, c5, 6" : : "r" (zero) : "cc");
303 dsb();
304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307static inline void
Russell King603fff52005-06-28 13:40:39 +0100308local_flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 const int zero = 0;
311 const unsigned int __tlb_flag = __cpu_tlb_flags;
312
313 uaddr = (uaddr & PAGE_MASK) | ASID(vma->vm_mm);
314
315 if (tlb_flag(TLB_WB))
Catalin Marinase6a5d662007-02-05 14:47:51 +0100316 dsb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 if (cpu_isset(smp_processor_id(), vma->vm_mm->cpu_vm_mask)) {
319 if (tlb_flag(TLB_V3_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100320 asm("mcr p15, 0, %0, c6, c0, 0" : : "r" (uaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (tlb_flag(TLB_V4_U_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100322 asm("mcr p15, 0, %0, c8, c7, 1" : : "r" (uaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (tlb_flag(TLB_V4_D_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100324 asm("mcr p15, 0, %0, c8, c6, 1" : : "r" (uaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (tlb_flag(TLB_V4_I_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100326 asm("mcr p15, 0, %0, c8, c5, 1" : : "r" (uaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (!tlb_flag(TLB_V4_I_PAGE) && tlb_flag(TLB_V4_I_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100328 asm("mcr p15, 0, %0, c8, c5, 0" : : "r" (zero) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
331 if (tlb_flag(TLB_V6_U_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100332 asm("mcr p15, 0, %0, c8, c7, 1" : : "r" (uaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (tlb_flag(TLB_V6_D_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100334 asm("mcr p15, 0, %0, c8, c6, 1" : : "r" (uaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 if (tlb_flag(TLB_V6_I_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100336 asm("mcr p15, 0, %0, c8, c5, 1" : : "r" (uaddr) : "cc");
Catalin Marinase6a5d662007-02-05 14:47:51 +0100337
338 if (tlb_flag(TLB_V6_I_FULL | TLB_V6_D_FULL |
339 TLB_V6_I_PAGE | TLB_V6_D_PAGE |
340 TLB_V6_I_ASID | TLB_V6_D_ASID)) {
341 /* flush the branch target cache */
342 asm("mcr p15, 0, %0, c7, c5, 6" : : "r" (zero) : "cc");
343 dsb();
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Russell King603fff52005-06-28 13:40:39 +0100347static inline void local_flush_tlb_kernel_page(unsigned long kaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 const int zero = 0;
350 const unsigned int __tlb_flag = __cpu_tlb_flags;
351
352 kaddr &= PAGE_MASK;
353
354 if (tlb_flag(TLB_WB))
Catalin Marinase6a5d662007-02-05 14:47:51 +0100355 dsb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 if (tlb_flag(TLB_V3_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100358 asm("mcr p15, 0, %0, c6, c0, 0" : : "r" (kaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (tlb_flag(TLB_V4_U_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100360 asm("mcr p15, 0, %0, c8, c7, 1" : : "r" (kaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (tlb_flag(TLB_V4_D_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100362 asm("mcr p15, 0, %0, c8, c6, 1" : : "r" (kaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (tlb_flag(TLB_V4_I_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100364 asm("mcr p15, 0, %0, c8, c5, 1" : : "r" (kaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (!tlb_flag(TLB_V4_I_PAGE) && tlb_flag(TLB_V4_I_FULL))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100366 asm("mcr p15, 0, %0, c8, c5, 0" : : "r" (zero) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 if (tlb_flag(TLB_V6_U_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100369 asm("mcr p15, 0, %0, c8, c7, 1" : : "r" (kaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (tlb_flag(TLB_V6_D_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100371 asm("mcr p15, 0, %0, c8, c6, 1" : : "r" (kaddr) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (tlb_flag(TLB_V6_I_PAGE))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100373 asm("mcr p15, 0, %0, c8, c5, 1" : : "r" (kaddr) : "cc");
Catalin Marinas6a0e2432006-03-07 14:42:27 +0000374
Catalin Marinase6a5d662007-02-05 14:47:51 +0100375 if (tlb_flag(TLB_V6_I_FULL | TLB_V6_D_FULL |
376 TLB_V6_I_PAGE | TLB_V6_D_PAGE |
377 TLB_V6_I_ASID | TLB_V6_D_ASID)) {
378 /* flush the branch target cache */
379 asm("mcr p15, 0, %0, c7, c5, 6" : : "r" (zero) : "cc");
380 dsb();
381 isb();
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385/*
386 * flush_pmd_entry
387 *
388 * Flush a PMD entry (word aligned, or double-word aligned) to
389 * RAM if the TLB for the CPU we are running on requires this.
390 * This is typically used when we are creating PMD entries.
391 *
392 * clean_pmd_entry
393 *
394 * Clean (but don't drain the write buffer) if the CPU requires
395 * these operations. This is typically used when we are removing
396 * PMD entries.
397 */
398static inline void flush_pmd_entry(pmd_t *pmd)
399{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 const unsigned int __tlb_flag = __cpu_tlb_flags;
401
402 if (tlb_flag(TLB_DCLEAN))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100403 asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pmd"
404 : : "r" (pmd) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (tlb_flag(TLB_WB))
Catalin Marinase6a5d662007-02-05 14:47:51 +0100406 dsb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
409static inline void clean_pmd_entry(pmd_t *pmd)
410{
411 const unsigned int __tlb_flag = __cpu_tlb_flags;
412
413 if (tlb_flag(TLB_DCLEAN))
Daniel Jacobowitz6a39dd62006-08-30 15:02:08 +0100414 asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pmd"
415 : : "r" (pmd) : "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418#undef tlb_flag
419#undef always_tlb_flags
420#undef possible_tlb_flags
421
422/*
423 * Convert calls to our calling convention.
424 */
Russell King603fff52005-06-28 13:40:39 +0100425#define local_flush_tlb_range(vma,start,end) __cpu_flush_user_tlb_range(start,end,vma)
426#define local_flush_tlb_kernel_range(s,e) __cpu_flush_kern_tlb_range(s,e)
427
428#ifndef CONFIG_SMP
429#define flush_tlb_all local_flush_tlb_all
430#define flush_tlb_mm local_flush_tlb_mm
431#define flush_tlb_page local_flush_tlb_page
432#define flush_tlb_kernel_page local_flush_tlb_kernel_page
433#define flush_tlb_range local_flush_tlb_range
434#define flush_tlb_kernel_range local_flush_tlb_kernel_range
435#else
436extern void flush_tlb_all(void);
437extern void flush_tlb_mm(struct mm_struct *mm);
438extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long uaddr);
439extern void flush_tlb_kernel_page(unsigned long kaddr);
440extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned long end);
441extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
442#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444/*
445 * if PG_dcache_dirty is set for the page, we need to ensure that any
446 * cache entries for the kernels virtual memory range are written
447 * back to the page.
448 */
449extern void update_mmu_cache(struct vm_area_struct *vma, unsigned long addr, pte_t pte);
450
451/*
452 * ARM processors do not cache TLB tables in RAM.
453 */
454#define flush_tlb_pgtables(mm,start,end) do { } while (0)
455
456#endif
457
Hyok S. Choi01579032006-02-24 21:41:25 +0000458#endif /* CONFIG_MMU */
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460#endif