-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hvf: Move assert_hvf_ok() into common directory
Until now, Hypervisor.framework has only been available on x86_64 systems. With Apple Silicon shipping now, it extends its reach to aarch64. To prepare for support for multiple architectures, let's start moving common code out into its own accel directory. This patch moves assert_hvf_ok() and introduces generic build infrastructure. Signed-off-by: Alexander Graf <[email protected]> Reviewed-by: Sergio Lopez <[email protected]> Message-id: [email protected] Reviewed-by: Peter Maydell <[email protected]> Signed-off-by: Peter Maydell <[email protected]>
- Loading branch information
Showing
6 changed files
with
81 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -436,7 +436,15 @@ M: Roman Bolshakov <[email protected]> | |
W: https://wiki.qemu.org/Features/HVF | ||
S: Maintained | ||
F: target/i386/hvf/ | ||
|
||
HVF | ||
M: Cameron Esfahani <[email protected]> | ||
M: Roman Bolshakov <[email protected]> | ||
W: https://wiki.qemu.org/Features/HVF | ||
S: Maintained | ||
F: accel/hvf/ | ||
F: include/sysemu/hvf.h | ||
F: include/sysemu/hvf_int.h | ||
|
||
WHPX CPUs | ||
M: Sunil Muthuswamy <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* QEMU Hypervisor.framework support | ||
* | ||
* This work is licensed under the terms of the GNU GPL, version 2. See | ||
* the COPYING file in the top-level directory. | ||
* | ||
* Contributions after 2012-01-13 are licensed under the terms of the | ||
* GNU GPL, version 2 or (at your option) any later version. | ||
*/ | ||
|
||
#include "qemu/osdep.h" | ||
#include "qemu-common.h" | ||
#include "qemu/error-report.h" | ||
#include "sysemu/hvf.h" | ||
#include "sysemu/hvf_int.h" | ||
|
||
void assert_hvf_ok(hv_return_t ret) | ||
{ | ||
if (ret == HV_SUCCESS) { | ||
return; | ||
} | ||
|
||
switch (ret) { | ||
case HV_ERROR: | ||
error_report("Error: HV_ERROR"); | ||
break; | ||
case HV_BUSY: | ||
error_report("Error: HV_BUSY"); | ||
break; | ||
case HV_BAD_ARGUMENT: | ||
error_report("Error: HV_BAD_ARGUMENT"); | ||
break; | ||
case HV_NO_RESOURCES: | ||
error_report("Error: HV_NO_RESOURCES"); | ||
break; | ||
case HV_NO_DEVICE: | ||
error_report("Error: HV_NO_DEVICE"); | ||
break; | ||
case HV_UNSUPPORTED: | ||
error_report("Error: HV_UNSUPPORTED"); | ||
break; | ||
default: | ||
error_report("Unknown Error"); | ||
} | ||
|
||
abort(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
hvf_ss = ss.source_set() | ||
hvf_ss.add(files( | ||
'hvf-all.c', | ||
)) | ||
|
||
specific_ss.add_all(when: 'CONFIG_HVF', if_true: hvf_ss) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* QEMU Hypervisor.framework (HVF) support | ||
* | ||
* This work is licensed under the terms of the GNU GPL, version 2 or later. | ||
* See the COPYING file in the top-level directory. | ||
* | ||
*/ | ||
|
||
/* header to be included in HVF-specific code */ | ||
|
||
#ifndef HVF_INT_H | ||
#define HVF_INT_H | ||
|
||
#include <Hypervisor/hv.h> | ||
|
||
void assert_hvf_ok(hv_return_t ret); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters