blob: a73668a5f30d339a5b0513ac234536d1206caaa7 [file] [log] [blame]
Paul Mackerras047ea782005-11-19 20:17:32 +11001#ifndef __ASM_POWERPC_MMU_CONTEXT_H
2#define __ASM_POWERPC_MMU_CONTEXT_H
Arnd Bergmann88ced032005-12-16 22:43:46 +01003#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +00005#include <linux/kernel.h>
6#include <linux/mm.h>
7#include <linux/sched.h>
8#include <linux/spinlock.h>
Kumar Gala80a7cc62007-07-03 03:22:05 -05009#include <asm/mmu.h>
10#include <asm/cputable.h>
11#include <asm-generic/mm_hooks.h>
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000012#include <asm/cputhreads.h>
Kumar Gala80a7cc62007-07-03 03:22:05 -050013
14/*
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000015 * Most if the context management is out of line
Kumar Gala80a7cc62007-07-03 03:22:05 -050016 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017extern int init_new_context(struct task_struct *tsk, struct mm_struct *mm);
18extern void destroy_context(struct mm_struct *mm);
19
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000020extern void switch_mmu_context(struct mm_struct *prev, struct mm_struct *next);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021extern void switch_stab(struct task_struct *tsk, struct mm_struct *mm);
22extern void switch_slb(struct task_struct *tsk, struct mm_struct *mm);
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000023extern void set_context(unsigned long id, pgd_t *pgd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Benjamin Herrenschmidt6f0ef0f2009-07-23 23:15:26 +000025#ifdef CONFIG_PPC_BOOK3S_64
Alexander Grafe85a4712009-11-02 12:02:30 +000026extern int __init_new_context(void);
27extern void __destroy_context(int context_id);
Benjamin Herrenschmidt6f0ef0f2009-07-23 23:15:26 +000028static inline void mmu_context_init(void) { }
29#else
Alexander Grafc83ec262010-04-16 00:11:36 +020030extern unsigned long __init_new_context(void);
31extern void __destroy_context(unsigned long context_id);
Benjamin Herrenschmidt6f0ef0f2009-07-23 23:15:26 +000032extern void mmu_context_init(void);
33#endif
34
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000035extern void switch_cop(struct mm_struct *next);
36extern int use_cop(unsigned long acop, struct mm_struct *mm);
37extern void drop_cop(unsigned long acop, struct mm_struct *mm);
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * switch_mm is the entry point called from the architecture independent
41 * code in kernel/sched.c
42 */
43static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
44 struct task_struct *tsk)
45{
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000046 /* Mark this context has been used on the new CPU */
Rusty Russell56aa4122009-03-15 18:16:43 +000047 cpumask_set_cpu(smp_processor_id(), mm_cpumask(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000049 /* 32-bit keeps track of the current PGDIR in the thread struct */
50#ifdef CONFIG_PPC32
51 tsk->thread.pgdir = next->pgd;
52#endif /* CONFIG_PPC32 */
53
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +000054 /* 64-bit Book3E keeps track of current PGD in the PACA */
55#ifdef CONFIG_PPC_BOOK3E_64
56 get_paca()->pgd = next->pgd;
57#endif
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000058 /* Nothing else to do if we aren't actually switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 if (prev == next)
60 return;
61
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000062#ifdef CONFIG_PPC_ICSWX
63 /* Switch coprocessor context only if prev or next uses a coprocessor */
64 if (prev->context.acop || next->context.acop)
65 switch_cop(next);
66#endif /* CONFIG_PPC_ICSWX */
67
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000068 /* We must stop all altivec streams before changing the HW
69 * context
70 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#ifdef CONFIG_ALTIVEC
72 if (cpu_has_feature(CPU_FTR_ALTIVEC))
73 asm volatile ("dssall");
74#endif /* CONFIG_ALTIVEC */
75
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000076 /* The actual HW switching method differs between the various
77 * sub architectures.
78 */
79#ifdef CONFIG_PPC_STD_MMU_64
Matt Evans44ae3ab2011-04-06 19:48:50 +000080 if (mmu_has_feature(MMU_FTR_SLB))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 switch_slb(tsk, next);
82 else
83 switch_stab(tsk, next);
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000084#else
85 /* Out of line for now */
86 switch_mmu_context(prev, next);
87#endif
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91#define deactivate_mm(tsk,mm) do { } while (0)
92
93/*
94 * After we have set current->mm to a new value, this activates
95 * the context for the new mm so we see the new mappings.
96 */
97static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next)
98{
99 unsigned long flags;
100
101 local_irq_save(flags);
102 switch_mm(prev, next, current);
103 local_irq_restore(flags);
104}
105
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +0000106/* We don't currently use enter_lazy_tlb() for anything */
107static inline void enter_lazy_tlb(struct mm_struct *mm,
108 struct task_struct *tsk)
109{
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +0000110 /* 64-bit Book3E keeps track of current PGD in the PACA */
111#ifdef CONFIG_PPC_BOOK3E_64
112 get_paca()->pgd = NULL;
113#endif
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +0000114}
115
Arnd Bergmann88ced032005-12-16 22:43:46 +0100116#endif /* __KERNEL__ */
Paul Mackerras047ea782005-11-19 20:17:32 +1100117#endif /* __ASM_POWERPC_MMU_CONTEXT_H */