diff options
author | Liju-Clr Chen <liju-clr.chen@mediatek.com> | 2023-02-06 15:58:44 +0800 |
---|---|---|
committer | Rex-BC Chen <rex-bc.chen@mediatek.com> | 2023-02-09 09:19:00 +0000 |
commit | 84bb5f4e1958b0fe82991b027ef0f166c109faa2 (patch) | |
tree | 394d33ddccf4d2685f50bd167498eadc43a0fc72 /src/soc/mediatek/mt8188/msdc.c | |
parent | 5aaf8df4fd9bd0cd30f4e2a8b3e67fb3bda65c1b (diff) |
mb/google/geralt: Init MT6359P only once in ramstage
The regulator MT6359P is needed by both firmware display and SD card.
To avoid duplicate initialization in ramstage, publicize init_pmif_arb()
as mt6359p_init_pmif_arb() and call it from mainboard_init(). This would
save 13 ms for boot time on Geralt.
BUG=b:244208960
TEST=test firmware display pass for BOE_TV110C9M_LL0 on Geralt.
Change-Id: I29498d186ba5665ae20e84985174fc10f8d4accd
Signed-off-by: Liju-Clr Chen <liju-clr.chen@mediatek.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72839
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Reviewed-by: Yidi Lin <yidilin@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Rex-BC Chen <rex-bc.chen@mediatek.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/soc/mediatek/mt8188/msdc.c')
-rw-r--r-- | src/soc/mediatek/mt8188/msdc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/soc/mediatek/mt8188/msdc.c b/src/soc/mediatek/mt8188/msdc.c index 37a96a736c..3aff5e9340 100644 --- a/src/soc/mediatek/mt8188/msdc.c +++ b/src/soc/mediatek/mt8188/msdc.c @@ -10,7 +10,6 @@ #include <soc/addressmap.h> #include <soc/regulator.h> #include <soc/msdc.h> -#include <soc/mt6359p.h> DEFINE_BITFIELD(MSDC0_DRV_0, 29, 18) DEFINE_BITFIELD(MSDC0_DRV_1, 17, 0) @@ -107,7 +106,6 @@ void mtk_msdc_configure_sdcard(void) MSDC1_GPIO_MODE1_0, MSDC1_GPIO_MODE1_VALUE); /* enable SD card power */ - mt6359p_init(); mainboard_enable_regulator(MTK_REGULATOR_VMCH, true); mainboard_enable_regulator(MTK_REGULATOR_VMC, true); mainboard_set_regulator_voltage(MTK_REGULATOR_VMCH, 3000000); |