esp32c3/extmem/
cache_mmu_fault_content.rs1#[doc = "Register `CACHE_MMU_FAULT_CONTENT` reader"]
2pub type R = crate::R<CACHE_MMU_FAULT_CONTENT_SPEC>;
3#[doc = "Field `CACHE_MMU_FAULT_CONTENT` reader - The bits are used to indicate the content of mmu entry which cause mmu fault.."]
4pub type CACHE_MMU_FAULT_CONTENT_R = crate::FieldReader<u16>;
5#[doc = "Field `CACHE_MMU_FAULT_CODE` reader - The right-most 3 bits are used to indicate the operations which cause mmu fault occurrence. 0: default, 1: cpu miss, 2: preload miss, 3: writeback, 4: cpu miss evict recovery address, 5: load miss evict recovery address, 6: external dma tx, 7: external dma rx. The most significant bit is used to indicate this operation occurs in which one icache."]
6pub type CACHE_MMU_FAULT_CODE_R = crate::FieldReader;
7impl R {
8    #[doc = "Bits 0:9 - The bits are used to indicate the content of mmu entry which cause mmu fault.."]
9    #[inline(always)]
10    pub fn cache_mmu_fault_content(&self) -> CACHE_MMU_FAULT_CONTENT_R {
11        CACHE_MMU_FAULT_CONTENT_R::new((self.bits & 0x03ff) as u16)
12    }
13    #[doc = "Bits 10:13 - The right-most 3 bits are used to indicate the operations which cause mmu fault occurrence. 0: default, 1: cpu miss, 2: preload miss, 3: writeback, 4: cpu miss evict recovery address, 5: load miss evict recovery address, 6: external dma tx, 7: external dma rx. The most significant bit is used to indicate this operation occurs in which one icache."]
14    #[inline(always)]
15    pub fn cache_mmu_fault_code(&self) -> CACHE_MMU_FAULT_CODE_R {
16        CACHE_MMU_FAULT_CODE_R::new(((self.bits >> 10) & 0x0f) as u8)
17    }
18}
19#[cfg(feature = "impl-register-debug")]
20impl core::fmt::Debug for R {
21    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
22        f.debug_struct("CACHE_MMU_FAULT_CONTENT")
23            .field("cache_mmu_fault_content", &self.cache_mmu_fault_content())
24            .field("cache_mmu_fault_code", &self.cache_mmu_fault_code())
25            .finish()
26    }
27}
28#[doc = "This description will be updated in the near future.\n\nYou can [`read`](crate::Reg::read) this register and get [`cache_mmu_fault_content::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
29pub struct CACHE_MMU_FAULT_CONTENT_SPEC;
30impl crate::RegisterSpec for CACHE_MMU_FAULT_CONTENT_SPEC {
31    type Ux = u32;
32}
33#[doc = "`read()` method returns [`cache_mmu_fault_content::R`](R) reader structure"]
34impl crate::Readable for CACHE_MMU_FAULT_CONTENT_SPEC {}
35#[doc = "`reset()` method sets CACHE_MMU_FAULT_CONTENT to value 0"]
36impl crate::Resettable for CACHE_MMU_FAULT_CONTENT_SPEC {}