aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/aopen/dxplplusu
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-16 04:40:39 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-23 10:17:34 +0000
commit86bc2e708dc2600c5611b6573d43645e7d57e561 (patch)
tree54b589e40a81ee74915df4ed68a6a13c944bc17d /src/mainboard/aopen/dxplplusu
parent372573eaff0f757f004de2f4fb3f688de93bbbba (diff)
tree: Replace Or(a,b,c) with ASL 2.0 syntax
Replace `Or (a, b, c)` with `c = a | b`, respectively `c |= b` where possible. Change-Id: Icf194b248075f290de90fb4bc4e9a0cd9d76ec61 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70846 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/aopen/dxplplusu')
-rw-r--r--src/mainboard/aopen/dxplplusu/acpi/power.asl12
-rw-r--r--src/mainboard/aopen/dxplplusu/acpi/superio.asl14
2 files changed, 13 insertions, 13 deletions
diff --git a/src/mainboard/aopen/dxplplusu/acpi/power.asl b/src/mainboard/aopen/dxplplusu/acpi/power.asl
index 903d844d42..c7b178a44f 100644
--- a/src/mainboard/aopen/dxplplusu/acpi/power.asl
+++ b/src/mainboard/aopen/dxplplusu/acpi/power.asl
@@ -50,22 +50,22 @@ Scope (\_GPE)
/* Clear power buttons */
Method (\_INI, 0, NotSerialized)
{
- Or (\_SB.PCI0.ICH0.PS1H, 0x09, \_SB.PCI0.ICH0.PS1H)
- Or (\_SB.PCI0.ICH0.PE1H, 0x01, \_SB.PCI0.ICH0.PE1H)
+ \_SB.PCI0.ICH0.PS1H |= 9
+ \_SB.PCI0.ICH0.PE1H |= 1
}
/* Prepare To Sleep */
Method (\_PTS, 1, NotSerialized)
{
- Or (\_SB.PCI0.ICH0.GS0H, 0x19, \_SB.PCI0.ICH0.GS0H)
- Or (\_SB.PCI0.ICH0.GS0L, 0x11, \_SB.PCI0.ICH0.GS0L)
+ \_SB.PCI0.ICH0.GS0H |= 0x19
+ \_SB.PCI0.ICH0.GS0L |= 0x11
}
/* System Wake */
Method (\_WAK, 1, NotSerialized)
{
- Or (\_SB.PCI0.ICH0.GS0H, 0x19, \_SB.PCI0.ICH0.GS0H)
- Or (\_SB.PCI0.ICH0.GS0L, 0x11, \_SB.PCI0.ICH0.GS0L)
+ \_SB.PCI0.ICH0.GS0H |= 0x19
+ \_SB.PCI0.ICH0.GS0L |= 0x11
Return ( Package() { 0x0, 0x0 } )
}
diff --git a/src/mainboard/aopen/dxplplusu/acpi/superio.asl b/src/mainboard/aopen/dxplplusu/acpi/superio.asl
index 22b0e2297e..cd8dc8bf2f 100644
--- a/src/mainboard/aopen/dxplplusu/acpi/superio.asl
+++ b/src/mainboard/aopen/dxplplusu/acpi/superio.asl
@@ -75,9 +75,9 @@ Method (_CRS, 0, NotSerialized)
\_SB.PCI0.ICH0.SMSC.LDN = 0x0A
IOM1 = 0x00
IOM2 = 0x00
- Or (\_SB.PCI0.ICH0.SMSC.IOAH, IOM1, IOM1)
+ IOM1 |= \_SB.PCI0.ICH0.SMSC.IOAH
IOM1 <<= 8
- Or (\_SB.PCI0.ICH0.SMSC.IOAL, IOM1, IOM1)
+ IOM1 |= \_SB.PCI0.ICH0.SMSC.IOAL
IOM2 = IOM1
If (IOM1 != 0)
{
@@ -111,28 +111,28 @@ Method (_INI, 0, NotSerialized)
/* GPIO initial output levels */
Local0 = GP_1
And( Local0, 0x7C, Local0)
- Or ( Local0, 0x81, Local0)
+ Local0 |= 0x81
GP_1 = Local0
Local0 = GP_2
And( Local0, 0xFE, Local0)
- Or ( Local0, 0x00, Local0)
+ Local0 |= 0
GP_2 = Local0
Local0 = GP_3
And( Local0, 0x7F, Local0)
- Or ( Local0, 0x80, Local0)
+ Local0 |= 0x80
GP_3 = Local0
Local0 = GP_4
And( Local0, 0x7F, Local0)
- Or ( Local0, 0x00, Local0)
+ Local0 |= 0
GP_4 = Local0
/* Power Led */
Local0 = LED1
And( Local0, 0xfc, Local0)
- Or ( Local0, 0x01, Local0)
+ Local0 |= 1
LED1 = Local0
}