Yatharth Kochar | 6089af0 | 2015-10-11 15:03:51 +0100 | [diff] [blame] | 1 | /* |
Roberto Vargas | 2b36b15 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 2 | * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. |
Yatharth Kochar | 6089af0 | 2015-10-11 15:03:51 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Yatharth Kochar | 6089af0 | 2015-10-11 15:03:51 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <bl_common.h> |
| 8 | #include <debug.h> |
| 9 | #include <plat_arm.h> |
Roberto Vargas | 2b36b15 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 10 | #include <platform.h> |
Yatharth Kochar | 6089af0 | 2015-10-11 15:03:51 +0100 | [diff] [blame] | 11 | #include <soc_css.h> |
| 12 | |
| 13 | void 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 | |