2019-02-02 08:43:24 +07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/mmu_context.h>
|
|
|
|
|
|
|
|
void get_new_mmu_context(struct mm_struct *mm)
|
|
|
|
{
|
|
|
|
unsigned int cpu;
|
|
|
|
u64 asid;
|
|
|
|
|
|
|
|
cpu = smp_processor_id();
|
|
|
|
asid = asid_cache(cpu);
|
|
|
|
|
|
|
|
if (!((asid += cpu_asid_inc()) & cpu_asid_mask(&cpu_data[cpu]))) {
|
|
|
|
if (cpu_has_vtag_icache)
|
|
|
|
flush_icache_all();
|
|
|
|
local_flush_tlb_all(); /* start new asid cycle */
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_context(cpu, mm) = asid_cache(cpu) = asid;
|
|
|
|
}
|
2019-02-02 08:43:25 +07:00
|
|
|
|
|
|
|
void check_mmu_context(struct mm_struct *mm)
|
|
|
|
{
|
|
|
|
unsigned int cpu = smp_processor_id();
|
|
|
|
|
|
|
|
/* Check if our ASID is of an older version and thus invalid */
|
|
|
|
if ((cpu_context(cpu, mm) ^ asid_cache(cpu)) & asid_version_mask(cpu))
|
|
|
|
get_new_mmu_context(mm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void check_switch_mmu_context(struct mm_struct *mm)
|
|
|
|
{
|
|
|
|
unsigned int cpu = smp_processor_id();
|
|
|
|
|
|
|
|
check_mmu_context(mm);
|
|
|
|
write_c0_entryhi(cpu_asid(cpu, mm));
|
|
|
|
TLBMISS_HANDLER_SETUP_PGD(mm->pgd);
|
|
|
|
}
|