powerpc/mm: Add SMP support to no-hash TLB handling
[deliverable/linux.git] / arch / powerpc / include / asm / tlbflush.h
CommitLineData
1970282f
SR
1#ifndef _ASM_POWERPC_TLBFLUSH_H
2#define _ASM_POWERPC_TLBFLUSH_H
e701d269 3
1970282f
SR
4/*
5 * TLB flushing:
6 *
7 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
8 * - flush_tlb_page(vma, vmaddr) flushes one page
f048aace
BH
9 * - local_flush_tlb_mm(mm) flushes the specified mm context on
10 * the local processor
11 * - local_flush_tlb_page(vma, vmaddr) flushes one page on the local processor
1970282f
SR
12 * - flush_tlb_page_nohash(vma, vmaddr) flushes one page if SW loaded TLB
13 * - flush_tlb_range(vma, start, end) flushes a range of pages
14 * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
1970282f
SR
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version
19 * 2 of the License, or (at your option) any later version.
20 */
21#ifdef __KERNEL__
22
f048aace 23#ifdef CONFIG_PPC_MMU_NOHASH
62102307
DG
24/*
25 * TLB flushing for software loaded TLB chips
26 *
27 * TODO: (CONFIG_FSL_BOOKE) determine if flush_tlb_range &
28 * flush_tlb_kernel_range are best implemented as tlbia vs
29 * specific tlbie's
30 */
31
e701d269
BH
32#include <linux/mm.h>
33
2ca8cf73
BH
34#define MMU_NO_CONTEXT ((unsigned int)-1)
35
0ba3418b
KG
36extern void _tlbil_all(void);
37extern void _tlbil_pid(unsigned int pid);
38extern void _tlbil_va(unsigned long address, unsigned int pid);
f048aace 39extern void _tlbivax_bcast(unsigned long address, unsigned int pid);
62102307
DG
40
41#if defined(CONFIG_40x) || defined(CONFIG_8xx)
42#define _tlbia() asm volatile ("tlbia; sync" : : : "memory")
43#else /* CONFIG_44x || CONFIG_FSL_BOOKE */
44extern void _tlbia(void);
45#endif
1970282f 46
f048aace
BH
47extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
48 unsigned long end);
49extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
62102307 50
f048aace
BH
51extern void local_flush_tlb_mm(struct mm_struct *mm);
52extern void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
62102307 53
f048aace
BH
54#ifdef CONFIG_SMP
55extern void flush_tlb_mm(struct mm_struct *mm);
56extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
57#else
58#define flush_tlb_mm(mm) local_flush_tlb_mm(mm)
59#define flush_tlb_page(vma,addr) local_flush_tlb_page(vma,addr)
60#endif
61#define flush_tlb_page_nohash(vma,addr) flush_tlb_page(vma,addr)
62102307 62
f048aace 63#elif defined(CONFIG_PPC_STD_MMU_32)
62102307 64
62102307 65/*
f048aace 66 * TLB flushing for "classic" hash-MMU 32-bit CPUs, 6xx, 7xx, 7xxx
62102307
DG
67 */
68extern void _tlbie(unsigned long address);
69extern void _tlbia(void);
70
71extern void flush_tlb_mm(struct mm_struct *mm);
72extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
73extern void flush_tlb_page_nohash(struct vm_area_struct *vma, unsigned long addr);
74extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
75 unsigned long end);
76extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
f048aace
BH
77static inline void local_flush_tlb_page(struct vm_area_struct *vma,
78 unsigned long vmaddr)
df3b8611 79{
f048aace
BH
80 flush_tlb_page(vma, vmaddr);
81}
82static inline void local_flush_tlb_mm(struct mm_struct *mm)
83{
84 flush_tlb_mm(mm);
df3b8611 85}
62102307 86
f048aace
BH
87#elif defined(CONFIG_PPC_STD_MMU_64)
88
62102307 89/*
f048aace 90 * TLB flushing for 64-bit hash-MMU CPUs
62102307 91 */
1970282f
SR
92
93#include <linux/percpu.h>
94#include <asm/page.h>
95
96#define PPC64_TLB_BATCH_NR 192
97
98struct ppc64_tlb_batch {
a741e679
BH
99 int active;
100 unsigned long index;
101 struct mm_struct *mm;
102 real_pte_t pte[PPC64_TLB_BATCH_NR];
103 unsigned long vaddr[PPC64_TLB_BATCH_NR];
104 unsigned int psize;
1189be65 105 int ssize;
1970282f
SR
106};
107DECLARE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch);
108
109extern void __flush_tlb_pending(struct ppc64_tlb_batch *batch);
110
a741e679
BH
111extern void hpte_need_flush(struct mm_struct *mm, unsigned long addr,
112 pte_t *ptep, unsigned long pte, int huge);
113
114#define __HAVE_ARCH_ENTER_LAZY_MMU_MODE
115
116static inline void arch_enter_lazy_mmu_mode(void)
117{
118 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
119
120 batch->active = 1;
121}
122
123static inline void arch_leave_lazy_mmu_mode(void)
1970282f 124{
a741e679 125 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
1970282f
SR
126
127 if (batch->index)
128 __flush_tlb_pending(batch);
a741e679 129 batch->active = 0;
1970282f
SR
130}
131
a741e679
BH
132#define arch_flush_lazy_mmu_mode() do {} while (0)
133
134
3c726f8d 135extern void flush_hash_page(unsigned long va, real_pte_t pte, int psize,
1189be65 136 int ssize, int local);
3c726f8d 137extern void flush_hash_range(unsigned long number, int local);
1970282f 138
1970282f 139
f048aace
BH
140static inline void local_flush_tlb_mm(struct mm_struct *mm)
141{
142}
143
1970282f
SR
144static inline void flush_tlb_mm(struct mm_struct *mm)
145{
1970282f
SR
146}
147
f048aace
BH
148static inline void local_flush_tlb_page(struct vm_area_struct *vma,
149 unsigned long vmaddr)
df3b8611
KG
150{
151}
152
1970282f 153static inline void flush_tlb_page(struct vm_area_struct *vma,
62102307 154 unsigned long vmaddr)
1970282f 155{
1970282f
SR
156}
157
158static inline void flush_tlb_page_nohash(struct vm_area_struct *vma,
159 unsigned long vmaddr)
160{
1970282f
SR
161}
162
163static inline void flush_tlb_range(struct vm_area_struct *vma,
62102307 164 unsigned long start, unsigned long end)
1970282f 165{
1970282f
SR
166}
167
168static inline void flush_tlb_kernel_range(unsigned long start,
62102307 169 unsigned long end)
1970282f 170{
1970282f
SR
171}
172
3d5134ee
BH
173/* Private function for use by PCI IO mapping code */
174extern void __flush_hash_table_range(struct mm_struct *mm, unsigned long start,
175 unsigned long end);
176
f048aace
BH
177#else
178#error Unsupported MMU type
1970282f
SR
179#endif
180
1970282f
SR
181#endif /*__KERNEL__ */
182#endif /* _ASM_POWERPC_TLBFLUSH_H */
This page took 0.303392 seconds and 5 git commands to generate.