1 /* arch/sparc64/mm/tlb.c
3 * Copyright (C) 2004 David S. Miller <davem@redhat.com>
6 #include <linux/kernel.h>
7 #include <linux/init.h>
8 #include <linux/percpu.h>
10 #include <linux/swap.h>
11 #include <linux/preempt.h>
13 #include <asm/pgtable.h>
14 #include <asm/pgalloc.h>
15 #include <asm/tlbflush.h>
16 #include <asm/cacheflush.h>
17 #include <asm/mmu_context.h>
20 /* Heavily inspired by the ppc64 code. */
22 static DEFINE_PER_CPU(struct tlb_batch
, tlb_batch
);
24 void flush_tlb_pending(void)
26 struct tlb_batch
*tb
= &get_cpu_var(tlb_batch
);
27 struct mm_struct
*mm
= tb
->mm
;
34 if (CTX_VALID(mm
->context
)) {
35 if (tb
->tlb_nr
== 1) {
36 global_flush_tlb_page(mm
, tb
->vaddrs
[0]);
39 smp_flush_tlb_pending(tb
->mm
, tb
->tlb_nr
,
42 __flush_tlb_pending(CTX_HWBITS(tb
->mm
->context
),
43 tb
->tlb_nr
, &tb
->vaddrs
[0]);
51 put_cpu_var(tlb_batch
);
54 void arch_enter_lazy_mmu_mode(void)
56 struct tlb_batch
*tb
= &__get_cpu_var(tlb_batch
);
61 void arch_leave_lazy_mmu_mode(void)
63 struct tlb_batch
*tb
= &__get_cpu_var(tlb_batch
);
70 static void tlb_batch_add_one(struct mm_struct
*mm
, unsigned long vaddr
,
73 struct tlb_batch
*tb
= &get_cpu_var(tlb_batch
);
82 if (unlikely(nr
!= 0 && mm
!= tb
->mm
)) {
88 flush_tsb_user_page(mm
, vaddr
);
89 global_flush_tlb_page(mm
, vaddr
);
96 tb
->vaddrs
[nr
] = vaddr
;
98 if (nr
>= TLB_BATCH_NR
)
102 put_cpu_var(tlb_batch
);
105 void tlb_batch_add(struct mm_struct
*mm
, unsigned long vaddr
,
106 pte_t
*ptep
, pte_t orig
, int fullmm
)
108 if (tlb_type
!= hypervisor
&&
110 unsigned long paddr
, pfn
= pte_pfn(orig
);
111 struct address_space
*mapping
;
117 page
= pfn_to_page(pfn
);
118 if (PageReserved(page
))
121 /* A real file page? */
122 mapping
= page_mapping(page
);
126 paddr
= (unsigned long) page_address(page
);
127 if ((paddr
^ vaddr
) & (1 << 13))
128 flush_dcache_page_all(mm
, page
);
133 tlb_batch_add_one(mm
, vaddr
, pte_exec(orig
));
136 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
137 static void tlb_batch_pmd_scan(struct mm_struct
*mm
, unsigned long vaddr
,
143 pte
= pte_offset_map(&pmd
, vaddr
);
144 end
= vaddr
+ HPAGE_SIZE
;
145 while (vaddr
< end
) {
146 if (pte_val(*pte
) & _PAGE_VALID
) {
147 bool exec
= pte_exec(*pte
);
149 tlb_batch_add_one(mm
, vaddr
, exec
);
157 void set_pmd_at(struct mm_struct
*mm
, unsigned long addr
,
158 pmd_t
*pmdp
, pmd_t pmd
)
167 if ((pmd_val(pmd
) ^ pmd_val(orig
)) & _PAGE_PMD_HUGE
) {
168 if (pmd_val(pmd
) & _PAGE_PMD_HUGE
)
169 mm
->context
.huge_pte_count
++;
171 mm
->context
.huge_pte_count
--;
173 /* Do not try to allocate the TSB hash table if we
174 * don't have one already. We have various locks held
175 * and thus we'll end up doing a GFP_KERNEL allocation
176 * in an atomic context.
178 * Instead, we let the first TLB miss on a hugepage
183 if (!pmd_none(orig
)) {
185 if (pmd_trans_huge(orig
)) {
186 pte_t orig_pte
= __pte(pmd_val(orig
));
187 bool exec
= pte_exec(orig_pte
);
189 tlb_batch_add_one(mm
, addr
, exec
);
190 tlb_batch_add_one(mm
, addr
+ REAL_HPAGE_SIZE
, exec
);
192 tlb_batch_pmd_scan(mm
, addr
, orig
);
197 void pmdp_invalidate(struct vm_area_struct
*vma
, unsigned long address
,
202 pmd_val(entry
) &= ~_PAGE_VALID
;
204 set_pmd_at(vma
->vm_mm
, address
, pmdp
, entry
);
205 flush_tlb_range(vma
, address
, address
+ HPAGE_PMD_SIZE
);
208 void pgtable_trans_huge_deposit(struct mm_struct
*mm
, pmd_t
*pmdp
,
211 struct list_head
*lh
= (struct list_head
*) pgtable
;
213 assert_spin_locked(&mm
->page_table_lock
);
216 if (!mm
->pmd_huge_pte
)
219 list_add(lh
, (struct list_head
*) mm
->pmd_huge_pte
);
220 mm
->pmd_huge_pte
= pgtable
;
223 pgtable_t
pgtable_trans_huge_withdraw(struct mm_struct
*mm
, pmd_t
*pmdp
)
225 struct list_head
*lh
;
228 assert_spin_locked(&mm
->page_table_lock
);
231 pgtable
= mm
->pmd_huge_pte
;
232 lh
= (struct list_head
*) pgtable
;
234 mm
->pmd_huge_pte
= NULL
;
236 mm
->pmd_huge_pte
= (pgtable_t
) lh
->next
;
239 pte_val(pgtable
[0]) = 0;
240 pte_val(pgtable
[1]) = 0;
244 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */