aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/apollolake/acpi
diff options
context:
space:
mode:
authorZhao, Lijian <lijian.zhao@intel.com>2016-04-07 15:50:03 -0700
committerMartin Roth <martinroth@google.com>2016-04-15 00:25:06 +0200
commit44d009dc7f6c7795d094e1bffcca49e493594359 (patch)
treeb8493070cceef06dfcbbb6c3f3dfbf902ba0a03d /src/soc/intel/apollolake/acpi
parenta29bc9786d2615a4af4359057cfee686d6cb5d4a (diff)
soc/intel/apollolake: Fix northbridge _CRS
Fix build break on current _CRS method with correct scope. Change-Id: I75ba8abc547ec69be0a0950e23a7c31b447af31e Signed-off-by: Zhao, Lijian <lijian.zhao@intel.com> Reviewed-on: https://review.coreboot.org/14288 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc/intel/apollolake/acpi')
-rw-r--r--src/soc/intel/apollolake/acpi/northbridge.asl16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/soc/intel/apollolake/acpi/northbridge.asl b/src/soc/intel/apollolake/acpi/northbridge.asl
index a843b37725..58ad451ae2 100644
--- a/src/soc/intel/apollolake/acpi/northbridge.asl
+++ b/src/soc/intel/apollolake/acpi/northbridge.asl
@@ -93,9 +93,9 @@ Method (_CRS, 0, Serialized)
CreateDwordField (MCRS, ^PM01._LEN, PLEN)
/* Read C-Unit PCI CFG Reg. 0xBC for TOLUD (shadow from B-Unit) */
- And(^MCHC.TLUD, 0xFFF00000, PMIN)
+ And(^TLUD, 0xFFF00000, PMIN)
/* Read MMCONF base */
- And(^MCHC.MCNF, 0xF0000000, PMAX)
+ And(^MCNF, 0xF0000000, PMAX)
/* Calculate PCI MMIO Length */
Add(Subtract(PMAX, PMIN), 1, PLEN)
@@ -106,10 +106,10 @@ Method (_CRS, 0, Serialized)
CreateDwordField(MCRS, ^STOM._LEN, GLEN)
/* Read BGSM */
- And(^MCHC.BGSM, 0xFFF00000, GMIN)
+ And(^BGSM, 0xFFF00000, GMIN)
/* Read TOLUD */
- And(^MCHC.TLUD, 0xFFF00000, GMAX)
+ And(^TLUD, 0xFFF00000, GMAX)
Decrement(GMAX)
Add(Subtract(GMAX, GMIN), 1, GLEN)
@@ -118,9 +118,9 @@ Method (_CRS, 0, Serialized)
CreateQwordField (MCRS, ^PM02._MAX, MMAX)
CreateQwordField (MCRS, ^PM02._LEN, MLEN)
- Store (^MCHC.TUUD, Local0)
-
- If (LLessEqual (Local0, 0x1000000000)) {
+ Store (^TUUD, Local0)
+ If (LLessEqual (Local0, 0x1000000000))
+ {
Store (0, MMIN)
Store (0, MLEN)
}
@@ -128,4 +128,4 @@ Method (_CRS, 0, Serialized)
Return (MCRS)
}
-} \ No newline at end of file
+}