aboutsummaryrefslogtreecommitdiff
path: root/src/registers/ttbr1_el1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/registers/ttbr1_el1.rs')
-rw-r--r--src/registers/ttbr1_el1.rs64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/registers/ttbr1_el1.rs b/src/registers/ttbr1_el1.rs
new file mode 100644
index 0000000..0626189
--- /dev/null
+++ b/src/registers/ttbr1_el1.rs
@@ -0,0 +1,64 @@
+// SPDX-License-Identifier: Apache-2.0 OR MIT
+//
+// Copyright (c) 2018-2022 by the author(s)
+//
+// Author(s):
+// - Andre Richter <andre.o.richter@gmail.com>
+
+//! Translation Table Base Register 1 - EL1
+//!
+//! Holds the base address of the translation table for the initial lookup for stage 1 of the
+//! translation of an address from the higher VA range in the EL1&0 translation regime, and other
+//! information for this translation regime.
+
+use tock_registers::{
+ interfaces::{Readable, Writeable},
+ register_bitfields,
+};
+
+register_bitfields! {u64,
+ pub TTBR1_EL1 [
+ /// An ASID for the translation table base address. The TCR_EL1.A1 field selects either
+ /// TTBR0_EL1.ASID or TTBR1_EL1.ASID.
+ ///
+ /// If the implementation has only 8 bits of ASID, then the upper 8 bits of this field are
+ /// RES 0.
+ ASID OFFSET(48) NUMBITS(16) [],
+
+ /// Translation table base address
+ BADDR OFFSET(1) NUMBITS(47) [],
+
+ /// Common not Private
+ CnP OFFSET(0) NUMBITS(1) []
+ ]
+}
+
+pub struct Reg;
+
+impl Readable for Reg {
+ type T = u64;
+ type R = TTBR1_EL1::Register;
+
+ sys_coproc_read_raw!(u64, "TTBR1_EL1", "x");
+}
+
+impl Writeable for Reg {
+ type T = u64;
+ type R = TTBR1_EL1::Register;
+
+ sys_coproc_write_raw!(u64, "TTBR1_EL1", "x");
+}
+
+impl Reg {
+ #[inline(always)]
+ pub fn get_baddr(&self) -> u64 {
+ self.read(TTBR1_EL1::BADDR) << 1
+ }
+
+ #[inline(always)]
+ pub fn set_baddr(&self, addr: u64) {
+ self.write(TTBR1_EL1::BADDR.val(addr >> 1));
+ }
+}
+
+pub const TTBR1_EL1: Reg = Reg {};