Merge tag 'intel-pinctrl-v6.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / arch / s390 / kernel / entry.S
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  *    S390 low-level entry points.
4  *
5  *    Copyright IBM Corp. 1999, 2012
6  *    Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
7  *               Hartmut Penner (hp@de.ibm.com),
8  *               Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
9  */
10
11 #include <linux/export.h>
12 #include <linux/init.h>
13 #include <linux/linkage.h>
14 #include <asm/asm-extable.h>
15 #include <asm/alternative-asm.h>
16 #include <asm/processor.h>
17 #include <asm/cache.h>
18 #include <asm/dwarf.h>
19 #include <asm/errno.h>
20 #include <asm/ptrace.h>
21 #include <asm/thread_info.h>
22 #include <asm/asm-offsets.h>
23 #include <asm/unistd.h>
24 #include <asm/page.h>
25 #include <asm/sigp.h>
26 #include <asm/irq.h>
27 #include <asm/fpu-insn.h>
28 #include <asm/setup.h>
29 #include <asm/nmi.h>
30 #include <asm/nospec-insn.h>
31
32 _LPP_OFFSET     = __LC_LPP
33
34         .macro STBEAR address
35         ALTERNATIVE "nop", ".insn s,0xb2010000,\address", 193
36         .endm
37
38         .macro LBEAR address
39         ALTERNATIVE "nop", ".insn s,0xb2000000,\address", 193
40         .endm
41
42         .macro LPSWEY address,lpswe
43         ALTERNATIVE "b \lpswe; nopr", ".insn siy,0xeb0000000071,\address,0", 193
44         .endm
45
46         .macro MBEAR reg
47         ALTERNATIVE "brcl 0,0", __stringify(mvc __PT_LAST_BREAK(8,\reg),__LC_LAST_BREAK), 193
48         .endm
49
50         .macro  CHECK_STACK savearea
51 #ifdef CONFIG_CHECK_STACK
52         tml     %r15,THREAD_SIZE - CONFIG_STACK_GUARD
53         lghi    %r14,\savearea
54         jz      stack_overflow
55 #endif
56         .endm
57
58         .macro  CHECK_VMAP_STACK savearea,oklabel
59 #ifdef CONFIG_VMAP_STACK
60         lgr     %r14,%r15
61         nill    %r14,0x10000 - THREAD_SIZE
62         oill    %r14,STACK_INIT_OFFSET
63         clg     %r14,__LC_KERNEL_STACK
64         je      \oklabel
65         clg     %r14,__LC_ASYNC_STACK
66         je      \oklabel
67         clg     %r14,__LC_MCCK_STACK
68         je      \oklabel
69         clg     %r14,__LC_NODAT_STACK
70         je      \oklabel
71         clg     %r14,__LC_RESTART_STACK
72         je      \oklabel
73         lghi    %r14,\savearea
74         j       stack_overflow
75 #else
76         j       \oklabel
77 #endif
78         .endm
79
80         /*
81          * The TSTMSK macro generates a test-under-mask instruction by
82          * calculating the memory offset for the specified mask value.
83          * Mask value can be any constant.  The macro shifts the mask
84          * value to calculate the memory offset for the test-under-mask
85          * instruction.
86          */
87         .macro TSTMSK addr, mask, size=8, bytepos=0
88                 .if (\bytepos < \size) && (\mask >> 8)
89                         .if (\mask & 0xff)
90                                 .error "Mask exceeds byte boundary"
91                         .endif
92                         TSTMSK \addr, "(\mask >> 8)", \size, "(\bytepos + 1)"
93                         .exitm
94                 .endif
95                 .ifeq \mask
96                         .error "Mask must not be zero"
97                 .endif
98                 off = \size - \bytepos - 1
99                 tm      off+\addr, \mask
100         .endm
101
102         .macro BPOFF
103         ALTERNATIVE "nop", ".insn rrf,0xb2e80000,0,0,12,0", 82
104         .endm
105
106         .macro BPON
107         ALTERNATIVE "nop", ".insn rrf,0xb2e80000,0,0,13,0", 82
108         .endm
109
110         .macro BPENTER tif_ptr,tif_mask
111         ALTERNATIVE "TSTMSK \tif_ptr,\tif_mask; jz .+8; .insn rrf,0xb2e80000,0,0,13,0", \
112                     "j .+12; nop; nop", 82
113         .endm
114
115         .macro BPEXIT tif_ptr,tif_mask
116         TSTMSK  \tif_ptr,\tif_mask
117         ALTERNATIVE "jz .+8;  .insn rrf,0xb2e80000,0,0,12,0", \
118                     "jnz .+8; .insn rrf,0xb2e80000,0,0,13,0", 82
119         .endm
120
121 #if IS_ENABLED(CONFIG_KVM)
122         .macro SIEEXIT sie_control
123         lg      %r9,\sie_control                # get control block pointer
124         ni      __SIE_PROG0C+3(%r9),0xfe        # no longer in SIE
125         lctlg   %c1,%c1,__LC_KERNEL_ASCE        # load primary asce
126         ni      __LC_CPU_FLAGS+7,255-_CIF_SIE
127         larl    %r9,sie_exit                    # skip forward to sie_exit
128         .endm
129 #endif
130
131         .macro STACKLEAK_ERASE
132 #ifdef CONFIG_GCC_PLUGIN_STACKLEAK
133         brasl   %r14,stackleak_erase_on_task_stack
134 #endif
135         .endm
136
137         GEN_BR_THUNK %r14
138
139         .section .kprobes.text, "ax"
140 .Ldummy:
141         /*
142          * The following nop exists only in order to avoid that the next
143          * symbol starts at the beginning of the kprobes text section.
144          * In that case there would be several symbols at the same address.
145          * E.g. objdump would take an arbitrary symbol when disassembling
146          * the code.
147          * With the added nop in between this cannot happen.
148          */
149         nop     0
150
151 /*
152  * Scheduler resume function, called by __switch_to
153  *  gpr2 = (task_struct *)prev
154  *  gpr3 = (task_struct *)next
155  * Returns:
156  *  gpr2 = prev
157  */
158 SYM_FUNC_START(__switch_to_asm)
159         stmg    %r6,%r15,__SF_GPRS(%r15)        # store gprs of prev task
160         lghi    %r4,__TASK_stack
161         lghi    %r1,__TASK_thread
162         llill   %r5,STACK_INIT_OFFSET
163         stg     %r15,__THREAD_ksp(%r1,%r2)      # store kernel stack of prev
164         lg      %r15,0(%r4,%r3)                 # start of kernel stack of next
165         agr     %r15,%r5                        # end of kernel stack of next
166         stg     %r3,__LC_CURRENT                # store task struct of next
167         stg     %r15,__LC_KERNEL_STACK          # store end of kernel stack
168         lg      %r15,__THREAD_ksp(%r1,%r3)      # load kernel stack of next
169         aghi    %r3,__TASK_pid
170         mvc     __LC_CURRENT_PID(4,%r0),0(%r3)  # store pid of next
171         lmg     %r6,%r15,__SF_GPRS(%r15)        # load gprs of next task
172         ALTERNATIVE "nop", "lpp _LPP_OFFSET", 40
173         BR_EX   %r14
174 SYM_FUNC_END(__switch_to_asm)
175
176 #if IS_ENABLED(CONFIG_KVM)
177 /*
178  * __sie64a calling convention:
179  * %r2 pointer to sie control block phys
180  * %r3 pointer to sie control block virt
181  * %r4 guest register save area
182  */
183 SYM_FUNC_START(__sie64a)
184         stmg    %r6,%r14,__SF_GPRS(%r15)        # save kernel registers
185         lg      %r12,__LC_CURRENT
186         stg     %r2,__SF_SIE_CONTROL_PHYS(%r15) # save sie block physical..
187         stg     %r3,__SF_SIE_CONTROL(%r15)      # ...and virtual addresses
188         stg     %r4,__SF_SIE_SAVEAREA(%r15)     # save guest register save area
189         xc      __SF_SIE_REASON(8,%r15),__SF_SIE_REASON(%r15) # reason code = 0
190         mvc     __SF_SIE_FLAGS(8,%r15),__TI_flags(%r12) # copy thread flags
191         lmg     %r0,%r13,0(%r4)                 # load guest gprs 0-13
192         lg      %r14,__LC_GMAP                  # get gmap pointer
193         ltgr    %r14,%r14
194         jz      .Lsie_gmap
195         oi      __LC_CPU_FLAGS+7,_CIF_SIE
196         lctlg   %c1,%c1,__GMAP_ASCE(%r14)       # load primary asce
197 .Lsie_gmap:
198         lg      %r14,__SF_SIE_CONTROL(%r15)     # get control block pointer
199         oi      __SIE_PROG0C+3(%r14),1          # we are going into SIE now
200         tm      __SIE_PROG20+3(%r14),3          # last exit...
201         jnz     .Lsie_skip
202         lg      %r14,__SF_SIE_CONTROL_PHYS(%r15)        # get sie block phys addr
203         BPEXIT  __SF_SIE_FLAGS(%r15),_TIF_ISOLATE_BP_GUEST
204 .Lsie_entry:
205         sie     0(%r14)
206 # Let the next instruction be NOP to avoid triggering a machine check
207 # and handling it in a guest as result of the instruction execution.
208         nopr    7
209 .Lsie_leave:
210         BPOFF
211         BPENTER __SF_SIE_FLAGS(%r15),_TIF_ISOLATE_BP_GUEST
212 .Lsie_skip:
213         lg      %r14,__SF_SIE_CONTROL(%r15)     # get control block pointer
214         ni      __SIE_PROG0C+3(%r14),0xfe       # no longer in SIE
215         lctlg   %c1,%c1,__LC_KERNEL_ASCE        # load primary asce
216         ni      __LC_CPU_FLAGS+7,255-_CIF_SIE
217 # some program checks are suppressing. C code (e.g. do_protection_exception)
218 # will rewind the PSW by the ILC, which is often 4 bytes in case of SIE. There
219 # are some corner cases (e.g. runtime instrumentation) where ILC is unpredictable.
220 # Other instructions between __sie64a and .Lsie_done should not cause program
221 # interrupts. So lets use 3 nops as a landing pad for all possible rewinds.
222 .Lrewind_pad6:
223         nopr    7
224 .Lrewind_pad4:
225         nopr    7
226 .Lrewind_pad2:
227         nopr    7
228 SYM_INNER_LABEL(sie_exit, SYM_L_GLOBAL)
229         lg      %r14,__SF_SIE_SAVEAREA(%r15)    # load guest register save area
230         stmg    %r0,%r13,0(%r14)                # save guest gprs 0-13
231         xgr     %r0,%r0                         # clear guest registers to
232         xgr     %r1,%r1                         # prevent speculative use
233         xgr     %r3,%r3
234         xgr     %r4,%r4
235         xgr     %r5,%r5
236         lmg     %r6,%r14,__SF_GPRS(%r15)        # restore kernel registers
237         lg      %r2,__SF_SIE_REASON(%r15)       # return exit reason code
238         BR_EX   %r14
239 .Lsie_fault:
240         lghi    %r14,-EFAULT
241         stg     %r14,__SF_SIE_REASON(%r15)      # set exit reason code
242         j       sie_exit
243
244         EX_TABLE(.Lrewind_pad6,.Lsie_fault)
245         EX_TABLE(.Lrewind_pad4,.Lsie_fault)
246         EX_TABLE(.Lrewind_pad2,.Lsie_fault)
247         EX_TABLE(sie_exit,.Lsie_fault)
248 SYM_FUNC_END(__sie64a)
249 EXPORT_SYMBOL(__sie64a)
250 EXPORT_SYMBOL(sie_exit)
251 #endif
252
253 /*
254  * SVC interrupt handler routine. System calls are synchronous events and
255  * are entered with interrupts disabled.
256  */
257
258 SYM_CODE_START(system_call)
259         stpt    __LC_SYS_ENTER_TIMER
260         stmg    %r8,%r15,__LC_SAVE_AREA_SYNC
261         BPOFF
262         lghi    %r14,0
263 .Lsysc_per:
264         STBEAR  __LC_LAST_BREAK
265         lctlg   %c1,%c1,__LC_KERNEL_ASCE
266         lg      %r15,__LC_KERNEL_STACK
267         xc      __SF_BACKCHAIN(8,%r15),__SF_BACKCHAIN(%r15)
268         stmg    %r0,%r7,STACK_FRAME_OVERHEAD+__PT_R0(%r15)
269         # clear user controlled register to prevent speculative use
270         xgr     %r0,%r0
271         xgr     %r1,%r1
272         xgr     %r4,%r4
273         xgr     %r5,%r5
274         xgr     %r6,%r6
275         xgr     %r7,%r7
276         xgr     %r8,%r8
277         xgr     %r9,%r9
278         xgr     %r10,%r10
279         xgr     %r11,%r11
280         la      %r2,STACK_FRAME_OVERHEAD(%r15)  # pointer to pt_regs
281         mvc     __PT_R8(64,%r2),__LC_SAVE_AREA_SYNC
282         MBEAR   %r2
283         lgr     %r3,%r14
284         brasl   %r14,__do_syscall
285         STACKLEAK_ERASE
286         lctlg   %c1,%c1,__LC_USER_ASCE
287         mvc     __LC_RETURN_PSW(16),STACK_FRAME_OVERHEAD+__PT_PSW(%r15)
288         BPON
289         LBEAR   STACK_FRAME_OVERHEAD+__PT_LAST_BREAK(%r15)
290         lmg     %r0,%r15,STACK_FRAME_OVERHEAD+__PT_R0(%r15)
291         stpt    __LC_EXIT_TIMER
292         LPSWEY  __LC_RETURN_PSW,__LC_RETURN_LPSWE
293 SYM_CODE_END(system_call)
294
295 #
296 # a new process exits the kernel with ret_from_fork
297 #
298 SYM_CODE_START(ret_from_fork)
299         lgr     %r3,%r11
300         brasl   %r14,__ret_from_fork
301         STACKLEAK_ERASE
302         lctlg   %c1,%c1,__LC_USER_ASCE
303         mvc     __LC_RETURN_PSW(16),STACK_FRAME_OVERHEAD+__PT_PSW(%r15)
304         BPON
305         LBEAR   STACK_FRAME_OVERHEAD+__PT_LAST_BREAK(%r15)
306         lmg     %r0,%r15,STACK_FRAME_OVERHEAD+__PT_R0(%r15)
307         stpt    __LC_EXIT_TIMER
308         LPSWEY  __LC_RETURN_PSW,__LC_RETURN_LPSWE
309 SYM_CODE_END(ret_from_fork)
310
311 /*
312  * Program check handler routine
313  */
314
315 SYM_CODE_START(pgm_check_handler)
316         stpt    __LC_SYS_ENTER_TIMER
317         BPOFF
318         stmg    %r8,%r15,__LC_SAVE_AREA_SYNC
319         lgr     %r10,%r15
320         lmg     %r8,%r9,__LC_PGM_OLD_PSW
321         tmhh    %r8,0x0001              # coming from user space?
322         jno     .Lpgm_skip_asce
323         lctlg   %c1,%c1,__LC_KERNEL_ASCE
324         j       3f                      # -> fault in user space
325 .Lpgm_skip_asce:
326 1:      tmhh    %r8,0x4000              # PER bit set in old PSW ?
327         jnz     2f                      # -> enabled, can't be a double fault
328         tm      __LC_PGM_ILC+3,0x80     # check for per exception
329         jnz     .Lpgm_svcper            # -> single stepped svc
330 2:      CHECK_STACK __LC_SAVE_AREA_SYNC
331         aghi    %r15,-(STACK_FRAME_OVERHEAD + __PT_SIZE)
332         # CHECK_VMAP_STACK branches to stack_overflow or 4f
333         CHECK_VMAP_STACK __LC_SAVE_AREA_SYNC,4f
334 3:      lg      %r15,__LC_KERNEL_STACK
335 4:      la      %r11,STACK_FRAME_OVERHEAD(%r15)
336         xc      __PT_FLAGS(8,%r11),__PT_FLAGS(%r11)
337         xc      __SF_BACKCHAIN(8,%r15),__SF_BACKCHAIN(%r15)
338         stmg    %r0,%r7,__PT_R0(%r11)
339         mvc     __PT_R8(64,%r11),__LC_SAVE_AREA_SYNC
340         mvc     __PT_LAST_BREAK(8,%r11),__LC_PGM_LAST_BREAK
341         stctg   %c1,%c1,__PT_CR1(%r11)
342 #if IS_ENABLED(CONFIG_KVM)
343         lg      %r12,__LC_GMAP
344         clc     __GMAP_ASCE(8,%r12), __PT_CR1(%r11)
345         jne     5f
346         BPENTER __SF_SIE_FLAGS(%r10),_TIF_ISOLATE_BP_GUEST
347         SIEEXIT __SF_SIE_CONTROL(%r10)
348 #endif
349 5:      stmg    %r8,%r9,__PT_PSW(%r11)
350         # clear user controlled registers to prevent speculative use
351         xgr     %r0,%r0
352         xgr     %r1,%r1
353         xgr     %r3,%r3
354         xgr     %r4,%r4
355         xgr     %r5,%r5
356         xgr     %r6,%r6
357         xgr     %r7,%r7
358         lgr     %r2,%r11
359         brasl   %r14,__do_pgm_check
360         tmhh    %r8,0x0001              # returning to user space?
361         jno     .Lpgm_exit_kernel
362         STACKLEAK_ERASE
363         lctlg   %c1,%c1,__LC_USER_ASCE
364         BPON
365         stpt    __LC_EXIT_TIMER
366 .Lpgm_exit_kernel:
367         mvc     __LC_RETURN_PSW(16),STACK_FRAME_OVERHEAD+__PT_PSW(%r15)
368         LBEAR   STACK_FRAME_OVERHEAD+__PT_LAST_BREAK(%r15)
369         lmg     %r0,%r15,STACK_FRAME_OVERHEAD+__PT_R0(%r15)
370         LPSWEY  __LC_RETURN_PSW,__LC_RETURN_LPSWE
371
372 #
373 # single stepped system call
374 #
375 .Lpgm_svcper:
376         mvc     __LC_RETURN_PSW(8),__LC_SVC_NEW_PSW
377         larl    %r14,.Lsysc_per
378         stg     %r14,__LC_RETURN_PSW+8
379         lghi    %r14,1
380         LBEAR   __LC_PGM_LAST_BREAK
381         LPSWEY  __LC_RETURN_PSW,__LC_RETURN_LPSWE # branch to .Lsysc_per
382 SYM_CODE_END(pgm_check_handler)
383
384 /*
385  * Interrupt handler macro used for external and IO interrupts.
386  */
387 .macro INT_HANDLER name,lc_old_psw,handler
388 SYM_CODE_START(\name)
389         stckf   __LC_INT_CLOCK
390         stpt    __LC_SYS_ENTER_TIMER
391         STBEAR  __LC_LAST_BREAK
392         BPOFF
393         stmg    %r8,%r15,__LC_SAVE_AREA_ASYNC
394         lmg     %r8,%r9,\lc_old_psw
395         tmhh    %r8,0x0001                      # interrupting from user ?
396         jnz     1f
397 #if IS_ENABLED(CONFIG_KVM)
398         TSTMSK  __LC_CPU_FLAGS,_CIF_SIE
399         jz      0f
400         BPENTER __SF_SIE_FLAGS(%r15),_TIF_ISOLATE_BP_GUEST
401         SIEEXIT __SF_SIE_CONTROL(%r15)
402 #endif
403 0:      CHECK_STACK __LC_SAVE_AREA_ASYNC
404         aghi    %r15,-(STACK_FRAME_OVERHEAD + __PT_SIZE)
405         j       2f
406 1:      lctlg   %c1,%c1,__LC_KERNEL_ASCE
407         lg      %r15,__LC_KERNEL_STACK
408 2:      xc      __SF_BACKCHAIN(8,%r15),__SF_BACKCHAIN(%r15)
409         la      %r11,STACK_FRAME_OVERHEAD(%r15)
410         stmg    %r0,%r7,__PT_R0(%r11)
411         # clear user controlled registers to prevent speculative use
412         xgr     %r0,%r0
413         xgr     %r1,%r1
414         xgr     %r3,%r3
415         xgr     %r4,%r4
416         xgr     %r5,%r5
417         xgr     %r6,%r6
418         xgr     %r7,%r7
419         xgr     %r10,%r10
420         xc      __PT_FLAGS(8,%r11),__PT_FLAGS(%r11)
421         mvc     __PT_R8(64,%r11),__LC_SAVE_AREA_ASYNC
422         MBEAR   %r11
423         stmg    %r8,%r9,__PT_PSW(%r11)
424         lgr     %r2,%r11                # pass pointer to pt_regs
425         brasl   %r14,\handler
426         mvc     __LC_RETURN_PSW(16),__PT_PSW(%r11)
427         tmhh    %r8,0x0001              # returning to user ?
428         jno     2f
429         STACKLEAK_ERASE
430         lctlg   %c1,%c1,__LC_USER_ASCE
431         BPON
432         stpt    __LC_EXIT_TIMER
433 2:      LBEAR   __PT_LAST_BREAK(%r11)
434         lmg     %r0,%r15,__PT_R0(%r11)
435         LPSWEY  __LC_RETURN_PSW,__LC_RETURN_LPSWE
436 SYM_CODE_END(\name)
437 .endm
438
439 INT_HANDLER ext_int_handler,__LC_EXT_OLD_PSW,do_ext_irq
440 INT_HANDLER io_int_handler,__LC_IO_OLD_PSW,do_io_irq
441
442 /*
443  * Load idle PSW.
444  */
445 SYM_FUNC_START(psw_idle)
446         stg     %r14,(__SF_GPRS+8*8)(%r15)
447         stg     %r3,__SF_EMPTY(%r15)
448         larl    %r1,psw_idle_exit
449         stg     %r1,__SF_EMPTY+8(%r15)
450         larl    %r1,smp_cpu_mtid
451         llgf    %r1,0(%r1)
452         ltgr    %r1,%r1
453         jz      .Lpsw_idle_stcctm
454         .insn   rsy,0xeb0000000017,%r1,5,__MT_CYCLES_ENTER(%r2)
455 .Lpsw_idle_stcctm:
456         oi      __LC_CPU_FLAGS+7,_CIF_ENABLED_WAIT
457         BPON
458         stckf   __CLOCK_IDLE_ENTER(%r2)
459         stpt    __TIMER_IDLE_ENTER(%r2)
460         lpswe   __SF_EMPTY(%r15)
461 SYM_INNER_LABEL(psw_idle_exit, SYM_L_GLOBAL)
462         BR_EX   %r14
463 SYM_FUNC_END(psw_idle)
464
465 /*
466  * Machine check handler routines
467  */
468 SYM_CODE_START(mcck_int_handler)
469         BPOFF
470         lmg     %r8,%r9,__LC_MCK_OLD_PSW
471         TSTMSK  __LC_MCCK_CODE,MCCK_CODE_SYSTEM_DAMAGE
472         jo      .Lmcck_panic            # yes -> rest of mcck code invalid
473         TSTMSK  __LC_MCCK_CODE,MCCK_CODE_CR_VALID
474         jno     .Lmcck_panic            # control registers invalid -> panic
475         ptlb
476         lghi    %r14,__LC_CPU_TIMER_SAVE_AREA
477         mvc     __LC_MCCK_ENTER_TIMER(8),0(%r14)
478         TSTMSK  __LC_MCCK_CODE,MCCK_CODE_CPU_TIMER_VALID
479         jo      3f
480         la      %r14,__LC_SYS_ENTER_TIMER
481         clc     0(8,%r14),__LC_EXIT_TIMER
482         jl      1f
483         la      %r14,__LC_EXIT_TIMER
484 1:      clc     0(8,%r14),__LC_LAST_UPDATE_TIMER
485         jl      2f
486         la      %r14,__LC_LAST_UPDATE_TIMER
487 2:      spt     0(%r14)
488         mvc     __LC_MCCK_ENTER_TIMER(8),0(%r14)
489 3:      TSTMSK  __LC_MCCK_CODE,MCCK_CODE_PSW_MWP_VALID
490         jno     .Lmcck_panic
491         tmhh    %r8,0x0001              # interrupting from user ?
492         jnz     .Lmcck_user
493         TSTMSK  __LC_MCCK_CODE,MCCK_CODE_PSW_IA_VALID
494         jno     .Lmcck_panic
495 #if IS_ENABLED(CONFIG_KVM)
496         TSTMSK  __LC_CPU_FLAGS,_CIF_SIE
497         jz      .Lmcck_user
498         # Need to compare the address instead of a CIF_SIE* flag.
499         # Otherwise there would be a race between setting the flag
500         # and entering SIE (or leaving and clearing the flag). This
501         # would cause machine checks targeted at the guest to be
502         # handled by the host.
503         larl    %r14,.Lsie_entry
504         clgrjl  %r9,%r14, 4f
505         larl    %r14,.Lsie_leave
506         clgrjhe %r9,%r14, 4f
507         oi      __LC_CPU_FLAGS+7, _CIF_MCCK_GUEST
508 4:      BPENTER __SF_SIE_FLAGS(%r15),_TIF_ISOLATE_BP_GUEST
509         SIEEXIT __SF_SIE_CONTROL(%r15)
510 #endif
511 .Lmcck_user:
512         lg      %r15,__LC_MCCK_STACK
513         la      %r11,STACK_FRAME_OVERHEAD(%r15)
514         stctg   %c1,%c1,__PT_CR1(%r11)
515         lctlg   %c1,%c1,__LC_KERNEL_ASCE
516         xc      __SF_BACKCHAIN(8,%r15),__SF_BACKCHAIN(%r15)
517         lghi    %r14,__LC_GPREGS_SAVE_AREA+64
518         stmg    %r0,%r7,__PT_R0(%r11)
519         # clear user controlled registers to prevent speculative use
520         xgr     %r0,%r0
521         xgr     %r1,%r1
522         xgr     %r3,%r3
523         xgr     %r4,%r4
524         xgr     %r5,%r5
525         xgr     %r6,%r6
526         xgr     %r7,%r7
527         xgr     %r10,%r10
528         mvc     __PT_R8(64,%r11),0(%r14)
529         stmg    %r8,%r9,__PT_PSW(%r11)
530         xc      __PT_FLAGS(8,%r11),__PT_FLAGS(%r11)
531         xc      __SF_BACKCHAIN(8,%r15),__SF_BACKCHAIN(%r15)
532         lgr     %r2,%r11                # pass pointer to pt_regs
533         brasl   %r14,s390_do_machine_check
534         lctlg   %c1,%c1,__PT_CR1(%r11)
535         lmg     %r0,%r10,__PT_R0(%r11)
536         mvc     __LC_RETURN_MCCK_PSW(16),__PT_PSW(%r11) # move return PSW
537         tm      __LC_RETURN_MCCK_PSW+1,0x01 # returning to user ?
538         jno     0f
539         BPON
540         stpt    __LC_EXIT_TIMER
541 0:      ALTERNATIVE "nop", __stringify(lghi %r12,__LC_LAST_BREAK_SAVE_AREA),193
542         LBEAR   0(%r12)
543         lmg     %r11,%r15,__PT_R11(%r11)
544         LPSWEY  __LC_RETURN_MCCK_PSW,__LC_RETURN_MCCK_LPSWE
545
546 .Lmcck_panic:
547         /*
548          * Iterate over all possible CPU addresses in the range 0..0xffff
549          * and stop each CPU using signal processor. Use compare and swap
550          * to allow just one CPU-stopper and prevent concurrent CPUs from
551          * stopping each other while leaving the others running.
552          */
553         lhi     %r5,0
554         lhi     %r6,1
555         larl    %r7,stop_lock
556         cs      %r5,%r6,0(%r7)          # single CPU-stopper only
557         jnz     4f
558         larl    %r7,this_cpu
559         stap    0(%r7)                  # this CPU address
560         lh      %r4,0(%r7)
561         nilh    %r4,0
562         lhi     %r0,1
563         sll     %r0,16                  # CPU counter
564         lhi     %r3,0                   # next CPU address
565 0:      cr      %r3,%r4
566         je      2f
567 1:      sigp    %r1,%r3,SIGP_STOP       # stop next CPU
568         brc     SIGP_CC_BUSY,1b
569 2:      ahi     %r3,1
570         brct    %r0,0b
571 3:      sigp    %r1,%r4,SIGP_STOP       # stop this CPU
572         brc     SIGP_CC_BUSY,3b
573 4:      j       4b
574 SYM_CODE_END(mcck_int_handler)
575
576 SYM_CODE_START(restart_int_handler)
577         ALTERNATIVE "nop", "lpp _LPP_OFFSET", 40
578         stg     %r15,__LC_SAVE_AREA_RESTART
579         TSTMSK  __LC_RESTART_FLAGS,RESTART_FLAG_CTLREGS,4
580         jz      0f
581         lctlg   %c0,%c15,__LC_CREGS_SAVE_AREA
582 0:      larl    %r15,daton_psw
583         lpswe   0(%r15)                         # turn dat on, keep irqs off
584 .Ldaton:
585         lg      %r15,__LC_RESTART_STACK
586         xc      STACK_FRAME_OVERHEAD(__PT_SIZE,%r15),STACK_FRAME_OVERHEAD(%r15)
587         stmg    %r0,%r14,STACK_FRAME_OVERHEAD+__PT_R0(%r15)
588         mvc     STACK_FRAME_OVERHEAD+__PT_R15(8,%r15),__LC_SAVE_AREA_RESTART
589         mvc     STACK_FRAME_OVERHEAD+__PT_PSW(16,%r15),__LC_RST_OLD_PSW
590         xc      0(STACK_FRAME_OVERHEAD,%r15),0(%r15)
591         lg      %r1,__LC_RESTART_FN             # load fn, parm & source cpu
592         lg      %r2,__LC_RESTART_DATA
593         lgf     %r3,__LC_RESTART_SOURCE
594         ltgr    %r3,%r3                         # test source cpu address
595         jm      1f                              # negative -> skip source stop
596 0:      sigp    %r4,%r3,SIGP_SENSE              # sigp sense to source cpu
597         brc     10,0b                           # wait for status stored
598 1:      basr    %r14,%r1                        # call function
599         stap    __SF_EMPTY(%r15)                # store cpu address
600         llgh    %r3,__SF_EMPTY(%r15)
601 2:      sigp    %r4,%r3,SIGP_STOP               # sigp stop to current cpu
602         brc     2,2b
603 3:      j       3b
604 SYM_CODE_END(restart_int_handler)
605
606         .section .kprobes.text, "ax"
607
608 #if defined(CONFIG_CHECK_STACK) || defined(CONFIG_VMAP_STACK)
609 /*
610  * The synchronous or the asynchronous stack overflowed. We are dead.
611  * No need to properly save the registers, we are going to panic anyway.
612  * Setup a pt_regs so that show_trace can provide a good call trace.
613  */
614 SYM_CODE_START(stack_overflow)
615         lg      %r15,__LC_NODAT_STACK   # change to panic stack
616         la      %r11,STACK_FRAME_OVERHEAD(%r15)
617         stmg    %r0,%r7,__PT_R0(%r11)
618         stmg    %r8,%r9,__PT_PSW(%r11)
619         mvc     __PT_R8(64,%r11),0(%r14)
620         stg     %r10,__PT_ORIG_GPR2(%r11) # store last break to orig_gpr2
621         xc      __SF_BACKCHAIN(8,%r15),__SF_BACKCHAIN(%r15)
622         lgr     %r2,%r11                # pass pointer to pt_regs
623         jg      kernel_stack_overflow
624 SYM_CODE_END(stack_overflow)
625 #endif
626
627         .section .data, "aw"
628         .balign 4
629 SYM_DATA_LOCAL(stop_lock,       .long 0)
630 SYM_DATA_LOCAL(this_cpu,        .short 0)
631         .balign 8
632 SYM_DATA_START_LOCAL(daton_psw)
633         .quad   PSW_KERNEL_BITS
634         .quad   .Ldaton
635 SYM_DATA_END(daton_psw)
636
637         .section .rodata, "a"
638 #define SYSCALL(esame,emu)      .quad __s390x_ ## esame
639 SYM_DATA_START(sys_call_table)
640 #include "asm/syscall_table.h"
641 SYM_DATA_END(sys_call_table)
642 #undef SYSCALL
643
644 #ifdef CONFIG_COMPAT
645
646 #define SYSCALL(esame,emu)      .quad __s390_ ## emu
647 SYM_DATA_START(sys_call_table_emu)
648 #include "asm/syscall_table.h"
649 SYM_DATA_END(sys_call_table_emu)
650 #undef SYSCALL
651 #endif