xref: /rk3399_ARM-atf/include/bl32/tsp/platform_tsp.h (revision 06f3c7058c42a9f1a9f7df75ea2de71a000855e8)
1 /*
2  * Copyright (c) 2014-2025, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef PLATFORM_TSP_H
8 #define PLATFORM_TSP_H
9 
10 /*******************************************************************************
11  * Mandatory TSP functions (only if platform contains a TSP)
12  ******************************************************************************/
13 void tsp_early_platform_setup(u_register_t arg0, u_register_t arg1,
14 			      u_register_t arg2, u_register_t arg3);
15 void tsp_plat_arch_setup(void);
16 void tsp_platform_setup(void);
17 
18 #endif /* PLATFORM_TSP_H */
19