-
Notifications
You must be signed in to change notification settings - Fork 3
/
fvp_cfg.txt
1696 lines (1696 loc) · 236 KB
/
fvp_cfg.txt
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Parameters:
# instance.parameter=value #(type, mode) default = 'def value' : description : [min..max]
#------------------------------------------------------------------------------
NSC_CFG_0=0 # (bool , init-time) default = '0' : Whether 0x10000000..0x1FFFFFFF is non-secure-callable
NSC_CFG_1=0 # (bool , init-time) default = '0' : Whether 0x30000000..0x3FFFFFFF is non-secure-callable
REMOTE_CONNECTION.CADIServer.enable_remote_cadi=0 # (bool , init-time) default = '0' : Allow connections from remote hosts
REMOTE_CONNECTION.CADIServer.listen_address=127.0.0.1 # (string, init-time) default = '127.0.0.1' : Network address the server should listen on if enable_remote_cadi is set ("127.0.0.1" by default)
REMOTE_CONNECTION.CADIServer.port=31627 # (int , init-time) default = '0x7b8b' : TCP port the server should listen on if enable_remote_cadi is set (31627 by default)
REMOTE_CONNECTION.CADIServer.range=0 # (int , init-time) default = '0x0' : If requested port is not avaliable, search for next avaliable port in range: [port:port+range] (0 by default, only try specified port)
core_clk.mul=25000000 # (int , init-time) default = '0x17d7840' : Clock Rate Multiplier. This parameter is not exposed via CADI and can only be set in LISA
cpu0.BEATS_PER_TICK=2 # (int , init-time) default = '0x2' : Number of beats from each in-flight vector instruction executed in 1 tick (1,2 or 4).
cpu0.BF_is_nop=0 # (bool , init-time) default = '0' : BF instruction executes as NOP, even if we have LO_BRANCH_INFO.
cpu0.CDEMAPPEDONCP=255 # (int , init-time) default = '0xff' : Bit N specifies whether the instruction for coprocessor N (CP7:CP0) is redirected to the CDE module
cpu0.CFGBIGEND=0 # (bool , init-time) default = '0' : Initialize processor to big endian mode
cpu0.CFGDTCMSZ=10 # (int , init-time) default = '0xa' : Size of the data TCM. 0=No DTCM implemented. Otherwise=Size of DTCM=pow(2, CFGDTCMSZ - 1) KB. Minimum size is 4KB
cpu0.CFGITCMSZ=10 # (int , init-time) default = '0xa' : Size of the instruction TCM. 0=No ITCM implemented. Otherwise=Size of ITCM=pow(2, CFGITCMSZ - 1) KB. Minimum size is 4KB
cpu0.CFGMEMALIAS=16 # (int , init-time) default = '0x10' : Memory address alias bit for the ITCM, DTCM and P-AHB regions. 0=No alias, 1=Alias bit 24, 2=Alias bit 25, 4=Alias bit 26, 8=Alias bit 27, 16=Alias bit 28
cpu0.CFGNOCDECP=0 # (int , init-time) default = '0x0' : Bit N means external coprocessor N (CP7:CP0) disable for CDE coprocessor
cpu0.CFGPAHBSZ=0 # (int , init-time) default = '0x0' : Size of the P-AHB peripheral port memory region. 0=P-AHB disabled, 1=64MB, 2=128MB, 3=256MB, 4=512MB
cpu0.CPIF=1 # (bool , init-time) default = '1' : Specifies whether the external coprocessor interface is included
cpu0.CPNSPRESENT=255 # (int , init-time) default = '0xff' : Bit N means external coprocessor N (CP7:CP0) is accessible in Non-Secure state
cpu0.CPSPRESENT=255 # (int , init-time) default = '0xff' : Bit N means external coprocessor N (CP7:CP0) is accessible in Secure state
cpu0.DBGLVL=2 # (int , init-time) default = '0x2' : 0: Minimal debug; 1: 2 Watchpoints, 4 Breakpoint comparators; 2: 4 Watchpoints, 8 Breakpoint comparators; 3: 8 Watchpoints, 8 Breakpoint comparators
cpu0.DCACHESZ=15 # (int , init-time) default = '0xf' : Whether the D-cache is included and, if included, the size of it. Bit 0: 0=No D-cache included, 1=D-cache included. Bits [4:1]: 0x0=4KB D-cache, 0x1=8KB D-cache, 0x3=16KB D-cache, 0x7=32KB D-cache, 0x15=64KB D-cache
cpu0.DTGUBLKSZ=8 # (int , init-time) default = '0x8' : DTCM gate unit block size. Size=pow(2, DTGUBLKSZ + 5) bytes
cpu0.ECOREVNUM=0 # (int , init-time) default = '0x0' : ECO Revision number
cpu0.ERRDEVID.NUM=1 # (int , init-time) default = '0x1' : RAS: Number of implemented error record indexes, 0 to 1.
cpu0.ETM=1 # (bool , init-time) default = '1' : Support for ETM trace. false : No ETM trace included, true: ETM trace included
cpu0.FPU=1 # (bool , init-time) default = '1' : Set whether the model has VFP support
cpu0.ICACHESZ=15 # (int , init-time) default = '0xf' : Whether the I-cache is included and, if included, the size of it. Bit 0: 0=No I-cache included, 1=I-cache included. Bits [4:1]: 0x0=4KB I-cache, 0x1=8KB I-cache, 0x3=16KB I-cache, 0x7=32KB I-cache, 0x15=64KB I-cache
cpu0.ID_ISAR0.CmpBranch=3 # (int , init-time) default = '0x3' : Support for Compare and Branch instructions. 1 = Supports CBNZ and CBZ instructions; 3 = Supports non-predicated low overhead looping (WLS, DLS, LE, and LC) and branch future (BF, BFX, BFL, BFLX, and BFCSEL) instructions.
cpu0.INITNSVTOR=0 # (int , init-time) default = '0x0' : Non-Secure vector-table offset at reset
cpu0.INITPAHBEN=0 # (bool , init-time) default = '0' : The P-AHB enable state at reset
cpu0.INITSVTOR=268435456 # (int , init-time) default = '0x10000000' : Secure vector-table offset at reset
cpu0.IRQDIS0=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+0]
cpu0.IRQDIS1=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+32]
cpu0.IRQDIS10=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+320]
cpu0.IRQDIS11=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+352]
cpu0.IRQDIS12=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+384]
cpu0.IRQDIS13=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+416]
cpu0.IRQDIS14=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+448]
cpu0.IRQDIS2=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+64]
cpu0.IRQDIS3=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+96]
cpu0.IRQDIS4=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+128]
cpu0.IRQDIS5=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+160]
cpu0.IRQDIS6=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+192]
cpu0.IRQDIS7=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+224]
cpu0.IRQDIS8=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+256]
cpu0.IRQDIS9=0 # (int , init-time) default = '0x0' : IRQ line disable mask. Bit n of this 32-bit parameter disables IRQ[n+288]
cpu0.IRQLVL=3 # (int , init-time) default = '0x3' : Number of bits of interrupt priority
cpu0.ITGUBLKSZ=8 # (int , init-time) default = '0x8' : ITCM gate unit block size. Size=pow(2, ITGUBLKSZ + 5) bytes
cpu0.ITM=1 # (bool , init-time) default = '1' : Level of instrumentation trace supported. false : No ITM trace included, true: ITM trace included
cpu0.LOCKDTGU=0 # (bool , init-time) default = '0' : Lock down of Data TGU registers write
cpu0.LOCKITGU=0 # (bool , init-time) default = '0' : Lock down of Instruction TGU registers write
cpu0.LOCKTCM=0 # (bool , init-time) default = '0' : Lock down of TCM registers write
cpu0.LOCK_NS_MPU=0 # (bool , init-time) default = '0' : Lock down of Non-Secure MPU registers write
cpu0.LOCK_SAU=0 # (bool , init-time) default = '0' : Lock down of SAU registers write
cpu0.LOCK_S_MPU=0 # (bool , init-time) default = '0' : Lock down of Secure MPU registers write
cpu0.MPU_NS=16 # (int , init-time) default = '0x10' : Number of regions in the Non-Secure MPU. If Security Extentions are absent, this is the total number of MPU regions
cpu0.MPU_S=16 # (int , init-time) default = '0x10' : Number of regions in the Secure MPU. If Security Extentions are absent, this is ignored
cpu0.MVE=2 # (int , init-time) default = '0x2' : Set whether the model has MVE support. If FPU = 0: 0=MVE not included, 1=Integer subset of MVE included. If FPU = 1: 0=MVE not included, 1=Integer subset of MVE included, 2=Integer and half and single precision floating point MVE included
cpu0.NUMIRQ=132 # (int , init-time) default = '0x84' : Number of user interrupts
cpu0.SAU=8 # (int , init-time) default = '0x8' : Number of SAU regions (0 => no SAU)
cpu0.SECEXT=1 # (bool , init-time) default = '1' : Whether the ARMv8-M Security Extensions are included
cpu0.WICLINES=35 # (int , init-time) default = '0x23' : Number of lines supported by the WIC interface
cpu0.aircr_iesb_is_writable=1 # (bool , init-time) default = '1' : IS the AIRCR.IESB bit [5] writable?
cpu0.aircr_iesb_reset=0 # (bool , init-time) default = '0' : Set the AIRCR.IESB bit [5] after reset
cpu0.cde_impl_name= # (string, init-time) default = '' : Name of the CDE implementation for this core (implementation contributed by MTI plugin).
cpu0.cpi_div=1 # (int , run-time ) default = '0x1' : divider for calculating CPI (Cycles Per Instruction)
cpu0.cpi_mul=1 # (int , run-time ) default = '0x1' : multiplier for calculating CPI (Cycles Per Instruction)
cpu0.dcache-state_modelled=0 # (bool , run-time ) default = '0' : Set whether D-cache has stateful implementation
cpu0.dcache-ways=4 # (int , init-time) default = '0x4' : L1 D-cache ways (sets are implicit from size)
cpu0.delay_faultmask_update=0 # (bool , init-time) default = '0' : Delay FAULTMASK update to context sync
cpu0.delay_sysreg_update=0 # (bool , init-time) default = '0' : Delay some system register updates (e.g. SHCSR) to context sync
cpu0.duplicate_CADI_TCM_writes=0 # (bool , init-time) default = '0' : CADI writes to TCMs are also sent to downstream memory at same addresses (for validation platforms)
cpu0.ecc_on=0 # (bool , init-time) default = '0' : Enable Error Correcting Code
cpu0.execute_via_archex=1 # (bool , init-time) default = '1' : Use ArchEx-generated code from V8_1_PACBTI_EAC_2_0_INTERNAL for execution
cpu0.has_cde=0 # (bool , init-time) default = '0' : Enables Custom Datapath Extensions
cpu0.has_pmu=0 # (bool , init-time) default = '0' : Availability of optional PMU.
cpu0.has_unpriviledged_debug=1 # (bool , init-time) default = '1' : Unpriviledged Debug Extension supported for Mainline Extension
cpu0.icache-state_modelled=0 # (bool , run-time ) default = '0' : Set whether I-cache has stateful implementation
cpu0.icache-ways=2 # (int , init-time) default = '0x2' : L1 I-cache ways (sets are implicit from size)
cpu0.master_id=0 # (int , init-time) default = '0x0' : Master ID presented in bus transactions
cpu0.min_sync_level=0 # (int , run-time ) default = '0x0' : force minimum syncLevel (0=off=default,1=syncState,2=postInsnIO,3=postInsnAll)
cpu0.mve_unpred_config_json='[["CLEAR_IT","VPNOT_T1","InITBlock"],["OK","VMINNMV_f_T2","Rda==11x1"],["OK","VDDUP","curOffset MOD imm32 != 0"],["OK","VDDUP","bufSize MOD imm32 != 0"],["OK","VDDUP","curOffset >= bufSize "]]' # (string, init-time) default = ''[["CLEAR_IT","VPNOT_T1","InITBlock"],["OK","VMINNMV_f_T2","Rda==11x1"],["OK","VDDUP","curOffset MOD imm32 != 0"],["OK","VDDUP","bufSize MOD imm32 != 0"],["OK","VDDUP","curOffset >= bufSize "]]'' : A JSON array of arrays of the form [unpred_result, instr, cond] forunpredictable configruation for MVE. Either instr or cond may be omitted. The first match wins. Use 'list' to show the available options
cpu0.num_pmu_counters=31 # (int , init-time) default = '0x1f' : Number of available PMU counters.
cpu0.ras_ERRFR0='{"ED":0x1,"UE":0x1}' # (string, init-time) default = ''{"ED":0x1,"UE":0x1}'' : A JSON object or array of objects for each field of ERRFR. Records not described default to RAZ e.g. '{"ED":0x1,"UE":0x1}'.
cpu0.ras_cei_pin=2 # (int , init-time) default = '0x2' : RAS: Critical error interrupt pin.
cpu0.ras_cei_support=1 # (bool , init-time) default = '1' : RAS: Whether Critical Error Interrupt is supported
cpu0.ras_eri_pin=1 # (int , init-time) default = '0x1' : RAS: Error recovery interrupt pin.
cpu0.ras_eri_support=1 # (bool , init-time) default = '1' : RAS: Whether Error Recovery Interrupt is supported
cpu0.ras_error_record=1 # (int , init-time) default = '0x1' : 1 bit value that specifies which nodes out of 0-1 are implemented (ERRDEVID is derived from this parameter)
cpu0.ras_fhi_pin=0 # (int , init-time) default = '0x0' : RAS: Fault handling interrupt pin.
cpu0.ras_fhi_support=1 # (bool , init-time) default = '1' : RAS: Whether Fault Handling Interrupt is supported
cpu0.scheduler_mode=0 # (int , init-time) default = '0x0' : Control the interleaving of instructions in this processor (0=default long quantum, 1=low latency mode, short quantum and signal checking, 2=lock-breaking mode, long quantum with additional context switches near load-exclusive instructions, 3=ISSCompare)
cpu0.semihosting-Thumb_SVC=171 # (int , init-time) default = '0xab' : T32 SVC number for semihosting
cpu0.semihosting-cmd_line= # (string, init-time) default = '' : Command line available to semihosting SVC calls
cpu0.semihosting-cwd= # (string, init-time) default = '' : Base directory for semihosting file access.
cpu0.semihosting-enable=0 # (bool , init-time) default = '0' : Enable semihosting SVC traps. Applications that do not use semihosting must set this parameter to false.
cpu0.semihosting-heap_base=0 # (int , init-time) default = '0x0' : Virtual address of heap base
cpu0.semihosting-heap_limit=275775488 # (int , init-time) default = '0x10700000' : Virtual address of top of heap
cpu0.semihosting-prefix=0 # (bool , init-time) default = '0' : Prefix semihosting output with target instance name
cpu0.semihosting-stack_base=275775488 # (int , init-time) default = '0x10700000' : Virtual address of base of descending stack
cpu0.semihosting-stack_limit=276824064 # (int , init-time) default = '0x10800000' : Virtual address of stack limit
cpu0.tcm_fill_pattern_1=3755990991 # (int , init-time) default = '0xdfdfdfcf' : TCM Fill pattern 1
cpu0.tcm_fill_pattern_2=3487555551 # (int , init-time) default = '0xcfdfdfdf' : TCM Fill pattern 2
cpu0.trace_style=0 # (int , init-time) default = '0x0' : MVE instruction trace style: 0=Tarmac-like from instDB.json, 1=execute function+params (for debug), 2 = Rosetta. Add 16 for [**--] beat trace. Add 32 for tracing IMPLIED LOB instructions. Add 64 to change opcode of implied BF to 0xBF00
cpu0.unpred_config_json_file= # (string, init-time) default = '' : Path to the unpredictable configuration file in JSON format
cpu0.vfp-enable_at_reset=0 # (bool , init-time) default = '0' : Enable VFP in CPACR, CPPWR, NSACR at reset. Warning: Arm recommends going through the implementation's suggested VFP power-up sequence!
ethosu.diagnostics=0 # (int , init-time) default = '0x0' : Enable diagnostic messages
ethosu.extra_args= # (string, init-time) default = '' : Reserved for future use. We recommend using this parameter only with customized instructions from Arm Technical Support ([email protected]).
ethosu.num_macs=128 # (int , init-time) default = '0x80' : Number of 8x8 MACs performed per cycle
idau.IDAU_REGION0.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region0 as exempt
idau.IDAU_REGION1.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region1 as exempt
idau.IDAU_REGION10.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region10 as exempt
idau.IDAU_REGION100.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region100
idau.IDAU_REGION100.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region100 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION100.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region100 as exempt
idau.IDAU_REGION100.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region100
idau.IDAU_REGION100.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region100
idau.IDAU_REGION101.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region101
idau.IDAU_REGION101.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region101 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION101.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region101 as exempt
idau.IDAU_REGION101.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region101
idau.IDAU_REGION101.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region101
idau.IDAU_REGION102.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region102
idau.IDAU_REGION102.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region102 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION102.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region102 as exempt
idau.IDAU_REGION102.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region102
idau.IDAU_REGION102.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region102
idau.IDAU_REGION103.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region103
idau.IDAU_REGION103.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region103 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION103.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region103 as exempt
idau.IDAU_REGION103.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region103
idau.IDAU_REGION103.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region103
idau.IDAU_REGION104.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region104
idau.IDAU_REGION104.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region104 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION104.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region104 as exempt
idau.IDAU_REGION104.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region104
idau.IDAU_REGION104.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region104
idau.IDAU_REGION105.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region105
idau.IDAU_REGION105.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region105 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION105.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region105 as exempt
idau.IDAU_REGION105.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region105
idau.IDAU_REGION105.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region105
idau.IDAU_REGION106.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region106
idau.IDAU_REGION106.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region106 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION106.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region106 as exempt
idau.IDAU_REGION106.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region106
idau.IDAU_REGION106.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region106
idau.IDAU_REGION107.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region107
idau.IDAU_REGION107.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region107 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION107.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region107 as exempt
idau.IDAU_REGION107.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region107
idau.IDAU_REGION107.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region107
idau.IDAU_REGION108.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region108
idau.IDAU_REGION108.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region108 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION108.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region108 as exempt
idau.IDAU_REGION108.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region108
idau.IDAU_REGION108.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region108
idau.IDAU_REGION109.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region109
idau.IDAU_REGION109.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region109 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION109.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region109 as exempt
idau.IDAU_REGION109.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region109
idau.IDAU_REGION109.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region109
idau.IDAU_REGION11.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region11 as exempt
idau.IDAU_REGION110.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region110
idau.IDAU_REGION110.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region110 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION110.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region110 as exempt
idau.IDAU_REGION110.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region110
idau.IDAU_REGION110.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region110
idau.IDAU_REGION111.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region111
idau.IDAU_REGION111.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region111 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION111.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region111 as exempt
idau.IDAU_REGION111.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region111
idau.IDAU_REGION111.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region111
idau.IDAU_REGION112.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region112
idau.IDAU_REGION112.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region112 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION112.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region112 as exempt
idau.IDAU_REGION112.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region112
idau.IDAU_REGION112.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region112
idau.IDAU_REGION113.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region113
idau.IDAU_REGION113.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region113 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION113.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region113 as exempt
idau.IDAU_REGION113.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region113
idau.IDAU_REGION113.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region113
idau.IDAU_REGION114.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region114
idau.IDAU_REGION114.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region114 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION114.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region114 as exempt
idau.IDAU_REGION114.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region114
idau.IDAU_REGION114.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region114
idau.IDAU_REGION115.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region115
idau.IDAU_REGION115.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region115 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION115.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region115 as exempt
idau.IDAU_REGION115.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region115
idau.IDAU_REGION115.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region115
idau.IDAU_REGION116.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region116
idau.IDAU_REGION116.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region116 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION116.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region116 as exempt
idau.IDAU_REGION116.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region116
idau.IDAU_REGION116.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region116
idau.IDAU_REGION117.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region117
idau.IDAU_REGION117.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region117 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION117.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region117 as exempt
idau.IDAU_REGION117.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region117
idau.IDAU_REGION117.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region117
idau.IDAU_REGION118.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region118
idau.IDAU_REGION118.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region118 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION118.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region118 as exempt
idau.IDAU_REGION118.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region118
idau.IDAU_REGION118.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region118
idau.IDAU_REGION119.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region119
idau.IDAU_REGION119.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region119 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION119.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region119 as exempt
idau.IDAU_REGION119.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region119
idau.IDAU_REGION119.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region119
idau.IDAU_REGION12.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region12 as exempt
idau.IDAU_REGION120.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region120
idau.IDAU_REGION120.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region120 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION120.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region120 as exempt
idau.IDAU_REGION120.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region120
idau.IDAU_REGION120.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region120
idau.IDAU_REGION121.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region121
idau.IDAU_REGION121.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region121 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION121.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region121 as exempt
idau.IDAU_REGION121.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region121
idau.IDAU_REGION121.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region121
idau.IDAU_REGION122.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region122
idau.IDAU_REGION122.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region122 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION122.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region122 as exempt
idau.IDAU_REGION122.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region122
idau.IDAU_REGION122.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region122
idau.IDAU_REGION123.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region123
idau.IDAU_REGION123.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region123 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION123.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region123 as exempt
idau.IDAU_REGION123.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region123
idau.IDAU_REGION123.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region123
idau.IDAU_REGION124.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region124
idau.IDAU_REGION124.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region124 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION124.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region124 as exempt
idau.IDAU_REGION124.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region124
idau.IDAU_REGION124.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region124
idau.IDAU_REGION125.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region125
idau.IDAU_REGION125.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region125 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION125.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region125 as exempt
idau.IDAU_REGION125.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region125
idau.IDAU_REGION125.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region125
idau.IDAU_REGION126.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region126
idau.IDAU_REGION126.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region126 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION126.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region126 as exempt
idau.IDAU_REGION126.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region126
idau.IDAU_REGION126.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region126
idau.IDAU_REGION127.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region127
idau.IDAU_REGION127.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region127 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION127.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region127 as exempt
idau.IDAU_REGION127.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region127
idau.IDAU_REGION127.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region127
idau.IDAU_REGION128.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region128
idau.IDAU_REGION128.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region128 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION128.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region128 as exempt
idau.IDAU_REGION128.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region128
idau.IDAU_REGION128.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region128
idau.IDAU_REGION129.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region129
idau.IDAU_REGION129.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region129 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION129.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region129 as exempt
idau.IDAU_REGION129.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region129
idau.IDAU_REGION129.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region129
idau.IDAU_REGION13.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region13 as exempt
idau.IDAU_REGION130.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region130
idau.IDAU_REGION130.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region130 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION130.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region130 as exempt
idau.IDAU_REGION130.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region130
idau.IDAU_REGION130.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region130
idau.IDAU_REGION131.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region131
idau.IDAU_REGION131.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region131 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION131.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region131 as exempt
idau.IDAU_REGION131.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region131
idau.IDAU_REGION131.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region131
idau.IDAU_REGION132.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region132
idau.IDAU_REGION132.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region132 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION132.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region132 as exempt
idau.IDAU_REGION132.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region132
idau.IDAU_REGION132.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region132
idau.IDAU_REGION133.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region133
idau.IDAU_REGION133.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region133 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION133.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region133 as exempt
idau.IDAU_REGION133.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region133
idau.IDAU_REGION133.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region133
idau.IDAU_REGION134.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region134
idau.IDAU_REGION134.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region134 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION134.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region134 as exempt
idau.IDAU_REGION134.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region134
idau.IDAU_REGION134.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region134
idau.IDAU_REGION135.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region135
idau.IDAU_REGION135.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region135 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION135.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region135 as exempt
idau.IDAU_REGION135.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region135
idau.IDAU_REGION135.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region135
idau.IDAU_REGION136.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region136
idau.IDAU_REGION136.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region136 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION136.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region136 as exempt
idau.IDAU_REGION136.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region136
idau.IDAU_REGION136.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region136
idau.IDAU_REGION137.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region137
idau.IDAU_REGION137.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region137 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION137.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region137 as exempt
idau.IDAU_REGION137.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region137
idau.IDAU_REGION137.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region137
idau.IDAU_REGION138.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region138
idau.IDAU_REGION138.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region138 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION138.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region138 as exempt
idau.IDAU_REGION138.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region138
idau.IDAU_REGION138.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region138
idau.IDAU_REGION139.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region139
idau.IDAU_REGION139.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region139 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION139.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region139 as exempt
idau.IDAU_REGION139.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region139
idau.IDAU_REGION139.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region139
idau.IDAU_REGION140.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region140
idau.IDAU_REGION140.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region140 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION140.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region140 as exempt
idau.IDAU_REGION140.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region140
idau.IDAU_REGION140.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region140
idau.IDAU_REGION141.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region141
idau.IDAU_REGION141.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region141 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION141.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region141 as exempt
idau.IDAU_REGION141.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region141
idau.IDAU_REGION141.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region141
idau.IDAU_REGION142.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region142
idau.IDAU_REGION142.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region142 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION142.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region142 as exempt
idau.IDAU_REGION142.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region142
idau.IDAU_REGION142.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region142
idau.IDAU_REGION143.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region143
idau.IDAU_REGION143.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region143 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION143.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region143 as exempt
idau.IDAU_REGION143.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region143
idau.IDAU_REGION143.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region143
idau.IDAU_REGION144.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region144
idau.IDAU_REGION144.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region144 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION144.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region144 as exempt
idau.IDAU_REGION144.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region144
idau.IDAU_REGION144.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region144
idau.IDAU_REGION145.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region145
idau.IDAU_REGION145.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region145 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION145.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region145 as exempt
idau.IDAU_REGION145.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region145
idau.IDAU_REGION145.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region145
idau.IDAU_REGION146.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region146
idau.IDAU_REGION146.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region146 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION146.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region146 as exempt
idau.IDAU_REGION146.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region146
idau.IDAU_REGION146.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region146
idau.IDAU_REGION147.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region147
idau.IDAU_REGION147.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region147 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION147.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region147 as exempt
idau.IDAU_REGION147.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region147
idau.IDAU_REGION147.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region147
idau.IDAU_REGION148.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region148
idau.IDAU_REGION148.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region148 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION148.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region148 as exempt
idau.IDAU_REGION148.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region148
idau.IDAU_REGION148.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region148
idau.IDAU_REGION149.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region149
idau.IDAU_REGION149.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region149 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION149.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region149 as exempt
idau.IDAU_REGION149.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region149
idau.IDAU_REGION149.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region149
idau.IDAU_REGION15.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region15 as exempt
idau.IDAU_REGION150.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region150
idau.IDAU_REGION150.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region150 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION150.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region150 as exempt
idau.IDAU_REGION150.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region150
idau.IDAU_REGION150.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region150
idau.IDAU_REGION151.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region151
idau.IDAU_REGION151.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region151 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION151.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region151 as exempt
idau.IDAU_REGION151.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region151
idau.IDAU_REGION151.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region151
idau.IDAU_REGION152.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region152
idau.IDAU_REGION152.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region152 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION152.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region152 as exempt
idau.IDAU_REGION152.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region152
idau.IDAU_REGION152.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region152
idau.IDAU_REGION153.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region153
idau.IDAU_REGION153.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region153 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION153.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region153 as exempt
idau.IDAU_REGION153.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region153
idau.IDAU_REGION153.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region153
idau.IDAU_REGION154.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region154
idau.IDAU_REGION154.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region154 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION154.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region154 as exempt
idau.IDAU_REGION154.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region154
idau.IDAU_REGION154.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region154
idau.IDAU_REGION155.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region155
idau.IDAU_REGION155.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region155 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION155.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region155 as exempt
idau.IDAU_REGION155.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region155
idau.IDAU_REGION155.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region155
idau.IDAU_REGION156.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region156
idau.IDAU_REGION156.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region156 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION156.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region156 as exempt
idau.IDAU_REGION156.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region156
idau.IDAU_REGION156.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region156
idau.IDAU_REGION157.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region157
idau.IDAU_REGION157.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region157 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION157.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region157 as exempt
idau.IDAU_REGION157.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region157
idau.IDAU_REGION157.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region157
idau.IDAU_REGION158.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region158
idau.IDAU_REGION158.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region158 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION158.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region158 as exempt
idau.IDAU_REGION158.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region158
idau.IDAU_REGION158.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region158
idau.IDAU_REGION159.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region159
idau.IDAU_REGION159.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region159 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION159.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region159 as exempt
idau.IDAU_REGION159.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region159
idau.IDAU_REGION159.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region159
idau.IDAU_REGION160.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region160
idau.IDAU_REGION160.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region160 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION160.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region160 as exempt
idau.IDAU_REGION160.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region160
idau.IDAU_REGION160.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region160
idau.IDAU_REGION161.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region161
idau.IDAU_REGION161.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region161 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION161.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region161 as exempt
idau.IDAU_REGION161.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region161
idau.IDAU_REGION161.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region161
idau.IDAU_REGION162.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region162
idau.IDAU_REGION162.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region162 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION162.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region162 as exempt
idau.IDAU_REGION162.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region162
idau.IDAU_REGION162.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region162
idau.IDAU_REGION163.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region163
idau.IDAU_REGION163.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region163 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION163.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region163 as exempt
idau.IDAU_REGION163.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region163
idau.IDAU_REGION163.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region163
idau.IDAU_REGION164.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region164
idau.IDAU_REGION164.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region164 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION164.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region164 as exempt
idau.IDAU_REGION164.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region164
idau.IDAU_REGION164.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region164
idau.IDAU_REGION165.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region165
idau.IDAU_REGION165.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region165 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION165.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region165 as exempt
idau.IDAU_REGION165.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region165
idau.IDAU_REGION165.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region165
idau.IDAU_REGION166.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region166
idau.IDAU_REGION166.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region166 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION166.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region166 as exempt
idau.IDAU_REGION166.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region166
idau.IDAU_REGION166.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region166
idau.IDAU_REGION167.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region167
idau.IDAU_REGION167.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region167 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION167.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region167 as exempt
idau.IDAU_REGION167.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region167
idau.IDAU_REGION167.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region167
idau.IDAU_REGION168.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region168
idau.IDAU_REGION168.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region168 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION168.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region168 as exempt
idau.IDAU_REGION168.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region168
idau.IDAU_REGION168.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region168
idau.IDAU_REGION169.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region169
idau.IDAU_REGION169.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region169 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION169.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region169 as exempt
idau.IDAU_REGION169.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region169
idau.IDAU_REGION169.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region169
idau.IDAU_REGION17.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region17 as exempt
idau.IDAU_REGION170.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region170
idau.IDAU_REGION170.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region170 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION170.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region170 as exempt
idau.IDAU_REGION170.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region170
idau.IDAU_REGION170.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region170
idau.IDAU_REGION171.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region171
idau.IDAU_REGION171.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region171 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION171.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region171 as exempt
idau.IDAU_REGION171.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region171
idau.IDAU_REGION171.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region171
idau.IDAU_REGION172.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region172
idau.IDAU_REGION172.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region172 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION172.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region172 as exempt
idau.IDAU_REGION172.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region172
idau.IDAU_REGION172.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region172
idau.IDAU_REGION173.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region173
idau.IDAU_REGION173.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region173 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION173.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region173 as exempt
idau.IDAU_REGION173.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region173
idau.IDAU_REGION173.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region173
idau.IDAU_REGION174.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region174
idau.IDAU_REGION174.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region174 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION174.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region174 as exempt
idau.IDAU_REGION174.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region174
idau.IDAU_REGION174.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region174
idau.IDAU_REGION175.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region175
idau.IDAU_REGION175.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region175 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION175.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region175 as exempt
idau.IDAU_REGION175.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region175
idau.IDAU_REGION175.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region175
idau.IDAU_REGION176.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region176
idau.IDAU_REGION176.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region176 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION176.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region176 as exempt
idau.IDAU_REGION176.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region176
idau.IDAU_REGION176.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region176
idau.IDAU_REGION177.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region177
idau.IDAU_REGION177.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region177 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION177.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region177 as exempt
idau.IDAU_REGION177.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region177
idau.IDAU_REGION177.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region177
idau.IDAU_REGION178.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region178
idau.IDAU_REGION178.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region178 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION178.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region178 as exempt
idau.IDAU_REGION178.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region178
idau.IDAU_REGION178.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region178
idau.IDAU_REGION179.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region179
idau.IDAU_REGION179.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region179 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION179.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region179 as exempt
idau.IDAU_REGION179.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region179
idau.IDAU_REGION179.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region179
idau.IDAU_REGION18.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region18
idau.IDAU_REGION18.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region18 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION18.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region18 as exempt
idau.IDAU_REGION18.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region18
idau.IDAU_REGION18.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region18
idau.IDAU_REGION180.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region180
idau.IDAU_REGION180.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region180 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION180.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region180 as exempt
idau.IDAU_REGION180.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region180
idau.IDAU_REGION180.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region180
idau.IDAU_REGION181.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region181
idau.IDAU_REGION181.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region181 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION181.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region181 as exempt
idau.IDAU_REGION181.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region181
idau.IDAU_REGION181.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region181
idau.IDAU_REGION182.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region182
idau.IDAU_REGION182.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region182 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION182.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region182 as exempt
idau.IDAU_REGION182.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region182
idau.IDAU_REGION182.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region182
idau.IDAU_REGION183.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region183
idau.IDAU_REGION183.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region183 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION183.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region183 as exempt
idau.IDAU_REGION183.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region183
idau.IDAU_REGION183.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region183
idau.IDAU_REGION184.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region184
idau.IDAU_REGION184.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region184 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION184.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region184 as exempt
idau.IDAU_REGION184.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region184
idau.IDAU_REGION184.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region184
idau.IDAU_REGION185.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region185
idau.IDAU_REGION185.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region185 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION185.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region185 as exempt
idau.IDAU_REGION185.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region185
idau.IDAU_REGION185.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region185
idau.IDAU_REGION186.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region186
idau.IDAU_REGION186.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region186 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION186.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region186 as exempt
idau.IDAU_REGION186.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region186
idau.IDAU_REGION186.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region186
idau.IDAU_REGION187.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region187
idau.IDAU_REGION187.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region187 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION187.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region187 as exempt
idau.IDAU_REGION187.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region187
idau.IDAU_REGION187.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region187
idau.IDAU_REGION188.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region188
idau.IDAU_REGION188.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region188 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION188.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region188 as exempt
idau.IDAU_REGION188.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region188
idau.IDAU_REGION188.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region188
idau.IDAU_REGION189.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region189
idau.IDAU_REGION189.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region189 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION189.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region189 as exempt
idau.IDAU_REGION189.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region189
idau.IDAU_REGION189.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region189
idau.IDAU_REGION19.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region19
idau.IDAU_REGION19.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region19 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION19.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region19 as exempt
idau.IDAU_REGION19.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region19
idau.IDAU_REGION19.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region19
idau.IDAU_REGION190.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region190
idau.IDAU_REGION190.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region190 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION190.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region190 as exempt
idau.IDAU_REGION190.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region190
idau.IDAU_REGION190.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region190
idau.IDAU_REGION191.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region191
idau.IDAU_REGION191.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region191 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION191.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region191 as exempt
idau.IDAU_REGION191.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region191
idau.IDAU_REGION191.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region191
idau.IDAU_REGION192.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region192
idau.IDAU_REGION192.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region192 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION192.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region192 as exempt
idau.IDAU_REGION192.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region192
idau.IDAU_REGION192.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region192
idau.IDAU_REGION193.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region193
idau.IDAU_REGION193.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region193 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION193.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region193 as exempt
idau.IDAU_REGION193.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region193
idau.IDAU_REGION193.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region193
idau.IDAU_REGION194.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region194
idau.IDAU_REGION194.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region194 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION194.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region194 as exempt
idau.IDAU_REGION194.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region194
idau.IDAU_REGION194.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region194
idau.IDAU_REGION195.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region195
idau.IDAU_REGION195.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region195 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION195.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region195 as exempt
idau.IDAU_REGION195.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region195
idau.IDAU_REGION195.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region195
idau.IDAU_REGION196.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region196
idau.IDAU_REGION196.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region196 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION196.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region196 as exempt
idau.IDAU_REGION196.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region196
idau.IDAU_REGION196.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region196
idau.IDAU_REGION197.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region197
idau.IDAU_REGION197.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region197 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION197.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region197 as exempt
idau.IDAU_REGION197.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region197
idau.IDAU_REGION197.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region197
idau.IDAU_REGION198.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region198
idau.IDAU_REGION198.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region198 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION198.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region198 as exempt
idau.IDAU_REGION198.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region198
idau.IDAU_REGION198.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region198
idau.IDAU_REGION199.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region199
idau.IDAU_REGION199.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region199 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION199.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region199 as exempt
idau.IDAU_REGION199.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region199
idau.IDAU_REGION199.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region199
idau.IDAU_REGION2.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region2 as exempt
idau.IDAU_REGION20.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region20
idau.IDAU_REGION20.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region20 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION20.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region20 as exempt
idau.IDAU_REGION20.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region20
idau.IDAU_REGION20.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region20
idau.IDAU_REGION200.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region200
idau.IDAU_REGION200.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region200 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION200.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region200 as exempt
idau.IDAU_REGION200.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region200
idau.IDAU_REGION200.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region200
idau.IDAU_REGION201.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region201
idau.IDAU_REGION201.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region201 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION201.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region201 as exempt
idau.IDAU_REGION201.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region201
idau.IDAU_REGION201.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region201
idau.IDAU_REGION202.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region202
idau.IDAU_REGION202.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region202 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION202.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region202 as exempt
idau.IDAU_REGION202.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region202
idau.IDAU_REGION202.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region202
idau.IDAU_REGION203.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region203
idau.IDAU_REGION203.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region203 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION203.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region203 as exempt
idau.IDAU_REGION203.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region203
idau.IDAU_REGION203.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region203
idau.IDAU_REGION204.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region204
idau.IDAU_REGION204.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region204 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION204.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region204 as exempt
idau.IDAU_REGION204.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region204
idau.IDAU_REGION204.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region204
idau.IDAU_REGION205.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region205
idau.IDAU_REGION205.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region205 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION205.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region205 as exempt
idau.IDAU_REGION205.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region205
idau.IDAU_REGION205.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region205
idau.IDAU_REGION206.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region206
idau.IDAU_REGION206.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region206 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION206.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region206 as exempt
idau.IDAU_REGION206.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region206
idau.IDAU_REGION206.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region206
idau.IDAU_REGION207.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region207
idau.IDAU_REGION207.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region207 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION207.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region207 as exempt
idau.IDAU_REGION207.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region207
idau.IDAU_REGION207.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region207
idau.IDAU_REGION208.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region208
idau.IDAU_REGION208.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region208 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION208.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region208 as exempt
idau.IDAU_REGION208.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region208
idau.IDAU_REGION208.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region208
idau.IDAU_REGION209.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region209
idau.IDAU_REGION209.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region209 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION209.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region209 as exempt
idau.IDAU_REGION209.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region209
idau.IDAU_REGION209.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region209
idau.IDAU_REGION21.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region21
idau.IDAU_REGION21.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region21 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION21.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region21 as exempt
idau.IDAU_REGION21.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region21
idau.IDAU_REGION21.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region21
idau.IDAU_REGION210.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region210
idau.IDAU_REGION210.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region210 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION210.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region210 as exempt
idau.IDAU_REGION210.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region210
idau.IDAU_REGION210.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region210
idau.IDAU_REGION211.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region211
idau.IDAU_REGION211.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region211 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION211.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region211 as exempt
idau.IDAU_REGION211.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region211
idau.IDAU_REGION211.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region211
idau.IDAU_REGION212.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region212
idau.IDAU_REGION212.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region212 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION212.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region212 as exempt
idau.IDAU_REGION212.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region212
idau.IDAU_REGION212.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region212
idau.IDAU_REGION213.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region213
idau.IDAU_REGION213.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region213 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION213.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region213 as exempt
idau.IDAU_REGION213.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region213
idau.IDAU_REGION213.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region213
idau.IDAU_REGION214.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region214
idau.IDAU_REGION214.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region214 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION214.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region214 as exempt
idau.IDAU_REGION214.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region214
idau.IDAU_REGION214.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region214
idau.IDAU_REGION215.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region215
idau.IDAU_REGION215.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region215 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION215.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region215 as exempt
idau.IDAU_REGION215.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region215
idau.IDAU_REGION215.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region215
idau.IDAU_REGION216.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region216
idau.IDAU_REGION216.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region216 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION216.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region216 as exempt
idau.IDAU_REGION216.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region216
idau.IDAU_REGION216.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region216
idau.IDAU_REGION217.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region217
idau.IDAU_REGION217.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region217 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION217.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region217 as exempt
idau.IDAU_REGION217.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region217
idau.IDAU_REGION217.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region217
idau.IDAU_REGION218.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region218
idau.IDAU_REGION218.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region218 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION218.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region218 as exempt
idau.IDAU_REGION218.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region218
idau.IDAU_REGION218.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region218
idau.IDAU_REGION219.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region219
idau.IDAU_REGION219.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region219 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION219.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region219 as exempt
idau.IDAU_REGION219.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region219
idau.IDAU_REGION219.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region219
idau.IDAU_REGION22.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region22
idau.IDAU_REGION22.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region22 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION22.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region22 as exempt
idau.IDAU_REGION22.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region22
idau.IDAU_REGION22.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region22
idau.IDAU_REGION220.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region220
idau.IDAU_REGION220.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region220 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION220.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region220 as exempt
idau.IDAU_REGION220.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region220
idau.IDAU_REGION220.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region220
idau.IDAU_REGION221.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region221
idau.IDAU_REGION221.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region221 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION221.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region221 as exempt
idau.IDAU_REGION221.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region221
idau.IDAU_REGION221.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region221
idau.IDAU_REGION222.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region222
idau.IDAU_REGION222.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region222 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION222.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region222 as exempt
idau.IDAU_REGION222.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region222
idau.IDAU_REGION222.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region222
idau.IDAU_REGION223.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region223
idau.IDAU_REGION223.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region223 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION223.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region223 as exempt
idau.IDAU_REGION223.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region223
idau.IDAU_REGION223.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region223
idau.IDAU_REGION224.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region224
idau.IDAU_REGION224.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region224 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION224.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region224 as exempt
idau.IDAU_REGION224.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region224
idau.IDAU_REGION224.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region224
idau.IDAU_REGION225.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region225
idau.IDAU_REGION225.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region225 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION225.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region225 as exempt
idau.IDAU_REGION225.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region225
idau.IDAU_REGION225.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region225
idau.IDAU_REGION226.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region226
idau.IDAU_REGION226.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region226 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION226.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region226 as exempt
idau.IDAU_REGION226.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region226
idau.IDAU_REGION226.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region226
idau.IDAU_REGION227.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region227
idau.IDAU_REGION227.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region227 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION227.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region227 as exempt
idau.IDAU_REGION227.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region227
idau.IDAU_REGION227.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region227
idau.IDAU_REGION228.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region228
idau.IDAU_REGION228.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region228 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION228.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region228 as exempt
idau.IDAU_REGION228.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region228
idau.IDAU_REGION228.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region228
idau.IDAU_REGION229.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region229
idau.IDAU_REGION229.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region229 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION229.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region229 as exempt
idau.IDAU_REGION229.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region229
idau.IDAU_REGION229.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region229
idau.IDAU_REGION23.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region23
idau.IDAU_REGION23.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region23 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION23.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region23 as exempt
idau.IDAU_REGION23.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region23
idau.IDAU_REGION23.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region23
idau.IDAU_REGION230.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region230
idau.IDAU_REGION230.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region230 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION230.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region230 as exempt
idau.IDAU_REGION230.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region230
idau.IDAU_REGION230.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region230
idau.IDAU_REGION231.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region231
idau.IDAU_REGION231.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region231 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION231.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region231 as exempt
idau.IDAU_REGION231.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region231
idau.IDAU_REGION231.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region231
idau.IDAU_REGION232.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region232
idau.IDAU_REGION232.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region232 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION232.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region232 as exempt
idau.IDAU_REGION232.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region232
idau.IDAU_REGION232.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region232
idau.IDAU_REGION233.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region233
idau.IDAU_REGION233.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region233 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION233.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region233 as exempt
idau.IDAU_REGION233.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region233
idau.IDAU_REGION233.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region233
idau.IDAU_REGION234.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region234
idau.IDAU_REGION234.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region234 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION234.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region234 as exempt
idau.IDAU_REGION234.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region234
idau.IDAU_REGION234.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region234
idau.IDAU_REGION235.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region235
idau.IDAU_REGION235.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region235 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION235.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region235 as exempt
idau.IDAU_REGION235.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region235
idau.IDAU_REGION235.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region235
idau.IDAU_REGION236.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region236
idau.IDAU_REGION236.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region236 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION236.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region236 as exempt
idau.IDAU_REGION236.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region236
idau.IDAU_REGION236.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region236
idau.IDAU_REGION237.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region237
idau.IDAU_REGION237.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region237 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION237.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region237 as exempt
idau.IDAU_REGION237.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region237
idau.IDAU_REGION237.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region237
idau.IDAU_REGION238.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region238
idau.IDAU_REGION238.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region238 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION238.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region238 as exempt
idau.IDAU_REGION238.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region238
idau.IDAU_REGION238.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region238
idau.IDAU_REGION239.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region239
idau.IDAU_REGION239.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region239 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION239.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region239 as exempt
idau.IDAU_REGION239.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region239
idau.IDAU_REGION239.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region239
idau.IDAU_REGION24.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region24
idau.IDAU_REGION24.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region24 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION24.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region24 as exempt
idau.IDAU_REGION24.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region24
idau.IDAU_REGION24.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region24
idau.IDAU_REGION240.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region240
idau.IDAU_REGION240.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region240 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION240.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region240 as exempt
idau.IDAU_REGION240.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region240
idau.IDAU_REGION240.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region240
idau.IDAU_REGION241.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region241
idau.IDAU_REGION241.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region241 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION241.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region241 as exempt
idau.IDAU_REGION241.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region241
idau.IDAU_REGION241.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region241
idau.IDAU_REGION242.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region242
idau.IDAU_REGION242.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region242 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION242.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region242 as exempt
idau.IDAU_REGION242.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region242
idau.IDAU_REGION242.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region242
idau.IDAU_REGION243.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region243
idau.IDAU_REGION243.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region243 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION243.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region243 as exempt
idau.IDAU_REGION243.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region243
idau.IDAU_REGION243.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region243
idau.IDAU_REGION244.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region244
idau.IDAU_REGION244.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region244 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION244.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region244 as exempt
idau.IDAU_REGION244.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region244
idau.IDAU_REGION244.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region244
idau.IDAU_REGION245.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region245
idau.IDAU_REGION245.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region245 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION245.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region245 as exempt
idau.IDAU_REGION245.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region245
idau.IDAU_REGION245.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region245
idau.IDAU_REGION246.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region246
idau.IDAU_REGION246.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region246 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION246.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region246 as exempt
idau.IDAU_REGION246.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region246
idau.IDAU_REGION246.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region246
idau.IDAU_REGION247.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region247
idau.IDAU_REGION247.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region247 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION247.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region247 as exempt
idau.IDAU_REGION247.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region247
idau.IDAU_REGION247.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region247
idau.IDAU_REGION248.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region248
idau.IDAU_REGION248.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region248 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION248.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region248 as exempt
idau.IDAU_REGION248.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region248
idau.IDAU_REGION248.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region248
idau.IDAU_REGION249.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region249
idau.IDAU_REGION249.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region249 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION249.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region249 as exempt
idau.IDAU_REGION249.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region249
idau.IDAU_REGION249.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region249
idau.IDAU_REGION25.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region25
idau.IDAU_REGION25.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region25 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION25.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region25 as exempt
idau.IDAU_REGION25.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region25
idau.IDAU_REGION25.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region25
idau.IDAU_REGION250.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region250
idau.IDAU_REGION250.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region250 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION250.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region250 as exempt
idau.IDAU_REGION250.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region250
idau.IDAU_REGION250.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region250
idau.IDAU_REGION251.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region251
idau.IDAU_REGION251.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region251 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION251.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region251 as exempt
idau.IDAU_REGION251.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region251
idau.IDAU_REGION251.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region251
idau.IDAU_REGION252.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region252
idau.IDAU_REGION252.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region252 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION252.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region252 as exempt
idau.IDAU_REGION252.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region252
idau.IDAU_REGION252.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region252
idau.IDAU_REGION253.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region253
idau.IDAU_REGION253.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region253 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION253.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region253 as exempt
idau.IDAU_REGION253.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region253
idau.IDAU_REGION253.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region253
idau.IDAU_REGION254.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region254
idau.IDAU_REGION254.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region254 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION254.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region254 as exempt
idau.IDAU_REGION254.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region254
idau.IDAU_REGION254.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region254
idau.IDAU_REGION255.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region255
idau.IDAU_REGION255.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region255 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION255.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region255 as exempt
idau.IDAU_REGION255.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region255
idau.IDAU_REGION255.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region255
idau.IDAU_REGION26.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region26
idau.IDAU_REGION26.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region26 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION26.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region26 as exempt
idau.IDAU_REGION26.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region26
idau.IDAU_REGION26.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region26
idau.IDAU_REGION27.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region27
idau.IDAU_REGION27.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region27 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION27.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region27 as exempt
idau.IDAU_REGION27.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region27
idau.IDAU_REGION27.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region27
idau.IDAU_REGION28.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region28
idau.IDAU_REGION28.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region28 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION28.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region28 as exempt
idau.IDAU_REGION28.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region28
idau.IDAU_REGION28.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region28
idau.IDAU_REGION29.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region29
idau.IDAU_REGION29.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region29 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION29.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region29 as exempt
idau.IDAU_REGION29.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region29
idau.IDAU_REGION29.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region29
idau.IDAU_REGION3.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region3 as exempt
idau.IDAU_REGION30.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region30
idau.IDAU_REGION30.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region30 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION30.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region30 as exempt
idau.IDAU_REGION30.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region30
idau.IDAU_REGION30.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region30
idau.IDAU_REGION31.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region31
idau.IDAU_REGION31.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region31 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION31.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region31 as exempt
idau.IDAU_REGION31.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region31
idau.IDAU_REGION31.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region31
idau.IDAU_REGION32.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region32
idau.IDAU_REGION32.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region32 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION32.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region32 as exempt
idau.IDAU_REGION32.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region32
idau.IDAU_REGION32.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region32
idau.IDAU_REGION33.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region33
idau.IDAU_REGION33.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region33 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION33.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region33 as exempt
idau.IDAU_REGION33.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region33
idau.IDAU_REGION33.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region33
idau.IDAU_REGION34.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region34
idau.IDAU_REGION34.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region34 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION34.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region34 as exempt
idau.IDAU_REGION34.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region34
idau.IDAU_REGION34.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region34
idau.IDAU_REGION35.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region35
idau.IDAU_REGION35.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region35 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION35.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region35 as exempt
idau.IDAU_REGION35.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region35
idau.IDAU_REGION35.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region35
idau.IDAU_REGION36.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region36
idau.IDAU_REGION36.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region36 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION36.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region36 as exempt
idau.IDAU_REGION36.LADDR=0 # (int , init-time) default = '0x0' : Limit address of IDAU region36
idau.IDAU_REGION36.NSC=0 # (bool , init-time) default = '0' : Set NSC for IDAU region36
idau.IDAU_REGION37.BADDR=0 # (int , init-time) default = '0x0' : Base address of IDAU region37
idau.IDAU_REGION37.ENABLE=0 # (bool , init-time) default = '0' : 0 => IDAU region37 is S (absent if LADDR=0), 1 => NS or NSC or exempt.
idau.IDAU_REGION37.EXEMPT=0 # (bool , init-time) default = '0' : Mark IDAU region37 as exempt