Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
[linux-2.6-block.git] / arch / powerpc / include / asm / asm-prototypes.h
CommitLineData
42f5b4ca
DA
1#ifndef _ASM_POWERPC_ASM_PROTOTYPES_H
2#define _ASM_POWERPC_ASM_PROTOTYPES_H
3/*
4 * This file is for prototypes of C functions that are only called
5 * from asm, and any associated variables.
6 *
7 * Copyright 2016, Daniel Axtens, IBM Corporation.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 */
14
15#include <linux/threads.h>
9e5f6884
NP
16#include <asm/cacheflush.h>
17#include <asm/checksum.h>
7c0f6ba6 18#include <linux/uaccess.h>
9e5f6884 19#include <asm/epapr_hcalls.h>
43a8888f
BH
20#include <asm/dcr.h>
21#include <asm/mmu_context.h>
42f5b4ca 22
0545d543
DA
23#include <uapi/asm/ucontext.h>
24
42f5b4ca
DA
25/* SMP */
26extern struct thread_info *current_set[NR_CPUS];
27extern struct thread_info *secondary_ti;
28void start_secondary(void *unused);
29
30/* kexec */
31struct paca_struct;
32struct kimage;
33extern struct paca_struct kexec_paca;
34void kexec_copy_flush(struct kimage *image);
35
36/* pseries hcall tracing */
37extern struct static_key hcall_tracepoint_key;
38void __trace_hcall_entry(unsigned long opcode, unsigned long *args);
8f2133cc 39void __trace_hcall_exit(long opcode, long retval, unsigned long *retbuf);
42f5b4ca
DA
40/* OPAL tracing */
41#ifdef HAVE_JUMP_LABEL
42extern struct static_key opal_tracepoint_key;
43#endif
44
45void __trace_opal_entry(unsigned long opcode, unsigned long *args);
46void __trace_opal_exit(long opcode, unsigned long retval);
47
48/* VMX copying */
49int enter_vmx_usercopy(void);
50int exit_vmx_usercopy(void);
d58badfb
SG
51int enter_vmx_ops(void);
52void *exit_vmx_ops(void *dest);
42f5b4ca
DA
53
54/* Traps */
55long machine_check_early(struct pt_regs *regs);
56long hmi_exception_realmode(struct pt_regs *regs);
57void SMIException(struct pt_regs *regs);
58void handle_hmi_exception(struct pt_regs *regs);
59void instruction_breakpoint_exception(struct pt_regs *regs);
60void RunModeException(struct pt_regs *regs);
03465f89
NP
61void single_step_exception(struct pt_regs *regs);
62void program_check_exception(struct pt_regs *regs);
42f5b4ca
DA
63void alignment_exception(struct pt_regs *regs);
64void StackOverflow(struct pt_regs *regs);
42f5b4ca
DA
65void kernel_fp_unavailable_exception(struct pt_regs *regs);
66void altivec_unavailable_exception(struct pt_regs *regs);
67void vsx_unavailable_exception(struct pt_regs *regs);
68void fp_unavailable_tm(struct pt_regs *regs);
69void altivec_unavailable_tm(struct pt_regs *regs);
70void vsx_unavailable_tm(struct pt_regs *regs);
71void facility_unavailable_exception(struct pt_regs *regs);
72void TAUException(struct pt_regs *regs);
73void altivec_assist_exception(struct pt_regs *regs);
74void unrecoverable_exception(struct pt_regs *regs);
75void kernel_bad_stack(struct pt_regs *regs);
76void system_reset_exception(struct pt_regs *regs);
77void machine_check_exception(struct pt_regs *regs);
03465f89 78void emulation_assist_interrupt(struct pt_regs *regs);
48e7b769
NP
79long do_slb_fault(struct pt_regs *regs, unsigned long ea);
80void do_bad_slb_fault(struct pt_regs *regs, unsigned long ea, long err);
42f5b4ca 81
0545d543 82/* signals, syscalls and interrupts */
0545d543
DA
83long sys_swapcontext(struct ucontext __user *old_ctx,
84 struct ucontext __user *new_ctx,
f3675644
AV
85 long ctx_size);
86#ifdef CONFIG_PPC32
87long sys_debug_setcontext(struct ucontext __user *ctx,
88 int ndbg, struct sig_dbg_op __user *dbg);
bf7fb32d
MM
89int
90ppc_select(int n, fd_set __user *inp, fd_set __user *outp, fd_set __user *exp, struct timeval __user *tvp);
e82d70cf
MM
91unsigned long __init early_init(unsigned long dt_ptr);
92void __init machine_init(u64 dt_ptr);
0545d543 93#endif
e82d70cf 94
bf7fb32d
MM
95long ppc_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low,
96 u32 len_high, u32 len_low);
0545d543
DA
97long sys_switch_endian(void);
98notrace unsigned int __check_irq_replay(void);
99void notrace restore_interrupts(void);
100
101/* ptrace */
102long do_syscall_trace_enter(struct pt_regs *regs);
103void do_syscall_trace_leave(struct pt_regs *regs);
104
105/* process */
106void restore_math(struct pt_regs *regs);
107void restore_tm_state(struct pt_regs *regs);
108
109/* prom_init (OpenFirmware) */
110unsigned long __init prom_init(unsigned long r3, unsigned long r4,
111 unsigned long pp,
112 unsigned long r6, unsigned long r7,
113 unsigned long kbase);
114
115/* setup */
116void __init early_setup(unsigned long dt_ptr);
117void early_setup_secondary(void);
118
119/* time */
120void accumulate_stolen_time(void);
121
9e5f6884
NP
122/* misc runtime */
123extern u64 __bswapdi2(u64);
124extern s64 __lshrdi3(s64, int);
125extern s64 __ashldi3(s64, int);
126extern s64 __ashrdi3(s64, int);
127extern int __cmpdi2(s64, s64);
128extern int __ucmpdi2(u64, u64);
129
b3a7864c 130/* tracing */
99ad5032 131void _mcount(void);
b3a7864c 132unsigned long prepare_ftrace_return(unsigned long parent, unsigned long ip);
99ad5032 133
7672691a
PM
134void pnv_power9_force_smt4_catch(void);
135void pnv_power9_force_smt4_release(void);
136
caa3be92 137/* Transaction memory related */
eacbb218
SG
138void tm_enable(void);
139void tm_disable(void);
140void tm_abort(uint8_t cause);
caa3be92
SG
141
142struct kvm_vcpu;
143void _kvmppc_restore_tm_pr(struct kvm_vcpu *vcpu, u64 guest_msr);
144void _kvmppc_save_tm_pr(struct kvm_vcpu *vcpu, u64 guest_msr);
145
ee13cb24
ME
146/* Patch sites */
147extern s32 patch__call_flush_count_cache;
148extern s32 patch__flush_count_cache_return;
fa54a981 149extern s32 patch__memset_nocache, patch__memcpy_nocache;
ee13cb24
ME
150
151extern long flush_count_cache;
152
7854f754
PM
153#ifdef CONFIG_PPC_TRANSACTIONAL_MEM
154void kvmppc_save_tm_hv(struct kvm_vcpu *vcpu, u64 msr, bool preserve_nv);
155void kvmppc_restore_tm_hv(struct kvm_vcpu *vcpu, u64 msr, bool preserve_nv);
156#else
157static inline void kvmppc_save_tm_hv(struct kvm_vcpu *vcpu, u64 msr,
158 bool preserve_nv) { }
159static inline void kvmppc_restore_tm_hv(struct kvm_vcpu *vcpu, u64 msr,
160 bool preserve_nv) { }
161#endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
162
41f4e631
PM
163void kvmhv_save_host_pmu(void);
164void kvmhv_load_host_pmu(void);
165void kvmhv_save_guest_pmu(struct kvm_vcpu *vcpu, bool pmu_in_use);
166void kvmhv_load_guest_pmu(struct kvm_vcpu *vcpu);
167
95a6432c
PM
168int __kvmhv_vcpu_entry_p9(struct kvm_vcpu *vcpu);
169
4bad7779
PM
170long kvmppc_h_set_dabr(struct kvm_vcpu *vcpu, unsigned long dabr);
171long kvmppc_h_set_xdabr(struct kvm_vcpu *vcpu, unsigned long dabr,
172 unsigned long dabrx);
173
42f5b4ca 174#endif /* _ASM_POWERPC_ASM_PROTOTYPES_H */