diff options
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/geralt/regulator.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/google/geralt/regulator.c b/src/mainboard/google/geralt/regulator.c index 6089af90d6..f3b440751f 100644 --- a/src/mainboard/google/geralt/regulator.c +++ b/src/mainboard/google/geralt/regulator.c @@ -19,6 +19,8 @@ static int get_mt6359p_regulator_id(enum mtk_regulator regulator) return MT6359P_PA; case MTK_REGULATOR_VMC: return MT6359P_SIM1; + case MTK_REGULATOR_VDD18: + return MT6359P_VM18; default: return MTK_REGULATOR_INVALID; } @@ -70,6 +72,8 @@ int mainboard_enable_regulator(enum mtk_regulator regulator, bool enable) mt6359p_enable_vsim1(enable); else if (id == MT6359P_PA) mt6359p_enable_vpa(enable); + else if (id == MT6359P_VM18) + mt6359p_enable_vm18(enable); else printk(BIOS_INFO, "No need to enable regulator ID: %d\n", regulator); |