GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / avr32 / include / asm / mmu_context.h
blob64d79649ff6e08346c4bf9e00324b19820e429db
1 /*
2 * Copyright (C) 2004-2006 Atmel Corporation
4 * ASID handling taken from SH implementation.
5 * Copyright (C) 1999 Niibe Yutaka
6 * Copyright (C) 2003 Paul Mundt
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #ifndef __ASM_AVR32_MMU_CONTEXT_H
13 #define __ASM_AVR32_MMU_CONTEXT_H
15 #include <asm/tlbflush.h>
16 #include <asm/sysreg.h>
17 #include <asm-generic/mm_hooks.h>
20 * The MMU "context" consists of two things:
21 * (a) TLB cache version
22 * (b) ASID (Address Space IDentifier)
24 #define MMU_CONTEXT_ASID_MASK 0x000000ff
25 #define MMU_CONTEXT_VERSION_MASK 0xffffff00
26 #define MMU_CONTEXT_FIRST_VERSION 0x00000100
27 #define NO_CONTEXT 0
29 #define MMU_NO_ASID 0x100
31 /* Virtual Page Number mask */
32 #define MMU_VPN_MASK 0xfffff000
34 /* Cache of MMU context last used */
35 extern unsigned long mmu_context_cache;
38 * Get MMU context if needed
40 static inline void
41 get_mmu_context(struct mm_struct *mm)
43 unsigned long mc = mmu_context_cache;
45 if (((mm->context ^ mc) & MMU_CONTEXT_VERSION_MASK) == 0)
46 /* It's up to date, do nothing */
47 return;
49 /* It's old, we need to get new context with new version */
50 mc = ++mmu_context_cache;
51 if (!(mc & MMU_CONTEXT_ASID_MASK)) {
53 * We have exhausted all ASIDs of this version.
54 * Flush the TLB and start new cycle.
56 flush_tlb_all();
58 * Fix version. Note that we avoid version #0
59 * to distinguish NO_CONTEXT.
61 if (!mc)
62 mmu_context_cache = mc = MMU_CONTEXT_FIRST_VERSION;
64 mm->context = mc;
68 * Initialize the context related info for a new mm_struct
69 * instance.
71 static inline int init_new_context(struct task_struct *tsk,
72 struct mm_struct *mm)
74 mm->context = NO_CONTEXT;
75 return 0;
79 * Destroy context related info for an mm_struct that is about
80 * to be put to rest.
82 static inline void destroy_context(struct mm_struct *mm)
84 /* Do nothing */
87 static inline void set_asid(unsigned long asid)
89 sysreg_write(TLBEHI, asid & MMU_CONTEXT_ASID_MASK);
90 cpu_sync_pipeline();
93 static inline unsigned long get_asid(void)
95 unsigned long asid;
97 asid = sysreg_read(TLBEHI);
98 return asid & MMU_CONTEXT_ASID_MASK;
101 static inline void activate_context(struct mm_struct *mm)
103 get_mmu_context(mm);
104 set_asid(mm->context & MMU_CONTEXT_ASID_MASK);
107 static inline void switch_mm(struct mm_struct *prev,
108 struct mm_struct *next,
109 struct task_struct *tsk)
111 if (likely(prev != next)) {
112 unsigned long __pgdir = (unsigned long)next->pgd;
114 sysreg_write(PTBR, __pgdir);
115 activate_context(next);
119 #define deactivate_mm(tsk,mm) do { } while(0)
121 #define activate_mm(prev, next) switch_mm((prev), (next), NULL)
123 static inline void
124 enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)
129 static inline void enable_mmu(void)
131 sysreg_write(MMUCR, (SYSREG_BIT(MMUCR_S)
132 | SYSREG_BIT(E)
133 | SYSREG_BIT(MMUCR_I)));
134 nop(); nop(); nop(); nop(); nop(); nop(); nop(); nop();
136 if (mmu_context_cache == NO_CONTEXT)
137 mmu_context_cache = MMU_CONTEXT_FIRST_VERSION;
139 set_asid(mmu_context_cache & MMU_CONTEXT_ASID_MASK);
142 static inline void disable_mmu(void)
144 sysreg_write(MMUCR, SYSREG_BIT(MMUCR_S));
147 #endif /* __ASM_AVR32_MMU_CONTEXT_H */