diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-03-04 17:07:22 +1100 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-03-04 15:00:19 +0100 |
commit | ba885068120ec31de6191d2e89c2605830e7faab (patch) | |
tree | 340b274e4c21d56e0e0df786f6241292cc51c347 /src | |
parent | 2e18978a97dc87a1b8713e45d33b7a226efdcece (diff) | |
download | coreboot-ba885068120ec31de6191d2e89c2605830e7faab.tar.xz |
jetway/nf81-t56n-lf: Fix PS/2 ACPI for KBC & Mouse.
Provide ACPI table node so that the PS/2 keyboard/mouse port works
in GNU/Linux.
Change-Id: If73b8d37a81bb9066cbcc650b518d25e243b84e7
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/5327
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/jetway/nf81-t56n-lf/acpi/superio.asl | 6 | ||||
-rw-r--r-- | src/mainboard/jetway/nf81-t56n-lf/dsdt.asl | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/mainboard/jetway/nf81-t56n-lf/acpi/superio.asl b/src/mainboard/jetway/nf81-t56n-lf/acpi/superio.asl index e042553bee..6dcb877202 100644 --- a/src/mainboard/jetway/nf81-t56n-lf/acpi/superio.asl +++ b/src/mainboard/jetway/nf81-t56n-lf/acpi/superio.asl @@ -1,6 +1,10 @@ /* + * Super I/O devices + * * This file is part of the coreboot project. * + * Copyright (C) 2014 Edward O'Callaghan <eocallaghan@alterapraxis.com> + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. @@ -15,4 +19,4 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -/* No Super I/O device or functionality yet */ +#include "../../../../drivers/pc80/ps2_controller.asl" diff --git a/src/mainboard/jetway/nf81-t56n-lf/dsdt.asl b/src/mainboard/jetway/nf81-t56n-lf/dsdt.asl index f7c7bb2de3..85813d0d99 100644 --- a/src/mainboard/jetway/nf81-t56n-lf/dsdt.asl +++ b/src/mainboard/jetway/nf81-t56n-lf/dsdt.asl @@ -59,5 +59,6 @@ DefinitionBlock ( #include "acpi/gpe.asl" #include <southbridge/amd/cimx/sb800/acpi/smbus.asl> #include "acpi/thermal.asl" + #include "acpi/superio.asl" } /* End of ASL file */ |