2016-04-29 13:26:04 +00:00
|
|
|
#ifndef _ASM_POWERPC_BOOK3S_64_TLBFLUSH_H
|
|
|
|
#define _ASM_POWERPC_BOOK3S_64_TLBFLUSH_H
|
|
|
|
|
2016-04-29 13:26:05 +00:00
|
|
|
#define MMU_NO_CONTEXT ~0UL
|
|
|
|
|
|
|
|
|
2016-04-29 13:26:04 +00:00
|
|
|
#include <asm/book3s/64/tlbflush-hash.h>
|
2016-04-29 13:26:05 +00:00
|
|
|
#include <asm/book3s/64/tlbflush-radix.h>
|
2016-04-29 13:26:04 +00:00
|
|
|
|
|
|
|
static inline void flush_tlb_range(struct vm_area_struct *vma,
|
|
|
|
unsigned long start, unsigned long end)
|
|
|
|
{
|
2016-04-29 13:26:05 +00:00
|
|
|
if (radix_enabled())
|
|
|
|
return radix__flush_tlb_range(vma, start, end);
|
2016-04-29 13:26:04 +00:00
|
|
|
return hash__flush_tlb_range(vma, start, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void flush_tlb_kernel_range(unsigned long start,
|
|
|
|
unsigned long end)
|
|
|
|
{
|
2016-04-29 13:26:05 +00:00
|
|
|
if (radix_enabled())
|
|
|
|
return radix__flush_tlb_kernel_range(start, end);
|
2016-04-29 13:26:04 +00:00
|
|
|
return hash__flush_tlb_kernel_range(start, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void local_flush_tlb_mm(struct mm_struct *mm)
|
|
|
|
{
|
2016-04-29 13:26:05 +00:00
|
|
|
if (radix_enabled())
|
|
|
|
return radix__local_flush_tlb_mm(mm);
|
2016-04-29 13:26:04 +00:00
|
|
|
return hash__local_flush_tlb_mm(mm);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void local_flush_tlb_page(struct vm_area_struct *vma,
|
|
|
|
unsigned long vmaddr)
|
|
|
|
{
|
2016-04-29 13:26:05 +00:00
|
|
|
if (radix_enabled())
|
|
|
|
return radix__local_flush_tlb_page(vma, vmaddr);
|
2016-04-29 13:26:04 +00:00
|
|
|
return hash__local_flush_tlb_page(vma, vmaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void flush_tlb_page_nohash(struct vm_area_struct *vma,
|
|
|
|
unsigned long vmaddr)
|
|
|
|
{
|
2016-04-29 13:26:05 +00:00
|
|
|
if (radix_enabled())
|
|
|
|
return radix__flush_tlb_page(vma, vmaddr);
|
2016-04-29 13:26:04 +00:00
|
|
|
return hash__flush_tlb_page_nohash(vma, vmaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void tlb_flush(struct mmu_gather *tlb)
|
|
|
|
{
|
2016-04-29 13:26:05 +00:00
|
|
|
if (radix_enabled())
|
|
|
|
return radix__tlb_flush(tlb);
|
2016-04-29 13:26:04 +00:00
|
|
|
return hash__tlb_flush(tlb);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
static inline void flush_tlb_mm(struct mm_struct *mm)
|
|
|
|
{
|
2016-04-29 13:26:05 +00:00
|
|
|
if (radix_enabled())
|
|
|
|
return radix__flush_tlb_mm(mm);
|
2016-04-29 13:26:04 +00:00
|
|
|
return hash__flush_tlb_mm(mm);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void flush_tlb_page(struct vm_area_struct *vma,
|
|
|
|
unsigned long vmaddr)
|
|
|
|
{
|
2016-04-29 13:26:05 +00:00
|
|
|
if (radix_enabled())
|
|
|
|
return radix__flush_tlb_page(vma, vmaddr);
|
2016-04-29 13:26:04 +00:00
|
|
|
return hash__flush_tlb_page(vma, vmaddr);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define flush_tlb_mm(mm) local_flush_tlb_mm(mm)
|
|
|
|
#define flush_tlb_page(vma, addr) local_flush_tlb_page(vma, addr)
|
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
|
|
|
|
#endif /* _ASM_POWERPC_BOOK3S_64_TLBFLUSH_H */
|