hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 *  arch/arm/include/asm/tlb.h
 *
 *  Copyright (C) 2002 Russell King
 *
 *  Experimentation shows that on a StrongARM, it appears to be faster
 *  to use the "invalidate whole tlb" rather than "invalidate single
 *  tlb" for this.
 *
 *  This appears true for both the process fork+exit case, as well as
 *  the munmap-large-area case.
 */
#ifndef __ASMARM_TLB_H
#define __ASMARM_TLB_H
 
#include <asm/cacheflush.h>
 
#ifndef CONFIG_MMU
 
#include <linux/pagemap.h>
 
#define tlb_flush(tlb)    ((void) tlb)
 
#include <asm-generic/tlb.h>
 
#else /* !CONFIG_MMU */
 
#include <linux/swap.h>
#include <asm/tlbflush.h>
 
static inline void __tlb_remove_table(void *_table)
{
   free_page_and_swap_cache((struct page *)_table);
}
 
#include <asm-generic/tlb.h>
 
static inline void
__pte_free_tlb(struct mmu_gather *tlb, pgtable_t pte, unsigned long addr)
{
   pgtable_pte_page_dtor(pte);
 
#ifndef CONFIG_ARM_LPAE
   /*
    * With the classic ARM MMU, a pte page has two corresponding pmd
    * entries, each covering 1MB.
    */
   addr = (addr & PMD_MASK) + SZ_1M;
   __tlb_adjust_range(tlb, addr - PAGE_SIZE, 2 * PAGE_SIZE);
#endif
 
   tlb_remove_table(tlb, pte);
}
 
static inline void
__pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmdp, unsigned long addr)
{
#ifdef CONFIG_ARM_LPAE
   struct page *page = virt_to_page(pmdp);
 
   pgtable_pmd_page_dtor(page);
   tlb_remove_table(tlb, page);
#endif
}
 
#endif /* CONFIG_MMU */
#endif