Skip to content

feat: add stackpointer registers for EL2 and EL3 #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/registers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ mod sctlr_el3;
mod sp;
mod sp_el0;
mod sp_el1;
mod sp_el2;
mod sp_el3;
mod spsel;
mod spsr_el1;
mod spsr_el2;
Expand Down Expand Up @@ -242,6 +244,8 @@ pub use sctlr_el3::SCTLR_EL3;
pub use sp::SP;
pub use sp_el0::SP_EL0;
pub use sp_el1::SP_EL1;
pub use sp_el2::SP_EL2;
pub use sp_el3::SP_EL3;
pub use spsel::SPSel;
pub use spsr_el1::SPSR_EL1;
pub use spsr_el2::SPSR_EL2;
Expand Down
36 changes: 36 additions & 0 deletions src/registers/sp_el2.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// SPDX-License-Identifier: Apache-2.0 OR MIT
//
// Copyright (c) 2018-2023 by the author(s)
//
// Author(s):
// - Fritz Stracke <[email protected]>

//! The stack pointer - EL2
//!
//! Holds the stack pointer associated with EL2. When executing at EL2, the value of SPSel.SP
//! determines the current stack pointer:
//!
//! SPSel.SP | current stack pointer
//! --------------------------------
//! 0 | SP_EL0
//! 1 | SP_EL2

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

pub struct Reg;

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

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

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

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

pub const SP_EL2: Reg = Reg {};
36 changes: 36 additions & 0 deletions src/registers/sp_el3.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// SPDX-License-Identifier: Apache-2.0 OR MIT
//
// Copyright (c) 2018-2023 by the author(s)
//
// Author(s):
// - Fritz Stracke <[email protected]>

//! The stack pointer - EL3
//!
//! Holds the stack pointer associated with EL3. When executing at EL3, the value of SPSel.SP
//! determines the current stack pointer:
//!
//! SPSel.SP | current stack pointer
//! --------------------------------
//! 0 | SP_EL0
//! 1 | SP_EL3

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

pub struct Reg;

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

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

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

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

pub const SP_EL3: Reg = Reg {};
Loading