xref: /rk3399_ARM-atf/plat/arm/board/fvp_ve/fvp_ve_security.c (revision 5ba32a7660051464ed1d56129adf2606db54b5e3)
1*6393c787SUsama Arif /*
2*6393c787SUsama Arif  * Copyright (c) 2019, Arm Limited. All rights reserved.
3*6393c787SUsama Arif  *
4*6393c787SUsama Arif  * SPDX-License-Identifier: BSD-3-Clause
5*6393c787SUsama Arif  */
6*6393c787SUsama Arif 
7*6393c787SUsama Arif /*
8*6393c787SUsama Arif  * We assume that all security programming is done by the primary core.
9*6393c787SUsama Arif  */
plat_arm_security_setup(void)10*6393c787SUsama Arif void plat_arm_security_setup(void)
11*6393c787SUsama Arif {
12*6393c787SUsama Arif 	/*
13*6393c787SUsama Arif 	 * The Base FVP has a TrustZone address space controller, the Foundation
14*6393c787SUsama Arif 	 * FVP does not. Trying to program the device on the foundation FVP will
15*6393c787SUsama Arif 	 * cause an abort.
16*6393c787SUsama Arif 	 *
17*6393c787SUsama Arif 	 * If the platform had additional peripheral specific security
18*6393c787SUsama Arif 	 * configurations, those would be configured here.
19*6393c787SUsama Arif 	 */
20*6393c787SUsama Arif 
21*6393c787SUsama Arif 	return;
22*6393c787SUsama Arif }
23