diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-11-28 10:17:41 +0100 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-12-01 23:22:21 -0500 |
commit | 7464aea6eb8f12a2695681ffaf994561d684c490 (patch) | |
tree | e5435ac863e8c2950c2886d4f894074a27e41f1e /src | |
parent | 4dfa54712e9d5dd49fc4d1f828f2a77f515450ad (diff) | |
download | seabios-hppa-7464aea6eb8f12a2695681ffaf994561d684c490.zip seabios-hppa-7464aea6eb8f12a2695681ffaf994561d684c490.tar.gz seabios-hppa-7464aea6eb8f12a2695681ffaf994561d684c490.tar.bz2 |
acpi: move \_SB.HPET to separate file [q35]
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/q35-acpi-dsdt.dsl | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/src/q35-acpi-dsdt.dsl b/src/q35-acpi-dsdt.dsl index e61f142..737a358 100644 --- a/src/q35-acpi-dsdt.dsl +++ b/src/q35-acpi-dsdt.dsl @@ -360,6 +360,8 @@ DefinitionBlock ( } } +#include "acpi-dsdt-hpet.dsl" + Scope(\_SB.PCI0) { Device (VGA) { Name (_ADR, 0x00020000) @@ -420,25 +422,6 @@ DefinitionBlock ( FDEN, 1 } - /* High Precision Event Timer */ - Device(HPET) { - Name(_HID, EISAID("PNP0103")) - Name(_UID, 0) - Method (_STA, 0, NotSerialized) { - Return(0x0F) - } - Name(_CRS, ResourceTemplate() { - DWordMemory( - ResourceConsumer, PosDecode, MinFixed, MaxFixed, - NonCacheable, ReadWrite, - 0x00000000, - 0xFED00000, - 0xFED003FF, - 0x00000000, - 0x00000400 /* 1K memory: FED00000 - FED003FF */ - ) - }) - } /* Real-time clock */ Device (RTC) { |