summaryrefslogtreecommitdiff
path: root/src/mainboard/google/corsola
diff options
context:
space:
mode:
authorRex-BC Chen <rex-bc.chen@mediatek.com>2022-07-20 10:22:53 +0800
committerFelix Held <felix-coreboot@felixheld.de>2022-07-21 10:30:57 +0000
commitd5dafb2c0a6bac5c9d87f0e07e339570e0fd3267 (patch)
tree9a1efa4a808f6f9c97343c2cd32e2b073d2ea96e /src/mainboard/google/corsola
parent8ba3e34f18f041b231acfae10b6e4cc2533532da (diff)
mb/google: Replace some strings in regulator.c
From comments of CB:65875, we replace *_vol to *_voltage. s/mainboard_set_regulator_vol/mainboard_set_regulator_voltage/ s/mainboard_get_regulator_vol/mainboard_get_regulator_voltage/ TEST=build pass BUG=b:233720142 Signed-off-by: Bo-Chen Chen <rex-bc.chen@mediatek.com> Change-Id: Iadf0408e8914d6e32915464f93979978c4634eaf Reviewed-on: https://review.coreboot.org/c/coreboot/+/65994 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/mainboard/google/corsola')
-rw-r--r--src/mainboard/google/corsola/display.c4
-rw-r--r--src/mainboard/google/corsola/regulator.c5
-rw-r--r--src/mainboard/google/corsola/romstage.c4
3 files changed, 6 insertions, 7 deletions
diff --git a/src/mainboard/google/corsola/display.c b/src/mainboard/google/corsola/display.c
index 5a88cad7b9..2f52175355 100644
--- a/src/mainboard/google/corsola/display.c
+++ b/src/mainboard/google/corsola/display.c
@@ -35,9 +35,9 @@ static void bridge_ps8640_power_on(void)
*/
/* Set VRF12 to 1.2V and VCN33 to 3.3V */
- mainboard_set_regulator_vol(MTK_REGULATOR_VRF12, 1200000);
+ mainboard_set_regulator_voltage(MTK_REGULATOR_VRF12, 1200000);
udelay(100);
- mainboard_set_regulator_vol(MTK_REGULATOR_VCN33, 3300000);
+ mainboard_set_regulator_voltage(MTK_REGULATOR_VCN33, 3300000);
udelay(200);
/* Turn on bridge */
diff --git a/src/mainboard/google/corsola/regulator.c b/src/mainboard/google/corsola/regulator.c
index d607497a4f..4f03c181e2 100644
--- a/src/mainboard/google/corsola/regulator.c
+++ b/src/mainboard/google/corsola/regulator.c
@@ -26,8 +26,7 @@ static const int regulator_id[] = {
_Static_assert(ARRAY_SIZE(regulator_id) == MTK_REGULATOR_NUM, "regulator_id size error");
-void mainboard_set_regulator_vol(enum mtk_regulator regulator,
- uint32_t voltage_uv)
+void mainboard_set_regulator_voltage(enum mtk_regulator regulator, uint32_t voltage_uv)
{
assert(regulator < MTK_REGULATOR_NUM);
@@ -38,7 +37,7 @@ void mainboard_set_regulator_vol(enum mtk_regulator regulator,
mt6366_set_voltage(regulator_id[regulator], voltage_uv);
}
-uint32_t mainboard_get_regulator_vol(enum mtk_regulator regulator)
+uint32_t mainboard_get_regulator_voltage(enum mtk_regulator regulator)
{
assert(regulator < MTK_REGULATOR_NUM);
diff --git a/src/mainboard/google/corsola/romstage.c b/src/mainboard/google/corsola/romstage.c
index 8d03b5b54c..01f8af3f0f 100644
--- a/src/mainboard/google/corsola/romstage.c
+++ b/src/mainboard/google/corsola/romstage.c
@@ -11,8 +11,8 @@
static void raise_little_cpu_freq(void)
{
- mainboard_set_regulator_vol(MTK_REGULATOR_VPROC12, 1031250);
- mainboard_set_regulator_vol(MTK_REGULATOR_VSRAM_PROC12, 1118750);
+ mainboard_set_regulator_voltage(MTK_REGULATOR_VPROC12, 1031250);
+ mainboard_set_regulator_voltage(MTK_REGULATOR_VSRAM_PROC12, 1118750);
udelay(200);
mt_pll_raise_little_cpu_freq(2000 * MHz);
mt_pll_raise_cci_freq(1385 * MHz);