xref: /rk3399_ARM-atf/plat/common/aarch32/plat_common.c (revision c3cf06f1a3a9b9ee8ac7a0ae505f95c45f7dca84)
1 /*
2  * Copyright (c) 2016-2018, 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 
18 void bl32_plat_enable_mmu(uint32_t flags)
19 {
20 	enable_mmu_svc_mon(flags);
21 }
22