blob: 29973daa993013f404c711b29fcf1fcc3c6ea457 [file] [log] [blame]
David Millerd05f5f92008-05-13 22:06:59 -07001#include <linux/spinlock.h>
2#include <linux/hardirq.h>
3#include <linux/ftrace.h>
4#include <linux/percpu.h>
5#include <linux/init.h>
6#include <linux/list.h>
David S. Millerc658ad12009-12-11 00:44:47 -08007#include <trace/syscall.h>
David Millerd05f5f92008-05-13 22:06:59 -07008
Abhishek Sagar395a59d2008-06-21 23:47:27 +05309#include <asm/ftrace.h>
10
David S. Miller9be12f92009-06-13 01:03:24 -070011#ifdef CONFIG_DYNAMIC_FTRACE
David Millerd05f5f92008-05-13 22:06:59 -070012static const u32 ftrace_nop = 0x01000000;
13
David S. Miller9be12f92009-06-13 01:03:24 -070014static u32 ftrace_call_replace(unsigned long ip, unsigned long addr)
David Millerd05f5f92008-05-13 22:06:59 -070015{
16 static u32 call;
17 s32 off;
18
19 off = ((s32)addr - (s32)ip);
20 call = 0x40000000 | ((u32)off >> 2);
21
David S. Miller9be12f92009-06-13 01:03:24 -070022 return call;
David Millerd05f5f92008-05-13 22:06:59 -070023}
24
David S. Miller9be12f92009-06-13 01:03:24 -070025static int ftrace_modify_code(unsigned long ip, u32 old, u32 new)
David Millerd05f5f92008-05-13 22:06:59 -070026{
David Millerd05f5f92008-05-13 22:06:59 -070027 u32 replaced;
28 int faulted;
29
30 __asm__ __volatile__(
31 "1: cas [%[ip]], %[old], %[new]\n"
32 " flush %[ip]\n"
33 " mov 0, %[faulted]\n"
34 "2:\n"
35 " .section .fixup,#alloc,#execinstr\n"
36 " .align 4\n"
37 "3: sethi %%hi(2b), %[faulted]\n"
38 " jmpl %[faulted] + %%lo(2b), %%g0\n"
39 " mov 1, %[faulted]\n"
40 " .previous\n"
41 " .section __ex_table,\"a\"\n"
42 " .align 4\n"
43 " .word 1b, 3b\n"
44 " .previous\n"
45 : "=r" (replaced), [faulted] "=r" (faulted)
46 : [new] "0" (new), [old] "r" (old), [ip] "r" (ip)
47 : "memory");
48
49 if (replaced != old && replaced != new)
50 faulted = 2;
51
52 return faulted;
53}
54
David S. Miller9be12f92009-06-13 01:03:24 -070055int ftrace_make_nop(struct module *mod, struct dyn_ftrace *rec, unsigned long addr)
56{
57 unsigned long ip = rec->ip;
58 u32 old, new;
59
60 old = ftrace_call_replace(ip, addr);
61 new = ftrace_nop;
62 return ftrace_modify_code(ip, old, new);
63}
64
65int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr)
66{
67 unsigned long ip = rec->ip;
68 u32 old, new;
69
70 old = ftrace_nop;
71 new = ftrace_call_replace(ip, addr);
72 return ftrace_modify_code(ip, old, new);
73}
74
Steven Rostedt15adc042008-10-23 09:33:08 -040075int ftrace_update_ftrace_func(ftrace_func_t func)
David Millerd05f5f92008-05-13 22:06:59 -070076{
77 unsigned long ip = (unsigned long)(&ftrace_call);
David S. Miller9be12f92009-06-13 01:03:24 -070078 u32 old, new;
David Millerd05f5f92008-05-13 22:06:59 -070079
David S. Miller9be12f92009-06-13 01:03:24 -070080 old = *(u32 *) &ftrace_call;
David Millerd05f5f92008-05-13 22:06:59 -070081 new = ftrace_call_replace(ip, (unsigned long)func);
82 return ftrace_modify_code(ip, old, new);
83}
84
David Millerd05f5f92008-05-13 22:06:59 -070085int __init ftrace_dyn_arch_init(void *data)
86{
David S. Miller9be12f92009-06-13 01:03:24 -070087 unsigned long *p = data;
88
89 *p = 0;
90
David Millerd05f5f92008-05-13 22:06:59 -070091 return 0;
92}
David S. Miller9be12f92009-06-13 01:03:24 -070093#endif
94
David S. Millerc658ad12009-12-11 00:44:47 -080095#ifdef CONFIG_FTRACE_SYSCALLS
96
97extern unsigned int sys_call_table[];
98
99unsigned long __init arch_syscall_addr(int nr)
100{
101 return (unsigned long)sys_call_table[nr];
102}
103
104#endif