blob: ec81cdedef2c8a94aaea03263371b19c832edf60 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _SPARC64_TLB_H
2#define _SPARC64_TLB_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/swap.h>
Alexey Dobriyan9f462a12007-06-28 21:25:31 -07005#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 unsigned long vaddrs[TLB_BATCH_NR];
31 struct page *pages[FREE_PTE_NR];
32};
33
34DECLARE_PER_CPU(struct mmu_gather, mmu_gathers);
35
36#ifdef CONFIG_SMP
37extern void smp_flush_tlb_pending(struct mm_struct *,
38 unsigned long, unsigned long *);
39#endif
40
41extern void __flush_tlb_pending(unsigned long, unsigned long, unsigned long *);
42extern void flush_tlb_pending(void);
43
44static inline struct mmu_gather *tlb_gather_mmu(struct mm_struct *mm, unsigned int full_mm_flush)
45{
Hugh Dickins15a23ff2005-10-29 18:16:01 -070046 struct mmu_gather *mp = &get_cpu_var(mmu_gathers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 BUG_ON(mp->tlb_nr);
49
50 mp->mm = mm;
51 mp->pages_nr = num_online_cpus() > 1 ? 0U : ~0U;
Hugh Dickins4d6ddfa2005-10-29 18:16:02 -070052 mp->fullmm = full_mm_flush;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 return mp;
55}
56
57
58static inline void tlb_flush_mmu(struct mmu_gather *mp)
59{
60 if (mp->need_flush) {
Hugh Dickins59871bc2005-11-07 14:12:08 -080061 free_pages_and_swap_cache(mp->pages, mp->pages_nr);
62 mp->pages_nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 mp->need_flush = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
65
66}
67
68#ifdef CONFIG_SMP
69extern void smp_flush_tlb_mm(struct mm_struct *mm);
70#define do_flush_tlb_mm(mm) smp_flush_tlb_mm(mm)
71#else
72#define do_flush_tlb_mm(mm) __flush_tlb_mm(CTX_HWBITS(mm->context), SECONDARY_CONTEXT)
73#endif
74
75static inline void tlb_finish_mmu(struct mmu_gather *mp, unsigned long start, unsigned long end)
76{
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 tlb_flush_mmu(mp);
78
David S. Miller62dbec72005-11-07 14:09:58 -080079 if (mp->fullmm)
Hugh Dickins4d6ddfa2005-10-29 18:16:02 -070080 mp->fullmm = 0;
David S. Miller62dbec72005-11-07 14:09:58 -080081 else
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 flush_tlb_pending();
83
84 /* keep the page table cache within bounds */
85 check_pgt_cache();
Hugh Dickins15a23ff2005-10-29 18:16:01 -070086
87 put_cpu_var(mmu_gathers);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static inline void tlb_remove_page(struct mmu_gather *mp, struct page *page)
91{
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (tlb_fast_mode(mp)) {
93 free_page_and_swap_cache(page);
94 return;
95 }
Hugh Dickins59871bc2005-11-07 14:12:08 -080096 mp->need_flush = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 mp->pages[mp->pages_nr++] = page;
98 if (mp->pages_nr >= FREE_PTE_NR)
99 tlb_flush_mmu(mp);
100}
101
102#define tlb_remove_tlb_entry(mp,ptep,addr) do { } while (0)
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800103#define pte_free_tlb(mp, ptepage) pte_free((mp)->mm, ptepage)
104#define pmd_free_tlb(mp, pmdp) pmd_free((mp)->mm, pmdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#define pud_free_tlb(tlb,pudp) __pud_free_tlb(tlb,pudp)
106
107#define tlb_migrate_finish(mm) do { } while (0)
108#define tlb_start_vma(tlb, vma) do { } while (0)
109#define tlb_end_vma(tlb, vma) do { } while (0)
110
111#endif /* _SPARC64_TLB_H */