diff options
author | Rabin Vincent <rabin@rab.in> | 2010-08-10 14:52:35 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-09-02 10:28:43 -0400 |
commit | 72dc43a9eb123d2742bd413c80dbeab0c588f622 (patch) | |
tree | d4a020340a00fc00497aedef1fcd8c6bd8abaad7 | |
parent | 3b6c223b1b97ad60bbb0f4efda57d649414ac2a2 (diff) |
ARM: 6319/1: ftrace: add Thumb-2 support to dynamic ftrace
Handle the different nop and call instructions for Thumb-2. Also, we
need to adjust the recorded mcount_loc addresses because they have the
lsb set.
Cc: Catalin Marinas <catalin.marinas@arm.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org> [recordmcount.pl change]
Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/arm/include/asm/ftrace.h | 3 | ||||
-rw-r--r-- | arch/arm/kernel/ftrace.c | 33 | ||||
-rwxr-xr-x | scripts/recordmcount.pl | 2 |
3 files changed, 36 insertions, 2 deletions
diff --git a/arch/arm/include/asm/ftrace.h b/arch/arm/include/asm/ftrace.h index 4a56a2ee067c..f89515adac60 100644 --- a/arch/arm/include/asm/ftrace.h +++ b/arch/arm/include/asm/ftrace.h | |||
@@ -18,7 +18,8 @@ struct dyn_arch_ftrace { | |||
18 | 18 | ||
19 | static inline unsigned long ftrace_call_adjust(unsigned long addr) | 19 | static inline unsigned long ftrace_call_adjust(unsigned long addr) |
20 | { | 20 | { |
21 | return addr; | 21 | /* With Thumb-2, the recorded addresses have the lsb set */ |
22 | return addr & ~1; | ||
22 | } | 23 | } |
23 | 24 | ||
24 | extern void ftrace_caller_old(void); | 25 | extern void ftrace_caller_old(void); |
diff --git a/arch/arm/kernel/ftrace.c b/arch/arm/kernel/ftrace.c index f09014cfbf2c..971ac8c36ea7 100644 --- a/arch/arm/kernel/ftrace.c +++ b/arch/arm/kernel/ftrace.c | |||
@@ -18,7 +18,11 @@ | |||
18 | #include <asm/cacheflush.h> | 18 | #include <asm/cacheflush.h> |
19 | #include <asm/ftrace.h> | 19 | #include <asm/ftrace.h> |
20 | 20 | ||
21 | #ifdef CONFIG_THUMB2_KERNEL | ||
22 | #define NOP 0xeb04f85d /* pop.w {lr} */ | ||
23 | #else | ||
21 | #define NOP 0xe8bd4000 /* pop {lr} */ | 24 | #define NOP 0xe8bd4000 /* pop {lr} */ |
25 | #endif | ||
22 | 26 | ||
23 | #ifdef CONFIG_OLD_MCOUNT | 27 | #ifdef CONFIG_OLD_MCOUNT |
24 | #define OLD_MCOUNT_ADDR ((unsigned long) mcount) | 28 | #define OLD_MCOUNT_ADDR ((unsigned long) mcount) |
@@ -56,6 +60,34 @@ static unsigned long adjust_address(struct dyn_ftrace *rec, unsigned long addr) | |||
56 | #endif | 60 | #endif |
57 | 61 | ||
58 | /* construct a branch (BL) instruction to addr */ | 62 | /* construct a branch (BL) instruction to addr */ |
63 | #ifdef CONFIG_THUMB2_KERNEL | ||
64 | static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr) | ||
65 | { | ||
66 | unsigned long s, j1, j2, i1, i2, imm10, imm11; | ||
67 | unsigned long first, second; | ||
68 | long offset; | ||
69 | |||
70 | offset = (long)addr - (long)(pc + 4); | ||
71 | if (offset < -16777216 || offset > 16777214) { | ||
72 | WARN_ON_ONCE(1); | ||
73 | return 0; | ||
74 | } | ||
75 | |||
76 | s = (offset >> 24) & 0x1; | ||
77 | i1 = (offset >> 23) & 0x1; | ||
78 | i2 = (offset >> 22) & 0x1; | ||
79 | imm10 = (offset >> 12) & 0x3ff; | ||
80 | imm11 = (offset >> 1) & 0x7ff; | ||
81 | |||
82 | j1 = (!i1) ^ s; | ||
83 | j2 = (!i2) ^ s; | ||
84 | |||
85 | first = 0xf000 | (s << 10) | imm10; | ||
86 | second = 0xd000 | (j1 << 13) | (j2 << 11) | imm11; | ||
87 | |||
88 | return (second << 16) | first; | ||
89 | } | ||
90 | #else | ||
59 | static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr) | 91 | static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr) |
60 | { | 92 | { |
61 | long offset; | 93 | long offset; |
@@ -73,6 +105,7 @@ static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr) | |||
73 | 105 | ||
74 | return 0xeb000000 | offset; | 106 | return 0xeb000000 | offset; |
75 | } | 107 | } |
108 | #endif | ||
76 | 109 | ||
77 | static int ftrace_modify_code(unsigned long pc, unsigned long old, | 110 | static int ftrace_modify_code(unsigned long pc, unsigned long old, |
78 | unsigned long new) | 111 | unsigned long new) |
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl index 022d4679b1b3..1d7963f4ee79 100755 --- a/scripts/recordmcount.pl +++ b/scripts/recordmcount.pl | |||
@@ -270,7 +270,7 @@ if ($arch eq "x86_64") { | |||
270 | } elsif ($arch eq "arm") { | 270 | } elsif ($arch eq "arm") { |
271 | $alignment = 2; | 271 | $alignment = 2; |
272 | $section_type = '%progbits'; | 272 | $section_type = '%progbits'; |
273 | $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_ARM_(CALL|PC24)" . | 273 | $mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_ARM_(CALL|PC24|THM_CALL)" . |
274 | "\\s+(__gnu_mcount_nc|mcount)\$"; | 274 | "\\s+(__gnu_mcount_nc|mcount)\$"; |
275 | 275 | ||
276 | } elsif ($arch eq "ia64") { | 276 | } elsif ($arch eq "ia64") { |