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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
#[doc = "Register `CA1R` reader"]
pub type R = crate::R<CA1R_SPEC>;
#[doc = "Field `SDR50SUP` reader - SDR50 Support"]
pub type SDR50SUP_R = crate::BitReader<SDR50SUPSELECT_A>;
#[doc = "SDR50 Support\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SDR50SUPSELECT_A {
    #[doc = "0: SDR50 is Not Supported"]
    NO = 0,
    #[doc = "1: SDR50 is Supported"]
    YES = 1,
}
impl From<SDR50SUPSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: SDR50SUPSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl SDR50SUP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> SDR50SUPSELECT_A {
        match self.bits {
            false => SDR50SUPSELECT_A::NO,
            true => SDR50SUPSELECT_A::YES,
        }
    }
    #[doc = "SDR50 is Not Supported"]
    #[inline(always)]
    pub fn is_no(&self) -> bool {
        *self == SDR50SUPSELECT_A::NO
    }
    #[doc = "SDR50 is Supported"]
    #[inline(always)]
    pub fn is_yes(&self) -> bool {
        *self == SDR50SUPSELECT_A::YES
    }
}
#[doc = "Field `SDR104SUP` reader - SDR104 Support"]
pub type SDR104SUP_R = crate::BitReader<SDR104SUPSELECT_A>;
#[doc = "SDR104 Support\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SDR104SUPSELECT_A {
    #[doc = "0: SDR104 is Not Supported"]
    NO = 0,
    #[doc = "1: SDR104 is Supported"]
    YES = 1,
}
impl From<SDR104SUPSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: SDR104SUPSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl SDR104SUP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> SDR104SUPSELECT_A {
        match self.bits {
            false => SDR104SUPSELECT_A::NO,
            true => SDR104SUPSELECT_A::YES,
        }
    }
    #[doc = "SDR104 is Not Supported"]
    #[inline(always)]
    pub fn is_no(&self) -> bool {
        *self == SDR104SUPSELECT_A::NO
    }
    #[doc = "SDR104 is Supported"]
    #[inline(always)]
    pub fn is_yes(&self) -> bool {
        *self == SDR104SUPSELECT_A::YES
    }
}
#[doc = "Field `DDR50SUP` reader - DDR50 Support"]
pub type DDR50SUP_R = crate::BitReader<DDR50SUPSELECT_A>;
#[doc = "DDR50 Support\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DDR50SUPSELECT_A {
    #[doc = "0: DDR50 is Not Supported"]
    NO = 0,
    #[doc = "1: DDR50 is Supported"]
    YES = 1,
}
impl From<DDR50SUPSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: DDR50SUPSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl DDR50SUP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> DDR50SUPSELECT_A {
        match self.bits {
            false => DDR50SUPSELECT_A::NO,
            true => DDR50SUPSELECT_A::YES,
        }
    }
    #[doc = "DDR50 is Not Supported"]
    #[inline(always)]
    pub fn is_no(&self) -> bool {
        *self == DDR50SUPSELECT_A::NO
    }
    #[doc = "DDR50 is Supported"]
    #[inline(always)]
    pub fn is_yes(&self) -> bool {
        *self == DDR50SUPSELECT_A::YES
    }
}
#[doc = "Field `DRVASUP` reader - Driver Type A Support"]
pub type DRVASUP_R = crate::BitReader<DRVASUPSELECT_A>;
#[doc = "Driver Type A Support\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DRVASUPSELECT_A {
    #[doc = "0: Driver Type A is Not Supported"]
    NO = 0,
    #[doc = "1: Driver Type A is Supported"]
    YES = 1,
}
impl From<DRVASUPSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: DRVASUPSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl DRVASUP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> DRVASUPSELECT_A {
        match self.bits {
            false => DRVASUPSELECT_A::NO,
            true => DRVASUPSELECT_A::YES,
        }
    }
    #[doc = "Driver Type A is Not Supported"]
    #[inline(always)]
    pub fn is_no(&self) -> bool {
        *self == DRVASUPSELECT_A::NO
    }
    #[doc = "Driver Type A is Supported"]
    #[inline(always)]
    pub fn is_yes(&self) -> bool {
        *self == DRVASUPSELECT_A::YES
    }
}
#[doc = "Field `DRVCSUP` reader - Driver Type C Support"]
pub type DRVCSUP_R = crate::BitReader<DRVCSUPSELECT_A>;
#[doc = "Driver Type C Support\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DRVCSUPSELECT_A {
    #[doc = "0: Driver Type C is Not Supported"]
    NO = 0,
    #[doc = "1: Driver Type C is Supported"]
    YES = 1,
}
impl From<DRVCSUPSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: DRVCSUPSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl DRVCSUP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> DRVCSUPSELECT_A {
        match self.bits {
            false => DRVCSUPSELECT_A::NO,
            true => DRVCSUPSELECT_A::YES,
        }
    }
    #[doc = "Driver Type C is Not Supported"]
    #[inline(always)]
    pub fn is_no(&self) -> bool {
        *self == DRVCSUPSELECT_A::NO
    }
    #[doc = "Driver Type C is Supported"]
    #[inline(always)]
    pub fn is_yes(&self) -> bool {
        *self == DRVCSUPSELECT_A::YES
    }
}
#[doc = "Field `DRVDSUP` reader - Driver Type D Support"]
pub type DRVDSUP_R = crate::BitReader<DRVDSUPSELECT_A>;
#[doc = "Driver Type D Support\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DRVDSUPSELECT_A {
    #[doc = "0: Driver Type D is Not Supported"]
    NO = 0,
    #[doc = "1: Driver Type D is Supported"]
    YES = 1,
}
impl From<DRVDSUPSELECT_A> for bool {
    #[inline(always)]
    fn from(variant: DRVDSUPSELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl DRVDSUP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> DRVDSUPSELECT_A {
        match self.bits {
            false => DRVDSUPSELECT_A::NO,
            true => DRVDSUPSELECT_A::YES,
        }
    }
    #[doc = "Driver Type D is Not Supported"]
    #[inline(always)]
    pub fn is_no(&self) -> bool {
        *self == DRVDSUPSELECT_A::NO
    }
    #[doc = "Driver Type D is Supported"]
    #[inline(always)]
    pub fn is_yes(&self) -> bool {
        *self == DRVDSUPSELECT_A::YES
    }
}
#[doc = "Field `TCNTRT` reader - Timer Count for Re-Tuning"]
pub type TCNTRT_R = crate::FieldReader<TCNTRTSELECT_A>;
#[doc = "Timer Count for Re-Tuning\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum TCNTRTSELECT_A {
    #[doc = "0: Re-Tuning Timer disabled"]
    DISABLED = 0,
    #[doc = "1: 1 second"]
    _1S = 1,
    #[doc = "2: 2 seconds"]
    _2S = 2,
    #[doc = "3: 4 seconds"]
    _4S = 3,
    #[doc = "4: 8 seconds"]
    _8S = 4,
    #[doc = "5: 16 seconds"]
    _16S = 5,
    #[doc = "6: 32 seconds"]
    _32S = 6,
    #[doc = "7: 64 seconds"]
    _64S = 7,
    #[doc = "8: 128 seconds"]
    _128S = 8,
    #[doc = "9: 256 seconds"]
    _256S = 9,
    #[doc = "10: 512 seconds"]
    _512S = 10,
    #[doc = "11: 1024 seconds"]
    _1024S = 11,
    #[doc = "15: Get information from other source"]
    OTHER = 15,
}
impl From<TCNTRTSELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: TCNTRTSELECT_A) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for TCNTRTSELECT_A {
    type Ux = u8;
}
impl TCNTRT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<TCNTRTSELECT_A> {
        match self.bits {
            0 => Some(TCNTRTSELECT_A::DISABLED),
            1 => Some(TCNTRTSELECT_A::_1S),
            2 => Some(TCNTRTSELECT_A::_2S),
            3 => Some(TCNTRTSELECT_A::_4S),
            4 => Some(TCNTRTSELECT_A::_8S),
            5 => Some(TCNTRTSELECT_A::_16S),
            6 => Some(TCNTRTSELECT_A::_32S),
            7 => Some(TCNTRTSELECT_A::_64S),
            8 => Some(TCNTRTSELECT_A::_128S),
            9 => Some(TCNTRTSELECT_A::_256S),
            10 => Some(TCNTRTSELECT_A::_512S),
            11 => Some(TCNTRTSELECT_A::_1024S),
            15 => Some(TCNTRTSELECT_A::OTHER),
            _ => None,
        }
    }
    #[doc = "Re-Tuning Timer disabled"]
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == TCNTRTSELECT_A::DISABLED
    }
    #[doc = "1 second"]
    #[inline(always)]
    pub fn is_1s(&self) -> bool {
        *self == TCNTRTSELECT_A::_1S
    }
    #[doc = "2 seconds"]
    #[inline(always)]
    pub fn is_2s(&self) -> bool {
        *self == TCNTRTSELECT_A::_2S
    }
    #[doc = "4 seconds"]
    #[inline(always)]
    pub fn is_4s(&self) -> bool {
        *self == TCNTRTSELECT_A::_4S
    }
    #[doc = "8 seconds"]
    #[inline(always)]
    pub fn is_8s(&self) -> bool {
        *self == TCNTRTSELECT_A::_8S
    }
    #[doc = "16 seconds"]
    #[inline(always)]
    pub fn is_16s(&self) -> bool {
        *self == TCNTRTSELECT_A::_16S
    }
    #[doc = "32 seconds"]
    #[inline(always)]
    pub fn is_32s(&self) -> bool {
        *self == TCNTRTSELECT_A::_32S
    }
    #[doc = "64 seconds"]
    #[inline(always)]
    pub fn is_64s(&self) -> bool {
        *self == TCNTRTSELECT_A::_64S
    }
    #[doc = "128 seconds"]
    #[inline(always)]
    pub fn is_128s(&self) -> bool {
        *self == TCNTRTSELECT_A::_128S
    }
    #[doc = "256 seconds"]
    #[inline(always)]
    pub fn is_256s(&self) -> bool {
        *self == TCNTRTSELECT_A::_256S
    }
    #[doc = "512 seconds"]
    #[inline(always)]
    pub fn is_512s(&self) -> bool {
        *self == TCNTRTSELECT_A::_512S
    }
    #[doc = "1024 seconds"]
    #[inline(always)]
    pub fn is_1024s(&self) -> bool {
        *self == TCNTRTSELECT_A::_1024S
    }
    #[doc = "Get information from other source"]
    #[inline(always)]
    pub fn is_other(&self) -> bool {
        *self == TCNTRTSELECT_A::OTHER
    }
}
#[doc = "Field `TSDR50` reader - Use Tuning for SDR50"]
pub type TSDR50_R = crate::BitReader<TSDR50SELECT_A>;
#[doc = "Use Tuning for SDR50\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum TSDR50SELECT_A {
    #[doc = "0: SDR50 does not require tuning"]
    NO = 0,
    #[doc = "1: SDR50 requires tuning"]
    YES = 1,
}
impl From<TSDR50SELECT_A> for bool {
    #[inline(always)]
    fn from(variant: TSDR50SELECT_A) -> Self {
        variant as u8 != 0
    }
}
impl TSDR50_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> TSDR50SELECT_A {
        match self.bits {
            false => TSDR50SELECT_A::NO,
            true => TSDR50SELECT_A::YES,
        }
    }
    #[doc = "SDR50 does not require tuning"]
    #[inline(always)]
    pub fn is_no(&self) -> bool {
        *self == TSDR50SELECT_A::NO
    }
    #[doc = "SDR50 requires tuning"]
    #[inline(always)]
    pub fn is_yes(&self) -> bool {
        *self == TSDR50SELECT_A::YES
    }
}
#[doc = "Field `CLKMULT` reader - Clock Multiplier"]
pub type CLKMULT_R = crate::FieldReader<CLKMULTSELECT_A>;
#[doc = "Clock Multiplier\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum CLKMULTSELECT_A {
    #[doc = "0: Clock Multiplier is Not Supported"]
    NO = 0,
}
impl From<CLKMULTSELECT_A> for u8 {
    #[inline(always)]
    fn from(variant: CLKMULTSELECT_A) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for CLKMULTSELECT_A {
    type Ux = u8;
}
impl CLKMULT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<CLKMULTSELECT_A> {
        match self.bits {
            0 => Some(CLKMULTSELECT_A::NO),
            _ => None,
        }
    }
    #[doc = "Clock Multiplier is Not Supported"]
    #[inline(always)]
    pub fn is_no(&self) -> bool {
        *self == CLKMULTSELECT_A::NO
    }
}
impl R {
    #[doc = "Bit 0 - SDR50 Support"]
    #[inline(always)]
    pub fn sdr50sup(&self) -> SDR50SUP_R {
        SDR50SUP_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - SDR104 Support"]
    #[inline(always)]
    pub fn sdr104sup(&self) -> SDR104SUP_R {
        SDR104SUP_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - DDR50 Support"]
    #[inline(always)]
    pub fn ddr50sup(&self) -> DDR50SUP_R {
        DDR50SUP_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 4 - Driver Type A Support"]
    #[inline(always)]
    pub fn drvasup(&self) -> DRVASUP_R {
        DRVASUP_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Driver Type C Support"]
    #[inline(always)]
    pub fn drvcsup(&self) -> DRVCSUP_R {
        DRVCSUP_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Driver Type D Support"]
    #[inline(always)]
    pub fn drvdsup(&self) -> DRVDSUP_R {
        DRVDSUP_R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bits 8:11 - Timer Count for Re-Tuning"]
    #[inline(always)]
    pub fn tcntrt(&self) -> TCNTRT_R {
        TCNTRT_R::new(((self.bits >> 8) & 0x0f) as u8)
    }
    #[doc = "Bit 13 - Use Tuning for SDR50"]
    #[inline(always)]
    pub fn tsdr50(&self) -> TSDR50_R {
        TSDR50_R::new(((self.bits >> 13) & 1) != 0)
    }
    #[doc = "Bits 16:23 - Clock Multiplier"]
    #[inline(always)]
    pub fn clkmult(&self) -> CLKMULT_R {
        CLKMULT_R::new(((self.bits >> 16) & 0xff) as u8)
    }
}
#[doc = "Capabilities 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ca1r::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CA1R_SPEC;
impl crate::RegisterSpec for CA1R_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`ca1r::R`](R) reader structure"]
impl crate::Readable for CA1R_SPEC {}
#[doc = "`reset()` method sets CA1R to value 0x70"]
impl crate::Resettable for CA1R_SPEC {
    const RESET_VALUE: Self::Ux = 0x70;
}