| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
| 2 | /* |
| 3 | * WHPX support -- ARM specifics |
| 4 | * |
| 5 | * Copyright (c) 2025 Mohamed Mediouni |
| 6 | * |
| 7 | */ |
| 8 | |
| 9 | #ifndef QEMU_WHPX_ARM_H |
| 10 | #define QEMU_WHPX_ARM_H |
| 11 | |
| 12 | #include "target/arm/cpu-qom.h" |
| 13 | |
| 14 | uint32_t whpx_arm_get_ipa_bit_size(void); |
| 15 | void whpx_arm_set_cpu_features_from_host(ARMCPU *cpu); |
| 16 | |
| 17 | #endif |