]> git.baikalelectronics.ru Git - arm-tf.git/commit
feat(mediatek): introduce mtk init framework
authorLeon Chen <leon.chen@mediatek.com>
Mon, 20 Jun 2022 02:25:35 +0000 (10:25 +0800)
committerBo-Chen Chen <rex-bc.chen@mediatek.com>
Tue, 30 Aug 2022 08:47:43 +0000 (16:47 +0800)
commit52035dee1ae7b0f2f0d5f16c734ca7a5cea127b7
tree8c2d49f43ddd1fc410f8583c8ba0091008847617
parent2f3f5939a173250329489352bf418a77272c0055
feat(mediatek): introduce mtk init framework

Provide six initcall levels for drivers/modules initialize HW
controllers or runtime arguments during cold boot.

The initcall level cold boot execution order:

-MTK_EARLY_PLAT_INIT
Call before MMU enabled.

-MTK_ARCH_INIT
MMU Enabled, arch related init(GiC init, interrupt type registration).

-MTK_PLAT_SETUP_0_INIT
MTK driver init level 0.

-MTK_PLAT_SETUP_1_INIT
MTK driver init level 1.

-MTK_PLAT_RUNTIME_INIT
MTK driver init. After this initcall, TF-A handovers to MTK 2nd
bootloader.

-MTK_PLAT_BL33_DEFER_INIT
MTK 2nd bootloader traps to TF-A before handover to rich OS.
This initcall executed in the trap handler(boot_to_kernel).

Signed-off-by: Leon Chen <leon.chen@mediatek.com>
Change-Id: Icd7fe95372441db73c975ccb6ce77a6c529df1cc
plat/mediatek/build_helpers/mtk_build_helpers.mk
plat/mediatek/build_helpers/options.mk
plat/mediatek/include/lib/mtk_init/mtk_init.h [new file with mode: 0644]
plat/mediatek/include/lib/mtk_init/mtk_init_def.h [new file with mode: 0644]
plat/mediatek/include/mtk_mmap_pool.h [new file with mode: 0644]
plat/mediatek/include/plat.ld.rodata.inc [new file with mode: 0644]
plat/mediatek/lib/mtk_init/mtk_init.c [new file with mode: 0644]
plat/mediatek/lib/mtk_init/mtk_mmap_init.c [new file with mode: 0644]
plat/mediatek/lib/mtk_init/rules.mk [new file with mode: 0644]