|
|
0a122b |
From 4fef4ae9f3fb3f884d5eee74d3cc2272bff900f8 Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
Message-Id: <4fef4ae9f3fb3f884d5eee74d3cc2272bff900f8.1387298827.git.minovotn@redhat.com>
|
|
|
0a122b |
In-Reply-To: <3ed0fb61a3dc912ef036d7ef450bed192090709e.1387298827.git.minovotn@redhat.com>
|
|
|
0a122b |
References: <3ed0fb61a3dc912ef036d7ef450bed192090709e.1387298827.git.minovotn@redhat.com>
|
|
|
0a122b |
From: "Michael S. Tsirkin" <mst@redhat.com>
|
|
|
0a122b |
Date: Tue, 17 Dec 2013 15:18:47 +0100
|
|
|
0a122b |
Subject: [PATCH 40/56] acpi/piix: add macros for acpi property names
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Michael S. Tsirkin <mst@redhat.com>
|
|
|
0a122b |
Message-id: <1387293161-4085-41-git-send-email-mst@redhat.com>
|
|
|
0a122b |
Patchwork-id: 56346
|
|
|
0a122b |
O-Subject: [PATCH qemu-kvm RHEL7.0 v2 40/57] acpi/piix: add macros for acpi property names
|
|
|
0a122b |
Bugzilla: 1034876
|
|
|
0a122b |
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Marcel Apfelbaum <marcel.a@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
0a122b |
Tested-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
0a122b |
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
0a122b |
Tested-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
0a122b |
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
|
|
|
0a122b |
(cherry picked from commit f854ecc79957e588bed8ed7e8c1c24ded55fc1e9)
|
|
|
0a122b |
|
|
|
0a122b |
Conflicts:
|
|
|
0a122b |
hw/acpi/piix4.c
|
|
|
0a122b |
---
|
|
|
0a122b |
include/hw/i386/pc.h | 10 ++++++++++
|
|
|
0a122b |
hw/acpi/piix4.c | 6 +++---
|
|
|
0a122b |
2 files changed, 13 insertions(+), 3 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Michal Novotny <minovotn@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
hw/acpi/piix4.c | 6 +++---
|
|
|
0a122b |
include/hw/i386/pc.h | 10 ++++++++++
|
|
|
0a122b |
2 files changed, 13 insertions(+), 3 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/hw/acpi/piix4.c b/hw/acpi/piix4.c
|
|
|
0a122b |
index 6882937..18b1300 100644
|
|
|
0a122b |
--- a/hw/acpi/piix4.c
|
|
|
0a122b |
+++ b/hw/acpi/piix4.c
|
|
|
0a122b |
@@ -475,9 +475,9 @@ i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base,
|
|
|
0a122b |
|
|
|
0a122b |
static Property piix4_pm_properties[] = {
|
|
|
0a122b |
DEFINE_PROP_UINT32("smb_io_base", PIIX4PMState, smb_io_base, 0),
|
|
|
0a122b |
- DEFINE_PROP_UINT8("disable_s3", PIIX4PMState, disable_s3, 1),
|
|
|
0a122b |
- DEFINE_PROP_UINT8("disable_s4", PIIX4PMState, disable_s4, 1),
|
|
|
0a122b |
- DEFINE_PROP_UINT8("s4_val", PIIX4PMState, s4_val, 2),
|
|
|
0a122b |
+ DEFINE_PROP_UINT8(ACPI_PM_PROP_S3_DISABLED, PIIX4PMState, disable_s3, 1),
|
|
|
0a122b |
+ DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_DISABLED, PIIX4PMState, disable_s4, 1),
|
|
|
0a122b |
+ DEFINE_PROP_UINT8(ACPI_PM_PROP_S4_VAL, PIIX4PMState, s4_val, 2),
|
|
|
0a122b |
DEFINE_PROP_END_OF_LIST(),
|
|
|
0a122b |
};
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h
|
|
|
0a122b |
index ec91fae..5011c87 100644
|
|
|
0a122b |
--- a/include/hw/i386/pc.h
|
|
|
0a122b |
+++ b/include/hw/i386/pc.h
|
|
|
0a122b |
@@ -22,6 +22,16 @@ typedef struct PcPciInfo {
|
|
|
0a122b |
Range w64;
|
|
|
0a122b |
} PcPciInfo;
|
|
|
0a122b |
|
|
|
0a122b |
+#define ACPI_PM_PROP_S3_DISABLED "disable_s3"
|
|
|
0a122b |
+#define ACPI_PM_PROP_S4_DISABLED "disable_s4"
|
|
|
0a122b |
+#define ACPI_PM_PROP_S4_VAL "s4_val"
|
|
|
0a122b |
+#define ACPI_PM_PROP_SCI_INT "sci_int"
|
|
|
0a122b |
+#define ACPI_PM_PROP_ACPI_ENABLE_CMD "acpi_enable_cmd"
|
|
|
0a122b |
+#define ACPI_PM_PROP_ACPI_DISABLE_CMD "acpi_disable_cmd"
|
|
|
0a122b |
+#define ACPI_PM_PROP_PM_IO_BASE "pm_io_base"
|
|
|
0a122b |
+#define ACPI_PM_PROP_GPE0_BLK "gpe0_blk"
|
|
|
0a122b |
+#define ACPI_PM_PROP_GPE0_BLK_LEN "gpe0_blk_len"
|
|
|
0a122b |
+
|
|
|
0a122b |
struct PcGuestInfo {
|
|
|
0a122b |
bool has_pci_info;
|
|
|
0a122b |
hwaddr ram_size;
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.11.7
|
|
|
0a122b |
|