xref: /rk3399_ARM-atf/plat/arm/board/tc/tc_rse_comms.c (revision 36416b1e760072947d6a9effe0082290cc049b8a)
1 /*
2  * Copyright (c) 2022-2025, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <common/debug.h>
8 #include <drivers/arm/rse_comms.h>
9 #include <platform_def.h>
10 #include <tc_rse_comms.h>
11 
12 int plat_rse_comms_init(void)
13 {
14 	VERBOSE("Initializing the rse_comms now\n");
15 	/* Initialize the communication channel between AP and RSE */
16 	return rse_comms_init(PLAT_RSE_AP_SND_MHU_BASE, PLAT_RSE_AP_RCV_MHU_BASE);
17 }
18