xref: /rk3399_ARM-atf/plat/common/aarch32/plat_common.c (revision 82cb2c1ad9897473743f08437d0a3995bed561b9)
1 /*
2  * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <platform.h>
8 #include <xlat_mmu_helpers.h>
9 
10 /*
11  * The following platform setup functions are weakly defined. They
12  * provide typical implementations that may be re-used by multiple
13  * platforms but may also be overridden by a platform if required.
14  */
15 #pragma weak bl32_plat_enable_mmu
16 
17 void bl32_plat_enable_mmu(uint32_t flags)
18 {
19 	enable_mmu_secure(flags);
20 }
21