aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/google/corsola/regulator.c2
-rw-r--r--src/soc/mediatek/common/include/soc/regulator.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/google/corsola/regulator.c b/src/mainboard/google/corsola/regulator.c
index b1310af7bd..1dd26d3434 100644
--- a/src/mainboard/google/corsola/regulator.c
+++ b/src/mainboard/google/corsola/regulator.c
@@ -18,6 +18,8 @@ static const int regulator_id[] = {
[MTK_REGULATOR_VDRAM1] = MT6366_VDRAM1,
[MTK_REGULATOR_VMCH] = MT6366_VMCH,
[MTK_REGULATOR_VMC] = MT6366_VMC,
+ [MTK_REGULATOR_VPROC12] = MT6366_VPROC12,
+ [MTK_REGULATOR_VSRAM_PROC12] = MT6366_VSRAM_PROC12,
};
_Static_assert(ARRAY_SIZE(regulator_id) == MTK_REGULATOR_NUM, "regulator_id size error");
diff --git a/src/soc/mediatek/common/include/soc/regulator.h b/src/soc/mediatek/common/include/soc/regulator.h
index a53d01c3f3..5068f50779 100644
--- a/src/soc/mediatek/common/include/soc/regulator.h
+++ b/src/soc/mediatek/common/include/soc/regulator.h
@@ -16,6 +16,8 @@ enum mtk_regulator {
MTK_REGULATOR_VDRAM1,
MTK_REGULATOR_VMCH,
MTK_REGULATOR_VMC,
+ MTK_REGULATOR_VPROC12,
+ MTK_REGULATOR_VSRAM_PROC12,
MTK_REGULATOR_NUM,
};