blob: 596cc3d676c20cc1345b2959b3a6e885e56cf98a [file] [log] [blame]
Yatharth Kochar6089af02015-10-11 15:03:51 +01001/*
Roberto Vargas2b36b152018-02-12 12:36:17 +00002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Yatharth Kochar6089af02015-10-11 15:03:51 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kochar6089af02015-10-11 15:03:51 +01005 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <common/bl_common.h>
8#include <common/debug.h>
Antonio Nino Diazbd7b7402019-01-25 14:30:04 +00009#include <plat/arm/common/plat_arm.h>
10#include <plat/arm/soc/common/soc_css.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <plat/common/platform.h>
12
Yatharth Kochar6089af02015-10-11 15:03:51 +010013void bl1_platform_setup(void)
14{
15 arm_bl1_platform_setup();
16 /*
17 * Do ARM CSS SoC security setup.
18 * BL1 needs to enable normal world access to memory.
19 */
20 soc_css_security_setup();
21}
22