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
/***********************************************************************************************************************
 * Copyright (c) 2020 by the authors
 *
 * Author: André Borrmann <pspwizard@gmx.de>
 * License: Apache License 2.0 / MIT
 **********************************************************************************************************************/

//! # SCTLR_EL2 - System Control Register EL2
//!
//! Provides top level control of the system, including its memory system at EL2.
//!
//! ## Usage Constraints
//! EL0 | EL1 (NS) | EL1(S) | EL2 | EL3(NS) | EL3(S)
//! ----|----------|--------|-----|---------|-------
//!  -  | -        | -      | R/W | R/W     | R/W
//!

use crate::register::*;
use crate::{define_aarch64_register, impl_system_register_rw};

define_aarch64_register! {
    @sctlr_el2<u64> {
        /// globally enable MMU
        M   OFFSET(0) [
            DISABLE = 0b0,
            ENABLE = 0b1
        ],
        /// alignment fault check
        A   OFFSET(1) [
            DISABLE = 0b0,
            ENABLE = 0b1
        ],
        /// global data cache
        C   OFFSET(2) [
            DISABLE = 0b0,
            ENABLE = 0b1
        ],
        /// stack alignment checks
        SA  OFFSET(3) [
            DISABLE = 0b0,
            ENABLE = 0b1
        ],
        /// instruction cache
        I   OFFSET(12) [
            DISABLE = 0b0,
            ENABLE = 0b1
        ],
        /// Force all memory regions with write permissions as XN
        WXN     OFFSET(19) [
            DONT_FORCE = 0b0,
            FORCE = 0b1
        ],
        /// exception endiannes
        EE      OFFSET(25) [
            LTL_ENDIAN = 0b0,
            BIG_ENDIAN = 0b1
        ]
    }
}