提交 c355cb2c 编写于 作者: I Igor Mammedov 提交者: Michael S. Tsirkin

pc: acpi: move MOU device from DSDT to SSDT

Signed-off-by: NIgor Mammedov <imammedo@redhat.com>
Reviewed-by: NMichael S. Tsirkin <mst@redhat.com>
Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
上级 f58190e2
...@@ -1236,12 +1236,33 @@ static Aml *build_kbd_device_aml(void) ...@@ -1236,12 +1236,33 @@ static Aml *build_kbd_device_aml(void)
return dev; return dev;
} }
static Aml *build_mouse_device_aml(void)
{
Aml *dev;
Aml *crs;
Aml *method;
dev = aml_device("MOU");
aml_append(dev, aml_name_decl("_HID", aml_eisaid("PNP0F13")));
method = aml_method("_STA", 0, AML_NOTSERIALIZED);
aml_append(method, aml_return(aml_int(0x0f)));
aml_append(dev, method);
crs = aml_resource_template();
aml_append(crs, aml_irq_no_flags(12));
aml_append(dev, aml_name_decl("_CRS", crs));
return dev;
}
static void build_isa_devices_aml(Aml *table) static void build_isa_devices_aml(Aml *table)
{ {
Aml *scope = aml_scope("_SB.PCI0.ISA"); Aml *scope = aml_scope("_SB.PCI0.ISA");
aml_append(scope, build_rtc_device_aml()); aml_append(scope, build_rtc_device_aml());
aml_append(scope, build_kbd_device_aml()); aml_append(scope, build_kbd_device_aml());
aml_append(scope, build_mouse_device_aml());
aml_append(table, scope); aml_append(table, scope);
} }
......
...@@ -16,16 +16,6 @@ ...@@ -16,16 +16,6 @@
/* Common legacy ISA style devices. */ /* Common legacy ISA style devices. */
Scope(\_SB.PCI0.ISA) { Scope(\_SB.PCI0.ISA) {
Device(MOU) {
Name(_HID, EisaId("PNP0F13"))
Method(_STA, 0, NotSerialized) {
Return (0x0f)
}
Name(_CRS, ResourceTemplate() {
IRQNoFlags() { 12 }
})
}
Device(FDC0) { Device(FDC0) {
Name(_HID, EisaId("PNP0700")) Name(_HID, EisaId("PNP0700"))
Method(_STA, 0, NotSerialized) { Method(_STA, 0, NotSerialized) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册