tracing/fastboot: Enable boot tracing only during initcalls
[linux-2.6-block.git] / include / linux / ftrace.h
CommitLineData
16444a8a
ACM
1#ifndef _LINUX_FTRACE_H
2#define _LINUX_FTRACE_H
3
16444a8a 4#include <linux/linkage.h>
d49dbf33 5#include <linux/fs.h>
eb7fa935 6#include <linux/ktime.h>
d13744cd
FW
7#include <linux/init.h>
8#include <linux/types.h>
5601020f 9#include <linux/kallsyms.h>
16444a8a 10
606576ce 11#ifdef CONFIG_FUNCTION_TRACER
3e1932ad 12
b0fc494f
SR
13extern int ftrace_enabled;
14extern int
15ftrace_enable_sysctl(struct ctl_table *table, int write,
16 struct file *filp, void __user *buffer, size_t *lenp,
17 loff_t *ppos);
18
16444a8a
ACM
19typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip);
20
21struct ftrace_ops {
22 ftrace_func_t func;
23 struct ftrace_ops *next;
24};
25
26/*
27 * The ftrace_ops must be a static and should also
28 * be read_mostly. These functions do modify read_mostly variables
29 * so use them sparely. Never free an ftrace_op or modify the
30 * next pointer after it has been registered. Even after unregistering
31 * it, the next pointer may still be used internally.
32 */
33int register_ftrace_function(struct ftrace_ops *ops);
34int unregister_ftrace_function(struct ftrace_ops *ops);
35void clear_ftrace_function(void);
36
37extern void ftrace_stub(unsigned long a0, unsigned long a1);
16444a8a 38
606576ce 39#else /* !CONFIG_FUNCTION_TRACER */
16444a8a
ACM
40# define register_ftrace_function(ops) do { } while (0)
41# define unregister_ftrace_function(ops) do { } while (0)
42# define clear_ftrace_function(ops) do { } while (0)
81adbdc0 43static inline void ftrace_kill(void) { }
606576ce 44#endif /* CONFIG_FUNCTION_TRACER */
352ad25a 45
3d083395 46#ifdef CONFIG_DYNAMIC_FTRACE
3d083395 47
3c1720f0 48enum {
37ad5084
SR
49 FTRACE_FL_FREE = (1 << 0),
50 FTRACE_FL_FAILED = (1 << 1),
51 FTRACE_FL_FILTER = (1 << 2),
52 FTRACE_FL_ENABLED = (1 << 3),
41c52c0d 53 FTRACE_FL_NOTRACE = (1 << 4),
0eb96701 54 FTRACE_FL_CONVERTED = (1 << 5),
ecea656d 55 FTRACE_FL_FROZEN = (1 << 6),
3c1720f0
SR
56};
57
3d083395 58struct dyn_ftrace {
08f5ac90
SR
59 struct list_head list;
60 unsigned long ip; /* address of mcount call-site */
61 unsigned long flags;
3d083395
SR
62};
63
e1c08bdd 64int ftrace_force_update(void);
77a2b37d 65void ftrace_set_filter(unsigned char *buf, int len, int reset);
e1c08bdd 66
3d083395 67/* defined in arch */
3c1720f0
SR
68extern int ftrace_ip_converted(unsigned long ip);
69extern unsigned char *ftrace_nop_replace(void);
70extern unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr);
d61f82d0 71extern int ftrace_dyn_arch_init(void *data);
d61f82d0
SR
72extern int ftrace_update_ftrace_func(ftrace_func_t func);
73extern void ftrace_caller(void);
74extern void ftrace_call(void);
75extern void mcount_call(void);
ad90c0e3 76
a26a2a27
SR
77/* May be defined in arch */
78extern int ftrace_arch_read_dyn_info(char *buf, int size);
79
593eb8a2
SR
80/**
81 * ftrace_modify_code - modify code segment
82 * @ip: the address of the code segment
83 * @old_code: the contents of what is expected to be there
84 * @new_code: the code to patch in
85 *
86 * This is a very sensitive operation and great care needs
87 * to be taken by the arch. The operation should carefully
88 * read the location, check to see if what is read is indeed
89 * what we expect it to be, and then on success of the compare,
90 * it should write to the location.
91 *
92 * Return must be:
93 * 0 on success
94 * -EFAULT on error reading the location
95 * -EINVAL on a failed compare of the contents
96 * -EPERM on error writing to the location
97 * Any other value will be considered a failure.
98 */
99extern int ftrace_modify_code(unsigned long ip, unsigned char *old_code,
100 unsigned char *new_code);
101
ecea656d
AS
102extern int skip_trace(unsigned long ip);
103
c0719e5a
SR
104extern void ftrace_release(void *start, unsigned long size);
105
106extern void ftrace_disable_daemon(void);
107extern void ftrace_enable_daemon(void);
ad90c0e3 108
e1c08bdd 109#else
ecea656d 110# define skip_trace(ip) ({ 0; })
aeaee8a2
IM
111# define ftrace_force_update() ({ 0; })
112# define ftrace_set_filter(buf, len, reset) do { } while (0)
ad90c0e3
SR
113# define ftrace_disable_daemon() do { } while (0)
114# define ftrace_enable_daemon() do { } while (0)
c0719e5a 115static inline void ftrace_release(void *start, unsigned long size) { }
ecea656d 116#endif /* CONFIG_DYNAMIC_FTRACE */
352ad25a 117
aeaee8a2
IM
118/* totally disable ftrace - can not re-enable after this */
119void ftrace_kill(void);
120
f43fdad8
IM
121static inline void tracer_disable(void)
122{
606576ce 123#ifdef CONFIG_FUNCTION_TRACER
f43fdad8
IM
124 ftrace_enabled = 0;
125#endif
126}
127
37002735
HY
128/*
129 * Ftrace disable/restore without lock. Some synchronization mechanism
9bdeb7b5 130 * must be used to prevent ftrace_enabled to be changed between
37002735
HY
131 * disable/restore.
132 */
9bdeb7b5
HY
133static inline int __ftrace_enabled_save(void)
134{
606576ce 135#ifdef CONFIG_FUNCTION_TRACER
9bdeb7b5
HY
136 int saved_ftrace_enabled = ftrace_enabled;
137 ftrace_enabled = 0;
138 return saved_ftrace_enabled;
139#else
140 return 0;
141#endif
142}
143
144static inline void __ftrace_enabled_restore(int enabled)
145{
606576ce 146#ifdef CONFIG_FUNCTION_TRACER
9bdeb7b5
HY
147 ftrace_enabled = enabled;
148#endif
149}
150
352ad25a
SR
151#ifdef CONFIG_FRAME_POINTER
152/* TODO: need to fix this for ARM */
153# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
154# define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1))
155# define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2))
156# define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3))
157# define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4))
158# define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5))
86387f7e 159# define CALLER_ADDR6 ((unsigned long)__builtin_return_address(6))
352ad25a
SR
160#else
161# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
162# define CALLER_ADDR1 0UL
163# define CALLER_ADDR2 0UL
164# define CALLER_ADDR3 0UL
165# define CALLER_ADDR4 0UL
166# define CALLER_ADDR5 0UL
86387f7e 167# define CALLER_ADDR6 0UL
352ad25a
SR
168#endif
169
81d68a96 170#ifdef CONFIG_IRQSOFF_TRACER
489f1396
IM
171 extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
172 extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
81d68a96
SR
173#else
174# define time_hardirqs_on(a0, a1) do { } while (0)
175# define time_hardirqs_off(a0, a1) do { } while (0)
176#endif
177
6cd8a4bb 178#ifdef CONFIG_PREEMPT_TRACER
489f1396
IM
179 extern void trace_preempt_on(unsigned long a0, unsigned long a1);
180 extern void trace_preempt_off(unsigned long a0, unsigned long a1);
6cd8a4bb
SR
181#else
182# define trace_preempt_on(a0, a1) do { } while (0)
183# define trace_preempt_off(a0, a1) do { } while (0)
184#endif
185
b1829d27 186#ifdef CONFIG_TRACING
944ac425
SR
187extern int ftrace_dump_on_oops;
188
74f4e369
IM
189extern void
190ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3);
2f2c99db
SR
191
192/**
193 * ftrace_printk - printf formatting in the ftrace buffer
194 * @fmt: the printf format for printing
195 *
196 * Note: __ftrace_printk is an internal function for ftrace_printk and
197 * the @ip is passed in via the ftrace_printk macro.
198 *
199 * This function allows a kernel developer to debug fast path sections
200 * that printk is not appropriate for. By scattering in various
201 * printk like tracing in the code, a developer can quickly see
202 * where problems are occurring.
203 *
204 * This is intended as a debugging tool for the developer only.
205 * Please refrain from leaving ftrace_printks scattered around in
206 * your code.
207 */
208# define ftrace_printk(fmt...) __ftrace_printk(_THIS_IP_, fmt)
dd0e545f
SR
209extern int
210__ftrace_printk(unsigned long ip, const char *fmt, ...)
211 __attribute__ ((format (printf, 2, 3)));
3f5a54e3 212extern void ftrace_dump(void);
74f4e369
IM
213#else
214static inline void
215ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) { }
dd0e545f 216static inline int
7b928c23
IM
217ftrace_printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 0)));
218
219static inline int
220ftrace_printk(const char *fmt, ...)
dd0e545f
SR
221{
222 return 0;
223}
3f5a54e3 224static inline void ftrace_dump(void) { }
74f4e369
IM
225#endif
226
68bf21aa
SR
227#ifdef CONFIG_FTRACE_MCOUNT_RECORD
228extern void ftrace_init(void);
90d595fe 229extern void ftrace_init_module(unsigned long *start, unsigned long *end);
68bf21aa
SR
230#else
231static inline void ftrace_init(void) { }
90d595fe
SR
232static inline void
233ftrace_init_module(unsigned long *start, unsigned long *end) { }
68bf21aa
SR
234#endif
235
dd0e545f 236
71566a0d
FW
237/*
238 * Structure which defines the trace of an initcall.
239 * You don't have to fill the func field since it is
240 * only used internally by the tracer.
241 */
d13744cd
FW
242struct boot_trace {
243 pid_t caller;
ca538f6b 244 char func[KSYM_NAME_LEN];
d13744cd 245 int result;
ca538f6b 246 unsigned long long duration; /* usecs */
cb5ab742
FW
247 ktime_t calltime;
248 ktime_t rettime;
d13744cd
FW
249};
250
251#ifdef CONFIG_BOOT_TRACER
71566a0d 252/* Append the trace on the ring-buffer */
5601020f 253extern void trace_boot(struct boot_trace *it, initcall_t fn);
71566a0d
FW
254
255/* Tells the tracer that smp_pre_initcall is finished.
256 * So we can start the tracing
257 */
d13744cd 258extern void start_boot_trace(void);
71566a0d
FW
259
260/* Resume the tracing of other necessary events
261 * such as sched switches
262 */
263extern void enable_boot_trace(void);
264
265/* Suspend this tracing. Actually, only sched_switches tracing have
266 * to be suspended. Initcalls doesn't need it.)
267 */
268extern void disable_boot_trace(void);
d13744cd 269#else
5601020f 270static inline void trace_boot(struct boot_trace *it, initcall_t fn) { }
d13744cd 271static inline void start_boot_trace(void) { }
71566a0d
FW
272static inline void enable_boot_trace(void) { }
273static inline void disable_boot_trace(void) { }
d13744cd
FW
274#endif
275
276
277
16444a8a 278#endif /* _LINUX_FTRACE_H */