summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYu-An Chen <yu-an.chen@quanta.corp-partner.google.com>2022-06-15 14:08:26 +0800
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-06-16 11:18:18 +0000
commitc85ceb0c23a666674a9628d945278fcaa3fbad63 (patch)
tree788e91e0cf4ded3c44a62a12357613af074879c6
parentf2dcbad5a8d52d663eb900002f99b1a97abde32d (diff)
downloadchrome-ec-stabilize-14918.B-main.tar.gz
osiris: Update gpio output typestabilize-14918.B-main
Set AMP_PWR_EN(GPIO57) to GPIO_OUT_LOW from GPIO_ODR_LOW. Set RGB_KB_INT(GPIO56) to GPIO_INPUT BUG=b:224423318 b:235020065 BRANCH=none TEST=HW team confirmed IO voltage as expected Signed-off-by: Yu-An Chen <yu-an.chen@quanta.corp-partner.google.com> Change-Id: I8550703b84249f339663861964b5d65c2eb17e0e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3706482 Reviewed-by: caveh jalali <caveh@chromium.org> Commit-Queue: caveh jalali <caveh@chromium.org>
-rw-r--r--board/osiris/gpio.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/osiris/gpio.inc b/board/osiris/gpio.inc
index f4e96f9a61..ca22ddba08 100644
--- a/board/osiris/gpio.inc
+++ b/board/osiris/gpio.inc
@@ -73,8 +73,9 @@ GPIO(VCCST_PWRGD_OD, PIN(A, 4), GPIO_ODR_LOW)
GPIO(LED_1_L, PIN(C, 4), GPIO_OUT_HIGH)
GPIO(LED_2_L, PIN(C, 3), GPIO_OUT_HIGH)
GPIO(KYBL_EN, PIN(A, 7), GPIO_OUT_LOW)
-GPIO(AMP_PWR_EN, PIN(5, 7), GPIO_ODR_LOW)
+GPIO(AMP_PWR_EN, PIN(5, 7), GPIO_OUT_LOW)
GPIO(EC_FAN_TACH_2, PIN(7, 3), GPIO_INPUT)
+GPIO(RGB_KB_INT, PIN(5, 6), GPIO_INPUT)
/* UART alternate functions */
ALTERNATE(PIN_MASK(6, 0x30), 0, MODULE_UART, 0) /* GPIO64/CR_SIN1, GPO65/CR_SOUT1/FLPRG1_L */
@@ -120,7 +121,6 @@ UNUSED(PIN(6, 6)) /* GPIO66 */
UNUSED(PIN(8, 3)) /* GPIO83 */
UNUSED(PIN(7, 0)) /* GPIO70 */
UNUSED(PIN(8, 1)) /* GPIO81 */
-UNUSED(PIN(5, 6)) /* GPIO56 */
UNUSED(PIN(9, 3)) /* GPIO93 */
UNUSED(PIN(9, 7)) /* GPIO97 */
UNUSED(PIN(D, 0)) /* GPIOD0/I2C3_SDA0 */