rp2040_pac/syscfg/
proc_config.rs

1#[doc = "Register `PROC_CONFIG` reader"]
2pub type R = crate::R<PROC_CONFIG_SPEC>;
3#[doc = "Register `PROC_CONFIG` writer"]
4pub type W = crate::W<PROC_CONFIG_SPEC>;
5#[doc = "Field `PROC0_HALTED` reader - Indication that proc0 has halted"]
6pub type PROC0_HALTED_R = crate::BitReader;
7#[doc = "Field `PROC1_HALTED` reader - Indication that proc1 has halted"]
8pub type PROC1_HALTED_R = crate::BitReader;
9#[doc = "Field `PROC0_DAP_INSTID` reader - Configure proc0 DAP instance ID.  
10 Recommend that this is NOT changed until you require debug access in multi-chip environment  
11 WARNING: do not set to 15 as this is reserved for RescueDP"]
12pub type PROC0_DAP_INSTID_R = crate::FieldReader;
13#[doc = "Field `PROC0_DAP_INSTID` writer - Configure proc0 DAP instance ID.  
14 Recommend that this is NOT changed until you require debug access in multi-chip environment  
15 WARNING: do not set to 15 as this is reserved for RescueDP"]
16pub type PROC0_DAP_INSTID_W<'a, REG> = crate::FieldWriter<'a, REG, 4>;
17#[doc = "Field `PROC1_DAP_INSTID` reader - Configure proc1 DAP instance ID.  
18 Recommend that this is NOT changed until you require debug access in multi-chip environment  
19 WARNING: do not set to 15 as this is reserved for RescueDP"]
20pub type PROC1_DAP_INSTID_R = crate::FieldReader;
21#[doc = "Field `PROC1_DAP_INSTID` writer - Configure proc1 DAP instance ID.  
22 Recommend that this is NOT changed until you require debug access in multi-chip environment  
23 WARNING: do not set to 15 as this is reserved for RescueDP"]
24pub type PROC1_DAP_INSTID_W<'a, REG> = crate::FieldWriter<'a, REG, 4>;
25impl R {
26    #[doc = "Bit 0 - Indication that proc0 has halted"]
27    #[inline(always)]
28    pub fn proc0_halted(&self) -> PROC0_HALTED_R {
29        PROC0_HALTED_R::new((self.bits & 1) != 0)
30    }
31    #[doc = "Bit 1 - Indication that proc1 has halted"]
32    #[inline(always)]
33    pub fn proc1_halted(&self) -> PROC1_HALTED_R {
34        PROC1_HALTED_R::new(((self.bits >> 1) & 1) != 0)
35    }
36    #[doc = "Bits 24:27 - Configure proc0 DAP instance ID.  
37 Recommend that this is NOT changed until you require debug access in multi-chip environment  
38 WARNING: do not set to 15 as this is reserved for RescueDP"]
39    #[inline(always)]
40    pub fn proc0_dap_instid(&self) -> PROC0_DAP_INSTID_R {
41        PROC0_DAP_INSTID_R::new(((self.bits >> 24) & 0x0f) as u8)
42    }
43    #[doc = "Bits 28:31 - Configure proc1 DAP instance ID.  
44 Recommend that this is NOT changed until you require debug access in multi-chip environment  
45 WARNING: do not set to 15 as this is reserved for RescueDP"]
46    #[inline(always)]
47    pub fn proc1_dap_instid(&self) -> PROC1_DAP_INSTID_R {
48        PROC1_DAP_INSTID_R::new(((self.bits >> 28) & 0x0f) as u8)
49    }
50}
51impl W {
52    #[doc = "Bits 24:27 - Configure proc0 DAP instance ID.  
53 Recommend that this is NOT changed until you require debug access in multi-chip environment  
54 WARNING: do not set to 15 as this is reserved for RescueDP"]
55    #[inline(always)]
56    #[must_use]
57    pub fn proc0_dap_instid(&mut self) -> PROC0_DAP_INSTID_W<PROC_CONFIG_SPEC> {
58        PROC0_DAP_INSTID_W::new(self, 24)
59    }
60    #[doc = "Bits 28:31 - Configure proc1 DAP instance ID.  
61 Recommend that this is NOT changed until you require debug access in multi-chip environment  
62 WARNING: do not set to 15 as this is reserved for RescueDP"]
63    #[inline(always)]
64    #[must_use]
65    pub fn proc1_dap_instid(&mut self) -> PROC1_DAP_INSTID_W<PROC_CONFIG_SPEC> {
66        PROC1_DAP_INSTID_W::new(self, 28)
67    }
68    #[doc = r" Writes raw bits to the register."]
69    #[doc = r""]
70    #[doc = r" # Safety"]
71    #[doc = r""]
72    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
73    #[inline(always)]
74    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
75        self.bits = bits;
76        self
77    }
78}
79#[doc = "Configuration for processors  
80
81You can [`read`](crate::generic::Reg::read) this register and get [`proc_config::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 [`proc_config::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
82pub struct PROC_CONFIG_SPEC;
83impl crate::RegisterSpec for PROC_CONFIG_SPEC {
84    type Ux = u32;
85}
86#[doc = "`read()` method returns [`proc_config::R`](R) reader structure"]
87impl crate::Readable for PROC_CONFIG_SPEC {}
88#[doc = "`write(|w| ..)` method takes [`proc_config::W`](W) writer structure"]
89impl crate::Writable for PROC_CONFIG_SPEC {
90    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
91    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
92}
93#[doc = "`reset()` method sets PROC_CONFIG to value 0x1000_0000"]
94impl crate::Resettable for PROC_CONFIG_SPEC {
95    const RESET_VALUE: u32 = 0x1000_0000;
96}