2009-04-22 19:19:10 +04:00
|
|
|
#ifndef QEMU_HW_XEN_H
|
2016-06-29 16:29:06 +03:00
|
|
|
#define QEMU_HW_XEN_H
|
|
|
|
|
2009-04-22 19:19:10 +04:00
|
|
|
/*
|
|
|
|
* public xen header
|
|
|
|
* stuff needed outside xen-*.c, i.e. interfaces to qemu.
|
|
|
|
* must not depend on any xen headers being present in
|
|
|
|
* /usr/include/xen, so it can be included unconditionally.
|
|
|
|
*/
|
|
|
|
|
2016-03-15 18:58:45 +03:00
|
|
|
#include "exec/cpu-common.h"
|
|
|
|
#include "hw/irq.h"
|
2010-07-16 17:55:39 +04:00
|
|
|
|
2009-04-22 19:19:10 +04:00
|
|
|
/* xen-machine.c */
|
|
|
|
enum xen_mode {
|
|
|
|
XEN_EMULATE = 0, // xen emulation, using xenner (default)
|
2018-09-14 14:18:30 +03:00
|
|
|
XEN_ATTACH // attach to xen domain created by libxl
|
2009-04-22 19:19:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
extern uint32_t xen_domid;
|
|
|
|
extern enum xen_mode xen_mode;
|
2017-03-22 12:39:15 +03:00
|
|
|
extern bool xen_domid_restrict;
|
2009-04-22 19:19:10 +04:00
|
|
|
|
2013-01-24 09:03:27 +04:00
|
|
|
extern bool xen_allowed;
|
2010-08-19 15:27:56 +04:00
|
|
|
|
2013-01-24 09:03:27 +04:00
|
|
|
static inline bool xen_enabled(void)
|
2010-08-19 15:27:56 +04:00
|
|
|
{
|
|
|
|
return xen_allowed;
|
|
|
|
}
|
|
|
|
|
2010-07-16 17:55:39 +04:00
|
|
|
int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num);
|
|
|
|
void xen_piix3_set_irq(void *opaque, int irq_num, int level);
|
|
|
|
void xen_piix_pci_write_config_client(uint32_t address, uint32_t val, int len);
|
2012-04-12 14:01:43 +04:00
|
|
|
void xen_hvm_inject_msi(uint64_t addr, uint32_t data);
|
2016-01-13 17:59:09 +03:00
|
|
|
int xen_is_pirq_msi(uint32_t msi_data);
|
2010-07-16 17:55:39 +04:00
|
|
|
|
2010-06-30 20:50:10 +04:00
|
|
|
qemu_irq *xen_interrupt_controller_init(void);
|
|
|
|
|
2016-12-07 16:20:22 +03:00
|
|
|
void xenstore_store_pv_console_info(int i, struct Chardev *chr);
|
2010-06-30 15:58:34 +04:00
|
|
|
|
2016-01-14 18:09:38 +03:00
|
|
|
void xen_hvm_init(PCMachineState *pcms, MemoryRegion **ram_memory);
|
2016-03-15 18:58:45 +03:00
|
|
|
|
2011-12-18 17:48:55 +04:00
|
|
|
void xen_ram_alloc(ram_addr_t ram_addr, ram_addr_t size,
|
2016-01-14 18:09:39 +03:00
|
|
|
struct MemoryRegion *mr, Error **errp);
|
2017-03-07 13:55:31 +03:00
|
|
|
void xen_hvm_modified_memory(ram_addr_t start, ram_addr_t length);
|
2010-08-31 19:41:25 +04:00
|
|
|
|
2011-12-18 18:40:50 +04:00
|
|
|
void xen_register_framebuffer(struct MemoryRegion *mr);
|
|
|
|
|
2009-04-22 19:19:10 +04:00
|
|
|
#endif /* QEMU_HW_XEN_H */
|