Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * S390 version |
| 3 | * |
| 4 | * Derived from "include/asm-i386/mmu_context.h" |
| 5 | */ |
| 6 | |
| 7 | #ifndef __S390_MMU_CONTEXT_H |
| 8 | #define __S390_MMU_CONTEXT_H |
| 9 | |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 10 | #include <asm/pgalloc.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 11 | #include <linux/uaccess.h> |
Ingo Molnar | 589ee62 | 2017-02-04 00:16:44 +0100 | [diff] [blame] | 12 | #include <linux/mm_types.h> |
Martin Schwidefsky | 050eef3 | 2010-08-24 09:26:21 +0200 | [diff] [blame] | 13 | #include <asm/tlbflush.h> |
David Howells | a0616cd | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 14 | #include <asm/ctl_reg.h> |
Jeremy Fitzhardinge | d6dd61c | 2007-05-02 19:27:14 +0200 | [diff] [blame] | 15 | |
Martin Schwidefsky | 6f457e1 | 2008-01-26 14:10:58 +0100 | [diff] [blame] | 16 | static inline int init_new_context(struct task_struct *tsk, |
| 17 | struct mm_struct *mm) |
| 18 | { |
Martin Schwidefsky | 8ecb1a5 | 2016-03-08 11:54:14 +0100 | [diff] [blame] | 19 | spin_lock_init(&mm->context.pgtable_lock); |
Martin Schwidefsky | 3446c13 | 2016-02-15 14:46:49 +0100 | [diff] [blame] | 20 | INIT_LIST_HEAD(&mm->context.pgtable_list); |
Martin Schwidefsky | 8ecb1a5 | 2016-03-08 11:54:14 +0100 | [diff] [blame] | 21 | spin_lock_init(&mm->context.gmap_lock); |
Martin Schwidefsky | 3446c13 | 2016-02-15 14:46:49 +0100 | [diff] [blame] | 22 | INIT_LIST_HEAD(&mm->context.gmap_list); |
Martin Schwidefsky | 1b948d6 | 2014-04-03 13:55:01 +0200 | [diff] [blame] | 23 | cpumask_clear(&mm->context.cpu_attach_mask); |
Martin Schwidefsky | 64f31d5 | 2016-05-25 09:45:26 +0200 | [diff] [blame] | 24 | atomic_set(&mm->context.flush_count, 0); |
Martin Schwidefsky | 44b6cc8 | 2016-06-13 10:36:00 +0200 | [diff] [blame] | 25 | mm->context.gmap_asce = 0; |
Martin Schwidefsky | 050eef3 | 2010-08-24 09:26:21 +0200 | [diff] [blame] | 26 | mm->context.flush_mm = 0; |
Martin Schwidefsky | 0b46e0a | 2015-04-15 13:23:26 +0200 | [diff] [blame] | 27 | #ifdef CONFIG_PGSTE |
Martin Schwidefsky | 23fefe1 | 2017-06-07 14:10:24 +0200 | [diff] [blame] | 28 | mm->context.alloc_pgste = page_table_allocate_pgste || |
| 29 | test_thread_flag(TIF_PGSTE) || |
| 30 | current->mm->context.alloc_pgste; |
Martin Schwidefsky | 3eabaee | 2013-07-26 15:04:02 +0200 | [diff] [blame] | 31 | mm->context.has_pgste = 0; |
Dominik Dingel | 693ffc0 | 2014-01-14 18:11:14 +0100 | [diff] [blame] | 32 | mm->context.use_skey = 0; |
Claudio Imbrenda | aa824e1 | 2017-04-20 10:03:46 +0200 | [diff] [blame] | 33 | mm->context.use_cmma = 0; |
Martin Schwidefsky | 0b46e0a | 2015-04-15 13:23:26 +0200 | [diff] [blame] | 34 | #endif |
Gerald Schaefer | 723cacb | 2016-04-15 16:38:40 +0200 | [diff] [blame] | 35 | switch (mm->context.asce_limit) { |
| 36 | case 1UL << 42: |
| 37 | /* |
| 38 | * forked 3-level task, fall through to set new asce with new |
| 39 | * mm->pgd |
| 40 | */ |
| 41 | case 0: |
Martin Schwidefsky | 3446c13 | 2016-02-15 14:46:49 +0100 | [diff] [blame] | 42 | /* context created by exec, set asce limit to 4TB */ |
Martin Schwidefsky | 3446c13 | 2016-02-15 14:46:49 +0100 | [diff] [blame] | 43 | mm->context.asce_limit = STACK_TOP_MAX; |
Gerald Schaefer | 723cacb | 2016-04-15 16:38:40 +0200 | [diff] [blame] | 44 | mm->context.asce = __pa(mm->pgd) | _ASCE_TABLE_LENGTH | |
| 45 | _ASCE_USER_BITS | _ASCE_TYPE_REGION3; |
| 46 | break; |
| 47 | case 1UL << 53: |
| 48 | /* forked 4-level task, set new asce with new mm->pgd */ |
| 49 | mm->context.asce = __pa(mm->pgd) | _ASCE_TABLE_LENGTH | |
| 50 | _ASCE_USER_BITS | _ASCE_TYPE_REGION2; |
| 51 | break; |
| 52 | case 1UL << 31: |
| 53 | /* forked 2-level compat task, set new asce with new mm->pgd */ |
| 54 | mm->context.asce = __pa(mm->pgd) | _ASCE_TABLE_LENGTH | |
| 55 | _ASCE_USER_BITS | _ASCE_TYPE_SEGMENT; |
| 56 | /* pgd_alloc() did not increase mm->nr_pmds */ |
Martin Schwidefsky | 3446c13 | 2016-02-15 14:46:49 +0100 | [diff] [blame] | 57 | mm_inc_nr_pmds(mm); |
| 58 | } |
Martin Schwidefsky | 6252d70 | 2008-02-09 18:24:37 +0100 | [diff] [blame] | 59 | crst_table_init((unsigned long *) mm->pgd, pgd_entry_type(mm)); |
Martin Schwidefsky | 6f457e1 | 2008-01-26 14:10:58 +0100 | [diff] [blame] | 60 | return 0; |
| 61 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | #define destroy_context(mm) do { } while (0) |
| 64 | |
Martin Schwidefsky | beef560 | 2014-04-14 15:11:26 +0200 | [diff] [blame] | 65 | static inline void set_user_asce(struct mm_struct *mm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | { |
Gerald Schaefer | 723cacb | 2016-04-15 16:38:40 +0200 | [diff] [blame] | 67 | S390_lowcore.user_asce = mm->context.asce; |
Martin Schwidefsky | f8b1350 | 2014-06-02 14:53:57 +0200 | [diff] [blame] | 68 | if (current->thread.mm_segment.ar4) |
| 69 | __ctl_load(S390_lowcore.user_asce, 7, 7); |
Heiko Carstens | 606aa4a | 2017-02-17 08:12:30 +0100 | [diff] [blame] | 70 | set_cpu_flag(CIF_ASCE_PRIMARY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | } |
| 72 | |
Martin Schwidefsky | beef560 | 2014-04-14 15:11:26 +0200 | [diff] [blame] | 73 | static inline void clear_user_asce(void) |
Martin Schwidefsky | 02a8f3a | 2014-04-03 13:54:59 +0200 | [diff] [blame] | 74 | { |
| 75 | S390_lowcore.user_asce = S390_lowcore.kernel_asce; |
Heiko Carstens | 457f218 | 2014-03-21 10:42:25 +0100 | [diff] [blame] | 76 | |
Martin Schwidefsky | beef560 | 2014-04-14 15:11:26 +0200 | [diff] [blame] | 77 | __ctl_load(S390_lowcore.user_asce, 1, 1); |
Heiko Carstens | 457f218 | 2014-03-21 10:42:25 +0100 | [diff] [blame] | 78 | __ctl_load(S390_lowcore.user_asce, 7, 7); |
| 79 | } |
| 80 | |
Martin Schwidefsky | beef560 | 2014-04-14 15:11:26 +0200 | [diff] [blame] | 81 | static inline void load_kernel_asce(void) |
Heiko Carstens | 457f218 | 2014-03-21 10:42:25 +0100 | [diff] [blame] | 82 | { |
| 83 | unsigned long asce; |
| 84 | |
| 85 | __ctl_store(asce, 1, 1); |
| 86 | if (asce != S390_lowcore.kernel_asce) |
| 87 | __ctl_load(S390_lowcore.kernel_asce, 1, 1); |
Heiko Carstens | 606aa4a | 2017-02-17 08:12:30 +0100 | [diff] [blame] | 88 | set_cpu_flag(CIF_ASCE_PRIMARY); |
Martin Schwidefsky | 02a8f3a | 2014-04-03 13:54:59 +0200 | [diff] [blame] | 89 | } |
| 90 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 92 | struct task_struct *tsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | { |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 94 | int cpu = smp_processor_id(); |
| 95 | |
Gerald Schaefer | 723cacb | 2016-04-15 16:38:40 +0200 | [diff] [blame] | 96 | S390_lowcore.user_asce = next->context.asce; |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 97 | if (prev == next) |
| 98 | return; |
Martin Schwidefsky | 64f31d5 | 2016-05-25 09:45:26 +0200 | [diff] [blame] | 99 | cpumask_set_cpu(cpu, &next->context.cpu_attach_mask); |
| 100 | cpumask_set_cpu(cpu, mm_cpumask(next)); |
Martin Schwidefsky | beef560 | 2014-04-14 15:11:26 +0200 | [diff] [blame] | 101 | /* Clear old ASCE by loading the kernel ASCE. */ |
| 102 | __ctl_load(S390_lowcore.kernel_asce, 1, 1); |
| 103 | __ctl_load(S390_lowcore.kernel_asce, 7, 7); |
Martin Schwidefsky | 64f31d5 | 2016-05-25 09:45:26 +0200 | [diff] [blame] | 104 | cpumask_clear_cpu(cpu, &prev->context.cpu_attach_mask); |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | #define finish_arch_post_lock_switch finish_arch_post_lock_switch |
| 108 | static inline void finish_arch_post_lock_switch(void) |
| 109 | { |
| 110 | struct task_struct *tsk = current; |
| 111 | struct mm_struct *mm = tsk->mm; |
| 112 | |
Martin Schwidefsky | f8b1350 | 2014-06-02 14:53:57 +0200 | [diff] [blame] | 113 | load_kernel_asce(); |
| 114 | if (mm) { |
| 115 | preempt_disable(); |
Martin Schwidefsky | 64f31d5 | 2016-05-25 09:45:26 +0200 | [diff] [blame] | 116 | while (atomic_read(&mm->context.flush_count)) |
Martin Schwidefsky | f8b1350 | 2014-06-02 14:53:57 +0200 | [diff] [blame] | 117 | cpu_relax(); |
Martin Schwidefsky | 53e857f | 2012-09-10 13:00:09 +0200 | [diff] [blame] | 118 | |
Martin Schwidefsky | f8b1350 | 2014-06-02 14:53:57 +0200 | [diff] [blame] | 119 | if (mm->context.flush_mm) |
| 120 | __tlb_flush_mm(mm); |
| 121 | preempt_enable(); |
| 122 | } |
| 123 | set_fs(current->thread.mm_segment); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Martin Schwidefsky | 3610cce | 2007-10-22 12:52:47 +0200 | [diff] [blame] | 126 | #define enter_lazy_tlb(mm,tsk) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | #define deactivate_mm(tsk,mm) do { } while (0) |
| 128 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 129 | static inline void activate_mm(struct mm_struct *prev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | struct mm_struct *next) |
| 131 | { |
Martin Schwidefsky | beef560 | 2014-04-14 15:11:26 +0200 | [diff] [blame] | 132 | switch_mm(prev, next, current); |
Martin Schwidefsky | beef560 | 2014-04-14 15:11:26 +0200 | [diff] [blame] | 133 | set_user_asce(next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Martin Schwidefsky | 0f6f281 | 2012-07-26 08:53:06 +0200 | [diff] [blame] | 136 | static inline void arch_dup_mmap(struct mm_struct *oldmm, |
| 137 | struct mm_struct *mm) |
| 138 | { |
Martin Schwidefsky | 0f6f281 | 2012-07-26 08:53:06 +0200 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | static inline void arch_exit_mmap(struct mm_struct *mm) |
| 142 | { |
| 143 | } |
| 144 | |
Dave Hansen | 62e88b1 | 2014-11-18 10:23:50 -0800 | [diff] [blame] | 145 | static inline void arch_unmap(struct mm_struct *mm, |
| 146 | struct vm_area_struct *vma, |
| 147 | unsigned long start, unsigned long end) |
| 148 | { |
| 149 | } |
| 150 | |
| 151 | static inline void arch_bprm_mm_init(struct mm_struct *mm, |
| 152 | struct vm_area_struct *vma) |
| 153 | { |
| 154 | } |
| 155 | |
Dave Hansen | 1b2ee12 | 2016-02-12 13:02:21 -0800 | [diff] [blame] | 156 | static inline bool arch_vma_access_permitted(struct vm_area_struct *vma, |
Dave Hansen | d61172b | 2016-02-12 13:02:24 -0800 | [diff] [blame] | 157 | bool write, bool execute, bool foreign) |
Dave Hansen | 33a709b | 2016-02-12 13:02:19 -0800 | [diff] [blame] | 158 | { |
| 159 | /* by default, allow everything */ |
| 160 | return true; |
| 161 | } |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 162 | #endif /* __S390_MMU_CONTEXT_H */ |