diff options
author | Guo Ren <ren_guo@c-sky.com> | 2019-06-18 12:20:10 +0300 |
---|---|---|
committer | Guo Ren <ren_guo@c-sky.com> | 2019-07-19 09:21:36 +0300 |
commit | 9d35dc3006a9865eb5b55cc79df49933601131f8 (patch) | |
tree | 6f16dbd7f5111bcea394079e199bb68701459235 /arch/csky/mm/init.c | |
parent | 4d581034f9086f784a3408575bdb3c201740c6cb (diff) | |
download | linux-9d35dc3006a9865eb5b55cc79df49933601131f8.tar.xz |
csky: Revert mmu ASID mechanism
Current C-SKY ASID mechanism is from mips and it doesn't work well
with multi-cores. ASID per core mechanism is not suitable for C-SKY
SMP tlb maintain operations, eg: tlbi.vas need share the same asid
in all processors and it'll invalid the tlb entry in all cores with
the same asid.
This patch is prepare for new ASID mechanism.
Signed-off-by: Guo Ren <ren_guo@c-sky.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/csky/mm/init.c')
-rw-r--r-- | arch/csky/mm/init.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/csky/mm/init.c b/arch/csky/mm/init.c index 66e597053488..eb0dc9e5065f 100644 --- a/arch/csky/mm/init.c +++ b/arch/csky/mm/init.c @@ -114,8 +114,6 @@ void __init pre_mmu_init(void) TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir); TLBMISS_HANDLER_SETUP_PGD_KERNEL(swapper_pg_dir); - asid_cache(smp_processor_id()) = ASID_FIRST_VERSION; - /* Setup page mask to 4k */ write_mmu_pagemask(0); } |