summaryrefslogtreecommitdiff
path: root/src/soc/intel/broadwell/pch/acpi/globalnvs.asl
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-10-25 21:11:58 +0100
committerMichael Niewöhner <foss@mniewoehner.de>2020-11-13 12:02:43 +0000
commit56d37fbe6f65d6c92a082d30baf13e79331dcebd (patch)
tree86f387f2f117828125e840f808188ece09480d61 /src/soc/intel/broadwell/pch/acpi/globalnvs.asl
parente53dfe0cfba9a773079a7229b05ed4b4c5e9e3c4 (diff)
downloadcoreboot-56d37fbe6f65d6c92a082d30baf13e79331dcebd.tar.xz
soc/intel/broadwell/pch/acpi: Clean up cosmetics
Use ASL 2.0 syntax where possible and uniformize code style to match the IASL disassembly. Some `Store` in gpio.asl change the binary if touched. Tested with BUILD_TIMELESS=1, Google Buddy does not change. Change-Id: Ic13c081fd7ee2212d851cc14263c1e2fd8970072 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46778 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/broadwell/pch/acpi/globalnvs.asl')
-rw-r--r--src/soc/intel/broadwell/pch/acpi/globalnvs.asl14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/soc/intel/broadwell/pch/acpi/globalnvs.asl b/src/soc/intel/broadwell/pch/acpi/globalnvs.asl
index 15f69dd09f..06ca564548 100644
--- a/src/soc/intel/broadwell/pch/acpi/globalnvs.asl
+++ b/src/soc/intel/broadwell/pch/acpi/globalnvs.asl
@@ -11,7 +11,7 @@ Name (\PICM, 0) // IOAPIC/8259
* we have to fix it up in coreboot's ACPI creation phase.
*/
-External(NVSA)
+External (NVSA)
OperationRegion (GNVS, SystemMemory, NVSA, 0x2000)
Field (GNVS, ByteAcc, NoLock, Preserve)
{
@@ -87,35 +87,35 @@ Field (GNVS, ByteAcc, NoLock, Preserve)
/* Set flag to enable USB charging in S3 */
Method (S3UE)
{
- Store (One, \S3U0)
+ \S3U0 = 1
}
/* Set flag to disable USB charging in S3 */
Method (S3UD)
{
- Store (Zero, \S3U0)
+ \S3U0 = 0
}
/* Set flag to enable USB charging in S5 */
Method (S5UE)
{
- Store (One, \S5U0)
+ \S5U0 = 1
}
/* Set flag to disable USB charging in S5 */
Method (S5UD)
{
- Store (Zero, \S5U0)
+ \S5U0 = 0
}
/* Set flag to enable 3G module in S3 */
Method (S3GE)
{
- Store (One, \S33G)
+ \S33G = 1
}
/* Set flag to disable 3G module in S3 */
Method (S3GD)
{
- Store (Zero, \S33G)
+ \S33G = 0
}