summary refs log tree commit diff stats
path: root/hw/i386/acpi-build.c
diff options
context:
space:
mode:
authorIgor Mammedov <imammedo@redhat.com>2015-12-28 18:02:35 +0100
committerMichael S. Tsirkin <mst@redhat.com>2016-01-09 23:20:18 +0200
commit8b1da5f8fdfb5e72e627f6fecbe8cd83bc7bda47 (patch)
tree8bc31f73a68b0a0f5617a3e4c0ccbdc120f8f91b /hw/i386/acpi-build.c
parent95ed7e97e45186aa0689110470844f6c40557f65 (diff)
downloadfocaccia-qemu-8b1da5f8fdfb5e72e627f6fecbe8cd83bc7bda47.tar.gz
focaccia-qemu-8b1da5f8fdfb5e72e627f6fecbe8cd83bc7bda47.zip
pc: acpi: move LPT device from DSDT to SSDT
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>


Diffstat (limited to 'hw/i386/acpi-build.c')
-rw-r--r--hw/i386/acpi-build.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index c2912d45ce..2e5b1a6c0c 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -1295,6 +1295,41 @@ static Aml *build_mouse_device_aml(void)
     return dev;
 }
 
+static Aml *build_lpt_device_aml(void)
+{
+    Aml *dev;
+    Aml *crs;
+    Aml *method;
+    Aml *if_ctx;
+    Aml *else_ctx;
+    Aml *zero = aml_int(0);
+    Aml *is_present = aml_local(0);
+
+    dev = aml_device("LPT");
+    aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0400")));
+
+    method = aml_method("_STA", 0, AML_NOTSERIALIZED);
+    aml_append(method, aml_store(aml_name("LPEN"), is_present));
+    if_ctx = aml_if(aml_equal(is_present, zero));
+    {
+        aml_append(if_ctx, aml_return(aml_int(0x00)));
+    }
+    aml_append(method, if_ctx);
+    else_ctx = aml_else();
+    {
+        aml_append(else_ctx, aml_return(aml_int(0x0f)));
+    }
+    aml_append(method, else_ctx);
+    aml_append(dev, method);
+
+    crs = aml_resource_template();
+    aml_append(crs, aml_io(AML_DECODE16, 0x0378, 0x0378, 0x08, 0x08));
+    aml_append(crs, aml_irq_no_flags(7));
+    aml_append(dev, aml_name_decl("_CRS", crs));
+
+    return dev;
+}
+
 static void build_isa_devices_aml(Aml *table)
 {
     Aml *scope = aml_scope("_SB.PCI0.ISA");
@@ -1303,6 +1338,7 @@ static void build_isa_devices_aml(Aml *table)
     aml_append(scope, build_kbd_device_aml());
     aml_append(scope, build_mouse_device_aml());
     aml_append(scope, build_fdc_device_aml());
+    aml_append(scope, build_lpt_device_aml());
 
     aml_append(table, scope);
 }