dccp: do not assume DCCP code is non preemptible
[linux/fpc-iii.git] / arch / mn10300 / include / asm / tlbflush.h
blobefddd6e1adeadef731997d6b78214e23e962a20c
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
14 #include <linux/mm.h>
15 #include <asm/processor.h>
17 struct tlb_state {
18 struct mm_struct *active_mm;
19 int state;
21 DECLARE_PER_CPU_SHARED_ALIGNED(struct tlb_state, cpu_tlbstate);
23 /**
24 * local_flush_tlb - Flush the current MM's entries from the local CPU's TLBs
26 static inline void local_flush_tlb(void)
28 int w;
29 asm volatile(
30 " mov %1,%0 \n"
31 " or %2,%0 \n"
32 " mov %0,%1 \n"
33 : "=d"(w)
34 : "m"(MMUCTR), "i"(MMUCTR_IIV|MMUCTR_DIV)
35 : "cc", "memory");
38 /**
39 * local_flush_tlb_all - Flush all entries from the local CPU's TLBs
41 static inline void local_flush_tlb_all(void)
43 local_flush_tlb();
46 /**
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)
51 local_flush_tlb();
54 /**
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)
59 static inline
60 void local_flush_tlb_page(struct mm_struct *mm, unsigned long addr)
62 unsigned long pteu, flags, cnx;
64 addr &= PAGE_MASK;
66 local_irq_save(flags);
68 cnx = 1;
69 #ifdef CONFIG_MN10300_TLB_USE_PIDR
70 cnx = mm->context.tlbpid[smp_processor_id()];
71 #endif
72 if (cnx) {
73 pteu = addr;
74 #ifdef CONFIG_MN10300_TLB_USE_PIDR
75 pteu |= cnx & xPTEU_PID;
76 #endif
77 IPTEU = pteu;
78 DPTEU = pteu;
79 if (IPTEL & xPTEL_V)
80 IPTEL = 0;
81 if (DPTEL & xPTEL_V)
82 DPTEL = 0;
84 local_irq_restore(flags);
88 * TLB flushing:
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
97 #ifdef CONFIG_SMP
99 #include <asm/smp.h>
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)
118 preempt_disable();
119 local_flush_tlb_all();
120 preempt_enable();
123 static inline void flush_tlb_mm(struct mm_struct *mm)
125 preempt_disable();
126 local_flush_tlb_all();
127 preempt_enable();
130 static inline void flush_tlb_range(struct vm_area_struct *vma,
131 unsigned long start, unsigned long end)
133 preempt_disable();
134 local_flush_tlb_all();
135 preempt_enable();
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,
144 unsigned long end)
146 flush_tlb_all();
149 static inline void flush_tlb_pgtables(struct mm_struct *mm,
150 unsigned long start, unsigned long end)
154 #endif /* _ASM_TLBFLUSH_H */