Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 1 | #ifndef _ENTRY_H |
| 2 | #define _ENTRY_H |
| 3 | |
Heiko Carstens | 521b00c | 2016-05-07 12:15:21 +0200 | [diff] [blame] | 4 | #include <linux/percpu.h> |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 5 | #include <linux/types.h> |
| 6 | #include <linux/signal.h> |
| 7 | #include <asm/ptrace.h> |
Martin Schwidefsky | b5f87f1 | 2014-10-01 10:57:57 +0200 | [diff] [blame] | 8 | #include <asm/idle.h> |
Martin Schwidefsky | 638ad34 | 2011-10-30 15:17:13 +0100 | [diff] [blame] | 9 | |
Martin Schwidefsky | 638ad34 | 2011-10-30 15:17:13 +0100 | [diff] [blame] | 10 | extern void *restart_stack; |
Michael Holzheu | 91c15a9 | 2013-04-08 16:09:31 +0200 | [diff] [blame] | 11 | extern unsigned long suspend_zero_pages; |
Martin Schwidefsky | 638ad34 | 2011-10-30 15:17:13 +0100 | [diff] [blame] | 12 | |
Martin Schwidefsky | 8b646bd | 2012-03-11 11:59:26 -0400 | [diff] [blame] | 13 | void system_call(void); |
| 14 | void pgm_check_handler(void); |
| 15 | void ext_int_handler(void); |
| 16 | void io_int_handler(void); |
| 17 | void mcck_int_handler(void); |
| 18 | void restart_int_handler(void); |
| 19 | void restart_call_handler(void); |
| 20 | |
Martin Schwidefsky | 638ad34 | 2011-10-30 15:17:13 +0100 | [diff] [blame] | 21 | asmlinkage long do_syscall_trace_enter(struct pt_regs *regs); |
| 22 | asmlinkage void do_syscall_trace_exit(struct pt_regs *regs); |
| 23 | |
Martin Schwidefsky | aa33c8c | 2011-12-27 11:27:18 +0100 | [diff] [blame] | 24 | void do_protection_exception(struct pt_regs *regs); |
| 25 | void do_dat_exception(struct pt_regs *regs); |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 26 | |
Heiko Carstens | b01a37a | 2012-10-18 18:10:06 +0200 | [diff] [blame] | 27 | void addressing_exception(struct pt_regs *regs); |
| 28 | void data_exception(struct pt_regs *regs); |
| 29 | void default_trap_handler(struct pt_regs *regs); |
| 30 | void divide_exception(struct pt_regs *regs); |
| 31 | void execute_exception(struct pt_regs *regs); |
| 32 | void hfp_divide_exception(struct pt_regs *regs); |
| 33 | void hfp_overflow_exception(struct pt_regs *regs); |
| 34 | void hfp_significance_exception(struct pt_regs *regs); |
| 35 | void hfp_sqrt_exception(struct pt_regs *regs); |
| 36 | void hfp_underflow_exception(struct pt_regs *regs); |
| 37 | void illegal_op(struct pt_regs *regs); |
| 38 | void operand_exception(struct pt_regs *regs); |
| 39 | void overflow_exception(struct pt_regs *regs); |
| 40 | void privileged_op(struct pt_regs *regs); |
| 41 | void space_switch_exception(struct pt_regs *regs); |
| 42 | void special_op_exception(struct pt_regs *regs); |
| 43 | void specification_exception(struct pt_regs *regs); |
| 44 | void transaction_exception(struct pt_regs *regs); |
| 45 | void translation_exception(struct pt_regs *regs); |
Martin Schwidefsky | 8070361 | 2014-10-06 17:53:53 +0200 | [diff] [blame] | 46 | void vector_exception(struct pt_regs *regs); |
Heiko Carstens | b01a37a | 2012-10-18 18:10:06 +0200 | [diff] [blame] | 47 | |
Martin Schwidefsky | 5e9a269 | 2011-01-05 12:48:10 +0100 | [diff] [blame] | 48 | void do_per_trap(struct pt_regs *regs); |
Jan Willeke | 2a0a5b2 | 2014-09-22 16:39:06 +0200 | [diff] [blame] | 49 | void do_report_trap(struct pt_regs *regs, int si_signo, int si_code, char *str); |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 50 | void syscall_trace(struct pt_regs *regs, int entryexit); |
| 51 | void kernel_stack_overflow(struct pt_regs * regs); |
| 52 | void do_signal(struct pt_regs *regs); |
Richard Weinberger | 067bf2d | 2014-07-13 22:21:03 +0200 | [diff] [blame] | 53 | void handle_signal32(struct ksignal *ksig, sigset_t *oldset, |
| 54 | struct pt_regs *regs); |
Martin Schwidefsky | 638ad34 | 2011-10-30 15:17:13 +0100 | [diff] [blame] | 55 | void do_notify_resume(struct pt_regs *regs); |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 56 | |
Heiko Carstens | 63df41d6 | 2013-09-06 19:10:48 +0200 | [diff] [blame] | 57 | void __init init_IRQ(void); |
| 58 | void do_IRQ(struct pt_regs *regs, int irq); |
Martin Schwidefsky | 638ad34 | 2011-10-30 15:17:13 +0100 | [diff] [blame] | 59 | void do_restart(void); |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 60 | void __init startup_init(void); |
Martin Schwidefsky | aa33c8c | 2011-12-27 11:27:18 +0100 | [diff] [blame] | 61 | void die(struct pt_regs *regs, const char *str); |
Heiko Carstens | 63df41d6 | 2013-09-06 19:10:48 +0200 | [diff] [blame] | 62 | int setup_profiling_timer(unsigned int multiplier); |
Martin Schwidefsky | 638ad34 | 2011-10-30 15:17:13 +0100 | [diff] [blame] | 63 | void __init time_init(void); |
Heiko Carstens | 63df41d6 | 2013-09-06 19:10:48 +0200 | [diff] [blame] | 64 | int pfn_is_nosave(unsigned long); |
| 65 | void s390_early_resume(void); |
| 66 | unsigned long prepare_ftrace_return(unsigned long parent, unsigned long ip); |
Martin Schwidefsky | 638ad34 | 2011-10-30 15:17:13 +0100 | [diff] [blame] | 67 | |
Christoph Hellwig | a467937 | 2010-03-10 15:21:15 -0800 | [diff] [blame] | 68 | struct s390_mmap_arg_struct; |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 69 | struct fadvise64_64_args; |
| 70 | struct old_sigaction; |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 71 | |
Heiko Carstens | e0a5054 | 2014-12-12 13:11:08 +0100 | [diff] [blame] | 72 | long sys_rt_sigreturn(void); |
| 73 | long sys_sigreturn(void); |
| 74 | |
Heiko Carstens | 86d295e | 2014-02-27 15:16:04 +0100 | [diff] [blame] | 75 | long sys_s390_personality(unsigned int personality); |
Heiko Carstens | 00fcb149 | 2014-03-01 12:18:46 +0100 | [diff] [blame] | 76 | long sys_s390_runtime_instr(int command, int signum); |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame^] | 77 | long sys_s390_guarded_storage(int command, struct gs_cb __user *); |
Alexey Ishchuk | 4eafad7 | 2014-11-14 14:27:58 +0100 | [diff] [blame] | 78 | long sys_s390_pci_mmio_write(unsigned long, const void __user *, size_t); |
| 79 | long sys_s390_pci_mmio_read(unsigned long, void __user *, size_t); |
Heiko Carstens | 521b00c | 2016-05-07 12:15:21 +0200 | [diff] [blame] | 80 | |
| 81 | DECLARE_PER_CPU(u64, mt_cycles[8]); |
| 82 | |
Heiko Carstens | be2412c | 2016-06-27 15:52:38 +0200 | [diff] [blame] | 83 | void verify_facilities(void); |
Martin Schwidefsky | 916cda1 | 2016-01-26 14:10:34 +0100 | [diff] [blame^] | 84 | void gs_load_bc_cb(struct pt_regs *regs); |
Heiko Carstens | b5a882f | 2017-02-17 08:13:28 +0100 | [diff] [blame] | 85 | void set_fs_fixup(void); |
Heiko Carstens | be2412c | 2016-06-27 15:52:38 +0200 | [diff] [blame] | 86 | |
Heiko Carstens | a806170 | 2008-04-17 07:46:26 +0200 | [diff] [blame] | 87 | #endif /* _ENTRY_H */ |