aboutsummaryrefslogtreecommitdiff
path: root/src/registers/tpidr_el1.rs
blob: 7819a4e396c4af1daed1d814976a05ab697ca730 (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
// SPDX-License-Identifier: Apache-2.0 OR MIT
//
// Copyright (c) 2020-2022 by the author(s)
//
// Author(s):
//   - Erik Verbruggen <erikjv@me.com>

//! Software Thread ID Register - EL1.
//!
//! Provides a location where software executing at EL1 can store thread identifying information,
//! for OS management purposes.

use tock_registers::interfaces::{Readable, Writeable};

pub struct Reg;

impl Readable for Reg {
    type T = u64;
    type R = ();

    sys_coproc_read_raw!(u64, "TPIDR_EL1", "x");
}

impl Writeable for Reg {
    type T = u64;
    type R = ();

    sys_coproc_write_raw!(u64, "TPIDR_EL1", "x");
}

pub const TPIDR_EL1: Reg = Reg {};