1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_S390_FTRACE_H
3 #define _ASM_S390_FTRACE_H
5 #define ARCH_SUPPORTS_FTRACE_OPS 1
7 #ifdef CC_USING_HOTPATCH
8 #define MCOUNT_INSN_SIZE 6
10 #define MCOUNT_INSN_SIZE 24
11 #define MCOUNT_RETURN_FIXUP 18
16 #define ftrace_return_address(n) __builtin_return_address(n)
19 void ftrace_caller(void);
21 extern char ftrace_graph_caller_end
;
22 extern unsigned long ftrace_plt
;
24 struct dyn_arch_ftrace
{ };
26 #define MCOUNT_ADDR ((unsigned long)_mcount)
27 #define FTRACE_ADDR ((unsigned long)ftrace_caller)
29 #define KPROBE_ON_FTRACE_NOP 0
30 #define KPROBE_ON_FTRACE_CALL 1
32 static inline unsigned long ftrace_call_adjust(unsigned long addr
)
42 static inline void ftrace_generate_nop_insn(struct ftrace_insn
*insn
)
44 #ifdef CONFIG_FUNCTION_TRACER
45 #ifdef CC_USING_HOTPATCH
52 insn
->disp
= MCOUNT_INSN_SIZE
/ 2;
57 static inline int is_ftrace_nop(struct ftrace_insn
*insn
)
59 #ifdef CONFIG_FUNCTION_TRACER
60 #ifdef CC_USING_HOTPATCH
64 if (insn
->disp
== MCOUNT_INSN_SIZE
/ 2)
71 static inline void ftrace_generate_call_insn(struct ftrace_insn
*insn
,
74 #ifdef CONFIG_FUNCTION_TRACER
77 /* brasl r0,ftrace_caller */
78 target
= is_module_addr((void *) ip
) ? ftrace_plt
: FTRACE_ADDR
;
80 insn
->disp
= (target
- ip
) / 2;
84 #endif /* __ASSEMBLY__ */
85 #endif /* _ASM_S390_FTRACE_H */