Merge tag 'erofs-for-6.10-rc7-fixes' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / arch / powerpc / include / asm / pmc.h
CommitLineData
1a59d1b8 1/* SPDX-License-Identifier: GPL-2.0-or-later */
1da177e4
LT
2/*
3 * pmc.h
4 * Copyright (C) 2004 David Gibson, IBM Corporation
1da177e4 5 */
f7f6f4fe
DG
6#ifndef _POWERPC_PMC_H
7#define _POWERPC_PMC_H
88ced031 8#ifdef __KERNEL__
1da177e4
LT
9
10#include <asm/ptrace.h>
11
12typedef void (*perf_irq_t)(struct pt_regs *);
a31751e0 13extern perf_irq_t perf_irq;
1da177e4
LT
14
15int reserve_pmc_hardware(perf_irq_t new_perf_irq);
16void release_pmc_hardware(void);
a6dbf93a 17void ppc_enable_pmcs(void);
1da177e4 18
ad08587e 19#ifdef CONFIG_PPC_BOOK3S_64
a6dbf93a 20#include <asm/lppaca.h>
8e0b634b 21#include <asm/firmware.h>
a6dbf93a
PM
22
23static inline void ppc_set_pmu_inuse(int inuse)
24{
8e0b634b
NP
25#if defined(CONFIG_PPC_PSERIES) || defined(CONFIG_KVM_BOOK3S_HV_POSSIBLE)
26 if (firmware_has_feature(FW_FEATURE_LPAR)) {
27#ifdef CONFIG_PPC_PSERIES
28 get_lppaca()->pmcregs_in_use = inuse;
29#endif
28d2a6e6 30 }
8e0b634b 31#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
28d2a6e6 32 get_paca()->pmcregs_in_use = inuse;
8e0b634b 33#endif
8e0b634b 34#endif
a6dbf93a
PM
35}
36
17826638
NP
37#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
38static inline int ppc_get_pmu_inuse(void)
39{
40 return get_paca()->pmcregs_in_use;
41}
42#endif
43
a6dbf93a
PM
44extern void power4_enable_pmcs(void);
45
46#else /* CONFIG_PPC64 */
47
48static inline void ppc_set_pmu_inuse(int inuse) { }
49
f7f6f4fe 50#endif
180a3362 51
88ced031 52#endif /* __KERNEL__ */
f7f6f4fe 53#endif /* _POWERPC_PMC_H */