blob: ae0f01133f631865c1137d70d79f625c36dbedc8 [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>
9#include <plat/common/platform.h>
10
Yatharth Kochar6089af02015-10-11 15:03:51 +010011#include <plat_arm.h>
Yatharth Kochar6089af02015-10-11 15:03:51 +010012#include <soc_css.h>
13
14void bl1_platform_setup(void)
15{
16 arm_bl1_platform_setup();
17 /*
18 * Do ARM CSS SoC security setup.
19 * BL1 needs to enable normal world access to memory.
20 */
21 soc_css_security_setup();
22}
23