summaryrefslogtreecommitdiffstats
path: root/src/mainboard/google/cherry
diff options
context:
space:
mode:
authorRex-BC Chen <rex-bc.chen@mediatek.com>2021-07-13 18:55:19 +0800
committerFelix Held <felix-coreboot@felixheld.de>2021-07-21 15:47:29 +0000
commit5055d88f4054888c50695fc54f8fee4b92dfb726 (patch)
tree52ee47d13485f9c9061e77ff36b5b06c628a3955 /src/mainboard/google/cherry
parent86c50e11ced7d7e3ae62b90a4a0dcdae8d740247 (diff)
downloadcoreboot-5055d88f4054888c50695fc54f8fee4b92dfb726.tar.gz
coreboot-5055d88f4054888c50695fc54f8fee4b92dfb726.tar.bz2
coreboot-5055d88f4054888c50695fc54f8fee4b92dfb726.zip
mb/google/cherry: add mt6360 ids for regulator.c
Add MTK_REGULATOR_VCC and MTK_REGULATOR_VCCQ for regulator.c. Signed-off-by: Rex-BC Chen <rex-bc.chen@mediatek.com> Change-Id: Iedb1036da3c87106157c51cc46b52545faba102c Reviewed-on: https://review.coreboot.org/c/coreboot/+/56436 Reviewed-by: Yu-Ping Wu <yupingso@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/cherry')
-rw-r--r--src/mainboard/google/cherry/regulator.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/google/cherry/regulator.c b/src/mainboard/google/cherry/regulator.c
index 0c1f7feb05ed..abda0d768273 100644
--- a/src/mainboard/google/cherry/regulator.c
+++ b/src/mainboard/google/cherry/regulator.c
@@ -16,6 +16,10 @@ static int get_mt6360_regulator_id(enum mtk_regulator regulator)
return MT6360_BUCK1;
case MTK_REGULATOR_VDDQ:
return MT6360_BUCK2;
+ case MTK_REGULATOR_VCC:
+ return MT6360_LDO5;
+ case MTK_REGULATOR_VCCQ:
+ return MT6360_LDO3;
default:
break;
}