#[doc = "Reader of register ACR"]
pub type R = crate::R<u32, super::ACR>;
#[doc = "Writer for register ACR"]
pub type W = crate::W<u32, super::ACR>;
#[doc = "Register ACR `reset()`'s with value 0"]
impl crate::ResetValue for super::ACR {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Reader of field `LATENCY`"]
pub type LATENCY_R = crate::R<u8, u8>;
#[doc = "Write proxy for field `LATENCY`"]
pub struct LATENCY_W<'a> {
w: &'a mut W,
}
impl<'a> LATENCY_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
self.w.bits = (self.w.bits & !0x07) | ((value as u32) & 0x07);
self.w
}
}
#[doc = "Reader of field `PRFTEN`"]
pub type PRFTEN_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `PRFTEN`"]
pub struct PRFTEN_W<'a> {
w: &'a mut W,
}
impl<'a> PRFTEN_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 8)) | (((value as u32) & 0x01) << 8);
self.w
}
}
#[doc = "Reader of field `ICEN`"]
pub type ICEN_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `ICEN`"]
pub struct ICEN_W<'a> {
w: &'a mut W,
}
impl<'a> ICEN_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 9)) | (((value as u32) & 0x01) << 9);
self.w
}
}
#[doc = "Reader of field `DCEN`"]
pub type DCEN_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `DCEN`"]
pub struct DCEN_W<'a> {
w: &'a mut W,
}
impl<'a> DCEN_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 10)) | (((value as u32) & 0x01) << 10);
self.w
}
}
#[doc = "Write proxy for field `ICRST`"]
pub struct ICRST_W<'a> {
w: &'a mut W,
}
impl<'a> ICRST_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 11)) | (((value as u32) & 0x01) << 11);
self.w
}
}
#[doc = "Reader of field `DCRST`"]
pub type DCRST_R = crate::R<bool, bool>;
#[doc = "Write proxy for field `DCRST`"]
pub struct DCRST_W<'a> {
w: &'a mut W,
}
impl<'a> DCRST_W<'a> {
#[doc = r"Sets the field bit"]
#[inline(always)]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r"Clears the field bit"]
#[inline(always)]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub fn bit(self, value: bool) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x01 << 12)) | (((value as u32) & 0x01) << 12);
self.w
}
}
impl R {
#[doc = "Bits 0:2 - Latency"]
#[inline(always)]
pub fn latency(&self) -> LATENCY_R {
LATENCY_R::new((self.bits & 0x07) as u8)
}
#[doc = "Bit 8 - Prefetch enable"]
#[inline(always)]
pub fn prften(&self) -> PRFTEN_R {
PRFTEN_R::new(((self.bits >> 8) & 0x01) != 0)
}
#[doc = "Bit 9 - Instruction cache enable"]
#[inline(always)]
pub fn icen(&self) -> ICEN_R {
ICEN_R::new(((self.bits >> 9) & 0x01) != 0)
}
#[doc = "Bit 10 - Data cache enable"]
#[inline(always)]
pub fn dcen(&self) -> DCEN_R {
DCEN_R::new(((self.bits >> 10) & 0x01) != 0)
}
#[doc = "Bit 12 - Data cache reset"]
#[inline(always)]
pub fn dcrst(&self) -> DCRST_R {
DCRST_R::new(((self.bits >> 12) & 0x01) != 0)
}
}
impl W {
#[doc = "Bits 0:2 - Latency"]
#[inline(always)]
pub fn latency(&mut self) -> LATENCY_W {
LATENCY_W { w: self }
}
#[doc = "Bit 8 - Prefetch enable"]
#[inline(always)]
pub fn prften(&mut self) -> PRFTEN_W {
PRFTEN_W { w: self }
}
#[doc = "Bit 9 - Instruction cache enable"]
#[inline(always)]
pub fn icen(&mut self) -> ICEN_W {
ICEN_W { w: self }
}
#[doc = "Bit 10 - Data cache enable"]
#[inline(always)]
pub fn dcen(&mut self) -> DCEN_W {
DCEN_W { w: self }
}
#[doc = "Bit 11 - Instruction cache reset"]
#[inline(always)]
pub fn icrst(&mut self) -> ICRST_W {
ICRST_W { w: self }
}
#[doc = "Bit 12 - Data cache reset"]
#[inline(always)]
pub fn dcrst(&mut self) -> DCRST_W {
DCRST_W { w: self }
}
}