blob: 5d194eae870c147758544bd26f4872db2cf94306 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _SPARC64_TLB_H
2#define _SPARC64_TLB_H
3
4#include <linux/config.h>
5#include <linux/swap.h>
6#include <asm/pgalloc.h>
7#include <asm/tlbflush.h>
8#include <asm/mmu_context.h>
9
10#define TLB_BATCH_NR 192
11
12/*
13 * For UP we don't need to worry about TLB flush
14 * and page free order so much..
15 */
16#ifdef CONFIG_SMP
17 #define FREE_PTE_NR 506
18 #define tlb_fast_mode(bp) ((bp)->pages_nr == ~0U)
19#else
20 #define FREE_PTE_NR 1
21 #define tlb_fast_mode(bp) 1
22#endif
23
24struct mmu_gather {
25 struct mm_struct *mm;
26 unsigned int pages_nr;
27 unsigned int need_flush;
Hugh Dickins4d6ddfa2005-10-29 18:16:02 -070028 unsigned int fullmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 unsigned int tlb_nr;
30 unsigned long freed;
31 unsigned long vaddrs[TLB_BATCH_NR];
32 struct page *pages[FREE_PTE_NR];
33};
34
35DECLARE_PER_CPU(struct mmu_gather, mmu_gathers);
36
37#ifdef CONFIG_SMP
38extern void smp_flush_tlb_pending(struct mm_struct *,
39 unsigned long, unsigned long *);
40#endif
41
42extern void __flush_tlb_pending(unsigned long, unsigned long, unsigned long *);
43extern void flush_tlb_pending(void);
44
45static inline struct mmu_gather *tlb_gather_mmu(struct mm_struct *mm, unsigned int full_mm_flush)
46{
Hugh Dickins15a23ff2005-10-29 18:16:01 -070047 struct mmu_gather *mp = &get_cpu_var(mmu_gathers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 BUG_ON(mp->tlb_nr);
50
51 mp->mm = mm;
52 mp->pages_nr = num_online_cpus() > 1 ? 0U : ~0U;
Hugh Dickins4d6ddfa2005-10-29 18:16:02 -070053 mp->fullmm = full_mm_flush;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 mp->freed = 0;
55
56 return mp;
57}
58
59
60static inline void tlb_flush_mmu(struct mmu_gather *mp)
61{
62 if (mp->need_flush) {
63 mp->need_flush = 0;
64 if (!tlb_fast_mode(mp)) {
65 free_pages_and_swap_cache(mp->pages, mp->pages_nr);
66 mp->pages_nr = 0;
67 }
68 }
69
70}
71
72#ifdef CONFIG_SMP
73extern void smp_flush_tlb_mm(struct mm_struct *mm);
74#define do_flush_tlb_mm(mm) smp_flush_tlb_mm(mm)
75#else
76#define do_flush_tlb_mm(mm) __flush_tlb_mm(CTX_HWBITS(mm->context), SECONDARY_CONTEXT)
77#endif
78
79static inline void tlb_finish_mmu(struct mmu_gather *mp, unsigned long start, unsigned long end)
80{
81 unsigned long freed = mp->freed;
82 struct mm_struct *mm = mp->mm;
83 unsigned long rss = get_mm_counter(mm, rss);
84
85 if (rss < freed)
86 freed = rss;
87 add_mm_counter(mm, rss, -freed);
88
89 tlb_flush_mmu(mp);
90
Hugh Dickins4d6ddfa2005-10-29 18:16:02 -070091 if (mp->fullmm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (CTX_VALID(mm->context))
93 do_flush_tlb_mm(mm);
Hugh Dickins4d6ddfa2005-10-29 18:16:02 -070094 mp->fullmm = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 } else
96 flush_tlb_pending();
97
98 /* keep the page table cache within bounds */
99 check_pgt_cache();
Hugh Dickins15a23ff2005-10-29 18:16:01 -0700100
101 put_cpu_var(mmu_gathers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static inline void tlb_remove_page(struct mmu_gather *mp, struct page *page)
105{
106 mp->need_flush = 1;
107 if (tlb_fast_mode(mp)) {
108 free_page_and_swap_cache(page);
109 return;
110 }
111 mp->pages[mp->pages_nr++] = page;
112 if (mp->pages_nr >= FREE_PTE_NR)
113 tlb_flush_mmu(mp);
114}
115
116#define tlb_remove_tlb_entry(mp,ptep,addr) do { } while (0)
117#define pte_free_tlb(mp,ptepage) pte_free(ptepage)
118#define pmd_free_tlb(mp,pmdp) pmd_free(pmdp)
119#define pud_free_tlb(tlb,pudp) __pud_free_tlb(tlb,pudp)
120
121#define tlb_migrate_finish(mm) do { } while (0)
122#define tlb_start_vma(tlb, vma) do { } while (0)
123#define tlb_end_vma(tlb, vma) do { } while (0)
124
125#endif /* _SPARC64_TLB_H */