Loading...
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __ASM_SH_TLBFLUSH_H
3#define __ASM_SH_TLBFLUSH_H
4
5/*
6 * TLB flushing:
7 *
8 * - flush_tlb_all() flushes all processes TLBs
9 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
10 * - flush_tlb_page(vma, vmaddr) flushes one page
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
13 */
14extern void local_flush_tlb_all(void);
15extern void local_flush_tlb_mm(struct mm_struct *mm);
16extern void local_flush_tlb_range(struct vm_area_struct *vma,
17 unsigned long start,
18 unsigned long end);
19extern void local_flush_tlb_page(struct vm_area_struct *vma,
20 unsigned long page);
21extern void local_flush_tlb_kernel_range(unsigned long start,
22 unsigned long end);
23extern void local_flush_tlb_one(unsigned long asid, unsigned long page);
24
25extern void __flush_tlb_global(void);
26
27#ifdef CONFIG_SMP
28
29extern void flush_tlb_all(void);
30extern void flush_tlb_mm(struct mm_struct *mm);
31extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
32 unsigned long end);
33extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long page);
34extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
35extern void flush_tlb_one(unsigned long asid, unsigned long page);
36
37#else
38
39#define flush_tlb_all() local_flush_tlb_all()
40#define flush_tlb_mm(mm) local_flush_tlb_mm(mm)
41#define flush_tlb_page(vma, page) local_flush_tlb_page(vma, page)
42#define flush_tlb_one(asid, page) local_flush_tlb_one(asid, page)
43
44#define flush_tlb_range(vma, start, end) \
45 local_flush_tlb_range(vma, start, end)
46
47#define flush_tlb_kernel_range(start, end) \
48 local_flush_tlb_kernel_range(start, end)
49
50#endif /* CONFIG_SMP */
51
52#endif /* __ASM_SH_TLBFLUSH_H */
1#ifndef __ASM_SH_TLBFLUSH_H
2#define __ASM_SH_TLBFLUSH_H
3
4/*
5 * TLB flushing:
6 *
7 * - flush_tlb_all() flushes all processes TLBs
8 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
9 * - flush_tlb_page(vma, vmaddr) flushes one page
10 * - flush_tlb_range(vma, start, end) flushes a range of pages
11 * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
12 */
13extern void local_flush_tlb_all(void);
14extern void local_flush_tlb_mm(struct mm_struct *mm);
15extern void local_flush_tlb_range(struct vm_area_struct *vma,
16 unsigned long start,
17 unsigned long end);
18extern void local_flush_tlb_page(struct vm_area_struct *vma,
19 unsigned long page);
20extern void local_flush_tlb_kernel_range(unsigned long start,
21 unsigned long end);
22extern void local_flush_tlb_one(unsigned long asid, unsigned long page);
23
24extern void __flush_tlb_global(void);
25
26#ifdef CONFIG_SMP
27
28extern void flush_tlb_all(void);
29extern void flush_tlb_mm(struct mm_struct *mm);
30extern void flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
31 unsigned long end);
32extern void flush_tlb_page(struct vm_area_struct *vma, unsigned long page);
33extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
34extern void flush_tlb_one(unsigned long asid, unsigned long page);
35
36#else
37
38#define flush_tlb_all() local_flush_tlb_all()
39#define flush_tlb_mm(mm) local_flush_tlb_mm(mm)
40#define flush_tlb_page(vma, page) local_flush_tlb_page(vma, page)
41#define flush_tlb_one(asid, page) local_flush_tlb_one(asid, page)
42
43#define flush_tlb_range(vma, start, end) \
44 local_flush_tlb_range(vma, start, end)
45
46#define flush_tlb_kernel_range(start, end) \
47 local_flush_tlb_kernel_range(start, end)
48
49#endif /* CONFIG_SMP */
50
51#endif /* __ASM_SH_TLBFLUSH_H */