blob: 596cc3d676c20cc1345b2959b3a6e885e56cf98a [file] [log] [blame]
Yatharth Kocharc76e0d12015-10-11 15:03:51 +01001/*
Roberto Vargasfd116b92018-02-12 12:36:17 +00002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Yatharth Kocharc76e0d12015-10-11 15:03:51 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kocharc76e0d12015-10-11 15:03:51 +01005 */
6
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +00007#include <common/bl_common.h>
8#include <common/debug.h>
Antonio Nino Diazbd9344f2019-01-25 14:30:04 +00009#include <plat/arm/common/plat_arm.h>
10#include <plat/arm/soc/common/soc_css.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000011#include <plat/common/platform.h>
12
Yatharth Kocharc76e0d12015-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