xref: /aosp_15_r20/external/arm-trusted-firmware/plat/common/aarch32/plat_common.c (revision 54fd6939e177f8ff529b10183254802c76df6d08)
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 <lib/xlat_tables/xlat_mmu_helpers.h>
8 #include <plat/common/platform.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 
bl32_plat_enable_mmu(uint32_t flags)18 void bl32_plat_enable_mmu(uint32_t flags)
19 {
20 	enable_mmu_svc_mon(flags);
21 }
22