blob: 4390f34ead7e390170caf92bd74f2efc9f6b77bd [file] [log] [blame]
Soby Mathew44170c42016-03-22 15:51:08 +00001/*
Antonio Nino Diaz50eb3742018-07-24 10:20:53 +01002 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
Soby Mathew44170c42016-03-22 15:51:08 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathew44170c42016-03-22 15:51:08 +00005 */
6
Antonio Nino Diaz50eb3742018-07-24 10:20:53 +01007#ifndef XLAT_TABLES_PRIVATE_H
8#define XLAT_TABLES_PRIVATE_H
Soby Mathew44170c42016-03-22 15:51:08 +00009
Antonio Nino Diazd1beee22016-12-13 15:28:54 +000010#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011
12#include <lib/cassert.h>
13#include <lib/xlat_tables/xlat_tables_arch.h>
Antonio Nino Diazd48ae612016-08-02 09:21:41 +010014
Jeenu Viswambharane834ee12018-04-27 15:17:03 +010015#if HW_ASSISTED_COHERENCY
16#error xlat tables v2 must be used with HW_ASSISTED_COHERENCY
17#endif
18
Sandrine Bailleux090c8492017-05-19 09:59:37 +010019CASSERT(CHECK_VIRT_ADDR_SPACE_SIZE(PLAT_VIRT_ADDR_SPACE_SIZE),
Antonio Nino Diazd1beee22016-12-13 15:28:54 +000020 assert_valid_virt_addr_space_size);
Antonio Nino Diaz010888d2016-12-13 15:02:31 +000021
Sandrine Bailleux090c8492017-05-19 09:59:37 +010022CASSERT(CHECK_PHY_ADDR_SPACE_SIZE(PLAT_PHY_ADDR_SPACE_SIZE),
23 assert_valid_phy_addr_space_size);
Antonio Nino Diaz010888d2016-12-13 15:02:31 +000024
Sandrine Bailleux090c8492017-05-19 09:59:37 +010025/* Alias to retain compatibility with the old #define name */
26#define XLAT_BLOCK_LEVEL_MIN MIN_LVL_BLOCK_DESC
Antonio Nino Diaz010888d2016-12-13 15:02:31 +000027
Soby Mathew44170c42016-03-22 15:51:08 +000028void print_mmap(void);
Antonio Nino Diazefabaa92017-04-27 13:30:22 +010029
30/* Returns the current Exception Level. The returned EL must be 1 or higher. */
Antonio Nino Diaz50eb3742018-07-24 10:20:53 +010031unsigned int xlat_arch_current_el(void);
Antonio Nino Diazefabaa92017-04-27 13:30:22 +010032
33/*
34 * Returns the bit mask that has to be ORed to the rest of a translation table
35 * descriptor so that execution of code is prohibited at the given Exception
36 * Level.
37 */
Antonio Nino Diaz50eb3742018-07-24 10:20:53 +010038uint64_t xlat_arch_get_xn_desc(unsigned int el);
Antonio Nino Diazefabaa92017-04-27 13:30:22 +010039
Soby Mathew44170c42016-03-22 15:51:08 +000040void init_xlation_table(uintptr_t base_va, uint64_t *table,
David Cunado8a354f12017-06-21 16:52:45 +010041 unsigned int level, uintptr_t *max_va,
Soby Mathew44170c42016-03-22 15:51:08 +000042 unsigned long long *max_pa);
43
Antonio Nino Diaz50eb3742018-07-24 10:20:53 +010044#endif /* XLAT_TABLES_PRIVATE_H */