{superio,ec}/acpi: Replace constant "Zero" with actual number

Change-Id: I449ec5b0bbf3f24d51688efef151d3018d2848b2
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71524
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Singer
2022-12-26 09:38:45 +01:00
parent fa06bcba06
commit 42efd7f593
36 changed files with 179 additions and 179 deletions

View File

@@ -30,7 +30,7 @@ Device (BATX)
0xFFFFFFFF, // Battery Remaining Capacity
0xFFFFFFFF, // Battery Present Voltage
})
Name (BTNM, Zero) // Battery number
Name (BTNM, 0) // Battery number
// Workaround for full battery status, enabled by default
Name (BFWK, 1)

View File

@@ -7,12 +7,12 @@ Mutex (BATM, 0)
// Wait for desired battery index to be presented in shared memory
// Arg0 = battery index
// Returns Zero on success, 1 on error.
// Returns 0 on success, 1 on error.
Method (BTSW, 1)
{
#ifdef EC_ENABLE_SECOND_BATTERY_DEVICE
If (BTIX == Arg0) {
Return (Zero)
Return (0)
}
If (Arg0 >= BTCN) {
Return (1)
@@ -33,7 +33,7 @@ Method (BTSW, 1)
Return (1)
}
#endif
Return (Zero)
Return (0)
}
// _STA implementation.
@@ -41,7 +41,7 @@ Method (BTSW, 1)
Method (BSTA, 1, Serialized)
{
If (Acquire (^BATM, 1000)) {
Return (Zero)
Return (0)
}
If (~BTSW (Arg0) & BTEX) {
@@ -159,7 +159,7 @@ Method (BBST, 4, Serialized)
// bit 1 = charging
// bit 2 = critical level
//
Local1 = Zero
Local1 = 0
// Check if AC is present
If (ACEX) {
@@ -277,10 +277,10 @@ Device (BAT0)
0xFFFFFFFF, // 0x02: Battery Remaining Capacity
0xFFFFFFFF, // 0x03: Battery Present Voltage
})
Name (BSTP, Zero)
Name (BSTP, 0)
// Workaround for full battery status, disabled by default
Name (BFWK, Zero)
Name (BFWK, 0)
// Method to enable full battery workaround
Method (BFWE)
@@ -291,7 +291,7 @@ Device (BAT0)
// Method to disable full battery workaround
Method (BFWD)
{
BFWK = Zero
BFWK = 0
}
Method (_STA, 0, Serialized)
@@ -367,10 +367,10 @@ Device (BAT1)
0xFFFFFFFF, // 0x02: Battery Remaining Capacity
0xFFFFFFFF, // 0x03: Battery Present Voltage
})
Name (BSTP, Zero)
Name (BSTP, 0)
// Workaround for full battery status, disabled by default
Name (BFWK, Zero)
Name (BFWK, 0)
// Method to enable full battery workaround
Method (BFWE)
@@ -381,7 +381,7 @@ Device (BAT1)
// Method to disable full battery workaround
Method (BFWD)
{
BFWK = Zero
BFWK = 0
}
Method (_STA, 0, Serialized)

View File

@@ -198,22 +198,22 @@ Device (EC0)
/* Check for sensor not calibrated */
If (Local0 == \_SB.PCI0.LPCB.EC0.TNCA) {
Return (Zero)
Return (0)
}
/* Check for sensor not present */
If (Local0 == \_SB.PCI0.LPCB.EC0.TNPR) {
Return (Zero)
Return (0)
}
/* Check for sensor not powered */
If (Local0 == \_SB.PCI0.LPCB.EC0.TNOP) {
Return (Zero)
Return (0)
}
/* Check for sensor bad reading */
If (Local0 == \_SB.PCI0.LPCB.EC0.TBAD) {
Return (Zero)
Return (0)
}
/* Adjust by offset to get Kelvin */

View File

