diff options
author | Jamie Iles <jamie.iles@picochip.com> | 2009-12-11 07:20:09 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-12-11 07:50:21 -0500 |
commit | 58e9f94138c1d9c47f6a63632ca7a78fc6dcc15f (patch) | |
tree | caa7d67b5b8f48a8f04ae908e89b7c9a00c852e0 /tools/perf/perf.h | |
parent | 99ac64c826e62a07e5818cfde620be4d524f1edf (diff) |
perf tools: Allow building for ARM
Add definitions of rmb() and cpu_relax() and include the ARM
unistd.h header. The __kuser_memory_barrier helper in the helper
page is used to provide the correct memory barrier depending on
the CPU type.
[ The rmb() will work on v6 and v7, segfault on v5. Dynamic
detection to add v5 support will be added later. ]
Signed-off-by: Jamie Iles <jamie.iles@picochip.com>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Mikael Pettersson <mikpe@it.uu.se>
LKML-Reference: <1260534009-5394-1-git-send-email-jamie.iles@picochip.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/perf.h')
-rw-r--r-- | tools/perf/perf.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/perf/perf.h b/tools/perf/perf.h index 454d5d55f32d..75f941bfba9e 100644 --- a/tools/perf/perf.h +++ b/tools/perf/perf.h | |||
@@ -59,6 +59,18 @@ | |||
59 | #define cpu_relax() asm volatile ("hint @pause" ::: "memory") | 59 | #define cpu_relax() asm volatile ("hint @pause" ::: "memory") |
60 | #endif | 60 | #endif |
61 | 61 | ||
62 | #ifdef __arm__ | ||
63 | #include "../../arch/arm/include/asm/unistd.h" | ||
64 | /* | ||
65 | * Use the __kuser_memory_barrier helper in the CPU helper page. See | ||
66 | * arch/arm/kernel/entry-armv.S in the kernel source for details. | ||
67 | */ | ||
68 | #define rmb() asm volatile("mov r0, #0xffff0fff; mov lr, pc;" \ | ||
69 | "sub pc, r0, #95" ::: "r0", "lr", "cc", \ | ||
70 | "memory") | ||
71 | #define cpu_relax() asm volatile("":::"memory") | ||
72 | #endif | ||
73 | |||
62 | #include <time.h> | 74 | #include <time.h> |
63 | #include <unistd.h> | 75 | #include <unistd.h> |
64 | #include <sys/types.h> | 76 | #include <sys/types.h> |