blob: 40c9e5a13ff11cef90afffff393ed536e07dcdb1 [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
Paul Mackerras047ea782005-11-19 20:17:32 +11005#ifndef CONFIG_PPC64
6#include <asm-ppc/mmu_context.h>
7#else
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/kernel.h>
10#include <linux/mm.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040011#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/mmu.h>
13#include <asm/cputable.h>
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +020014#include <asm-generic/mm_hooks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16/*
17 * Copyright (C) 2001 PPC 64 Team, IBM Corp
18 *
19 * This program is free software; you can redistribute it and/or
20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version
22 * 2 of the License, or (at your option) any later version.
23 */
24
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110025static inline void enter_lazy_tlb(struct mm_struct *mm,
26 struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
28}
29
Paul Mackerras1729dc72006-06-29 16:16:15 +100030/*
31 * The proto-VSID space has 2^35 - 1 segments available for user mappings.
32 * Each segment contains 2^28 bytes. Each context maps 2^44 bytes,
33 * so we can support 2^19-1 contexts (19 == 35 + 28 - 44).
34 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define NO_CONTEXT 0
Paul Mackerras1729dc72006-06-29 16:16:15 +100036#define MAX_CONTEXT ((1UL << 19) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38extern int init_new_context(struct task_struct *tsk, struct mm_struct *mm);
39extern void destroy_context(struct mm_struct *mm);
40
41extern void switch_stab(struct task_struct *tsk, struct mm_struct *mm);
42extern void switch_slb(struct task_struct *tsk, struct mm_struct *mm);
43
44/*
45 * switch_mm is the entry point called from the architecture independent
46 * code in kernel/sched.c
47 */
48static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
49 struct task_struct *tsk)
50{
51 if (!cpu_isset(smp_processor_id(), next->cpu_vm_mask))
52 cpu_set(smp_processor_id(), next->cpu_vm_mask);
53
54 /* No need to flush userspace segments if the mm doesnt change */
55 if (prev == next)
56 return;
57
58#ifdef CONFIG_ALTIVEC
59 if (cpu_has_feature(CPU_FTR_ALTIVEC))
60 asm volatile ("dssall");
61#endif /* CONFIG_ALTIVEC */
62
63 if (cpu_has_feature(CPU_FTR_SLB))
64 switch_slb(tsk, next);
65 else
66 switch_stab(tsk, next);
67}
68
69#define deactivate_mm(tsk,mm) do { } while (0)
70
71/*
72 * After we have set current->mm to a new value, this activates
73 * the context for the new mm so we see the new mappings.
74 */
75static inline void activate_mm(struct mm_struct *prev, struct mm_struct *next)
76{
77 unsigned long flags;
78
79 local_irq_save(flags);
80 switch_mm(prev, next, current);
81 local_irq_restore(flags);
82}
83
Paul Mackerras047ea782005-11-19 20:17:32 +110084#endif /* CONFIG_PPC64 */
Arnd Bergmann88ced032005-12-16 22:43:46 +010085#endif /* __KERNEL__ */
Paul Mackerras047ea782005-11-19 20:17:32 +110086#endif /* __ASM_POWERPC_MMU_CONTEXT_H */