mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
xen: Add Xen hypercall for sleep state in the cmos_s3 callback.
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
29321335e0
commit
c962247883
4 changed files with 19 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
|||
#include <sys/mman.h>
|
||||
|
||||
#include "hw/pci.h"
|
||||
#include "hw/pc.h"
|
||||
#include "hw/xen_common.h"
|
||||
#include "hw/xen_backend.h"
|
||||
|
||||
|
@ -99,6 +100,14 @@ void xen_piix_pci_write_config_client(uint32_t address, uint32_t val, int len)
|
|||
}
|
||||
}
|
||||
|
||||
void xen_cmos_set_s3_resume(void *opaque, int irq, int level)
|
||||
{
|
||||
pc_cmos_set_s3_resume(opaque, irq, level);
|
||||
if (level) {
|
||||
xc_set_hvm_param(xen_xc, xen_domid, HVM_PARAM_ACPI_S_STATE, 3);
|
||||
}
|
||||
}
|
||||
|
||||
/* Xen Interrupt Controller */
|
||||
|
||||
static void xen_set_irq(void *opaque, int irq, int level)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue