xref: /qemu/hw/arm/xen-stubs.c (revision f07a5674cf97b8473e5d06d7b1df9b51e97d553f)
1 /*
2  * Stubs for unimplemented Xen functions for ARM.
3  *
4  * SPDX-License-Identifier: MIT
5  */
6 
7 #include "qemu/osdep.h"
8 #include "qapi/qapi-commands-migration.h"
9 #include "system/xen.h"
10 #include "hw/hw.h"
11 #include "hw/xen/xen-hvm-common.h"
12 #include "hw/xen/arch_hvm.h"
13 
14 void arch_handle_ioreq(XenIOState *state, ioreq_t *req)
15 {
16     hw_error("Invalid ioreq type 0x%x\n", req->type);
17     return;
18 }
19 
20 void arch_xen_set_memory(XenIOState *state, MemoryRegionSection *section,
21                          bool add)
22 {
23 }
24 
25 void xen_hvm_modified_memory(ram_addr_t start, ram_addr_t length)
26 {
27 }
28 
29 void qmp_xen_set_global_dirty_log(bool enable, Error **errp)
30 {
31 }
32