~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/powerpc/include/asm/book3s/64/tlbflush-hash.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _ASM_POWERPC_BOOK3S_64_TLBFLUSH_HASH_H
  3 #define _ASM_POWERPC_BOOK3S_64_TLBFLUSH_HASH_H
  4 
  5 /*
  6  * TLB flushing for 64-bit hash-MMU CPUs
  7  */
  8 
  9 #include <linux/percpu.h>
 10 #include <asm/page.h>
 11 
 12 #define PPC64_TLB_BATCH_NR 192
 13 
 14 struct ppc64_tlb_batch {
 15         int                     active;
 16         unsigned long           index;
 17         struct mm_struct        *mm;
 18         real_pte_t              pte[PPC64_TLB_BATCH_NR];
 19         unsigned long           vpn[PPC64_TLB_BATCH_NR];
 20         unsigned int            psize;
 21         int                     ssize;
 22 };
 23 DECLARE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch);
 24 
 25 extern void __flush_tlb_pending(struct ppc64_tlb_batch *batch);
 26 
 27 #define __HAVE_ARCH_ENTER_LAZY_MMU_MODE
 28 
 29 static inline void arch_enter_lazy_mmu_mode(void)
 30 {
 31         struct ppc64_tlb_batch *batch;
 32 
 33         if (radix_enabled())
 34                 return;
 35         /*
 36          * apply_to_page_range can call us this preempt enabled when
 37          * operating on kernel page tables.
 38          */
 39         preempt_disable();
 40         batch = this_cpu_ptr(&ppc64_tlb_batch);
 41         batch->active = 1;
 42 }
 43 
 44 static inline void arch_leave_lazy_mmu_mode(void)
 45 {
 46         struct ppc64_tlb_batch *batch;
 47 
 48         if (radix_enabled())
 49                 return;
 50         batch = this_cpu_ptr(&ppc64_tlb_batch);
 51 
 52         if (batch->index)
 53                 __flush_tlb_pending(batch);
 54         batch->active = 0;
 55         preempt_enable();
 56 }
 57 
 58 #define arch_flush_lazy_mmu_mode()      do {} while (0)
 59 
 60 extern void hash__tlbiel_all(unsigned int action);
 61 
 62 extern void flush_hash_page(unsigned long vpn, real_pte_t pte, int psize,
 63                             int ssize, unsigned long flags);
 64 extern void flush_hash_range(unsigned long number, int local);
 65 extern void flush_hash_hugepage(unsigned long vsid, unsigned long addr,
 66                                 pmd_t *pmdp, unsigned int psize, int ssize,
 67                                 unsigned long flags);
 68 
 69 struct mmu_gather;
 70 extern void hash__tlb_flush(struct mmu_gather *tlb);
 71 
 72 #ifdef CONFIG_PPC_64S_HASH_MMU
 73 /* Private function for use by PCI IO mapping code */
 74 extern void __flush_hash_table_range(unsigned long start, unsigned long end);
 75 void flush_hash_table_pmd_range(struct mm_struct *mm, pmd_t *pmd, unsigned long addr);
 76 #else
 77 static inline void __flush_hash_table_range(unsigned long start, unsigned long end) { }
 78 #endif
 79 #endif /*  _ASM_POWERPC_BOOK3S_64_TLBFLUSH_HASH_H */
 80 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php