2021-09-20 12:21:08 +03:00
|
|
|
/*
|
|
|
|
* QEMU Hypervisor.framework (HVF) support -- ARM specifics
|
|
|
|
*
|
|
|
|
* Copyright (c) 2021 Alexander Graf
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_HVF_ARM_H
|
|
|
|
#define QEMU_HVF_ARM_H
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
|
2023-06-06 12:19:30 +03:00
|
|
|
/**
|
|
|
|
* hvf_arm_init_debug() - initialize guest debug capabilities
|
|
|
|
*
|
|
|
|
* Should be called only once before using guest debug capabilities.
|
|
|
|
*/
|
|
|
|
void hvf_arm_init_debug(void);
|
|
|
|
|
2022-02-07 15:17:56 +03:00
|
|
|
void hvf_arm_set_cpu_features_from_host(ARMCPU *cpu);
|
2021-09-20 12:21:08 +03:00
|
|
|
|
|
|
|
#endif
|