1 /* arch/sparc64/mm/tlb.c
3 * Copyright (C) 2004 David S. Miller <davem@redhat.com>
6 #include <linux/kernel.h>
7 #include <linux/percpu.h>
9 #include <linux/swap.h>
10 #include <linux/preempt.h>
12 #include <asm/pgtable.h>
13 #include <asm/pgalloc.h>
14 #include <asm/tlbflush.h>
15 #include <asm/cacheflush.h>
16 #include <asm/mmu_context.h>
19 /* Heavily inspired by the ppc64 code. */
21 static DEFINE_PER_CPU(struct tlb_batch
, tlb_batch
);
23 void flush_tlb_pending(void)
25 struct tlb_batch
*tb
= &get_cpu_var(tlb_batch
);
26 struct mm_struct
*mm
= tb
->mm
;
33 if (CTX_VALID(mm
->context
)) {
34 if (tb
->tlb_nr
== 1) {
35 global_flush_tlb_page(mm
, tb
->vaddrs
[0]);
38 smp_flush_tlb_pending(tb
->mm
, tb
->tlb_nr
,
41 __flush_tlb_pending(CTX_HWBITS(tb
->mm
->context
),
42 tb
->tlb_nr
, &tb
->vaddrs
[0]);
50 put_cpu_var(tlb_batch
);
53 void arch_enter_lazy_mmu_mode(void)
55 struct tlb_batch
*tb
= this_cpu_ptr(&tlb_batch
);
60 void arch_leave_lazy_mmu_mode(void)
62 struct tlb_batch
*tb
= this_cpu_ptr(&tlb_batch
);
69 static void tlb_batch_add_one(struct mm_struct
*mm
, unsigned long vaddr
,
72 struct tlb_batch
*tb
= &get_cpu_var(tlb_batch
);
81 if (unlikely(nr
!= 0 && mm
!= tb
->mm
)) {
87 flush_tsb_user_page(mm
, vaddr
, huge
);
88 global_flush_tlb_page(mm
, vaddr
);
97 if (tb
->huge
!= huge
) {
103 tb
->vaddrs
[nr
] = vaddr
;
105 if (nr
>= TLB_BATCH_NR
)
109 put_cpu_var(tlb_batch
);
112 void tlb_batch_add(struct mm_struct
*mm
, unsigned long vaddr
,
113 pte_t
*ptep
, pte_t orig
, int fullmm
)
115 bool huge
= is_hugetlb_pte(orig
);
117 if (tlb_type
!= hypervisor
&&
119 unsigned long paddr
, pfn
= pte_pfn(orig
);
120 struct address_space
*mapping
;
126 page
= pfn_to_page(pfn
);
127 if (PageReserved(page
))
130 /* A real file page? */
131 mapping
= page_mapping(page
);
135 paddr
= (unsigned long) page_address(page
);
136 if ((paddr
^ vaddr
) & (1 << 13))
137 flush_dcache_page_all(mm
, page
);
142 tlb_batch_add_one(mm
, vaddr
, pte_exec(orig
), huge
);
145 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
146 static void tlb_batch_pmd_scan(struct mm_struct
*mm
, unsigned long vaddr
,
152 pte
= pte_offset_map(&pmd
, vaddr
);
153 end
= vaddr
+ HPAGE_SIZE
;
154 while (vaddr
< end
) {
155 if (pte_val(*pte
) & _PAGE_VALID
) {
156 bool exec
= pte_exec(*pte
);
158 tlb_batch_add_one(mm
, vaddr
, exec
, false);
166 void set_pmd_at(struct mm_struct
*mm
, unsigned long addr
,
167 pmd_t
*pmdp
, pmd_t pmd
)
176 if ((pmd_val(pmd
) ^ pmd_val(orig
)) & _PAGE_PMD_HUGE
) {
177 if (pmd_val(pmd
) & _PAGE_PMD_HUGE
)
178 mm
->context
.thp_pte_count
++;
180 mm
->context
.thp_pte_count
--;
182 /* Do not try to allocate the TSB hash table if we
183 * don't have one already. We have various locks held
184 * and thus we'll end up doing a GFP_KERNEL allocation
185 * in an atomic context.
187 * Instead, we let the first TLB miss on a hugepage
192 if (!pmd_none(orig
)) {
194 if (pmd_trans_huge(orig
)) {
195 pte_t orig_pte
= __pte(pmd_val(orig
));
196 bool exec
= pte_exec(orig_pte
);
198 tlb_batch_add_one(mm
, addr
, exec
, true);
199 tlb_batch_add_one(mm
, addr
+ REAL_HPAGE_SIZE
, exec
,
202 tlb_batch_pmd_scan(mm
, addr
, orig
);
207 void pmdp_invalidate(struct vm_area_struct
*vma
, unsigned long address
,
212 pmd_val(entry
) &= ~_PAGE_VALID
;
214 set_pmd_at(vma
->vm_mm
, address
, pmdp
, entry
);
215 flush_tlb_range(vma
, address
, address
+ HPAGE_PMD_SIZE
);
218 void pgtable_trans_huge_deposit(struct mm_struct
*mm
, pmd_t
*pmdp
,
221 struct list_head
*lh
= (struct list_head
*) pgtable
;
223 assert_spin_locked(&mm
->page_table_lock
);
226 if (!pmd_huge_pte(mm
, pmdp
))
229 list_add(lh
, (struct list_head
*) pmd_huge_pte(mm
, pmdp
));
230 pmd_huge_pte(mm
, pmdp
) = pgtable
;
233 pgtable_t
pgtable_trans_huge_withdraw(struct mm_struct
*mm
, pmd_t
*pmdp
)
235 struct list_head
*lh
;
238 assert_spin_locked(&mm
->page_table_lock
);
241 pgtable
= pmd_huge_pte(mm
, pmdp
);
242 lh
= (struct list_head
*) pgtable
;
244 pmd_huge_pte(mm
, pmdp
) = NULL
;
246 pmd_huge_pte(mm
, pmdp
) = (pgtable_t
) lh
->next
;
249 pte_val(pgtable
[0]) = 0;
250 pte_val(pgtable
[1]) = 0;
254 #endif /* CONFIG_TRANSPARENT_HUGEPAGE */