blob: b7063669f972b04238c16c945c34987a67e81524 [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 */
Kumar Gala80a7cc62007-07-03 03:22:05 -050017extern void mmu_context_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018extern int init_new_context(struct task_struct *tsk, struct mm_struct *mm);
19extern void destroy_context(struct mm_struct *mm);
20
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000021extern void switch_mmu_context(struct mm_struct *prev, struct mm_struct *next);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022extern void switch_stab(struct task_struct *tsk, struct mm_struct *mm);
23extern void switch_slb(struct task_struct *tsk, struct mm_struct *mm);
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000024extern void set_context(unsigned long id, pgd_t *pgd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/*
27 * switch_mm is the entry point called from the architecture independent
28 * code in kernel/sched.c
29 */
30static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
31 struct task_struct *tsk)
32{
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000033 /* Mark this context has been used on the new CPU */
Rusty Russell56aa4122009-03-15 18:16:43 +000034 cpumask_set_cpu(smp_processor_id(), mm_cpumask(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000036 /* 32-bit keeps track of the current PGDIR in the thread struct */
37#ifdef CONFIG_PPC32
38 tsk->thread.pgdir = next->pgd;
39#endif /* CONFIG_PPC32 */
40
41 /* Nothing else to do if we aren't actually switching */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 if (prev == next)
43 return;
44
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000045 /* We must stop all altivec streams before changing the HW
46 * context
47 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#ifdef CONFIG_ALTIVEC
49 if (cpu_has_feature(CPU_FTR_ALTIVEC))
50 asm volatile ("dssall");
51#endif /* CONFIG_ALTIVEC */
52
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000053 /* The actual HW switching method differs between the various
54 * sub architectures.
55 */
56#ifdef CONFIG_PPC_STD_MMU_64
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 if (cpu_has_feature(CPU_FTR_SLB))
58 switch_slb(tsk, next);
59 else
60 switch_stab(tsk, next);
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000061#else
62 /* Out of line for now */
63 switch_mmu_context(prev, next);
64#endif
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68#define deactivate_mm(tsk,mm) do { } while (0)
69
70/*
71 * After we have set current->mm to a new value, this activates
72 * the context for the new mm so we see the new mappings.
73 */
74static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next)
75{
76 unsigned long flags;
77
78 local_irq_save(flags);
79 switch_mm(prev, next, current);
80 local_irq_restore(flags);
81}
82
Benjamin Herrenschmidt5e696612008-12-18 19:13:24 +000083/* We don't currently use enter_lazy_tlb() for anything */
84static inline void enter_lazy_tlb(struct mm_struct *mm,
85 struct task_struct *tsk)
86{
87}
88
Arnd Bergmann88ced032005-12-16 22:43:46 +010089#endif /* __KERNEL__ */
Paul Mackerras047ea782005-11-19 20:17:32 +110090#endif /* __ASM_POWERPC_MMU_CONTEXT_H */