forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
csky: Use generic asid algorithm to implement switch_mm
Use linux generic asid/vmid algorithm to implement csky switch_mm function. The algorithm is from arm and it could work with SMP system. It'll help reduce tlb flush for switch_mm in task/vm switch. Signed-off-by: Guo Ren <[email protected]> Cc: Arnd Bergmann <[email protected]>
- Loading branch information
Showing
6 changed files
with
74 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
#define __ASM_CSKY_MMU_H | ||
|
||
typedef struct { | ||
atomic64_t asid; | ||
void *vdso; | ||
} mm_context_t; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ obj-y += ioremap.o | |
obj-y += syscache.o | ||
obj-y += tlb.o | ||
obj-y += asid.o | ||
obj-y += context.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
// Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd. | ||
|
||
#include <linux/bitops.h> | ||
#include <linux/sched.h> | ||
#include <linux/slab.h> | ||
#include <linux/mm.h> | ||
|
||
#include <asm/asid.h> | ||
#include <asm/mmu_context.h> | ||
#include <asm/smp.h> | ||
#include <asm/tlbflush.h> | ||
|
||
static DEFINE_PER_CPU(atomic64_t, active_asids); | ||
static DEFINE_PER_CPU(u64, reserved_asids); | ||
|
||
struct asid_info asid_info; | ||
|
||
void check_and_switch_context(struct mm_struct *mm, unsigned int cpu) | ||
{ | ||
asid_check_context(&asid_info, &mm->context.asid, cpu, mm); | ||
} | ||
|
||
static void asid_flush_cpu_ctxt(void) | ||
{ | ||
local_tlb_invalid_all(); | ||
} | ||
|
||
static int asids_init(void) | ||
{ | ||
BUG_ON(((1 << CONFIG_CPU_ASID_BITS) - 1) <= num_possible_cpus()); | ||
|
||
if (asid_allocator_init(&asid_info, CONFIG_CPU_ASID_BITS, 1, | ||
asid_flush_cpu_ctxt)) | ||
panic("Unable to initialize ASID allocator for %lu ASIDs\n", | ||
NUM_ASIDS(&asid_info)); | ||
|
||
asid_info.active = &active_asids; | ||
asid_info.reserved = &reserved_asids; | ||
|
||
pr_info("ASID allocator initialised with %lu entries\n", | ||
NUM_CTXT_ASIDS(&asid_info)); | ||
|
||
return 0; | ||
} | ||
early_initcall(asids_init); |