113d194acea014edf819ba6a8d93ca87308cd1eb
[platform/kernel/linux-starfive.git] / arch / s390 / include / asm / ftrace.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_S390_FTRACE_H
3 #define _ASM_S390_FTRACE_H
4
5 #define HAVE_FUNCTION_GRAPH_RET_ADDR_PTR
6 #define ARCH_SUPPORTS_FTRACE_OPS 1
7 #define MCOUNT_INSN_SIZE        6
8
9 #ifndef __ASSEMBLY__
10
11 #ifdef CONFIG_CC_IS_CLANG
12 /* https://bugs.llvm.org/show_bug.cgi?id=41424 */
13 #define ftrace_return_address(n) 0UL
14 #else
15 #define ftrace_return_address(n) __builtin_return_address(n)
16 #endif
17
18 void ftrace_caller(void);
19
20 extern void *ftrace_func;
21
22 struct dyn_arch_ftrace { };
23
24 #define MCOUNT_ADDR 0
25 #define FTRACE_ADDR ((unsigned long)ftrace_caller)
26
27 #define KPROBE_ON_FTRACE_NOP    0
28 #define KPROBE_ON_FTRACE_CALL   1
29
30 struct module;
31 struct dyn_ftrace;
32
33 bool ftrace_need_init_nop(void);
34 #define ftrace_need_init_nop ftrace_need_init_nop
35
36 int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec);
37 #define ftrace_init_nop ftrace_init_nop
38
39 static inline unsigned long ftrace_call_adjust(unsigned long addr)
40 {
41         return addr;
42 }
43
44 struct ftrace_regs {
45         struct pt_regs regs;
46 };
47
48 static __always_inline struct pt_regs *arch_ftrace_get_regs(struct ftrace_regs *fregs)
49 {
50         struct pt_regs *regs = &fregs->regs;
51
52         if (test_pt_regs_flag(regs, PIF_FTRACE_FULL_REGS))
53                 return regs;
54         return NULL;
55 }
56
57 static __always_inline void
58 ftrace_regs_set_instruction_pointer(struct ftrace_regs *fregs,
59                                     unsigned long ip)
60 {
61         fregs->regs.psw.addr = ip;
62 }
63
64 #ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS
65 /*
66  * When an ftrace registered caller is tracing a function that is
67  * also set by a register_ftrace_direct() call, it needs to be
68  * differentiated in the ftrace_caller trampoline. To do this,
69  * place the direct caller in the ORIG_GPR2 part of pt_regs. This
70  * tells the ftrace_caller that there's a direct caller.
71  */
72 static inline void arch_ftrace_set_direct_caller(struct ftrace_regs *fregs, unsigned long addr)
73 {
74         struct pt_regs *regs = &fregs->regs;
75         regs->orig_gpr2 = addr;
76 }
77 #endif /* CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS */
78
79 /*
80  * Even though the system call numbers are identical for s390/s390x a
81  * different system call table is used for compat tasks. This may lead
82  * to e.g. incorrect or missing trace event sysfs files.
83  * Therefore simply do not trace compat system calls at all.
84  * See kernel/trace/trace_syscalls.c.
85  */
86 #define ARCH_TRACE_IGNORE_COMPAT_SYSCALLS
87 static inline bool arch_trace_is_compat_syscall(struct pt_regs *regs)
88 {
89         return is_compat_task();
90 }
91
92 #define ARCH_HAS_SYSCALL_MATCH_SYM_NAME
93 static inline bool arch_syscall_match_sym_name(const char *sym,
94                                                const char *name)
95 {
96         /*
97          * Skip __s390_ and __s390x_ prefix - due to compat wrappers
98          * and aliasing some symbols of 64 bit system call functions
99          * may get the __s390_ prefix instead of the __s390x_ prefix.
100          */
101         return !strcmp(sym + 7, name) || !strcmp(sym + 8, name);
102 }
103
104 #endif /* __ASSEMBLY__ */
105
106 #ifdef CONFIG_FUNCTION_TRACER
107
108 #define FTRACE_NOP_INSN .word 0xc004, 0x0000, 0x0000 /* brcl 0,0 */
109
110 #ifndef CC_USING_HOTPATCH
111
112 #define FTRACE_GEN_MCOUNT_RECORD(name)          \
113         .section __mcount_loc, "a", @progbits;  \
114         .quad name;                             \
115         .previous;
116
117 #else /* !CC_USING_HOTPATCH */
118
119 #define FTRACE_GEN_MCOUNT_RECORD(name)
120
121 #endif /* !CC_USING_HOTPATCH */
122
123 #define FTRACE_GEN_NOP_ASM(name)                \
124         FTRACE_GEN_MCOUNT_RECORD(name)          \
125         FTRACE_NOP_INSN
126
127 #else /* CONFIG_FUNCTION_TRACER */
128
129 #define FTRACE_GEN_NOP_ASM(name)
130
131 #endif /* CONFIG_FUNCTION_TRACER */
132
133 #endif /* _ASM_S390_FTRACE_H */