1 /* MN10300 TLB flushing functions
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
11 #ifndef _ASM_TLBFLUSH_H
12 #define _ASM_TLBFLUSH_H
15 #include <asm/processor.h>
18 struct mm_struct
*active_mm
;
21 DECLARE_PER_CPU_SHARED_ALIGNED(struct tlb_state
, cpu_tlbstate
);
24 * local_flush_tlb - Flush the current MM's entries from the local CPU's TLBs
26 static inline void local_flush_tlb(void)
34 : "m"(MMUCTR
), "i"(MMUCTR_IIV
|MMUCTR_DIV
)
39 * local_flush_tlb_all - Flush all entries from the local CPU's TLBs
41 static inline void local_flush_tlb_all(void)
47 * local_flush_tlb_one - Flush one entry from the local CPU's TLBs
49 static inline void local_flush_tlb_one(unsigned long addr
)
55 * local_flush_tlb_page - Flush a page's entry from the local CPU's TLBs
56 * @mm: The MM to flush for
57 * @addr: The address of the target page in RAM (not its page struct)
60 void local_flush_tlb_page(struct mm_struct
*mm
, unsigned long addr
)
62 unsigned long pteu
, flags
, cnx
;
66 local_irq_save(flags
);
69 #ifdef CONFIG_MN10300_TLB_USE_PIDR
70 cnx
= mm
->context
.tlbpid
[smp_processor_id()];
74 #ifdef CONFIG_MN10300_TLB_USE_PIDR
75 pteu
|= cnx
& xPTEU_PID
;
84 local_irq_restore(flags
);
90 * - flush_tlb() flushes the current mm struct TLBs
91 * - flush_tlb_all() flushes all processes TLBs
92 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
93 * - flush_tlb_page(vma, vmaddr) flushes one page
94 * - flush_tlb_range(mm, start, end) flushes a range of pages
95 * - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
101 extern void flush_tlb_all(void);
102 extern void flush_tlb_current_task(void);
103 extern void flush_tlb_mm(struct mm_struct
*);
104 extern void flush_tlb_page(struct vm_area_struct
*, unsigned long);
106 #define flush_tlb() flush_tlb_current_task()
108 static inline void flush_tlb_range(struct vm_area_struct
*vma
,
109 unsigned long start
, unsigned long end
)
111 flush_tlb_mm(vma
->vm_mm
);
114 #else /* CONFIG_SMP */
116 static inline void flush_tlb_all(void)
119 local_flush_tlb_all();
123 static inline void flush_tlb_mm(struct mm_struct
*mm
)
126 local_flush_tlb_all();
130 static inline void flush_tlb_range(struct vm_area_struct
*vma
,
131 unsigned long start
, unsigned long end
)
134 local_flush_tlb_all();
138 #define flush_tlb_page(vma, addr) local_flush_tlb_page((vma)->vm_mm, addr)
139 #define flush_tlb() flush_tlb_all()
141 #endif /* CONFIG_SMP */
143 static inline void flush_tlb_kernel_range(unsigned long start
,
149 static inline void flush_tlb_pgtables(struct mm_struct
*mm
,
150 unsigned long start
, unsigned long end
)
154 #endif /* _ASM_TLBFLUSH_H */