blob: 4fb83c1cdb77a206d72136830107e912f83a1dd1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Hans-Joachim Picht155af2f2009-06-16 10:30:52 +02002 * Copyright IBM Corp. 1999, 2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Hans-Joachim Picht155af2f2009-06-16 10:30:52 +02004 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
7#ifndef __ASM_SYSTEM_H
8#define __ASM_SYSTEM_H
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/kernel.h>
Heiko Carstens320c04c2008-12-25 13:38:40 +010011#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/types.h>
13#include <asm/ptrace.h>
14#include <asm/setup.h>
Heiko Carstens77fa2242005-06-25 14:55:30 -070015#include <asm/processor.h>
Heiko Carstens484875b2008-04-30 13:38:43 +020016#include <asm/lowcore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#ifdef __KERNEL__
19
20struct task_struct;
21
22extern struct task_struct *__switch_to(void *, void *);
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024static inline void save_fp_regs(s390_fp_regs *fpregs)
25{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020026 asm volatile(
27 " std 0,8(%1)\n"
28 " std 2,24(%1)\n"
29 " std 4,40(%1)\n"
30 " std 6,56(%1)"
31 : "=m" (*fpregs) : "a" (fpregs), "m" (*fpregs) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 if (!MACHINE_HAS_IEEE)
33 return;
34 asm volatile(
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020035 " stfpc 0(%1)\n"
36 " std 1,16(%1)\n"
37 " std 3,32(%1)\n"
38 " std 5,48(%1)\n"
39 " std 7,64(%1)\n"
40 " std 8,72(%1)\n"
41 " std 9,80(%1)\n"
42 " std 10,88(%1)\n"
43 " std 11,96(%1)\n"
44 " std 12,104(%1)\n"
45 " std 13,112(%1)\n"
46 " std 14,120(%1)\n"
47 " std 15,128(%1)\n"
48 : "=m" (*fpregs) : "a" (fpregs), "m" (*fpregs) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
50
51static inline void restore_fp_regs(s390_fp_regs *fpregs)
52{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020053 asm volatile(
54 " ld 0,8(%0)\n"
55 " ld 2,24(%0)\n"
56 " ld 4,40(%0)\n"
57 " ld 6,56(%0)"
58 : : "a" (fpregs), "m" (*fpregs));
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 if (!MACHINE_HAS_IEEE)
60 return;
61 asm volatile(
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020062 " lfpc 0(%0)\n"
63 " ld 1,16(%0)\n"
64 " ld 3,32(%0)\n"
65 " ld 5,48(%0)\n"
66 " ld 7,64(%0)\n"
67 " ld 8,72(%0)\n"
68 " ld 9,80(%0)\n"
69 " ld 10,88(%0)\n"
70 " ld 11,96(%0)\n"
71 " ld 12,104(%0)\n"
72 " ld 13,112(%0)\n"
73 " ld 14,120(%0)\n"
74 " ld 15,128(%0)\n"
75 : : "a" (fpregs), "m" (*fpregs));
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78static inline void save_access_regs(unsigned int *acrs)
79{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020080 asm volatile("stam 0,15,0(%0)" : : "a" (acrs) : "memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83static inline void restore_access_regs(unsigned int *acrs)
84{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +020085 asm volatile("lam 0,15,0(%0)" : : "a" (acrs));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88#define switch_to(prev,next,last) do { \
89 if (prev == next) \
90 break; \
91 save_fp_regs(&prev->thread.fp_regs); \
92 restore_fp_regs(&next->thread.fp_regs); \
93 save_access_regs(&prev->thread.acrs[0]); \
94 restore_access_regs(&next->thread.acrs[0]); \
95 prev = __switch_to(prev,next); \
96} while (0)
97
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +010098extern void account_vtime(struct task_struct *, struct task_struct *);
Martin Schwidefsky1f1c12a2006-01-14 13:21:03 -080099extern void account_tick_vtime(struct task_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100extern void account_system_vtime(struct task_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Heiko Carstens29b08d22006-12-04 15:40:40 +0100102#ifdef CONFIG_PFAULT
103extern void pfault_irq_init(void);
104extern int pfault_init(void);
105extern void pfault_fini(void);
106#else /* CONFIG_PFAULT */
107#define pfault_irq_init() do { } while (0)
108#define pfault_init() ({-1;})
109#define pfault_fini() do { } while (0)
110#endif /* CONFIG_PFAULT */
111
Martin Schwidefsky45e576b2008-05-07 09:22:59 +0200112#ifdef CONFIG_PAGE_STATES
113extern void cmma_init(void);
114#else
115static inline void cmma_init(void) { }
116#endif
117
Heiko Carstens5ee24d952005-06-30 02:58:48 -0700118#define finish_arch_switch(prev) do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 set_fs(current->thread.mm_segment); \
Martin Schwidefskyaa5e97c2008-12-31 15:11:39 +0100120 account_vtime(prev, current); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121} while (0)
122
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200123#define nop() asm volatile("nop")
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Heiko Carstens5a651c92006-07-17 16:09:18 +0200125#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 Torvalds1da177e2005-04-16 15:20:36 -0700132
Heiko Carstens210d3a92007-10-12 16:11:41 +0200133extern void __xchg_called_with_bad_pointer(void);
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static 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 Schwidefsky94c12cc2006-09-28 16:56:43 +0200146 " l %0,0(%4)\n"
147 "0: lr 0,%0\n"
148 " nr 0,%3\n"
149 " or 0,%2\n"
150 " cs %0,0,0(%4)\n"
151 " jl 0b\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 : "=&d" (old), "=m" (*(int *) addr)
153 : "d" (x << shift), "d" (~(255 << shift)), "a" (addr),
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200154 "m" (*(int *) addr) : "memory", "cc", "0");
Heiko Carstens210d3a92007-10-12 16:11:41 +0200155 return old >> shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 case 2:
157 addr = (unsigned long) ptr;
158 shift = (2 ^ (addr & 2)) << 3;
159 addr ^= addr & 2;
160 asm volatile(
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200161 " l %0,0(%4)\n"
162 "0: lr 0,%0\n"
163 " nr 0,%3\n"
164 " or 0,%2\n"
165 " cs %0,0,0(%4)\n"
166 " jl 0b\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 : "=&d" (old), "=m" (*(int *) addr)
168 : "d" (x << shift), "d" (~(65535 << shift)), "a" (addr),
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200169 "m" (*(int *) addr) : "memory", "cc", "0");
Heiko Carstens210d3a92007-10-12 16:11:41 +0200170 return old >> shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 case 4:
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200172 asm volatile(
173 " l %0,0(%3)\n"
174 "0: cs %0,%2,0(%3)\n"
175 " jl 0b\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 : "=&d" (old), "=m" (*(int *) ptr)
177 : "d" (x), "a" (ptr), "m" (*(int *) ptr)
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200178 : "memory", "cc");
Heiko Carstens210d3a92007-10-12 16:11:41 +0200179 return old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#ifdef __s390x__
181 case 8:
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200182 asm volatile(
183 " lg %0,0(%3)\n"
184 "0: csg %0,%2,0(%3)\n"
185 " jl 0b\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 : "=&d" (old), "=m" (*(long *) ptr)
187 : "d" (x), "a" (ptr), "m" (*(long *) ptr)
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200188 : "memory", "cc");
Heiko Carstens210d3a92007-10-12 16:11:41 +0200189 return old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#endif /* __s390x__ */
Heiko Carstens210d3a92007-10-12 16:11:41 +0200191 }
192 __xchg_called_with_bad_pointer();
193 return x;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
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 Desnoyersfe413012008-02-07 00:16:24 -0800204#define cmpxchg(ptr, o, n) \
205 ((__typeof__(*(ptr)))__cmpxchg((ptr), (unsigned long)(o), \
206 (unsigned long)(n), sizeof(*(ptr))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Heiko Carstens210d3a92007-10-12 16:11:41 +0200208extern void __cmpxchg_called_with_bad_pointer(void);
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210static 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 Schwidefsky94c12cc2006-09-28 16:56:43 +0200222 " l %0,0(%4)\n"
223 "0: nr %0,%5\n"
224 " lr %1,%0\n"
225 " or %0,%2\n"
226 " or %1,%3\n"
227 " cs %0,%1,0(%4)\n"
228 " jnl 1f\n"
229 " xr %1,%0\n"
230 " nr %1,%5\n"
231 " jnz 0b\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 "1:"
233 : "=&d" (prev), "=&d" (tmp)
234 : "d" (old << shift), "d" (new << shift), "a" (ptr),
235 "d" (~(255 << shift))
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200236 : "memory", "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 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 Schwidefsky94c12cc2006-09-28 16:56:43 +0200243 " l %0,0(%4)\n"
244 "0: nr %0,%5\n"
245 " lr %1,%0\n"
246 " or %0,%2\n"
247 " or %1,%3\n"
248 " cs %0,%1,0(%4)\n"
249 " jnl 1f\n"
250 " xr %1,%0\n"
251 " nr %1,%5\n"
252 " jnz 0b\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 "1:"
254 : "=&d" (prev), "=&d" (tmp)
255 : "d" (old << shift), "d" (new << shift), "a" (ptr),
256 "d" (~(65535 << shift))
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200257 : "memory", "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return prev >> shift;
259 case 4:
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200260 asm volatile(
261 " cs %0,%2,0(%3)\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 : "=&d" (prev) : "0" (old), "d" (new), "a" (ptr)
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200263 : "memory", "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return prev;
265#ifdef __s390x__
266 case 8:
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200267 asm volatile(
268 " csg %0,%2,0(%3)\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 : "=&d" (prev) : "0" (old), "d" (new), "a" (ptr)
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200270 : "memory", "cc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return prev;
272#endif /* __s390x__ */
273 }
Heiko Carstens210d3a92007-10-12 16:11:41 +0200274 __cmpxchg_called_with_bad_pointer();
275 return old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
278/*
279 * Force strict CPU ordering.
280 * And yes, this is required on UP too when we're talking
281 * to devices.
282 *
283 * This is very similar to the ppc eieio/sync instruction in that is
284 * does a checkpoint syncronisation & makes sure that
285 * all memory ops have completed wrt other CPU's ( see 7-15 POP DJB ).
286 */
287
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200288#define eieio() asm volatile("bcr 15,0" : : : "memory")
289#define SYNC_OTHER_CORES(x) eieio()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290#define mb() eieio()
291#define rmb() eieio()
292#define wmb() eieio()
293#define read_barrier_depends() do { } while(0)
294#define smp_mb() mb()
295#define smp_rmb() rmb()
296#define smp_wmb() wmb()
297#define smp_read_barrier_depends() read_barrier_depends()
298#define smp_mb__before_clear_bit() smp_mb()
299#define smp_mb__after_clear_bit() smp_mb()
300
301
302#define set_mb(var, value) do { var = value; mb(); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#ifdef __s390x__
305
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200306#define __ctl_load(array, low, high) ({ \
307 typedef struct { char _[sizeof(array)]; } addrtype; \
308 asm volatile( \
309 " lctlg %1,%2,0(%0)\n" \
310 : : "a" (&array), "i" (low), "i" (high), \
Martin Schwidefskyb57838e2008-06-10 10:03:24 +0200311 "m" (*(addrtype *)(&array))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 })
313
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200314#define __ctl_store(array, low, high) ({ \
315 typedef struct { char _[sizeof(array)]; } addrtype; \
316 asm volatile( \
317 " stctg %2,%3,0(%1)\n" \
Martin Schwidefskyb57838e2008-06-10 10:03:24 +0200318 : "=m" (*(addrtype *)(&array)) \
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200319 : "a" (&array), "i" (low), "i" (high)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 })
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322#else /* __s390x__ */
323
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200324#define __ctl_load(array, low, high) ({ \
325 typedef struct { char _[sizeof(array)]; } addrtype; \
326 asm volatile( \
327 " lctl %1,%2,0(%0)\n" \
328 : : "a" (&array), "i" (low), "i" (high), \
Martin Schwidefskyb57838e2008-06-10 10:03:24 +0200329 "m" (*(addrtype *)(&array))); \
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200330})
331
332#define __ctl_store(array, low, high) ({ \
333 typedef struct { char _[sizeof(array)]; } addrtype; \
334 asm volatile( \
335 " stctl %2,%3,0(%1)\n" \
Martin Schwidefskyb57838e2008-06-10 10:03:24 +0200336 : "=m" (*(addrtype *)(&array)) \
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200337 : "a" (&array), "i" (low), "i" (high)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 })
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340#endif /* __s390x__ */
341
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200342#define __ctl_set_bit(cr, bit) ({ \
343 unsigned long __dummy; \
344 __ctl_store(__dummy, cr, cr); \
345 __dummy |= 1UL << (bit); \
346 __ctl_load(__dummy, cr, cr); \
347})
348
349#define __ctl_clear_bit(cr, bit) ({ \
350 unsigned long __dummy; \
351 __ctl_store(__dummy, cr, cr); \
352 __dummy &= ~(1UL << (bit)); \
353 __ctl_load(__dummy, cr, cr); \
354})
355
Heiko Carstens1f194a42006-07-03 00:24:46 -0700356#include <linux/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Mathieu Desnoyersfe413012008-02-07 00:16:24 -0800358#include <asm-generic/cmpxchg-local.h>
359
360static inline unsigned long __cmpxchg_local(volatile void *ptr,
361 unsigned long old,
362 unsigned long new, int size)
363{
364 switch (size) {
365 case 1:
366 case 2:
367 case 4:
368#ifdef __s390x__
369 case 8:
370#endif
371 return __cmpxchg(ptr, old, new, size);
372 default:
373 return __cmpxchg_local_generic(ptr, old, new, size);
374 }
375
376 return old;
377}
378
379/*
380 * cmpxchg_local and cmpxchg64_local are atomic wrt current CPU. Always make
381 * them available.
382 */
383#define cmpxchg_local(ptr, o, n) \
384 ((__typeof__(*(ptr)))__cmpxchg_local((ptr), (unsigned long)(o), \
385 (unsigned long)(n), sizeof(*(ptr))))
386#ifdef __s390x__
387#define cmpxchg64_local(ptr, o, n) \
388 ({ \
389 BUILD_BUG_ON(sizeof(*(ptr)) != 8); \
390 cmpxchg_local((ptr), (o), (n)); \
391 })
392#else
393#define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n))
394#endif
395
Heiko Carstens77fa2242005-06-25 14:55:30 -0700396/*
397 * Use to set psw mask except for the first byte which
398 * won't be changed by this function.
399 */
400static inline void
401__set_psw_mask(unsigned long mask)
402{
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200403 __load_psw_mask(mask | (__raw_local_irq_stosm(0x00) & ~(-1UL >> 8)));
Heiko Carstens77fa2242005-06-25 14:55:30 -0700404}
405
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100406#define local_mcck_enable() __set_psw_mask(psw_kernel_bits)
407#define local_mcck_disable() __set_psw_mask(psw_kernel_bits & ~PSW_MASK_MCHECK)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409#ifdef CONFIG_SMP
410
411extern void smp_ctl_set_bit(int cr, int bit);
412extern void smp_ctl_clear_bit(int cr, int bit);
413#define ctl_set_bit(cr, bit) smp_ctl_set_bit(cr, bit)
414#define ctl_clear_bit(cr, bit) smp_ctl_clear_bit(cr, bit)
415
416#else
417
418#define ctl_set_bit(cr, bit) __ctl_set_bit(cr, bit)
419#define ctl_clear_bit(cr, bit) __ctl_clear_bit(cr, bit)
420
421#endif /* CONFIG_SMP */
422
Heiko Carstens484875b2008-04-30 13:38:43 +0200423static inline unsigned int stfl(void)
424{
425 asm volatile(
426 " .insn s,0xb2b10000,0(0)\n" /* stfl */
427 "0:\n"
428 EX_TABLE(0b,0b));
429 return S390_lowcore.stfl_fac_list;
430}
431
Heiko Carstens320c04c2008-12-25 13:38:40 +0100432static inline int __stfle(unsigned long long *list, int doublewords)
433{
434 typedef struct { unsigned long long _[doublewords]; } addrtype;
435 register unsigned long __nr asm("0") = doublewords - 1;
436
437 asm volatile(".insn s,0xb2b00000,%0" /* stfle */
438 : "=m" (*(addrtype *) list), "+d" (__nr) : : "cc");
439 return __nr + 1;
440}
441
442static inline int stfle(unsigned long long *list, int doublewords)
443{
444 if (!(stfl() & (1UL << 24)))
445 return -EOPNOTSUPP;
446 return __stfle(list, doublewords);
447}
448
Heiko Carstens2e5061e2008-04-30 13:38:45 +0200449static inline unsigned short stap(void)
450{
451 unsigned short cpu_address;
452
453 asm volatile("stap %0" : "=m" (cpu_address));
454 return cpu_address;
455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457extern void (*_machine_restart)(char *command);
458extern void (*_machine_halt)(void);
459extern void (*_machine_power_off)(void);
460
461#define arch_align_stack(x) (x)
462
Heiko Carstens411788e2007-11-20 11:13:32 +0100463#ifdef CONFIG_TRACE_IRQFLAGS
464extern psw_t sysc_restore_trace_psw;
465extern psw_t io_restore_trace_psw;
466#endif
467
Hans-Joachim Picht155af2f2009-06-16 10:30:52 +0200468static inline int tprot(unsigned long addr)
469{
470 int rc = -EFAULT;
471
472 asm volatile(
473 " tprot 0(%1),0\n"
474 "0: ipm %0\n"
475 " srl %0,28\n"
476 "1:\n"
477 EX_TABLE(0b,1b)
478 : "+d" (rc) : "a" (addr) : "cc");
479 return rc;
480}
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#endif /* __KERNEL__ */
483
484#endif