blob: b34e94d9443583d1bd17729a1230e38adde53479 [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
26static inline void mmu_context_init(void) { }
27#else
28extern void mmu_context_init(void);
29#endif
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*
32 * switch_mm is the entry point called from the architecture independent
33 * code in kernel/sched.c
34 */
35static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
36 struct task_struct *tsk)
37{
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000038 /* Mark this context has been used on the new CPU */
Rusty Russell56aa4122009-03-15 18:16:43 +000039 cpumask_set_cpu(smp_processor_id(), mm_cpumask(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000041 /* 32-bit keeps track of the current PGDIR in the thread struct */
42#ifdef CONFIG_PPC32
43 tsk->thread.pgdir = next->pgd;
44#endif /* CONFIG_PPC32 */
45
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +000046 /* 64-bit Book3E keeps track of current PGD in the PACA */
47#ifdef CONFIG_PPC_BOOK3E_64
48 get_paca()->pgd = next->pgd;
49#endif
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000050 /* Nothing else to do if we aren't actually switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 if (prev == next)
52 return;
53
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000054 /* We must stop all altivec streams before changing the HW
55 * context
56 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#ifdef CONFIG_ALTIVEC
58 if (cpu_has_feature(CPU_FTR_ALTIVEC))
59 asm volatile ("dssall");
60#endif /* CONFIG_ALTIVEC */
61
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000062 /* The actual HW switching method differs between the various
63 * sub architectures.
64 */
65#ifdef CONFIG_PPC_STD_MMU_64
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (cpu_has_feature(CPU_FTR_SLB))
67 switch_slb(tsk, next);
68 else
69 switch_stab(tsk, next);
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000070#else
71 /* Out of line for now */
72 switch_mmu_context(prev, next);
73#endif
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77#define deactivate_mm(tsk,mm) do { } while (0)
78
79/*
80 * After we have set current->mm to a new value, this activates
81 * the context for the new mm so we see the new mappings.
82 */
83static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next)
84{
85 unsigned long flags;
86
87 local_irq_save(flags);
88 switch_mm(prev, next, current);
89 local_irq_restore(flags);
90}
91
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000092/* We don't currently use enter_lazy_tlb() for anything */
93static inline void enter_lazy_tlb(struct mm_struct *mm,
94 struct task_struct *tsk)
95{
Benjamin Herrenschmidt25d21ad2009-07-23 23:15:47 +000096 /* 64-bit Book3E keeps track of current PGD in the PACA */
97#ifdef CONFIG_PPC_BOOK3E_64
98 get_paca()->pgd = NULL;
99#endif
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +0000100}
101
Arnd Bergmann88ced032005-12-16 22:43:46 +0100102#endif /* __KERNEL__ */
Paul Mackerras047ea782005-11-19 20:17:32 +1100103#endif /* __ASM_POWERPC_MMU_CONTEXT_H */