blob: b1b275c6e70ee97542bde853811555ef8acad448 [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
7#include <bl_common.h>
8#include <debug.h>
9#include <plat_arm.h>
Roberto Vargas2b36b152018-02-12 12:36:17 +000010#include <platform.h>
Yatharth Kochar6089af02015-10-11 15:03:51 +010011#include <soc_css.h>
12
13void 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