blob: 9e2543fbbc21ff2fcce0afef865e42187badc160 [file] [log] [blame]
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +00001/*
Antonio Nino Diaze7b98862018-07-24 10:20:53 +01002 * Copyright (c) 2014-2018, ARM Limited and Contributors. All rights reserved.
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +00003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +00005 */
6
Antonio Nino Diaze7b98862018-07-24 10:20:53 +01007#ifndef XLAT_TABLES_H
8#define XLAT_TABLES_H
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +00009
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000010#include <lib/xlat_tables/xlat_tables_defs.h>
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000011
12#ifndef __ASSEMBLY__
13#include <stddef.h>
14#include <stdint.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000015
16#include <lib/xlat_tables/xlat_mmu_helpers.h>
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000017
18/* Helper macro to define entries for mmap_region_t. It creates
19 * identity mappings for each region.
20 */
21#define MAP_REGION_FLAT(adr, sz, attr) MAP_REGION(adr, adr, sz, attr)
22
23/* Helper macro to define entries for mmap_region_t. It allows to
24 * re-map address mappings from 'pa' to 'va' for each region.
25 */
26#define MAP_REGION(pa, va, sz, attr) {(pa), (va), (sz), (attr)}
27
28/*
Antonio Nino Diaz3a1b7b12018-06-21 14:39:16 +010029 * Shifts and masks to access fields of an mmap attribute
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000030 */
Varun Wadekar030567e2017-05-25 18:04:48 -070031#define MT_TYPE_MASK U(0x7)
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000032#define MT_TYPE(_attr) ((_attr) & MT_TYPE_MASK)
33/* Access permissions (RO/RW) */
Varun Wadekar030567e2017-05-25 18:04:48 -070034#define MT_PERM_SHIFT U(3)
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000035/* Security state (SECURE/NS) */
Varun Wadekar030567e2017-05-25 18:04:48 -070036#define MT_SEC_SHIFT U(4)
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000037/* Access permissions for instruction execution (EXECUTE/EXECUTE_NEVER) */
Varun Wadekar030567e2017-05-25 18:04:48 -070038#define MT_EXECUTE_SHIFT U(5)
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000039
40/*
41 * Memory mapping attributes
42 */
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000043
Antonio Nino Diaz3a1b7b12018-06-21 14:39:16 +010044/*
45 * Memory types supported.
46 * These are organised so that, going down the list, the memory types are
47 * getting weaker; conversely going up the list the memory types are getting
48 * stronger.
49 */
50#define MT_DEVICE U(0)
51#define MT_NON_CACHEABLE U(1)
52#define MT_MEMORY U(2)
53/* Values up to 7 are reserved to add new memory types in the future */
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000054
Antonio Nino Diaz3a1b7b12018-06-21 14:39:16 +010055#define MT_RO (U(0) << MT_PERM_SHIFT)
56#define MT_RW (U(1) << MT_PERM_SHIFT)
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000057
Antonio Nino Diaz3a1b7b12018-06-21 14:39:16 +010058#define MT_SECURE (U(0) << MT_SEC_SHIFT)
59#define MT_NS (U(1) << MT_SEC_SHIFT)
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000060
Antonio Nino Diaz3a1b7b12018-06-21 14:39:16 +010061/*
62 * Access permissions for instruction execution are only relevant for normal
63 * read-only memory, i.e. MT_MEMORY | MT_RO. They are ignored (and potentially
64 * overridden) otherwise:
65 * - Device memory is always marked as execute-never.
66 * - Read-write normal memory is always marked as execute-never.
67 */
68#define MT_EXECUTE (U(0) << MT_EXECUTE_SHIFT)
69#define MT_EXECUTE_NEVER (U(1) << MT_EXECUTE_SHIFT)
70
71/* Compound attributes for most common usages */
72#define MT_CODE (MT_MEMORY | MT_RO | MT_EXECUTE)
73#define MT_RO_DATA (MT_MEMORY | MT_RO | MT_EXECUTE_NEVER)
74
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000075/*
76 * Structure for specifying a single region of memory.
77 */
78typedef struct mmap_region {
79 unsigned long long base_pa;
80 uintptr_t base_va;
81 size_t size;
Antonio Nino Diaz3a1b7b12018-06-21 14:39:16 +010082 unsigned int attr;
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000083} mmap_region_t;
84
85/* Generic translation table APIs */
86void init_xlat_tables(void);
87void mmap_add_region(unsigned long long base_pa, uintptr_t base_va,
Antonio Nino Diaz3a1b7b12018-06-21 14:39:16 +010088 size_t size, unsigned int attr);
Antonio Nino Diaz7bb01fb2017-03-08 14:40:23 +000089void mmap_add(const mmap_region_t *mm);
90
91#endif /*__ASSEMBLY__*/
Antonio Nino Diaze7b98862018-07-24 10:20:53 +010092#endif /* XLAT_TABLES_H */