xref: /openbmc/qemu/accel/stubs/xen-stub.c (revision 12b35405)
1 /*
2  * Copyright (C) 2014       Citrix Systems UK Ltd.
3  *
4  * This work is licensed under the terms of the GNU GPL, version 2 or later.
5  * See the COPYING file in the top-level directory.
6  */
7 
8 #include "qemu/osdep.h"
9 #include "hw/xen/xen.h"
10 #include "qapi/qapi-commands-misc.h"
11 
12 void xenstore_store_pv_console_info(int i, Chardev *chr)
13 {
14 }
15 
16 int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
17 {
18     return -1;
19 }
20 
21 void xen_piix3_set_irq(void *opaque, int irq_num, int level)
22 {
23 }
24 
25 void xen_piix_pci_write_config_client(uint32_t address, uint32_t val, int len)
26 {
27 }
28 
29 void xen_hvm_inject_msi(uint64_t addr, uint32_t data)
30 {
31 }
32 
33 int xen_is_pirq_msi(uint32_t msi_data)
34 {
35     return 0;
36 }
37 
38 qemu_irq *xen_interrupt_controller_init(void)
39 {
40     return NULL;
41 }
42 
43 void xen_register_framebuffer(MemoryRegion *mr)
44 {
45 }
46 
47 void xen_hvm_init(PCMachineState *pcms, MemoryRegion **ram_memory)
48 {
49 }
50 
51 void qmp_xen_set_global_dirty_log(bool enable, Error **errp)
52 {
53 }
54