{superio,ec}/acpi: Replace constant "One" with actual number
Change-Id: I5c77b6d1e1dc1134f62dcb3e93df01dc9c2f386c Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/71520 Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -33,7 +33,7 @@ Device (BATX)
|
||||
Name (BTNM, Zero) // Battery number
|
||||
|
||||
// Workaround for full battery status, enabled by default
|
||||
Name (BFWK, One)
|
||||
Name (BFWK, 1)
|
||||
|
||||
// Method to enable full battery workaround
|
||||
Method (BFWE)
|
||||
|
@@ -7,7 +7,7 @@ Mutex (BATM, 0)
|
||||
|
||||
// Wait for desired battery index to be presented in shared memory
|
||||
// Arg0 = battery index
|
||||
// Returns Zero on success, One on error.
|
||||
// Returns Zero on success, 1 on error.
|
||||
Method (BTSW, 1)
|
||||
{
|
||||
#ifdef EC_ENABLE_SECOND_BATTERY_DEVICE
|
||||
@@ -15,7 +15,7 @@ Method (BTSW, 1)
|
||||
Return (Zero)
|
||||
}
|
||||
If (Arg0 >= BTCN) {
|
||||
Return (One)
|
||||
Return (1)
|
||||
}
|
||||
\_SB.PCI0.LPCB.EC0.BTID = Arg0
|
||||
Local0 = 5 // Timeout 5 msec
|
||||
@@ -25,12 +25,12 @@ Method (BTSW, 1)
|
||||
Local0--
|
||||
If (Local0 == 0)
|
||||
{
|
||||
Return (One)
|
||||
Return (1)
|
||||
}
|
||||
}
|
||||
#else
|
||||
If (Arg0 != 0) {
|
||||
Return (One)
|
||||
Return (1)
|
||||
}
|
||||
#endif
|
||||
Return (Zero)
|
||||
@@ -285,7 +285,7 @@ Device (BAT0)
|
||||
// Method to enable full battery workaround
|
||||
Method (BFWE)
|
||||
{
|
||||
BFWK = One
|
||||
BFWK = 1
|
||||
}
|
||||
|
||||
// Method to disable full battery workaround
|
||||
@@ -375,7 +375,7 @@ Device (BAT1)
|
||||
// Method to enable full battery workaround
|
||||
Method (BFWE)
|
||||
{
|
||||
BFWK = One
|
||||
BFWK = 1
|
||||
}
|
||||
|
||||
// Method to disable full battery workaround
|
||||
|
@@ -41,7 +41,7 @@ Method (BSTR, 1, Serialized)
|
||||
W (SSEL, Arg0)
|
||||
|
||||
/* Fill buffer until NUL or max string length is read */
|
||||
Name (IBUF, Buffer (Local0 + One) {})
|
||||
Name (IBUF, Buffer (Local0 + 1) {})
|
||||
For (Local1 = Zero, Local1 < Local0, Local1++) {
|
||||
Local2 = R (BSBS)
|
||||
If (!Local2) {
|
||||
|
@@ -36,13 +36,13 @@ Device (EC0)
|
||||
W (ERDY, Arg1)
|
||||
|
||||
/* Indicate that the OS supports S0ix */
|
||||
W (CSOS, One)
|
||||
W (CSOS, 1)
|
||||
|
||||
/* Tell EC to stop emulating PS/2 mouse */
|
||||
W (PS2M, Zero)
|
||||
|
||||
/* Enable DPTF support if enabled in devicetree */
|
||||
If (\DPTE == One) {
|
||||
If (\DPTE == 1) {
|
||||
W (DWST, Arg1)
|
||||
}
|
||||
|
||||
@@ -146,7 +146,7 @@ Device (EC0)
|
||||
|
||||
If (Arg0) {
|
||||
Printf ("EC Enter S0ix")
|
||||
W (CSEX, One)
|
||||
W (CSEX, 1)
|
||||
|
||||
/*
|
||||
* Read back from EC RAM after enabling S0ix
|
||||
@@ -158,7 +158,7 @@ Device (EC0)
|
||||
W (CSEX, Zero)
|
||||
|
||||
/* If UCSI event happened during S0ix send it now. */
|
||||
If (^UCEP == One) {
|
||||
If (^UCEP == 1) {
|
||||
^_Q79 ()
|
||||
}
|
||||
}
|
||||
|
@@ -145,6 +145,6 @@ Method (_Q79, 0, Serialized)
|
||||
^UCEP = Zero
|
||||
} Else {
|
||||
Printf ("EC _Q79 UCSI Event Masked in S0ix")
|
||||
^UCEP = One
|
||||
^UCEP = 1
|
||||
}
|
||||
}
|
||||
|
@@ -13,13 +13,13 @@ Method (GPVX, 0, Serialized)
|
||||
Return (Zero)
|
||||
}
|
||||
|
||||
Return (One)
|
||||
Return (1)
|
||||
}
|
||||
|
||||
/* Enable Privacy Screen */
|
||||
Method (EPVX, 0, Serialized)
|
||||
{
|
||||
W (EPCT, One)
|
||||
W (EPCT, 1)
|
||||
}
|
||||
|
||||
/* Disable Privacy Screen */
|
||||
|
@@ -5,7 +5,7 @@ Device (UCSI)
|
||||
Name (_HID, "GOOG000E")
|
||||
Name (_CID, EisaId ("PNP0CA0"))
|
||||
Name (_DDN, "Wilco EC UCSI")
|
||||
Name (_UID, One)
|
||||
Name (_UID, 1)
|
||||
Name (_STA, 0xb)
|
||||
|
||||
/* Value written to EC control register to start UCSI command */
|
||||
@@ -69,16 +69,16 @@ Device (UCSI)
|
||||
Method (_DSM, 4, Serialized)
|
||||
{
|
||||
If (Arg0 != ToUUID ("6f8398c2-7ca4-11e4-ad36-631042b5008f")) {
|
||||
Return (Buffer (One) { Zero })
|
||||
Return (Buffer (1) { Zero })
|
||||
}
|
||||
|
||||
Switch (ToInteger (Arg2))
|
||||
{
|
||||
Case (Zero)
|
||||
{
|
||||
Return (Buffer (One) { 0x07 })
|
||||
Return (Buffer (1) { 0x07 })
|
||||
}
|
||||
Case (One)
|
||||
Case (1)
|
||||
{
|
||||
/* Write Message Out */
|
||||
W (^^UMO0, ^MGO0)
|
||||
@@ -138,6 +138,6 @@ Device (UCSI)
|
||||
^CCI3 = R (^^UCI3)
|
||||
}
|
||||
}
|
||||
Return (Buffer (One) { Zero })
|
||||
Return (Buffer (1) { Zero })
|
||||
}
|
||||
}
|
||||
|
@@ -30,7 +30,7 @@ Name (VLAP, 0xcd) /* Laptop Mode */
|
||||
Device (VBTN)
|
||||
{
|
||||
Name (_HID, "INT33D6")
|
||||
Name (_UID, One)
|
||||
Name (_UID, 1)
|
||||
Name (_DDN, "Intel Virtual Button Driver")
|
||||
|
||||
/*
|
||||
@@ -70,7 +70,7 @@ Device (VBTO)
|
||||
{
|
||||
Name (_HID, "INT33D3")
|
||||
Name (_CID, "PNP0C60")
|
||||
Name (_UID, One)
|
||||
Name (_UID, 1)
|
||||
Name (_DDN, "Laptop/tablet mode indicator driver")
|
||||
|
||||
Method (_STA, 0)
|
||||
|
@@ -69,7 +69,7 @@ Device(EC)
|
||||
if (^HKEY.INIT == 0) {
|
||||
^HKEY.WBDC = BTEB
|
||||
^HKEY.WWAN = WWEB
|
||||
^HKEY.INIT = One
|
||||
^HKEY.INIT = 1
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -318,11 +318,11 @@ Device(EC)
|
||||
Method (FANE, 1, Serialized)
|
||||
{
|
||||
If (Arg0) {
|
||||
FAND = One
|
||||
FAND = 1
|
||||
FANA = Zero
|
||||
} Else {
|
||||
FAND = Zero
|
||||
FANA = One
|
||||
FANA = 1
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -112,8 +112,8 @@ External (\PPKG, MethodObj)
|
||||
* in another ACPI scope. Call a method that does it!
|
||||
*/
|
||||
Method (_ON) {
|
||||
\_SB.PCI0.LPCB.EC.FANE(One)
|
||||
\FLVL = One
|
||||
\_SB.PCI0.LPCB.EC.FANE(1)
|
||||
\FLVL = 1
|
||||
Notify (\_TZ.THM0, NOTIFY_TZ_TRIPPTCHG)
|
||||
}
|
||||
|
||||
|
@@ -51,7 +51,7 @@ Device (HKEY)
|
||||
|
||||
/* Report event */
|
||||
Method (RHK, 1, NotSerialized) {
|
||||
Local0 = One << (Arg0 - 1)
|
||||
Local0 = 1 << (Arg0 - 1)
|
||||
If (EMSK & Local0) {
|
||||
BTN = Arg0
|
||||
Notify (HKEY, 0x80)
|
||||
@@ -60,7 +60,7 @@ Device (HKEY)
|
||||
|
||||
/* Report tablet */
|
||||
Method (RTAB, 1, NotSerialized) {
|
||||
Local0 = One << (Arg0 - 1)
|
||||
Local0 = 1 << (Arg0 - 1)
|
||||
If (ETAB & Local0) {
|
||||
BTAB = Arg0
|
||||
Notify (HKEY, 0x80)
|
||||
@@ -84,7 +84,7 @@ Device (HKEY)
|
||||
/* Enable/disable event. */
|
||||
Method (MHKM, 2, NotSerialized) {
|
||||
If (Arg0 <= 0x20) {
|
||||
Local0 = One << (Arg0 - 1)
|
||||
Local0 = 1 << (Arg0 - 1)
|
||||
If (Arg1)
|
||||
{
|
||||
DHKN |= Local0
|
||||
@@ -159,10 +159,10 @@ Device (HKEY)
|
||||
*/
|
||||
Method (GBDC, 0)
|
||||
{
|
||||
HAST = One
|
||||
HAST = 1
|
||||
|
||||
If (HBDC) {
|
||||
Local0 = One
|
||||
Local0 = 1
|
||||
If(\_SB.PCI0.LPCB.EC.BTEB)
|
||||
{
|
||||
Local0 |= 2
|
||||
@@ -181,7 +181,7 @@ Device (HKEY)
|
||||
*/
|
||||
Method (SBDC, 1)
|
||||
{
|
||||
HAST = One
|
||||
HAST = 1
|
||||
|
||||
If (HBDC) {
|
||||
Local0 = (Arg0 & 2) >> 1
|
||||
@@ -201,10 +201,10 @@ Device (HKEY)
|
||||
*/
|
||||
Method (GWAN, 0)
|
||||
{
|
||||
HAST = One
|
||||
HAST = 1
|
||||
|
||||
If (HWAN) {
|
||||
Local0 = One
|
||||
Local0 = 1
|
||||
If(\_SB.PCI0.LPCB.EC.WWEB)
|
||||
{
|
||||
Local0 |= 2
|
||||
@@ -223,7 +223,7 @@ Device (HKEY)
|
||||
*/
|
||||
Method (SWAN, 1)
|
||||
{
|
||||
HAST = One
|
||||
HAST = 1
|
||||
|
||||
If (HWAN) {
|
||||
Local0 = (Arg0 & 2) >> 1
|
||||
@@ -270,7 +270,7 @@ Device (HKEY)
|
||||
Method (GUWB, 0)
|
||||
{
|
||||
If (HUWB) {
|
||||
Local0 = One
|
||||
Local0 = 1
|
||||
If(\_SB.PCI0.LPCB.EC.UWBE)
|
||||
{
|
||||
Local0 |= 2
|
||||
|
@@ -8,7 +8,7 @@ Device (AC)
|
||||
_SB
|
||||
})
|
||||
|
||||
Name (ACFG, One)
|
||||
Name (ACFG, 1)
|
||||
|
||||
Method (_PSR, 0, NotSerialized) // _PSR: Power Source
|
||||
{
|
||||
|
@@ -32,10 +32,10 @@ Device (BAT0)
|
||||
|
||||
Name (PBIF, Package (0x0D)
|
||||
{
|
||||
One, // 0 - Power Unit
|
||||
1, // 0 - Power Unit
|
||||
0xFFFFFFFF, // 1 - Design Capacity
|
||||
0xFFFFFFFF, // 2 - Last Full Charge Capacity
|
||||
One, // 3 - Battery Technology
|
||||
1, // 3 - Battery Technology
|
||||
BATTERY_DESIGN_VOLTAGE_MV, // 4 - Design Voltage
|
||||
Zero, // 5 - Design Capacity of Warning
|
||||
Zero, // 6 - Design Capacity of Low
|
||||
@@ -129,7 +129,7 @@ Device (BAT0)
|
||||
}
|
||||
Else
|
||||
{
|
||||
Local0 |= One
|
||||
Local0 |= 1
|
||||
Local1 = (^^PCI0.LPCB.EC0.BPR0 & 0xFFFF)
|
||||
}
|
||||
|
||||
|
@@ -35,7 +35,7 @@ Device (\_SB.PCI0.LPCB.EC0)
|
||||
Method (_REG, 2, Serialized) // _REG: Region Availability
|
||||
{
|
||||
Printf ("EC: _REG %o %o", ToHexString(Arg0), ToHexString(Arg1))
|
||||
If ((Arg0 == 0x03) && (Arg1 == One)) {
|
||||
If ((Arg0 == 0x03) && (Arg1 == 1)) {
|
||||
// Enable hardware touchpad lock, airplane mode, and keyboard backlight keys
|
||||
ECOS = 1
|
||||
|
||||
|
@@ -25,7 +25,7 @@ Device (HIDD)
|
||||
|
||||
Method (HPEM, 1, Serialized)
|
||||
{
|
||||
HBSY = One
|
||||
HBSY = 1
|
||||
HIDX = Arg0
|
||||
|
||||
Notify (HIDD, 0xC0)
|
||||
@@ -36,11 +36,11 @@ Device (HIDD)
|
||||
Local0++
|
||||
}
|
||||
|
||||
If (HBSY == One)
|
||||
If (HBSY == 1)
|
||||
{
|
||||
HBSY = Zero
|
||||
HIDX = Zero
|
||||
Return (One)
|
||||
Return (1)
|
||||
}
|
||||
Else
|
||||
{
|
||||
|
@@ -110,7 +110,7 @@ Device (LIEC) {
|
||||
Method (GKBL, 0, Serialized) {
|
||||
Local0 = 0
|
||||
If (^^PCI0.LPCB.EC0.ECOK) {
|
||||
^^PCI0.LPCB.EC0.FDAT = One
|
||||
^^PCI0.LPCB.EC0.FDAT = 1
|
||||
^^PCI0.LPCB.EC0.FCMD = 0xCA
|
||||
Local0 = ^^PCI0.LPCB.EC0.FBUF
|
||||
^^PCI0.LPCB.EC0.FCMD = Zero
|
||||
|
@@ -10,7 +10,7 @@ Device (LID0)
|
||||
If (^^PCI0.LPCB.EC0.ECOK) {
|
||||
Return (^^PCI0.LPCB.EC0.LSTE)
|
||||
} Else {
|
||||
Return (One)
|
||||
Return (1)
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -60,7 +60,7 @@ Device (BAT)
|
||||
Name (DLOW, 10)
|
||||
|
||||
/* Workaround for full battery status, enabled by default */
|
||||
Name (BFWK, One)
|
||||
Name (BFWK, 1)
|
||||
|
||||
/* Method to enable full battery workaround */
|
||||
Method (BFWE)
|
||||
|
@@ -205,7 +205,7 @@ Device (EC0)
|
||||
Method (_Q10, 0, NotSerialized)
|
||||
{
|
||||
Printf ("AC Insertion Event 0x10")
|
||||
\PWRS = One
|
||||
\PWRS = 1
|
||||
Notify (AC, 0x80)
|
||||
Notify (BATX, 0x80)
|
||||
\PNOT ()
|
||||
|
@@ -44,12 +44,12 @@ Device (BATX)
|
||||
})
|
||||
|
||||
// Workaround for full battery status, enabled by default
|
||||
Name (BFWK, One)
|
||||
Name (BFWK, 1)
|
||||
|
||||
// Method to enable full battery workaround
|
||||
Method (BFWE)
|
||||
{
|
||||
BFWK = One
|
||||
BFWK = 1
|
||||
}
|
||||
|
||||
// Method to disable full battery workaround
|
||||
@@ -97,7 +97,7 @@ Device (BATX)
|
||||
//
|
||||
// Information ID 1 -
|
||||
//
|
||||
HIID = One
|
||||
HIID = 1
|
||||
WAEC ()
|
||||
|
||||
//
|
||||
@@ -106,7 +106,7 @@ Device (BATX)
|
||||
// ACPI spec : 0 - mWh : 1 - mAh
|
||||
//
|
||||
Local7 = SBCM
|
||||
PBIF[0] = Local7 ^ One
|
||||
PBIF[0] = Local7 ^ 1
|
||||
|
||||
//
|
||||
// Information ID 0 -
|
||||
@@ -224,7 +224,7 @@ Device (BATX)
|
||||
{
|
||||
if (HB0S & 0x40)
|
||||
{
|
||||
Local0 = One
|
||||
Local0 = 1
|
||||
}
|
||||
Else
|
||||
{
|
||||
@@ -249,7 +249,7 @@ Device (BATX)
|
||||
Else
|
||||
{
|
||||
// Always discharging when on battery power
|
||||
Local1 = One
|
||||
Local1 = 1
|
||||
}
|
||||
|
||||
// Flag if the battery level is critical
|
||||
@@ -282,7 +282,7 @@ Device (BATX)
|
||||
}
|
||||
}
|
||||
|
||||
Local6 = DerefOf (PBIF[0]) ^ One
|
||||
Local6 = DerefOf (PBIF[0]) ^ 1
|
||||
|
||||
If (Local6)
|
||||
{
|
||||
|
@@ -550,7 +550,7 @@ Device (EC0)
|
||||
\LIDS = ~HPLD
|
||||
|
||||
// Enable OS control of fan speed
|
||||
// TODO FCOS = One
|
||||
// TODO FCOS = 1
|
||||
|
||||
// Force a read of CPU temperature
|
||||
// TODO Which temperature corresponds to the CPU?
|
||||
@@ -593,7 +593,7 @@ Device (EC0)
|
||||
// AC Power Connected
|
||||
Method (_Q26, 0, NotSerialized)
|
||||
{
|
||||
\PWRS = One
|
||||
\PWRS = 1
|
||||
Notify (AC, 0x80)
|
||||
Notify (BATX, 0x80)
|
||||
\PNOT ()
|
||||
@@ -610,7 +610,7 @@ Device (EC0)
|
||||
// LID Open
|
||||
Method (_Q2A)
|
||||
{
|
||||
\LIDS = One
|
||||
\LIDS = 1
|
||||
Notify (\_SB.LID0, 0x80)
|
||||
}
|
||||
|
||||
|
@@ -42,12 +42,12 @@ Device (BAT0)
|
||||
Name (BSTP, Zero)
|
||||
|
||||
// Workaround for full battery status, enabled by default
|
||||
Name (BFWK, One)
|
||||
Name (BFWK, 1)
|
||||
|
||||
// Method to enable full battery workaround
|
||||
Method (BFWE)
|
||||
{
|
||||
BFWK = One
|
||||
BFWK = 1
|
||||
}
|
||||
|
||||
// Method to disable full battery workaround
|
||||
|
@@ -64,7 +64,7 @@ Device (EC0)
|
||||
\LIDS = LIDS
|
||||
|
||||
// Enable OS control of fan speed
|
||||
FCOS = One
|
||||
FCOS = 1
|
||||
|
||||
// Force a read of CPU temperature
|
||||
Local0 = CPUT
|
||||
@@ -76,14 +76,14 @@ Device (EC0)
|
||||
{
|
||||
Method (_STA) {
|
||||
If (\FLVL <= 0) {
|
||||
Return (One)
|
||||
Return (1)
|
||||
} Else {
|
||||
Return (Zero)
|
||||
}
|
||||
}
|
||||
Method (_ON) {
|
||||
If (FCOS) {
|
||||
FSL0 = One
|
||||
FSL0 = 1
|
||||
\FLVL = 0
|
||||
Notify (\_TZ.THRM, 0x81)
|
||||
}
|
||||
@@ -101,14 +101,14 @@ Device (EC0)
|
||||
{
|
||||
Method (_STA) {
|
||||
If (\FLVL <= 1) {
|
||||
Return (One)
|
||||
Return (1)
|
||||
} Else {
|
||||
Return (Zero)
|
||||
}
|
||||
}
|
||||
Method (_ON) {
|
||||
If (FCOS) {
|
||||
FSL1 = One
|
||||
FSL1 = 1
|
||||
\FLVL = 1
|
||||
Notify (\_TZ.THRM, 0x81)
|
||||
}
|
||||
@@ -126,14 +126,14 @@ Device (EC0)
|
||||
{
|
||||
Method (_STA) {
|
||||
If (\FLVL <= 2) {
|
||||
Return (One)
|
||||
Return (1)
|
||||
} Else {
|
||||
Return (Zero)
|
||||
}
|
||||
}
|
||||
Method (_ON) {
|
||||
If (FCOS) {
|
||||
FSL2 = One
|
||||
FSL2 = 1
|
||||
\FLVL = 2
|
||||
Notify (\_TZ.THRM, 0x81)
|
||||
}
|
||||
@@ -151,14 +151,14 @@ Device (EC0)
|
||||
{
|
||||
Method (_STA) {
|
||||
If (\FLVL <= 3) {
|
||||
Return (One)
|
||||
Return (1)
|
||||
} Else {
|
||||
Return (Zero)
|
||||
}
|
||||
}
|
||||
Method (_ON) {
|
||||
If (FCOS) {
|
||||
FSL3 = One
|
||||
FSL3 = 1
|
||||
\FLVL = 3
|
||||
Notify (\_TZ.THRM, 0x81)
|
||||
}
|
||||
@@ -176,14 +176,14 @@ Device (EC0)
|
||||
{
|
||||
Method (_STA) {
|
||||
If (\FLVL <= 4) {
|
||||
Return (One)
|
||||
Return (1)
|
||||
} Else {
|
||||
Return (Zero)
|
||||
}
|
||||
}
|
||||
Method (_ON) {
|
||||
If (FCOS) {
|
||||
FSL4 = One
|
||||
FSL4 = 1
|
||||
\FLVL = 4
|
||||
Notify (\_TZ.THRM, 0x81)
|
||||
}
|
||||
@@ -235,7 +235,7 @@ Device (EC0)
|
||||
// AC Power Connected
|
||||
Method (_Q51, 0, NotSerialized)
|
||||
{
|
||||
\PWRS = One
|
||||
\PWRS = 1
|
||||
Notify (AC, 0x80)
|
||||
\PNOT ()
|
||||
}
|
||||
|
@@ -76,7 +76,7 @@ Scope (\_SB.PCI0.LPCB)
|
||||
Method (ECRD, 1, Serialized, 0, IntObj, FieldUnitObj)
|
||||
{
|
||||
//
|
||||
// Check for ECDT support, set ECAV to One if ECDT is supported by OS
|
||||
// Check for ECDT support, set ECAV to 1 if ECDT is supported by OS
|
||||
// Only check once at beginning since ECAV might be clear later in certain conditions
|
||||
//
|
||||
If (ECTK) {
|
||||
|
@@ -8,7 +8,7 @@ Device (AC)
|
||||
_SB
|
||||
})
|
||||
|
||||
Name (ACFG, One)
|
||||
Name (ACFG, 1)
|
||||
|
||||
Method (_PSR, 0, NotSerialized) // _PSR: Power Source
|
||||
{
|
||||
|
@@ -30,10 +30,10 @@ Device (BAT0)
|
||||
|
||||
Name (PBIF, Package (0x0D)
|
||||
{
|
||||
One, // 0 - Power Unit
|
||||
1, // 0 - Power Unit
|
||||
0xFFFFFFFF, // 1 - Design Capacity
|
||||
0xFFFFFFFF, // 2 - Last Full Charge Capacity
|
||||
One, // 3 - Battery Technology
|
||||
1, // 3 - Battery Technology
|
||||
0xFFFFFFFF, // 4 - Design Voltage
|
||||
Zero, // 5 - Design Capacity of Warning
|
||||
Zero, // 6 - Design Capacity of Low
|
||||
@@ -205,7 +205,7 @@ Device (BAT0)
|
||||
}
|
||||
Else
|
||||
{
|
||||
Local0 |= One
|
||||
Local0 |= 1
|
||||
Local1 = (^^PCI0.LPCB.EC0.BPR0 & 0xFFFF)
|
||||
}
|
||||
|
||||
|
@@ -35,7 +35,7 @@ Device (\_SB.PCI0.LPCB.EC0)
|
||||
Method (_REG, 2, Serialized) // _REG: Region Availability
|
||||
{
|
||||
Debug = Concatenate("EC: _REG", Concatenate(ToHexString(Arg0), Concatenate(" ", ToHexString(Arg1))))
|
||||
If ((Arg0 == 0x03) && (Arg1 == One)) {
|
||||
If ((Arg0 == 0x03) && (Arg1 == 1)) {
|
||||
// Enable hardware touchpad lock, airplane mode, and keyboard backlight keys
|
||||
ECOS = 1
|
||||
|
||||
|
@@ -25,7 +25,7 @@ Device (HIDD)
|
||||
|
||||
Method (HPEM, 1, Serialized)
|
||||
{
|
||||
HBSY = One
|
||||
HBSY = 1
|
||||
HIDX = Arg0
|
||||
|
||||
Notify (HIDD, 0xC0)
|
||||
@@ -36,11 +36,11 @@ Device (HIDD)
|
||||
Local0++
|
||||
}
|
||||
|
||||
If (HBSY == One)
|
||||
If (HBSY == 1)
|
||||
{
|
||||
HBSY = Zero
|
||||
HIDX = Zero
|
||||
Return (One)
|
||||
Return (1)
|
||||
}
|
||||
Else
|
||||
{
|
||||
|
@@ -10,7 +10,7 @@ Device (LID0)
|
||||
If (^^PCI0.LPCB.EC0.ECOK) {
|
||||
Return (^^PCI0.LPCB.EC0.LSTE)
|
||||
} Else {
|
||||
Return (One)
|
||||
Return (1)
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -97,7 +97,7 @@ Device (S76D) {
|
||||
Method (GKBL, 0, Serialized) {
|
||||
Local0 = 0
|
||||
If (^^PCI0.LPCB.EC0.ECOK) {
|
||||
^^PCI0.LPCB.EC0.FDAT = One
|
||||
^^PCI0.LPCB.EC0.FDAT = 1
|
||||
^^PCI0.LPCB.EC0.FCMD = 0xCA
|
||||
Local0 = ^^PCI0.LPCB.EC0.FBUF
|
||||
^^PCI0.LPCB.EC0.FCMD = Zero
|
||||
|
Reference in New Issue
Block a user