blob: 2c1a8fa09bf1a6f1a7fbfa3202d6e41fb57e2ec3 [file] [log] [blame]
Soby Mathew877cf3f2016-07-11 14:13:56 +01001/*
Soby Mathewa6f340f2018-01-09 14:36:14 +00002 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
Soby Mathew877cf3f2016-07-11 14:13:56 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathew877cf3f2016-07-11 14:13:56 +01005 */
6
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +00007#include <lib/xlat_tables/xlat_mmu_helpers.h>
8#include <plat/common/platform.h>
Soby Mathew877cf3f2016-07-11 14:13:56 +01009
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
Soby Mathew0ed8c002018-03-01 10:53:33 +000016
Soby Mathew877cf3f2016-07-11 14:13:56 +010017
18void bl32_plat_enable_mmu(uint32_t flags)
19{
Antonio Nino Diaz1a92a0e2018-08-07 19:59:49 +010020 enable_mmu_svc_mon(flags);
Soby Mathew877cf3f2016-07-11 14:13:56 +010021}