From 0ef45f70cea94d7a10291298381127bc623101ee Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 26 Jun 2013 17:28:52 -0700 Subject: [PATCH] PIT: add panel to the list of things to be powered up by the PMIC This appears to be needed, though we have no way to test yet. BUG=None TEST=it builds BRANCH=None Change-Id: I1fe20b35b0fc73ecfd7207c368a9ead89a097e70 Signed-off-by: Ronald G. Minnich Reviewed-on: https://gerrit.chromium.org/gerrit/60159 Reviewed-by: Gabe Black Commit-Queue: Ronald G. Minnich Tested-by: Ronald G. Minnich --- src/mainboard/google/pit/romstage.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mainboard/google/pit/romstage.c b/src/mainboard/google/pit/romstage.c index 30c8aeb8f2..f123253456 100644 --- a/src/mainboard/google/pit/romstage.c +++ b/src/mainboard/google/pit/romstage.c @@ -71,7 +71,8 @@ struct pmic_write pmic_writes[] = MAX77802_BUCK_TYPE2_IGNORE_PWRREQ }, { 0, MAX77802_REG_PMIC_BUCK6DVS1, MAX77802_BUCK6DVS1_1V }, { 1, MAX77802_REG_PMIC_BUCK6CTRL, MAX77802_BUCK_TYPE1_ON | - MAX77802_BUCK_TYPE1_IGNORE_PWRREQ } + MAX77802_BUCK_TYPE1_IGNORE_PWRREQ }, + { 1, MAX77802_REG_PMIC_LDO35CTRL1, MAX77802_LDO35CTRL1_1_2V }, }; static void setup_power(int is_resume)