blob: 333c24b543795c5b38142f0fca2cd6ba41826ec2 [file] [log] [blame]
Stephen Rothwell19702822005-11-04 16:58:59 +11001#ifndef _ASM_POWERPC_TLBFLUSH_H
2#define _ASM_POWERPC_TLBFLUSH_H
Benjamin Herrenschmidte701d262007-10-30 09:46:06 +11003
Stephen Rothwell19702822005-11-04 16:58:59 +11004/*
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
Kumar Galadf3b8612008-11-19 05:53:24 +00009 * - local_flush_tlb_page(vmaddr) flushes one page on the local processor
Stephen Rothwell19702822005-11-04 16:58:59 +110010 * - flush_tlb_page_nohash(vma, vmaddr) flushes one page if SW loaded TLB
11 * - flush_tlb_range(vma, start, end) flushes a range of pages
12 * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
Stephen Rothwell19702822005-11-04 16:58:59 +110013 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 */
19#ifdef __KERNEL__
20
David Gibson62102302007-04-24 13:09:12 +100021#if defined(CONFIG_4xx) || defined(CONFIG_8xx) || defined(CONFIG_FSL_BOOKE)
22/*
23 * TLB flushing for software loaded TLB chips
24 *
25 * TODO: (CONFIG_FSL_BOOKE) determine if flush_tlb_range &
26 * flush_tlb_kernel_range are best implemented as tlbia vs
27 * specific tlbie's
28 */
29
Benjamin Herrenschmidte701d262007-10-30 09:46:06 +110030#include <linux/mm.h>
31
32extern void _tlbie(unsigned long address, unsigned int pid);
Kumar Gala0ba34182008-07-15 16:12:25 -050033extern void _tlbil_all(void);
34extern void _tlbil_pid(unsigned int pid);
35extern void _tlbil_va(unsigned long address, unsigned int pid);
David Gibson62102302007-04-24 13:09:12 +100036
37#if defined(CONFIG_40x) || defined(CONFIG_8xx)
38#define _tlbia() asm volatile ("tlbia; sync" : : : "memory")
39#else /* CONFIG_44x || CONFIG_FSL_BOOKE */
40extern void _tlbia(void);
41#endif
42
Benjamin Herrenschmidt1a37a3f2008-12-14 19:44:24 +000043static inline void local_flush_tlb_mm(struct mm_struct *mm)
44{
45 _tlbil_pid(mm->context.id);
46}
47
David Gibson62102302007-04-24 13:09:12 +100048static inline void flush_tlb_mm(struct mm_struct *mm)
49{
Kumar Gala0ba34182008-07-15 16:12:25 -050050 _tlbil_pid(mm->context.id);
David Gibson62102302007-04-24 13:09:12 +100051}
52
Kumar Galadf3b8612008-11-19 05:53:24 +000053static inline void local_flush_tlb_page(unsigned long vmaddr)
54{
55 _tlbil_va(vmaddr, 0);
56}
57
David Gibson62102302007-04-24 13:09:12 +100058static inline void flush_tlb_page(struct vm_area_struct *vma,
59 unsigned long vmaddr)
60{
Kumar Gala0ba34182008-07-15 16:12:25 -050061 _tlbil_va(vmaddr, vma ? vma->vm_mm->context.id : 0);
David Gibson62102302007-04-24 13:09:12 +100062}
63
64static inline void flush_tlb_page_nohash(struct vm_area_struct *vma,
65 unsigned long vmaddr)
66{
Kumar Gala0ba34182008-07-15 16:12:25 -050067 flush_tlb_page(vma, vmaddr);
David Gibson62102302007-04-24 13:09:12 +100068}
69
70static inline void flush_tlb_range(struct vm_area_struct *vma,
71 unsigned long start, unsigned long end)
72{
Kumar Gala0ba34182008-07-15 16:12:25 -050073 _tlbil_pid(vma->vm_mm->context.id);
David Gibson62102302007-04-24 13:09:12 +100074}
75
76static inline void flush_tlb_kernel_range(unsigned long start,
77 unsigned long end)
78{
Kumar Gala0ba34182008-07-15 16:12:25 -050079 _tlbil_pid(0);
David Gibson62102302007-04-24 13:09:12 +100080}
81
82#elif defined(CONFIG_PPC32)
83/*
84 * TLB flushing for "classic" hash-MMMU 32-bit CPUs, 6xx, 7xx, 7xxx
85 */
86extern void _tlbie(unsigned long address);
87extern void _tlbia(void);
88
89extern void flush_tlb_mm(struct mm_struct *mm);
90extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
91extern void flush_tlb_page_nohash(struct vm_area_struct *vma, unsigned long addr);
92extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
93 unsigned long end);
94extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
Kumar Galadf3b8612008-11-19 05:53:24 +000095static inline void local_flush_tlb_page(unsigned long vmaddr)
96{
97 flush_tlb_page(NULL, vmaddr);
98}
David Gibson62102302007-04-24 13:09:12 +100099
100#else
101/*
102 * TLB flushing for 64-bit has-MMU CPUs
103 */
Stephen Rothwell19702822005-11-04 16:58:59 +1100104
105#include <linux/percpu.h>
106#include <asm/page.h>
107
108#define PPC64_TLB_BATCH_NR 192
109
110struct ppc64_tlb_batch {
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000111 int active;
112 unsigned long index;
113 struct mm_struct *mm;
114 real_pte_t pte[PPC64_TLB_BATCH_NR];
115 unsigned long vaddr[PPC64_TLB_BATCH_NR];
116 unsigned int psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000117 int ssize;
Stephen Rothwell19702822005-11-04 16:58:59 +1100118};
119DECLARE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch);
120
121extern void __flush_tlb_pending(struct ppc64_tlb_batch *batch);
122
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000123extern void hpte_need_flush(struct mm_struct *mm, unsigned long addr,
124 pte_t *ptep, unsigned long pte, int huge);
125
126#define __HAVE_ARCH_ENTER_LAZY_MMU_MODE
127
128static inline void arch_enter_lazy_mmu_mode(void)
Stephen Rothwell19702822005-11-04 16:58:59 +1100129{
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000130 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
131
132 batch->active = 1;
133}
134
135static inline void arch_leave_lazy_mmu_mode(void)
136{
137 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
Stephen Rothwell19702822005-11-04 16:58:59 +1100138
139 if (batch->index)
140 __flush_tlb_pending(batch);
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000141 batch->active = 0;
Stephen Rothwell19702822005-11-04 16:58:59 +1100142}
143
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000144#define arch_flush_lazy_mmu_mode() do {} while (0)
145
146
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100147extern void flush_hash_page(unsigned long va, real_pte_t pte, int psize,
Paul Mackerras1189be62007-10-11 20:37:10 +1000148 int ssize, int local);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100149extern void flush_hash_range(unsigned long number, int local);
Stephen Rothwell19702822005-11-04 16:58:59 +1100150
Stephen Rothwell19702822005-11-04 16:58:59 +1100151
David Gibson62102302007-04-24 13:09:12 +1000152static inline void flush_tlb_mm(struct mm_struct *mm)
153{
154}
Stephen Rothwell19702822005-11-04 16:58:59 +1100155
Kumar Galadf3b8612008-11-19 05:53:24 +0000156static inline void local_flush_tlb_page(unsigned long vmaddr)
157{
158}
159
David Gibson62102302007-04-24 13:09:12 +1000160static inline void flush_tlb_page(struct vm_area_struct *vma,
161 unsigned long vmaddr)
162{
163}
Stephen Rothwell19702822005-11-04 16:58:59 +1100164
David Gibson62102302007-04-24 13:09:12 +1000165static inline void flush_tlb_page_nohash(struct vm_area_struct *vma,
166 unsigned long vmaddr)
167{
168}
Stephen Rothwell19702822005-11-04 16:58:59 +1100169
David Gibson62102302007-04-24 13:09:12 +1000170static inline void flush_tlb_range(struct vm_area_struct *vma,
171 unsigned long start, unsigned long end)
172{
173}
174
175static inline void flush_tlb_kernel_range(unsigned long start,
176 unsigned long end)
177{
178}
179
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000180/* Private function for use by PCI IO mapping code */
181extern void __flush_hash_table_range(struct mm_struct *mm, unsigned long start,
182 unsigned long end);
183
184
Stephen Rothwell19702822005-11-04 16:58:59 +1100185#endif
186
Stephen Rothwell19702822005-11-04 16:58:59 +1100187#endif /*__KERNEL__ */
188#endif /* _ASM_POWERPC_TLBFLUSH_H */