rp2040_pac/busctrl/
perfctr2.rs

1#[doc = "Register `PERFCTR2` reader"]
2pub type R = crate::R<PERFCTR2_SPEC>;
3#[doc = "Register `PERFCTR2` writer"]
4pub type W = crate::W<PERFCTR2_SPEC>;
5#[doc = "Field `PERFCTR2` reader - Busfabric saturating performance counter 2  
6 Count some event signal from the busfabric arbiters.  
7 Write any value to clear. Select an event to count using PERFSEL2"]
8pub type PERFCTR2_R = crate::FieldReader<u32>;
9#[doc = "Field `PERFCTR2` writer - Busfabric saturating performance counter 2  
10 Count some event signal from the busfabric arbiters.  
11 Write any value to clear. Select an event to count using PERFSEL2"]
12pub type PERFCTR2_W<'a, REG> = crate::FieldWriter<'a, REG, 24, u32>;
13impl R {
14    #[doc = "Bits 0:23 - Busfabric saturating performance counter 2  
15 Count some event signal from the busfabric arbiters.  
16 Write any value to clear. Select an event to count using PERFSEL2"]
17    #[inline(always)]
18    pub fn perfctr2(&self) -> PERFCTR2_R {
19        PERFCTR2_R::new(self.bits & 0x00ff_ffff)
20    }
21}
22impl W {
23    #[doc = "Bits 0:23 - Busfabric saturating performance counter 2  
24 Count some event signal from the busfabric arbiters.  
25 Write any value to clear. Select an event to count using PERFSEL2"]
26    #[inline(always)]
27    #[must_use]
28    pub fn perfctr2(&mut self) -> PERFCTR2_W<PERFCTR2_SPEC> {
29        PERFCTR2_W::new(self, 0)
30    }
31    #[doc = r" Writes raw bits to the register."]
32    #[doc = r""]
33    #[doc = r" # Safety"]
34    #[doc = r""]
35    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
36    #[inline(always)]
37    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
38        self.bits = bits;
39        self
40    }
41}
42#[doc = "Bus fabric performance counter 2  
43
44You can [`read`](crate::generic::Reg::read) this register and get [`perfctr2::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`perfctr2::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
45pub struct PERFCTR2_SPEC;
46impl crate::RegisterSpec for PERFCTR2_SPEC {
47    type Ux = u32;
48}
49#[doc = "`read()` method returns [`perfctr2::R`](R) reader structure"]
50impl crate::Readable for PERFCTR2_SPEC {}
51#[doc = "`write(|w| ..)` method takes [`perfctr2::W`](W) writer structure"]
52impl crate::Writable for PERFCTR2_SPEC {
53    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
54    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0x00ff_ffff;
55}
56#[doc = "`reset()` method sets PERFCTR2 to value 0"]
57impl crate::Resettable for PERFCTR2_SPEC {
58    const RESET_VALUE: u32 = 0;
59}