Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
18 lines
321 B
C
18 lines
321 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* WHPX support -- ARM specifics
|
|
*
|
|
* Copyright (c) 2025 Mohamed Mediouni
|
|
*
|
|
*/
|
|
|
|
#ifndef QEMU_WHPX_ARM_H
|
|
#define QEMU_WHPX_ARM_H
|
|
|
|
#include "target/arm/cpu-qom.h"
|
|
|
|
uint32_t whpx_arm_get_ipa_bit_size(void);
|
|
void whpx_arm_set_cpu_features_from_host(ARMCPU *cpu);
|
|
|
|
#endif
|