blob: 458aaa559fca9983095c02a8a279abdb072c63b4 [file] [log] [blame]
// SPDX-License-Identifier: Apache-2.0 OR MIT
//
// Copyright (c) 2020-2022 by the author(s)
//
// Author(s):
// - Erik Verbruggen <erikjv@me.com>
//! Read/Write Software Thread ID Register - EL0.
//!
//! Provides a location where software executing at EL0 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_EL0", "x");
}
impl Writeable for Reg {
type T = u64;
type R = ();
sys_coproc_write_raw!(u64, "TPIDR_EL0", "x");
}
pub const TPIDR_EL0: Reg = Reg {};