blob: 02a1c18cdba3d367730765bdb89cc1d1d0edd9af [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-or-later */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * TLB shootdown specifics for powerpc
4 *
5 * Copyright (C) 2002 Anton Blanchard, IBM Corp.
6 * Copyright (C) 2002 Paul Mackerras, IBM Corp.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007 */
8#ifndef _ASM_POWERPC_TLB_H
9#define _ASM_POWERPC_TLB_H
10#ifdef __KERNEL__
11
12#ifndef __powerpc64__
13#include <asm/pgtable.h>
14#endif
15#include <asm/pgalloc.h>
16#ifndef __powerpc64__
17#include <asm/page.h>
18#include <asm/mmu.h>
19#endif
20
21#include <linux/pagemap.h>
22
23#define tlb_start_vma(tlb, vma) do { } while (0)
24#define tlb_end_vma(tlb, vma) do { } while (0)
25#define __tlb_remove_tlb_entry __tlb_remove_tlb_entry
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000026
David Brazdil0f672f62019-12-10 10:32:29 +000027#define tlb_flush tlb_flush
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000028extern void tlb_flush(struct mmu_gather *tlb);
Olivier Deprez0e641232021-09-23 10:07:05 +020029/*
30 * book3s:
31 * Hash does not use the linux page-tables, so we can avoid
32 * the TLB invalidate for page-table freeing, Radix otoh does use the
33 * page-tables and needs the TLBI.
34 *
35 * nohash:
36 * We still do TLB invalidate in the __pte_free_tlb routine before we
37 * add the page table pages to mmu gather table batch.
38 */
39#define tlb_needs_table_invalidate() radix_enabled()
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000040
41/* Get the generic bits... */
42#include <asm-generic/tlb.h>
43
44extern void flush_hash_entry(struct mm_struct *mm, pte_t *ptep,
45 unsigned long address);
46
47static inline void __tlb_remove_tlb_entry(struct mmu_gather *tlb, pte_t *ptep,
48 unsigned long address)
49{
David Brazdil0f672f62019-12-10 10:32:29 +000050#ifdef CONFIG_PPC_BOOK3S_32
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000051 if (pte_val(*ptep) & _PAGE_HASHPTE)
52 flush_hash_entry(tlb->mm, ptep, address);
53#endif
54}
55
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000056#ifdef CONFIG_SMP
57static inline int mm_is_core_local(struct mm_struct *mm)
58{
59 return cpumask_subset(mm_cpumask(mm),
60 topology_sibling_cpumask(smp_processor_id()));
61}
62
63#ifdef CONFIG_PPC_BOOK3S_64
64static inline int mm_is_thread_local(struct mm_struct *mm)
65{
66 if (atomic_read(&mm->context.active_cpus) > 1)
67 return false;
68 return cpumask_test_cpu(smp_processor_id(), mm_cpumask(mm));
69}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000070#else /* CONFIG_PPC_BOOK3S_64 */
71static inline int mm_is_thread_local(struct mm_struct *mm)
72{
73 return cpumask_equal(mm_cpumask(mm),
74 cpumask_of(smp_processor_id()));
75}
76#endif /* !CONFIG_PPC_BOOK3S_64 */
77
78#else /* CONFIG_SMP */
79static inline int mm_is_core_local(struct mm_struct *mm)
80{
81 return 1;
82}
83
84static inline int mm_is_thread_local(struct mm_struct *mm)
85{
86 return 1;
87}
88#endif
89
90#endif /* __KERNEL__ */
91#endif /* __ASM_POWERPC_TLB_H */