summaryrefslogtreecommitdiff
path: root/embeddedsw/lib/bsp/standalone/src/arm/ARMv8/64bit/xil_mmu.h
blob: 396a0ab864c3ee05af7b254b35d6a78bf2774955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/******************************************************************************
* Copyright (c) 2014 - 2021 Xilinx, Inc.  All rights reserved.
* SPDX-License-Identifier: MIT
******************************************************************************/

/*****************************************************************************/
/**
* @file xil_mmu.h
*
* @addtogroup a53_64_mmu_apis Cortex A53 64bit Processor MMU Handling
*
* MMU function equip users to modify default memory attributes of MMU table as
* per the need.
*
* @{
*
* <pre>
* MODIFICATION HISTORY:
*
* Ver   Who  Date     Changes
* ----- ---- -------- ---------------------------------------------------
* 5.00 	pkp  05/29/14 First release
* </pre>
*
* @note
*
* None.
*
******************************************************************************/

#ifndef XIL_MMU_H
#define XIL_MMU_H

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

/***************************** Include Files *********************************/

#include "xil_types.h"

/***************** Macros (Inline Functions) Definitions *********************/

/**************************** Type Definitions *******************************/

/************************** Constant Definitions *****************************/

/**
 *@cond nocomments
 */

/* Memory type */
#define NORM_NONCACHE 0x401UL 	/* Normal Non-cacheable*/
#define STRONG_ORDERED 0x409UL	/* Strongly ordered (Device-nGnRnE)*/
#define DEVICE_MEMORY 0x40DUL	/* Device memory (Device-nGnRE)*/
#define RESERVED 0x0UL			/* reserved memory*/

/* Normal write-through cacheable inner shareable*/
#define NORM_WT_CACHE 0x711UL

/* Normal write back cacheable inner-shareable */
#define NORM_WB_CACHE 0x705UL

/*
 * shareability attribute only applicable to
 * normal cacheable memory
 */
#define INNER_SHAREABLE (0x3 << 8)
#define OUTER_SHAREABLE (0x2 << 8)
#define NON_SHAREABLE	(~(0x3 << 8))

/* Execution type */
#define EXECUTE_NEVER ((0x1 << 53) | (0x1 << 54))

/* Security type */
#define NON_SECURE	(0x1 << 5)

/************************** Variable Definitions *****************************/

/************************** Function Prototypes ******************************/
/**
 *@endcond
 */

void Xil_SetTlbAttributes(UINTPTR Addr, u64 attrib);

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* XIL_MMU_H */
/**
* @} End of "addtogroup a53_64_mmu_apis".
*/