Skip to content

Commit 3a46817

Browse files
baruchsiachacmel
authored andcommitted
perf tools: Add support for the xtensa architecture
Tested using kernel tracepoints on a QEMU simulated environment. Kernel support for perf depends on the patch "xtensa: enable HAVE_PERF_EVENTS", which is scheduled for v3.14. Hardware performance counters are not supported under xtensa yet. Acked-by: Ingo Molnar <mingo@kernel.org> Acked-by: Max Filippov <jcmvbkbc@gmail.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: linux-xtensa@linux-xtensa.org Link: http://lkml.kernel.org/r/aafcdb22f04e2d3188d2938528939481be56b649.1389608855.git.baruch@tkos.co.il Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
1 parent 8bac41c commit 3a46817

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tools/perf/perf.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,13 @@
132132
#define CPUINFO_PROC "CPU"
133133
#endif
134134

135+
#ifdef __xtensa__
136+
#define mb() asm volatile("memw" ::: "memory")
137+
#define wmb() asm volatile("memw" ::: "memory")
138+
#define rmb() asm volatile("" ::: "memory")
139+
#define CPUINFO_PROC "core ID"
140+
#endif
141+
135142
#define barrier() asm volatile ("" ::: "memory")
136143

137144
#ifndef cpu_relax

0 commit comments

Comments
 (0)