drivers/mipi: Add support for KD_KD110N11_51IE panel
[coreboot2.git] / src / soc / mediatek / mt8173 / bootblock.c
blob265083125f54c4ac30aded60eeaf85790b10cb42
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootblock_common.h>
4 #include <soc/mmu_operations.h>
5 #include <soc/mt6391.h>
6 #include <soc/pll.h>
7 #include <soc/wdt.h>
9 void bootblock_soc_init(void)
11 mt_pll_init();
13 /* init pmic wrap SPI interface and pmic */
14 mt6391_init();
16 /* post init pll */
17 mt_pll_post_init();
19 mtk_mmu_init();
21 /* init watch dog, will disable AP watch dog */
22 mtk_wdt_init();