#[repr(u64)]pub enum Value {
AllLowerELsAreAarch32 = 0,
NextELIsAarch64 = 1,
}Expand description
Execution state control for lower Exception levels:
0 Lower levels are all AArch32. 1 The next lower level is AArch64. If EL2 is present: The Execution state for EL2 is AArch64. EL2 controls EL1 and EL0 behaviors. If EL2 is not present: The Execution state for EL1 is AArch64. The Execution state for EL0 is determined by the current value of PSTATE.nRW when executing at EL0.
If all lower Exception levels cannot use AArch32 then this bit is RAO/WI.
When SCR_EL3.{EEL2,NS}=={1,0}, this bit is treated as 1 for all purposes other than reading or writing the register.
The RW bit is permitted to be cached in a TLB.
Variants§
Trait Implementations§
Source§impl TryFromValue<u64> for Value
impl TryFromValue<u64> for Value
impl Copy for Value
impl Eq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more