blob: 4c2fbf48c9c43fe2fa0a7384bc55c576d6dfc23c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-s390/mmu_context.h
3 *
4 * S390 version
5 *
6 * Derived from "include/asm-i386/mmu_context.h"
7 */
8
9#ifndef __S390_MMU_CONTEXT_H
10#define __S390_MMU_CONTEXT_H
11
Gerald Schaeferc1821c22007-02-05 21:18:17 +010012#include <asm/pgalloc.h>
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010013#include <asm/uaccess.h>
Jeremy Fitzhardinged6dd61c2007-05-02 19:27:14 +020014#include <asm-generic/mm_hooks.h>
15
Martin Schwidefsky6f457e12008-01-26 14:10:58 +010016static inline int init_new_context(struct task_struct *tsk,
17 struct mm_struct *mm)
18{
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010019 mm->context.asce_bits = _ASCE_TABLE_LENGTH | _ASCE_USER_BITS;
Martin Schwidefsky6f457e12008-01-26 14:10:58 +010020#ifdef CONFIG_64BIT
Martin Schwidefsky6252d702008-02-09 18:24:37 +010021 mm->context.asce_bits |= _ASCE_TYPE_REGION3;
Martin Schwidefsky6f457e12008-01-26 14:10:58 +010022#endif
Carsten Otte402b0862008-03-25 18:47:10 +010023 if (current->mm->context.pgstes) {
24 mm->context.noexec = 0;
25 mm->context.pgstes = 1;
26 } else {
27 mm->context.noexec = s390_noexec;
28 mm->context.pgstes = 0;
29 }
Martin Schwidefsky6252d702008-02-09 18:24:37 +010030 mm->context.asce_limit = STACK_TOP_MAX;
31 crst_table_init((unsigned long *) mm->pgd, pgd_entry_type(mm));
Martin Schwidefsky6f457e12008-01-26 14:10:58 +010032 return 0;
33}
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#define destroy_context(mm) do { } while (0)
36
Gerald Schaeferc1821c22007-02-05 21:18:17 +010037#ifndef __s390x__
38#define LCTL_OPCODE "lctl"
Gerald Schaeferc1821c22007-02-05 21:18:17 +010039#else
40#define LCTL_OPCODE "lctlg"
Gerald Schaeferc1821c22007-02-05 21:18:17 +010041#endif
42
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020043static inline void update_mm(struct mm_struct *mm, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010045 pgd_t *pgd = mm->pgd;
46
47 S390_lowcore.user_asce = mm->context.asce_bits | __pa(pgd);
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020048 if (switch_amode) {
49 /* Load primary space page table origin. */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010050 pgd = mm->context.noexec ? get_shadow_table(pgd) : pgd;
51 S390_lowcore.user_exec_asce = mm->context.asce_bits | __pa(pgd);
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020052 asm volatile(LCTL_OPCODE" 1,1,%0\n"
53 : : "m" (S390_lowcore.user_exec_asce) );
54 } else
55 /* Load home space page table origin. */
56 asm volatile(LCTL_OPCODE" 13,13,%0"
57 : : "m" (S390_lowcore.user_asce) );
Martin Schwidefsky6252d702008-02-09 18:24:37 +010058 set_fs(current->thread.mm_segment);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
61static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
Gerald Schaeferc1821c22007-02-05 21:18:17 +010062 struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063{
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 cpu_set(smp_processor_id(), next->cpu_vm_mask);
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020065 update_mm(next, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Martin Schwidefsky3610cce2007-10-22 12:52:47 +020068#define enter_lazy_tlb(mm,tsk) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define deactivate_mm(tsk,mm) do { } while (0)
70
Adrian Bunk4448aaf2005-11-08 21:34:42 -080071static inline void activate_mm(struct mm_struct *prev,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 struct mm_struct *next)
73{
74 switch_mm(prev, next, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Gerald Schaeferc1821c22007-02-05 21:18:17 +010077#endif /* __S390_MMU_CONTEXT_H */