Soby Mathew | 44170c4 | 2016-03-22 15:51:08 +0000 | [diff] [blame] | 1 | /* |
Govindraj Raja | eee28e7 | 2023-08-01 15:52:40 -0500 | [diff] [blame] | 2 | * Copyright (c) 2016-2018, Arm Limited and Contributors. All rights reserved. |
Soby Mathew | 44170c4 | 2016-03-22 15:51:08 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soby Mathew | 44170c4 | 2016-03-22 15:51:08 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | 50eb374 | 2018-07-24 10:20:53 +0100 | [diff] [blame] | 7 | #ifndef XLAT_TABLES_PRIVATE_H |
| 8 | #define XLAT_TABLES_PRIVATE_H |
Soby Mathew | 44170c4 | 2016-03-22 15:51:08 +0000 | [diff] [blame] | 9 | |
Antonio Nino Diaz | d1beee2 | 2016-12-13 15:28:54 +0000 | [diff] [blame] | 10 | #include <platform_def.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | |
| 12 | #include <lib/cassert.h> |
| 13 | #include <lib/xlat_tables/xlat_tables_arch.h> |
Antonio Nino Diaz | d48ae61 | 2016-08-02 09:21:41 +0100 | [diff] [blame] | 14 | |
Jeenu Viswambharan | e834ee1 | 2018-04-27 15:17:03 +0100 | [diff] [blame] | 15 | #if HW_ASSISTED_COHERENCY |
| 16 | #error xlat tables v2 must be used with HW_ASSISTED_COHERENCY |
| 17 | #endif |
| 18 | |
Sandrine Bailleux | 090c849 | 2017-05-19 09:59:37 +0100 | [diff] [blame] | 19 | CASSERT(CHECK_PHY_ADDR_SPACE_SIZE(PLAT_PHY_ADDR_SPACE_SIZE), |
| 20 | assert_valid_phy_addr_space_size); |
Antonio Nino Diaz | 010888d | 2016-12-13 15:02:31 +0000 | [diff] [blame] | 21 | |
Sandrine Bailleux | 090c849 | 2017-05-19 09:59:37 +0100 | [diff] [blame] | 22 | /* Alias to retain compatibility with the old #define name */ |
| 23 | #define XLAT_BLOCK_LEVEL_MIN MIN_LVL_BLOCK_DESC |
Antonio Nino Diaz | 010888d | 2016-12-13 15:02:31 +0000 | [diff] [blame] | 24 | |
Soby Mathew | 44170c4 | 2016-03-22 15:51:08 +0000 | [diff] [blame] | 25 | void print_mmap(void); |
Antonio Nino Diaz | efabaa9 | 2017-04-27 13:30:22 +0100 | [diff] [blame] | 26 | |
| 27 | /* Returns the current Exception Level. The returned EL must be 1 or higher. */ |
Antonio Nino Diaz | 50eb374 | 2018-07-24 10:20:53 +0100 | [diff] [blame] | 28 | unsigned int xlat_arch_current_el(void); |
Antonio Nino Diaz | efabaa9 | 2017-04-27 13:30:22 +0100 | [diff] [blame] | 29 | |
| 30 | /* |
| 31 | * Returns the bit mask that has to be ORed to the rest of a translation table |
| 32 | * descriptor so that execution of code is prohibited at the given Exception |
| 33 | * Level. |
| 34 | */ |
Antonio Nino Diaz | 50eb374 | 2018-07-24 10:20:53 +0100 | [diff] [blame] | 35 | uint64_t xlat_arch_get_xn_desc(unsigned int el); |
Antonio Nino Diaz | efabaa9 | 2017-04-27 13:30:22 +0100 | [diff] [blame] | 36 | |
Soby Mathew | 44170c4 | 2016-03-22 15:51:08 +0000 | [diff] [blame] | 37 | void init_xlation_table(uintptr_t base_va, uint64_t *table, |
David Cunado | 8a354f1 | 2017-06-21 16:52:45 +0100 | [diff] [blame] | 38 | unsigned int level, uintptr_t *max_va, |
Soby Mathew | 44170c4 | 2016-03-22 15:51:08 +0000 | [diff] [blame] | 39 | unsigned long long *max_pa); |
| 40 | |
Antonio Nino Diaz | 50eb374 | 2018-07-24 10:20:53 +0100 | [diff] [blame] | 41 | #endif /* XLAT_TABLES_PRIVATE_H */ |