diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-04-06 02:53:49 +1100 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-04-13 09:06:15 +0200 |
commit | 99e2bf87ef9e91196bf19eaa9091c2a945352316 (patch) | |
tree | 01cf4c3ba983b10ed4e3ed62d927b77abb53b001 /src/mainboard/amd/torpedo | |
parent | 0e3ca273151b9c13da7ae53923cb6387dd9d2cdf (diff) |
cimx/sb800 boards: Don't require ide.asl on boards without IDE
Not all boards which use the AMD cimx/sb800 southbridge have IDE.
However, the southbridge's asl included an 'ide.asl' file which had to
be present in $(mainboard_dir)/acpi.
Address this issue by including ide.asl only in boards which have IDE,
and remove it from all other cimx/sb800 boards.
Change-Id: I57fcb4db9f85234b05ae1705ef81a576c478cee6
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/5460
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/amd/torpedo')
-rw-r--r-- | src/mainboard/amd/torpedo/dsdt.asl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mainboard/amd/torpedo/dsdt.asl b/src/mainboard/amd/torpedo/dsdt.asl index 2ecd80b4ee..c6b859a32d 100644 --- a/src/mainboard/amd/torpedo/dsdt.asl +++ b/src/mainboard/amd/torpedo/dsdt.asl @@ -796,6 +796,12 @@ DefinitionBlock ( Scope(\_SB) { /* Start \_SB scope */ #include <arch/x86/acpi/globutil.asl> /* global utility methods expected within the \_SB scope */ + /* Primary (and only) IDE channel */ + Device(IDEC) { + Name(_ADR, 0x00140001) + #include "acpi/ide.asl" + } /* end IDEC */ + /* _SB.PCI0 */ /* Note: Only need HID on Primary Bus */ Device(PCI0) { |