w83627hf: correct typo in ASL include, correct indexed registers and remove unneccesary _PR0 defs
Correct a typo in devtree.asl which causes AML processors to fail executing the DSDT with AE_NO_MEMORY or (in case of acpiexec) Divide By Zero. Also removes an superfluous item in the register IndexField and removes unneccessary _PR0 definitions which could confuse AML processors. Change-Id: I02cb9ce4e8f2101cfff8cec4abba7e070fd66364 Signed-off-by: Christoph Grenz <christophg+cb@grenz-bonn.de> Reviewed-on: http://review.coreboot.org/296 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
d0ea6789e6
commit
d17f3d7019
|
@ -74,7 +74,7 @@ Scope (\_SB)
|
||||||
ADDR, 8,
|
ADDR, 8,
|
||||||
DATA, 8
|
DATA, 8
|
||||||
}
|
}
|
||||||
IndexField (CREG, DATA, ByteAcc, NoLock, Preserve)
|
IndexField (ADDR, DATA, ByteAcc, NoLock, Preserve)
|
||||||
{
|
{
|
||||||
Offset (0x02),
|
Offset (0x02),
|
||||||
RST, 1, /* Soft reset */
|
RST, 1, /* Soft reset */
|
||||||
|
@ -84,7 +84,6 @@ Scope (\_SB)
|
||||||
Offset (0x20),
|
Offset (0x20),
|
||||||
DID, 8, /* Device ID */
|
DID, 8, /* Device ID */
|
||||||
DREV, 8, /* Device Revision */
|
DREV, 8, /* Device Revision */
|
||||||
POWC, 8,
|
|
||||||
FDPW, 1, /* FDC Power Down */
|
FDPW, 1, /* FDC Power Down */
|
||||||
, 2,
|
, 2,
|
||||||
PRPW, 1, /* PRT Power Down */
|
PRPW, 1, /* PRT Power Down */
|
||||||
|
@ -258,7 +257,6 @@ Scope (\_SB)
|
||||||
Store (One, FDPW)
|
Store (One, FDPW)
|
||||||
EXCM ()
|
EXCM ()
|
||||||
}
|
}
|
||||||
Name (_PR0, Package () { ^^ })
|
|
||||||
|
|
||||||
Method (_DIS)
|
Method (_DIS)
|
||||||
{
|
{
|
||||||
|
@ -470,7 +468,6 @@ Scope (\_SB)
|
||||||
Store (One, PRPW)
|
Store (One, PRPW)
|
||||||
EXCM ()
|
EXCM ()
|
||||||
}
|
}
|
||||||
Name (_PR0, Package () { ^^ })
|
|
||||||
|
|
||||||
Method (_DIS) {
|
Method (_DIS) {
|
||||||
ENCM ()
|
ENCM ()
|
||||||
|
@ -650,7 +647,6 @@ Scope (\_SB)
|
||||||
Store (One, UAPW)
|
Store (One, UAPW)
|
||||||
EXCM ()
|
EXCM ()
|
||||||
}
|
}
|
||||||
Name (_PR0, Package () { ^^ })
|
|
||||||
|
|
||||||
Method (_DIS)
|
Method (_DIS)
|
||||||
{
|
{
|
||||||
|
@ -783,7 +779,6 @@ Scope (\_SB)
|
||||||
Store (One, UBPW)
|
Store (One, UBPW)
|
||||||
EXCM ()
|
EXCM ()
|
||||||
}
|
}
|
||||||
Name (_PR0, Package () { ^^ })
|
|
||||||
|
|
||||||
Method (_DIS)
|
Method (_DIS)
|
||||||
{
|
{
|
||||||
|
@ -916,7 +911,6 @@ Scope (\_SB)
|
||||||
Store (One, UBPW)
|
Store (One, UBPW)
|
||||||
EXCM ()
|
EXCM ()
|
||||||
}
|
}
|
||||||
Name (_PR0, Package () { ^^ })
|
|
||||||
|
|
||||||
Method (_DIS)
|
Method (_DIS)
|
||||||
{
|
{
|
||||||
|
@ -1479,7 +1473,6 @@ Scope (\_SB)
|
||||||
Store (One, HWPW)
|
Store (One, HWPW)
|
||||||
EXCM ()
|
EXCM ()
|
||||||
}
|
}
|
||||||
Name (_PR0, Package () { ^^ })
|
|
||||||
|
|
||||||
Method (_CRS)
|
Method (_CRS)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue