summaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/apollolake/acpi/northbridge.asl22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/acpi/northbridge.asl b/src/soc/intel/apollolake/acpi/northbridge.asl
index 2230433686..b1ed3e56b4 100644
--- a/src/soc/intel/apollolake/acpi/northbridge.asl
+++ b/src/soc/intel/apollolake/acpi/northbridge.asl
@@ -122,5 +122,27 @@ Method (_CRS, 0, Serialized)
Return (MCRS)
}
+Device (PDRC) /* PCI Device Resource Consumption */
+{
+ Name (_HID, EisaId("PNP0C02"))
+ Name (_UID, 1)
+
+ Method (_CRS, 0, Serialized)
+ {
+ Name (BUF0, ResourceTemplate ()
+ {
+ /* PCI Express BAR */
+ Memory32Fixed (ReadWrite,
+ CONFIG_ECAM_MMCONF_BASE_ADDRESS,
+ CONFIG_ECAM_MMCONF_LENGTH, PCIX)
+
+ /* Local APIC range (0xfee0_0000 to 0xfeef_ffff) */
+ Memory32Fixed (ReadOnly, 0x0fee00000, 0x00010000, LIOH)
+ })
+
+ Return (BUF0)
+ }
+}
+
/* GFX 00:02.0 */
#include <drivers/intel/gma/acpi/gfx.asl>