Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / target / ppc / power8-pmu.h
blob775e640053670d5b5d18aef2f6256c1cd0c354a1
1 /*
2 * PMU emulation helpers for TCG IBM POWER chips
4 * Copyright IBM Corp. 2021
6 * Authors:
7 * Daniel Henrique Barboza <danielhb413@gmail.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #ifndef POWER8_PMU_H
14 #define POWER8_PMU_H
16 #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
18 #define PMC_COUNTER_NEGATIVE_VAL 0x80000000UL
20 void cpu_ppc_pmu_init(CPUPPCState *env);
21 void pmu_mmcr01_updated(CPUPPCState *env);
22 #else
23 static inline void cpu_ppc_pmu_init(CPUPPCState *env) { }
24 static inline void pmu_mmcr01_updated(CPUPPCState *env) { }
25 #endif
27 #endif