blob: 7a2a6fff7caf93e1f6927c919436d847e13a5b47 [file] [log] [blame]
Yatharth Kochar6089af02015-10-11 15:03:51 +01001/*
2 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
3 *
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>
10#include <soc_css.h>
11
12void bl1_platform_setup(void)
13{
14 arm_bl1_platform_setup();
15 /*
16 * Do ARM CSS SoC security setup.
17 * BL1 needs to enable normal world access to memory.
18 */
19 soc_css_security_setup();
20}
21