]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/powerpc/include/asm/tlb.h
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-jammy-kernel.git] / arch / powerpc / include / asm / tlb.h
CommitLineData
2874c5fd 1/* SPDX-License-Identifier: GPL-2.0-or-later */
1da177e4 2/*
9a0f78f6 3 * TLB shootdown specifics for powerpc
1da177e4 4 *
9a0f78f6 5 * Copyright (C) 2002 Anton Blanchard, IBM Corp.
1da177e4 6 * Copyright (C) 2002 Paul Mackerras, IBM Corp.
1da177e4 7 */
9a0f78f6
SR
8#ifndef _ASM_POWERPC_TLB_H
9#define _ASM_POWERPC_TLB_H
88ced031 10#ifdef __KERNEL__
1da177e4 11
9a0f78f6 12#ifndef __powerpc64__
1da177e4 13#include <asm/pgtable.h>
9a0f78f6 14#endif
1da177e4 15#include <asm/pgalloc.h>
9a0f78f6 16#ifndef __powerpc64__
1da177e4
LT
17#include <asm/page.h>
18#include <asm/mmu.h>
9a0f78f6 19#endif
1da177e4 20
d4243c17
MD
21#include <linux/pagemap.h>
22
9a0f78f6
SR
23#define tlb_start_vma(tlb, vma) do { } while (0)
24#define tlb_end_vma(tlb, vma) do { } while (0)
fb7332a9 25#define __tlb_remove_tlb_entry __tlb_remove_tlb_entry
9a0f78f6 26
5f307be1 27#define tlb_flush tlb_flush
1da177e4
LT
28extern void tlb_flush(struct mmu_gather *tlb);
29
30/* Get the generic bits... */
31#include <asm-generic/tlb.h>
32
1da177e4
LT
33extern void flush_hash_entry(struct mm_struct *mm, pte_t *ptep,
34 unsigned long address);
35
36static inline void __tlb_remove_tlb_entry(struct mmu_gather *tlb, pte_t *ptep,
c7cc58a1 37 unsigned long address)
1da177e4 38{
68289ae9 39#ifdef CONFIG_PPC_BOOK3S_32
1da177e4
LT
40 if (pte_val(*ptep) & _PAGE_HASHPTE)
41 flush_hash_entry(tlb->mm, ptep, address);
c7cc58a1 42#endif
1da177e4
LT
43}
44
9d4dab11
AK
45#ifdef CONFIG_SMP
46static inline int mm_is_core_local(struct mm_struct *mm)
47{
48 return cpumask_subset(mm_cpumask(mm),
49 topology_sibling_cpumask(smp_processor_id()));
50}
bd77c449 51
a619e59c
BH
52#ifdef CONFIG_PPC_BOOK3S_64
53static inline int mm_is_thread_local(struct mm_struct *mm)
54{
55 if (atomic_read(&mm->context.active_cpus) > 1)
56 return false;
57 return cpumask_test_cpu(smp_processor_id(), mm_cpumask(mm));
58}
0cef77c7
NP
59static inline void mm_reset_thread_local(struct mm_struct *mm)
60{
61 WARN_ON(atomic_read(&mm->context.copros) > 0);
62 /*
63 * It's possible for mm_access to take a reference on mm_users to
64 * access the remote mm from another thread, but it's not allowed
65 * to set mm_cpumask, so mm_users may be > 1 here.
66 */
67 WARN_ON(current->mm != mm);
68 atomic_set(&mm->context.active_cpus, 1);
69 cpumask_clear(mm_cpumask(mm));
70 cpumask_set_cpu(smp_processor_id(), mm_cpumask(mm));
71}
a619e59c 72#else /* CONFIG_PPC_BOOK3S_64 */
bd77c449
AK
73static inline int mm_is_thread_local(struct mm_struct *mm)
74{
75 return cpumask_equal(mm_cpumask(mm),
76 cpumask_of(smp_processor_id()));
77}
a619e59c 78#endif /* !CONFIG_PPC_BOOK3S_64 */
bd77c449 79
a619e59c 80#else /* CONFIG_SMP */
9d4dab11
AK
81static inline int mm_is_core_local(struct mm_struct *mm)
82{
83 return 1;
84}
bd77c449
AK
85
86static inline int mm_is_thread_local(struct mm_struct *mm)
87{
88 return 1;
89}
9d4dab11
AK
90#endif
91
88ced031 92#endif /* __KERNEL__ */
9a0f78f6 93#endif /* __ASM_POWERPC_TLB_H */