1#[doc = "Register `ICUSARI` reader"]
2pub struct R(crate::R<ICUSARI_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<ICUSARI_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<ICUSARI_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<ICUSARI_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `ICUSARI` writer"]
17pub struct W(crate::W<ICUSARI_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<ICUSARI_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<ICUSARI_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<ICUSARI_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `SAIELSR64` reader - Security attributes of registers for IELSR95 to IELSR64"]
38pub type SAIELSR64_R = crate::BitReader<SAIELSR64_A>;
39#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum SAIELSR64_A {
42 #[doc = "0: Secure"]
43 _0 = 0,
44 #[doc = "1: Non-secure"]
45 _1 = 1,
46}
47impl From<SAIELSR64_A> for bool {
48 #[inline(always)]
49 fn from(variant: SAIELSR64_A) -> Self {
50 variant as u8 != 0
51 }
52}
53impl SAIELSR64_R {
54 #[doc = "Get enumerated values variant"]
55 #[inline(always)]
56 pub fn variant(&self) -> SAIELSR64_A {
57 match self.bits {
58 false => SAIELSR64_A::_0,
59 true => SAIELSR64_A::_1,
60 }
61 }
62 #[doc = "Checks if the value of the field is `_0`"]
63 #[inline(always)]
64 pub fn is_0(&self) -> bool {
65 *self == SAIELSR64_A::_0
66 }
67 #[doc = "Checks if the value of the field is `_1`"]
68 #[inline(always)]
69 pub fn is_1(&self) -> bool {
70 *self == SAIELSR64_A::_1
71 }
72}
73#[doc = "Field `SAIELSR64` writer - Security attributes of registers for IELSR95 to IELSR64"]
74pub type SAIELSR64_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR64_A, O>;
75impl<'a, const O: u8> SAIELSR64_W<'a, O> {
76 #[doc = "Secure"]
77 #[inline(always)]
78 pub fn _0(self) -> &'a mut W {
79 self.variant(SAIELSR64_A::_0)
80 }
81 #[doc = "Non-secure"]
82 #[inline(always)]
83 pub fn _1(self) -> &'a mut W {
84 self.variant(SAIELSR64_A::_1)
85 }
86}
87#[doc = "Field `SAIELSR65` reader - Security attributes of registers for IELSR95 to IELSR64"]
88pub type SAIELSR65_R = crate::BitReader<SAIELSR65_A>;
89#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum SAIELSR65_A {
92 #[doc = "0: Secure"]
93 _0 = 0,
94 #[doc = "1: Non-secure"]
95 _1 = 1,
96}
97impl From<SAIELSR65_A> for bool {
98 #[inline(always)]
99 fn from(variant: SAIELSR65_A) -> Self {
100 variant as u8 != 0
101 }
102}
103impl SAIELSR65_R {
104 #[doc = "Get enumerated values variant"]
105 #[inline(always)]
106 pub fn variant(&self) -> SAIELSR65_A {
107 match self.bits {
108 false => SAIELSR65_A::_0,
109 true => SAIELSR65_A::_1,
110 }
111 }
112 #[doc = "Checks if the value of the field is `_0`"]
113 #[inline(always)]
114 pub fn is_0(&self) -> bool {
115 *self == SAIELSR65_A::_0
116 }
117 #[doc = "Checks if the value of the field is `_1`"]
118 #[inline(always)]
119 pub fn is_1(&self) -> bool {
120 *self == SAIELSR65_A::_1
121 }
122}
123#[doc = "Field `SAIELSR65` writer - Security attributes of registers for IELSR95 to IELSR64"]
124pub type SAIELSR65_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR65_A, O>;
125impl<'a, const O: u8> SAIELSR65_W<'a, O> {
126 #[doc = "Secure"]
127 #[inline(always)]
128 pub fn _0(self) -> &'a mut W {
129 self.variant(SAIELSR65_A::_0)
130 }
131 #[doc = "Non-secure"]
132 #[inline(always)]
133 pub fn _1(self) -> &'a mut W {
134 self.variant(SAIELSR65_A::_1)
135 }
136}
137#[doc = "Field `SAIELSR66` reader - Security attributes of registers for IELSR95 to IELSR64"]
138pub type SAIELSR66_R = crate::BitReader<SAIELSR66_A>;
139#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum SAIELSR66_A {
142 #[doc = "0: Secure"]
143 _0 = 0,
144 #[doc = "1: Non-secure"]
145 _1 = 1,
146}
147impl From<SAIELSR66_A> for bool {
148 #[inline(always)]
149 fn from(variant: SAIELSR66_A) -> Self {
150 variant as u8 != 0
151 }
152}
153impl SAIELSR66_R {
154 #[doc = "Get enumerated values variant"]
155 #[inline(always)]
156 pub fn variant(&self) -> SAIELSR66_A {
157 match self.bits {
158 false => SAIELSR66_A::_0,
159 true => SAIELSR66_A::_1,
160 }
161 }
162 #[doc = "Checks if the value of the field is `_0`"]
163 #[inline(always)]
164 pub fn is_0(&self) -> bool {
165 *self == SAIELSR66_A::_0
166 }
167 #[doc = "Checks if the value of the field is `_1`"]
168 #[inline(always)]
169 pub fn is_1(&self) -> bool {
170 *self == SAIELSR66_A::_1
171 }
172}
173#[doc = "Field `SAIELSR66` writer - Security attributes of registers for IELSR95 to IELSR64"]
174pub type SAIELSR66_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR66_A, O>;
175impl<'a, const O: u8> SAIELSR66_W<'a, O> {
176 #[doc = "Secure"]
177 #[inline(always)]
178 pub fn _0(self) -> &'a mut W {
179 self.variant(SAIELSR66_A::_0)
180 }
181 #[doc = "Non-secure"]
182 #[inline(always)]
183 pub fn _1(self) -> &'a mut W {
184 self.variant(SAIELSR66_A::_1)
185 }
186}
187#[doc = "Field `SAIELSR67` reader - Security attributes of registers for IELSR95 to IELSR64"]
188pub type SAIELSR67_R = crate::BitReader<SAIELSR67_A>;
189#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum SAIELSR67_A {
192 #[doc = "0: Secure"]
193 _0 = 0,
194 #[doc = "1: Non-secure"]
195 _1 = 1,
196}
197impl From<SAIELSR67_A> for bool {
198 #[inline(always)]
199 fn from(variant: SAIELSR67_A) -> Self {
200 variant as u8 != 0
201 }
202}
203impl SAIELSR67_R {
204 #[doc = "Get enumerated values variant"]
205 #[inline(always)]
206 pub fn variant(&self) -> SAIELSR67_A {
207 match self.bits {
208 false => SAIELSR67_A::_0,
209 true => SAIELSR67_A::_1,
210 }
211 }
212 #[doc = "Checks if the value of the field is `_0`"]
213 #[inline(always)]
214 pub fn is_0(&self) -> bool {
215 *self == SAIELSR67_A::_0
216 }
217 #[doc = "Checks if the value of the field is `_1`"]
218 #[inline(always)]
219 pub fn is_1(&self) -> bool {
220 *self == SAIELSR67_A::_1
221 }
222}
223#[doc = "Field `SAIELSR67` writer - Security attributes of registers for IELSR95 to IELSR64"]
224pub type SAIELSR67_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR67_A, O>;
225impl<'a, const O: u8> SAIELSR67_W<'a, O> {
226 #[doc = "Secure"]
227 #[inline(always)]
228 pub fn _0(self) -> &'a mut W {
229 self.variant(SAIELSR67_A::_0)
230 }
231 #[doc = "Non-secure"]
232 #[inline(always)]
233 pub fn _1(self) -> &'a mut W {
234 self.variant(SAIELSR67_A::_1)
235 }
236}
237#[doc = "Field `SAIELSR68` reader - Security attributes of registers for IELSR95 to IELSR64"]
238pub type SAIELSR68_R = crate::BitReader<SAIELSR68_A>;
239#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum SAIELSR68_A {
242 #[doc = "0: Secure"]
243 _0 = 0,
244 #[doc = "1: Non-secure"]
245 _1 = 1,
246}
247impl From<SAIELSR68_A> for bool {
248 #[inline(always)]
249 fn from(variant: SAIELSR68_A) -> Self {
250 variant as u8 != 0
251 }
252}
253impl SAIELSR68_R {
254 #[doc = "Get enumerated values variant"]
255 #[inline(always)]
256 pub fn variant(&self) -> SAIELSR68_A {
257 match self.bits {
258 false => SAIELSR68_A::_0,
259 true => SAIELSR68_A::_1,
260 }
261 }
262 #[doc = "Checks if the value of the field is `_0`"]
263 #[inline(always)]
264 pub fn is_0(&self) -> bool {
265 *self == SAIELSR68_A::_0
266 }
267 #[doc = "Checks if the value of the field is `_1`"]
268 #[inline(always)]
269 pub fn is_1(&self) -> bool {
270 *self == SAIELSR68_A::_1
271 }
272}
273#[doc = "Field `SAIELSR68` writer - Security attributes of registers for IELSR95 to IELSR64"]
274pub type SAIELSR68_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR68_A, O>;
275impl<'a, const O: u8> SAIELSR68_W<'a, O> {
276 #[doc = "Secure"]
277 #[inline(always)]
278 pub fn _0(self) -> &'a mut W {
279 self.variant(SAIELSR68_A::_0)
280 }
281 #[doc = "Non-secure"]
282 #[inline(always)]
283 pub fn _1(self) -> &'a mut W {
284 self.variant(SAIELSR68_A::_1)
285 }
286}
287#[doc = "Field `SAIELSR69` reader - Security attributes of registers for IELSR95 to IELSR64"]
288pub type SAIELSR69_R = crate::BitReader<SAIELSR69_A>;
289#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum SAIELSR69_A {
292 #[doc = "0: Secure"]
293 _0 = 0,
294 #[doc = "1: Non-secure"]
295 _1 = 1,
296}
297impl From<SAIELSR69_A> for bool {
298 #[inline(always)]
299 fn from(variant: SAIELSR69_A) -> Self {
300 variant as u8 != 0
301 }
302}
303impl SAIELSR69_R {
304 #[doc = "Get enumerated values variant"]
305 #[inline(always)]
306 pub fn variant(&self) -> SAIELSR69_A {
307 match self.bits {
308 false => SAIELSR69_A::_0,
309 true => SAIELSR69_A::_1,
310 }
311 }
312 #[doc = "Checks if the value of the field is `_0`"]
313 #[inline(always)]
314 pub fn is_0(&self) -> bool {
315 *self == SAIELSR69_A::_0
316 }
317 #[doc = "Checks if the value of the field is `_1`"]
318 #[inline(always)]
319 pub fn is_1(&self) -> bool {
320 *self == SAIELSR69_A::_1
321 }
322}
323#[doc = "Field `SAIELSR69` writer - Security attributes of registers for IELSR95 to IELSR64"]
324pub type SAIELSR69_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR69_A, O>;
325impl<'a, const O: u8> SAIELSR69_W<'a, O> {
326 #[doc = "Secure"]
327 #[inline(always)]
328 pub fn _0(self) -> &'a mut W {
329 self.variant(SAIELSR69_A::_0)
330 }
331 #[doc = "Non-secure"]
332 #[inline(always)]
333 pub fn _1(self) -> &'a mut W {
334 self.variant(SAIELSR69_A::_1)
335 }
336}
337#[doc = "Field `SAIELSR70` reader - Security attributes of registers for IELSR95 to IELSR64"]
338pub type SAIELSR70_R = crate::BitReader<SAIELSR70_A>;
339#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum SAIELSR70_A {
342 #[doc = "0: Secure"]
343 _0 = 0,
344 #[doc = "1: Non-secure"]
345 _1 = 1,
346}
347impl From<SAIELSR70_A> for bool {
348 #[inline(always)]
349 fn from(variant: SAIELSR70_A) -> Self {
350 variant as u8 != 0
351 }
352}
353impl SAIELSR70_R {
354 #[doc = "Get enumerated values variant"]
355 #[inline(always)]
356 pub fn variant(&self) -> SAIELSR70_A {
357 match self.bits {
358 false => SAIELSR70_A::_0,
359 true => SAIELSR70_A::_1,
360 }
361 }
362 #[doc = "Checks if the value of the field is `_0`"]
363 #[inline(always)]
364 pub fn is_0(&self) -> bool {
365 *self == SAIELSR70_A::_0
366 }
367 #[doc = "Checks if the value of the field is `_1`"]
368 #[inline(always)]
369 pub fn is_1(&self) -> bool {
370 *self == SAIELSR70_A::_1
371 }
372}
373#[doc = "Field `SAIELSR70` writer - Security attributes of registers for IELSR95 to IELSR64"]
374pub type SAIELSR70_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR70_A, O>;
375impl<'a, const O: u8> SAIELSR70_W<'a, O> {
376 #[doc = "Secure"]
377 #[inline(always)]
378 pub fn _0(self) -> &'a mut W {
379 self.variant(SAIELSR70_A::_0)
380 }
381 #[doc = "Non-secure"]
382 #[inline(always)]
383 pub fn _1(self) -> &'a mut W {
384 self.variant(SAIELSR70_A::_1)
385 }
386}
387#[doc = "Field `SAIELSR71` reader - Security attributes of registers for IELSR95 to IELSR64"]
388pub type SAIELSR71_R = crate::BitReader<SAIELSR71_A>;
389#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
391pub enum SAIELSR71_A {
392 #[doc = "0: Secure"]
393 _0 = 0,
394 #[doc = "1: Non-secure"]
395 _1 = 1,
396}
397impl From<SAIELSR71_A> for bool {
398 #[inline(always)]
399 fn from(variant: SAIELSR71_A) -> Self {
400 variant as u8 != 0
401 }
402}
403impl SAIELSR71_R {
404 #[doc = "Get enumerated values variant"]
405 #[inline(always)]
406 pub fn variant(&self) -> SAIELSR71_A {
407 match self.bits {
408 false => SAIELSR71_A::_0,
409 true => SAIELSR71_A::_1,
410 }
411 }
412 #[doc = "Checks if the value of the field is `_0`"]
413 #[inline(always)]
414 pub fn is_0(&self) -> bool {
415 *self == SAIELSR71_A::_0
416 }
417 #[doc = "Checks if the value of the field is `_1`"]
418 #[inline(always)]
419 pub fn is_1(&self) -> bool {
420 *self == SAIELSR71_A::_1
421 }
422}
423#[doc = "Field `SAIELSR71` writer - Security attributes of registers for IELSR95 to IELSR64"]
424pub type SAIELSR71_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR71_A, O>;
425impl<'a, const O: u8> SAIELSR71_W<'a, O> {
426 #[doc = "Secure"]
427 #[inline(always)]
428 pub fn _0(self) -> &'a mut W {
429 self.variant(SAIELSR71_A::_0)
430 }
431 #[doc = "Non-secure"]
432 #[inline(always)]
433 pub fn _1(self) -> &'a mut W {
434 self.variant(SAIELSR71_A::_1)
435 }
436}
437#[doc = "Field `SAIELSR72` reader - Security attributes of registers for IELSR95 to IELSR64"]
438pub type SAIELSR72_R = crate::BitReader<SAIELSR72_A>;
439#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
441pub enum SAIELSR72_A {
442 #[doc = "0: Secure"]
443 _0 = 0,
444 #[doc = "1: Non-secure"]
445 _1 = 1,
446}
447impl From<SAIELSR72_A> for bool {
448 #[inline(always)]
449 fn from(variant: SAIELSR72_A) -> Self {
450 variant as u8 != 0
451 }
452}
453impl SAIELSR72_R {
454 #[doc = "Get enumerated values variant"]
455 #[inline(always)]
456 pub fn variant(&self) -> SAIELSR72_A {
457 match self.bits {
458 false => SAIELSR72_A::_0,
459 true => SAIELSR72_A::_1,
460 }
461 }
462 #[doc = "Checks if the value of the field is `_0`"]
463 #[inline(always)]
464 pub fn is_0(&self) -> bool {
465 *self == SAIELSR72_A::_0
466 }
467 #[doc = "Checks if the value of the field is `_1`"]
468 #[inline(always)]
469 pub fn is_1(&self) -> bool {
470 *self == SAIELSR72_A::_1
471 }
472}
473#[doc = "Field `SAIELSR72` writer - Security attributes of registers for IELSR95 to IELSR64"]
474pub type SAIELSR72_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR72_A, O>;
475impl<'a, const O: u8> SAIELSR72_W<'a, O> {
476 #[doc = "Secure"]
477 #[inline(always)]
478 pub fn _0(self) -> &'a mut W {
479 self.variant(SAIELSR72_A::_0)
480 }
481 #[doc = "Non-secure"]
482 #[inline(always)]
483 pub fn _1(self) -> &'a mut W {
484 self.variant(SAIELSR72_A::_1)
485 }
486}
487#[doc = "Field `SAIELSR73` reader - Security attributes of registers for IELSR95 to IELSR64"]
488pub type SAIELSR73_R = crate::BitReader<SAIELSR73_A>;
489#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
491pub enum SAIELSR73_A {
492 #[doc = "0: Secure"]
493 _0 = 0,
494 #[doc = "1: Non-secure"]
495 _1 = 1,
496}
497impl From<SAIELSR73_A> for bool {
498 #[inline(always)]
499 fn from(variant: SAIELSR73_A) -> Self {
500 variant as u8 != 0
501 }
502}
503impl SAIELSR73_R {
504 #[doc = "Get enumerated values variant"]
505 #[inline(always)]
506 pub fn variant(&self) -> SAIELSR73_A {
507 match self.bits {
508 false => SAIELSR73_A::_0,
509 true => SAIELSR73_A::_1,
510 }
511 }
512 #[doc = "Checks if the value of the field is `_0`"]
513 #[inline(always)]
514 pub fn is_0(&self) -> bool {
515 *self == SAIELSR73_A::_0
516 }
517 #[doc = "Checks if the value of the field is `_1`"]
518 #[inline(always)]
519 pub fn is_1(&self) -> bool {
520 *self == SAIELSR73_A::_1
521 }
522}
523#[doc = "Field `SAIELSR73` writer - Security attributes of registers for IELSR95 to IELSR64"]
524pub type SAIELSR73_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR73_A, O>;
525impl<'a, const O: u8> SAIELSR73_W<'a, O> {
526 #[doc = "Secure"]
527 #[inline(always)]
528 pub fn _0(self) -> &'a mut W {
529 self.variant(SAIELSR73_A::_0)
530 }
531 #[doc = "Non-secure"]
532 #[inline(always)]
533 pub fn _1(self) -> &'a mut W {
534 self.variant(SAIELSR73_A::_1)
535 }
536}
537#[doc = "Field `SAIELSR74` reader - Security attributes of registers for IELSR95 to IELSR64"]
538pub type SAIELSR74_R = crate::BitReader<SAIELSR74_A>;
539#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
541pub enum SAIELSR74_A {
542 #[doc = "0: Secure"]
543 _0 = 0,
544 #[doc = "1: Non-secure"]
545 _1 = 1,
546}
547impl From<SAIELSR74_A> for bool {
548 #[inline(always)]
549 fn from(variant: SAIELSR74_A) -> Self {
550 variant as u8 != 0
551 }
552}
553impl SAIELSR74_R {
554 #[doc = "Get enumerated values variant"]
555 #[inline(always)]
556 pub fn variant(&self) -> SAIELSR74_A {
557 match self.bits {
558 false => SAIELSR74_A::_0,
559 true => SAIELSR74_A::_1,
560 }
561 }
562 #[doc = "Checks if the value of the field is `_0`"]
563 #[inline(always)]
564 pub fn is_0(&self) -> bool {
565 *self == SAIELSR74_A::_0
566 }
567 #[doc = "Checks if the value of the field is `_1`"]
568 #[inline(always)]
569 pub fn is_1(&self) -> bool {
570 *self == SAIELSR74_A::_1
571 }
572}
573#[doc = "Field `SAIELSR74` writer - Security attributes of registers for IELSR95 to IELSR64"]
574pub type SAIELSR74_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR74_A, O>;
575impl<'a, const O: u8> SAIELSR74_W<'a, O> {
576 #[doc = "Secure"]
577 #[inline(always)]
578 pub fn _0(self) -> &'a mut W {
579 self.variant(SAIELSR74_A::_0)
580 }
581 #[doc = "Non-secure"]
582 #[inline(always)]
583 pub fn _1(self) -> &'a mut W {
584 self.variant(SAIELSR74_A::_1)
585 }
586}
587#[doc = "Field `SAIELSR75` reader - Security attributes of registers for IELSR95 to IELSR64"]
588pub type SAIELSR75_R = crate::BitReader<SAIELSR75_A>;
589#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
591pub enum SAIELSR75_A {
592 #[doc = "0: Secure"]
593 _0 = 0,
594 #[doc = "1: Non-secure"]
595 _1 = 1,
596}
597impl From<SAIELSR75_A> for bool {
598 #[inline(always)]
599 fn from(variant: SAIELSR75_A) -> Self {
600 variant as u8 != 0
601 }
602}
603impl SAIELSR75_R {
604 #[doc = "Get enumerated values variant"]
605 #[inline(always)]
606 pub fn variant(&self) -> SAIELSR75_A {
607 match self.bits {
608 false => SAIELSR75_A::_0,
609 true => SAIELSR75_A::_1,
610 }
611 }
612 #[doc = "Checks if the value of the field is `_0`"]
613 #[inline(always)]
614 pub fn is_0(&self) -> bool {
615 *self == SAIELSR75_A::_0
616 }
617 #[doc = "Checks if the value of the field is `_1`"]
618 #[inline(always)]
619 pub fn is_1(&self) -> bool {
620 *self == SAIELSR75_A::_1
621 }
622}
623#[doc = "Field `SAIELSR75` writer - Security attributes of registers for IELSR95 to IELSR64"]
624pub type SAIELSR75_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR75_A, O>;
625impl<'a, const O: u8> SAIELSR75_W<'a, O> {
626 #[doc = "Secure"]
627 #[inline(always)]
628 pub fn _0(self) -> &'a mut W {
629 self.variant(SAIELSR75_A::_0)
630 }
631 #[doc = "Non-secure"]
632 #[inline(always)]
633 pub fn _1(self) -> &'a mut W {
634 self.variant(SAIELSR75_A::_1)
635 }
636}
637#[doc = "Field `SAIELSR76` reader - Security attributes of registers for IELSR95 to IELSR64"]
638pub type SAIELSR76_R = crate::BitReader<SAIELSR76_A>;
639#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
640#[derive(Clone, Copy, Debug, PartialEq, Eq)]
641pub enum SAIELSR76_A {
642 #[doc = "0: Secure"]
643 _0 = 0,
644 #[doc = "1: Non-secure"]
645 _1 = 1,
646}
647impl From<SAIELSR76_A> for bool {
648 #[inline(always)]
649 fn from(variant: SAIELSR76_A) -> Self {
650 variant as u8 != 0
651 }
652}
653impl SAIELSR76_R {
654 #[doc = "Get enumerated values variant"]
655 #[inline(always)]
656 pub fn variant(&self) -> SAIELSR76_A {
657 match self.bits {
658 false => SAIELSR76_A::_0,
659 true => SAIELSR76_A::_1,
660 }
661 }
662 #[doc = "Checks if the value of the field is `_0`"]
663 #[inline(always)]
664 pub fn is_0(&self) -> bool {
665 *self == SAIELSR76_A::_0
666 }
667 #[doc = "Checks if the value of the field is `_1`"]
668 #[inline(always)]
669 pub fn is_1(&self) -> bool {
670 *self == SAIELSR76_A::_1
671 }
672}
673#[doc = "Field `SAIELSR76` writer - Security attributes of registers for IELSR95 to IELSR64"]
674pub type SAIELSR76_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR76_A, O>;
675impl<'a, const O: u8> SAIELSR76_W<'a, O> {
676 #[doc = "Secure"]
677 #[inline(always)]
678 pub fn _0(self) -> &'a mut W {
679 self.variant(SAIELSR76_A::_0)
680 }
681 #[doc = "Non-secure"]
682 #[inline(always)]
683 pub fn _1(self) -> &'a mut W {
684 self.variant(SAIELSR76_A::_1)
685 }
686}
687#[doc = "Field `SAIELSR77` reader - Security attributes of registers for IELSR95 to IELSR64"]
688pub type SAIELSR77_R = crate::BitReader<SAIELSR77_A>;
689#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
690#[derive(Clone, Copy, Debug, PartialEq, Eq)]
691pub enum SAIELSR77_A {
692 #[doc = "0: Secure"]
693 _0 = 0,
694 #[doc = "1: Non-secure"]
695 _1 = 1,
696}
697impl From<SAIELSR77_A> for bool {
698 #[inline(always)]
699 fn from(variant: SAIELSR77_A) -> Self {
700 variant as u8 != 0
701 }
702}
703impl SAIELSR77_R {
704 #[doc = "Get enumerated values variant"]
705 #[inline(always)]
706 pub fn variant(&self) -> SAIELSR77_A {
707 match self.bits {
708 false => SAIELSR77_A::_0,
709 true => SAIELSR77_A::_1,
710 }
711 }
712 #[doc = "Checks if the value of the field is `_0`"]
713 #[inline(always)]
714 pub fn is_0(&self) -> bool {
715 *self == SAIELSR77_A::_0
716 }
717 #[doc = "Checks if the value of the field is `_1`"]
718 #[inline(always)]
719 pub fn is_1(&self) -> bool {
720 *self == SAIELSR77_A::_1
721 }
722}
723#[doc = "Field `SAIELSR77` writer - Security attributes of registers for IELSR95 to IELSR64"]
724pub type SAIELSR77_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR77_A, O>;
725impl<'a, const O: u8> SAIELSR77_W<'a, O> {
726 #[doc = "Secure"]
727 #[inline(always)]
728 pub fn _0(self) -> &'a mut W {
729 self.variant(SAIELSR77_A::_0)
730 }
731 #[doc = "Non-secure"]
732 #[inline(always)]
733 pub fn _1(self) -> &'a mut W {
734 self.variant(SAIELSR77_A::_1)
735 }
736}
737#[doc = "Field `SAIELSR78` reader - Security attributes of registers for IELSR95 to IELSR64"]
738pub type SAIELSR78_R = crate::BitReader<SAIELSR78_A>;
739#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
740#[derive(Clone, Copy, Debug, PartialEq, Eq)]
741pub enum SAIELSR78_A {
742 #[doc = "0: Secure"]
743 _0 = 0,
744 #[doc = "1: Non-secure"]
745 _1 = 1,
746}
747impl From<SAIELSR78_A> for bool {
748 #[inline(always)]
749 fn from(variant: SAIELSR78_A) -> Self {
750 variant as u8 != 0
751 }
752}
753impl SAIELSR78_R {
754 #[doc = "Get enumerated values variant"]
755 #[inline(always)]
756 pub fn variant(&self) -> SAIELSR78_A {
757 match self.bits {
758 false => SAIELSR78_A::_0,
759 true => SAIELSR78_A::_1,
760 }
761 }
762 #[doc = "Checks if the value of the field is `_0`"]
763 #[inline(always)]
764 pub fn is_0(&self) -> bool {
765 *self == SAIELSR78_A::_0
766 }
767 #[doc = "Checks if the value of the field is `_1`"]
768 #[inline(always)]
769 pub fn is_1(&self) -> bool {
770 *self == SAIELSR78_A::_1
771 }
772}
773#[doc = "Field `SAIELSR78` writer - Security attributes of registers for IELSR95 to IELSR64"]
774pub type SAIELSR78_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR78_A, O>;
775impl<'a, const O: u8> SAIELSR78_W<'a, O> {
776 #[doc = "Secure"]
777 #[inline(always)]
778 pub fn _0(self) -> &'a mut W {
779 self.variant(SAIELSR78_A::_0)
780 }
781 #[doc = "Non-secure"]
782 #[inline(always)]
783 pub fn _1(self) -> &'a mut W {
784 self.variant(SAIELSR78_A::_1)
785 }
786}
787#[doc = "Field `SAIELSR79` reader - Security attributes of registers for IELSR95 to IELSR64"]
788pub type SAIELSR79_R = crate::BitReader<SAIELSR79_A>;
789#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
790#[derive(Clone, Copy, Debug, PartialEq, Eq)]
791pub enum SAIELSR79_A {
792 #[doc = "0: Secure"]
793 _0 = 0,
794 #[doc = "1: Non-secure"]
795 _1 = 1,
796}
797impl From<SAIELSR79_A> for bool {
798 #[inline(always)]
799 fn from(variant: SAIELSR79_A) -> Self {
800 variant as u8 != 0
801 }
802}
803impl SAIELSR79_R {
804 #[doc = "Get enumerated values variant"]
805 #[inline(always)]
806 pub fn variant(&self) -> SAIELSR79_A {
807 match self.bits {
808 false => SAIELSR79_A::_0,
809 true => SAIELSR79_A::_1,
810 }
811 }
812 #[doc = "Checks if the value of the field is `_0`"]
813 #[inline(always)]
814 pub fn is_0(&self) -> bool {
815 *self == SAIELSR79_A::_0
816 }
817 #[doc = "Checks if the value of the field is `_1`"]
818 #[inline(always)]
819 pub fn is_1(&self) -> bool {
820 *self == SAIELSR79_A::_1
821 }
822}
823#[doc = "Field `SAIELSR79` writer - Security attributes of registers for IELSR95 to IELSR64"]
824pub type SAIELSR79_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR79_A, O>;
825impl<'a, const O: u8> SAIELSR79_W<'a, O> {
826 #[doc = "Secure"]
827 #[inline(always)]
828 pub fn _0(self) -> &'a mut W {
829 self.variant(SAIELSR79_A::_0)
830 }
831 #[doc = "Non-secure"]
832 #[inline(always)]
833 pub fn _1(self) -> &'a mut W {
834 self.variant(SAIELSR79_A::_1)
835 }
836}
837#[doc = "Field `SAIELSR80` reader - Security attributes of registers for IELSR95 to IELSR64"]
838pub type SAIELSR80_R = crate::BitReader<SAIELSR80_A>;
839#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
840#[derive(Clone, Copy, Debug, PartialEq, Eq)]
841pub enum SAIELSR80_A {
842 #[doc = "0: Secure"]
843 _0 = 0,
844 #[doc = "1: Non-secure"]
845 _1 = 1,
846}
847impl From<SAIELSR80_A> for bool {
848 #[inline(always)]
849 fn from(variant: SAIELSR80_A) -> Self {
850 variant as u8 != 0
851 }
852}
853impl SAIELSR80_R {
854 #[doc = "Get enumerated values variant"]
855 #[inline(always)]
856 pub fn variant(&self) -> SAIELSR80_A {
857 match self.bits {
858 false => SAIELSR80_A::_0,
859 true => SAIELSR80_A::_1,
860 }
861 }
862 #[doc = "Checks if the value of the field is `_0`"]
863 #[inline(always)]
864 pub fn is_0(&self) -> bool {
865 *self == SAIELSR80_A::_0
866 }
867 #[doc = "Checks if the value of the field is `_1`"]
868 #[inline(always)]
869 pub fn is_1(&self) -> bool {
870 *self == SAIELSR80_A::_1
871 }
872}
873#[doc = "Field `SAIELSR80` writer - Security attributes of registers for IELSR95 to IELSR64"]
874pub type SAIELSR80_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR80_A, O>;
875impl<'a, const O: u8> SAIELSR80_W<'a, O> {
876 #[doc = "Secure"]
877 #[inline(always)]
878 pub fn _0(self) -> &'a mut W {
879 self.variant(SAIELSR80_A::_0)
880 }
881 #[doc = "Non-secure"]
882 #[inline(always)]
883 pub fn _1(self) -> &'a mut W {
884 self.variant(SAIELSR80_A::_1)
885 }
886}
887#[doc = "Field `SAIELSR81` reader - Security attributes of registers for IELSR95 to IELSR64"]
888pub type SAIELSR81_R = crate::BitReader<SAIELSR81_A>;
889#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
890#[derive(Clone, Copy, Debug, PartialEq, Eq)]
891pub enum SAIELSR81_A {
892 #[doc = "0: Secure"]
893 _0 = 0,
894 #[doc = "1: Non-secure"]
895 _1 = 1,
896}
897impl From<SAIELSR81_A> for bool {
898 #[inline(always)]
899 fn from(variant: SAIELSR81_A) -> Self {
900 variant as u8 != 0
901 }
902}
903impl SAIELSR81_R {
904 #[doc = "Get enumerated values variant"]
905 #[inline(always)]
906 pub fn variant(&self) -> SAIELSR81_A {
907 match self.bits {
908 false => SAIELSR81_A::_0,
909 true => SAIELSR81_A::_1,
910 }
911 }
912 #[doc = "Checks if the value of the field is `_0`"]
913 #[inline(always)]
914 pub fn is_0(&self) -> bool {
915 *self == SAIELSR81_A::_0
916 }
917 #[doc = "Checks if the value of the field is `_1`"]
918 #[inline(always)]
919 pub fn is_1(&self) -> bool {
920 *self == SAIELSR81_A::_1
921 }
922}
923#[doc = "Field `SAIELSR81` writer - Security attributes of registers for IELSR95 to IELSR64"]
924pub type SAIELSR81_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR81_A, O>;
925impl<'a, const O: u8> SAIELSR81_W<'a, O> {
926 #[doc = "Secure"]
927 #[inline(always)]
928 pub fn _0(self) -> &'a mut W {
929 self.variant(SAIELSR81_A::_0)
930 }
931 #[doc = "Non-secure"]
932 #[inline(always)]
933 pub fn _1(self) -> &'a mut W {
934 self.variant(SAIELSR81_A::_1)
935 }
936}
937#[doc = "Field `SAIELSR82` reader - Security attributes of registers for IELSR95 to IELSR64"]
938pub type SAIELSR82_R = crate::BitReader<SAIELSR82_A>;
939#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
940#[derive(Clone, Copy, Debug, PartialEq, Eq)]
941pub enum SAIELSR82_A {
942 #[doc = "0: Secure"]
943 _0 = 0,
944 #[doc = "1: Non-secure"]
945 _1 = 1,
946}
947impl From<SAIELSR82_A> for bool {
948 #[inline(always)]
949 fn from(variant: SAIELSR82_A) -> Self {
950 variant as u8 != 0
951 }
952}
953impl SAIELSR82_R {
954 #[doc = "Get enumerated values variant"]
955 #[inline(always)]
956 pub fn variant(&self) -> SAIELSR82_A {
957 match self.bits {
958 false => SAIELSR82_A::_0,
959 true => SAIELSR82_A::_1,
960 }
961 }
962 #[doc = "Checks if the value of the field is `_0`"]
963 #[inline(always)]
964 pub fn is_0(&self) -> bool {
965 *self == SAIELSR82_A::_0
966 }
967 #[doc = "Checks if the value of the field is `_1`"]
968 #[inline(always)]
969 pub fn is_1(&self) -> bool {
970 *self == SAIELSR82_A::_1
971 }
972}
973#[doc = "Field `SAIELSR82` writer - Security attributes of registers for IELSR95 to IELSR64"]
974pub type SAIELSR82_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR82_A, O>;
975impl<'a, const O: u8> SAIELSR82_W<'a, O> {
976 #[doc = "Secure"]
977 #[inline(always)]
978 pub fn _0(self) -> &'a mut W {
979 self.variant(SAIELSR82_A::_0)
980 }
981 #[doc = "Non-secure"]
982 #[inline(always)]
983 pub fn _1(self) -> &'a mut W {
984 self.variant(SAIELSR82_A::_1)
985 }
986}
987#[doc = "Field `SAIELSR83` reader - Security attributes of registers for IELSR95 to IELSR64"]
988pub type SAIELSR83_R = crate::BitReader<SAIELSR83_A>;
989#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
990#[derive(Clone, Copy, Debug, PartialEq, Eq)]
991pub enum SAIELSR83_A {
992 #[doc = "0: Secure"]
993 _0 = 0,
994 #[doc = "1: Non-secure"]
995 _1 = 1,
996}
997impl From<SAIELSR83_A> for bool {
998 #[inline(always)]
999 fn from(variant: SAIELSR83_A) -> Self {
1000 variant as u8 != 0
1001 }
1002}
1003impl SAIELSR83_R {
1004 #[doc = "Get enumerated values variant"]
1005 #[inline(always)]
1006 pub fn variant(&self) -> SAIELSR83_A {
1007 match self.bits {
1008 false => SAIELSR83_A::_0,
1009 true => SAIELSR83_A::_1,
1010 }
1011 }
1012 #[doc = "Checks if the value of the field is `_0`"]
1013 #[inline(always)]
1014 pub fn is_0(&self) -> bool {
1015 *self == SAIELSR83_A::_0
1016 }
1017 #[doc = "Checks if the value of the field is `_1`"]
1018 #[inline(always)]
1019 pub fn is_1(&self) -> bool {
1020 *self == SAIELSR83_A::_1
1021 }
1022}
1023#[doc = "Field `SAIELSR83` writer - Security attributes of registers for IELSR95 to IELSR64"]
1024pub type SAIELSR83_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR83_A, O>;
1025impl<'a, const O: u8> SAIELSR83_W<'a, O> {
1026 #[doc = "Secure"]
1027 #[inline(always)]
1028 pub fn _0(self) -> &'a mut W {
1029 self.variant(SAIELSR83_A::_0)
1030 }
1031 #[doc = "Non-secure"]
1032 #[inline(always)]
1033 pub fn _1(self) -> &'a mut W {
1034 self.variant(SAIELSR83_A::_1)
1035 }
1036}
1037#[doc = "Field `SAIELSR84` reader - Security attributes of registers for IELSR95 to IELSR64"]
1038pub type SAIELSR84_R = crate::BitReader<SAIELSR84_A>;
1039#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1040#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1041pub enum SAIELSR84_A {
1042 #[doc = "0: Secure"]
1043 _0 = 0,
1044 #[doc = "1: Non-secure"]
1045 _1 = 1,
1046}
1047impl From<SAIELSR84_A> for bool {
1048 #[inline(always)]
1049 fn from(variant: SAIELSR84_A) -> Self {
1050 variant as u8 != 0
1051 }
1052}
1053impl SAIELSR84_R {
1054 #[doc = "Get enumerated values variant"]
1055 #[inline(always)]
1056 pub fn variant(&self) -> SAIELSR84_A {
1057 match self.bits {
1058 false => SAIELSR84_A::_0,
1059 true => SAIELSR84_A::_1,
1060 }
1061 }
1062 #[doc = "Checks if the value of the field is `_0`"]
1063 #[inline(always)]
1064 pub fn is_0(&self) -> bool {
1065 *self == SAIELSR84_A::_0
1066 }
1067 #[doc = "Checks if the value of the field is `_1`"]
1068 #[inline(always)]
1069 pub fn is_1(&self) -> bool {
1070 *self == SAIELSR84_A::_1
1071 }
1072}
1073#[doc = "Field `SAIELSR84` writer - Security attributes of registers for IELSR95 to IELSR64"]
1074pub type SAIELSR84_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR84_A, O>;
1075impl<'a, const O: u8> SAIELSR84_W<'a, O> {
1076 #[doc = "Secure"]
1077 #[inline(always)]
1078 pub fn _0(self) -> &'a mut W {
1079 self.variant(SAIELSR84_A::_0)
1080 }
1081 #[doc = "Non-secure"]
1082 #[inline(always)]
1083 pub fn _1(self) -> &'a mut W {
1084 self.variant(SAIELSR84_A::_1)
1085 }
1086}
1087#[doc = "Field `SAIELSR85` reader - Security attributes of registers for IELSR95 to IELSR64"]
1088pub type SAIELSR85_R = crate::BitReader<SAIELSR85_A>;
1089#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1090#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1091pub enum SAIELSR85_A {
1092 #[doc = "0: Secure"]
1093 _0 = 0,
1094 #[doc = "1: Non-secure"]
1095 _1 = 1,
1096}
1097impl From<SAIELSR85_A> for bool {
1098 #[inline(always)]
1099 fn from(variant: SAIELSR85_A) -> Self {
1100 variant as u8 != 0
1101 }
1102}
1103impl SAIELSR85_R {
1104 #[doc = "Get enumerated values variant"]
1105 #[inline(always)]
1106 pub fn variant(&self) -> SAIELSR85_A {
1107 match self.bits {
1108 false => SAIELSR85_A::_0,
1109 true => SAIELSR85_A::_1,
1110 }
1111 }
1112 #[doc = "Checks if the value of the field is `_0`"]
1113 #[inline(always)]
1114 pub fn is_0(&self) -> bool {
1115 *self == SAIELSR85_A::_0
1116 }
1117 #[doc = "Checks if the value of the field is `_1`"]
1118 #[inline(always)]
1119 pub fn is_1(&self) -> bool {
1120 *self == SAIELSR85_A::_1
1121 }
1122}
1123#[doc = "Field `SAIELSR85` writer - Security attributes of registers for IELSR95 to IELSR64"]
1124pub type SAIELSR85_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR85_A, O>;
1125impl<'a, const O: u8> SAIELSR85_W<'a, O> {
1126 #[doc = "Secure"]
1127 #[inline(always)]
1128 pub fn _0(self) -> &'a mut W {
1129 self.variant(SAIELSR85_A::_0)
1130 }
1131 #[doc = "Non-secure"]
1132 #[inline(always)]
1133 pub fn _1(self) -> &'a mut W {
1134 self.variant(SAIELSR85_A::_1)
1135 }
1136}
1137#[doc = "Field `SAIELSR86` reader - Security attributes of registers for IELSR95 to IELSR64"]
1138pub type SAIELSR86_R = crate::BitReader<SAIELSR86_A>;
1139#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1141pub enum SAIELSR86_A {
1142 #[doc = "0: Secure"]
1143 _0 = 0,
1144 #[doc = "1: Non-secure"]
1145 _1 = 1,
1146}
1147impl From<SAIELSR86_A> for bool {
1148 #[inline(always)]
1149 fn from(variant: SAIELSR86_A) -> Self {
1150 variant as u8 != 0
1151 }
1152}
1153impl SAIELSR86_R {
1154 #[doc = "Get enumerated values variant"]
1155 #[inline(always)]
1156 pub fn variant(&self) -> SAIELSR86_A {
1157 match self.bits {
1158 false => SAIELSR86_A::_0,
1159 true => SAIELSR86_A::_1,
1160 }
1161 }
1162 #[doc = "Checks if the value of the field is `_0`"]
1163 #[inline(always)]
1164 pub fn is_0(&self) -> bool {
1165 *self == SAIELSR86_A::_0
1166 }
1167 #[doc = "Checks if the value of the field is `_1`"]
1168 #[inline(always)]
1169 pub fn is_1(&self) -> bool {
1170 *self == SAIELSR86_A::_1
1171 }
1172}
1173#[doc = "Field `SAIELSR86` writer - Security attributes of registers for IELSR95 to IELSR64"]
1174pub type SAIELSR86_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR86_A, O>;
1175impl<'a, const O: u8> SAIELSR86_W<'a, O> {
1176 #[doc = "Secure"]
1177 #[inline(always)]
1178 pub fn _0(self) -> &'a mut W {
1179 self.variant(SAIELSR86_A::_0)
1180 }
1181 #[doc = "Non-secure"]
1182 #[inline(always)]
1183 pub fn _1(self) -> &'a mut W {
1184 self.variant(SAIELSR86_A::_1)
1185 }
1186}
1187#[doc = "Field `SAIELSR87` reader - Security attributes of registers for IELSR95 to IELSR64"]
1188pub type SAIELSR87_R = crate::BitReader<SAIELSR87_A>;
1189#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1191pub enum SAIELSR87_A {
1192 #[doc = "0: Secure"]
1193 _0 = 0,
1194 #[doc = "1: Non-secure"]
1195 _1 = 1,
1196}
1197impl From<SAIELSR87_A> for bool {
1198 #[inline(always)]
1199 fn from(variant: SAIELSR87_A) -> Self {
1200 variant as u8 != 0
1201 }
1202}
1203impl SAIELSR87_R {
1204 #[doc = "Get enumerated values variant"]
1205 #[inline(always)]
1206 pub fn variant(&self) -> SAIELSR87_A {
1207 match self.bits {
1208 false => SAIELSR87_A::_0,
1209 true => SAIELSR87_A::_1,
1210 }
1211 }
1212 #[doc = "Checks if the value of the field is `_0`"]
1213 #[inline(always)]
1214 pub fn is_0(&self) -> bool {
1215 *self == SAIELSR87_A::_0
1216 }
1217 #[doc = "Checks if the value of the field is `_1`"]
1218 #[inline(always)]
1219 pub fn is_1(&self) -> bool {
1220 *self == SAIELSR87_A::_1
1221 }
1222}
1223#[doc = "Field `SAIELSR87` writer - Security attributes of registers for IELSR95 to IELSR64"]
1224pub type SAIELSR87_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR87_A, O>;
1225impl<'a, const O: u8> SAIELSR87_W<'a, O> {
1226 #[doc = "Secure"]
1227 #[inline(always)]
1228 pub fn _0(self) -> &'a mut W {
1229 self.variant(SAIELSR87_A::_0)
1230 }
1231 #[doc = "Non-secure"]
1232 #[inline(always)]
1233 pub fn _1(self) -> &'a mut W {
1234 self.variant(SAIELSR87_A::_1)
1235 }
1236}
1237#[doc = "Field `SAIELSR88` reader - Security attributes of registers for IELSR95 to IELSR64"]
1238pub type SAIELSR88_R = crate::BitReader<SAIELSR88_A>;
1239#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1241pub enum SAIELSR88_A {
1242 #[doc = "0: Secure"]
1243 _0 = 0,
1244 #[doc = "1: Non-secure"]
1245 _1 = 1,
1246}
1247impl From<SAIELSR88_A> for bool {
1248 #[inline(always)]
1249 fn from(variant: SAIELSR88_A) -> Self {
1250 variant as u8 != 0
1251 }
1252}
1253impl SAIELSR88_R {
1254 #[doc = "Get enumerated values variant"]
1255 #[inline(always)]
1256 pub fn variant(&self) -> SAIELSR88_A {
1257 match self.bits {
1258 false => SAIELSR88_A::_0,
1259 true => SAIELSR88_A::_1,
1260 }
1261 }
1262 #[doc = "Checks if the value of the field is `_0`"]
1263 #[inline(always)]
1264 pub fn is_0(&self) -> bool {
1265 *self == SAIELSR88_A::_0
1266 }
1267 #[doc = "Checks if the value of the field is `_1`"]
1268 #[inline(always)]
1269 pub fn is_1(&self) -> bool {
1270 *self == SAIELSR88_A::_1
1271 }
1272}
1273#[doc = "Field `SAIELSR88` writer - Security attributes of registers for IELSR95 to IELSR64"]
1274pub type SAIELSR88_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR88_A, O>;
1275impl<'a, const O: u8> SAIELSR88_W<'a, O> {
1276 #[doc = "Secure"]
1277 #[inline(always)]
1278 pub fn _0(self) -> &'a mut W {
1279 self.variant(SAIELSR88_A::_0)
1280 }
1281 #[doc = "Non-secure"]
1282 #[inline(always)]
1283 pub fn _1(self) -> &'a mut W {
1284 self.variant(SAIELSR88_A::_1)
1285 }
1286}
1287#[doc = "Field `SAIELSR89` reader - Security attributes of registers for IELSR95 to IELSR64"]
1288pub type SAIELSR89_R = crate::BitReader<SAIELSR89_A>;
1289#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1291pub enum SAIELSR89_A {
1292 #[doc = "0: Secure"]
1293 _0 = 0,
1294 #[doc = "1: Non-secure"]
1295 _1 = 1,
1296}
1297impl From<SAIELSR89_A> for bool {
1298 #[inline(always)]
1299 fn from(variant: SAIELSR89_A) -> Self {
1300 variant as u8 != 0
1301 }
1302}
1303impl SAIELSR89_R {
1304 #[doc = "Get enumerated values variant"]
1305 #[inline(always)]
1306 pub fn variant(&self) -> SAIELSR89_A {
1307 match self.bits {
1308 false => SAIELSR89_A::_0,
1309 true => SAIELSR89_A::_1,
1310 }
1311 }
1312 #[doc = "Checks if the value of the field is `_0`"]
1313 #[inline(always)]
1314 pub fn is_0(&self) -> bool {
1315 *self == SAIELSR89_A::_0
1316 }
1317 #[doc = "Checks if the value of the field is `_1`"]
1318 #[inline(always)]
1319 pub fn is_1(&self) -> bool {
1320 *self == SAIELSR89_A::_1
1321 }
1322}
1323#[doc = "Field `SAIELSR89` writer - Security attributes of registers for IELSR95 to IELSR64"]
1324pub type SAIELSR89_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR89_A, O>;
1325impl<'a, const O: u8> SAIELSR89_W<'a, O> {
1326 #[doc = "Secure"]
1327 #[inline(always)]
1328 pub fn _0(self) -> &'a mut W {
1329 self.variant(SAIELSR89_A::_0)
1330 }
1331 #[doc = "Non-secure"]
1332 #[inline(always)]
1333 pub fn _1(self) -> &'a mut W {
1334 self.variant(SAIELSR89_A::_1)
1335 }
1336}
1337#[doc = "Field `SAIELSR90` reader - Security attributes of registers for IELSR95 to IELSR64"]
1338pub type SAIELSR90_R = crate::BitReader<SAIELSR90_A>;
1339#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1341pub enum SAIELSR90_A {
1342 #[doc = "0: Secure"]
1343 _0 = 0,
1344 #[doc = "1: Non-secure"]
1345 _1 = 1,
1346}
1347impl From<SAIELSR90_A> for bool {
1348 #[inline(always)]
1349 fn from(variant: SAIELSR90_A) -> Self {
1350 variant as u8 != 0
1351 }
1352}
1353impl SAIELSR90_R {
1354 #[doc = "Get enumerated values variant"]
1355 #[inline(always)]
1356 pub fn variant(&self) -> SAIELSR90_A {
1357 match self.bits {
1358 false => SAIELSR90_A::_0,
1359 true => SAIELSR90_A::_1,
1360 }
1361 }
1362 #[doc = "Checks if the value of the field is `_0`"]
1363 #[inline(always)]
1364 pub fn is_0(&self) -> bool {
1365 *self == SAIELSR90_A::_0
1366 }
1367 #[doc = "Checks if the value of the field is `_1`"]
1368 #[inline(always)]
1369 pub fn is_1(&self) -> bool {
1370 *self == SAIELSR90_A::_1
1371 }
1372}
1373#[doc = "Field `SAIELSR90` writer - Security attributes of registers for IELSR95 to IELSR64"]
1374pub type SAIELSR90_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR90_A, O>;
1375impl<'a, const O: u8> SAIELSR90_W<'a, O> {
1376 #[doc = "Secure"]
1377 #[inline(always)]
1378 pub fn _0(self) -> &'a mut W {
1379 self.variant(SAIELSR90_A::_0)
1380 }
1381 #[doc = "Non-secure"]
1382 #[inline(always)]
1383 pub fn _1(self) -> &'a mut W {
1384 self.variant(SAIELSR90_A::_1)
1385 }
1386}
1387#[doc = "Field `SAIELSR91` reader - Security attributes of registers for IELSR95 to IELSR64"]
1388pub type SAIELSR91_R = crate::BitReader<SAIELSR91_A>;
1389#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1390#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1391pub enum SAIELSR91_A {
1392 #[doc = "0: Secure"]
1393 _0 = 0,
1394 #[doc = "1: Non-secure"]
1395 _1 = 1,
1396}
1397impl From<SAIELSR91_A> for bool {
1398 #[inline(always)]
1399 fn from(variant: SAIELSR91_A) -> Self {
1400 variant as u8 != 0
1401 }
1402}
1403impl SAIELSR91_R {
1404 #[doc = "Get enumerated values variant"]
1405 #[inline(always)]
1406 pub fn variant(&self) -> SAIELSR91_A {
1407 match self.bits {
1408 false => SAIELSR91_A::_0,
1409 true => SAIELSR91_A::_1,
1410 }
1411 }
1412 #[doc = "Checks if the value of the field is `_0`"]
1413 #[inline(always)]
1414 pub fn is_0(&self) -> bool {
1415 *self == SAIELSR91_A::_0
1416 }
1417 #[doc = "Checks if the value of the field is `_1`"]
1418 #[inline(always)]
1419 pub fn is_1(&self) -> bool {
1420 *self == SAIELSR91_A::_1
1421 }
1422}
1423#[doc = "Field `SAIELSR91` writer - Security attributes of registers for IELSR95 to IELSR64"]
1424pub type SAIELSR91_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR91_A, O>;
1425impl<'a, const O: u8> SAIELSR91_W<'a, O> {
1426 #[doc = "Secure"]
1427 #[inline(always)]
1428 pub fn _0(self) -> &'a mut W {
1429 self.variant(SAIELSR91_A::_0)
1430 }
1431 #[doc = "Non-secure"]
1432 #[inline(always)]
1433 pub fn _1(self) -> &'a mut W {
1434 self.variant(SAIELSR91_A::_1)
1435 }
1436}
1437#[doc = "Field `SAIELSR92` reader - Security attributes of registers for IELSR95 to IELSR64"]
1438pub type SAIELSR92_R = crate::BitReader<SAIELSR92_A>;
1439#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1440#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1441pub enum SAIELSR92_A {
1442 #[doc = "0: Secure"]
1443 _0 = 0,
1444 #[doc = "1: Non-secure"]
1445 _1 = 1,
1446}
1447impl From<SAIELSR92_A> for bool {
1448 #[inline(always)]
1449 fn from(variant: SAIELSR92_A) -> Self {
1450 variant as u8 != 0
1451 }
1452}
1453impl SAIELSR92_R {
1454 #[doc = "Get enumerated values variant"]
1455 #[inline(always)]
1456 pub fn variant(&self) -> SAIELSR92_A {
1457 match self.bits {
1458 false => SAIELSR92_A::_0,
1459 true => SAIELSR92_A::_1,
1460 }
1461 }
1462 #[doc = "Checks if the value of the field is `_0`"]
1463 #[inline(always)]
1464 pub fn is_0(&self) -> bool {
1465 *self == SAIELSR92_A::_0
1466 }
1467 #[doc = "Checks if the value of the field is `_1`"]
1468 #[inline(always)]
1469 pub fn is_1(&self) -> bool {
1470 *self == SAIELSR92_A::_1
1471 }
1472}
1473#[doc = "Field `SAIELSR92` writer - Security attributes of registers for IELSR95 to IELSR64"]
1474pub type SAIELSR92_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR92_A, O>;
1475impl<'a, const O: u8> SAIELSR92_W<'a, O> {
1476 #[doc = "Secure"]
1477 #[inline(always)]
1478 pub fn _0(self) -> &'a mut W {
1479 self.variant(SAIELSR92_A::_0)
1480 }
1481 #[doc = "Non-secure"]
1482 #[inline(always)]
1483 pub fn _1(self) -> &'a mut W {
1484 self.variant(SAIELSR92_A::_1)
1485 }
1486}
1487#[doc = "Field `SAIELSR93` reader - Security attributes of registers for IELSR95 to IELSR64"]
1488pub type SAIELSR93_R = crate::BitReader<SAIELSR93_A>;
1489#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1490#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1491pub enum SAIELSR93_A {
1492 #[doc = "0: Secure"]
1493 _0 = 0,
1494 #[doc = "1: Non-secure"]
1495 _1 = 1,
1496}
1497impl From<SAIELSR93_A> for bool {
1498 #[inline(always)]
1499 fn from(variant: SAIELSR93_A) -> Self {
1500 variant as u8 != 0
1501 }
1502}
1503impl SAIELSR93_R {
1504 #[doc = "Get enumerated values variant"]
1505 #[inline(always)]
1506 pub fn variant(&self) -> SAIELSR93_A {
1507 match self.bits {
1508 false => SAIELSR93_A::_0,
1509 true => SAIELSR93_A::_1,
1510 }
1511 }
1512 #[doc = "Checks if the value of the field is `_0`"]
1513 #[inline(always)]
1514 pub fn is_0(&self) -> bool {
1515 *self == SAIELSR93_A::_0
1516 }
1517 #[doc = "Checks if the value of the field is `_1`"]
1518 #[inline(always)]
1519 pub fn is_1(&self) -> bool {
1520 *self == SAIELSR93_A::_1
1521 }
1522}
1523#[doc = "Field `SAIELSR93` writer - Security attributes of registers for IELSR95 to IELSR64"]
1524pub type SAIELSR93_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR93_A, O>;
1525impl<'a, const O: u8> SAIELSR93_W<'a, O> {
1526 #[doc = "Secure"]
1527 #[inline(always)]
1528 pub fn _0(self) -> &'a mut W {
1529 self.variant(SAIELSR93_A::_0)
1530 }
1531 #[doc = "Non-secure"]
1532 #[inline(always)]
1533 pub fn _1(self) -> &'a mut W {
1534 self.variant(SAIELSR93_A::_1)
1535 }
1536}
1537#[doc = "Field `SAIELSR94` reader - Security attributes of registers for IELSR95 to IELSR64"]
1538pub type SAIELSR94_R = crate::BitReader<SAIELSR94_A>;
1539#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1540#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1541pub enum SAIELSR94_A {
1542 #[doc = "0: Secure"]
1543 _0 = 0,
1544 #[doc = "1: Non-secure"]
1545 _1 = 1,
1546}
1547impl From<SAIELSR94_A> for bool {
1548 #[inline(always)]
1549 fn from(variant: SAIELSR94_A) -> Self {
1550 variant as u8 != 0
1551 }
1552}
1553impl SAIELSR94_R {
1554 #[doc = "Get enumerated values variant"]
1555 #[inline(always)]
1556 pub fn variant(&self) -> SAIELSR94_A {
1557 match self.bits {
1558 false => SAIELSR94_A::_0,
1559 true => SAIELSR94_A::_1,
1560 }
1561 }
1562 #[doc = "Checks if the value of the field is `_0`"]
1563 #[inline(always)]
1564 pub fn is_0(&self) -> bool {
1565 *self == SAIELSR94_A::_0
1566 }
1567 #[doc = "Checks if the value of the field is `_1`"]
1568 #[inline(always)]
1569 pub fn is_1(&self) -> bool {
1570 *self == SAIELSR94_A::_1
1571 }
1572}
1573#[doc = "Field `SAIELSR94` writer - Security attributes of registers for IELSR95 to IELSR64"]
1574pub type SAIELSR94_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR94_A, O>;
1575impl<'a, const O: u8> SAIELSR94_W<'a, O> {
1576 #[doc = "Secure"]
1577 #[inline(always)]
1578 pub fn _0(self) -> &'a mut W {
1579 self.variant(SAIELSR94_A::_0)
1580 }
1581 #[doc = "Non-secure"]
1582 #[inline(always)]
1583 pub fn _1(self) -> &'a mut W {
1584 self.variant(SAIELSR94_A::_1)
1585 }
1586}
1587#[doc = "Field `SAIELSR95` reader - Security attributes of registers for IELSR95 to IELSR64"]
1588pub type SAIELSR95_R = crate::BitReader<SAIELSR95_A>;
1589#[doc = "Security attributes of registers for IELSR95 to IELSR64\n\nValue on reset: 1"]
1590#[derive(Clone, Copy, Debug, PartialEq, Eq)]
1591pub enum SAIELSR95_A {
1592 #[doc = "0: Secure"]
1593 _0 = 0,
1594 #[doc = "1: Non-secure"]
1595 _1 = 1,
1596}
1597impl From<SAIELSR95_A> for bool {
1598 #[inline(always)]
1599 fn from(variant: SAIELSR95_A) -> Self {
1600 variant as u8 != 0
1601 }
1602}
1603impl SAIELSR95_R {
1604 #[doc = "Get enumerated values variant"]
1605 #[inline(always)]
1606 pub fn variant(&self) -> SAIELSR95_A {
1607 match self.bits {
1608 false => SAIELSR95_A::_0,
1609 true => SAIELSR95_A::_1,
1610 }
1611 }
1612 #[doc = "Checks if the value of the field is `_0`"]
1613 #[inline(always)]
1614 pub fn is_0(&self) -> bool {
1615 *self == SAIELSR95_A::_0
1616 }
1617 #[doc = "Checks if the value of the field is `_1`"]
1618 #[inline(always)]
1619 pub fn is_1(&self) -> bool {
1620 *self == SAIELSR95_A::_1
1621 }
1622}
1623#[doc = "Field `SAIELSR95` writer - Security attributes of registers for IELSR95 to IELSR64"]
1624pub type SAIELSR95_W<'a, const O: u8> = crate::BitWriter<'a, u32, ICUSARI_SPEC, SAIELSR95_A, O>;
1625impl<'a, const O: u8> SAIELSR95_W<'a, O> {
1626 #[doc = "Secure"]
1627 #[inline(always)]
1628 pub fn _0(self) -> &'a mut W {
1629 self.variant(SAIELSR95_A::_0)
1630 }
1631 #[doc = "Non-secure"]
1632 #[inline(always)]
1633 pub fn _1(self) -> &'a mut W {
1634 self.variant(SAIELSR95_A::_1)
1635 }
1636}
1637impl R {
1638 #[doc = "Bit 0 - Security attributes of registers for IELSR95 to IELSR64"]
1639 #[inline(always)]
1640 pub fn saielsr64(&self) -> SAIELSR64_R {
1641 SAIELSR64_R::new((self.bits & 1) != 0)
1642 }
1643 #[doc = "Bit 1 - Security attributes of registers for IELSR95 to IELSR64"]
1644 #[inline(always)]
1645 pub fn saielsr65(&self) -> SAIELSR65_R {
1646 SAIELSR65_R::new(((self.bits >> 1) & 1) != 0)
1647 }
1648 #[doc = "Bit 2 - Security attributes of registers for IELSR95 to IELSR64"]
1649 #[inline(always)]
1650 pub fn saielsr66(&self) -> SAIELSR66_R {
1651 SAIELSR66_R::new(((self.bits >> 2) & 1) != 0)
1652 }
1653 #[doc = "Bit 3 - Security attributes of registers for IELSR95 to IELSR64"]
1654 #[inline(always)]
1655 pub fn saielsr67(&self) -> SAIELSR67_R {
1656 SAIELSR67_R::new(((self.bits >> 3) & 1) != 0)
1657 }
1658 #[doc = "Bit 4 - Security attributes of registers for IELSR95 to IELSR64"]
1659 #[inline(always)]
1660 pub fn saielsr68(&self) -> SAIELSR68_R {
1661 SAIELSR68_R::new(((self.bits >> 4) & 1) != 0)
1662 }
1663 #[doc = "Bit 5 - Security attributes of registers for IELSR95 to IELSR64"]
1664 #[inline(always)]
1665 pub fn saielsr69(&self) -> SAIELSR69_R {
1666 SAIELSR69_R::new(((self.bits >> 5) & 1) != 0)
1667 }
1668 #[doc = "Bit 6 - Security attributes of registers for IELSR95 to IELSR64"]
1669 #[inline(always)]
1670 pub fn saielsr70(&self) -> SAIELSR70_R {
1671 SAIELSR70_R::new(((self.bits >> 6) & 1) != 0)
1672 }
1673 #[doc = "Bit 7 - Security attributes of registers for IELSR95 to IELSR64"]
1674 #[inline(always)]
1675 pub fn saielsr71(&self) -> SAIELSR71_R {
1676 SAIELSR71_R::new(((self.bits >> 7) & 1) != 0)
1677 }
1678 #[doc = "Bit 8 - Security attributes of registers for IELSR95 to IELSR64"]
1679 #[inline(always)]
1680 pub fn saielsr72(&self) -> SAIELSR72_R {
1681 SAIELSR72_R::new(((self.bits >> 8) & 1) != 0)
1682 }
1683 #[doc = "Bit 9 - Security attributes of registers for IELSR95 to IELSR64"]
1684 #[inline(always)]
1685 pub fn saielsr73(&self) -> SAIELSR73_R {
1686 SAIELSR73_R::new(((self.bits >> 9) & 1) != 0)
1687 }
1688 #[doc = "Bit 10 - Security attributes of registers for IELSR95 to IELSR64"]
1689 #[inline(always)]
1690 pub fn saielsr74(&self) -> SAIELSR74_R {
1691 SAIELSR74_R::new(((self.bits >> 10) & 1) != 0)
1692 }
1693 #[doc = "Bit 11 - Security attributes of registers for IELSR95 to IELSR64"]
1694 #[inline(always)]
1695 pub fn saielsr75(&self) -> SAIELSR75_R {
1696 SAIELSR75_R::new(((self.bits >> 11) & 1) != 0)
1697 }
1698 #[doc = "Bit 12 - Security attributes of registers for IELSR95 to IELSR64"]
1699 #[inline(always)]
1700 pub fn saielsr76(&self) -> SAIELSR76_R {
1701 SAIELSR76_R::new(((self.bits >> 12) & 1) != 0)
1702 }
1703 #[doc = "Bit 13 - Security attributes of registers for IELSR95 to IELSR64"]
1704 #[inline(always)]
1705 pub fn saielsr77(&self) -> SAIELSR77_R {
1706 SAIELSR77_R::new(((self.bits >> 13) & 1) != 0)
1707 }
1708 #[doc = "Bit 14 - Security attributes of registers for IELSR95 to IELSR64"]
1709 #[inline(always)]
1710 pub fn saielsr78(&self) -> SAIELSR78_R {
1711 SAIELSR78_R::new(((self.bits >> 14) & 1) != 0)
1712 }
1713 #[doc = "Bit 15 - Security attributes of registers for IELSR95 to IELSR64"]
1714 #[inline(always)]
1715 pub fn saielsr79(&self) -> SAIELSR79_R {
1716 SAIELSR79_R::new(((self.bits >> 15) & 1) != 0)
1717 }
1718 #[doc = "Bit 16 - Security attributes of registers for IELSR95 to IELSR64"]
1719 #[inline(always)]
1720 pub fn saielsr80(&self) -> SAIELSR80_R {
1721 SAIELSR80_R::new(((self.bits >> 16) & 1) != 0)
1722 }
1723 #[doc = "Bit 17 - Security attributes of registers for IELSR95 to IELSR64"]
1724 #[inline(always)]
1725 pub fn saielsr81(&self) -> SAIELSR81_R {
1726 SAIELSR81_R::new(((self.bits >> 17) & 1) != 0)
1727 }
1728 #[doc = "Bit 18 - Security attributes of registers for IELSR95 to IELSR64"]
1729 #[inline(always)]
1730 pub fn saielsr82(&self) -> SAIELSR82_R {
1731 SAIELSR82_R::new(((self.bits >> 18) & 1) != 0)
1732 }
1733 #[doc = "Bit 19 - Security attributes of registers for IELSR95 to IELSR64"]
1734 #[inline(always)]
1735 pub fn saielsr83(&self) -> SAIELSR83_R {
1736 SAIELSR83_R::new(((self.bits >> 19) & 1) != 0)
1737 }
1738 #[doc = "Bit 20 - Security attributes of registers for IELSR95 to IELSR64"]
1739 #[inline(always)]
1740 pub fn saielsr84(&self) -> SAIELSR84_R {
1741 SAIELSR84_R::new(((self.bits >> 20) & 1) != 0)
1742 }
1743 #[doc = "Bit 21 - Security attributes of registers for IELSR95 to IELSR64"]
1744 #[inline(always)]
1745 pub fn saielsr85(&self) -> SAIELSR85_R {
1746 SAIELSR85_R::new(((self.bits >> 21) & 1) != 0)
1747 }
1748 #[doc = "Bit 22 - Security attributes of registers for IELSR95 to IELSR64"]
1749 #[inline(always)]
1750 pub fn saielsr86(&self) -> SAIELSR86_R {
1751 SAIELSR86_R::new(((self.bits >> 22) & 1) != 0)
1752 }
1753 #[doc = "Bit 23 - Security attributes of registers for IELSR95 to IELSR64"]
1754 #[inline(always)]
1755 pub fn saielsr87(&self) -> SAIELSR87_R {
1756 SAIELSR87_R::new(((self.bits >> 23) & 1) != 0)
1757 }
1758 #[doc = "Bit 24 - Security attributes of registers for IELSR95 to IELSR64"]
1759 #[inline(always)]
1760 pub fn saielsr88(&self) -> SAIELSR88_R {
1761 SAIELSR88_R::new(((self.bits >> 24) & 1) != 0)
1762 }
1763 #[doc = "Bit 25 - Security attributes of registers for IELSR95 to IELSR64"]
1764 #[inline(always)]
1765 pub fn saielsr89(&self) -> SAIELSR89_R {
1766 SAIELSR89_R::new(((self.bits >> 25) & 1) != 0)
1767 }
1768 #[doc = "Bit 26 - Security attributes of registers for IELSR95 to IELSR64"]
1769 #[inline(always)]
1770 pub fn saielsr90(&self) -> SAIELSR90_R {
1771 SAIELSR90_R::new(((self.bits >> 26) & 1) != 0)
1772 }
1773 #[doc = "Bit 27 - Security attributes of registers for IELSR95 to IELSR64"]
1774 #[inline(always)]
1775 pub fn saielsr91(&self) -> SAIELSR91_R {
1776 SAIELSR91_R::new(((self.bits >> 27) & 1) != 0)
1777 }
1778 #[doc = "Bit 28 - Security attributes of registers for IELSR95 to IELSR64"]
1779 #[inline(always)]
1780 pub fn saielsr92(&self) -> SAIELSR92_R {
1781 SAIELSR92_R::new(((self.bits >> 28) & 1) != 0)
1782 }
1783 #[doc = "Bit 29 - Security attributes of registers for IELSR95 to IELSR64"]
1784 #[inline(always)]
1785 pub fn saielsr93(&self) -> SAIELSR93_R {
1786 SAIELSR93_R::new(((self.bits >> 29) & 1) != 0)
1787 }
1788 #[doc = "Bit 30 - Security attributes of registers for IELSR95 to IELSR64"]
1789 #[inline(always)]
1790 pub fn saielsr94(&self) -> SAIELSR94_R {
1791 SAIELSR94_R::new(((self.bits >> 30) & 1) != 0)
1792 }
1793 #[doc = "Bit 31 - Security attributes of registers for IELSR95 to IELSR64"]
1794 #[inline(always)]
1795 pub fn saielsr95(&self) -> SAIELSR95_R {
1796 SAIELSR95_R::new(((self.bits >> 31) & 1) != 0)
1797 }
1798}
1799impl W {
1800 #[doc = "Bit 0 - Security attributes of registers for IELSR95 to IELSR64"]
1801 #[inline(always)]
1802 #[must_use]
1803 pub fn saielsr64(&mut self) -> SAIELSR64_W<0> {
1804 SAIELSR64_W::new(self)
1805 }
1806 #[doc = "Bit 1 - Security attributes of registers for IELSR95 to IELSR64"]
1807 #[inline(always)]
1808 #[must_use]
1809 pub fn saielsr65(&mut self) -> SAIELSR65_W<1> {
1810 SAIELSR65_W::new(self)
1811 }
1812 #[doc = "Bit 2 - Security attributes of registers for IELSR95 to IELSR64"]
1813 #[inline(always)]
1814 #[must_use]
1815 pub fn saielsr66(&mut self) -> SAIELSR66_W<2> {
1816 SAIELSR66_W::new(self)
1817 }
1818 #[doc = "Bit 3 - Security attributes of registers for IELSR95 to IELSR64"]
1819 #[inline(always)]
1820 #[must_use]
1821 pub fn saielsr67(&mut self) -> SAIELSR67_W<3> {
1822 SAIELSR67_W::new(self)
1823 }
1824 #[doc = "Bit 4 - Security attributes of registers for IELSR95 to IELSR64"]
1825 #[inline(always)]
1826 #[must_use]
1827 pub fn saielsr68(&mut self) -> SAIELSR68_W<4> {
1828 SAIELSR68_W::new(self)
1829 }
1830 #[doc = "Bit 5 - Security attributes of registers for IELSR95 to IELSR64"]
1831 #[inline(always)]
1832 #[must_use]
1833 pub fn saielsr69(&mut self) -> SAIELSR69_W<5> {
1834 SAIELSR69_W::new(self)
1835 }
1836 #[doc = "Bit 6 - Security attributes of registers for IELSR95 to IELSR64"]
1837 #[inline(always)]
1838 #[must_use]
1839 pub fn saielsr70(&mut self) -> SAIELSR70_W<6> {
1840 SAIELSR70_W::new(self)
1841 }
1842 #[doc = "Bit 7 - Security attributes of registers for IELSR95 to IELSR64"]
1843 #[inline(always)]
1844 #[must_use]
1845 pub fn saielsr71(&mut self) -> SAIELSR71_W<7> {
1846 SAIELSR71_W::new(self)
1847 }
1848 #[doc = "Bit 8 - Security attributes of registers for IELSR95 to IELSR64"]
1849 #[inline(always)]
1850 #[must_use]
1851 pub fn saielsr72(&mut self) -> SAIELSR72_W<8> {
1852 SAIELSR72_W::new(self)
1853 }
1854 #[doc = "Bit 9 - Security attributes of registers for IELSR95 to IELSR64"]
1855 #[inline(always)]
1856 #[must_use]
1857 pub fn saielsr73(&mut self) -> SAIELSR73_W<9> {
1858 SAIELSR73_W::new(self)
1859 }
1860 #[doc = "Bit 10 - Security attributes of registers for IELSR95 to IELSR64"]
1861 #[inline(always)]
1862 #[must_use]
1863 pub fn saielsr74(&mut self) -> SAIELSR74_W<10> {
1864 SAIELSR74_W::new(self)
1865 }
1866 #[doc = "Bit 11 - Security attributes of registers for IELSR95 to IELSR64"]
1867 #[inline(always)]
1868 #[must_use]
1869 pub fn saielsr75(&mut self) -> SAIELSR75_W<11> {
1870 SAIELSR75_W::new(self)
1871 }
1872 #[doc = "Bit 12 - Security attributes of registers for IELSR95 to IELSR64"]
1873 #[inline(always)]
1874 #[must_use]
1875 pub fn saielsr76(&mut self) -> SAIELSR76_W<12> {
1876 SAIELSR76_W::new(self)
1877 }
1878 #[doc = "Bit 13 - Security attributes of registers for IELSR95 to IELSR64"]
1879 #[inline(always)]
1880 #[must_use]
1881 pub fn saielsr77(&mut self) -> SAIELSR77_W<13> {
1882 SAIELSR77_W::new(self)
1883 }
1884 #[doc = "Bit 14 - Security attributes of registers for IELSR95 to IELSR64"]
1885 #[inline(always)]
1886 #[must_use]
1887 pub fn saielsr78(&mut self) -> SAIELSR78_W<14> {
1888 SAIELSR78_W::new(self)
1889 }
1890 #[doc = "Bit 15 - Security attributes of registers for IELSR95 to IELSR64"]
1891 #[inline(always)]
1892 #[must_use]
1893 pub fn saielsr79(&mut self) -> SAIELSR79_W<15> {
1894 SAIELSR79_W::new(self)
1895 }
1896 #[doc = "Bit 16 - Security attributes of registers for IELSR95 to IELSR64"]
1897 #[inline(always)]
1898 #[must_use]
1899 pub fn saielsr80(&mut self) -> SAIELSR80_W<16> {
1900 SAIELSR80_W::new(self)
1901 }
1902 #[doc = "Bit 17 - Security attributes of registers for IELSR95 to IELSR64"]
1903 #[inline(always)]
1904 #[must_use]
1905 pub fn saielsr81(&mut self) -> SAIELSR81_W<17> {
1906 SAIELSR81_W::new(self)
1907 }
1908 #[doc = "Bit 18 - Security attributes of registers for IELSR95 to IELSR64"]
1909 #[inline(always)]
1910 #[must_use]
1911 pub fn saielsr82(&mut self) -> SAIELSR82_W<18> {
1912 SAIELSR82_W::new(self)
1913 }
1914 #[doc = "Bit 19 - Security attributes of registers for IELSR95 to IELSR64"]
1915 #[inline(always)]
1916 #[must_use]
1917 pub fn saielsr83(&mut self) -> SAIELSR83_W<19> {
1918 SAIELSR83_W::new(self)
1919 }
1920 #[doc = "Bit 20 - Security attributes of registers for IELSR95 to IELSR64"]
1921 #[inline(always)]
1922 #[must_use]
1923 pub fn saielsr84(&mut self) -> SAIELSR84_W<20> {
1924 SAIELSR84_W::new(self)
1925 }
1926 #[doc = "Bit 21 - Security attributes of registers for IELSR95 to IELSR64"]
1927 #[inline(always)]
1928 #[must_use]
1929 pub fn saielsr85(&mut self) -> SAIELSR85_W<21> {
1930 SAIELSR85_W::new(self)
1931 }
1932 #[doc = "Bit 22 - Security attributes of registers for IELSR95 to IELSR64"]
1933 #[inline(always)]
1934 #[must_use]
1935 pub fn saielsr86(&mut self) -> SAIELSR86_W<22> {
1936 SAIELSR86_W::new(self)
1937 }
1938 #[doc = "Bit 23 - Security attributes of registers for IELSR95 to IELSR64"]
1939 #[inline(always)]
1940 #[must_use]
1941 pub fn saielsr87(&mut self) -> SAIELSR87_W<23> {
1942 SAIELSR87_W::new(self)
1943 }
1944 #[doc = "Bit 24 - Security attributes of registers for IELSR95 to IELSR64"]
1945 #[inline(always)]
1946 #[must_use]
1947 pub fn saielsr88(&mut self) -> SAIELSR88_W<24> {
1948 SAIELSR88_W::new(self)
1949 }
1950 #[doc = "Bit 25 - Security attributes of registers for IELSR95 to IELSR64"]
1951 #[inline(always)]
1952 #[must_use]
1953 pub fn saielsr89(&mut self) -> SAIELSR89_W<25> {
1954 SAIELSR89_W::new(self)
1955 }
1956 #[doc = "Bit 26 - Security attributes of registers for IELSR95 to IELSR64"]
1957 #[inline(always)]
1958 #[must_use]
1959 pub fn saielsr90(&mut self) -> SAIELSR90_W<26> {
1960 SAIELSR90_W::new(self)
1961 }
1962 #[doc = "Bit 27 - Security attributes of registers for IELSR95 to IELSR64"]
1963 #[inline(always)]
1964 #[must_use]
1965 pub fn saielsr91(&mut self) -> SAIELSR91_W<27> {
1966 SAIELSR91_W::new(self)
1967 }
1968 #[doc = "Bit 28 - Security attributes of registers for IELSR95 to IELSR64"]
1969 #[inline(always)]
1970 #[must_use]
1971 pub fn saielsr92(&mut self) -> SAIELSR92_W<28> {
1972 SAIELSR92_W::new(self)
1973 }
1974 #[doc = "Bit 29 - Security attributes of registers for IELSR95 to IELSR64"]
1975 #[inline(always)]
1976 #[must_use]
1977 pub fn saielsr93(&mut self) -> SAIELSR93_W<29> {
1978 SAIELSR93_W::new(self)
1979 }
1980 #[doc = "Bit 30 - Security attributes of registers for IELSR95 to IELSR64"]
1981 #[inline(always)]
1982 #[must_use]
1983 pub fn saielsr94(&mut self) -> SAIELSR94_W<30> {
1984 SAIELSR94_W::new(self)
1985 }
1986 #[doc = "Bit 31 - Security attributes of registers for IELSR95 to IELSR64"]
1987 #[inline(always)]
1988 #[must_use]
1989 pub fn saielsr95(&mut self) -> SAIELSR95_W<31> {
1990 SAIELSR95_W::new(self)
1991 }
1992 #[doc = "Writes raw bits to the register."]
1993 #[inline(always)]
1994 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
1995 self.0.bits(bits);
1996 self
1997 }
1998}
1999#[doc = "Interrupt Controller Unit Security Attribution Register I\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 [icusari](index.html) module"]
2000pub struct ICUSARI_SPEC;
2001impl crate::RegisterSpec for ICUSARI_SPEC {
2002 type Ux = u32;
2003}
2004#[doc = "`read()` method returns [icusari::R](R) reader structure"]
2005impl crate::Readable for ICUSARI_SPEC {
2006 type Reader = R;
2007}
2008#[doc = "`write(|w| ..)` method takes [icusari::W](W) writer structure"]
2009impl crate::Writable for ICUSARI_SPEC {
2010 type Writer = W;
2011 const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
2012 const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
2013}
2014#[doc = "`reset()` method sets ICUSARI to value 0xffff_ffff"]
2015impl crate::Resettable for ICUSARI_SPEC {
2016 const RESET_VALUE: Self::Ux = 0xffff_ffff;
2017}