#[doc = "Register `MAINT1` writer"]
pub struct W(crate::W<MAINT1_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<MAINT1_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<MAINT1_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<MAINT1_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `INDEX` writer - Invalidate Index"]
pub type INDEX_W<'a, const O: u8> = crate::FieldWriter<'a, u32, MAINT1_SPEC, u8, u8, 5, O>;
#[doc = "Invalidate Way"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum WAY_AW {
#[doc = "0: Way 0 is selection for index invalidation"]
WAY0 = 0,
#[doc = "1: Way 1 is selection for index invalidation"]
WAY1 = 1,
#[doc = "2: Way 2 is selection for index invalidation"]
WAY2 = 2,
#[doc = "3: Way 3 is selection for index invalidation"]
WAY3 = 3,
}
impl From<WAY_AW> for u8 {
#[inline(always)]
fn from(variant: WAY_AW) -> Self {
variant as _
}
}
#[doc = "Field `WAY` writer - Invalidate Way"]
pub type WAY_W<'a, const O: u8> = crate::FieldWriterSafe<'a, u32, MAINT1_SPEC, u8, WAY_AW, 2, O>;
impl<'a, const O: u8> WAY_W<'a, O> {
#[doc = "Way 0 is selection for index invalidation"]
#[inline(always)]
pub fn way0(self) -> &'a mut W {
self.variant(WAY_AW::WAY0)
}
#[doc = "Way 1 is selection for index invalidation"]
#[inline(always)]
pub fn way1(self) -> &'a mut W {
self.variant(WAY_AW::WAY1)
}
#[doc = "Way 2 is selection for index invalidation"]
#[inline(always)]
pub fn way2(self) -> &'a mut W {
self.variant(WAY_AW::WAY2)
}
#[doc = "Way 3 is selection for index invalidation"]
#[inline(always)]
pub fn way3(self) -> &'a mut W {
self.variant(WAY_AW::WAY3)
}
}
impl W {
#[doc = "Bits 4:8 - Invalidate Index"]
#[inline(always)]
#[must_use]
pub fn index(&mut self) -> INDEX_W<4> {
INDEX_W::new(self)
}
#[doc = "Bits 30:31 - Invalidate Way"]
#[inline(always)]
#[must_use]
pub fn way(&mut self) -> WAY_W<30> {
WAY_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 = "Cache Maintenance Register 1\n\nThis register you can [`write_with_zero`](crate::generic::Reg::write_with_zero). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [maint1](index.html) module"]
pub struct MAINT1_SPEC;
impl crate::RegisterSpec for MAINT1_SPEC {
type Ux = u32;
}
#[doc = "`write(|w| ..)` method takes [maint1::W](W) writer structure"]
impl crate::Writable for MAINT1_SPEC {
type Writer = W;
const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}