Linux 5.7.6
[linux/fpc-iii.git] / arch / hexagon / include / asm / mmu_context.h
blobcdc4adc0300ad94c0e8ef2bb92477d1c3e1095e9
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * MM context support for the Hexagon architecture
5 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
6 */
8 #ifndef _ASM_MMU_CONTEXT_H
9 #define _ASM_MMU_CONTEXT_H
11 #include <linux/mm_types.h>
13 #include <asm/setup.h>
14 #include <asm/page.h>
15 #include <asm/pgalloc.h>
16 #include <asm/mem-layout.h>
18 static inline void destroy_context(struct mm_struct *mm)
23 * VM port hides all TLB management, so "lazy TLB" isn't very
24 * meaningful. Even for ports to architectures with visble TLBs,
25 * this is almost invariably a null function.
27 static inline void enter_lazy_tlb(struct mm_struct *mm,
28 struct task_struct *tsk)
33 * Architecture-specific actions, if any, for memory map deactivation.
35 static inline void deactivate_mm(struct task_struct *tsk,
36 struct mm_struct *mm)
40 /**
41 * init_new_context - initialize context related info for new mm_struct instance
42 * @tsk: pointer to a task struct
43 * @mm: pointer to a new mm struct
45 static inline int init_new_context(struct task_struct *tsk,
46 struct mm_struct *mm)
48 /* mm->context is set up by pgd_alloc */
49 return 0;
53 * Switch active mm context
55 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
56 struct task_struct *tsk)
58 int l1;
61 * For virtual machine, we have to update system map if it's been
62 * touched.
64 if (next->context.generation < prev->context.generation) {
65 for (l1 = MIN_KERNEL_SEG; l1 <= max_kernel_seg; l1++)
66 next->pgd[l1] = init_mm.pgd[l1];
68 next->context.generation = prev->context.generation;
71 __vmnewmap((void *)next->context.ptbase);
75 * Activate new memory map for task
77 static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next)
79 unsigned long flags;
81 local_irq_save(flags);
82 switch_mm(prev, next, current_thread_info()->task);
83 local_irq_restore(flags);
86 /* Generic hooks for arch_dup_mmap and arch_exit_mmap */
87 #include <asm-generic/mm_hooks.h>
89 #endif