nyan: change the PMIC_WARM_RESET_L pin to open-drain

So that Tegra wants to drive the PMIC_WARM_RESET_L low it will not be
fighting the EC.

BUG=None
BRANCH=None
TEST=Verified on the board rev 3.12

Change-Id: I5980a3ba096c152a4ccc28ad64e675c53b7cb337
Signed-off-by: Louis Yung-Chieh Lo <yjlou@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/180520
Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
Louis Yung-Chieh Lo
2013-12-17 14:17:37 -08:00
committed by chrome-internal-fetch
parent 6ab8e91658
commit df6a65ef07

View File

@@ -85,7 +85,7 @@ const struct gpio_info gpio_list[] = {
{"CHARGING", GPIO_A, (1<<11), GPIO_OUT_LOW, NULL},
{"EC_BL_OVERRIDE", GPIO_H, (1<<1), GPIO_ODR_HIGH, NULL},
{"PMIC_THERM_L", GPIO_A, (1<<1), GPIO_ODR_HIGH, NULL},
{"PMIC_WARM_RESET_L", GPIO_C, (1<<3), GPIO_OUT_HIGH, NULL},
{"PMIC_WARM_RESET_L", GPIO_C, (1<<3), GPIO_ODR_HIGH, NULL},
};
BUILD_ASSERT(ARRAY_SIZE(gpio_list) == GPIO_COUNT);