soc/intel/cannonlake: fix GPIO community numbering in ACPI
This corrects the GPIO community numbers in CNL-LP ACPI code. Change-Id: I9f13a28d3e8f427859570a4d209304ae8444efd9 Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45209 Reviewed-by: Subrata Banik <subrata.banik@intel.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
7938ebc7d7
commit
60795784b7
|
@ -75,13 +75,13 @@ Method (GADD, 1, NotSerialized)
|
||||||
/* GPIO Community 2 */
|
/* GPIO Community 2 */
|
||||||
If (LAnd (LGreaterEqual (Arg0, GPD0), LLessEqual (Arg0, GPD11)))
|
If (LAnd (LGreaterEqual (Arg0, GPD0), LLessEqual (Arg0, GPD11)))
|
||||||
{
|
{
|
||||||
Store (PID_GPIOCOM1, Local0)
|
Store (PID_GPIOCOM2, Local0)
|
||||||
Subtract (Arg0, GPD0, Local1)
|
Subtract (Arg0, GPD0, Local1)
|
||||||
}
|
}
|
||||||
/* GPIO Community 3 */
|
/* GPIO Community 3 */
|
||||||
If (LAnd (LGreaterEqual (Arg0, HDA_BCLK), LLessEqual (Arg0, GPIO_RSVD_38)))
|
If (LAnd (LGreaterEqual (Arg0, HDA_BCLK), LLessEqual (Arg0, GPIO_RSVD_38)))
|
||||||
{
|
{
|
||||||
Store (PID_GPIOCOM1, Local0)
|
Store (PID_GPIOCOM3, Local0)
|
||||||
Subtract (Arg0, HDA_BCLK, Local1)
|
Subtract (Arg0, HDA_BCLK, Local1)
|
||||||
}
|
}
|
||||||
/* GPIO Community 04*/
|
/* GPIO Community 04*/
|
||||||
|
|
Loading…
Reference in New Issue