Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Hans-Joachim Picht | 155af2f | 2009-06-16 10:30:52 +0200 | [diff] [blame] | 2 | * Copyright IBM Corp. 1999, 2009 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Hans-Joachim Picht | 155af2f | 2009-06-16 10:30:52 +0200 | [diff] [blame] | 4 | * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __ASM_SYSTEM_H |
| 8 | #define __ASM_SYSTEM_H |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/kernel.h> |
Heiko Carstens | 320c04c | 2008-12-25 13:38:40 +0100 | [diff] [blame] | 11 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <asm/types.h> |
| 13 | #include <asm/ptrace.h> |
| 14 | #include <asm/setup.h> |
Heiko Carstens | 77fa224 | 2005-06-25 14:55:30 -0700 | [diff] [blame] | 15 | #include <asm/processor.h> |
Heiko Carstens | 484875b | 2008-04-30 13:38:43 +0200 | [diff] [blame] | 16 | #include <asm/lowcore.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | #ifdef __KERNEL__ |
| 19 | |
| 20 | struct task_struct; |
| 21 | |
| 22 | extern struct task_struct *__switch_to(void *, void *); |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | static inline void save_fp_regs(s390_fp_regs *fpregs) |
| 25 | { |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 26 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 27 | " std 0,%O0+8(%R0)\n" |
| 28 | " std 2,%O0+24(%R0)\n" |
| 29 | " std 4,%O0+40(%R0)\n" |
| 30 | " std 6,%O0+56(%R0)" |
| 31 | : "=Q" (*fpregs) : "Q" (*fpregs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | if (!MACHINE_HAS_IEEE) |
| 33 | return; |
| 34 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 35 | " stfpc %0\n" |
| 36 | " std 1,%O0+16(%R0)\n" |
| 37 | " std 3,%O0+32(%R0)\n" |
| 38 | " std 5,%O0+48(%R0)\n" |
| 39 | " std 7,%O0+64(%R0)\n" |
| 40 | " std 8,%O0+72(%R0)\n" |
| 41 | " std 9,%O0+80(%R0)\n" |
| 42 | " std 10,%O0+88(%R0)\n" |
| 43 | " std 11,%O0+96(%R0)\n" |
| 44 | " std 12,%O0+104(%R0)\n" |
| 45 | " std 13,%O0+112(%R0)\n" |
| 46 | " std 14,%O0+120(%R0)\n" |
| 47 | " std 15,%O0+128(%R0)\n" |
| 48 | : "=Q" (*fpregs) : "Q" (*fpregs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | static inline void restore_fp_regs(s390_fp_regs *fpregs) |
| 52 | { |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 53 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 54 | " ld 0,%O0+8(%R0)\n" |
| 55 | " ld 2,%O0+24(%R0)\n" |
| 56 | " ld 4,%O0+40(%R0)\n" |
| 57 | " ld 6,%O0+56(%R0)" |
| 58 | : : "Q" (*fpregs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | if (!MACHINE_HAS_IEEE) |
| 60 | return; |
| 61 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 62 | " lfpc %0\n" |
| 63 | " ld 1,%O0+16(%R0)\n" |
| 64 | " ld 3,%O0+32(%R0)\n" |
| 65 | " ld 5,%O0+48(%R0)\n" |
| 66 | " ld 7,%O0+64(%R0)\n" |
| 67 | " ld 8,%O0+72(%R0)\n" |
| 68 | " ld 9,%O0+80(%R0)\n" |
| 69 | " ld 10,%O0+88(%R0)\n" |
| 70 | " ld 11,%O0+96(%R0)\n" |
| 71 | " ld 12,%O0+104(%R0)\n" |
| 72 | " ld 13,%O0+112(%R0)\n" |
| 73 | " ld 14,%O0+120(%R0)\n" |
| 74 | " ld 15,%O0+128(%R0)\n" |
| 75 | : : "Q" (*fpregs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | static inline void save_access_regs(unsigned int *acrs) |
| 79 | { |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 80 | asm volatile("stam 0,15,%0" : "=Q" (*acrs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | static inline void restore_access_regs(unsigned int *acrs) |
| 84 | { |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 85 | asm volatile("lam 0,15,%0" : : "Q" (*acrs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } |
| 87 | |
Heiko Carstens | fdb6d07 | 2010-10-25 16:10:18 +0200 | [diff] [blame^] | 88 | #define switch_to(prev,next,last) do { \ |
| 89 | if (prev == next) \ |
| 90 | break; \ |
| 91 | if (prev->mm) { \ |
| 92 | save_fp_regs(&prev->thread.fp_regs); \ |
| 93 | save_access_regs(&prev->thread.acrs[0]); \ |
| 94 | } \ |
| 95 | if (next->mm) { \ |
| 96 | restore_fp_regs(&next->thread.fp_regs); \ |
| 97 | restore_access_regs(&next->thread.acrs[0]); \ |
| 98 | } \ |
| 99 | prev = __switch_to(prev,next); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } while (0) |
| 101 | |
Martin Schwidefsky | aa5e97c | 2008-12-31 15:11:39 +0100 | [diff] [blame] | 102 | extern void account_vtime(struct task_struct *, struct task_struct *); |
Martin Schwidefsky | 1f1c12a | 2006-01-14 13:21:03 -0800 | [diff] [blame] | 103 | extern void account_tick_vtime(struct task_struct *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Heiko Carstens | 29b08d2 | 2006-12-04 15:40:40 +0100 | [diff] [blame] | 105 | #ifdef CONFIG_PFAULT |
| 106 | extern void pfault_irq_init(void); |
| 107 | extern int pfault_init(void); |
| 108 | extern void pfault_fini(void); |
| 109 | #else /* CONFIG_PFAULT */ |
| 110 | #define pfault_irq_init() do { } while (0) |
| 111 | #define pfault_init() ({-1;}) |
| 112 | #define pfault_fini() do { } while (0) |
| 113 | #endif /* CONFIG_PFAULT */ |
| 114 | |
Martin Schwidefsky | 45e576b | 2008-05-07 09:22:59 +0200 | [diff] [blame] | 115 | extern void cmma_init(void); |
Michael Holzheu | 92fe313 | 2010-03-24 11:49:50 +0100 | [diff] [blame] | 116 | extern int memcpy_real(void *, void *, size_t); |
Martin Schwidefsky | 45e576b | 2008-05-07 09:22:59 +0200 | [diff] [blame] | 117 | |
Heiko Carstens | 5ee24d95 | 2005-06-30 02:58:48 -0700 | [diff] [blame] | 118 | #define finish_arch_switch(prev) do { \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | set_fs(current->thread.mm_segment); \ |
Martin Schwidefsky | aa5e97c | 2008-12-31 15:11:39 +0100 | [diff] [blame] | 120 | account_vtime(prev, current); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } while (0) |
| 122 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 123 | #define nop() asm volatile("nop") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Heiko Carstens | 5a651c9 | 2006-07-17 16:09:18 +0200 | [diff] [blame] | 125 | #define xchg(ptr,x) \ |
| 126 | ({ \ |
| 127 | __typeof__(*(ptr)) __ret; \ |
| 128 | __ret = (__typeof__(*(ptr))) \ |
| 129 | __xchg((unsigned long)(x), (void *)(ptr),sizeof(*(ptr))); \ |
| 130 | __ret; \ |
| 131 | }) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
Heiko Carstens | 210d3a9 | 2007-10-12 16:11:41 +0200 | [diff] [blame] | 133 | extern void __xchg_called_with_bad_pointer(void); |
| 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | static inline unsigned long __xchg(unsigned long x, void * ptr, int size) |
| 136 | { |
| 137 | unsigned long addr, old; |
| 138 | int shift; |
| 139 | |
| 140 | switch (size) { |
| 141 | case 1: |
| 142 | addr = (unsigned long) ptr; |
| 143 | shift = (3 ^ (addr & 3)) << 3; |
| 144 | addr ^= addr & 3; |
| 145 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 146 | " l %0,%4\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 147 | "0: lr 0,%0\n" |
| 148 | " nr 0,%3\n" |
| 149 | " or 0,%2\n" |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 150 | " cs %0,0,%4\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 151 | " jl 0b\n" |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 152 | : "=&d" (old), "=Q" (*(int *) addr) |
| 153 | : "d" (x << shift), "d" (~(255 << shift)), |
| 154 | "Q" (*(int *) addr) : "memory", "cc", "0"); |
Heiko Carstens | 210d3a9 | 2007-10-12 16:11:41 +0200 | [diff] [blame] | 155 | return old >> shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | case 2: |
| 157 | addr = (unsigned long) ptr; |
| 158 | shift = (2 ^ (addr & 2)) << 3; |
| 159 | addr ^= addr & 2; |
| 160 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 161 | " l %0,%4\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 162 | "0: lr 0,%0\n" |
| 163 | " nr 0,%3\n" |
| 164 | " or 0,%2\n" |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 165 | " cs %0,0,%4\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 166 | " jl 0b\n" |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 167 | : "=&d" (old), "=Q" (*(int *) addr) |
| 168 | : "d" (x << shift), "d" (~(65535 << shift)), |
| 169 | "Q" (*(int *) addr) : "memory", "cc", "0"); |
Heiko Carstens | 210d3a9 | 2007-10-12 16:11:41 +0200 | [diff] [blame] | 170 | return old >> shift; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | case 4: |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 172 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 173 | " l %0,%3\n" |
| 174 | "0: cs %0,%2,%3\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 175 | " jl 0b\n" |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 176 | : "=&d" (old), "=Q" (*(int *) ptr) |
| 177 | : "d" (x), "Q" (*(int *) ptr) |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 178 | : "memory", "cc"); |
Heiko Carstens | 210d3a9 | 2007-10-12 16:11:41 +0200 | [diff] [blame] | 179 | return old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | #ifdef __s390x__ |
| 181 | case 8: |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 182 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 183 | " lg %0,%3\n" |
| 184 | "0: csg %0,%2,%3\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 185 | " jl 0b\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | : "=&d" (old), "=m" (*(long *) ptr) |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 187 | : "d" (x), "Q" (*(long *) ptr) |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 188 | : "memory", "cc"); |
Heiko Carstens | 210d3a9 | 2007-10-12 16:11:41 +0200 | [diff] [blame] | 189 | return old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | #endif /* __s390x__ */ |
Heiko Carstens | 210d3a9 | 2007-10-12 16:11:41 +0200 | [diff] [blame] | 191 | } |
| 192 | __xchg_called_with_bad_pointer(); |
| 193 | return x; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | /* |
| 197 | * Atomic compare and exchange. Compare OLD with MEM, if identical, |
| 198 | * store NEW in MEM. Return the initial value in MEM. Success is |
| 199 | * indicated by comparing RETURN with OLD. |
| 200 | */ |
| 201 | |
| 202 | #define __HAVE_ARCH_CMPXCHG 1 |
| 203 | |
Mathieu Desnoyers | fe41301 | 2008-02-07 00:16:24 -0800 | [diff] [blame] | 204 | #define cmpxchg(ptr, o, n) \ |
| 205 | ((__typeof__(*(ptr)))__cmpxchg((ptr), (unsigned long)(o), \ |
| 206 | (unsigned long)(n), sizeof(*(ptr)))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Heiko Carstens | 210d3a9 | 2007-10-12 16:11:41 +0200 | [diff] [blame] | 208 | extern void __cmpxchg_called_with_bad_pointer(void); |
| 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | static inline unsigned long |
| 211 | __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size) |
| 212 | { |
| 213 | unsigned long addr, prev, tmp; |
| 214 | int shift; |
| 215 | |
| 216 | switch (size) { |
| 217 | case 1: |
| 218 | addr = (unsigned long) ptr; |
| 219 | shift = (3 ^ (addr & 3)) << 3; |
| 220 | addr ^= addr & 3; |
| 221 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 222 | " l %0,%2\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 223 | "0: nr %0,%5\n" |
| 224 | " lr %1,%0\n" |
Christian Borntraeger | 1bff7792 | 2010-03-24 11:49:52 +0100 | [diff] [blame] | 225 | " or %0,%3\n" |
| 226 | " or %1,%4\n" |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 227 | " cs %0,%1,%2\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 228 | " jnl 1f\n" |
| 229 | " xr %1,%0\n" |
| 230 | " nr %1,%5\n" |
| 231 | " jnz 0b\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | "1:" |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 233 | : "=&d" (prev), "=&d" (tmp), "=Q" (*(int *) ptr) |
| 234 | : "d" (old << shift), "d" (new << shift), |
| 235 | "d" (~(255 << shift)), "Q" (*(int *) ptr) |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 236 | : "memory", "cc"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | return prev >> shift; |
| 238 | case 2: |
| 239 | addr = (unsigned long) ptr; |
| 240 | shift = (2 ^ (addr & 2)) << 3; |
| 241 | addr ^= addr & 2; |
| 242 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 243 | " l %0,%2\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 244 | "0: nr %0,%5\n" |
| 245 | " lr %1,%0\n" |
Christian Borntraeger | 1bff7792 | 2010-03-24 11:49:52 +0100 | [diff] [blame] | 246 | " or %0,%3\n" |
| 247 | " or %1,%4\n" |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 248 | " cs %0,%1,%2\n" |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 249 | " jnl 1f\n" |
| 250 | " xr %1,%0\n" |
| 251 | " nr %1,%5\n" |
| 252 | " jnz 0b\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | "1:" |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 254 | : "=&d" (prev), "=&d" (tmp), "=Q" (*(int *) ptr) |
| 255 | : "d" (old << shift), "d" (new << shift), |
| 256 | "d" (~(65535 << shift)), "Q" (*(int *) ptr) |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 257 | : "memory", "cc"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | return prev >> shift; |
| 259 | case 4: |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 260 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 261 | " cs %0,%3,%1\n" |
| 262 | : "=&d" (prev), "=Q" (*(int *) ptr) |
| 263 | : "0" (old), "d" (new), "Q" (*(int *) ptr) |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 264 | : "memory", "cc"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | return prev; |
| 266 | #ifdef __s390x__ |
| 267 | case 8: |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 268 | asm volatile( |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 269 | " csg %0,%3,%1\n" |
| 270 | : "=&d" (prev), "=Q" (*(long *) ptr) |
| 271 | : "0" (old), "d" (new), "Q" (*(long *) ptr) |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 272 | : "memory", "cc"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | return prev; |
| 274 | #endif /* __s390x__ */ |
| 275 | } |
Heiko Carstens | 210d3a9 | 2007-10-12 16:11:41 +0200 | [diff] [blame] | 276 | __cmpxchg_called_with_bad_pointer(); |
| 277 | return old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | /* |
| 281 | * Force strict CPU ordering. |
| 282 | * And yes, this is required on UP too when we're talking |
| 283 | * to devices. |
| 284 | * |
| 285 | * This is very similar to the ppc eieio/sync instruction in that is |
| 286 | * does a checkpoint syncronisation & makes sure that |
| 287 | * all memory ops have completed wrt other CPU's ( see 7-15 POP DJB ). |
| 288 | */ |
| 289 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 290 | #define eieio() asm volatile("bcr 15,0" : : : "memory") |
| 291 | #define SYNC_OTHER_CORES(x) eieio() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | #define mb() eieio() |
| 293 | #define rmb() eieio() |
| 294 | #define wmb() eieio() |
| 295 | #define read_barrier_depends() do { } while(0) |
| 296 | #define smp_mb() mb() |
| 297 | #define smp_rmb() rmb() |
| 298 | #define smp_wmb() wmb() |
| 299 | #define smp_read_barrier_depends() read_barrier_depends() |
| 300 | #define smp_mb__before_clear_bit() smp_mb() |
| 301 | #define smp_mb__after_clear_bit() smp_mb() |
| 302 | |
| 303 | |
| 304 | #define set_mb(var, value) do { var = value; mb(); } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | #ifdef __s390x__ |
| 307 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 308 | #define __ctl_load(array, low, high) ({ \ |
| 309 | typedef struct { char _[sizeof(array)]; } addrtype; \ |
| 310 | asm volatile( \ |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 311 | " lctlg %1,%2,%0\n" \ |
| 312 | : : "Q" (*(addrtype *)(&array)), \ |
| 313 | "i" (low), "i" (high)); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | }) |
| 315 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 316 | #define __ctl_store(array, low, high) ({ \ |
| 317 | typedef struct { char _[sizeof(array)]; } addrtype; \ |
| 318 | asm volatile( \ |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 319 | " stctg %1,%2,%0\n" \ |
| 320 | : "=Q" (*(addrtype *)(&array)) \ |
| 321 | : "i" (low), "i" (high)); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | }) |
| 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | #else /* __s390x__ */ |
| 325 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 326 | #define __ctl_load(array, low, high) ({ \ |
| 327 | typedef struct { char _[sizeof(array)]; } addrtype; \ |
| 328 | asm volatile( \ |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 329 | " lctl %1,%2,%0\n" \ |
| 330 | : : "Q" (*(addrtype *)(&array)), \ |
| 331 | "i" (low), "i" (high)); \ |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 332 | }) |
| 333 | |
| 334 | #define __ctl_store(array, low, high) ({ \ |
| 335 | typedef struct { char _[sizeof(array)]; } addrtype; \ |
| 336 | asm volatile( \ |
Martin Schwidefsky | 987bcda | 2010-02-26 22:37:31 +0100 | [diff] [blame] | 337 | " stctl %1,%2,%0\n" \ |
| 338 | : "=Q" (*(addrtype *)(&array)) \ |
| 339 | : "i" (low), "i" (high)); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | }) |
| 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | #endif /* __s390x__ */ |
| 343 | |
Martin Schwidefsky | 94c12cc | 2006-09-28 16:56:43 +0200 | [diff] [blame] | 344 | #define __ctl_set_bit(cr, bit) ({ \ |
| 345 | unsigned long __dummy; \ |
| 346 | __ctl_store(__dummy, cr, cr); \ |
| 347 | __dummy |= 1UL << (bit); \ |
| 348 | __ctl_load(__dummy, cr, cr); \ |
| 349 | }) |
| 350 | |
| 351 | #define __ctl_clear_bit(cr, bit) ({ \ |
| 352 | unsigned long __dummy; \ |
| 353 | __ctl_store(__dummy, cr, cr); \ |
| 354 | __dummy &= ~(1UL << (bit)); \ |
| 355 | __ctl_load(__dummy, cr, cr); \ |
| 356 | }) |
| 357 | |
Heiko Carstens | 1f194a4 | 2006-07-03 00:24:46 -0700 | [diff] [blame] | 358 | #include <linux/irqflags.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
Mathieu Desnoyers | fe41301 | 2008-02-07 00:16:24 -0800 | [diff] [blame] | 360 | #include <asm-generic/cmpxchg-local.h> |
| 361 | |
| 362 | static inline unsigned long __cmpxchg_local(volatile void *ptr, |
| 363 | unsigned long old, |
| 364 | unsigned long new, int size) |
| 365 | { |
| 366 | switch (size) { |
| 367 | case 1: |
| 368 | case 2: |
| 369 | case 4: |
| 370 | #ifdef __s390x__ |
| 371 | case 8: |
| 372 | #endif |
| 373 | return __cmpxchg(ptr, old, new, size); |
| 374 | default: |
| 375 | return __cmpxchg_local_generic(ptr, old, new, size); |
| 376 | } |
| 377 | |
| 378 | return old; |
| 379 | } |
| 380 | |
| 381 | /* |
| 382 | * cmpxchg_local and cmpxchg64_local are atomic wrt current CPU. Always make |
| 383 | * them available. |
| 384 | */ |
| 385 | #define cmpxchg_local(ptr, o, n) \ |
| 386 | ((__typeof__(*(ptr)))__cmpxchg_local((ptr), (unsigned long)(o), \ |
| 387 | (unsigned long)(n), sizeof(*(ptr)))) |
| 388 | #ifdef __s390x__ |
| 389 | #define cmpxchg64_local(ptr, o, n) \ |
| 390 | ({ \ |
| 391 | BUILD_BUG_ON(sizeof(*(ptr)) != 8); \ |
| 392 | cmpxchg_local((ptr), (o), (n)); \ |
| 393 | }) |
| 394 | #else |
| 395 | #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n)) |
| 396 | #endif |
| 397 | |
Heiko Carstens | 77fa224 | 2005-06-25 14:55:30 -0700 | [diff] [blame] | 398 | /* |
| 399 | * Use to set psw mask except for the first byte which |
| 400 | * won't be changed by this function. |
| 401 | */ |
| 402 | static inline void |
| 403 | __set_psw_mask(unsigned long mask) |
| 404 | { |
David Howells | df9ee29 | 2010-10-07 14:08:55 +0100 | [diff] [blame] | 405 | __load_psw_mask(mask | (arch_local_save_flags() & ~(-1UL >> 8))); |
Heiko Carstens | 77fa224 | 2005-06-25 14:55:30 -0700 | [diff] [blame] | 406 | } |
| 407 | |
Gerald Schaefer | c1821c2 | 2007-02-05 21:18:17 +0100 | [diff] [blame] | 408 | #define local_mcck_enable() __set_psw_mask(psw_kernel_bits) |
| 409 | #define local_mcck_disable() __set_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK) |
Heiko Carstens | 77fa224 | 2005-06-25 14:55:30 -0700 | [diff] [blame] | 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | #ifdef CONFIG_SMP |
| 412 | |
| 413 | extern void smp_ctl_set_bit(int cr, int bit); |
| 414 | extern void smp_ctl_clear_bit(int cr, int bit); |
| 415 | #define ctl_set_bit(cr, bit) smp_ctl_set_bit(cr, bit) |
| 416 | #define ctl_clear_bit(cr, bit) smp_ctl_clear_bit(cr, bit) |
| 417 | |
| 418 | #else |
| 419 | |
| 420 | #define ctl_set_bit(cr, bit) __ctl_set_bit(cr, bit) |
| 421 | #define ctl_clear_bit(cr, bit) __ctl_clear_bit(cr, bit) |
| 422 | |
| 423 | #endif /* CONFIG_SMP */ |
| 424 | |
Heiko Carstens | 484875b | 2008-04-30 13:38:43 +0200 | [diff] [blame] | 425 | static inline unsigned int stfl(void) |
| 426 | { |
| 427 | asm volatile( |
| 428 | " .insn s,0xb2b10000,0(0)\n" /* stfl */ |
| 429 | "0:\n" |
| 430 | EX_TABLE(0b,0b)); |
| 431 | return S390_lowcore.stfl_fac_list; |
| 432 | } |
| 433 | |
Heiko Carstens | 320c04c | 2008-12-25 13:38:40 +0100 | [diff] [blame] | 434 | static inline int __stfle(unsigned long long *list, int doublewords) |
| 435 | { |
| 436 | typedef struct { unsigned long long _[doublewords]; } addrtype; |
| 437 | register unsigned long __nr asm("0") = doublewords - 1; |
| 438 | |
| 439 | asm volatile(".insn s,0xb2b00000,%0" /* stfle */ |
| 440 | : "=m" (*(addrtype *) list), "+d" (__nr) : : "cc"); |
| 441 | return __nr + 1; |
| 442 | } |
| 443 | |
| 444 | static inline int stfle(unsigned long long *list, int doublewords) |
| 445 | { |
| 446 | if (!(stfl() & (1UL << 24))) |
| 447 | return -EOPNOTSUPP; |
| 448 | return __stfle(list, doublewords); |
| 449 | } |
| 450 | |
Heiko Carstens | 2e5061e | 2008-04-30 13:38:45 +0200 | [diff] [blame] | 451 | static inline unsigned short stap(void) |
| 452 | { |
| 453 | unsigned short cpu_address; |
| 454 | |
| 455 | asm volatile("stap %0" : "=m" (cpu_address)); |
| 456 | return cpu_address; |
| 457 | } |
| 458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | extern void (*_machine_restart)(char *command); |
| 460 | extern void (*_machine_halt)(void); |
| 461 | extern void (*_machine_power_off)(void); |
| 462 | |
| 463 | #define arch_align_stack(x) (x) |
| 464 | |
Hans-Joachim Picht | 155af2f | 2009-06-16 10:30:52 +0200 | [diff] [blame] | 465 | static inline int tprot(unsigned long addr) |
| 466 | { |
| 467 | int rc = -EFAULT; |
| 468 | |
| 469 | asm volatile( |
| 470 | " tprot 0(%1),0\n" |
| 471 | "0: ipm %0\n" |
| 472 | " srl %0,28\n" |
| 473 | "1:\n" |
| 474 | EX_TABLE(0b,1b) |
| 475 | : "+d" (rc) : "a" (addr) : "cc"); |
| 476 | return rc; |
| 477 | } |
| 478 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | #endif /* __KERNEL__ */ |
| 480 | |
| 481 | #endif |