aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/common/acpi/platform.asl
diff options
context:
space:
mode:
authorAlexey Buyanov <alexey.buyanov@intel.com>2020-06-01 22:08:35 -0700
committerPatrick Georgi <pgeorgi@google.com>2020-06-14 16:55:02 +0000
commit2232e8906564153c142d27b986f0a23175b7b7d6 (patch)
tree807004b8a088f9d5720681b1edda9520cde0fafa /src/southbridge/intel/common/acpi/platform.asl
parent5591b91b1a3cc3c16621027527182940ed540599 (diff)
southbridge/intel/common: Introduce ASL2.0 syntax
Modify southbridge/intel/common .asl files to comply with ASL2.0 syntax for better code readability and clarity BUG=none BRANCH=none TEST= Google Parrot platform coreboot binary remains the same after the changes are applied Signed-off-by: Alexey Buyanov <alexey.buyanov@intel.com> Change-Id: Ia11769d5ac6154ed79d967d7bab36e12a1db751a Reviewed-on: https://review.coreboot.org/c/coreboot/+/42084 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Subrata Banik <subrata.banik@intel.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/common/acpi/platform.asl')
-rw-r--r--src/southbridge/intel/common/acpi/platform.asl16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/southbridge/intel/common/acpi/platform.asl b/src/southbridge/intel/common/acpi/platform.asl
index 2786d93ec5..b1dda02716 100644
--- a/src/southbridge/intel/common/acpi/platform.asl
+++ b/src/southbridge/intel/common/acpi/platform.asl
@@ -20,8 +20,8 @@ Field (POST, ByteAcc, Lock, Preserve)
/* SMI I/O Trap */
Method(TRAP, 1, Serialized)
{
- Store (Arg0, SMIF) // SMI Function
- Store (0, TRP0) // Generate trap
+ SMIF = Arg0 // SMI Function
+ TRP0 = 0 // Generate trap
Return (SMIF) // Return value of SMI handler
}
@@ -35,7 +35,7 @@ Method(TRAP, 1, Serialized)
Method(_PIC, 1)
{
// Remember the OS' IRQ routing choice.
- Store(Arg0, PICM)
+ PICM = Arg0
}
Method(GOS, 0)
@@ -54,23 +54,23 @@ Method(GOS, 0)
*/
/* Let's assume we're running at least Windows 2000 */
- Store (2000, OSYS)
+ OSYS = 2000
If (CondRefOf(_OSI)) {
If (_OSI("Windows 2001")) {
- Store (2001, OSYS)
+ OSYS = 2001
}
If (_OSI("Windows 2001 SP1")) {
- Store (2001, OSYS)
+ OSYS = 2001
}
If (_OSI("Windows 2001 SP2")) {
- Store (2002, OSYS)
+ OSYS = 2002
}
If (_OSI("Windows 2006")) {
- Store (2006, OSYS)
+ OSYS = 2006
}
}
}