2 * arch/s390/kernel/traps.c
5 * Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
7 * Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com),
9 * Derived from "arch/i386/kernel/traps.c"
10 * Copyright (C) 1991, 1992 Linus Torvalds
14 * 'Traps.c' handles hardware traps and faults after we have saved some
17 #include <linux/config.h>
18 #include <linux/sched.h>
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/errno.h>
22 #include <linux/ptrace.h>
23 #include <linux/timer.h>
25 #include <linux/smp.h>
26 #include <linux/smp_lock.h>
27 #include <linux/init.h>
28 #include <linux/interrupt.h>
29 #include <linux/delay.h>
30 #include <linux/module.h>
31 #include <linux/kallsyms.h>
32 #include <linux/reboot.h>
34 #include <asm/system.h>
35 #include <asm/uaccess.h>
37 #include <asm/atomic.h>
38 #include <asm/mathemu.h>
39 #include <asm/cpcmd.h>
40 #include <asm/s390_ext.h>
41 #include <asm/lowcore.h>
42 #include <asm/debug.h>
44 /* Called from entry.S only */
45 extern void handle_per_exception(struct pt_regs
*regs
);
47 typedef void pgm_check_handler_t(struct pt_regs
*, long);
48 pgm_check_handler_t
*pgm_check_table
[128];
51 #ifdef CONFIG_PROCESS_DEBUG
52 int sysctl_userprocess_debug
= 1;
54 int sysctl_userprocess_debug
= 0;
58 extern pgm_check_handler_t do_protection_exception
;
59 extern pgm_check_handler_t do_dat_exception
;
60 extern pgm_check_handler_t do_pseudo_page_fault
;
62 extern int pfault_init(void);
63 extern void pfault_fini(void);
64 extern void pfault_interrupt(struct pt_regs
*regs
, __u16 error_code
);
65 static ext_int_info_t ext_int_pfault
;
67 extern pgm_check_handler_t do_monitor_call
;
69 #define stack_pointer ({ void **sp; asm("la %0,0(15)" : "=&d" (sp)); sp; })
71 #ifndef CONFIG_ARCH_S390X
72 #define FOURLONG "%08lx %08lx %08lx %08lx\n"
73 static int kstack_depth_to_print
= 12;
74 #else /* CONFIG_ARCH_S390X */
75 #define FOURLONG "%016lx %016lx %016lx %016lx\n"
76 static int kstack_depth_to_print
= 20;
77 #endif /* CONFIG_ARCH_S390X */
80 * For show_trace we have tree different stack to consider:
81 * - the panic stack which is used if the kernel stack has overflown
82 * - the asynchronous interrupt stack (cpu related)
83 * - the synchronous kernel stack (process related)
84 * The stack trace can start at any of the three stack and can potentially
85 * touch all of them. The order is: panic stack, async stack, sync stack.
88 __show_trace(unsigned long sp
, unsigned long low
, unsigned long high
)
90 struct stack_frame
*sf
;
94 sp
= sp
& PSW_ADDR_INSN
;
95 if (sp
< low
|| sp
> high
- sizeof(*sf
))
97 sf
= (struct stack_frame
*) sp
;
98 printk("([<%016lx>] ", sf
->gprs
[8] & PSW_ADDR_INSN
);
99 print_symbol("%s)\n", sf
->gprs
[8] & PSW_ADDR_INSN
);
100 /* Follow the backchain. */
103 sp
= sf
->back_chain
& PSW_ADDR_INSN
;
106 if (sp
<= low
|| sp
> high
- sizeof(*sf
))
108 sf
= (struct stack_frame
*) sp
;
109 printk(" [<%016lx>] ", sf
->gprs
[8] & PSW_ADDR_INSN
);
110 print_symbol("%s\n", sf
->gprs
[8] & PSW_ADDR_INSN
);
112 /* Zero backchain detected, check for interrupt frame. */
113 sp
= (unsigned long) (sf
+ 1);
114 if (sp
<= low
|| sp
> high
- sizeof(*regs
))
116 regs
= (struct pt_regs
*) sp
;
117 printk(" [<%016lx>] ", regs
->psw
.addr
& PSW_ADDR_INSN
);
118 print_symbol("%s\n", regs
->psw
.addr
& PSW_ADDR_INSN
);
124 void show_trace(struct task_struct
*task
, unsigned long * stack
)
126 register unsigned long __r15
asm ("15");
129 sp
= (unsigned long) stack
;
131 sp
= task
? task
->thread
.ksp
: __r15
;
132 printk("Call Trace:\n");
133 #ifdef CONFIG_CHECK_STACK
134 sp
= __show_trace(sp
, S390_lowcore
.panic_stack
- 4096,
135 S390_lowcore
.panic_stack
);
137 sp
= __show_trace(sp
, S390_lowcore
.async_stack
- ASYNC_SIZE
,
138 S390_lowcore
.async_stack
);
140 __show_trace(sp
, (unsigned long) task
->thread_info
,
141 (unsigned long) task
->thread_info
+ THREAD_SIZE
);
143 __show_trace(sp
, S390_lowcore
.thread_info
,
144 S390_lowcore
.thread_info
+ THREAD_SIZE
);
148 void show_stack(struct task_struct
*task
, unsigned long *sp
)
150 register unsigned long * __r15
asm ("15");
151 unsigned long *stack
;
154 // debugging aid: "show_stack(NULL);" prints the
155 // back trace for this cpu.
158 sp
= task
? (unsigned long *) task
->thread
.ksp
: __r15
;
161 for (i
= 0; i
< kstack_depth_to_print
; i
++) {
162 if (((addr_t
) stack
& (THREAD_SIZE
-1)) == 0)
164 if (i
&& ((i
* sizeof (long) % 32) == 0))
166 printk("%p ", (void *)*stack
++);
169 show_trace(task
, sp
);
173 * The architecture-independent dump_stack generator
175 void dump_stack(void)
180 EXPORT_SYMBOL(dump_stack
);
182 void show_registers(struct pt_regs
*regs
)
188 mode
= (regs
->psw
.mask
& PSW_MASK_PSTATE
) ? "User" : "Krnl";
189 printk("%s PSW : %p %p",
190 mode
, (void *) regs
->psw
.mask
,
191 (void *) regs
->psw
.addr
);
192 print_symbol(" (%s)\n", regs
->psw
.addr
& PSW_ADDR_INSN
);
193 printk("%s GPRS: " FOURLONG
, mode
,
194 regs
->gprs
[0], regs
->gprs
[1], regs
->gprs
[2], regs
->gprs
[3]);
196 regs
->gprs
[4], regs
->gprs
[5], regs
->gprs
[6], regs
->gprs
[7]);
198 regs
->gprs
[8], regs
->gprs
[9], regs
->gprs
[10], regs
->gprs
[11]);
200 regs
->gprs
[12], regs
->gprs
[13], regs
->gprs
[14], regs
->gprs
[15]);
203 /* FIXME: this isn't needed any more but it changes the ksymoops
204 * input. To remove or not to remove ... */
205 save_access_regs(regs
->acrs
);
206 printk("%s ACRS: %08x %08x %08x %08x\n", mode
,
207 regs
->acrs
[0], regs
->acrs
[1], regs
->acrs
[2], regs
->acrs
[3]);
208 printk(" %08x %08x %08x %08x\n",
209 regs
->acrs
[4], regs
->acrs
[5], regs
->acrs
[6], regs
->acrs
[7]);
210 printk(" %08x %08x %08x %08x\n",
211 regs
->acrs
[8], regs
->acrs
[9], regs
->acrs
[10], regs
->acrs
[11]);
212 printk(" %08x %08x %08x %08x\n",
213 regs
->acrs
[12], regs
->acrs
[13], regs
->acrs
[14], regs
->acrs
[15]);
217 * Print the first 20 byte of the instruction stream at the
221 if (regs
->psw
.mask
& PSW_MASK_PSTATE
)
225 printk("%s Code: ", mode
);
226 for (i
= 0; i
< 20; i
++) {
228 if (__get_user(c
, (char __user
*)(regs
->psw
.addr
+ i
))) {
239 /* This is called from fs/proc/array.c */
240 char *task_show_regs(struct task_struct
*task
, char *buffer
)
242 struct pt_regs
*regs
;
244 regs
= __KSTK_PTREGS(task
);
245 buffer
+= sprintf(buffer
, "task: %p, ksp: %p\n",
246 task
, (void *)task
->thread
.ksp
);
247 buffer
+= sprintf(buffer
, "User PSW : %p %p\n",
248 (void *) regs
->psw
.mask
, (void *)regs
->psw
.addr
);
250 buffer
+= sprintf(buffer
, "User GPRS: " FOURLONG
,
251 regs
->gprs
[0], regs
->gprs
[1],
252 regs
->gprs
[2], regs
->gprs
[3]);
253 buffer
+= sprintf(buffer
, " " FOURLONG
,
254 regs
->gprs
[4], regs
->gprs
[5],
255 regs
->gprs
[6], regs
->gprs
[7]);
256 buffer
+= sprintf(buffer
, " " FOURLONG
,
257 regs
->gprs
[8], regs
->gprs
[9],
258 regs
->gprs
[10], regs
->gprs
[11]);
259 buffer
+= sprintf(buffer
, " " FOURLONG
,
260 regs
->gprs
[12], regs
->gprs
[13],
261 regs
->gprs
[14], regs
->gprs
[15]);
262 buffer
+= sprintf(buffer
, "User ACRS: %08x %08x %08x %08x\n",
263 task
->thread
.acrs
[0], task
->thread
.acrs
[1],
264 task
->thread
.acrs
[2], task
->thread
.acrs
[3]);
265 buffer
+= sprintf(buffer
, " %08x %08x %08x %08x\n",
266 task
->thread
.acrs
[4], task
->thread
.acrs
[5],
267 task
->thread
.acrs
[6], task
->thread
.acrs
[7]);
268 buffer
+= sprintf(buffer
, " %08x %08x %08x %08x\n",
269 task
->thread
.acrs
[8], task
->thread
.acrs
[9],
270 task
->thread
.acrs
[10], task
->thread
.acrs
[11]);
271 buffer
+= sprintf(buffer
, " %08x %08x %08x %08x\n",
272 task
->thread
.acrs
[12], task
->thread
.acrs
[13],
273 task
->thread
.acrs
[14], task
->thread
.acrs
[15]);
277 DEFINE_SPINLOCK(die_lock
);
279 void die(const char * str
, struct pt_regs
* regs
, long err
)
281 static int die_counter
;
285 spin_lock_irq(&die_lock
);
287 printk("%s: %04lx [#%d]\n", str
, err
& 0xffff, ++die_counter
);
290 spin_unlock_irq(&die_lock
);
292 panic("Fatal exception in interrupt");
294 panic("Fatal exception: panic_on_oops");
299 report_user_fault(long interruption_code
, struct pt_regs
*regs
)
301 #if defined(CONFIG_SYSCTL)
302 if (!sysctl_userprocess_debug
)
305 #if defined(CONFIG_SYSCTL) || defined(CONFIG_PROCESS_DEBUG)
306 printk("User process fault: interruption code 0x%lX\n",
312 static void inline do_trap(long interruption_code
, int signr
, char *str
,
313 struct pt_regs
*regs
, siginfo_t
*info
)
316 * We got all needed information from the lowcore and can
317 * now safely switch on interrupts.
319 if (regs
->psw
.mask
& PSW_MASK_PSTATE
)
322 if (regs
->psw
.mask
& PSW_MASK_PSTATE
) {
323 struct task_struct
*tsk
= current
;
325 tsk
->thread
.trap_no
= interruption_code
& 0xffff;
326 force_sig_info(signr
, info
, tsk
);
327 report_user_fault(interruption_code
, regs
);
329 const struct exception_table_entry
*fixup
;
330 fixup
= search_exception_tables(regs
->psw
.addr
& PSW_ADDR_INSN
);
332 regs
->psw
.addr
= fixup
->fixup
| PSW_ADDR_AMODE
;
334 die(str
, regs
, interruption_code
);
338 static inline void *get_check_address(struct pt_regs
*regs
)
340 return (void *)((regs
->psw
.addr
-S390_lowcore
.pgm_ilc
) & PSW_ADDR_INSN
);
343 void do_single_step(struct pt_regs
*regs
)
345 if ((current
->ptrace
& PT_PTRACED
) != 0)
346 force_sig(SIGTRAP
, current
);
350 default_trap_handler(struct pt_regs
* regs
, long interruption_code
)
352 if (regs
->psw
.mask
& PSW_MASK_PSTATE
) {
355 report_user_fault(interruption_code
, regs
);
357 die("Unknown program exception", regs
, interruption_code
);
360 #define DO_ERROR_INFO(signr, str, name, sicode, siaddr) \
361 asmlinkage void name(struct pt_regs * regs, long interruption_code) \
364 info.si_signo = signr; \
366 info.si_code = sicode; \
367 info.si_addr = (void *)siaddr; \
368 do_trap(interruption_code, signr, str, regs, &info); \
371 DO_ERROR_INFO(SIGILL
, "addressing exception", addressing_exception
,
372 ILL_ILLADR
, get_check_address(regs
))
373 DO_ERROR_INFO(SIGILL
, "execute exception", execute_exception
,
374 ILL_ILLOPN
, get_check_address(regs
))
375 DO_ERROR_INFO(SIGFPE
, "fixpoint divide exception", divide_exception
,
376 FPE_INTDIV
, get_check_address(regs
))
377 DO_ERROR_INFO(SIGFPE
, "fixpoint overflow exception", overflow_exception
,
378 FPE_INTOVF
, get_check_address(regs
))
379 DO_ERROR_INFO(SIGFPE
, "HFP overflow exception", hfp_overflow_exception
,
380 FPE_FLTOVF
, get_check_address(regs
))
381 DO_ERROR_INFO(SIGFPE
, "HFP underflow exception", hfp_underflow_exception
,
382 FPE_FLTUND
, get_check_address(regs
))
383 DO_ERROR_INFO(SIGFPE
, "HFP significance exception", hfp_significance_exception
,
384 FPE_FLTRES
, get_check_address(regs
))
385 DO_ERROR_INFO(SIGFPE
, "HFP divide exception", hfp_divide_exception
,
386 FPE_FLTDIV
, get_check_address(regs
))
387 DO_ERROR_INFO(SIGFPE
, "HFP square root exception", hfp_sqrt_exception
,
388 FPE_FLTINV
, get_check_address(regs
))
389 DO_ERROR_INFO(SIGILL
, "operand exception", operand_exception
,
390 ILL_ILLOPN
, get_check_address(regs
))
391 DO_ERROR_INFO(SIGILL
, "privileged operation", privileged_op
,
392 ILL_PRVOPC
, get_check_address(regs
))
393 DO_ERROR_INFO(SIGILL
, "special operation exception", special_op_exception
,
394 ILL_ILLOPN
, get_check_address(regs
))
395 DO_ERROR_INFO(SIGILL
, "translation exception", translation_exception
,
396 ILL_ILLOPN
, get_check_address(regs
))
399 do_fp_trap(struct pt_regs
*regs
, void *location
,
400 int fpc
, long interruption_code
)
404 si
.si_signo
= SIGFPE
;
406 si
.si_addr
= location
;
408 /* FPC[2] is Data Exception Code */
409 if ((fpc
& 0x00000300) == 0) {
410 /* bits 6 and 7 of DXC are 0 iff IEEE exception */
411 if (fpc
& 0x8000) /* invalid fp operation */
412 si
.si_code
= FPE_FLTINV
;
413 else if (fpc
& 0x4000) /* div by 0 */
414 si
.si_code
= FPE_FLTDIV
;
415 else if (fpc
& 0x2000) /* overflow */
416 si
.si_code
= FPE_FLTOVF
;
417 else if (fpc
& 0x1000) /* underflow */
418 si
.si_code
= FPE_FLTUND
;
419 else if (fpc
& 0x0800) /* inexact */
420 si
.si_code
= FPE_FLTRES
;
422 current
->thread
.ieee_instruction_pointer
= (addr_t
) location
;
423 do_trap(interruption_code
, SIGFPE
,
424 "floating point exception", regs
, &si
);
427 asmlinkage
void illegal_op(struct pt_regs
* regs
, long interruption_code
)
434 location
= (__u16
*) get_check_address(regs
);
437 * We got all needed information from the lowcore and can
438 * now safely switch on interrupts.
440 if (regs
->psw
.mask
& PSW_MASK_PSTATE
)
443 if (regs
->psw
.mask
& PSW_MASK_PSTATE
) {
444 get_user(*((__u16
*) opcode
), (__u16 __user
*) location
);
445 if (*((__u16
*) opcode
) == S390_BREAKPOINT_U16
) {
446 if (current
->ptrace
& PT_PTRACED
)
447 force_sig(SIGTRAP
, current
);
450 #ifdef CONFIG_MATHEMU
451 } else if (opcode
[0] == 0xb3) {
452 get_user(*((__u16
*) (opcode
+2)), location
+1);
453 signal
= math_emu_b3(opcode
, regs
);
454 } else if (opcode
[0] == 0xed) {
455 get_user(*((__u32
*) (opcode
+2)),
456 (__u32
*)(location
+1));
457 signal
= math_emu_ed(opcode
, regs
);
458 } else if (*((__u16
*) opcode
) == 0xb299) {
459 get_user(*((__u16
*) (opcode
+2)), location
+1);
460 signal
= math_emu_srnm(opcode
, regs
);
461 } else if (*((__u16
*) opcode
) == 0xb29c) {
462 get_user(*((__u16
*) (opcode
+2)), location
+1);
463 signal
= math_emu_stfpc(opcode
, regs
);
464 } else if (*((__u16
*) opcode
) == 0xb29d) {
465 get_user(*((__u16
*) (opcode
+2)), location
+1);
466 signal
= math_emu_lfpc(opcode
, regs
);
473 #ifdef CONFIG_MATHEMU
474 if (signal
== SIGFPE
)
475 do_fp_trap(regs
, location
,
476 current
->thread
.fp_regs
.fpc
, interruption_code
);
477 else if (signal
== SIGSEGV
) {
478 info
.si_signo
= signal
;
480 info
.si_code
= SEGV_MAPERR
;
481 info
.si_addr
= (void *) location
;
482 do_trap(interruption_code
, signal
,
483 "user address fault", regs
, &info
);
487 info
.si_signo
= signal
;
489 info
.si_code
= ILL_ILLOPC
;
490 info
.si_addr
= (void *) location
;
491 do_trap(interruption_code
, signal
,
492 "illegal operation", regs
, &info
);
497 #ifdef CONFIG_MATHEMU
499 specification_exception(struct pt_regs
* regs
, long interruption_code
)
502 __u16
*location
= NULL
;
505 location
= (__u16
*) get_check_address(regs
);
508 * We got all needed information from the lowcore and can
509 * now safely switch on interrupts.
511 if (regs
->psw
.mask
& PSW_MASK_PSTATE
)
514 if (regs
->psw
.mask
& PSW_MASK_PSTATE
) {
515 get_user(*((__u16
*) opcode
), location
);
517 case 0x28: /* LDR Rx,Ry */
518 signal
= math_emu_ldr(opcode
);
520 case 0x38: /* LER Rx,Ry */
521 signal
= math_emu_ler(opcode
);
523 case 0x60: /* STD R,D(X,B) */
524 get_user(*((__u16
*) (opcode
+2)), location
+1);
525 signal
= math_emu_std(opcode
, regs
);
527 case 0x68: /* LD R,D(X,B) */
528 get_user(*((__u16
*) (opcode
+2)), location
+1);
529 signal
= math_emu_ld(opcode
, regs
);
531 case 0x70: /* STE R,D(X,B) */
532 get_user(*((__u16
*) (opcode
+2)), location
+1);
533 signal
= math_emu_ste(opcode
, regs
);
535 case 0x78: /* LE R,D(X,B) */
536 get_user(*((__u16
*) (opcode
+2)), location
+1);
537 signal
= math_emu_le(opcode
, regs
);
546 if (signal
== SIGFPE
)
547 do_fp_trap(regs
, location
,
548 current
->thread
.fp_regs
.fpc
, interruption_code
);
551 info
.si_signo
= signal
;
553 info
.si_code
= ILL_ILLOPN
;
554 info
.si_addr
= location
;
555 do_trap(interruption_code
, signal
,
556 "specification exception", regs
, &info
);
560 DO_ERROR_INFO(SIGILL
, "specification exception", specification_exception
,
561 ILL_ILLOPN
, get_check_address(regs
));
564 asmlinkage
void data_exception(struct pt_regs
* regs
, long interruption_code
)
569 location
= (__u16
*) get_check_address(regs
);
572 * We got all needed information from the lowcore and can
573 * now safely switch on interrupts.
575 if (regs
->psw
.mask
& PSW_MASK_PSTATE
)
578 if (MACHINE_HAS_IEEE
)
579 __asm__
volatile ("stfpc %0\n\t"
580 : "=m" (current
->thread
.fp_regs
.fpc
));
582 #ifdef CONFIG_MATHEMU
583 else if (regs
->psw
.mask
& PSW_MASK_PSTATE
) {
585 get_user(*((__u16
*) opcode
), location
);
587 case 0x28: /* LDR Rx,Ry */
588 signal
= math_emu_ldr(opcode
);
590 case 0x38: /* LER Rx,Ry */
591 signal
= math_emu_ler(opcode
);
593 case 0x60: /* STD R,D(X,B) */
594 get_user(*((__u16
*) (opcode
+2)), location
+1);
595 signal
= math_emu_std(opcode
, regs
);
597 case 0x68: /* LD R,D(X,B) */
598 get_user(*((__u16
*) (opcode
+2)), location
+1);
599 signal
= math_emu_ld(opcode
, regs
);
601 case 0x70: /* STE R,D(X,B) */
602 get_user(*((__u16
*) (opcode
+2)), location
+1);
603 signal
= math_emu_ste(opcode
, regs
);
605 case 0x78: /* LE R,D(X,B) */
606 get_user(*((__u16
*) (opcode
+2)), location
+1);
607 signal
= math_emu_le(opcode
, regs
);
610 get_user(*((__u16
*) (opcode
+2)), location
+1);
611 signal
= math_emu_b3(opcode
, regs
);
614 get_user(*((__u32
*) (opcode
+2)),
615 (__u32
*)(location
+1));
616 signal
= math_emu_ed(opcode
, regs
);
619 if (opcode
[1] == 0x99) {
620 get_user(*((__u16
*) (opcode
+2)), location
+1);
621 signal
= math_emu_srnm(opcode
, regs
);
622 } else if (opcode
[1] == 0x9c) {
623 get_user(*((__u16
*) (opcode
+2)), location
+1);
624 signal
= math_emu_stfpc(opcode
, regs
);
625 } else if (opcode
[1] == 0x9d) {
626 get_user(*((__u16
*) (opcode
+2)), location
+1);
627 signal
= math_emu_lfpc(opcode
, regs
);
637 if (current
->thread
.fp_regs
.fpc
& FPC_DXC_MASK
)
641 if (signal
== SIGFPE
)
642 do_fp_trap(regs
, location
,
643 current
->thread
.fp_regs
.fpc
, interruption_code
);
646 info
.si_signo
= signal
;
648 info
.si_code
= ILL_ILLOPN
;
649 info
.si_addr
= location
;
650 do_trap(interruption_code
, signal
,
651 "data exception", regs
, &info
);
655 asmlinkage
void space_switch_exception(struct pt_regs
* regs
, long int_code
)
659 /* Set user psw back to home space mode. */
660 if (regs
->psw
.mask
& PSW_MASK_PSTATE
)
661 regs
->psw
.mask
|= PSW_ASC_HOME
;
663 info
.si_signo
= SIGILL
;
665 info
.si_code
= ILL_PRVOPC
;
666 info
.si_addr
= get_check_address(regs
);
667 do_trap(int_code
, SIGILL
, "space switch event", regs
, &info
);
670 asmlinkage
void kernel_stack_overflow(struct pt_regs
* regs
)
673 printk("Kernel stack overflow.\n");
676 panic("Corrupt kernel stack, can't continue.");
679 #ifndef CONFIG_ARCH_S390X
681 pagex_reboot_event(struct notifier_block
*this, unsigned long event
, void *ptr
)
684 cpcmd("SET PAGEX OFF", NULL
, 0, NULL
);
688 static struct notifier_block pagex_reboot_notifier
= {
689 .notifier_call
= &pagex_reboot_event
,
693 /* init is done in lowcore.S and head.S */
695 void __init
trap_init(void)
699 for (i
= 0; i
< 128; i
++)
700 pgm_check_table
[i
] = &default_trap_handler
;
701 pgm_check_table
[1] = &illegal_op
;
702 pgm_check_table
[2] = &privileged_op
;
703 pgm_check_table
[3] = &execute_exception
;
704 pgm_check_table
[4] = &do_protection_exception
;
705 pgm_check_table
[5] = &addressing_exception
;
706 pgm_check_table
[6] = &specification_exception
;
707 pgm_check_table
[7] = &data_exception
;
708 pgm_check_table
[8] = &overflow_exception
;
709 pgm_check_table
[9] = ÷_exception
;
710 pgm_check_table
[0x0A] = &overflow_exception
;
711 pgm_check_table
[0x0B] = ÷_exception
;
712 pgm_check_table
[0x0C] = &hfp_overflow_exception
;
713 pgm_check_table
[0x0D] = &hfp_underflow_exception
;
714 pgm_check_table
[0x0E] = &hfp_significance_exception
;
715 pgm_check_table
[0x0F] = &hfp_divide_exception
;
716 pgm_check_table
[0x10] = &do_dat_exception
;
717 pgm_check_table
[0x11] = &do_dat_exception
;
718 pgm_check_table
[0x12] = &translation_exception
;
719 pgm_check_table
[0x13] = &special_op_exception
;
720 #ifndef CONFIG_ARCH_S390X
721 pgm_check_table
[0x14] = &do_pseudo_page_fault
;
722 #else /* CONFIG_ARCH_S390X */
723 pgm_check_table
[0x38] = &do_dat_exception
;
724 pgm_check_table
[0x39] = &do_dat_exception
;
725 pgm_check_table
[0x3A] = &do_dat_exception
;
726 pgm_check_table
[0x3B] = &do_dat_exception
;
727 #endif /* CONFIG_ARCH_S390X */
728 pgm_check_table
[0x15] = &operand_exception
;
729 pgm_check_table
[0x1C] = &space_switch_exception
;
730 pgm_check_table
[0x1D] = &hfp_sqrt_exception
;
731 pgm_check_table
[0x40] = &do_monitor_call
;
735 * First try to get pfault pseudo page faults going.
736 * If this isn't available turn on pagex page faults.
739 /* request the 0x2603 external interrupt */
740 if (register_early_external_interrupt(0x2603, pfault_interrupt
,
741 &ext_int_pfault
) != 0)
742 panic("Couldn't request external interrupt 0x2603");
744 if (pfault_init() == 0)
747 /* Tough luck, no pfault. */
748 unregister_early_external_interrupt(0x2603, pfault_interrupt
,
751 #ifndef CONFIG_ARCH_S390X
752 register_reboot_notifier(&pagex_reboot_notifier
);
753 cpcmd("SET PAGEX ON", NULL
, 0, NULL
);