xref: /rk3399_ARM-atf/plat/mediatek/drivers/apusys/apusys.c (revision afe9fcc3d262ca279a747c8ab6fa8bacf79c76fb)
1 /*
2  * Copyright (c) 2023, MediaTek Inc. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 /* TF-A system header */
8 #include <common/debug.h>
9 
10 /* Vendor header */
11 #include "apusys.h"
12 #include "apusys_power.h"
13 #include <lib/mtk_init/mtk_init.h>
14 
15 int apusys_init(void)
16 {
17 	apusys_power_init();
18 	return 0;
19 }
20 MTK_PLAT_SETUP_1_INIT(apusys_init);
21