-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhw_smph.h
1455 lines (1324 loc) · 54.2 KB
/
hw_smph.h
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
/******************************************************************************
* Filename: hw_smph_h
* Revised: 2017-01-31 09:37:48 +0100 (Tue, 31 Jan 2017)
* Revision: 48345
*
* Copyright (c) 2015 - 2017, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1) Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2) Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3) Neither the name of the ORGANIZATION nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
******************************************************************************/
#ifndef __HW_SMPH_H__
#define __HW_SMPH_H__
//*****************************************************************************
//
// This section defines the register offsets of
// SMPH component
//
//*****************************************************************************
// MCU SEMAPHORE 0
#define SMPH_O_SMPH0 0x00000000
// MCU SEMAPHORE 1
#define SMPH_O_SMPH1 0x00000004
// MCU SEMAPHORE 2
#define SMPH_O_SMPH2 0x00000008
// MCU SEMAPHORE 3
#define SMPH_O_SMPH3 0x0000000C
// MCU SEMAPHORE 4
#define SMPH_O_SMPH4 0x00000010
// MCU SEMAPHORE 5
#define SMPH_O_SMPH5 0x00000014
// MCU SEMAPHORE 6
#define SMPH_O_SMPH6 0x00000018
// MCU SEMAPHORE 7
#define SMPH_O_SMPH7 0x0000001C
// MCU SEMAPHORE 8
#define SMPH_O_SMPH8 0x00000020
// MCU SEMAPHORE 9
#define SMPH_O_SMPH9 0x00000024
// MCU SEMAPHORE 10
#define SMPH_O_SMPH10 0x00000028
// MCU SEMAPHORE 11
#define SMPH_O_SMPH11 0x0000002C
// MCU SEMAPHORE 12
#define SMPH_O_SMPH12 0x00000030
// MCU SEMAPHORE 13
#define SMPH_O_SMPH13 0x00000034
// MCU SEMAPHORE 14
#define SMPH_O_SMPH14 0x00000038
// MCU SEMAPHORE 15
#define SMPH_O_SMPH15 0x0000003C
// MCU SEMAPHORE 16
#define SMPH_O_SMPH16 0x00000040
// MCU SEMAPHORE 17
#define SMPH_O_SMPH17 0x00000044
// MCU SEMAPHORE 18
#define SMPH_O_SMPH18 0x00000048
// MCU SEMAPHORE 19
#define SMPH_O_SMPH19 0x0000004C
// MCU SEMAPHORE 20
#define SMPH_O_SMPH20 0x00000050
// MCU SEMAPHORE 21
#define SMPH_O_SMPH21 0x00000054
// MCU SEMAPHORE 22
#define SMPH_O_SMPH22 0x00000058
// MCU SEMAPHORE 23
#define SMPH_O_SMPH23 0x0000005C
// MCU SEMAPHORE 24
#define SMPH_O_SMPH24 0x00000060
// MCU SEMAPHORE 25
#define SMPH_O_SMPH25 0x00000064
// MCU SEMAPHORE 26
#define SMPH_O_SMPH26 0x00000068
// MCU SEMAPHORE 27
#define SMPH_O_SMPH27 0x0000006C
// MCU SEMAPHORE 28
#define SMPH_O_SMPH28 0x00000070
// MCU SEMAPHORE 29
#define SMPH_O_SMPH29 0x00000074
// MCU SEMAPHORE 30
#define SMPH_O_SMPH30 0x00000078
// MCU SEMAPHORE 31
#define SMPH_O_SMPH31 0x0000007C
// MCU SEMAPHORE 0 ALIAS
#define SMPH_O_PEEK0 0x00000800
// MCU SEMAPHORE 1 ALIAS
#define SMPH_O_PEEK1 0x00000804
// MCU SEMAPHORE 2 ALIAS
#define SMPH_O_PEEK2 0x00000808
// MCU SEMAPHORE 3 ALIAS
#define SMPH_O_PEEK3 0x0000080C
// MCU SEMAPHORE 4 ALIAS
#define SMPH_O_PEEK4 0x00000810
// MCU SEMAPHORE 5 ALIAS
#define SMPH_O_PEEK5 0x00000814
// MCU SEMAPHORE 6 ALIAS
#define SMPH_O_PEEK6 0x00000818
// MCU SEMAPHORE 7 ALIAS
#define SMPH_O_PEEK7 0x0000081C
// MCU SEMAPHORE 8 ALIAS
#define SMPH_O_PEEK8 0x00000820
// MCU SEMAPHORE 9 ALIAS
#define SMPH_O_PEEK9 0x00000824
// MCU SEMAPHORE 10 ALIAS
#define SMPH_O_PEEK10 0x00000828
// MCU SEMAPHORE 11 ALIAS
#define SMPH_O_PEEK11 0x0000082C
// MCU SEMAPHORE 12 ALIAS
#define SMPH_O_PEEK12 0x00000830
// MCU SEMAPHORE 13 ALIAS
#define SMPH_O_PEEK13 0x00000834
// MCU SEMAPHORE 14 ALIAS
#define SMPH_O_PEEK14 0x00000838
// MCU SEMAPHORE 15 ALIAS
#define SMPH_O_PEEK15 0x0000083C
// MCU SEMAPHORE 16 ALIAS
#define SMPH_O_PEEK16 0x00000840
// MCU SEMAPHORE 17 ALIAS
#define SMPH_O_PEEK17 0x00000844
// MCU SEMAPHORE 18 ALIAS
#define SMPH_O_PEEK18 0x00000848
// MCU SEMAPHORE 19 ALIAS
#define SMPH_O_PEEK19 0x0000084C
// MCU SEMAPHORE 20 ALIAS
#define SMPH_O_PEEK20 0x00000850
// MCU SEMAPHORE 21 ALIAS
#define SMPH_O_PEEK21 0x00000854
// MCU SEMAPHORE 22 ALIAS
#define SMPH_O_PEEK22 0x00000858
// MCU SEMAPHORE 23 ALIAS
#define SMPH_O_PEEK23 0x0000085C
// MCU SEMAPHORE 24 ALIAS
#define SMPH_O_PEEK24 0x00000860
// MCU SEMAPHORE 25 ALIAS
#define SMPH_O_PEEK25 0x00000864
// MCU SEMAPHORE 26 ALIAS
#define SMPH_O_PEEK26 0x00000868
// MCU SEMAPHORE 27 ALIAS
#define SMPH_O_PEEK27 0x0000086C
// MCU SEMAPHORE 28 ALIAS
#define SMPH_O_PEEK28 0x00000870
// MCU SEMAPHORE 29 ALIAS
#define SMPH_O_PEEK29 0x00000874
// MCU SEMAPHORE 30 ALIAS
#define SMPH_O_PEEK30 0x00000878
// MCU SEMAPHORE 31 ALIAS
#define SMPH_O_PEEK31 0x0000087C
//*****************************************************************************
//
// Register: SMPH_O_SMPH0
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH0_STAT 0x00000001
#define SMPH_SMPH0_STAT_BITN 0
#define SMPH_SMPH0_STAT_M 0x00000001
#define SMPH_SMPH0_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH1
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH1_STAT 0x00000001
#define SMPH_SMPH1_STAT_BITN 0
#define SMPH_SMPH1_STAT_M 0x00000001
#define SMPH_SMPH1_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH2
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH2_STAT 0x00000001
#define SMPH_SMPH2_STAT_BITN 0
#define SMPH_SMPH2_STAT_M 0x00000001
#define SMPH_SMPH2_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH3
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH3_STAT 0x00000001
#define SMPH_SMPH3_STAT_BITN 0
#define SMPH_SMPH3_STAT_M 0x00000001
#define SMPH_SMPH3_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH4
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH4_STAT 0x00000001
#define SMPH_SMPH4_STAT_BITN 0
#define SMPH_SMPH4_STAT_M 0x00000001
#define SMPH_SMPH4_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH5
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH5_STAT 0x00000001
#define SMPH_SMPH5_STAT_BITN 0
#define SMPH_SMPH5_STAT_M 0x00000001
#define SMPH_SMPH5_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH6
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH6_STAT 0x00000001
#define SMPH_SMPH6_STAT_BITN 0
#define SMPH_SMPH6_STAT_M 0x00000001
#define SMPH_SMPH6_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH7
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH7_STAT 0x00000001
#define SMPH_SMPH7_STAT_BITN 0
#define SMPH_SMPH7_STAT_M 0x00000001
#define SMPH_SMPH7_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH8
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH8_STAT 0x00000001
#define SMPH_SMPH8_STAT_BITN 0
#define SMPH_SMPH8_STAT_M 0x00000001
#define SMPH_SMPH8_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH9
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH9_STAT 0x00000001
#define SMPH_SMPH9_STAT_BITN 0
#define SMPH_SMPH9_STAT_M 0x00000001
#define SMPH_SMPH9_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH10
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH10_STAT 0x00000001
#define SMPH_SMPH10_STAT_BITN 0
#define SMPH_SMPH10_STAT_M 0x00000001
#define SMPH_SMPH10_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH11
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH11_STAT 0x00000001
#define SMPH_SMPH11_STAT_BITN 0
#define SMPH_SMPH11_STAT_M 0x00000001
#define SMPH_SMPH11_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH12
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH12_STAT 0x00000001
#define SMPH_SMPH12_STAT_BITN 0
#define SMPH_SMPH12_STAT_M 0x00000001
#define SMPH_SMPH12_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH13
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH13_STAT 0x00000001
#define SMPH_SMPH13_STAT_BITN 0
#define SMPH_SMPH13_STAT_M 0x00000001
#define SMPH_SMPH13_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH14
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH14_STAT 0x00000001
#define SMPH_SMPH14_STAT_BITN 0
#define SMPH_SMPH14_STAT_M 0x00000001
#define SMPH_SMPH14_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH15
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH15_STAT 0x00000001
#define SMPH_SMPH15_STAT_BITN 0
#define SMPH_SMPH15_STAT_M 0x00000001
#define SMPH_SMPH15_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH16
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH16_STAT 0x00000001
#define SMPH_SMPH16_STAT_BITN 0
#define SMPH_SMPH16_STAT_M 0x00000001
#define SMPH_SMPH16_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH17
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH17_STAT 0x00000001
#define SMPH_SMPH17_STAT_BITN 0
#define SMPH_SMPH17_STAT_M 0x00000001
#define SMPH_SMPH17_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH18
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH18_STAT 0x00000001
#define SMPH_SMPH18_STAT_BITN 0
#define SMPH_SMPH18_STAT_M 0x00000001
#define SMPH_SMPH18_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH19
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH19_STAT 0x00000001
#define SMPH_SMPH19_STAT_BITN 0
#define SMPH_SMPH19_STAT_M 0x00000001
#define SMPH_SMPH19_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH20
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH20_STAT 0x00000001
#define SMPH_SMPH20_STAT_BITN 0
#define SMPH_SMPH20_STAT_M 0x00000001
#define SMPH_SMPH20_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH21
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH21_STAT 0x00000001
#define SMPH_SMPH21_STAT_BITN 0
#define SMPH_SMPH21_STAT_M 0x00000001
#define SMPH_SMPH21_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH22
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH22_STAT 0x00000001
#define SMPH_SMPH22_STAT_BITN 0
#define SMPH_SMPH22_STAT_M 0x00000001
#define SMPH_SMPH22_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH23
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH23_STAT 0x00000001
#define SMPH_SMPH23_STAT_BITN 0
#define SMPH_SMPH23_STAT_M 0x00000001
#define SMPH_SMPH23_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH24
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH24_STAT 0x00000001
#define SMPH_SMPH24_STAT_BITN 0
#define SMPH_SMPH24_STAT_M 0x00000001
#define SMPH_SMPH24_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH25
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH25_STAT 0x00000001
#define SMPH_SMPH25_STAT_BITN 0
#define SMPH_SMPH25_STAT_M 0x00000001
#define SMPH_SMPH25_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH26
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH26_STAT 0x00000001
#define SMPH_SMPH26_STAT_BITN 0
#define SMPH_SMPH26_STAT_M 0x00000001
#define SMPH_SMPH26_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH27
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH27_STAT 0x00000001
#define SMPH_SMPH27_STAT_BITN 0
#define SMPH_SMPH27_STAT_M 0x00000001
#define SMPH_SMPH27_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH28
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH28_STAT 0x00000001
#define SMPH_SMPH28_STAT_BITN 0
#define SMPH_SMPH28_STAT_M 0x00000001
#define SMPH_SMPH28_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH29
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH29_STAT 0x00000001
#define SMPH_SMPH29_STAT_BITN 0
#define SMPH_SMPH29_STAT_M 0x00000001
#define SMPH_SMPH29_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH30
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH30_STAT 0x00000001
#define SMPH_SMPH30_STAT_BITN 0
#define SMPH_SMPH30_STAT_M 0x00000001
#define SMPH_SMPH30_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_SMPH31
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Reading the register causes it to change value to 0. Releasing the semaphore
// is done by writing 1.
#define SMPH_SMPH31_STAT 0x00000001
#define SMPH_SMPH31_STAT_BITN 0
#define SMPH_SMPH31_STAT_M 0x00000001
#define SMPH_SMPH31_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_PEEK0
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Used for semaphore debugging. A read operation will not change register
// value. Register writing is not possible.
#define SMPH_PEEK0_STAT 0x00000001
#define SMPH_PEEK0_STAT_BITN 0
#define SMPH_PEEK0_STAT_M 0x00000001
#define SMPH_PEEK0_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_PEEK1
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Used for semaphore debugging. A read operation will not change register
// value. Register writing is not possible.
#define SMPH_PEEK1_STAT 0x00000001
#define SMPH_PEEK1_STAT_BITN 0
#define SMPH_PEEK1_STAT_M 0x00000001
#define SMPH_PEEK1_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_PEEK2
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Used for semaphore debugging. A read operation will not change register
// value. Register writing is not possible.
#define SMPH_PEEK2_STAT 0x00000001
#define SMPH_PEEK2_STAT_BITN 0
#define SMPH_PEEK2_STAT_M 0x00000001
#define SMPH_PEEK2_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_PEEK3
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Used for semaphore debugging. A read operation will not change register
// value. Register writing is not possible.
#define SMPH_PEEK3_STAT 0x00000001
#define SMPH_PEEK3_STAT_BITN 0
#define SMPH_PEEK3_STAT_M 0x00000001
#define SMPH_PEEK3_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_PEEK4
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Used for semaphore debugging. A read operation will not change register
// value. Register writing is not possible.
#define SMPH_PEEK4_STAT 0x00000001
#define SMPH_PEEK4_STAT_BITN 0
#define SMPH_PEEK4_STAT_M 0x00000001
#define SMPH_PEEK4_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_PEEK5
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Used for semaphore debugging. A read operation will not change register
// value. Register writing is not possible.
#define SMPH_PEEK5_STAT 0x00000001
#define SMPH_PEEK5_STAT_BITN 0
#define SMPH_PEEK5_STAT_M 0x00000001
#define SMPH_PEEK5_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_PEEK6
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Used for semaphore debugging. A read operation will not change register
// value. Register writing is not possible.
#define SMPH_PEEK6_STAT 0x00000001
#define SMPH_PEEK6_STAT_BITN 0
#define SMPH_PEEK6_STAT_M 0x00000001
#define SMPH_PEEK6_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_PEEK7
//
//*****************************************************************************
// Field: [0] STAT
//
// Status when reading:
//
// 0: Semaphore is taken
// 1: Semaphore is available
//
// Used for semaphore debugging. A read operation will not change register
// value. Register writing is not possible.
#define SMPH_PEEK7_STAT 0x00000001
#define SMPH_PEEK7_STAT_BITN 0
#define SMPH_PEEK7_STAT_M 0x00000001
#define SMPH_PEEK7_STAT_S 0
//*****************************************************************************
//
// Register: SMPH_O_PEEK8