summaryrefslogtreecommitdiff
path: root/power/icelake.c
diff options
context:
space:
mode:
authorKeith Short <keithshort@chromium.org>2019-10-08 13:41:29 -0600
committerCommit Bot <commit-bot@chromium.org>2019-10-15 20:35:42 +0000
commit7cdce86b60b97e0916819c90ada0a3667f40c3d8 (patch)
tree35fef41d2b6064cea53a627e1a80760e9fdbca0f /power/icelake.c
parentc6448a1a81aa86ef6d77a2667886a746d396d1b9 (diff)
downloadchrome-ec-7cdce86b60b97e0916819c90ada0a3667f40c3d8.tar.gz
icelake: Cleanup GPIO_PCH_DSW_PWROK
Change GPIO_EC_PCH_DSW_PWROK to GPIO_PCH_DSW_PWROK to match convention for EC to PCH signals used by other Intel processors (specifically cannonlake already used GPIO_PCH_DSW_PWROK). BUG=none BRANCH=none TEST=buildall -j Change-Id: I59fb8d3ee3867c70dde74c186ba3974490c3cd27 Signed-off-by: Keith Short <keithshort@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1848252 Reviewed-by: Vijay P Hiremath <vijay.p.hiremath@intel.com> Reviewed-by: Denis Brockus <dbrockus@chromium.org> Reviewed-by: Edward Hill <ecgh@chromium.org> Commit-Queue: Denis Brockus <dbrockus@chromium.org>
Diffstat (limited to 'power/icelake.c')
-rw-r--r--power/icelake.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/power/icelake.c b/power/icelake.c
index 9480c54387..175a4269b3 100644
--- a/power/icelake.c
+++ b/power/icelake.c
@@ -68,7 +68,7 @@ void chipset_force_shutdown(enum chipset_shutdown_reason reason)
gpio_set_level(GPIO_PCH_RSMRST_L, 0);
/* Turn off DSW_PWROK to meet tPCH14 */
- gpio_set_level(GPIO_EC_PCH_DSW_PWROK, 0);
+ gpio_set_level(GPIO_PCH_DSW_PWROK, 0);
/* Turn off DSW load switch. */
gpio_set_level(GPIO_EN_PP3300_A, 0);
@@ -130,7 +130,7 @@ enum power_state power_handle_state(enum power_state state)
* stable and the DSW_PWROK signal being passed to the PCH.
*/
msleep(10);
- gpio_set_level(GPIO_EC_PCH_DSW_PWROK, dswpwrok_in);
+ gpio_set_level(GPIO_PCH_DSW_PWROK, dswpwrok_in);
dswpwrok_out = dswpwrok_in;
}
@@ -164,7 +164,7 @@ enum power_state power_handle_state(enum power_state state)
* stable and the DSW_PWROK signal being passed to the PCH.
*/
msleep(10);
- gpio_set_level(GPIO_EC_PCH_DSW_PWROK, dswpwrok_in);
+ gpio_set_level(GPIO_PCH_DSW_PWROK, dswpwrok_in);
CPRINTS("Pass thru GPIO_DSW_PWROK: %d", dswpwrok_in);
dswpwrok_out = dswpwrok_in;