Struct nrf52840_pac::cc_host_rgf::RegisterBlock

source ·
#[repr(C)]
pub struct RegisterBlock { pub host_cryptokey_sel: HOST_CRYPTOKEY_SEL, pub host_iot_kprtl_lock: HOST_IOT_KPRTL_LOCK, pub host_iot_kdr0: HOST_IOT_KDR0, pub host_iot_kdr1: HOST_IOT_KDR1, pub host_iot_kdr2: HOST_IOT_KDR2, pub host_iot_kdr3: HOST_IOT_KDR3, pub host_iot_lcs: HOST_IOT_LCS, /* private fields */ }
Expand description

Register block

Fields§

§host_cryptokey_sel: HOST_CRYPTOKEY_SEL

0x1a38 - AES hardware key select

§host_iot_kprtl_lock: HOST_IOT_KPRTL_LOCK

0x1a4c - This write-once register is the K_PRTL lock register. When this register is set, K_PRTL can not be used and a zeroed key will be used instead. The value of this register is saved in the CRYPTOCELL AO power domain.

§host_iot_kdr0: HOST_IOT_KDR0

0x1a50 - This register holds bits 31:0 of K_DR. The value of this register is saved in the CRYPTOCELL AO power domain. Reading from this address returns the K_DR valid status indicating if K_DR is successfully retained.

§host_iot_kdr1: HOST_IOT_KDR1

0x1a54 - This register holds bits 63:32 of K_DR. The value of this register is saved in the CRYPTOCELL AO power domain.

§host_iot_kdr2: HOST_IOT_KDR2

0x1a58 - This register holds bits 95:64 of K_DR. The value of this register is saved in the CRYPTOCELL AO power domain.

§host_iot_kdr3: HOST_IOT_KDR3

0x1a5c - This register holds bits 127:96 of K_DR. The value of this register is saved in the CRYPTOCELL AO power domain.

§host_iot_lcs: HOST_IOT_LCS

0x1a60 - Controls lifecycle state (LCS) for CRYPTOCELL subsystem

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.