#[doc = "Register `STATUS` reader"]
pub struct R(crate::R<STATUS_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<STATUS_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<STATUS_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<STATUS_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Field `STATE` reader - Indicates the state of the eFuse state machine."]
pub type STATE_R = crate::FieldReader;
#[doc = "Field `OTP_LOAD_SW` reader - The value of OTP_LOAD_SW."]
pub type OTP_LOAD_SW_R = crate::BitReader;
#[doc = "Field `OTP_VDDQ_C_SYNC2` reader - The value of OTP_VDDQ_C_SYNC2."]
pub type OTP_VDDQ_C_SYNC2_R = crate::BitReader;
#[doc = "Field `OTP_STROBE_SW` reader - The value of OTP_STROBE_SW."]
pub type OTP_STROBE_SW_R = crate::BitReader;
#[doc = "Field `OTP_CSB_SW` reader - The value of OTP_CSB_SW."]
pub type OTP_CSB_SW_R = crate::BitReader;
#[doc = "Field `OTP_PGENB_SW` reader - The value of OTP_PGENB_SW."]
pub type OTP_PGENB_SW_R = crate::BitReader;
#[doc = "Field `OTP_VDDQ_IS_SW` reader - The value of OTP_VDDQ_IS_SW."]
pub type OTP_VDDQ_IS_SW_R = crate::BitReader;
#[doc = "Field `BLK0_VALID_BIT_CNT` reader - Indicates the number of block valid bit."]
pub type BLK0_VALID_BIT_CNT_R = crate::FieldReader<u16>;
impl R {
#[doc = "Bits 0:3 - Indicates the state of the eFuse state machine."]
#[inline(always)]
pub fn state(&self) -> STATE_R {
STATE_R::new((self.bits & 0x0f) as u8)
}
#[doc = "Bit 4 - The value of OTP_LOAD_SW."]
#[inline(always)]
pub fn otp_load_sw(&self) -> OTP_LOAD_SW_R {
OTP_LOAD_SW_R::new(((self.bits >> 4) & 1) != 0)
}
#[doc = "Bit 5 - The value of OTP_VDDQ_C_SYNC2."]
#[inline(always)]
pub fn otp_vddq_c_sync2(&self) -> OTP_VDDQ_C_SYNC2_R {
OTP_VDDQ_C_SYNC2_R::new(((self.bits >> 5) & 1) != 0)
}
#[doc = "Bit 6 - The value of OTP_STROBE_SW."]
#[inline(always)]
pub fn otp_strobe_sw(&self) -> OTP_STROBE_SW_R {
OTP_STROBE_SW_R::new(((self.bits >> 6) & 1) != 0)
}
#[doc = "Bit 7 - The value of OTP_CSB_SW."]
#[inline(always)]
pub fn otp_csb_sw(&self) -> OTP_CSB_SW_R {
OTP_CSB_SW_R::new(((self.bits >> 7) & 1) != 0)
}
#[doc = "Bit 8 - The value of OTP_PGENB_SW."]
#[inline(always)]
pub fn otp_pgenb_sw(&self) -> OTP_PGENB_SW_R {
OTP_PGENB_SW_R::new(((self.bits >> 8) & 1) != 0)
}
#[doc = "Bit 9 - The value of OTP_VDDQ_IS_SW."]
#[inline(always)]
pub fn otp_vddq_is_sw(&self) -> OTP_VDDQ_IS_SW_R {
OTP_VDDQ_IS_SW_R::new(((self.bits >> 9) & 1) != 0)
}
#[doc = "Bits 10:19 - Indicates the number of block valid bit."]
#[inline(always)]
pub fn blk0_valid_bit_cnt(&self) -> BLK0_VALID_BIT_CNT_R {
BLK0_VALID_BIT_CNT_R::new(((self.bits >> 10) & 0x03ff) as u16)
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("STATUS")
.field("state", &format_args!("{}", self.state().bits()))
.field("otp_load_sw", &format_args!("{}", self.otp_load_sw().bit()))
.field(
"otp_vddq_c_sync2",
&format_args!("{}", self.otp_vddq_c_sync2().bit()),
)
.field(
"otp_strobe_sw",
&format_args!("{}", self.otp_strobe_sw().bit()),
)
.field("otp_csb_sw", &format_args!("{}", self.otp_csb_sw().bit()))
.field(
"otp_pgenb_sw",
&format_args!("{}", self.otp_pgenb_sw().bit()),
)
.field(
"otp_vddq_is_sw",
&format_args!("{}", self.otp_vddq_is_sw().bit()),
)
.field(
"blk0_valid_bit_cnt",
&format_args!("{}", self.blk0_valid_bit_cnt().bits()),
)
.finish()
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for crate::generic::Reg<STATUS_SPEC> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
self.read().fmt(f)
}
}
#[doc = "eFuse status register.\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [status](index.html) module"]
pub struct STATUS_SPEC;
impl crate::RegisterSpec for STATUS_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [status::R](R) reader structure"]
impl crate::Readable for STATUS_SPEC {
type Reader = R;
}
#[doc = "`reset()` method sets STATUS to value 0"]
impl crate::Resettable for STATUS_SPEC {
const RESET_VALUE: Self::Ux = 0;
}