1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#[doc = "Register `USBPLLSTAT` reader"]
pub type R = crate::R<UsbpllstatSpec>;
#[doc = "VCO Bypass Status\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Vcobyst {
    #[doc = "0: Normal Mode is entered"]
    Value1 = 0,
    #[doc = "1: Prescaler Mode is entered"]
    Value2 = 1,
}
impl From<Vcobyst> for bool {
    #[inline(always)]
    fn from(variant: Vcobyst) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `VCOBYST` reader - VCO Bypass Status"]
pub type VcobystR = crate::BitReader<Vcobyst>;
impl VcobystR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Vcobyst {
        match self.bits {
            false => Vcobyst::Value1,
            true => Vcobyst::Value2,
        }
    }
    #[doc = "Normal Mode is entered"]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == Vcobyst::Value1
    }
    #[doc = "Prescaler Mode is entered"]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == Vcobyst::Value2
    }
}
#[doc = "PLL Power-saving Mode Status\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Pwdstat {
    #[doc = "0: PLL Power-saving Mode was not entered"]
    Value1 = 0,
    #[doc = "1: PLL Power-saving Mode was entered"]
    Value2 = 1,
}
impl From<Pwdstat> for bool {
    #[inline(always)]
    fn from(variant: Pwdstat) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `PWDSTAT` reader - PLL Power-saving Mode Status"]
pub type PwdstatR = crate::BitReader<Pwdstat>;
impl PwdstatR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Pwdstat {
        match self.bits {
            false => Pwdstat::Value1,
            true => Pwdstat::Value2,
        }
    }
    #[doc = "PLL Power-saving Mode was not entered"]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == Pwdstat::Value1
    }
    #[doc = "PLL Power-saving Mode was entered"]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == Pwdstat::Value2
    }
}
#[doc = "PLL VCO Lock Status\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Vcolock {
    #[doc = "0: The frequency difference of fREF and fDIV is greater than allowed. The VCO part of the PLL can not lock on a target frequency."]
    Value1 = 0,
    #[doc = "1: The frequency difference of fREF and fDIV is small enough to enable a stable VCO operation"]
    Value2 = 1,
}
impl From<Vcolock> for bool {
    #[inline(always)]
    fn from(variant: Vcolock) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `VCOLOCK` reader - PLL VCO Lock Status"]
pub type VcolockR = crate::BitReader<Vcolock>;
impl VcolockR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Vcolock {
        match self.bits {
            false => Vcolock::Value1,
            true => Vcolock::Value2,
        }
    }
    #[doc = "The frequency difference of fREF and fDIV is greater than allowed. The VCO part of the PLL can not lock on a target frequency."]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == Vcolock::Value1
    }
    #[doc = "The frequency difference of fREF and fDIV is small enough to enable a stable VCO operation"]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == Vcolock::Value2
    }
}
#[doc = "Bypass Mode Status\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum By {
    #[doc = "0: Bypass Mode is not entered"]
    Value1 = 0,
    #[doc = "1: Bypass Mode is entered. Input fOSC is selected as output fPLL."]
    Value2 = 1,
}
impl From<By> for bool {
    #[inline(always)]
    fn from(variant: By) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `BY` reader - Bypass Mode Status"]
pub type ByR = crate::BitReader<By>;
impl ByR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> By {
        match self.bits {
            false => By::Value1,
            true => By::Value2,
        }
    }
    #[doc = "Bypass Mode is not entered"]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == By::Value1
    }
    #[doc = "Bypass Mode is entered. Input fOSC is selected as output fPLL."]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == By::Value2
    }
}
#[doc = "PLL LOCK Status\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Vcolocked {
    #[doc = "0: PLL not locked"]
    Value1 = 0,
    #[doc = "1: PLL locked"]
    Value2 = 1,
}
impl From<Vcolocked> for bool {
    #[inline(always)]
    fn from(variant: Vcolocked) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `VCOLOCKED` reader - PLL LOCK Status"]
pub type VcolockedR = crate::BitReader<Vcolocked>;
impl VcolockedR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Vcolocked {
        match self.bits {
            false => Vcolocked::Value1,
            true => Vcolocked::Value2,
        }
    }
    #[doc = "PLL not locked"]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == Vcolocked::Value1
    }
    #[doc = "PLL locked"]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == Vcolocked::Value2
    }
}
impl R {
    #[doc = "Bit 0 - VCO Bypass Status"]
    #[inline(always)]
    pub fn vcobyst(&self) -> VcobystR {
        VcobystR::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - PLL Power-saving Mode Status"]
    #[inline(always)]
    pub fn pwdstat(&self) -> PwdstatR {
        PwdstatR::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - PLL VCO Lock Status"]
    #[inline(always)]
    pub fn vcolock(&self) -> VcolockR {
        VcolockR::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 6 - Bypass Mode Status"]
    #[inline(always)]
    pub fn by(&self) -> ByR {
        ByR::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - PLL LOCK Status"]
    #[inline(always)]
    pub fn vcolocked(&self) -> VcolockedR {
        VcolockedR::new(((self.bits >> 7) & 1) != 0)
    }
}
#[doc = "USB PLL Status Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`usbpllstat::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct UsbpllstatSpec;
impl crate::RegisterSpec for UsbpllstatSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`usbpllstat::R`](R) reader structure"]
impl crate::Readable for UsbpllstatSpec {}
#[doc = "`reset()` method sets USBPLLSTAT to value 0x02"]
impl crate::Resettable for UsbpllstatSpec {
    const RESET_VALUE: u32 = 0x02;
}