V4L/DVB (3643): Fix default values for tvp5150 controls
[linux-2.6/suspend2-2.6.18.git] / include / asm-xtensa / tlbflush.h
blob43f6ec859af92fccd699bcc918f01a3467fa63d4
1 /*
2 * include/asm-xtensa/tlbflush.h
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
8 * Copyright (C) 2001 - 2005 Tensilica Inc.
9 */
11 #ifndef _XTENSA_TLBFLUSH_H
12 #define _XTENSA_TLBFLUSH_H
14 #define DEBUG_TLB
16 #ifdef __KERNEL__
18 #include <asm/processor.h>
19 #include <linux/stringify.h>
21 /* TLB flushing:
23 * - flush_tlb_all() flushes all processes TLB entries
24 * - flush_tlb_mm(mm) flushes the specified mm context TLB entries
25 * - flush_tlb_page(mm, vmaddr) flushes a single page
26 * - flush_tlb_range(mm, start, end) flushes a range of pages
29 extern void flush_tlb_all(void);
30 extern void flush_tlb_mm(struct mm_struct*);
31 extern void flush_tlb_page(struct vm_area_struct*,unsigned long);
32 extern void flush_tlb_range(struct vm_area_struct*,unsigned long,unsigned long);
34 #define flush_tlb_kernel_range(start,end) flush_tlb_all()
37 /* This is calld in munmap when we have freed up some page-table pages.
38 * We don't need to do anything here, there's nothing special about our
39 * page-table pages.
42 static inline void flush_tlb_pgtables(struct mm_struct *mm,
43 unsigned long start, unsigned long end)
47 /* TLB operations. */
49 #define ITLB_WAYS_LOG2 XCHAL_ITLB_WAY_BITS
50 #define DTLB_WAYS_LOG2 XCHAL_DTLB_WAY_BITS
51 #define ITLB_PROBE_SUCCESS (1 << ITLB_WAYS_LOG2)
52 #define DTLB_PROBE_SUCCESS (1 << DTLB_WAYS_LOG2)
54 static inline unsigned long itlb_probe(unsigned long addr)
56 unsigned long tmp;
57 __asm__ __volatile__("pitlb %0, %1\n\t" : "=a" (tmp) : "a" (addr));
58 return tmp;
61 static inline unsigned long dtlb_probe(unsigned long addr)
63 unsigned long tmp;
64 __asm__ __volatile__("pdtlb %0, %1\n\t" : "=a" (tmp) : "a" (addr));
65 return tmp;
68 static inline void invalidate_itlb_entry (unsigned long probe)
70 __asm__ __volatile__("iitlb %0; isync\n\t" : : "a" (probe));
73 static inline void invalidate_dtlb_entry (unsigned long probe)
75 __asm__ __volatile__("idtlb %0; dsync\n\t" : : "a" (probe));
78 /* Use the .._no_isync functions with caution. Generally, these are
79 * handy for bulk invalidates followed by a single 'isync'. The
80 * caller must follow up with an 'isync', which can be relatively
81 * expensive on some Xtensa implementations.
83 static inline void invalidate_itlb_entry_no_isync (unsigned entry)
85 /* Caller must follow up with 'isync'. */
86 __asm__ __volatile__ ("iitlb %0\n" : : "a" (entry) );
89 static inline void invalidate_dtlb_entry_no_isync (unsigned entry)
91 /* Caller must follow up with 'isync'. */
92 __asm__ __volatile__ ("idtlb %0\n" : : "a" (entry) );
95 static inline void set_itlbcfg_register (unsigned long val)
97 __asm__ __volatile__("wsr %0, "__stringify(ITLBCFG)"\n\t" "isync\n\t"
98 : : "a" (val));
101 static inline void set_dtlbcfg_register (unsigned long val)
103 __asm__ __volatile__("wsr %0, "__stringify(DTLBCFG)"; dsync\n\t"
104 : : "a" (val));
107 static inline void set_ptevaddr_register (unsigned long val)
109 __asm__ __volatile__(" wsr %0, "__stringify(PTEVADDR)"; isync\n"
110 : : "a" (val));
113 static inline unsigned long read_ptevaddr_register (void)
115 unsigned long tmp;
116 __asm__ __volatile__("rsr %0, "__stringify(PTEVADDR)"\n\t" : "=a" (tmp));
117 return tmp;
120 static inline void write_dtlb_entry (pte_t entry, int way)
122 __asm__ __volatile__("wdtlb %1, %0; dsync\n\t"
123 : : "r" (way), "r" (entry) );
126 static inline void write_itlb_entry (pte_t entry, int way)
128 __asm__ __volatile__("witlb %1, %0; isync\n\t"
129 : : "r" (way), "r" (entry) );
132 static inline void invalidate_page_directory (void)
134 invalidate_dtlb_entry (DTLB_WAY_PGTABLE);
137 static inline void invalidate_itlb_mapping (unsigned address)
139 unsigned long tlb_entry;
140 while ((tlb_entry = itlb_probe (address)) & ITLB_PROBE_SUCCESS)
141 invalidate_itlb_entry (tlb_entry);
144 static inline void invalidate_dtlb_mapping (unsigned address)
146 unsigned long tlb_entry;
147 while ((tlb_entry = dtlb_probe (address)) & DTLB_PROBE_SUCCESS)
148 invalidate_dtlb_entry (tlb_entry);
151 #define check_pgt_cache() do { } while (0)
154 #ifdef DEBUG_TLB
156 /* DO NOT USE THESE FUNCTIONS. These instructions aren't part of the Xtensa
157 * ISA and exist only for test purposes..
158 * You may find it helpful for MMU debugging, however.
160 * 'at' is the unmodified input register
161 * 'as' is the output register, as follows (specific to the Linux config):
163 * as[31..12] contain the virtual address
164 * as[11..08] are meaningless
165 * as[07..00] contain the asid
168 static inline unsigned long read_dtlb_virtual (int way)
170 unsigned long tmp;
171 __asm__ __volatile__("rdtlb0 %0, %1\n\t" : "=a" (tmp), "+a" (way));
172 return tmp;
175 static inline unsigned long read_dtlb_translation (int way)
177 unsigned long tmp;
178 __asm__ __volatile__("rdtlb1 %0, %1\n\t" : "=a" (tmp), "+a" (way));
179 return tmp;
182 static inline unsigned long read_itlb_virtual (int way)
184 unsigned long tmp;
185 __asm__ __volatile__("ritlb0 %0, %1\n\t" : "=a" (tmp), "+a" (way));
186 return tmp;
189 static inline unsigned long read_itlb_translation (int way)
191 unsigned long tmp;
192 __asm__ __volatile__("ritlb1 %0, %1\n\t" : "=a" (tmp), "+a" (way));
193 return tmp;
196 #endif /* DEBUG_TLB */
199 #endif /* __KERNEL__ */
200 #endif /* _XTENSA_PGALLOC_H */