mimxrt595s/ahb_secure_ctrl/
ahb_periph1_slave_rule1.rs

1#[doc = "Register `AHB_PERIPH1_SLAVE_RULE1` reader"]
2pub struct R(crate::R<AHB_PERIPH1_SLAVE_RULE1_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<AHB_PERIPH1_SLAVE_RULE1_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<AHB_PERIPH1_SLAVE_RULE1_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<AHB_PERIPH1_SLAVE_RULE1_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `AHB_PERIPH1_SLAVE_RULE1` writer"]
17pub struct W(crate::W<AHB_PERIPH1_SLAVE_RULE1_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<AHB_PERIPH1_SLAVE_RULE1_SPEC>;
20    #[inline(always)]
21    fn deref(&self) -> &Self::Target {
22        &self.0
23    }
24}
25impl core::ops::DerefMut for W {
26    #[inline(always)]
27    fn deref_mut(&mut self) -> &mut Self::Target {
28        &mut self.0
29    }
30}
31impl From<crate::W<AHB_PERIPH1_SLAVE_RULE1_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<AHB_PERIPH1_SLAVE_RULE1_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `FLEXCOMM16` reader - FLEXCOMM 16"]
38pub type FLEXCOMM16_R = crate::FieldReader<u8, FLEXCOMM16_A>;
39#[doc = "FLEXCOMM 16\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41#[repr(u8)]
42pub enum FLEXCOMM16_A {
43    #[doc = "0: Non-secure and non-privilege user access allowed"]
44    NONSECURE_NONPRIV_USER_ALLOWED = 0,
45    #[doc = "1: Non-secure and privilege access allowed"]
46    NONSECURE_PRIV_USER_ALLOWED = 1,
47    #[doc = "2: Secure and non-privilege user access allowed"]
48    SECURE_NONPRIV_USER_ALLOWED = 2,
49    #[doc = "3: Secure and privilege user access allowed"]
50    SECURE_PRIV_USER_ALLOWED = 3,
51}
52impl From<FLEXCOMM16_A> for u8 {
53    #[inline(always)]
54    fn from(variant: FLEXCOMM16_A) -> Self {
55        variant as _
56    }
57}
58impl FLEXCOMM16_R {
59    #[doc = "Get enumerated values variant"]
60    #[inline(always)]
61    pub fn variant(&self) -> FLEXCOMM16_A {
62        match self.bits {
63            0 => FLEXCOMM16_A::NONSECURE_NONPRIV_USER_ALLOWED,
64            1 => FLEXCOMM16_A::NONSECURE_PRIV_USER_ALLOWED,
65            2 => FLEXCOMM16_A::SECURE_NONPRIV_USER_ALLOWED,
66            3 => FLEXCOMM16_A::SECURE_PRIV_USER_ALLOWED,
67            _ => unreachable!(),
68        }
69    }
70    #[doc = "Checks if the value of the field is `NONSECURE_NONPRIV_USER_ALLOWED`"]
71    #[inline(always)]
72    pub fn is_nonsecure_nonpriv_user_allowed(&self) -> bool {
73        *self == FLEXCOMM16_A::NONSECURE_NONPRIV_USER_ALLOWED
74    }
75    #[doc = "Checks if the value of the field is `NONSECURE_PRIV_USER_ALLOWED`"]
76    #[inline(always)]
77    pub fn is_nonsecure_priv_user_allowed(&self) -> bool {
78        *self == FLEXCOMM16_A::NONSECURE_PRIV_USER_ALLOWED
79    }
80    #[doc = "Checks if the value of the field is `SECURE_NONPRIV_USER_ALLOWED`"]
81    #[inline(always)]
82    pub fn is_secure_nonpriv_user_allowed(&self) -> bool {
83        *self == FLEXCOMM16_A::SECURE_NONPRIV_USER_ALLOWED
84    }
85    #[doc = "Checks if the value of the field is `SECURE_PRIV_USER_ALLOWED`"]
86    #[inline(always)]
87    pub fn is_secure_priv_user_allowed(&self) -> bool {
88        *self == FLEXCOMM16_A::SECURE_PRIV_USER_ALLOWED
89    }
90}
91#[doc = "Field `FLEXCOMM16` writer - FLEXCOMM 16"]
92pub type FLEXCOMM16_W<'a, const O: u8> =
93    crate::FieldWriterSafe<'a, u32, AHB_PERIPH1_SLAVE_RULE1_SPEC, u8, FLEXCOMM16_A, 2, O>;
94impl<'a, const O: u8> FLEXCOMM16_W<'a, O> {
95    #[doc = "Non-secure and non-privilege user access allowed"]
96    #[inline(always)]
97    pub fn nonsecure_nonpriv_user_allowed(self) -> &'a mut W {
98        self.variant(FLEXCOMM16_A::NONSECURE_NONPRIV_USER_ALLOWED)
99    }
100    #[doc = "Non-secure and privilege access allowed"]
101    #[inline(always)]
102    pub fn nonsecure_priv_user_allowed(self) -> &'a mut W {
103        self.variant(FLEXCOMM16_A::NONSECURE_PRIV_USER_ALLOWED)
104    }
105    #[doc = "Secure and non-privilege user access allowed"]
106    #[inline(always)]
107    pub fn secure_nonpriv_user_allowed(self) -> &'a mut W {
108        self.variant(FLEXCOMM16_A::SECURE_NONPRIV_USER_ALLOWED)
109    }
110    #[doc = "Secure and privilege user access allowed"]
111    #[inline(always)]
112    pub fn secure_priv_user_allowed(self) -> &'a mut W {
113        self.variant(FLEXCOMM16_A::SECURE_PRIV_USER_ALLOWED)
114    }
115}
116impl R {
117    #[doc = "Bits 0:1 - FLEXCOMM 16"]
118    #[inline(always)]
119    pub fn flexcomm16(&self) -> FLEXCOMM16_R {
120        FLEXCOMM16_R::new((self.bits & 3) as u8)
121    }
122}
123impl W {
124    #[doc = "Bits 0:1 - FLEXCOMM 16"]
125    #[inline(always)]
126    #[must_use]
127    pub fn flexcomm16(&mut self) -> FLEXCOMM16_W<0> {
128        FLEXCOMM16_W::new(self)
129    }
130    #[doc = "Writes raw bits to the register."]
131    #[inline(always)]
132    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
133        self.0.bits(bits);
134        self
135    }
136}
137#[doc = "AHB Peripheral 1 Slave Rule 1 Register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [ahb_periph1_slave_rule1](index.html) module"]
138pub struct AHB_PERIPH1_SLAVE_RULE1_SPEC;
139impl crate::RegisterSpec for AHB_PERIPH1_SLAVE_RULE1_SPEC {
140    type Ux = u32;
141}
142#[doc = "`read()` method returns [ahb_periph1_slave_rule1::R](R) reader structure"]
143impl crate::Readable for AHB_PERIPH1_SLAVE_RULE1_SPEC {
144    type Reader = R;
145}
146#[doc = "`write(|w| ..)` method takes [ahb_periph1_slave_rule1::W](W) writer structure"]
147impl crate::Writable for AHB_PERIPH1_SLAVE_RULE1_SPEC {
148    type Writer = W;
149    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
150    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
151}
152#[doc = "`reset()` method sets AHB_PERIPH1_SLAVE_RULE1 to value 0"]
153impl crate::Resettable for AHB_PERIPH1_SLAVE_RULE1_SPEC {
154    const RESET_VALUE: Self::Ux = 0;
155}