Loading...
1/*
2 * include/asm-s390/processor.h
3 *
4 * S390 version
5 * Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Hartmut Penner (hp@de.ibm.com),
7 * Martin Schwidefsky (schwidefsky@de.ibm.com)
8 *
9 * Derived from "include/asm-i386/processor.h"
10 * Copyright (C) 1994, Linus Torvalds
11 */
12
13#ifndef __ASM_S390_PROCESSOR_H
14#define __ASM_S390_PROCESSOR_H
15
16#include <linux/linkage.h>
17#include <linux/irqflags.h>
18#include <asm/cpu.h>
19#include <asm/page.h>
20#include <asm/ptrace.h>
21#include <asm/setup.h>
22
23/*
24 * Default implementation of macro that returns current
25 * instruction pointer ("program counter").
26 */
27#define current_text_addr() ({ void *pc; asm("basr %0,0" : "=a" (pc)); pc; })
28
29static inline void get_cpu_id(struct cpuid *ptr)
30{
31 asm volatile("stidp %0" : "=Q" (*ptr));
32}
33
34extern void s390_adjust_jiffies(void);
35extern const struct seq_operations cpuinfo_op;
36extern int sysctl_ieee_emulation_warnings;
37
38/*
39 * User space process size: 2GB for 31 bit, 4TB or 8PT for 64 bit.
40 */
41#ifndef CONFIG_64BIT
42
43#define TASK_SIZE (1UL << 31)
44#define TASK_UNMAPPED_BASE (1UL << 30)
45
46#else /* CONFIG_64BIT */
47
48#define TASK_SIZE_OF(tsk) ((tsk)->mm->context.asce_limit)
49#define TASK_UNMAPPED_BASE (test_thread_flag(TIF_31BIT) ? \
50 (1UL << 30) : (1UL << 41))
51#define TASK_SIZE TASK_SIZE_OF(current)
52
53#endif /* CONFIG_64BIT */
54
55#ifndef CONFIG_64BIT
56#define STACK_TOP (1UL << 31)
57#define STACK_TOP_MAX (1UL << 31)
58#else /* CONFIG_64BIT */
59#define STACK_TOP (1UL << (test_thread_flag(TIF_31BIT) ? 31:42))
60#define STACK_TOP_MAX (1UL << 42)
61#endif /* CONFIG_64BIT */
62
63#define HAVE_ARCH_PICK_MMAP_LAYOUT
64
65typedef struct {
66 __u32 ar4;
67} mm_segment_t;
68
69/*
70 * Thread structure
71 */
72struct thread_struct {
73 s390_fp_regs fp_regs;
74 unsigned int acrs[NUM_ACRS];
75 unsigned long ksp; /* kernel stack pointer */
76 mm_segment_t mm_segment;
77 unsigned long gmap_addr; /* address of last gmap fault. */
78 struct per_regs per_user; /* User specified PER registers */
79 struct per_event per_event; /* Cause of the last PER trap */
80 /* pfault_wait is used to block the process on a pfault event */
81 unsigned long pfault_wait;
82 struct list_head list;
83};
84
85typedef struct thread_struct thread_struct;
86
87/*
88 * Stack layout of a C stack frame.
89 */
90#ifndef __PACK_STACK
91struct stack_frame {
92 unsigned long back_chain;
93 unsigned long empty1[5];
94 unsigned long gprs[10];
95 unsigned int empty2[8];
96};
97#else
98struct stack_frame {
99 unsigned long empty1[5];
100 unsigned int empty2[8];
101 unsigned long gprs[10];
102 unsigned long back_chain;
103};
104#endif
105
106#define ARCH_MIN_TASKALIGN 8
107
108#define INIT_THREAD { \
109 .ksp = sizeof(init_stack) + (unsigned long) &init_stack, \
110}
111
112/*
113 * Do necessary setup to start up a new thread.
114 */
115#define start_thread(regs, new_psw, new_stackp) do { \
116 regs->psw.mask = psw_user_bits | PSW_MASK_EA | PSW_MASK_BA; \
117 regs->psw.addr = new_psw | PSW_ADDR_AMODE; \
118 regs->gprs[15] = new_stackp; \
119} while (0)
120
121#define start_thread31(regs, new_psw, new_stackp) do { \
122 regs->psw.mask = psw_user_bits | PSW_MASK_BA; \
123 regs->psw.addr = new_psw | PSW_ADDR_AMODE; \
124 regs->gprs[15] = new_stackp; \
125 __tlb_flush_mm(current->mm); \
126 crst_table_downgrade(current->mm, 1UL << 31); \
127 update_mm(current->mm, current); \
128} while (0)
129
130/* Forward declaration, a strange C thing */
131struct task_struct;
132struct mm_struct;
133struct seq_file;
134
135/* Free all resources held by a thread. */
136extern void release_thread(struct task_struct *);
137extern int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags);
138
139/*
140 * Return saved PC of a blocked thread.
141 */
142extern unsigned long thread_saved_pc(struct task_struct *t);
143
144extern void show_code(struct pt_regs *regs);
145
146unsigned long get_wchan(struct task_struct *p);
147#define task_pt_regs(tsk) ((struct pt_regs *) \
148 (task_stack_page(tsk) + THREAD_SIZE) - 1)
149#define KSTK_EIP(tsk) (task_pt_regs(tsk)->psw.addr)
150#define KSTK_ESP(tsk) (task_pt_regs(tsk)->gprs[15])
151
152static inline unsigned short stap(void)
153{
154 unsigned short cpu_address;
155
156 asm volatile("stap %0" : "=m" (cpu_address));
157 return cpu_address;
158}
159
160/*
161 * Give up the time slice of the virtual PU.
162 */
163static inline void cpu_relax(void)
164{
165 if (MACHINE_HAS_DIAG44)
166 asm volatile("diag 0,0,68");
167 barrier();
168}
169
170static inline void psw_set_key(unsigned int key)
171{
172 asm volatile("spka 0(%0)" : : "d" (key));
173}
174
175/*
176 * Set PSW to specified value.
177 */
178static inline void __load_psw(psw_t psw)
179{
180#ifndef CONFIG_64BIT
181 asm volatile("lpsw %0" : : "Q" (psw) : "cc");
182#else
183 asm volatile("lpswe %0" : : "Q" (psw) : "cc");
184#endif
185}
186
187/*
188 * Set PSW mask to specified value, while leaving the
189 * PSW addr pointing to the next instruction.
190 */
191static inline void __load_psw_mask (unsigned long mask)
192{
193 unsigned long addr;
194 psw_t psw;
195
196 psw.mask = mask;
197
198#ifndef CONFIG_64BIT
199 asm volatile(
200 " basr %0,0\n"
201 "0: ahi %0,1f-0b\n"
202 " st %0,%O1+4(%R1)\n"
203 " lpsw %1\n"
204 "1:"
205 : "=&d" (addr), "=Q" (psw) : "Q" (psw) : "memory", "cc");
206#else /* CONFIG_64BIT */
207 asm volatile(
208 " larl %0,1f\n"
209 " stg %0,%O1+8(%R1)\n"
210 " lpswe %1\n"
211 "1:"
212 : "=&d" (addr), "=Q" (psw) : "Q" (psw) : "memory", "cc");
213#endif /* CONFIG_64BIT */
214}
215
216/*
217 * Rewind PSW instruction address by specified number of bytes.
218 */
219static inline unsigned long __rewind_psw(psw_t psw, unsigned long ilc)
220{
221#ifndef CONFIG_64BIT
222 if (psw.addr & PSW_ADDR_AMODE)
223 /* 31 bit mode */
224 return (psw.addr - ilc) | PSW_ADDR_AMODE;
225 /* 24 bit mode */
226 return (psw.addr - ilc) & ((1UL << 24) - 1);
227#else
228 unsigned long mask;
229
230 mask = (psw.mask & PSW_MASK_EA) ? -1UL :
231 (psw.mask & PSW_MASK_BA) ? (1UL << 31) - 1 :
232 (1UL << 24) - 1;
233 return (psw.addr - ilc) & mask;
234#endif
235}
236
237/*
238 * Function to drop a processor into disabled wait state
239 */
240static inline void __noreturn disabled_wait(unsigned long code)
241{
242 unsigned long ctl_buf;
243 psw_t dw_psw;
244
245 dw_psw.mask = PSW_MASK_BASE | PSW_MASK_WAIT | PSW_MASK_BA | PSW_MASK_EA;
246 dw_psw.addr = code;
247 /*
248 * Store status and then load disabled wait psw,
249 * the processor is dead afterwards
250 */
251#ifndef CONFIG_64BIT
252 asm volatile(
253 " stctl 0,0,0(%2)\n"
254 " ni 0(%2),0xef\n" /* switch off protection */
255 " lctl 0,0,0(%2)\n"
256 " stpt 0xd8\n" /* store timer */
257 " stckc 0xe0\n" /* store clock comparator */
258 " stpx 0x108\n" /* store prefix register */
259 " stam 0,15,0x120\n" /* store access registers */
260 " std 0,0x160\n" /* store f0 */
261 " std 2,0x168\n" /* store f2 */
262 " std 4,0x170\n" /* store f4 */
263 " std 6,0x178\n" /* store f6 */
264 " stm 0,15,0x180\n" /* store general registers */
265 " stctl 0,15,0x1c0\n" /* store control registers */
266 " oi 0x1c0,0x10\n" /* fake protection bit */
267 " lpsw 0(%1)"
268 : "=m" (ctl_buf)
269 : "a" (&dw_psw), "a" (&ctl_buf), "m" (dw_psw) : "cc");
270#else /* CONFIG_64BIT */
271 asm volatile(
272 " stctg 0,0,0(%2)\n"
273 " ni 4(%2),0xef\n" /* switch off protection */
274 " lctlg 0,0,0(%2)\n"
275 " lghi 1,0x1000\n"
276 " stpt 0x328(1)\n" /* store timer */
277 " stckc 0x330(1)\n" /* store clock comparator */
278 " stpx 0x318(1)\n" /* store prefix register */
279 " stam 0,15,0x340(1)\n"/* store access registers */
280 " stfpc 0x31c(1)\n" /* store fpu control */
281 " std 0,0x200(1)\n" /* store f0 */
282 " std 1,0x208(1)\n" /* store f1 */
283 " std 2,0x210(1)\n" /* store f2 */
284 " std 3,0x218(1)\n" /* store f3 */
285 " std 4,0x220(1)\n" /* store f4 */
286 " std 5,0x228(1)\n" /* store f5 */
287 " std 6,0x230(1)\n" /* store f6 */
288 " std 7,0x238(1)\n" /* store f7 */
289 " std 8,0x240(1)\n" /* store f8 */
290 " std 9,0x248(1)\n" /* store f9 */
291 " std 10,0x250(1)\n" /* store f10 */
292 " std 11,0x258(1)\n" /* store f11 */
293 " std 12,0x260(1)\n" /* store f12 */
294 " std 13,0x268(1)\n" /* store f13 */
295 " std 14,0x270(1)\n" /* store f14 */
296 " std 15,0x278(1)\n" /* store f15 */
297 " stmg 0,15,0x280(1)\n"/* store general registers */
298 " stctg 0,15,0x380(1)\n"/* store control registers */
299 " oi 0x384(1),0x10\n"/* fake protection bit */
300 " lpswe 0(%1)"
301 : "=m" (ctl_buf)
302 : "a" (&dw_psw), "a" (&ctl_buf), "m" (dw_psw) : "cc", "0", "1");
303#endif /* CONFIG_64BIT */
304 while (1);
305}
306
307/*
308 * Use to set psw mask except for the first byte which
309 * won't be changed by this function.
310 */
311static inline void
312__set_psw_mask(unsigned long mask)
313{
314 __load_psw_mask(mask | (arch_local_save_flags() & ~(-1UL >> 8)));
315}
316
317#define local_mcck_enable() \
318 __set_psw_mask(psw_kernel_bits | PSW_MASK_DAT | PSW_MASK_MCHECK)
319#define local_mcck_disable() \
320 __set_psw_mask(psw_kernel_bits | PSW_MASK_DAT)
321
322/*
323 * Basic Machine Check/Program Check Handler.
324 */
325
326extern void s390_base_mcck_handler(void);
327extern void s390_base_pgm_handler(void);
328extern void s390_base_ext_handler(void);
329
330extern void (*s390_base_mcck_handler_fn)(void);
331extern void (*s390_base_pgm_handler_fn)(void);
332extern void (*s390_base_ext_handler_fn)(void);
333
334#define ARCH_LOW_ADDRESS_LIMIT 0x7fffffffUL
335
336/*
337 * Helper macro for exception table entries
338 */
339#ifndef CONFIG_64BIT
340#define EX_TABLE(_fault,_target) \
341 ".section __ex_table,\"a\"\n" \
342 " .align 4\n" \
343 " .long " #_fault "," #_target "\n" \
344 ".previous\n"
345#else
346#define EX_TABLE(_fault,_target) \
347 ".section __ex_table,\"a\"\n" \
348 " .align 8\n" \
349 " .quad " #_fault "," #_target "\n" \
350 ".previous\n"
351#endif
352
353#endif /* __ASM_S390_PROCESSOR_H */
1/*
2 * S390 version
3 * Copyright IBM Corp. 1999
4 * Author(s): Hartmut Penner (hp@de.ibm.com),
5 * Martin Schwidefsky (schwidefsky@de.ibm.com)
6 *
7 * Derived from "include/asm-i386/processor.h"
8 * Copyright (C) 1994, Linus Torvalds
9 */
10
11#ifndef __ASM_S390_PROCESSOR_H
12#define __ASM_S390_PROCESSOR_H
13
14#ifndef __ASSEMBLY__
15
16#include <linux/linkage.h>
17#include <linux/irqflags.h>
18#include <asm/cpu.h>
19#include <asm/page.h>
20#include <asm/ptrace.h>
21#include <asm/setup.h>
22#include <asm/runtime_instr.h>
23
24/*
25 * Default implementation of macro that returns current
26 * instruction pointer ("program counter").
27 */
28#define current_text_addr() ({ void *pc; asm("basr %0,0" : "=a" (pc)); pc; })
29
30static inline void get_cpu_id(struct cpuid *ptr)
31{
32 asm volatile("stidp %0" : "=Q" (*ptr));
33}
34
35extern void s390_adjust_jiffies(void);
36extern const struct seq_operations cpuinfo_op;
37extern int sysctl_ieee_emulation_warnings;
38extern void execve_tail(void);
39
40/*
41 * User space process size: 2GB for 31 bit, 4TB or 8PT for 64 bit.
42 */
43#ifndef CONFIG_64BIT
44
45#define TASK_SIZE (1UL << 31)
46#define TASK_MAX_SIZE (1UL << 31)
47#define TASK_UNMAPPED_BASE (1UL << 30)
48
49#else /* CONFIG_64BIT */
50
51#define TASK_SIZE_OF(tsk) ((tsk)->mm->context.asce_limit)
52#define TASK_UNMAPPED_BASE (test_thread_flag(TIF_31BIT) ? \
53 (1UL << 30) : (1UL << 41))
54#define TASK_SIZE TASK_SIZE_OF(current)
55#define TASK_MAX_SIZE (1UL << 53)
56
57#endif /* CONFIG_64BIT */
58
59#ifndef CONFIG_64BIT
60#define STACK_TOP (1UL << 31)
61#define STACK_TOP_MAX (1UL << 31)
62#else /* CONFIG_64BIT */
63#define STACK_TOP (1UL << (test_thread_flag(TIF_31BIT) ? 31:42))
64#define STACK_TOP_MAX (1UL << 42)
65#endif /* CONFIG_64BIT */
66
67#define HAVE_ARCH_PICK_MMAP_LAYOUT
68
69typedef struct {
70 __u32 ar4;
71} mm_segment_t;
72
73/*
74 * Thread structure
75 */
76struct thread_struct {
77 s390_fp_regs fp_regs;
78 unsigned int acrs[NUM_ACRS];
79 unsigned long ksp; /* kernel stack pointer */
80 mm_segment_t mm_segment;
81 unsigned long gmap_addr; /* address of last gmap fault. */
82 unsigned int gmap_pfault; /* signal of a pending guest pfault */
83 struct per_regs per_user; /* User specified PER registers */
84 struct per_event per_event; /* Cause of the last PER trap */
85 unsigned long per_flags; /* Flags to control debug behavior */
86 /* pfault_wait is used to block the process on a pfault event */
87 unsigned long pfault_wait;
88 struct list_head list;
89 /* cpu runtime instrumentation */
90 struct runtime_instr_cb *ri_cb;
91 int ri_signum;
92#ifdef CONFIG_64BIT
93 unsigned char trap_tdb[256]; /* Transaction abort diagnose block */
94#endif
95};
96
97/* Flag to disable transactions. */
98#define PER_FLAG_NO_TE 1UL
99/* Flag to enable random transaction aborts. */
100#define PER_FLAG_TE_ABORT_RAND 2UL
101/* Flag to specify random transaction abort mode:
102 * - abort each transaction at a random instruction before TEND if set.
103 * - abort random transactions at a random instruction if cleared.
104 */
105#define PER_FLAG_TE_ABORT_RAND_TEND 4UL
106
107typedef struct thread_struct thread_struct;
108
109/*
110 * Stack layout of a C stack frame.
111 */
112#ifndef __PACK_STACK
113struct stack_frame {
114 unsigned long back_chain;
115 unsigned long empty1[5];
116 unsigned long gprs[10];
117 unsigned int empty2[8];
118};
119#else
120struct stack_frame {
121 unsigned long empty1[5];
122 unsigned int empty2[8];
123 unsigned long gprs[10];
124 unsigned long back_chain;
125};
126#endif
127
128#define ARCH_MIN_TASKALIGN 8
129
130#define INIT_THREAD { \
131 .ksp = sizeof(init_stack) + (unsigned long) &init_stack, \
132}
133
134/*
135 * Do necessary setup to start up a new thread.
136 */
137#define start_thread(regs, new_psw, new_stackp) do { \
138 regs->psw.mask = PSW_USER_BITS | PSW_MASK_EA | PSW_MASK_BA; \
139 regs->psw.addr = new_psw | PSW_ADDR_AMODE; \
140 regs->gprs[15] = new_stackp; \
141 execve_tail(); \
142} while (0)
143
144#define start_thread31(regs, new_psw, new_stackp) do { \
145 regs->psw.mask = PSW_USER_BITS | PSW_MASK_BA; \
146 regs->psw.addr = new_psw | PSW_ADDR_AMODE; \
147 regs->gprs[15] = new_stackp; \
148 crst_table_downgrade(current->mm, 1UL << 31); \
149 execve_tail(); \
150} while (0)
151
152/* Forward declaration, a strange C thing */
153struct task_struct;
154struct mm_struct;
155struct seq_file;
156
157#ifdef CONFIG_64BIT
158extern void show_cacheinfo(struct seq_file *m);
159#else
160static inline void show_cacheinfo(struct seq_file *m) { }
161#endif
162
163/* Free all resources held by a thread. */
164extern void release_thread(struct task_struct *);
165
166/*
167 * Return saved PC of a blocked thread.
168 */
169extern unsigned long thread_saved_pc(struct task_struct *t);
170
171unsigned long get_wchan(struct task_struct *p);
172#define task_pt_regs(tsk) ((struct pt_regs *) \
173 (task_stack_page(tsk) + THREAD_SIZE) - 1)
174#define KSTK_EIP(tsk) (task_pt_regs(tsk)->psw.addr)
175#define KSTK_ESP(tsk) (task_pt_regs(tsk)->gprs[15])
176
177/* Has task runtime instrumentation enabled ? */
178#define is_ri_task(tsk) (!!(tsk)->thread.ri_cb)
179
180static inline unsigned short stap(void)
181{
182 unsigned short cpu_address;
183
184 asm volatile("stap %0" : "=m" (cpu_address));
185 return cpu_address;
186}
187
188/*
189 * Give up the time slice of the virtual PU.
190 */
191static inline void cpu_relax(void)
192{
193 if (MACHINE_HAS_DIAG44)
194 asm volatile("diag 0,0,68");
195 barrier();
196}
197
198#define arch_mutex_cpu_relax() barrier()
199
200static inline void psw_set_key(unsigned int key)
201{
202 asm volatile("spka 0(%0)" : : "d" (key));
203}
204
205/*
206 * Set PSW to specified value.
207 */
208static inline void __load_psw(psw_t psw)
209{
210#ifndef CONFIG_64BIT
211 asm volatile("lpsw %0" : : "Q" (psw) : "cc");
212#else
213 asm volatile("lpswe %0" : : "Q" (psw) : "cc");
214#endif
215}
216
217/*
218 * Set PSW mask to specified value, while leaving the
219 * PSW addr pointing to the next instruction.
220 */
221static inline void __load_psw_mask (unsigned long mask)
222{
223 unsigned long addr;
224 psw_t psw;
225
226 psw.mask = mask;
227
228#ifndef CONFIG_64BIT
229 asm volatile(
230 " basr %0,0\n"
231 "0: ahi %0,1f-0b\n"
232 " st %0,%O1+4(%R1)\n"
233 " lpsw %1\n"
234 "1:"
235 : "=&d" (addr), "=Q" (psw) : "Q" (psw) : "memory", "cc");
236#else /* CONFIG_64BIT */
237 asm volatile(
238 " larl %0,1f\n"
239 " stg %0,%O1+8(%R1)\n"
240 " lpswe %1\n"
241 "1:"
242 : "=&d" (addr), "=Q" (psw) : "Q" (psw) : "memory", "cc");
243#endif /* CONFIG_64BIT */
244}
245
246/*
247 * Rewind PSW instruction address by specified number of bytes.
248 */
249static inline unsigned long __rewind_psw(psw_t psw, unsigned long ilc)
250{
251#ifndef CONFIG_64BIT
252 if (psw.addr & PSW_ADDR_AMODE)
253 /* 31 bit mode */
254 return (psw.addr - ilc) | PSW_ADDR_AMODE;
255 /* 24 bit mode */
256 return (psw.addr - ilc) & ((1UL << 24) - 1);
257#else
258 unsigned long mask;
259
260 mask = (psw.mask & PSW_MASK_EA) ? -1UL :
261 (psw.mask & PSW_MASK_BA) ? (1UL << 31) - 1 :
262 (1UL << 24) - 1;
263 return (psw.addr - ilc) & mask;
264#endif
265}
266
267/*
268 * Function to drop a processor into disabled wait state
269 */
270static inline void __noreturn disabled_wait(unsigned long code)
271{
272 unsigned long ctl_buf;
273 psw_t dw_psw;
274
275 dw_psw.mask = PSW_MASK_BASE | PSW_MASK_WAIT | PSW_MASK_BA | PSW_MASK_EA;
276 dw_psw.addr = code;
277 /*
278 * Store status and then load disabled wait psw,
279 * the processor is dead afterwards
280 */
281#ifndef CONFIG_64BIT
282 asm volatile(
283 " stctl 0,0,0(%2)\n"
284 " ni 0(%2),0xef\n" /* switch off protection */
285 " lctl 0,0,0(%2)\n"
286 " stpt 0xd8\n" /* store timer */
287 " stckc 0xe0\n" /* store clock comparator */
288 " stpx 0x108\n" /* store prefix register */
289 " stam 0,15,0x120\n" /* store access registers */
290 " std 0,0x160\n" /* store f0 */
291 " std 2,0x168\n" /* store f2 */
292 " std 4,0x170\n" /* store f4 */
293 " std 6,0x178\n" /* store f6 */
294 " stm 0,15,0x180\n" /* store general registers */
295 " stctl 0,15,0x1c0\n" /* store control registers */
296 " oi 0x1c0,0x10\n" /* fake protection bit */
297 " lpsw 0(%1)"
298 : "=m" (ctl_buf)
299 : "a" (&dw_psw), "a" (&ctl_buf), "m" (dw_psw) : "cc");
300#else /* CONFIG_64BIT */
301 asm volatile(
302 " stctg 0,0,0(%2)\n"
303 " ni 4(%2),0xef\n" /* switch off protection */
304 " lctlg 0,0,0(%2)\n"
305 " lghi 1,0x1000\n"
306 " stpt 0x328(1)\n" /* store timer */
307 " stckc 0x330(1)\n" /* store clock comparator */
308 " stpx 0x318(1)\n" /* store prefix register */
309 " stam 0,15,0x340(1)\n"/* store access registers */
310 " stfpc 0x31c(1)\n" /* store fpu control */
311 " std 0,0x200(1)\n" /* store f0 */
312 " std 1,0x208(1)\n" /* store f1 */
313 " std 2,0x210(1)\n" /* store f2 */
314 " std 3,0x218(1)\n" /* store f3 */
315 " std 4,0x220(1)\n" /* store f4 */
316 " std 5,0x228(1)\n" /* store f5 */
317 " std 6,0x230(1)\n" /* store f6 */
318 " std 7,0x238(1)\n" /* store f7 */
319 " std 8,0x240(1)\n" /* store f8 */
320 " std 9,0x248(1)\n" /* store f9 */
321 " std 10,0x250(1)\n" /* store f10 */
322 " std 11,0x258(1)\n" /* store f11 */
323 " std 12,0x260(1)\n" /* store f12 */
324 " std 13,0x268(1)\n" /* store f13 */
325 " std 14,0x270(1)\n" /* store f14 */
326 " std 15,0x278(1)\n" /* store f15 */
327 " stmg 0,15,0x280(1)\n"/* store general registers */
328 " stctg 0,15,0x380(1)\n"/* store control registers */
329 " oi 0x384(1),0x10\n"/* fake protection bit */
330 " lpswe 0(%1)"
331 : "=m" (ctl_buf)
332 : "a" (&dw_psw), "a" (&ctl_buf), "m" (dw_psw) : "cc", "0", "1");
333#endif /* CONFIG_64BIT */
334 while (1);
335}
336
337/*
338 * Use to set psw mask except for the first byte which
339 * won't be changed by this function.
340 */
341static inline void
342__set_psw_mask(unsigned long mask)
343{
344 __load_psw_mask(mask | (arch_local_save_flags() & ~(-1UL >> 8)));
345}
346
347#define local_mcck_enable() \
348 __set_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT | PSW_MASK_MCHECK)
349#define local_mcck_disable() \
350 __set_psw_mask(PSW_KERNEL_BITS | PSW_MASK_DAT)
351
352/*
353 * Basic Machine Check/Program Check Handler.
354 */
355
356extern void s390_base_mcck_handler(void);
357extern void s390_base_pgm_handler(void);
358extern void s390_base_ext_handler(void);
359
360extern void (*s390_base_mcck_handler_fn)(void);
361extern void (*s390_base_pgm_handler_fn)(void);
362extern void (*s390_base_ext_handler_fn)(void);
363
364#define ARCH_LOW_ADDRESS_LIMIT 0x7fffffffUL
365
366extern int memcpy_real(void *, void *, size_t);
367extern void memcpy_absolute(void *, void *, size_t);
368
369#define mem_assign_absolute(dest, val) { \
370 __typeof__(dest) __tmp = (val); \
371 \
372 BUILD_BUG_ON(sizeof(__tmp) != sizeof(val)); \
373 memcpy_absolute(&(dest), &__tmp, sizeof(__tmp)); \
374}
375
376/*
377 * Helper macro for exception table entries
378 */
379#define EX_TABLE(_fault, _target) \
380 ".section __ex_table,\"a\"\n" \
381 ".align 4\n" \
382 ".long (" #_fault ") - .\n" \
383 ".long (" #_target ") - .\n" \
384 ".previous\n"
385
386#else /* __ASSEMBLY__ */
387
388#define EX_TABLE(_fault, _target) \
389 .section __ex_table,"a" ; \
390 .align 4 ; \
391 .long (_fault) - . ; \
392 .long (_target) - . ; \
393 .previous
394
395#endif /* __ASSEMBLY__ */
396
397#endif /* __ASM_S390_PROCESSOR_H */