#[doc = "Register `L2_CACHE_BLOCKSIZE_CONF` reader"]
pub type R = crate::R<L2_CACHE_BLOCKSIZE_CONF_SPEC>;
#[doc = "Field `L2_CACHE_BLOCKSIZE_8` reader - The field is used to configureblocksize of L2-Cache as 8 bytes. This field and all other fields within this register is onehot."]
pub type L2_CACHE_BLOCKSIZE_8_R = crate::BitReader;
#[doc = "Field `L2_CACHE_BLOCKSIZE_16` reader - The field is used to configureblocksize of L2-Cache as 16 bytes. This field and all other fields within this register is onehot."]
pub type L2_CACHE_BLOCKSIZE_16_R = crate::BitReader;
#[doc = "Field `L2_CACHE_BLOCKSIZE_32` reader - The field is used to configureblocksize of L2-Cache as 32 bytes. This field and all other fields within this register is onehot."]
pub type L2_CACHE_BLOCKSIZE_32_R = crate::BitReader;
#[doc = "Field `L2_CACHE_BLOCKSIZE_64` reader - The field is used to configureblocksize of L2-Cache as 64 bytes. This field and all other fields within this register is onehot."]
pub type L2_CACHE_BLOCKSIZE_64_R = crate::BitReader;
#[doc = "Field `L2_CACHE_BLOCKSIZE_128` reader - The field is used to configureblocksize of L2-Cache as 128 bytes. This field and all other fields within this register is onehot."]
pub type L2_CACHE_BLOCKSIZE_128_R = crate::BitReader;
#[doc = "Field `L2_CACHE_BLOCKSIZE_256` reader - The field is used to configureblocksize of L2-Cache as 256 bytes. This field and all other fields within this register is onehot."]
pub type L2_CACHE_BLOCKSIZE_256_R = crate::BitReader;
impl R {
#[doc = "Bit 0 - The field is used to configureblocksize of L2-Cache as 8 bytes. This field and all other fields within this register is onehot."]
#[inline(always)]
pub fn l2_cache_blocksize_8(&self) -> L2_CACHE_BLOCKSIZE_8_R {
L2_CACHE_BLOCKSIZE_8_R::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - The field is used to configureblocksize of L2-Cache as 16 bytes. This field and all other fields within this register is onehot."]
#[inline(always)]
pub fn l2_cache_blocksize_16(&self) -> L2_CACHE_BLOCKSIZE_16_R {
L2_CACHE_BLOCKSIZE_16_R::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bit 2 - The field is used to configureblocksize of L2-Cache as 32 bytes. This field and all other fields within this register is onehot."]
#[inline(always)]
pub fn l2_cache_blocksize_32(&self) -> L2_CACHE_BLOCKSIZE_32_R {
L2_CACHE_BLOCKSIZE_32_R::new(((self.bits >> 2) & 1) != 0)
}
#[doc = "Bit 3 - The field is used to configureblocksize of L2-Cache as 64 bytes. This field and all other fields within this register is onehot."]
#[inline(always)]
pub fn l2_cache_blocksize_64(&self) -> L2_CACHE_BLOCKSIZE_64_R {
L2_CACHE_BLOCKSIZE_64_R::new(((self.bits >> 3) & 1) != 0)
}
#[doc = "Bit 4 - The field is used to configureblocksize of L2-Cache as 128 bytes. This field and all other fields within this register is onehot."]
#[inline(always)]
pub fn l2_cache_blocksize_128(&self) -> L2_CACHE_BLOCKSIZE_128_R {
L2_CACHE_BLOCKSIZE_128_R::new(((self.bits >> 4) & 1) != 0)
}
#[doc = "Bit 5 - The field is used to configureblocksize of L2-Cache as 256 bytes. This field and all other fields within this register is onehot."]
#[inline(always)]
pub fn l2_cache_blocksize_256(&self) -> L2_CACHE_BLOCKSIZE_256_R {
L2_CACHE_BLOCKSIZE_256_R::new(((self.bits >> 5) & 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("L2_CACHE_BLOCKSIZE_CONF")
.field(
"l2_cache_blocksize_8",
&format_args!("{}", self.l2_cache_blocksize_8().bit()),
)
.field(
"l2_cache_blocksize_16",
&format_args!("{}", self.l2_cache_blocksize_16().bit()),
)
.field(
"l2_cache_blocksize_32",
&format_args!("{}", self.l2_cache_blocksize_32().bit()),
)
.field(
"l2_cache_blocksize_64",
&format_args!("{}", self.l2_cache_blocksize_64().bit()),
)
.field(
"l2_cache_blocksize_128",
&format_args!("{}", self.l2_cache_blocksize_128().bit()),
)
.field(
"l2_cache_blocksize_256",
&format_args!("{}", self.l2_cache_blocksize_256().bit()),
)
.finish()
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for crate::generic::Reg<L2_CACHE_BLOCKSIZE_CONF_SPEC> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
self.read().fmt(f)
}
}
#[doc = "L2 Cache BlockSize mode configure register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`l2_cache_blocksize_conf::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct L2_CACHE_BLOCKSIZE_CONF_SPEC;
impl crate::RegisterSpec for L2_CACHE_BLOCKSIZE_CONF_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [`l2_cache_blocksize_conf::R`](R) reader structure"]
impl crate::Readable for L2_CACHE_BLOCKSIZE_CONF_SPEC {}
#[doc = "`reset()` method sets L2_CACHE_BLOCKSIZE_CONF to value 0"]
impl crate::Resettable for L2_CACHE_BLOCKSIZE_CONF_SPEC {
const RESET_VALUE: Self::Ux = 0;
}