diff options
author | Rizwan Qureshi <rizwan.qureshi@intel.com> | 2019-02-21 14:52:39 +0530 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-26 11:15:05 +0000 |
commit | 747154074c31c88842dd8f754a5a57b9a316d943 (patch) | |
tree | 5cd3028b592444ed40a030fcb6e8f240914a5624 /src/soc/intel/cannonlake/acpi | |
parent | db561e6e3910b25d9314ba8b343c4387396c2f3f (diff) |
soc/intel/cannonlake: Update GPIO definitions for Virtual GPIO
Denote appropriate reserved groups as virtual GPIOs in Cannonlake LP/H SoC.
Change-Id: I4da161b91f83749b0ae29b387b5c99c1c3f706d8
Signed-off-by: Rizwan Qureshi <rizwan.qureshi@intel.com>
Reviewed-on: https://review.coreboot.org/c/31552
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lijian Zhao <lijian.zhao@intel.com>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/intel/cannonlake/acpi')
-rw-r--r-- | src/soc/intel/cannonlake/acpi/gpio.asl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/intel/cannonlake/acpi/gpio.asl b/src/soc/intel/cannonlake/acpi/gpio.asl index 1fa144f580..9df1cf7d42 100644 --- a/src/soc/intel/cannonlake/acpi/gpio.asl +++ b/src/soc/intel/cannonlake/acpi/gpio.asl @@ -80,7 +80,7 @@ Method (GADD, 1, NotSerialized) Subtract (Arg0, GPP_A0, Local1) } /* GPIO Community 1 */ - If (LAnd (LGreaterEqual (Arg0, GPP_D0), LLessEqual (Arg0, GPIO_RSVD_52))) + If (LAnd (LGreaterEqual (Arg0, GPP_D0), LLessEqual (Arg0, vSD3_CD_B))) { Store (PID_GPIOCOM1, Local0) Subtract (Arg0, GPP_D0, Local1) @@ -92,13 +92,13 @@ Method (GADD, 1, NotSerialized) Subtract (Arg0, GPD0, Local1) } /* GPIO Community 3 */ - If (LAnd (LGreaterEqual (Arg0, HDA_BCLK), LLessEqual (Arg0, GPIO_RSVD_78))) + If (LAnd (LGreaterEqual (Arg0, HDA_BCLK), LLessEqual (Arg0, GPIO_RSVD_38))) { Store (PID_GPIOCOM1, Local0) Subtract (Arg0, HDA_BCLK, Local1) } /* GPIO Community 04*/ - If (LAnd (LGreaterEqual (Arg0, GPP_C0), LLessEqual (Arg0, GPIO_RSVD_67))) + If (LAnd (LGreaterEqual (Arg0, GPP_C0), LLessEqual (Arg0, GPIO_RSVD_27))) { Store (PID_GPIOCOM4, Local0) Subtract (Arg0, GPP_C0, Local1) |