mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-21 20:14:29 +00:00

Rule 8.4: A compatible declaration shall be visible when an object or function with external linkage is defined Fixed for: make DEBUG=1 PLAT=juno LOG_LEVEL=50 all Change-Id: Ic8f611da734f356566e8208053296e6c62b54709 Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
22 lines
427 B
C
22 lines
427 B
C
/*
|
|
* Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <bl_common.h>
|
|
#include <debug.h>
|
|
#include <plat_arm.h>
|
|
#include <platform.h>
|
|
#include <soc_css.h>
|
|
|
|
void bl1_platform_setup(void)
|
|
{
|
|
arm_bl1_platform_setup();
|
|
/*
|
|
* Do ARM CSS SoC security setup.
|
|
* BL1 needs to enable normal world access to memory.
|
|
*/
|
|
soc_css_security_setup();
|
|
}
|
|
|