blob: fad967ebfb948e2af9bdb2f582974e1c673ad0d2 [file] [log] [blame]
Soby Mathew3ca99282016-03-22 15:51:08 +00001/*
Antonio Nino Diaze7b98862018-07-24 10:20:53 +01002 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
Soby Mathew3ca99282016-03-22 15:51:08 +00003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathew3ca99282016-03-22 15:51:08 +00005 */
6
Antonio Nino Diaze7b98862018-07-24 10:20:53 +01007#ifndef XLAT_TABLES_PRIVATE_H
8#define XLAT_TABLES_PRIVATE_H
Soby Mathew3ca99282016-03-22 15:51:08 +00009
Antonio Nino Diaze8719552016-08-02 09:21:41 +010010#include <cassert.h>
Antonio Nino Diaz00296242016-12-13 15:28:54 +000011#include <platform_def.h>
Sandrine Bailleux8933c342017-05-19 09:59:37 +010012#include <xlat_tables_arch.h>
Antonio Nino Diaze8719552016-08-02 09:21:41 +010013
Jeenu Viswambharan64ee2632018-04-27 15:17:03 +010014#if HW_ASSISTED_COHERENCY
15#error xlat tables v2 must be used with HW_ASSISTED_COHERENCY
16#endif
17
Sandrine Bailleux8933c342017-05-19 09:59:37 +010018CASSERT(CHECK_VIRT_ADDR_SPACE_SIZE(PLAT_VIRT_ADDR_SPACE_SIZE),
Antonio Nino Diaz00296242016-12-13 15:28:54 +000019 assert_valid_virt_addr_space_size);
Sandrine Bailleux8933c342017-05-19 09:59:37 +010020
21CASSERT(CHECK_PHY_ADDR_SPACE_SIZE(PLAT_PHY_ADDR_SPACE_SIZE),
Antonio Nino Diaz00296242016-12-13 15:28:54 +000022 assert_valid_phy_addr_space_size);
Antonio Nino Diaze8719552016-08-02 09:21:41 +010023
Sandrine Bailleux8933c342017-05-19 09:59:37 +010024/* Alias to retain compatibility with the old #define name */
25#define XLAT_BLOCK_LEVEL_MIN MIN_LVL_BLOCK_DESC
Antonio Nino Diaz2240f452016-12-13 15:02:31 +000026
Soby Mathew3ca99282016-03-22 15:51:08 +000027void print_mmap(void);
Antonio Nino Diaza5640252017-04-27 13:30:22 +010028
29/* Returns the current Exception Level. The returned EL must be 1 or higher. */
Antonio Nino Diaze7b98862018-07-24 10:20:53 +010030unsigned int xlat_arch_current_el(void);
Antonio Nino Diaza5640252017-04-27 13:30:22 +010031
32/*
33 * Returns the bit mask that has to be ORed to the rest of a translation table
34 * descriptor so that execution of code is prohibited at the given Exception
35 * Level.
36 */
Antonio Nino Diaze7b98862018-07-24 10:20:53 +010037uint64_t xlat_arch_get_xn_desc(unsigned int el);
Antonio Nino Diaza5640252017-04-27 13:30:22 +010038
Soby Mathew3ca99282016-03-22 15:51:08 +000039void init_xlation_table(uintptr_t base_va, uint64_t *table,
David Cunado0dd41952017-06-21 16:52:45 +010040 unsigned int level, uintptr_t *max_va,
Soby Mathew3ca99282016-03-22 15:51:08 +000041 unsigned long long *max_pa);
42
Antonio Nino Diaze7b98862018-07-24 10:20:53 +010043#endif /* XLAT_TABLES_PRIVATE_H */