-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathall_statements_facts.txt
1522 lines (1522 loc) · 222 KB
/
all_statements_facts.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
(spec-statement(statement "begin= 65279 id= W5M0MpCehiHzreSzNTczkc9d")(location-id 0 0 0)(signature TaggedPDF-doc builtin_function_or_method statement))
(spec-statement(statement "begin= 65279 id= W5M0MpCehiHzreSzNTczkc9d")(location-id 0 1 0)(signature TaggedPDF-doc builtin_function_or_method statement))
(spec-statement(statement "xml")(location-id 0 2 0 0 0 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://purl.org/dc/elements/1.1/}format statement))
(spec-statement(statement "2012 08 31T16 46 15 04 00")(location-id 0 2 0 1 0 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://ns.adobe.com/xap/1.0/}CreateDate statement))
(spec-statement(statement "LaTeX with hyperref package")(location-id 0 2 0 1 1 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://ns.adobe.com/xap/1.0/}CreatorTool statement))
(spec-statement(statement "2012 11 02T15 07 41 04 00")(location-id 0 2 0 1 2 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://ns.adobe.com/xap/1.0/}ModifyDate statement))
(spec-statement(statement "2012 11 02T15 07 41 04 00")(location-id 0 2 0 1 3 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://ns.adobe.com/xap/1.0/}MetadataDate statement))
(spec-statement(statement "pdfTeX 1 40 12")(location-id 0 2 0 2 1 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://ns.adobe.com/pdf/1.3/}Producer statement))
(spec-statement(statement "False")(location-id 0 2 0 2 2 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://ns.adobe.com/pdf/1.3/}Trapped statement))
(spec-statement(statement "This is pdfTeX Version 3 1415926 2 3 1 40 12 TeX Live 2011 kpathsea version 6 0 1")(location-id 0 2 0 3 0 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://ns.adobe.com/pdfx/1.3/}PTEX.Fullbanner statement))
(spec-statement(statement "uuid 9ed8c34b c2ac b941 be29 ecd2804b6d3b")(location-id 0 2 0 4 0 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://ns.adobe.com/xap/1.0/mm/}DocumentID statement))
(spec-statement(statement "uuid 2a3e806e b52e c443 8048 1f9d07c0d7a3")(location-id 0 2 0 4 1 0)(signature TaggedPDF-doc {adobe:ns:meta/}xmpmeta {http://www.w3.org/1999/02/22-rdf-syntax-ns#}RDF {http://www.w3.org/1999/02/22-rdf-syntax-ns#}Description {http://ns.adobe.com/xap/1.0/mm/}InstanceID statement))
(spec-statement(statement "end= w")(location-id 0 3 0)(signature TaggedPDF-doc builtin_function_or_method statement))
(spec-statement(statement "end= r")(location-id 0 4 0)(signature TaggedPDF-doc builtin_function_or_method statement))
(spec-statement(statement "Information Sciences Institute University of Southern California")(location-id 0 7 0 0)(signature TaggedPDF-doc Part H2 statement))
(spec-statement(statement "Modied August 31 2012 Disclaimer USC makes no representation either expressed or implied as to the adequacy accuracy sufciency or freedom from defect of any kind nor shall USC incur any responsibility or obligation whatsoever by reason of such Data")(location-id 0 7 2 0)(signature TaggedPDF-doc Part P statement))
(spec-statement(statement "All Data is provided on an as is basis")(location-id 0 7 2 1)(signature TaggedPDF-doc Part P statement))
(spec-statement(statement "To the maximum extent permitted by law in no event will USC be responsible for any incidental damages consequential damages exemplary damages of any kind lost goodwill lost prots lost business and or any indirect economic damages whatsoever regardless of whether such damages arise from claims based upon contract negligence tort including strict liability or other legal theory a breach of any warranty or term of any agreement and regardless of whether a party was advised or had reason to know of the possibility of incurring such damages in advance")(location-id 0 7 2 2)(signature TaggedPDF-doc Part P statement))
(spec-statement(statement "")(location-id 0 7 2 3)(signature TaggedPDF-doc Part P statement))
(spec-statement(statement "Software Distribution Notice Software downloaded through the IRIS Release Server is being provided for the sole use of the Integrity and Reliability of Integrated Circuits Program")(location-id 0 7 3 0)(signature TaggedPDF-doc Part P statement))
(spec-statement(statement "DARPA has stipulated that neither this software nor any derivatives of this software may be redistributed to any third party")(location-id 0 7 3 1)(signature TaggedPDF-doc Part P statement))
(spec-statement(statement "This software must be returned unmodied to the IRIS Release Server website upon DARPA notication or in any event before the end of the IRIS Program")(location-id 0 7 3 2)(signature TaggedPDF-doc Part P statement))
(spec-statement(statement "")(location-id 0 7 3 3)(signature TaggedPDF-doc Part P statement))
(spec-statement(statement "1 System")(location-id 0 7 4 0 0 0)(signature TaggedPDF-doc Part Sect H5 Link statement))
(spec-statement(statement "1 1 Overview")(location-id 0 7 4 1 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 2 Features")(location-id 0 7 4 2 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 3 BlockDiagram")(location-id 0 7 4 3 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 4 I ODescription")(location-id 0 7 4 4 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 5 MemoryMap")(location-id 0 7 4 5 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 6 Resets")(location-id 0 7 4 6 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 7 DeviceInitialization")(location-id 0 7 4 7 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 8 AXISubsystemPorts")(location-id 0 7 4 8 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 9 Technology")(location-id 0 7 4 9 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 10References")(location-id 0 7 4 10 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 ARM Subsystem")(location-id 0 7 5 0 0 0)(signature TaggedPDF-doc Part Sect H5 Link statement))
(spec-statement(statement "2 1 Overview")(location-id 0 7 5 1 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 2 Features")(location-id 0 7 5 2 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 3 BlockDiagram")(location-id 0 7 5 3 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 4 I ODescription")(location-id 0 7 5 4 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 5 TechnicalDetails")(location-id 0 7 5 5 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 5 1 ARMCore")(location-id 0 7 5 6 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 5 2 Peripherals")(location-id 0 7 5 7 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 5 3 InterruptResource")(location-id 0 7 5 8 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 5 4 AXI4SInterconnectInterface")(location-id 0 7 5 9 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 Memory Controller Subsystem")(location-id 0 7 6 0 0 0)(signature TaggedPDF-doc Part Sect H5 Link statement))
(spec-statement(statement "3 1 Overview")(location-id 0 7 6 1 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 2 Features")(location-id 0 7 6 2 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 3 BlockDiagram")(location-id 0 7 6 3 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 4 I ODescription")(location-id 0 7 6 4 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 5 TechnicalDetails")(location-id 0 7 6 5 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 5 1 PacketFormat")(location-id 0 7 6 6 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 5 2 NormalMode")(location-id 0 7 6 7 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 5 3 PassthroughMode")(location-id 0 7 6 8 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 5 4 BurstMode")(location-id 0 7 6 9 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 Peripheral Subsystem")(location-id 0 7 7 0 0 0)(signature TaggedPDF-doc Part Sect H5 Link statement))
(spec-statement(statement "4 1 Overview")(location-id 0 7 7 1 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 2 Features")(location-id 0 7 7 2 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 3 BlockDiagram")(location-id 0 7 7 3 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 4 I ODescription")(location-id 0 7 7 4 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 5 TechnicalDetails")(location-id 0 7 7 5 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 5 1 SubsystemAddressMapping")(location-id 0 7 7 6 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 5 2 BridgesandInterfaces")(location-id 0 7 7 7 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 5 3 TimerCore")(location-id 0 7 7 8 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 5 4 InterruptControllerCore")(location-id 0 7 7 9 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "4 5 5 UARTCore")(location-id 0 7 7 10 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "5 Cryptographic Subsystem")(location-id 0 7 8 0 0 0)(signature TaggedPDF-doc Part Sect H5 Link statement))
(spec-statement(statement "5 1 Overview")(location-id 0 7 8 1 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "5 2 Features")(location-id 0 7 8 2 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "5 3 BlockDiagram")(location-id 0 7 8 3 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "5 4 I ODescription")(location-id 0 7 8 4 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "5 5 TechnicalDetails")(location-id 0 7 8 5 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "5 5 1 ZPUCore")(location-id 0 7 8 6 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "5 5 2 SubsystemInterfaceController")(location-id 0 7 8 7 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "5 5 3 CryptoCore")(location-id 0 7 8 8 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "6 AXI4 Interconnect")(location-id 0 7 9 0 0 0)(signature TaggedPDF-doc Part Sect H5 Link statement))
(spec-statement(statement "6 1 Overview")(location-id 0 7 9 1 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "6 2 Features")(location-id 0 7 9 2 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "6 3 BlockDiagram")(location-id 0 7 9 3 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "6 4 I ODescription")(location-id 0 7 9 4 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "6 5 TechnicalDetails")(location-id 0 7 9 5 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "6 5 1 AMBAAXI4 Stream")(location-id 0 7 9 6 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "6 5 2 CrossbarSwitch")(location-id 0 7 9 7 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "6 5 3 Arbitration")(location-id 0 7 9 8 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "A ARM2 v2a Datasheet")(location-id 0 7 10 0 0 0)(signature TaggedPDF-doc Part Sect H5 Link statement))
(spec-statement(statement "A 1 ARMFamilyDataManual")(location-id 0 7 10 1 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "A 2 ARMDatasheet")(location-id 0 7 10 2 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "1 System")(location-id 0 7 10 3 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "1 1 Overview")(location-id 0 8 0 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "The ITAG Phase 1 Thrust 3A Test Article TA3A is a soft IP System on Chip SoC developed by USC Information Sciences Institute in support of the DARPA Integrity and Reliability of Integrated Circuits IRIS Thrust 3A")(location-id 0 8 0 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "This soft IP is intended for implementation in an ASIC")(location-id 0 8 0 1 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 8 0 1 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The TA3A architecture includes a heterogenous multi processor bus based SoC targeting cyrptographic hashing while supporting several hardware and software interfaces and programming models")(location-id 0 8 0 2 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The cryptographic features are provided through a coprocessor accelerator whose default algorithm can be switched at runtime")(location-id 0 8 0 2 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The user can operate these processors under stand alone or parallel programming models")(location-id 0 8 0 2 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Additionally TA3A provides multiple I O and memory interfacing options allowing a shared memory model distributed memory model or a hybrid shared distributed memory model")(location-id 0 8 0 2 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "These interfaces also enable the SoC to be used with other board or system level devices")(location-id 0 8 0 2 4)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "A special memory interface likewise allows external devices to push high bandwidth data into the device to provide an alternative mechanism to congure and control the device")(location-id 0 8 0 2 5)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The systems full crossbar switch enables concurrent connectivity between subsystems to maximize on chip communication bandwidth")(location-id 0 8 0 2 6)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "These features make TA3A a specialized and exible processor for cryptographic applications")(location-id 0 8 0 2 7)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 8 0 2 8)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "TA3A is internally composed of multiple subsystems connected through an AXI4S bus")(location-id 0 8 0 3 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The subsystems include an ARM processor a ZPU processor with a cryptographic accelerator a memory controller and a UART interface")(location-id 0 8 0 3 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The architecture of this SoC allows each subsystem to function independently with its own dedicated AXI4S port and reset signal")(location-id 0 8 0 3 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 8 0 3 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The ARM and Crypto subsystems are masters on the AXI bus")(location-id 0 8 0 4 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The UART is a slave on the AXI bus and must be polled for incoming data")(location-id 0 8 0 4 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The Memory subsystem allows the system to access off chip memory")(location-id 0 8 0 4 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Each of these subsystems operates at the system clock speed")(location-id 0 8 0 4 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 8 0 4 4)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "1 2 Features")(location-id 0 8 1 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "")(location-id 0 8 1 1 0 0 0 0)(signature TaggedPDF-doc Part Sect L L LI LI_Label statement))
(spec-statement(statement "32 bit ARM v2 processor with 3 stage pipeline UART serial interface with dedicated FIFOs and unied instruction and data cache")(location-id 0 8 1 1 0 0 1 0)(signature TaggedPDF-doc Part Sect L L LI LI_Title statement))
(spec-statement(statement "Secure Hash Function 3 SHA 3 accelerator core")(location-id 0 8 1 1 0 1 0)(signature TaggedPDF-doc Part Sect L L LI statement))
(spec-statement(statement "")(location-id 0 8 1 1 1 0 0 0)(signature TaggedPDF-doc Part Sect L L LI LI_Label statement))
(spec-statement(statement "32 bit ZPU microcontroller with data cache")(location-id 0 8 1 1 1 0 1 0)(signature TaggedPDF-doc Part Sect L L LI LI_Title statement))
(spec-statement(statement "fmax = 50 MHz")(location-id 0 8 1 1 1 1 0)(signature TaggedPDF-doc Part Sect L L LI statement))
(spec-statement(statement "")(location-id 0 8 1 1 2 0 0)(signature TaggedPDF-doc Part Sect L LI LI_Label statement))
(spec-statement(statement "4 port AXI4S full crossbar switch")(location-id 0 8 1 1 2 1 0)(signature TaggedPDF-doc Part Sect L LI LI_Title statement))
(spec-statement(statement "1 3 Block Diagram")(location-id 0 8 2 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "Figure 1 1 High level block diagram of the TA3A System on Chip")(location-id 0 8 2 1 1 0 0)(signature TaggedPDF-doc Part Sect Figure Caption P statement))
(spec-statement(statement "1 4 I O Description")(location-id 0 8 3 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "Table 1 1 Chip I O Signals")(location-id 0 8 3 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Signal In Out Width Description")(location-id 0 8 3 2 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Memory Controller")(location-id 0 8 3 3 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "MEM_DATA_IN")(location-id 0 8 3 4 0 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "In")(location-id 0 8 3 4 0 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 3 4 0 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Data input from off chip memory")(location-id 0 8 3 4 0 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "MEM_DATA_OUT")(location-id 0 8 3 4 1 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Out")(location-id 0 8 3 4 1 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 3 4 1 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Data output to off chip memory")(location-id 0 8 3 4 1 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "MEM_DATA_BE")(location-id 0 8 3 4 2 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Out")(location-id 0 8 3 4 2 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "4")(location-id 0 8 3 4 2 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Byte enable signal to select specic bytes to read")(location-id 0 8 3 4 2 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "MEM_ADDR")(location-id 0 8 3 4 3 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Out")(location-id 0 8 3 4 3 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "24")(location-id 0 8 3 4 3 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Memory address")(location-id 0 8 3 4 3 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "MEM_RD_EN")(location-id 0 8 3 4 4 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Out")(location-id 0 8 3 4 4 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 4 4 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Memory read enable signal")(location-id 0 8 3 4 4 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "MEM_WR_EN")(location-id 0 8 3 4 5 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Out")(location-id 0 8 3 4 5 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 4 5 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Memory write enable signal")(location-id 0 8 3 4 5 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "MEM_ACK")(location-id 0 8 3 4 6 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "In")(location-id 0 8 3 4 6 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 4 6 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Acknowledge signal from the memory")(location-id 0 8 3 4 6 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "UART")(location-id 0 8 3 4 7 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "UART_IN")(location-id 0 8 3 4 8 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "In")(location-id 0 8 3 4 8 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 4 8 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "UART data in")(location-id 0 8 3 4 8 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "UART_OUT")(location-id 0 8 3 4 9 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Out")(location-id 0 8 3 4 9 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 4 9 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "UART data out")(location-id 0 8 3 4 9 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Clock and Resets")(location-id 0 8 3 4 10 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "CLK")(location-id 0 8 3 5 0 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "In")(location-id 0 8 3 5 0 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 5 0 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "System clock fmax = 50 MHz")(location-id 0 8 3 5 0 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "RESET_B")(location-id 0 8 3 5 1 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "In")(location-id 0 8 3 5 1 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 5 1 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Chip reset active low")(location-id 0 8 3 5 1 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "RESET_ARM_B")(location-id 0 8 3 5 2 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "In")(location-id 0 8 3 5 2 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 5 2 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "ARM subsystem reset active low")(location-id 0 8 3 5 2 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "RESET_CRYPTO_B")(location-id 0 8 3 5 3 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "In")(location-id 0 8 3 5 3 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 5 3 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Crypto subsystem reset active low")(location-id 0 8 3 5 3 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "RESET_MEM_B")(location-id 0 8 3 5 4 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "In")(location-id 0 8 3 5 4 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 5 4 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Memory subsystem reset active low")(location-id 0 8 3 5 4 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "RESET_PERIPH_B")(location-id 0 8 3 5 5 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "In")(location-id 0 8 3 5 5 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 8 3 5 5 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Peripheral subsystem reset active low")(location-id 0 8 3 5 5 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1 5 Memory Map")(location-id 0 8 4 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "Table 1 2 TA3A System Memory Map")(location-id 0 8 4 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Address Range Subsystem")(location-id 0 8 4 2 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "0x00000000 0x0FFFFFFF Memory Controller 0x10000000 0x1FFFFFFF ARM Subsystem 0x20000000 0x2FFFFFFF Peripheral Subsystem 0x30000000 0x3FFFFFFF Crypto Subsystem 0x40000000 0xFFFFFFFF reserved")(location-id 0 8 4 3 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "1 6 Resets")(location-id 0 8 5 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "The TA3A system can be reset using the RESET_B pin active low")(location-id 0 8 5 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Assertions of reset should be maintained for a minimum of 10 system clock cycles")(location-id 0 8 5 1 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "An assertion of this signal causes the entire system to be reset including all subsystems")(location-id 0 8 5 1 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "In addition each subsystem can be independently reset via the RESET_subsystem_B signal where subsystem is one of ARM CRYPTO MEM or PERIPH")(location-id 0 8 5 1 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 8 5 1 4)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "1 7 Device Initialization")(location-id 0 8 6 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "TA3A initialization begins by holding the chip in reset for a minimum of 10 clock cycles as described above")(location-id 0 8 6 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "When reset is deasserted the ARM begins fetching and executing instructions from off chip memory address 0x00000000")(location-id 0 8 6 1 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "If this memory block is mapped to a ROM that contains an ARM program no further bootstrapping is required")(location-id 0 8 6 1 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "In all other cases the memory must be initialized through a boot loader which is not included with this IP")(location-id 0 8 6 1 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 8 6 1 4)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "1 8 AXI Subsystem Ports")(location-id 0 8 7 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "The various TA3A subsystems communicate through the AXI4S interconnect")(location-id 0 8 7 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Each of these includes the following internal I O in addition to the ports listed in the respective subsystem chapters")(location-id 0 8 7 1 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 8 7 1 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Table 1 3 Subsystem I O Signals")(location-id 0 8 7 2 0 0 0)(signature TaggedPDF-doc Part Sect Table Caption P statement))
(spec-statement(statement "Signal In Out Width Description axi4s_tx_tdata Out 32 Transmit stream data")(location-id 0 8 7 2 1 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_tx_tstrb Out 4 Byte qualier")(location-id 0 8 7 2 1 0 1)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Not used in the TA3A switch")(location-id 0 8 7 2 1 0 2)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_tx_tkeep Out 4 Byte qualier")(location-id 0 8 7 2 1 0 3)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Not used in the TA3A switch")(location-id 0 8 7 2 1 0 4)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_tx_tvalid Out 1 Flow control")(location-id 0 8 7 2 1 0 5)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Indicates beginning of the stream")(location-id 0 8 7 2 1 0 6)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 8 7 2 1 0 7)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_tx_tlast Out 1 Flow control")(location-id 0 8 7 2 1 0 8)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Indicates end of the stream")(location-id 0 8 7 2 1 0 9)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 8 7 2 1 0 10)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_tx_tid Out 3 Stream identier")(location-id 0 8 7 2 1 0 11)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Not used in the TA3A switch")(location-id 0 8 7 2 1 0 12)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_tx_tdest Out 4 One hot encoding of destination ports on switch")(location-id 0 8 7 2 1 0 13)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 8 7 2 1 0 14)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_tx_tuser Out 4 User dened signal")(location-id 0 8 7 2 1 0 15)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Not used in the TA3A switch")(location-id 0 8 7 2 1 0 16)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_tx_tready In 1 Flow control")(location-id 0 8 7 2 1 0 17)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Indicates readiness of the transmitter")(location-id 0 8 7 2 1 0 18)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 8 7 2 1 0 19)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_rx_tdata In 32 Receive stream data")(location-id 0 8 7 2 1 0 20)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_rx_tstrb In 4 Byte qualier")(location-id 0 8 7 2 1 0 21)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Not used in the TA3A switch")(location-id 0 8 7 2 1 0 22)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_rx_tkeep In 4 Byte qualier")(location-id 0 8 7 2 1 0 23)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Not used in the TA3A switch")(location-id 0 8 7 2 1 0 24)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_rx_tvalid In 1 Flow control")(location-id 0 8 7 2 1 0 25)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Indicates beginning of the stream")(location-id 0 8 7 2 1 0 26)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 8 7 2 1 0 27)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_rx_tlast In 1 Flow control")(location-id 0 8 7 2 1 0 28)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Indicates end of the stream")(location-id 0 8 7 2 1 0 29)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 8 7 2 1 0 30)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_rx_tid In 3 Stream identier")(location-id 0 8 7 2 1 0 31)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Not used in the TA3A switch")(location-id 0 8 7 2 1 0 32)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_rx_tdest In 4 One hot encoding of destination ports on switch")(location-id 0 8 7 2 1 0 33)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 8 7 2 1 0 34)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_rx_tuser In 4 User dened signal")(location-id 0 8 7 2 1 0 35)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Not used in the TA3A switch")(location-id 0 8 7 2 1 0 36)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "axi4s_rx_tready Out 1 Flow control")(location-id 0 8 7 2 1 0 37)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Indicates readiness of the receiver")(location-id 0 8 7 2 1 0 38)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 8 7 2 1 0 39)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 8 7 2 1 0 40)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Information Sciences Institute")(location-id 0 8 7 2 2 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "7")(location-id 0 8 7 2 2 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1 9 Technology")(location-id 0 8 8 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "The TA3A soft IP has been evaluated with the IBM 45 nm SOI12SO process but none of the RTL depends upon this library")(location-id 0 8 8 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "A synthesis script in the form of a Makele is included with the RTL")(location-id 0 8 8 1 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 8 8 1 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "in Table 1 4")(location-id 0 8 8 2 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "")(location-id 0 8 8 2 0 1)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "The technology libraries referenced by the synthesis script are listed in Table 1 5")(location-id 0 8 8 3 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "")(location-id 0 8 8 3 0 1)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "Table 1 4 TA3A Memory Congurations")(location-id 0 8 8 4 0 0 0)(signature TaggedPDF-doc Part Sect Table Caption P statement))
(spec-statement(statement "Component")(location-id 0 8 8 4 1 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "Instances")(location-id 0 8 8 4 1 1 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "Read Data Width")(location-id 0 8 8 4 1 2 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "Write Data Width")(location-id 0 8 8 4 1 3 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "Address Width")(location-id 0 8 8 4 1 4 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "Size")(location-id 0 8 8 4 1 5 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "bram_addr8_data20")(location-id 0 8 8 4 2 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "2")(location-id 0 8 8 4 2 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "20")(location-id 0 8 8 4 2 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "20")(location-id 0 8 8 4 2 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "8")(location-id 0 8 8 4 2 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "640 Bytes")(location-id 0 8 8 4 2 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "bram_addr8_data128")(location-id 0 8 8 4 3 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "2")(location-id 0 8 8 4 3 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "128")(location-id 0 8 8 4 3 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "128")(location-id 0 8 8 4 3 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "8")(location-id 0 8 8 4 3 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32 KBytes")(location-id 0 8 8 4 3 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "generic_fo_53")(location-id 0 8 8 4 4 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "10")(location-id 0 8 8 4 4 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "53")(location-id 0 8 8 4 4 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "53")(location-id 0 8 8 4 4 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "3")(location-id 0 8 8 4 4 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "53 Bytes")(location-id 0 8 8 4 4 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "hdl_rf16x8_v")(location-id 0 8 8 4 5 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "2")(location-id 0 8 8 4 5 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "8")(location-id 0 8 8 4 5 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "8")(location-id 0 8 8 4 5 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "4")(location-id 0 8 8 4 5 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "16 Bytes")(location-id 0 8 8 4 5 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "hdl_rf_b16r32w32_negedge_v")(location-id 0 8 8 4 6 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "2")(location-id 0 8 8 4 6 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 8 4 6 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 8 4 6 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "4")(location-id 0 8 8 4 6 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "16 Bytes")(location-id 0 8 8 4 6 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "hdl_rf_b16r32w64_negedge_v")(location-id 0 8 8 4 7 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "1")(location-id 0 8 8 4 7 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 8 4 7 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "64")(location-id 0 8 8 4 7 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "4")(location-id 0 8 8 4 7 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "16 Bytes")(location-id 0 8 8 4 7 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "hdl_rf_b16r64w32_negedge_v")(location-id 0 8 8 4 8 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "1")(location-id 0 8 8 4 8 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "64")(location-id 0 8 8 4 8 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 8 4 8 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "4")(location-id 0 8 8 4 8 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "16 Bytes")(location-id 0 8 8 4 8 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "mcu_memory_v2")(location-id 0 8 8 4 9 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "1")(location-id 0 8 8 4 9 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 8 4 9 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 8 4 9 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "14")(location-id 0 8 8 4 9 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "64 KBytes")(location-id 0 8 8 4 9 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "ramn_M8_N16")(location-id 0 8 8 4 10 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "4")(location-id 0 8 8 4 10 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "8")(location-id 0 8 8 4 10 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "8")(location-id 0 8 8 4 10 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "4")(location-id 0 8 8 4 10 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "16 Bytes")(location-id 0 8 8 4 10 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "ramn_M32_N16")(location-id 0 8 8 4 11 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "5")(location-id 0 8 8 4 11 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 8 4 11 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "32")(location-id 0 8 8 4 11 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "4")(location-id 0 8 8 4 11 4 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "64 Bytes")(location-id 0 8 8 4 11 5 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Table 1 5 TA3A Technology Libraries")(location-id 0 8 8 5 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Vendor Std Cells ARM")(location-id 0 8 8 6 0 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Library SOI12S0")(location-id 0 8 8 6 0 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Rev r0p1")(location-id 0 8 8 6 0 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Notes sc12_base_rvt")(location-id 0 8 8 6 0 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Pads ARM")(location-id 0 8 8 6 1 0 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "SOI12S0")(location-id 0 8 8 6 1 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "r0p3")(location-id 0 8 8 6 1 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "io_gppr_t18_mv10_mv18_avt_pl")(location-id 0 8 8 6 1 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1 10 References")(location-id 0 8 9 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "AMBA AXI4 Stream Protocol Specication")(location-id 0 8 9 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "http infocenter arm com help topic com arm doc ihi0051a index html")(location-id 0 8 9 2 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "ATMEL ATmega103")(location-id 0 8 9 3 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "http www atmel com devices atmega103 aspx tab=documents")(location-id 0 8 9 4 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "LocalLink Protocol Specication")(location-id 0 8 9 5 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "http www xilinx com products intellectual property LocalLink_UserInterface htm")(location-id 0 8 9 6 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "2 ARM Subsystem")(location-id 0 8 9 7 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "2 1 Overview")(location-id 0 9 0 0 0 0)(signature TaggedPDF-doc Part Sect Sect H4 statement))
(spec-statement(statement "The ARM subsystem is built based on a 3 stage ARM compatible 32 bit RISC processor")(location-id 0 9 0 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The ARM core is fully compatible with the ARM v2a ISA and is therefore supported by the GNU toolset")(location-id 0 9 0 1 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The ARM subsystem incorporates the ARM core and an AXI4S interconnect interface")(location-id 0 9 0 1 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The AXI4S interface provides connectivity to resources outside the subsystem including the memory controller interrupt controller timer and UART")(location-id 0 9 0 1 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 9 0 1 4)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "2 2 Features")(location-id 0 9 1 0 0 0)(signature TaggedPDF-doc Part Sect Sect H4 statement))
(spec-statement(statement "")(location-id 0 9 1 1 0 0 0)(signature TaggedPDF-doc Part Sect L LI LI_Label statement))
(spec-statement(statement "ARM v2a compatible architecture Booth multiplier algorithm")(location-id 0 9 1 1 0 1 0)(signature TaggedPDF-doc Part Sect L LI LI_Title statement))
(spec-statement(statement "")(location-id 0 9 1 1 1 0 0)(signature TaggedPDF-doc Part Sect L LI LI_Label statement))
(spec-statement(statement "3 stage pipeline No Memory Management Unit MMU")(location-id 0 9 1 1 1 1 0)(signature TaggedPDF-doc Part Sect L LI LI_Title statement))
(spec-statement(statement "")(location-id 0 9 1 1 2 0 0 0)(signature TaggedPDF-doc Part Sect L L LI LI_Label statement))
(spec-statement(statement "AXI4S interconnect interface")(location-id 0 9 1 1 2 0 1 0)(signature TaggedPDF-doc Part Sect L L LI LI_Title statement))
(spec-statement(statement "No Floating Point Unit FPU")(location-id 0 9 1 1 2 1 0)(signature TaggedPDF-doc Part Sect L L LI statement))
(spec-statement(statement "")(location-id 0 9 1 1 3 0 0)(signature TaggedPDF-doc Part Sect L LI LI_Label statement))
(spec-statement(statement "Unied instruction and data cache write through read miss replacement policy")(location-id 0 9 1 1 3 1 0)(signature TaggedPDF-doc Part Sect L LI LI_Title statement))
(spec-statement(statement "2 3 Block Diagram 2 5 Technical Details")(location-id 0 9 2 0 0 0)(signature TaggedPDF-doc Part Sect Sect H4 statement))
(spec-statement(statement "Figure 2 1 ARM Subsystem Block Diagram")(location-id 0 9 2 0 1 1 0 0)(signature TaggedPDF-doc Part Sect Sect Figure Caption P statement))
(spec-statement(statement "Chapter 2 ARM Subsystem")(location-id 0 9 2 1 0 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "ITAG TA3A Datasheet")(location-id 0 9 2 1 0 2 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "2 4 I O Description")(location-id 0 9 2 1 1 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "Table 2 1 Subsystem I O Signals")(location-id 0 9 2 1 2 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Signal")(location-id 0 9 2 1 3 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "In Out")(location-id 0 9 2 1 3 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Width")(location-id 0 9 2 1 3 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Description")(location-id 0 9 2 1 3 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "clk")(location-id 0 9 2 1 4 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "In")(location-id 0 9 2 1 4 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 9 2 1 4 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Clock input")(location-id 0 9 2 1 4 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 9 2 1 4 3 1)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "reset_b")(location-id 0 9 2 1 5 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "In")(location-id 0 9 2 1 5 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 9 2 1 5 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "External reset pin for the ARM subsystem")(location-id 0 9 2 1 5 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active low")(location-id 0 9 2 1 5 3 1)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 9 2 1 5 3 2)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "irq")(location-id 0 9 2 1 6 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "In")(location-id 0 9 2 1 6 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 9 2 1 6 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Interrupt request")(location-id 0 9 2 1 6 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 9 2 1 6 3 1)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 9 2 1 6 3 2)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "rq")(location-id 0 9 2 1 7 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "In")(location-id 0 9 2 1 7 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1")(location-id 0 9 2 1 7 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Fast interrupt request")(location-id 0 9 2 1 7 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 9 2 1 7 3 1)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 9 2 1 7 3 2)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 9 2 1 8 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "")(location-id 0 9 2 1 8 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 9 2 1 8 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "AXI4S interconnect RX TX ports see Table 1 3")(location-id 0 9 2 1 8 3 0 0)(signature TaggedPDF-doc Part Sect Table TR TD Link statement))
(spec-statement(statement "")(location-id 0 9 2 1 8 3 0 1)(signature TaggedPDF-doc Part Sect Table TR TD Link statement))
(spec-statement(statement "2 5 1 ARM Core")(location-id 0 9 3 0 0 0 0)(signature TaggedPDF-doc Part Sect Sect Sect H5 statement))
(spec-statement(statement "The ARM core has a 3 stage pipeline architecture")(location-id 0 9 3 0 1 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The three stages are fetch decode and execute")(location-id 0 9 3 0 1 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Register based instructions execute in a single cycle except for instructions involving multiplication")(location-id 0 9 3 0 1 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Load and store instructions require three cycles")(location-id 0 9 3 0 1 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The cores pipeline is stalled either when a cache miss occurs or when the core performs a memory access")(location-id 0 9 3 0 1 4)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 9 3 0 1 5)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The core includes a unied instruction and data cache with write through and a read miss replacement policy")(location-id 0 9 3 0 2 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Multiply and multiply accumulate instructions operate on 32 bit inputs and outputs in 34 clock cycles using the Booth algorithm")(location-id 0 9 3 0 2 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "As with other ARM processor designs the ARM core is little endian")(location-id 0 9 3 0 2 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The core does not contain a memory management unit MMU so it does not support virtual memory")(location-id 0 9 3 0 2 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 9 3 0 2 4)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "For more details about the ARM v2a ISA refer to Appendix A")(location-id 0 9 3 0 3 0 0)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "")(location-id 0 9 3 0 3 0 1)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "2 5 2 Peripherals")(location-id 0 9 3 1 0 0 0)(signature TaggedPDF-doc Part Sect Sect Sect H5 statement))
(spec-statement(statement "The ARM subsystem only contains the the ARM core and the AXI4S interconnect interface")(location-id 0 9 3 1 1 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "All other peripherals reside outside the subsystem and are accessible via the AXI4S interconnect interface")(location-id 0 9 3 1 1 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 9 3 1 1 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "2 5 3 Interrupt Resource")(location-id 0 9 3 2 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "There is no interrupt controller in the ARM subsystem")(location-id 0 9 3 2 1 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The interrupt and fast interrupt request inputs are subsystem ports and depend upon an external interrupt controller")(location-id 0 9 3 2 1 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 9 3 2 1 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "2 5 4 AXI4S Interconnect Interface")(location-id 0 9 3 3 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "The ARM subsystem interfaces to the remainder of the system through the AXI4S interconnect interface")(location-id 0 9 3 3 1 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The interface acts as a bridge by performing bus master signaling on the AXI4S Interconnect on behalf of the ARM core")(location-id 0 9 3 3 1 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Bus requests initiated from the ARM core for other subsystems pass through this interface")(location-id 0 9 3 3 1 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Acknowledgments from other subsystems for read or write requests also return through this interface to the ARM core")(location-id 0 9 3 3 1 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The interface conforms to the AXI4S protocol with the exception that it does not support burst transfers initiated by the ARM core")(location-id 0 9 3 3 1 4)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "A burst request is broken down into individual sequential 32 bit requests providing an acknowledgment to the ARM core after each transaction completes")(location-id 0 9 3 3 1 5)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 9 3 3 1 6)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "avoided")(location-id 0 9 3 3 2 0 0)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "The valid address ranges for the TA3A system are provided in Table 1 2")(location-id 0 9 3 3 2 0 1)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "")(location-id 0 9 3 3 2 0 2)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "3 Memory Controller Subsystem")(location-id 0 9 3 3 3 0 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "3 1 Overview")(location-id 0 10 0 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "The TA3A system includes a Memory Controller subsystem to facilitate transactions to the off chip memory")(location-id 0 10 0 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The memory controller is a slave on the AXI bus except when in Passthrough mode")(location-id 0 10 0 1 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The Memory Controller uses the LocalLink LL protocol at the core level")(location-id 0 10 0 1 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The memory subsystem incorporates an AXI to LL bridge and hence works with AXI packets")(location-id 0 10 0 1 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 0 1 4)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The Memory Controller subsystem supports three overlapping modes of operation 1 Normal Mode regular transactions to and from off chip memory")(location-id 0 10 0 2 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "2 Passthrough Mode off chip entity injecting data into the system")(location-id 0 10 0 2 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "3 Burst mode multiple data words per transaction")(location-id 0 10 0 2 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "This subsystem provides basic memory I O signaling in the form of address data read write request byte enable and acknowledge but is not a conventional off chip memory controller suitable for DDR2 or DDR3")(location-id 0 10 0 2 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 0 2 4)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "3 2 Features")(location-id 0 10 1 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "")(location-id 0 10 1 1 0 0 0)(signature TaggedPDF-doc Part Sect L LI LI_Label statement))
(spec-statement(statement "Access to off chip memory Can be used in Passthrough mode to inject data into the TA3A system")(location-id 0 10 1 1 0 1 0)(signature TaggedPDF-doc Part Sect L LI LI_Title statement))
(spec-statement(statement "")(location-id 0 10 1 1 1 0 0)(signature TaggedPDF-doc Part Sect L LI LI_Label statement))
(spec-statement(statement "Can be used to read write either single data or")(location-id 0 10 1 1 1 1 0)(signature TaggedPDF-doc Part Sect L LI LI_Title statement))
(spec-statement(statement "multiple data packets Can handle Normal mode requests while Passthrough mode is active")(location-id 0 10 1 2 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "3 3 Block Diagram 3 4 I O Description")(location-id 0 10 2 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "Figure 3 1 Memory Controller Block Diagram")(location-id 0 10 2 1 1 0 0)(signature TaggedPDF-doc Part Sect Figure Caption P statement))
(spec-statement(statement "Table 3 1 Subsystem I O Signals")(location-id 0 10 3 0 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Signal In Out Width Description")(location-id 0 10 3 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "clk In 1 Clock input")(location-id 0 10 3 2 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "reset_b In 1 External reset pin for the Memory Controller")(location-id 0 10 3 2 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Active low")(location-id 0 10 3 2 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 3 2 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "MEM_DATA_IN In 32 Data line coming into the Memory Controller from off chip memory")(location-id 0 10 3 3 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 3 3 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "MEM_DATA_OUT Out 32 Data line going out to the off chip memory")(location-id 0 10 3 4 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 3 4 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "MEM_DATA_BE Out 4 Byte enable signal to select specic bytes to read")(location-id 0 10 3 5 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The memory is word aligned and byte addressable")(location-id 0 10 3 5 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 3 5 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "MEM_ADDR Out 24 Off chip memory address")(location-id 0 10 3 6 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Provides the base address or the start address in case of a burst of the data to be accessed")(location-id 0 10 3 6 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 3 6 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "MEM_RD_EN Out 1 Memory read enable signal")(location-id 0 10 3 7 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "This signal is asserted when a read operation is initiated")(location-id 0 10 3 7 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "It is used to ensure that the data coming in is valid")(location-id 0 10 3 7 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 3 7 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "MEM_WR_EN Out 1 Memory write enable signal")(location-id 0 10 3 8 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "This signal is asserted when a write operation is initiated")(location-id 0 10 3 8 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 3 8 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "MEM_ACK In 1 ACK signal from the memory")(location-id 0 10 3 9 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "This signal is an indication from off chip memory that the requested write was completed successfully")(location-id 0 10 3 9 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 10 3 9 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "AXI4S interconnect RX TX ports see Table 1 3")(location-id 0 10 3 10 0 0)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "")(location-id 0 10 3 10 0 1)(signature TaggedPDF-doc Part Sect P Link statement))
(spec-statement(statement "3 5 Technical Details")(location-id 0 10 4 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "3 5 1 Packet Format")(location-id 0 10 4 1 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "The packet format used by the Memory Controller subsystem is 32 bits wide and is shown in Figure 3 2")(location-id 0 10 4 1 1 0 0)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "")(location-id 0 10 4 1 1 0 1)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "each transaction is as shown in Figure 3 2")(location-id 0 10 4 1 2 0 0)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "")(location-id 0 10 4 1 2 0 1)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "Field")(location-id 0 10 4 1 3 0 0 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TH statement))
(spec-statement(statement "Description")(location-id 0 10 4 1 3 0 0 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TH statement))
(spec-statement(statement "Destination")(location-id 0 10 4 1 3 0 1 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Subsystem the packet is")(location-id 0 10 4 1 3 0 1 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "intended for")(location-id 0 10 4 1 3 0 2 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Source")(location-id 0 10 4 1 3 0 3 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Subsystem that generates")(location-id 0 10 4 1 3 0 3 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "the packet")(location-id 0 10 4 1 3 0 4 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Packet Length")(location-id 0 10 4 1 3 0 5 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Total length of the packet")(location-id 0 10 4 1 3 0 5 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "32 bit Base Addr")(location-id 0 10 4 1 3 0 6 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Memory start address of")(location-id 0 10 4 1 3 0 6 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "the")(location-id 0 10 4 1 3 0 7 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "payload data")(location-id 0 10 4 1 3 0 7 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "to")(location-id 0 10 4 1 3 0 7 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "be")(location-id 0 10 4 1 3 0 7 4 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "sent")(location-id 0 10 4 1 3 0 8 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Length")(location-id 0 10 4 1 3 0 9 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Size of memory segment")(location-id 0 10 4 1 3 0 9 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Transaction Type")(location-id 0 10 4 1 3 0 10 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "0000 Read request")(location-id 0 10 4 1 3 0 10 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "0000 Write request")(location-id 0 10 4 1 3 0 11 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "0010 Read Ack")(location-id 0 10 4 1 3 0 12 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "0011 Write Ack")(location-id 0 10 4 1 3 0 13 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Transaction ID")(location-id 0 10 4 1 3 0 14 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Unique identier")(location-id 0 10 4 1 3 0 14 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Figure 3 2 Packet format")(location-id 0 10 4 1 3 0 15 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table Caption P statement))
(spec-statement(statement "3 5 2 Normal Mode")(location-id 0 10 4 2 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "This mode handles requests from subsystems to read from or write to the off chip memory")(location-id 0 10 4 2 1 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "In this mode the memory system supports each of the transaction types shown below")(location-id 0 10 4 2 1 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "READ REQUEST Request from any subsystem to read from the off chip memory")(location-id 0 10 4 2 2 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "READ ACK Acknowledgment to the requesting subsystem with the data read from off chip memory")(location-id 0 10 4 2 2 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "WRITE REQUEST Request from any subsystem to write to the off chip memory")(location-id 0 10 4 2 2 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "WRITE ACK Acknowledgment to the requesting subsystem that issued the write rquest")(location-id 0 10 4 2 2 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 10 4 2 2 4)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The Memory Controller issues WRITE ACKs to the appropriate subsystem when data is correctly written to memory and accepts READ ACKs from subsystems when data is correctly received from off chip memory")(location-id 0 10 4 2 3 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "To reply to a read request the Memory Controller swaps the source and destinations elds to send a packet to the subsystem that initiated the request")(location-id 0 10 4 2 3 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The Memory Controller then inspects the payload length and prepends a header destination source packet length and checksum to calculate the packet length along with the data read from the off chip memory")(location-id 0 10 4 2 3 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "When replying to a write request the Memory Controller rst writes the data received to off chip memory and then waits for an acknowledgement")(location-id 0 10 4 2 3 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Upon receipt of the acknowledgement it issues a WRITE ACK similar to a READ ACK but with no payload and with a packet length of zero")(location-id 0 10 4 2 3 4)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 10 4 2 3 5)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "3 5 3 Passthrough Mode")(location-id 0 10 4 3 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "The Memory Controller Passthrough mode is initiated from off chip and enables injection of messages into the system")(location-id 0 10 4 3 1 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "All passthrough reads and writes go through address 0x0FFFFFF8")(location-id 0 10 4 3 1 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The Memory Controller can handle normal memory requests even when in Passthrough mode")(location-id 0 10 4 3 1 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 10 4 3 1 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Passthrough mode can handle the same commands as Normal mode but the destination subsystem is selected by the packet base address rather than by the destination ID")(location-id 0 10 4 3 2 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "In Passthrough mode the transactions are as follows")(location-id 0 10 4 3 2 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "READ REQUEST Request from off chip to read data from a subsystem memory")(location-id 0 10 4 3 3 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "READ ACK Acknowledgement to the off chip requester with the data read from subsystem memory")(location-id 0 10 4 3 3 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "WRITE REQUEST Request from off chip to write data to a subsystem memory")(location-id 0 10 4 3 3 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "WRITE ACK Acknowledgment to the off chip requester that the data has been written to subsystem memory")(location-id 0 10 4 3 3 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 10 4 3 3 4)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "To enter Passthrough mode from off chip the user asserts the ACK signal and holds the two MSBs of MEM_DATA_IN high")(location-id 0 10 4 3 4 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Once Passthrough mode is enabled the Memory Controller assumes that subsequent words are in LocalLink packet format Address Transaction Type Transaction ID and Data")(location-id 0 10 4 3 4 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The Memory Controller afxes an AXI packet header and sets itself as the source subsystem for the transaction")(location-id 0 10 4 3 4 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The destination subsystem is determined from the address provided")(location-id 0 10 4 3 4 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The length of the AXI packet is calculated as in Normal mode")(location-id 0 10 4 3 4 4)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 10 4 3 4 5)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Supporting normal requests even when in Passthrough mode is important because subsystems must be able to respond to requests with an ACK to avoid deadlock")(location-id 0 10 4 3 5 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The Transaction ID can be used to differentiate between normal and passthrough data the latter of which would be sent to address 0xFFFFFFF8")(location-id 0 10 4 3 5 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Passthrough mode does not have priority over Normal mode so if the Memory Controller is in Normal mode it will complete the current transaction before entering to Passthrough mode")(location-id 0 10 4 3 5 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 10 4 3 5 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "3 5 4 Burst Mode")(location-id 0 10 4 4 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "The Burst mode of the Memory Controller accepts a read write request with more than one data word in the packet payload")(location-id 0 10 4 4 1 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Burst mode is permitted in both Normal and Passthrough modes")(location-id 0 10 4 4 1 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The maximum burst size depends upon the request size passed in with the AXI packet")(location-id 0 10 4 4 1 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The maximum size is nominally 4 GB but the address pins can only access 256 MB of external data")(location-id 0 10 4 4 1 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 10 4 4 1 4)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "4 Peripheral Subsystem")(location-id 0 10 4 4 2 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "4 1 Overview")(location-id 0 11 0 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "The Peripheral subsystem consists of a timer an interrupt controller and a UART all connected through a Peripheral Bus Interface")(location-id 0 11 0 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The Peripheral Bus is a ring which connects the cores through the AXI4S interconnect interface to the remainder of the system")(location-id 0 11 0 1 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The ring topology reduces resource utilization requirements and adds minimal latency")(location-id 0 11 0 1 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 11 0 1 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Each core in this subsystem has its own memory mapped registers which can be read or written by any AXI4S bus master")(location-id 0 11 0 2 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The Timer core has three counters which can be congured in periodic or one shot modes")(location-id 0 11 0 2 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The Interrupt Controller core supports hard and soft interrupts including timer interrupts and generates interrupt requests as outputs")(location-id 0 11 0 2 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The UART core is used to send data to or receive data from standard RS232 devices")(location-id 0 11 0 2 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 11 0 2 4)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "4 2 Features")(location-id 0 11 1 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "")(location-id 0 11 1 1 0 0 0)(signature TaggedPDF-doc Part Sect L LI LI_Label statement))
(spec-statement(statement "Interrupt controller timer and UART peripherals Soft and hard interrupt signals that can be connected to processor interrupt requests")(location-id 0 11 1 1 0 1 0)(signature TaggedPDF-doc Part Sect L LI LI_Title statement))
(spec-statement(statement "")(location-id 0 11 1 1 1 0 0 0)(signature TaggedPDF-doc Part Sect L L LI LI_Label statement))
(spec-statement(statement "Low resource utilization ring topology connecting")(location-id 0 11 1 1 1 0 1 0)(signature TaggedPDF-doc Part Sect L L LI LI_Title statement))
(spec-statement(statement "the cores UART operating at 57 600 baud 8N1 with 50 Mhz system clock")(location-id 0 11 1 1 1 1 0)(signature TaggedPDF-doc Part Sect L L LI statement))
(spec-statement(statement "")(location-id 0 11 1 1 2 0 0)(signature TaggedPDF-doc Part Sect L LI LI_Label statement))
(spec-statement(statement "Three timer counters congurable in periodic or one shot modes")(location-id 0 11 1 1 2 1 0)(signature TaggedPDF-doc Part Sect L LI LI_Title statement))
(spec-statement(statement "4 3 Block Diagram 4 5 Technical Details")(location-id 0 11 2 0 0)(signature TaggedPDF-doc Part Sect H4 statement))
(spec-statement(statement "Figure 4 1 Peripheral Subsystem Block Diagram")(location-id 0 11 2 1 1 0 0)(signature TaggedPDF-doc Part Sect Figure Caption P statement))
(spec-statement(statement "Chapter 4 Peripheral Subsystem")(location-id 0 11 2 2 0 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "ITAG TA3A Datasheet")(location-id 0 11 2 2 0 1 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "4 4 I O Description")(location-id 0 11 2 2 1 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "Table 4 1 Subsystem I O Signals")(location-id 0 11 2 2 2 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Signal clk reset_b")(location-id 0 11 2 2 3 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "In Out in in")(location-id 0 11 2 2 3 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Width 1 1")(location-id 0 11 2 2 3 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Description Clock input")(location-id 0 11 2 2 3 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "External reset pin for Peripheral subsystem")(location-id 0 11 2 2 3 3 1)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active low")(location-id 0 11 2 2 3 3 2)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 2 2 3 3 3)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "serial_in serial_out baud_clk")(location-id 0 11 2 2 4 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "in out out")(location-id 0 11 2 2 4 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1 1 1")(location-id 0 11 2 2 4 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "UART serial input")(location-id 0 11 2 2 4 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "UART serial output")(location-id 0 11 2 2 4 3 1)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "UART baud clock output")(location-id 0 11 2 2 4 3 2)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 2 2 4 3 3)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "o_irq o_rq")(location-id 0 11 2 2 5 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "out out")(location-id 0 11 2 2 5 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "1 1")(location-id 0 11 2 2 5 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Interrupt request output")(location-id 0 11 2 2 5 3 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Asserted by hard or soft interrupts")(location-id 0 11 2 2 5 3 1)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 11 2 2 5 3 2)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Fast Interrupt request output")(location-id 0 11 2 2 5 3 3)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Asserted whenever at least one hardware interrupt is generated")(location-id 0 11 2 2 5 3 4)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "Active high")(location-id 0 11 2 2 5 3 5)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 2 2 5 3 6)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 2 2 6 0 0)(signature TaggedPDF-doc Part Sect Table TR TH statement))
(spec-statement(statement "")(location-id 0 11 2 2 6 1 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 2 2 6 2 0)(signature TaggedPDF-doc Part Sect Table TR TD statement))
(spec-statement(statement "AXI4S interconnect RX TX ports see Table 1 3")(location-id 0 11 2 2 6 3 0 0)(signature TaggedPDF-doc Part Sect Table TR TD Link statement))
(spec-statement(statement "")(location-id 0 11 2 2 6 3 0 1)(signature TaggedPDF-doc Part Sect Table TR TD Link statement))
(spec-statement(statement "The Peripheral subsystem consists of timer interrupt controller and UART cores connected through a peripheral bus in a ring topology")(location-id 0 11 3 0 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Requests for any of these peripherals traverse the ring and are either forwarded by inactive cores or processed by the appropriate core")(location-id 0 11 3 0 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The end point of the ring is the AXI4S interconnect interface")(location-id 0 11 3 0 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 0 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "Incoming requests are identied by their address to determine if the packet should be processed by the current core or forwarded to the next in the ring")(location-id 0 11 3 1 0)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The AXI4S interconnect interface receives packets and strips away the outermost protocol wrapper")(location-id 0 11 3 1 1)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The internal protocol is used by the Peripheral Bus and consists of the address request size transaction type and data")(location-id 0 11 3 1 2)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "The Peripheral Bus Interface manages translation between this packet structure and each of the interfaces used by the timer interrupt controller and UART cores")(location-id 0 11 3 1 3)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 1 4)(signature TaggedPDF-doc Part Sect P statement))
(spec-statement(statement "4 5 1 Subsystem Address Mapping")(location-id 0 11 3 2 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "Memory mapping for the Peripheral subsystem is described in Table 4 2")(location-id 0 11 3 2 1 0 0)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "")(location-id 0 11 3 2 1 0 1)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "Table 4 2 Module level Address Space Mapping")(location-id 0 11 3 2 2 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Address Range Core")(location-id 0 11 3 2 3 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "0x20000000 0x20FFFFFF Timer 0x21000000 0x21FFFFFF Interrupt Controller 0x22000000 0x22FFFFFF UART")(location-id 0 11 3 2 4 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "4 5 2 Bridges and Interfaces")(location-id 0 11 3 3 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "The Peripheral subsystem uses four interfaces with three bridges to connect them")(location-id 0 11 3 3 1 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "AXI4S Allows communication between the peripherals and the remainder of the system")(location-id 0 11 3 3 2 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The AXI4S uses simple point to point connections and is used for streaming")(location-id 0 11 3 3 2 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 3 2 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "LocalLink Connects modules inside the Peripheral subsystem")(location-id 0 11 3 3 3 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The timer interrupt controller and UART receive LocalLink requests and respond with LocalLink acknowledgments")(location-id 0 11 3 3 3 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 3 3 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Wishbone Used by the timer and interrupt controller")(location-id 0 11 3 3 4 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 3 4 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "FIFO Used by the UART")(location-id 0 11 3 3 5 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 3 5 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The bridges are described in Table 4 3")(location-id 0 11 3 3 6 0 0)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "")(location-id 0 11 3 3 6 0 1)(signature TaggedPDF-doc Part Sect Sect P Link statement))
(spec-statement(statement "Bridge")(location-id 0 11 3 3 7 0 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Master")(location-id 0 11 3 3 7 0 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Slave")(location-id 0 11 3 3 7 0 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Usage")(location-id 0 11 3 3 7 0 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "AXI to LocalLink")(location-id 0 11 3 3 7 1 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "AXI4S interconnect")(location-id 0 11 3 3 7 1 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "LocalLink ring")(location-id 0 11 3 3 7 1 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Subsystem interface")(location-id 0 11 3 3 7 1 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "LocalLink to Wishbone")(location-id 0 11 3 3 7 2 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "LocalLink")(location-id 0 11 3 3 7 2 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Wishbone")(location-id 0 11 3 3 7 2 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Timer and interrupt controller cores")(location-id 0 11 3 3 7 2 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "LocalLink to FIFO")(location-id 0 11 3 3 7 3 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "LocalLink")(location-id 0 11 3 3 7 3 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIFO")(location-id 0 11 3 3 7 3 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "UART core")(location-id 0 11 3 3 7 3 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "4 5 3 Timer Core")(location-id 0 11 3 4 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "4 5 3 1 Timer Register Address Space Mapping")(location-id 0 11 3 4 1 0 0)(signature TaggedPDF-doc Part Sect Sect Sect H5 statement))
(spec-statement(statement "register address mapping is shown in Table 4 4")(location-id 0 11 3 4 1 1 0 0)(signature TaggedPDF-doc Part Sect Sect Sect P Link statement))
(spec-statement(statement "")(location-id 0 11 3 4 1 1 0 1)(signature TaggedPDF-doc Part Sect Sect Sect P Link statement))
(spec-statement(statement "Table 4 4 Timer Register Address Mapping")(location-id 0 11 3 4 1 2 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "Address Register Name Description")(location-id 0 11 3 4 1 3 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "0x20000000 Timer0 Load Register Timer0 initial count value 0x20000004 Timer0 Value Register Timer0 current count value 0x20000008 Timer0 Control Register Timer0 control bits 0x2000000C Timer0 Clear Timer0 generated interrupt ag clear bits")(location-id 0 11 3 4 1 4 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "0x20000100 Timer1 Load Register Timer1 initial count value 0x20000104 Timer1 Value Register Timer1 current count value 0x20000108 Timer1 Control Register Timer1 control bits 0x2000010C Timer1 Clear Timer1 generated interrupt ag clear bits")(location-id 0 11 3 4 1 5 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "0x20000200 Timer2 Load Register Timer2 initial count value 0x20000204 Timer2 Value Register Timer2 current count value 0x20000208 Timer2 Control Register Timer2 control bits 0x2000020C Timer2 Clear Timer2 generated interrupt ag clear bits")(location-id 0 11 3 4 1 6 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "4 5 3 2 Register Description")(location-id 0 11 3 4 2 0 0)(signature TaggedPDF-doc Part Sect Sect Sect H5 statement))
(spec-statement(statement "Table 4 5 Timer Register Description")(location-id 0 11 3 4 2 1 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "Register Name Bit Number Access Description")(location-id 0 11 3 4 2 2 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "Load Register 31 16 r These bits return zero when read")(location-id 0 11 3 4 2 3 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 3 1)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "Load Register 15 0 r w Represents the initial timer count value")(location-id 0 11 3 4 2 4 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "When the load register is rst written the initial count value is right padded with eight zeros to form a 24 bit value and is stored in the value register")(location-id 0 11 3 4 2 4 1)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "When the timer operates in periodic mode bit 6 of the control register is set the value register reloads this initial value every time the count reaches zero")(location-id 0 11 3 4 2 4 2)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 4 3)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "Value Register 31 24 r These bits are unused and return zero when read")(location-id 0 11 3 4 2 5 0)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 5 1)(signature TaggedPDF-doc Part Sect Sect Sect P statement))
(spec-statement(statement "Table 4 5 Timer Register Description")(location-id 0 11 3 4 2 6 0 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table Caption P statement))
(spec-statement(statement "Register Name")(location-id 0 11 3 4 2 6 1 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TH statement))
(spec-statement(statement "Bit Number")(location-id 0 11 3 4 2 6 1 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TH statement))
(spec-statement(statement "Access")(location-id 0 11 3 4 2 6 1 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TH statement))
(spec-statement(statement "Description")(location-id 0 11 3 4 2 6 1 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TH statement))
(spec-statement(statement "Value Register")(location-id 0 11 3 4 2 6 2 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "23 0")(location-id 0 11 3 4 2 6 2 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "r w")(location-id 0 11 3 4 2 6 2 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Represents the current timer count value")(location-id 0 11 3 4 2 6 2 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "When the load register")(location-id 0 11 3 4 2 6 2 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "is rst written the initial count value is right padded with eight")(location-id 0 11 3 4 2 6 3 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "zeros to form a 24 bit value and is stored in the value register")(location-id 0 11 3 4 2 6 4 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 6 4 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "When timer operates in periodic mode bit 6 of control register")(location-id 0 11 3 4 2 6 5 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "is set the value register reloads this initial count value every time")(location-id 0 11 3 4 2 6 6 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "the count reaches zero")(location-id 0 11 3 4 2 6 7 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "When these bits are read the return value")(location-id 0 11 3 4 2 6 7 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "is right shifted and padded with eight zeros on the most signicant")(location-id 0 11 3 4 2 6 8 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "bits")(location-id 0 11 3 4 2 6 9 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "When this value reaches zero the timer interrupt ag is set")(location-id 0 11 3 4 2 6 9 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "to one")(location-id 0 11 3 4 2 6 10 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 6 10 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Control Register")(location-id 0 11 3 4 2 6 11 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "31 8")(location-id 0 11 3 4 2 6 11 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 4 2 6 11 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "These bits are unused and return zero when read")(location-id 0 11 3 4 2 6 11 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 6 11 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Control Register")(location-id 0 11 3 4 2 6 12 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "7")(location-id 0 11 3 4 2 6 12 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "r w")(location-id 0 11 3 4 2 6 12 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Timer enable disable")(location-id 0 11 3 4 2 6 12 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "1 = enable timer 0 = disable timer")(location-id 0 11 3 4 2 6 12 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 6 12 3 2)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Control Register")(location-id 0 11 3 4 2 6 13 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "6")(location-id 0 11 3 4 2 6 13 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "r w")(location-id 0 11 3 4 2 6 13 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Timer operation mode")(location-id 0 11 3 4 2 6 13 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "1 = periodic mode 0 = one shot mode")(location-id 0 11 3 4 2 6 13 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 6 13 3 2)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Control Register")(location-id 0 11 3 4 2 6 14 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "5 4")(location-id 0 11 3 4 2 6 14 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "r w")(location-id 0 11 3 4 2 6 14 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "This eld is a dont care when data is written and returns zero")(location-id 0 11 3 4 2 6 14 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "when read")(location-id 0 11 3 4 2 6 15 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 6 15 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Control Register")(location-id 0 11 3 4 2 6 16 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "3 2")(location-id 0 11 3 4 2 6 16 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "r w")(location-id 0 11 3 4 2 6 16 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Sets the value by which the timer is decremented each clock cy")(location-id 0 11 3 4 2 6 16 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "cle")(location-id 0 11 3 4 2 6 17 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "0b00 = decrement by 256 0b01 = decrement by 16 0b10 =")(location-id 0 11 3 4 2 6 17 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "decrement by 1 0b11 = decrement by 0")(location-id 0 11 3 4 2 6 18 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 6 18 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Control Register")(location-id 0 11 3 4 2 6 19 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "1 0")(location-id 0 11 3 4 2 6 19 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "r w")(location-id 0 11 3 4 2 6 19 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "These bits are unused and return zero when read")(location-id 0 11 3 4 2 6 19 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 6 19 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Clear")(location-id 0 11 3 4 2 6 20 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "31 0")(location-id 0 11 3 4 2 6 20 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "w")(location-id 0 11 3 4 2 6 20 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Any value written to this register clears the interrupt ag")(location-id 0 11 3 4 2 6 20 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 6 20 3 1)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "4 5 3 3 Example Code")(location-id 0 11 3 4 2 7 0 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TH statement))
(spec-statement(statement "Turn off Timer mov r5 0x00 ldr r6 AdrTimerControl str r5 r6")(location-id 0 11 3 4 2 7 1 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Set initial count value to Timer0 ldr r4 TIMER_RELOAD ldr r6 AdrTimerLoad str r4 r6")(location-id 0 11 3 4 2 7 2 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Turn on Timer operates in Periodic Mode ldr r4 TIMER_CTRL orr r4 r4 0x000040 ldr r6 AdrTimerControl str r4 r6")(location-id 0 11 3 4 2 7 3 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Address definition AdrTimerLoad word 0x20000000 AdrTimerValue word 0x20000004 AdrTimerControl word 0x20000008")(location-id 0 11 3 4 2 7 4 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Enable timer and select 16 as decrementing interval TIMER_CTRL word 0x84")(location-id 0 11 3 4 2 7 5 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Period of timer generated interrupt = TIMER_RELOAD TIMER_RELOAD word 1200")(location-id 0 11 3 4 2 7 6 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "256")(location-id 0 11 3 4 2 7 6 1 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 7 6 2 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "clock")(location-id 0 11 3 4 2 7 6 3 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "period")(location-id 0 11 3 4 2 7 6 4 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 4 2 7 6 5 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "16")(location-id 0 11 3 4 2 7 6 6 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "Information Sciences Institute")(location-id 0 11 3 4 2 7 7 0 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "18")(location-id 0 11 3 4 2 7 7 6 0)(signature TaggedPDF-doc Part Sect Sect Sect Table TR TD statement))
(spec-statement(statement "4 5 4 Interrupt Controller Core")(location-id 0 11 3 5 0 0)(signature TaggedPDF-doc Part Sect Sect H5 statement))
(spec-statement(statement "The Interrupt Controller core accepts soft interrupts and Timer core interrupts")(location-id 0 11 3 5 1 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The Timer cores interrupt output is connected to this interrupt cores timer interrupt input")(location-id 0 11 3 5 1 1)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "The control registers for the interrupt controllers are described in the following table")(location-id 0 11 3 5 1 2)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "")(location-id 0 11 3 5 1 3)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Table 4 6 Interrupt Controller Register Address Mapping")(location-id 0 11 3 5 2 0 0 0)(signature TaggedPDF-doc Part Sect Sect Table Caption P statement))
(spec-statement(statement "Address")(location-id 0 11 3 5 2 1 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Register Name")(location-id 0 11 3 5 2 1 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Description")(location-id 0 11 3 5 2 1 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "0x21000000")(location-id 0 11 3 5 2 2 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Status Register")(location-id 0 11 3 5 2 2 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 status")(location-id 0 11 3 5 2 2 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000004")(location-id 0 11 3 5 2 3 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Raw Status Register")(location-id 0 11 3 5 2 3 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Raw status of interrupt request lines")(location-id 0 11 3 5 2 3 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000008")(location-id 0 11 3 5 2 4 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Enable Set")(location-id 0 11 3 5 2 4 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Set IRQ0 enable")(location-id 0 11 3 5 2 4 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x2100000c")(location-id 0 11 3 5 2 5 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Enable Clear")(location-id 0 11 3 5 2 5 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Clear IRQ0 enable")(location-id 0 11 3 5 2 5 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000010")(location-id 0 11 3 5 2 6 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Soft Interrupt 0 Set")(location-id 0 11 3 5 2 6 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Set Soft Interrupt 0")(location-id 0 11 3 5 2 6 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000014")(location-id 0 11 3 5 2 7 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Soft Interrupt 0 Clear")(location-id 0 11 3 5 2 7 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Clear Soft Interrupt 0")(location-id 0 11 3 5 2 7 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000020")(location-id 0 11 3 5 2 8 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ0 Status Register")(location-id 0 11 3 5 2 8 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ0 status")(location-id 0 11 3 5 2 8 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000024")(location-id 0 11 3 5 2 9 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ0 Raw Status Register")(location-id 0 11 3 5 2 9 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Raw status of interrupt request lines")(location-id 0 11 3 5 2 9 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000028")(location-id 0 11 3 5 2 10 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ0 Enable Set")(location-id 0 11 3 5 2 10 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Set FIRQ0 enable")(location-id 0 11 3 5 2 10 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x2100002c")(location-id 0 11 3 5 2 11 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ0 Enable Clear")(location-id 0 11 3 5 2 11 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Clear FIRQ0 enable")(location-id 0 11 3 5 2 11 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000040")(location-id 0 11 3 5 2 12 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ1 Status Register")(location-id 0 11 3 5 2 12 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ1 status")(location-id 0 11 3 5 2 12 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000044")(location-id 0 11 3 5 2 13 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ1 Raw Status Register")(location-id 0 11 3 5 2 13 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Raw status of interrupt request lines")(location-id 0 11 3 5 2 13 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000048")(location-id 0 11 3 5 2 14 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ1 Enable Set")(location-id 0 11 3 5 2 14 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Set IRQ1 enable")(location-id 0 11 3 5 2 14 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x2100004c")(location-id 0 11 3 5 2 15 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ1 Enable Clear")(location-id 0 11 3 5 2 15 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Clear IRQ1 enable")(location-id 0 11 3 5 2 15 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000050")(location-id 0 11 3 5 2 16 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Soft Interrupt 1 Set")(location-id 0 11 3 5 2 16 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Set Soft Interrupt 1")(location-id 0 11 3 5 2 16 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000054")(location-id 0 11 3 5 2 17 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Soft Interrupt 1 Clear")(location-id 0 11 3 5 2 17 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Clear Soft Interrupt 1")(location-id 0 11 3 5 2 17 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000060")(location-id 0 11 3 5 2 18 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ1 Status Register")(location-id 0 11 3 5 2 18 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ1 status")(location-id 0 11 3 5 2 18 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000064")(location-id 0 11 3 5 2 19 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ1 Raw Status Register")(location-id 0 11 3 5 2 19 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Raw status of interrupt request lines")(location-id 0 11 3 5 2 19 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000068")(location-id 0 11 3 5 2 20 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ1 Enable Set")(location-id 0 11 3 5 2 20 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Set FIRQ1 enable")(location-id 0 11 3 5 2 20 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x2100006c")(location-id 0 11 3 5 2 21 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ1 Enable Clear")(location-id 0 11 3 5 2 21 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Clear FIRQ1 enable")(location-id 0 11 3 5 2 21 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000090")(location-id 0 11 3 5 2 22 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Soft Interrupt 2 Set")(location-id 0 11 3 5 2 22 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Set Soft Interrupt 2")(location-id 0 11 3 5 2 22 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x21000094")(location-id 0 11 3 5 2 23 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Soft Interrupt 2 Clear")(location-id 0 11 3 5 2 23 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Clear Soft Interrupt 2")(location-id 0 11 3 5 2 23 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x210000d0")(location-id 0 11 3 5 2 24 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Soft Interrupt 3 Set")(location-id 0 11 3 5 2 24 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Set Soft Interrupt 3")(location-id 0 11 3 5 2 24 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0x210000d4")(location-id 0 11 3 5 2 25 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Soft Interrupt 3 Clear")(location-id 0 11 3 5 2 25 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Clear Soft Interrupt 3")(location-id 0 11 3 5 2 25 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Table 4 7 Interrupt Controller Register Description")(location-id 0 11 3 5 3 0)(signature TaggedPDF-doc Part Sect Sect P statement))
(spec-statement(statement "Register Name")(location-id 0 11 3 5 4 0 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Bit Number")(location-id 0 11 3 5 4 0 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Access")(location-id 0 11 3 5 4 0 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Description")(location-id 0 11 3 5 4 0 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "IRQ0 Status Register")(location-id 0 11 3 5 4 1 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "31 1")(location-id 0 11 3 5 4 1 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 4 1 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Masked IRQ0 status")(location-id 0 11 3 5 4 1 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 1 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Status Register")(location-id 0 11 3 5 4 2 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "0")(location-id 0 11 3 5 4 2 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 4 2 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Masked Soft Interrupt 0 status")(location-id 0 11 3 5 4 2 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 2 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Raw Status Register")(location-id 0 11 3 5 4 3 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "31 8")(location-id 0 11 3 5 4 3 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 4 3 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Unused interrupt request lines")(location-id 0 11 3 5 4 3 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "These bits return zero")(location-id 0 11 3 5 4 3 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "when read")(location-id 0 11 3 5 4 4 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 4 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Raw Status Register")(location-id 0 11 3 5 4 5 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "7")(location-id 0 11 3 5 4 5 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 4 5 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Raw timer2 interrupt status")(location-id 0 11 3 5 4 5 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 5 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "1 = timer2 interrupt is")(location-id 0 11 3 5 4 5 4 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "raised 0 = no timer2 interrupt")(location-id 0 11 3 5 4 6 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 6 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Raw Status Register")(location-id 0 11 3 5 4 7 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "6")(location-id 0 11 3 5 4 7 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 4 7 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Raw timer1 interrupt status")(location-id 0 11 3 5 4 7 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 7 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "1 = timer1 interrupt is")(location-id 0 11 3 5 4 7 4 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "raised 0 = no timer1 interrupt")(location-id 0 11 3 5 4 8 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 8 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Raw Status Register")(location-id 0 11 3 5 4 9 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "5")(location-id 0 11 3 5 4 9 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 4 9 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Raw timer0 interrupt status")(location-id 0 11 3 5 4 9 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 9 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "1 = timer0 interrupt is")(location-id 0 11 3 5 4 9 4 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "raised 0 = no timer0 interrupt")(location-id 0 11 3 5 4 10 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 10 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "IRQ0 Raw Status Register")(location-id 0 11 3 5 4 11 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "4 0")(location-id 0 11 3 5 4 11 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 4 11 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Unused interrupt request lines")(location-id 0 11 3 5 4 11 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "These bits return zero")(location-id 0 11 3 5 4 11 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "when read")(location-id 0 11 3 5 4 12 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 4 12 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Table 4 7 Interrupt Controller Register Description")(location-id 0 11 3 5 5 0 0 0)(signature TaggedPDF-doc Part Sect Sect Table Caption P statement))
(spec-statement(statement "Register Name IRQ0 Enable Set IRQ0 Enable Clear Soft Interrupt 0 Set Soft Interrupt 0 Set Soft Interrupt 0 Clear Soft Interrupt 0 Clear FIRQ0 Status Register FIRQ0 Raw Status Register FIRQ0 Raw Status Register FIRQ0 Raw Status Register FIRQ0 Raw Status Register FIRQ0 Raw Status Register FIRQ0 Enable Set FIRQ0 Enable Clear IRQ1 Status Register IRQ1 Status Register IRQ1 Raw Status Register IRQ1 Raw Status Register IRQ1 Raw Status Register IRQ1 Raw Status Register IRQ1 Raw Status Register IRQ1 Enable Set IRQ1 Enable Clear Soft Interrupt 1 Set Soft Interrupt 1 Set Soft Interrupt 1 Clear Soft Interrupt 1 Clear FIRQ1 Status Register FIRQ1 Raw Status Register FIRQ1 Raw Status Register")(location-id 0 11 3 5 5 1 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Bit Number 31 0 31 0 31 1 0 31 1 0 31 0 31 8 7 6 5 4 0 31 0 31 0 31 1 0 31 8 7 6 5 4 0 31 0 31 0 31 1 0 31 1 0 31 0 31 8 7")(location-id 0 11 3 5 5 1 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Access r w r w n a w n a w r r r r r r r w r w r r r r r r r r w r w n a w n a w r r r")(location-id 0 11 3 5 5 1 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Description Enable corresponding IRQ0 requests")(location-id 0 11 3 5 5 1 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = enable 0 = no action")(location-id 0 11 3 5 5 1 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "i e")(location-id 0 11 3 5 5 1 3 2)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "writing 1 to bit 5 enables timer0")(location-id 0 11 3 5 5 1 3 3)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Disable corresponding IRQ0 requests")(location-id 0 11 3 5 5 1 3 4)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = disable 0 = no action")(location-id 0 11 3 5 5 1 3 5)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "i e")(location-id 0 11 3 5 5 1 3 6)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "writing 1 to bit 5 disables timer0")(location-id 0 11 3 5 5 1 3 7)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Reserved")(location-id 0 11 3 5 5 1 3 8)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Set to 0")(location-id 0 11 3 5 5 1 3 9)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Enable Soft Interrupt 0")(location-id 0 11 3 5 5 1 3 10)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = enable 0 = no action")(location-id 0 11 3 5 5 1 3 11)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Reserved")(location-id 0 11 3 5 5 1 3 12)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Set to 0")(location-id 0 11 3 5 5 1 3 13)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Disable Soft Interrupt 0")(location-id 0 11 3 5 5 1 3 14)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = disable 0 = no action")(location-id 0 11 3 5 5 1 3 15)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Masked FIRQ0 status")(location-id 0 11 3 5 5 1 3 16)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Unused interrupt request lines")(location-id 0 11 3 5 5 1 3 17)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "These bits return zero when read")(location-id 0 11 3 5 5 1 3 18)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Raw timer2 interrupt status")(location-id 0 11 3 5 5 1 3 19)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = timer2 interrupt is raised 0 = no timer2 interrupt")(location-id 0 11 3 5 5 1 3 20)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Raw timer1 interrupt status")(location-id 0 11 3 5 5 1 3 21)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = timer1 interrupt is raised 0 = no timer1 interrupt")(location-id 0 11 3 5 5 1 3 22)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Raw timer0 interrupt status")(location-id 0 11 3 5 5 1 3 23)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = timer0 interrupt is raised 0 = no timer0 interrupt")(location-id 0 11 3 5 5 1 3 24)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Unused interrupt request lines")(location-id 0 11 3 5 5 1 3 25)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "These bits return zero when read")(location-id 0 11 3 5 5 1 3 26)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Enable corresponding FIRQ0 requests")(location-id 0 11 3 5 5 1 3 27)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = enable 0 = no action")(location-id 0 11 3 5 5 1 3 28)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "i e")(location-id 0 11 3 5 5 1 3 29)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "writing 1 to bit 5 enables timer0")(location-id 0 11 3 5 5 1 3 30)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Disable corresponding FIRQ0 requests")(location-id 0 11 3 5 5 1 3 31)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = disable 0 = no action")(location-id 0 11 3 5 5 1 3 32)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "i e")(location-id 0 11 3 5 5 1 3 33)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "writing 1 to bit 5 disables timer0")(location-id 0 11 3 5 5 1 3 34)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Masked IRQ1 status")(location-id 0 11 3 5 5 1 3 35)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Masked Soft Interrupt 0 status")(location-id 0 11 3 5 5 1 3 36)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Unused interrupt request lines")(location-id 0 11 3 5 5 1 3 37)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "These bits return zero when read")(location-id 0 11 3 5 5 1 3 38)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Raw timer2 interrupt status")(location-id 0 11 3 5 5 1 3 39)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = timer2 interrupt is raised 0 = no timer2 interrupt")(location-id 0 11 3 5 5 1 3 40)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Raw timer1 interrupt status")(location-id 0 11 3 5 5 1 3 41)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = timer1 interrupt is raised 0 = no timer1 interrupt")(location-id 0 11 3 5 5 1 3 42)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Raw timer0 interrupt status")(location-id 0 11 3 5 5 1 3 43)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = timer0 interrupt is raised 0 = no timer0 interrupt")(location-id 0 11 3 5 5 1 3 44)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Unused interrupt request lines")(location-id 0 11 3 5 5 1 3 45)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "These bits return zero when read")(location-id 0 11 3 5 5 1 3 46)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Enable corresponding IRQ1 requests")(location-id 0 11 3 5 5 1 3 47)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = enable 0 = no action")(location-id 0 11 3 5 5 1 3 48)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "i e")(location-id 0 11 3 5 5 1 3 49)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "writing 1 to bit 5 enables timer0")(location-id 0 11 3 5 5 1 3 50)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Disable corresponding IRQ1 requests")(location-id 0 11 3 5 5 1 3 51)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = disable 0 = no action")(location-id 0 11 3 5 5 1 3 52)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "i e")(location-id 0 11 3 5 5 1 3 53)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "writing 1 to bit 5 disables timer0")(location-id 0 11 3 5 5 1 3 54)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Reserved")(location-id 0 11 3 5 5 1 3 55)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Set to 0")(location-id 0 11 3 5 5 1 3 56)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Enable Soft Interrupt 1")(location-id 0 11 3 5 5 1 3 57)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = enable 0 = no action")(location-id 0 11 3 5 5 1 3 58)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Reserved")(location-id 0 11 3 5 5 1 3 59)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Set to 0")(location-id 0 11 3 5 5 1 3 60)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Disable Soft Interrupt 1")(location-id 0 11 3 5 5 1 3 61)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = disable 0 = no action")(location-id 0 11 3 5 5 1 3 62)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Masked FIRQ1 status")(location-id 0 11 3 5 5 1 3 63)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Unused interrupt request lines")(location-id 0 11 3 5 5 1 3 64)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "These bits return zero when read")(location-id 0 11 3 5 5 1 3 65)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Raw timer2 interrupt status")(location-id 0 11 3 5 5 1 3 66)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "1 = timer2 interrupt is raised 0 = no timer2 interrupt")(location-id 0 11 3 5 5 1 3 67)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "")(location-id 0 11 3 5 5 1 3 68)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Information Sciences Institute")(location-id 0 11 3 5 5 2 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "20")(location-id 0 11 3 5 5 2 4 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Table 4 7 Interrupt Controller Register Description")(location-id 0 11 3 5 6 0 0 0)(signature TaggedPDF-doc Part Sect Sect Table Caption P statement))
(spec-statement(statement "Register Name")(location-id 0 11 3 5 6 1 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Bit Number")(location-id 0 11 3 5 6 1 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Access")(location-id 0 11 3 5 6 1 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "Description")(location-id 0 11 3 5 6 1 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TH statement))
(spec-statement(statement "FIRQ1 Raw Status Register")(location-id 0 11 3 5 6 2 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "6")(location-id 0 11 3 5 6 2 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 6 2 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Raw timer1 interrupt status")(location-id 0 11 3 5 6 2 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 6 2 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "1 = timer1 interrupt is")(location-id 0 11 3 5 6 2 4 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "raised 0 = no timer1 interrupt")(location-id 0 11 3 5 6 3 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 6 3 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ Raw Status Register")(location-id 0 11 3 5 6 4 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "5")(location-id 0 11 3 5 6 4 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 6 4 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Raw timer0 interrupt status")(location-id 0 11 3 5 6 4 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 6 4 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "1 = timer0 interrupt is")(location-id 0 11 3 5 6 4 4 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "raised 0 = no timer0 interrupt")(location-id 0 11 3 5 6 5 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 6 5 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ1 Raw Status Register")(location-id 0 11 3 5 6 6 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "4 0")(location-id 0 11 3 5 6 6 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r")(location-id 0 11 3 5 6 6 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Unused interrupt request lines")(location-id 0 11 3 5 6 6 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "These bits return zero")(location-id 0 11 3 5 6 6 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "when read")(location-id 0 11 3 5 6 7 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 6 7 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ1 Enable Set")(location-id 0 11 3 5 6 8 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "31 0")(location-id 0 11 3 5 6 8 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r w")(location-id 0 11 3 5 6 8 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Enable corresponding FIRQ1 requests")(location-id 0 11 3 5 6 8 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "1 = enable 0")(location-id 0 11 3 5 6 8 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "= no action")(location-id 0 11 3 5 6 9 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "i e")(location-id 0 11 3 5 6 9 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "writing 1 to bit 5 enables timer0")(location-id 0 11 3 5 6 9 3 2)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "")(location-id 0 11 3 5 6 9 3 3)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "FIRQ1 Enable Clear")(location-id 0 11 3 5 6 10 0 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "31 0")(location-id 0 11 3 5 6 10 1 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "r w")(location-id 0 11 3 5 6 10 2 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "Disable corresponding FIRQ1 requests")(location-id 0 11 3 5 6 10 3 0)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))
(spec-statement(statement "1 = disable")(location-id 0 11 3 5 6 10 3 1)(signature TaggedPDF-doc Part Sect Sect Table TR TD statement))