1 /* 2 * Copyright (c) 2019-2025, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 /* 8 * We assume that all security programming is done by the primary core. 9 */ 10 void plat_arm_security_setup(void) 11 { 12 /* 13 * The Base FVP has a TrustZone address space controller. 14 * 15 * If the platform had additional peripheral specific security 16 * configurations, those would be configured here. 17 */ 18 19 return; 20 } 21