2010-08-19 13:27:56 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Citrix Ltd.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
2012-01-13 17:44:23 +01:00
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2010-08-19 13:27:56 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/xen/xen.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/memory.h"
|
2012-10-03 15:48:19 +02:00
|
|
|
#include "qmp-commands.h"
|
2010-08-19 13:27:56 +02:00
|
|
|
|
2010-07-16 15:55:39 +02:00
|
|
|
int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 12:01:43 +02:00
|
|
|
void xen_hvm_inject_msi(uint64_t addr, uint32_t data)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-12-18 14:48:55 +01:00
|
|
|
void xen_ram_alloc(ram_addr_t ram_addr, ram_addr_t size, MemoryRegion *mr)
|
2010-08-31 17:41:25 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-06-30 18:50:10 +02:00
|
|
|
qemu_irq *xen_interrupt_controller_init(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-12-18 15:40:50 +01:00
|
|
|
void xen_register_framebuffer(MemoryRegion *mr)
|
|
|
|
{
|
|
|
|
}
|
2012-10-03 15:48:19 +02:00
|
|
|
|
2012-10-03 15:48:45 +02:00
|
|
|
void xen_modified_memory(ram_addr_t start, ram_addr_t length)
|
|
|
|
{
|
|
|
|
}
|
2013-06-25 13:46:37 +02:00
|
|
|
|
2015-08-17 20:42:29 +02:00
|
|
|
int xen_hvm_init(PCMachineState *pcms, MemoryRegion **ram_memory)
|
2013-06-25 13:46:37 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2014-05-07 18:16:43 +02:00
|
|
|
|
|
|
|
void qmp_xen_set_global_dirty_log(bool enable, Error **errp)
|
|
|
|
{
|
|
|
|
}
|