#[doc = "Register `ICACHE_FREEZE` reader"]
pub struct R(crate::R<ICACHE_FREEZE_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<ICACHE_FREEZE_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<ICACHE_FREEZE_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<ICACHE_FREEZE_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `ICACHE_FREEZE` writer"]
pub struct W(crate::W<ICACHE_FREEZE_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<ICACHE_FREEZE_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::DerefMut for W {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl From<crate::W<ICACHE_FREEZE_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<ICACHE_FREEZE_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `ENA` reader - The bit is used to enable icache freeze mode"]
pub type ENA_R = crate::BitReader;
#[doc = "Field `ENA` writer - The bit is used to enable icache freeze mode"]
pub type ENA_W<'a, const O: u8> = crate::BitWriter<'a, ICACHE_FREEZE_SPEC, O>;
#[doc = "Field `MODE` reader - The bit is used to configure freeze mode, 0: assert busy if CPU miss 1: assert hit if CPU miss"]
pub type MODE_R = crate::BitReader;
#[doc = "Field `MODE` writer - The bit is used to configure freeze mode, 0: assert busy if CPU miss 1: assert hit if CPU miss"]
pub type MODE_W<'a, const O: u8> = crate::BitWriter<'a, ICACHE_FREEZE_SPEC, O>;
#[doc = "Field `DONE` reader - The bit is used to indicate icache freeze success"]
pub type DONE_R = crate::BitReader;
impl R {
#[doc = "Bit 0 - The bit is used to enable icache freeze mode"]
#[inline(always)]
pub fn ena(&self) -> ENA_R {
ENA_R::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - The bit is used to configure freeze mode, 0: assert busy if CPU miss 1: assert hit if CPU miss"]
#[inline(always)]
pub fn mode(&self) -> MODE_R {
MODE_R::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bit 2 - The bit is used to indicate icache freeze success"]
#[inline(always)]
pub fn done(&self) -> DONE_R {
DONE_R::new(((self.bits >> 2) & 1) != 0)
}
}
#[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("ICACHE_FREEZE")
.field("ena", &format_args!("{}", self.ena().bit()))
.field("mode", &format_args!("{}", self.mode().bit()))
.field("done", &format_args!("{}", self.done().bit()))
.finish()
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for crate::generic::Reg<ICACHE_FREEZE_SPEC> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
self.read().fmt(f)
}
}
impl W {
#[doc = "Bit 0 - The bit is used to enable icache freeze mode"]
#[inline(always)]
#[must_use]
pub fn ena(&mut self) -> ENA_W<0> {
ENA_W::new(self)
}
#[doc = "Bit 1 - The bit is used to configure freeze mode, 0: assert busy if CPU miss 1: assert hit if CPU miss"]
#[inline(always)]
#[must_use]
pub fn mode(&mut self) -> MODE_W<1> {
MODE_W::new(self)
}
#[doc = "Writes raw bits to the register."]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "******* Description ***********\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [icache_freeze](index.html) module"]
pub struct ICACHE_FREEZE_SPEC;
impl crate::RegisterSpec for ICACHE_FREEZE_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [icache_freeze::R](R) reader structure"]
impl crate::Readable for ICACHE_FREEZE_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [icache_freeze::W](W) writer structure"]
impl crate::Writable for ICACHE_FREEZE_SPEC {
type Writer = W;
const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets ICACHE_FREEZE to value 0x04"]
impl crate::Resettable for ICACHE_FREEZE_SPEC {
const RESET_VALUE: Self::Ux = 0x04;
}