@@ -10,7 +10,7 @@ Method (ESTA, 1, Serialized)
} ElseIf (Arg0 == 2) {
Local0 = R (P3B2)
} Else {
Local0 = Zero
Local0 = 0
}
/* Indicate battery is present */
@@ -42,7 +42,7 @@ Method (BSTR, 1, Serialized)
/* Fill buffer until NUL or max string length is read */
Name (IBUF, Buffer (Local0 + 1) {})
For (Local1 = Zero, Local1 < Local0, Local1++) {
For (Local1 = 0, Local1 < Local0, Local1++) {
Local2 = R (BSBS)
If (!Local2) {
Break
@@ -53,7 +53,7 @@ Method (BSTR, 1, Serialized)
/* Truncate and NUL terminate */
Local1++
Name (OBUF, Buffer (Local1) {})
OBUF = Concatenate (IBUF, Zero)
OBUF = Concatenate (IBUF, 0)
Return (OBUF)
}

View File

@@ -6,9 +6,9 @@ Device (EC0)
Name (_UID, 1)
Name (_GPE, EC_SCI_GPI)
Name (_STA, 0xf)
Name (DBUG, Zero)
Name (ISSX, Zero) /* Is the EC in S0ix mode? */
Name (UCEP, Zero) /* Is there a pending UCSI event? */
Name (DBUG, 0)
Name (ISSX, 0) /* Is the EC in S0ix mode? */
Name (UCEP, 0) /* Is there a pending UCSI event? */
Name (_CRS, ResourceTemplate() {
IO (Decode16,
@@ -22,7 +22,7 @@ Device (EC0)
})
/* Handle registration of EmbeddedControl region */
Name (EREG, Zero)
Name (EREG, 0)
OperationRegion (ERAM, EmbeddedControl, 0, 0xff)
Method (_REG, 2)
{
@@ -39,7 +39,7 @@ Device (EC0)
W (CSOS, 1)
/* Tell EC to stop emulating PS/2 mouse */
W (PS2M, Zero)
W (PS2M, 0)
/* Enable DPTF support if enabled in devicetree */
If (\DPTE == 1) {
@@ -77,7 +77,7 @@ Device (EC0)
Method (ECRW, 2, Serialized, 2)
{
If (!EREG) {
Return (Zero)
Return (0)
}
Local0 = DeRefOf (Arg0[0]) /* Byte offset */
@@ -115,7 +115,7 @@ Device (EC0)
}
BYT1 = Arg1
}
Return (Zero)
Return (0)
}
/*
@@ -124,7 +124,7 @@ Device (EC0)
*/
Method (R, 1, Serialized, 2)
{
Return (ECRW (Arg0, Zero))
Return (ECRW (Arg0, 0))
}
/*
@@ -155,7 +155,7 @@ Device (EC0)
R (EVT1)
} Else {
Printf ("EC Exit S0ix")
W (CSEX, Zero)
W (CSEX, 0)
/* If UCSI event happened during S0ix send it now. */
If (^UCEP == 1) {

View File

@@ -139,10 +139,10 @@ Method (_Q66, 0, Serialized)
/* UCSI SCI uses a unique event code */
Method (_Q79, 0, Serialized)
{
If (ISSX == Zero) {
If (ISSX == 0) {
Printf ("EC _Q79 UCSI Event")
Notify (^UCSI, 0x80)
^UCEP = Zero
^UCEP = 0
} Else {
Printf ("EC _Q79 UCSI Event Masked in S0ix")
^UCEP = 1

View File

@@ -9,8 +9,8 @@ Method (GPVD, 0, Serialized)
/* Read Privacy Screen Status */
Method (GPVX, 0, Serialized)
{
If (R (EPST) == Zero) {
Return (Zero)
If (R (EPST) == 0) {
Return (0)
}
Return (1)
@@ -25,5 +25,5 @@ Method (EPVX, 0, Serialized)
/* Disable Privacy Screen */
Method (DPVX, 0, Serialized)
{
W (EPCT, Zero)
W (EPCT, 0)
}

View File

@@ -17,7 +17,7 @@ Device (SIO)
#if CONFIG(DRIVERS_UART_8250IO)
Return (0x0f)
#else
Return (Zero)
Return (0)
#endif
}
@@ -42,7 +42,7 @@ Scope (\_SB.PCI0)
#ifdef SIO_EC_ENABLE_PS2K
Return (0x0f)
#else
Return (Zero)
Return (0)
#endif
}
@@ -64,7 +64,7 @@ Scope (\_SB.PCI0)
#ifdef SIO_EC_ENABLE_PS2M
Return (0x0f)
#else
Return (Zero)
Return (0)
#endif
}

View File

@@ -69,12 +69,12 @@ Device (UCSI)
Method (_DSM, 4, Serialized)
{
If (Arg0 != ToUUID ("6f8398c2-7ca4-11e4-ad36-631042b5008f")) {
Return (Buffer (1) { Zero })
Return (Buffer (1) { 0 })
}
Switch (ToInteger (Arg2))
{
Case (Zero)
Case (0)
{
Return (Buffer (1) { 0x07 })
}
@@ -138,6 +138,6 @@ Device (UCSI)
^CCI3 = R (^^UCI3)
}
}
Return (Buffer (1) { Zero })
Return (Buffer (1) { 0 })
}
}

View File

@@ -48,7 +48,7 @@ Device (VBTN)
*/
Method (VGBS)
{
Local0 = Zero
Local0 = 0
/* Check EC orientation for tablet mode flag */
If (R (OTBL)) {

View File

@@ -319,9 +319,9 @@ Device(EC)
{
If (Arg0) {
FAND = 1
FANA = Zero
FANA = 0
} Else {
FAND = Zero
FAND = 0
FANA = 1
}
}

View File

@@ -118,8 +118,8 @@ External (\PPKG, MethodObj)
}
Method (_OFF) {
\_SB.PCI0.LPCB.EC.FANE(Zero)
\FLVL = Zero
\_SB.PCI0.LPCB.EC.FANE(0)
\FLVL = 0
Notify (\_TZ.THM0, NOTIFY_TZ_TRIPPTCHG)
}
}

View File

@@ -36,17 +36,17 @@ Device (HKEY)
{
Local0 = BTN
If (Local0 != 0) {
BTN = Zero
BTN = 0
Local0 += 0x1000
Return (Local0)
}
Local0 = BTAB
If (Local0 != 0) {
BTAB = Zero
BTAB = 0
Local0 += 0x5000
Return (Local0)
}
Return (Zero)
Return (0)
}
/* Report event */
@@ -75,8 +75,8 @@ Device (HKEY)
}
Else
{
EMSK = Zero
ETAB = Zero
EMSK = 0
ETAB = 0
}
EN = Arg0
}

View File

@@ -17,7 +17,7 @@
* = 2: Secondary battery
* = Others: Reserved (0)
* Bit 31-10: Reserved (0)
* Must be Zero
* Must be 0
*
* Out Parameter:
* DWORD
@@ -110,7 +110,7 @@ Method (BCCS, 1, NotSerialized)
* DWORD
* Bit 7-0:BatteryID
* Bit 31-8: Reserved (0)
* Must be Zero
* Must be 0
*
* Out Parameter:
* DWORD

View File

@@ -5,12 +5,12 @@
Device (BAT0)
{
Name (_HID, EisaId ("PNP0C0A") /* Control Method Battery */) // _HID: Hardware ID
Name (_UID, Zero) // _UID: Unique ID
Name (_UID, 0) // _UID: Unique ID
Name (_PCL, Package (0x01) // _PCL: Power Consumer List
{
_SB
})
Name (BFCC, Zero)
Name (BFCC, 0)
Method (_STA, 0, NotSerialized) // _STA: Status
{
If (^^PCI0.LPCB.EC0.ECOK)
@@ -37,8 +37,8 @@ Device (BAT0)
0xFFFFFFFF, // 2 - Last Full Charge Capacity
1, // 3 - Battery Technology
BATTERY_DESIGN_VOLTAGE_MV, // 4 - Design Voltage
Zero, // 5 - Design Capacity of Warning
Zero, // 6 - Design Capacity of Low
0, // 5 - Design Capacity of Warning
0, // 6 - Design Capacity of Low
0x40, // 7 - Battery Capacity Granularity 1
0x40, // 8 - Battery Capacity Granularity 2
"BAT", // 9 - Model Number
@@ -55,7 +55,7 @@ Device (BAT0)
PBIF [10] = " "
PBIF [11] = " "
PBIF [12] = " "
BFCC = Zero
BFCC = 0
}
Method (UPBI, 0, NotSerialized)
@@ -100,14 +100,14 @@ Device (BAT0)
Name (PBST, Package (0x04)
{
Zero, // 0 - Battery state
0, // 0 - Battery state
0xFFFFFFFF, // 1 - Battery present rate
0xFFFFFFFF, // 2 - Battery remaining capacity
BATTERY_DESIGN_VOLTAGE_MV // 3 - Battery present voltage
})
Method (IVBS, 0, NotSerialized)
{
PBST [0] = Zero
PBST [0] = 0
PBST [1] = 0xFFFFFFFF
PBST [2] = 0xFFFFFFFF
PBST [3] = 0x2710
@@ -117,8 +117,8 @@ Device (BAT0)
{
If (^^PCI0.LPCB.EC0.BAT0)
{
Local0 = Zero
Local1 = Zero
Local0 = 0
Local1 = 0
If (^^AC.ACFG)
{
If (((^^PCI0.LPCB.EC0.BST0 & 0x02) == 0x02))

View File

@@ -31,7 +31,7 @@ Device (\_SB.PCI0.LPCB.EC0)
#include "ec_ram.asl"
Name (ECOK, Zero)
Name (ECOK, 0)
Method (_REG, 2, Serialized) // _REG: Region Availability
{
Printf ("EC: _REG %o %o", ToHexString(Arg0), ToHexString(Arg1))
@@ -49,8 +49,8 @@ Device (\_SB.PCI0.LPCB.EC0)
^^^^BAT0.UPBS()
// Notify of changes
Notify(^^^^AC, Zero)
Notify(^^^^BAT0, Zero)
Notify(^^^^AC, 0)
Notify(^^^^BAT0, 0)
PNOT ()
@@ -66,7 +66,7 @@ Device (\_SB.PCI0.LPCB.EC0)
Printf ("EC: PTS: %o", ToHexString(Arg0))
If (ECOK) {
// Clear wake cause
WFNO = Zero
WFNO = 0
}
}
@@ -81,8 +81,8 @@ Device (\_SB.PCI0.LPCB.EC0)
^^^^BAT0.UPBS()
// Notify of changes
Notify(^^^^AC, Zero)
Notify(^^^^BAT0, Zero)
Notify(^^^^AC, 0)
Notify(^^^^BAT0, 0)
// Reset Librem EC Device
^^^^LIEC.RSET()

View File

@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
OperationRegion (ERAM, EmbeddedControl, Zero, 0xFF)
OperationRegion (ERAM, EmbeddedControl, 0, 0xFF)
Field (ERAM, ByteAcc, Lock, Preserve)
{
Offset (0x03),

View File

@@ -3,19 +3,19 @@
Device (HIDD)
{
Name (_HID, "INT33D5")
Name (HBSY, Zero)
Name (HIDX, Zero)
Name (HRDY, Zero)
Name (HBSY, 0)
Name (HIDX, 0)
Name (HRDY, 0)
Method (HDEM, 0, Serialized)
{
HBSY = Zero
HBSY = 0
Return (HIDX)
}
Method (HDMM, 0, Serialized)
{
Return (Zero)
Return (0)
}
Method (HDSM, 1, Serialized)
@@ -29,7 +29,7 @@ Device (HIDD)
HIDX = Arg0
Notify (HIDD, 0xC0)
Local0 = Zero
Local0 = 0
While ((Local0 < 0xFA) && HBSY)
{
Sleep (0x04)
@@ -38,13 +38,13 @@ Device (HIDD)
If (HBSY == 1)
{
HBSY = Zero
HIDX = Zero
HBSY = 0
HIDX = 0
Return (1)
}
Else
{
Return (Zero)
Return (0)
}
}
}

View File

@@ -113,7 +113,7 @@ Device (LIEC) {
^^PCI0.LPCB.EC0.FDAT = 1
^^PCI0.LPCB.EC0.FCMD = 0xCA
Local0 = ^^PCI0.LPCB.EC0.FBUF
^^PCI0.LPCB.EC0.FCMD = Zero
^^PCI0.LPCB.EC0.FCMD = 0
}
Return (Local0)
}
@@ -121,7 +121,7 @@ Device (LIEC) {
// Set KB Led
Method (SKBL, 1, Serialized) {
If (^^PCI0.LPCB.EC0.ECOK) {
^^PCI0.LPCB.EC0.FDAT = Zero
^^PCI0.LPCB.EC0.FDAT = 0
^^PCI0.LPCB.EC0.FBUF = Arg0
^^PCI0.LPCB.EC0.FCMD = 0xCA
}

View File

@@ -51,7 +51,7 @@ Device (BAT)
0xFFFFFFFF, /* 0x02: Battery Remaining Capacity */
0xFFFFFFFF, /* 0x03: Battery Present Voltage */
})
Name (BSTP, Zero)
Name (BSTP, 0)
/* Battery Capacity warning at 15% */
Name (DWRN, 15)

View File

@@ -36,7 +36,7 @@ Device (EC)
IO (Decode16, 0x66, 0x66, 0, 1)
})
OperationRegion (ERAM, EmbeddedControl, Zero, 0xFF)
OperationRegion (ERAM, EmbeddedControl, 0, 0xFF)
Field (ERAM, ByteAcc, Lock, Preserve)
{
Offset (0x13),

View File

@@ -215,7 +215,7 @@ Device (EC0)
Method (_Q11, 0, NotSerialized)
{
Printf ("AC Detach Event 0x11")
\PWRS = Zero
\PWRS = 0
Notify (AC, 0x80)
Notify (BATX, 0x80)
\PNOT ()

View File

@@ -13,7 +13,7 @@ Device (BATX)
// Battery X Information
// Battery X Status
//
Name (BXST, Zero)
Name (BXST, 0)
//
// Default Static Battery Information
@@ -55,7 +55,7 @@ Device (BATX)
// Method to disable full battery workaround
Method (BFWD)
{
BFWK = Zero
BFWK = 0
}
// Method to wait for EC to be ready after changing the Battery Info ID
@@ -111,7 +111,7 @@ Device (BATX)
//
// Information ID 0 -
//
HIID = Zero
HIID = 0
WAEC ()
//
@@ -228,7 +228,7 @@ Device (BATX)
}
Else
{
Local0 = Zero
Local0 = 0
}
}
@@ -238,7 +238,7 @@ Device (BATX)
Local0 |= 4
}
Local1 = Zero
Local1 = 0
// Check if AC is present
If (ACPW)
@@ -270,7 +270,7 @@ Device (BATX)
Else
{
// Error
Local1 = Zero
Local1 = 0
}
}
Else
@@ -278,7 +278,7 @@ Device (BATX)
If (!(Local0 & 2))
{
// Battery is not charging
Local1 = Zero
Local1 = 0
}
}

View File

@@ -602,7 +602,7 @@ Device (EC0)
// AC Power Removed
Method (_Q27, 0, NotSerialized)
{
\PWRS = Zero
\PWRS = 0
Notify (AC, 0x80)
\PNOT ()
}
@@ -617,7 +617,7 @@ Device (EC0)
// LID Close (Suspend Trigger)
Method (_Q2B)
{
\LIDS = Zero
\LIDS = 0
Notify (\_SB.LID0, 0x80)
}

View File

@@ -39,7 +39,7 @@ Device (BAT0)
0xFFFFFFFF, // Battery Remaining Capacity
0xFFFFFFFF, // Battery Present Voltage
})
Name (BSTP, Zero)
Name (BSTP, 0)
// Workaround for full battery status, enabled by default
Name (BFWK, 1)
@@ -53,7 +53,7 @@ Device (BAT0)
// Method to disable full battery workaround
Method (BFWD)
{
BFWK = Zero
BFWK = 0
}
// Swap bytes in a word
@@ -106,7 +106,7 @@ Device (BAT0)
// Get battery state from EC
Local0 = BTST
Local1 = Zero
Local1 = 0
// Check if AC is present
If (ACEX) {

View File

@@ -78,7 +78,7 @@ Device (EC0)
If (\FLVL <= 0) {
Return (1)
} Else {
Return (Zero)
Return (0)
}
}
Method (_ON) {
@@ -90,7 +90,7 @@ Device (EC0)
}
Method (_OFF) {
If (FCOS) {
FSL0 = Zero
FSL0 = 0
\FLVL = 1
Notify (\_TZ.THRM, 0x81)
}
@@ -103,7 +103,7 @@ Device (EC0)
If (\FLVL <= 1) {
Return (1)
} Else {
Return (Zero)
Return (0)
}
}
Method (_ON) {
@@ -115,7 +115,7 @@ Device (EC0)
}
Method (_OFF) {
If (FCOS) {
FSL1 = Zero
FSL1 = 0
\FLVL = 2
Notify (\_TZ.THRM, 0x81)
}
@@ -128,7 +128,7 @@ Device (EC0)
If (\FLVL <= 2) {
Return (1)
} Else {
Return (Zero)
Return (0)
}
}
Method (_ON) {
@@ -140,7 +140,7 @@ Device (EC0)
}
Method (_OFF) {
If (FCOS) {
FSL2 = Zero
FSL2 = 0
\FLVL = 3
Notify (\_TZ.THRM, 0x81)
}
@@ -153,7 +153,7 @@ Device (EC0)
If (\FLVL <= 3) {
Return (1)
} Else {
Return (Zero)
Return (0)
}
}
Method (_ON) {
@@ -165,7 +165,7 @@ Device (EC0)
}
Method (_OFF) {
If (FCOS) {
FSL3 = Zero
FSL3 = 0
\FLVL = 4
Notify (\_TZ.THRM, 0x81)
}
@@ -178,7 +178,7 @@ Device (EC0)
If (\FLVL <= 4) {
Return (1)
} Else {
Return (Zero)
Return (0)
}
}
Method (_ON) {
@@ -190,7 +190,7 @@ Device (EC0)
}
Method (_OFF) {
If (FCOS) {
FSL4 = Zero
FSL4 = 0
\FLVL = 5
Notify (\_TZ.THRM, 0x81)
}
@@ -243,7 +243,7 @@ Device (EC0)
// AC Power Removed
Method (_Q52, 0, NotSerialized)
{
\PWRS = Zero
\PWRS = 0
Notify (AC, 0x80)
\PNOT ()
}

View File

@@ -3,12 +3,12 @@
Device (BAT0)
{
Name (_HID, EisaId ("PNP0C0A") /* Control Method Battery */) // _HID: Hardware ID
Name (_UID, Zero) // _UID: Unique ID
Name (_UID, 0) // _UID: Unique ID
Name (_PCL, Package (0x01) // _PCL: Power Consumer List
{
_SB
})
Name (BFCC, Zero)
Name (BFCC, 0)
Method (_STA, 0, NotSerialized) // _STA: Status
{
If (^^PCI0.LPCB.EC0.ECOK)
@@ -35,8 +35,8 @@ Device (BAT0)
0xFFFFFFFF, // 2 - Last Full Charge Capacity
1, // 3 - Battery Technology
0xFFFFFFFF, // 4 - Design Voltage
Zero, // 5 - Design Capacity of Warning
Zero, // 6 - Design Capacity of Low
0, // 5 - Design Capacity of Warning
0, // 6 - Design Capacity of Low
0x40, // 7 - Battery Capacity Granularity 1
0x40, // 8 - Battery Capacity Granularity 2
" ", // 9 - Model Number
@@ -53,7 +53,7 @@ Device (BAT0)
PBIF [10] = " "
PBIF [11] = " "
PBIF [12] = " "
BFCC = Zero
BFCC = 0
}
Method (UPBI, 0, NotSerialized)
@@ -176,14 +176,14 @@ Device (BAT0)
Name (PBST, Package (0x04)
{
Zero, // 0 - Battery state
0, // 0 - Battery state
0xFFFFFFFF, // 1 - Battery present rate
0xFFFFFFFF, // 2 - Battery remaining capacity
0xFFFFFFFF // 3 - Battery present voltage
})
Method (IVBS, 0, NotSerialized)
{
PBST [0] = Zero
PBST [0] = 0
PBST [1] = 0xFFFFFFFF
PBST [2] = 0xFFFFFFFF
PBST [3] = 0xFFFFFFFF
@@ -193,8 +193,8 @@ Device (BAT0)
{
If (^^PCI0.LPCB.EC0.BAT0)
{
Local0 = Zero
Local1 = Zero
Local0 = 0
Local1 = 0
If (^^AC.ACFG)
{
If (((^^PCI0.LPCB.EC0.BST0 & 0x02) == 0x02))

View File

@@ -31,7 +31,7 @@ Device (\_SB.PCI0.LPCB.EC0)
#include "ec_ram.asl"
Name (ECOK, Zero)
Name (ECOK, 0)
Method (_REG, 2, Serialized) // _REG: Region Availability
{
Debug = Concatenate("EC: _REG", Concatenate(ToHexString(Arg0), Concatenate(" ", ToHexString(Arg1))))
@@ -49,8 +49,8 @@ Device (\_SB.PCI0.LPCB.EC0)
^^^^BAT0.UPBS()
// Notify of changes
Notify(^^^^AC, Zero)
Notify(^^^^BAT0, Zero)
Notify(^^^^AC, 0)
Notify(^^^^BAT0, 0)
PNOT ()
@@ -62,7 +62,7 @@ Device (\_SB.PCI0.LPCB.EC0)
}
}
Name (S3OS, Zero)
Name (S3OS, 0)
Method (PTS, 1, Serialized) {
Debug = Concatenate("EC: PTS: ", ToHexString(Arg0))
If (ECOK) {
@@ -70,7 +70,7 @@ Device (\_SB.PCI0.LPCB.EC0)
S3OS = ECOS
// Clear wake cause
WFNO = Zero
WFNO = 0
}
}
@@ -88,8 +88,8 @@ Device (\_SB.PCI0.LPCB.EC0)
^^^^BAT0.UPBS()
// Notify of changes
Notify(^^^^AC, Zero)
Notify(^^^^BAT0, Zero)
Notify(^^^^AC, 0)
Notify(^^^^BAT0, 0)
// Reset System76 Device
^^^^S76D.RSET()

View File

@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
OperationRegion (ERAM, EmbeddedControl, Zero, 0xFF)
OperationRegion (ERAM, EmbeddedControl, 0, 0xFF)
Field (ERAM, ByteAcc, Lock, Preserve)
{
Offset (0x03),

View File

@@ -3,19 +3,19 @@
Device (HIDD)
{
Name (_HID, "INT33D5")
Name (HBSY, Zero)
Name (HIDX, Zero)
Name (HRDY, Zero)
Name (HBSY, 0)
Name (HIDX, 0)
Name (HRDY, 0)
Method (HDEM, 0, Serialized)
{
HBSY = Zero
HBSY = 0
Return (HIDX)
}
Method (HDMM, 0, Serialized)
{
Return (Zero)
Return (0)
}
Method (HDSM, 1, Serialized)
@@ -29,7 +29,7 @@ Device (HIDD)
HIDX = Arg0
Notify (HIDD, 0xC0)
Local0 = Zero
Local0 = 0
While ((Local0 < 0xFA) && HBSY)
{
Sleep (0x04)
@@ -38,13 +38,13 @@ Device (HIDD)
If (HBSY == 1)
{
HBSY = Zero
HIDX = Zero
HBSY = 0
HIDX = 0
Return (1)
}
Else
{
Return (Zero)
Return (0)
}
}
}

View File

@@ -100,7 +100,7 @@ Device (S76D) {
^^PCI0.LPCB.EC0.FDAT = 1
^^PCI0.LPCB.EC0.FCMD = 0xCA
Local0 = ^^PCI0.LPCB.EC0.FBUF
^^PCI0.LPCB.EC0.FCMD = Zero
^^PCI0.LPCB.EC0.FCMD = 0
}
Return (Local0)
}
@@ -108,7 +108,7 @@ Device (S76D) {
// Set KB Led
Method (SKBL, 1, Serialized) {
If (^^PCI0.LPCB.EC0.ECOK) {
^^PCI0.LPCB.EC0.FDAT = Zero
^^PCI0.LPCB.EC0.FDAT = 0
^^PCI0.LPCB.EC0.FBUF = Arg0
^^PCI0.LPCB.EC0.FCMD = 0xCA
}