Merge tag 'soc-ep93xx-dt-6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[linux-block.git] / arch / arm64 / include / asm / ftrace.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
819e50e2
AT
2/*
3 * arch/arm64/include/asm/ftrace.h
4 *
5 * Copyright (C) 2013 Linaro Limited
6 * Author: AKASHI Takahiro <takahiro.akashi@linaro.org>
819e50e2
AT
7 */
8#ifndef __ASM_FTRACE_H
9#define __ASM_FTRACE_H
10
11#include <asm/insn.h>
12
5c176aff 13#define HAVE_FUNCTION_GRAPH_FP_TEST
3b23e499 14
26299b3f 15#ifdef CONFIG_DYNAMIC_FTRACE_WITH_ARGS
3b23e499
TD
16#define ARCH_SUPPORTS_FTRACE_OPS 1
17#else
607289a7 18#define MCOUNT_ADDR ((unsigned long)_mcount)
3b23e499
TD
19#endif
20
21/* The BL at the callsite's adjusted rec->ip */
819e50e2
AT
22#define MCOUNT_INSN_SIZE AARCH64_INSN_SIZE
23
3b23e499 24#define FTRACE_PLT_IDX 0
26299b3f 25#define NR_FTRACE_PLTS 1
3b23e499 26
f7edb451
SRV
27/*
28 * Currently, gcc tends to save the link register after the local variables
29 * on the stack. This causes the max stack tracer to report the function
30 * frame sizes for the wrong functions. By defining
31 * ARCH_FTRACE_SHIFT_STACK_TRACER, it will tell the stack tracer to expect
32 * to find the return address on the stack after the local variables have
33 * been set up.
34 *
35 * Note, this may change in the future, and we will need to deal with that
36 * if it were to happen.
37 */
38#define ARCH_FTRACE_SHIFT_STACK_TRACER 1
39
819e50e2 40#ifndef __ASSEMBLY__
055b1212
AT
41#include <linux/compat.h>
42
819e50e2 43extern void _mcount(unsigned long);
3711784e 44extern void *return_address(unsigned int);
bd7d38db
AT
45
46struct dyn_arch_ftrace {
47 /* No extra data needed for arm64 */
48};
49
50extern unsigned long ftrace_graph_call;
51
20380bb3
AT
52extern void return_to_handler(void);
53
baaf553d 54unsigned long ftrace_call_adjust(unsigned long addr);
3711784e 55
26299b3f 56#ifdef CONFIG_DYNAMIC_FTRACE_WITH_ARGS
3b23e499 57struct dyn_ftrace;
c4a0ebf8 58struct ftrace_ops;
26299b3f
MR
59
60#define arch_ftrace_get_regs(regs) NULL
61
2aa6ac03
FR
62/*
63 * Note: sizeof(struct ftrace_regs) must be a multiple of 16 to ensure correct
64 * stack alignment
65 */
26299b3f
MR
66struct ftrace_regs {
67 /* x0 - x8 */
68 unsigned long regs[9];
2aa6ac03
FR
69
70#ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS
71 unsigned long direct_tramp;
72#else
26299b3f 73 unsigned long __unused;
2aa6ac03 74#endif
26299b3f
MR
75
76 unsigned long fp;
77 unsigned long lr;
78
79 unsigned long sp;
80 unsigned long pc;
81};
82
83static __always_inline unsigned long
84ftrace_regs_get_instruction_pointer(const struct ftrace_regs *fregs)
85{
86 return fregs->pc;
87}
88
89static __always_inline void
90ftrace_regs_set_instruction_pointer(struct ftrace_regs *fregs,
91 unsigned long pc)
92{
93 fregs->pc = pc;
94}
95
96static __always_inline unsigned long
97ftrace_regs_get_stack_pointer(const struct ftrace_regs *fregs)
98{
99 return fregs->sp;
100}
101
102static __always_inline unsigned long
103ftrace_regs_get_argument(struct ftrace_regs *fregs, unsigned int n)
104{
105 if (n < 8)
106 return fregs->regs[n];
107 return 0;
108}
109
110static __always_inline unsigned long
111ftrace_regs_get_return_value(const struct ftrace_regs *fregs)
112{
113 return fregs->regs[0];
114}
115
116static __always_inline void
117ftrace_regs_set_return_value(struct ftrace_regs *fregs,
118 unsigned long ret)
119{
120 fregs->regs[0] = ret;
121}
122
123static __always_inline void
124ftrace_override_function_with_return(struct ftrace_regs *fregs)
125{
126 fregs->pc = fregs->lr;
127}
128
129int ftrace_regs_query_register_offset(const char *name);
c4a0ebf8 130
3b23e499
TD
131int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec);
132#define ftrace_init_nop ftrace_init_nop
c4a0ebf8
CZ
133
134void ftrace_graph_func(unsigned long ip, unsigned long parent_ip,
135 struct ftrace_ops *op, struct ftrace_regs *fregs);
136#define ftrace_graph_func ftrace_graph_func
2aa6ac03
FR
137
138#ifdef CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS
139static inline void arch_ftrace_set_direct_caller(struct ftrace_regs *fregs,
140 unsigned long addr)
141{
142 /*
143 * The ftrace trampoline will return to this address instead of the
144 * instrumented function.
145 */
146 fregs->direct_tramp = addr;
147}
148#endif /* CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS */
149
3b23e499
TD
150#endif
151
3711784e 152#define ftrace_return_address(n) return_address(n)
055b1212
AT
153
154/*
155 * Because AArch32 mode does not share the same syscall table with AArch64,
156 * tracing compat syscalls may result in reporting bogus syscalls or even
157 * hang-up, so just do not trace them.
158 * See kernel/trace/trace_syscalls.c
159 *
160 * x86 code says:
ef769e32 161 * If the user really wants these, then they should use the
055b1212
AT
162 * raw syscall tracepoints with filtering.
163 */
164#define ARCH_TRACE_IGNORE_COMPAT_SYSCALLS
165static inline bool arch_trace_is_compat_syscall(struct pt_regs *regs)
166{
167 return is_compat_task();
168}
874bfc6e
MH
169
170#define ARCH_HAS_SYSCALL_MATCH_SYM_NAME
171
172static inline bool arch_syscall_match_sym_name(const char *sym,
173 const char *name)
174{
175 /*
176 * Since all syscall functions have __arm64_ prefix, we must skip it.
177 * However, as we described above, we decided to ignore compat
178 * syscalls, so we don't care about __arm64_compat_ prefix here.
179 */
180 return !strcmp(sym + 8, name);
181}
3711784e 182#endif /* ifndef __ASSEMBLY__ */
819e50e2 183
36469703
DP
184#ifndef __ASSEMBLY__
185#ifdef CONFIG_FUNCTION_GRAPH_TRACER
186struct fgraph_ret_regs {
187 /* x0 - x7 */
188 unsigned long regs[8];
189
190 unsigned long fp;
191 unsigned long __unused;
192};
193
194static inline unsigned long fgraph_ret_regs_return_value(struct fgraph_ret_regs *ret_regs)
195{
196 return ret_regs->regs[0];
197}
198
199static inline unsigned long fgraph_ret_regs_frame_pointer(struct fgraph_ret_regs *ret_regs)
200{
201 return ret_regs->fp;
202}
7d8b31b7
AB
203
204void prepare_ftrace_return(unsigned long self_addr, unsigned long *parent,
205 unsigned long frame_pointer);
206
36469703
DP
207#endif /* ifdef CONFIG_FUNCTION_GRAPH_TRACER */
208#endif
209
819e50e2 210#endif /* __ASM_FTRACE_H */