pub enum TypedArcMsg {
Show 17 variants
Nop,
Test {
arg: u32,
},
ArcGoToSleep,
SetPowerState(PowerState),
FwVersion(FwType),
GetSmbusTelemetryAddr,
SetArcState {
state: ArcState,
},
ResetSafeClks {
arg: u32,
},
ToggleTensixReset {
arg: u32,
},
DeassertRiscVReset,
GetAiclk,
TriggerReset,
GetHarvesting,
TriggerSpiCopyLtoR,
GetSpiDumpAddr,
SpiRead {
addr: u32,
},
SpiWrite,
}
Variants§
Nop
Test
ArcGoToSleep
SetPowerState(PowerState)
FwVersion(FwType)
GetSmbusTelemetryAddr
SetArcState
ResetSafeClks
ToggleTensixReset
DeassertRiscVReset
GetAiclk
TriggerReset
GetHarvesting
TriggerSpiCopyLtoR
GetSpiDumpAddr
SpiRead
SpiWrite
Implementations§
Trait Implementations§
Source§impl Debug for TypedArcMsg
impl Debug for TypedArcMsg
Auto Trait Implementations§
impl Freeze for TypedArcMsg
impl RefUnwindSafe for TypedArcMsg
impl Send for TypedArcMsg
impl Sync for TypedArcMsg
impl Unpin for TypedArcMsg
impl UnwindSafe for TypedArcMsg
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