Merge tag 'for-4.21/libata-20190102' of git://git.kernel.dk/linux-block
[linux-2.6-block.git] / arch / powerpc / include / asm / perf_event.h
CommitLineData
d662ed26 1/*
a1110654 2 * Performance event support - hardware-specific disambiguation
d662ed26 3 *
a1110654
SW
4 * For now this is a compile-time decision, but eventually it should be
5 * runtime. This would allow multiplatform perf event support for e300 (fsl
6 * embedded perf counters) plus server/classic, and would accommodate
7 * devices other than the core which provide their own performance counters.
8 *
9 * Copyright 2010 Freescale Semiconductor, Inc.
d662ed26
PM
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
079b3c56 16
105988c0 17#ifdef CONFIG_PPC_PERF_CTRS
a1110654 18#include <asm/perf_event_server.h>
105988c0
PM
19#endif
20
a1110654
SW
21#ifdef CONFIG_FSL_EMB_PERF_EVENT
22#include <asm/perf_event_fsl_emb.h>
23#endif
b0f82b81
FW
24
25#ifdef CONFIG_PERF_EVENTS
26#include <asm/ptrace.h>
27#include <asm/reg.h>
28
a6460b03
SD
29#define perf_arch_bpf_user_pt_regs(regs) &regs->user_regs
30
75382aa7
AB
31/*
32 * Overload regs->result to specify whether we should use the MSR (result
33 * is zero) or the SIAR (result is non zero).
34 */
b0f82b81
FW
35#define perf_arch_fetch_caller_regs(regs, __ip) \
36 do { \
75382aa7 37 (regs)->result = 0; \
b0f82b81 38 (regs)->nip = __ip; \
acf620ec 39 (regs)->gpr[1] = current_stack_pointer(); \
b0f82b81
FW
40 asm volatile("mfmsr %0" : "=r" ((regs)->msr)); \
41 } while (0)
333804dc
MS
42
43/* To support perf_regs sier update */
44extern bool is_sier_available(void);
b0f82b81 45#endif