plat_common.c 502 Bytes
Newer Older
1
/*
2
 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
 */

#include <platform.h>
8
#include <xlat_mmu_helpers.h>
9
10
11
12
13
14
15

/*
 * The following platform setup functions are weakly defined. They
 * provide typical implementations that may be re-used by multiple
 * platforms but may also be overridden by a platform if required.
 */
#pragma weak bl32_plat_enable_mmu
16

17
18
19

void bl32_plat_enable_mmu(uint32_t flags)
{
20
	enable_mmu_svc_mon(flags);
21
}