forked from weston-embedded/uC-CPU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpu_core.c
2253 lines (2006 loc) · 110 KB
/
cpu_core.c
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
/*
*********************************************************************************************************
* uC/CPU
* CPU CONFIGURATION & PORT LAYER
*
* Copyright 2004-2021 Silicon Laboratories Inc. www.silabs.com
*
* SPDX-License-Identifier: APACHE-2.0
*
* This software is subject to an open source license and is distributed by
* Silicon Laboratories Inc. pursuant to the terms of the Apache License,
* Version 2.0 available at www.apache.org/licenses/LICENSE-2.0.
*
*********************************************************************************************************
*/
/*
*********************************************************************************************************
*
* CORE CPU MODULE
*
* Filename : cpu_core.c
* Version : V1.32.01
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* INCLUDE FILES
*********************************************************************************************************
*/
#define MICRIUM_SOURCE
#define CPU_CORE_MODULE
#include "cpu_core.h"
#if (CPU_CFG_CACHE_MGMT_EN == DEF_ENABLED)
#include "cpu_cache.h"
#endif
/*
*********************************************************************************************************
* LOCAL DEFINES
*********************************************************************************************************
*/
/* Pop cnt algorithm csts. */
#define CRC_UTIL_POPCNT_MASK01010101_32 0x55555555u
#define CRC_UTIL_POPCNT_MASK00110011_32 0x33333333u
#define CRC_UTIL_POPCNT_MASK00001111_32 0x0F0F0F0Fu
#define CRC_UTIL_POPCNT_POWERSOF256_32 0x01010101u
/*
*********************************************************************************************************
* LOCAL CONSTANTS
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* LOCAL DATA TYPES
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* LOCAL TABLES
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* CPU COUNT LEAD ZEROs LOOKUP TABLE
*
* Note(s) : (1) Index into bit pattern table determines the number of leading zeros in an 8-bit value :
*
* b07 b06 b05 b04 b03 b02 b01 b00 # Leading Zeros
* --- --- --- --- --- --- --- --- ---------------
* 1 x x x x x x x 0
* 0 1 x x x x x x 1
* 0 0 1 x x x x x 2
* 0 0 0 1 x x x x 3
* 0 0 0 0 1 x x x 4
* 0 0 0 0 0 1 x x 5
* 0 0 0 0 0 0 1 x 6
* 0 0 0 0 0 0 0 1 7
* 0 0 0 0 0 0 0 0 8
*********************************************************************************************************
*/
#if (!(defined(CPU_CFG_LEAD_ZEROS_ASM_PRESENT)) || \
(CPU_CFG_DATA_SIZE_MAX > CPU_CFG_DATA_SIZE))
static const CPU_INT08U CPU_CntLeadZerosTbl[256] = { /* Data vals : */
/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8u, 7u, 6u, 6u, 5u, 5u, 5u, 5u, 4u, 4u, 4u, 4u, 4u, 4u, 4u, 4u, /* 0x00 to 0x0F */
3u, 3u, 3u, 3u, 3u, 3u, 3u, 3u, 3u, 3u, 3u, 3u, 3u, 3u, 3u, 3u, /* 0x10 to 0x1F */
2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, /* 0x20 to 0x2F */
2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, 2u, /* 0x30 to 0x3F */
1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, /* 0x40 to 0x4F */
1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, /* 0x50 to 0x5F */
1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, /* 0x60 to 0x6F */
1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, 1u, /* 0x70 to 0x7F */
0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, /* 0x80 to 0x8F */
0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, /* 0x90 to 0x9F */
0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, /* 0xA0 to 0xAF */
0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, /* 0xB0 to 0xBF */
0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, /* 0xC0 to 0xCF */
0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, /* 0xD0 to 0xDF */
0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, /* 0xE0 to 0xEF */
0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u /* 0xF0 to 0xFF */
};
#endif
/*
*********************************************************************************************************
* LOCAL GLOBAL VARIABLES
*********************************************************************************************************
*/
CPU_INT32U const CPU_EndiannessTest = 0x12345678LU; /* Variable to test CPU endianness. */
/*
*********************************************************************************************************
* LOCAL FUNCTION PROTOTYPES
*********************************************************************************************************
*/
#if (CPU_CFG_NAME_EN == DEF_ENABLED) /* ---------------- CPU NAME FNCTS ---------------- */
static void CPU_NameInit (void);
#endif
/* ----------------- CPU TS FNCTS ----------------- */
#if ((CPU_CFG_TS_EN == DEF_ENABLED) || \
(CPU_CFG_TS_TMR_EN == DEF_ENABLED))
static void CPU_TS_Init (void);
#endif
#ifdef CPU_CFG_INT_DIS_MEAS_EN /* ---------- CPU INT DIS TIME MEAS FNCTS --------- */
static void CPU_IntDisMeasInit (void);
static CPU_TS_TMR CPU_IntDisMeasMaxCalc(CPU_TS_TMR time_tot_cnts);
#endif
/*
*********************************************************************************************************
* LOCAL CONFIGURATION ERRORS
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* CPU_Init()
*
* Description : (1) Initialize CPU module :
*
* (a) Initialize CPU timestamps
* (b) Initialize CPU interrupts disabled time measurements
* (c) Initialize CPU host name
*
*
* Argument(s) : none.
*
* Return(s) : none.
*
* Note(s) : (2) CPU_Init() MUST be called ... :
*
* (a) ONLY ONCE from a product's application; ...
* (b) BEFORE product's application calls any core CPU module function(s)
*
* (3) The following initialization functions MUST be sequenced as follows :
*
* (a) CPU_TS_Init() SHOULD precede ALL calls to other CPU timestamp functions
*
* (b) CPU_IntDisMeasInit() SHOULD precede ALL calls to CPU_CRITICAL_ENTER()/CPU_CRITICAL_EXIT()
* & other CPU interrupts disabled time measurement functions
*********************************************************************************************************
*/
void CPU_Init (void)
{
/* --------------------- INIT TS ---------------------- */
#if ((CPU_CFG_TS_EN == DEF_ENABLED) || \
(CPU_CFG_TS_TMR_EN == DEF_ENABLED))
CPU_TS_Init(); /* See Note #3a. */
#endif
/* -------------- INIT INT DIS TIME MEAS -------------- */
#ifdef CPU_CFG_INT_DIS_MEAS_EN
CPU_IntDisMeasInit(); /* See Note #3b. */
#endif
/* ------------------ INIT CPU NAME ------------------- */
#if (CPU_CFG_NAME_EN == DEF_ENABLED)
CPU_NameInit();
#endif
#if (CPU_CFG_CACHE_MGMT_EN == DEF_ENABLED)
CPU_Cache_Init();
#endif
}
/*
*********************************************************************************************************
* CPU_SW_Exception()
*
* Description : Trap unrecoverable software exception.
*
* Argument(s) : none.
*
* Return(s) : none.
*
* Note(s) : (1) CPU_SW_Exception() deadlocks the current code execution -- whether multi-tasked/
* -processed/-threaded or single-threaded -- when the current code execution cannot
* gracefully recover or report a fault or exception condition.
*
* See also 'cpu_core.h CPU_SW_EXCEPTION() Note #1'.
*********************************************************************************************************
*/
void CPU_SW_Exception (void)
{
for (;;) {
;
}
}
/*
*********************************************************************************************************
* CPU_NameClr()
*
* Description : Clear CPU Name.
*
* Argument(s) : none.
*
* Return(s) : none.
*
* Note(s) : none.
*********************************************************************************************************
*/
#if (CPU_CFG_NAME_EN == DEF_ENABLED)
void CPU_NameClr (void)
{
CPU_SR_ALLOC();
CPU_CRITICAL_ENTER();
Mem_Clr((void *)&CPU_Name[0],
(CPU_SIZE_T) CPU_CFG_NAME_SIZE);
CPU_CRITICAL_EXIT();
}
#endif
/*
*********************************************************************************************************
* CPU_NameGet()
*
* Description : Get CPU host name.
*
* Argument(s) : p_name Pointer to an ASCII character array that will receive the return CPU host
* name ASCII string from this function (see Note #1).
*
* p_err Pointer to variable that will receive the return error code from this function :
*
* CPU_ERR_NONE CPU host name successfully returned.
* CPU_ERR_NULL_PTR Argument 'p_name' passed a NULL pointer.
*
* Return(s) : none.
*
* Note(s) : (1) The size of the ASCII character array that will receive the return CPU host name
* ASCII string :
*
* (a) MUST be greater than or equal to the current CPU host name's ASCII string
* size including the terminating NULL character;
* (b) SHOULD be greater than or equal to CPU_CFG_NAME_SIZE
*********************************************************************************************************
*/
#if (CPU_CFG_NAME_EN == DEF_ENABLED)
void CPU_NameGet (CPU_CHAR *p_name,
CPU_ERR *p_err)
{
CPU_SR_ALLOC();
if (p_err == (CPU_ERR *)0) {
CPU_SW_EXCEPTION(;);
}
if (p_name == (CPU_CHAR *)0) {
*p_err = CPU_ERR_NULL_PTR;
return;
}
CPU_CRITICAL_ENTER();
(void)Str_Copy_N(p_name,
&CPU_Name[0],
CPU_CFG_NAME_SIZE);
CPU_CRITICAL_EXIT();
*p_err = CPU_ERR_NONE;
}
#endif
/*
*********************************************************************************************************
* CPU_NameSet()
*
* Description : Set CPU host name.
*
* Argument(s) : p_name Pointer to CPU host name to set.
*
* p_err Pointer to variable that will receive the return error code from this function :
*
* CPU_ERR_NONE CPU host name successfully set.
* CPU_ERR_NULL_PTR Argument 'p_name' passed a NULL pointer.
* CPU_ERR_NAME_SIZE Invalid CPU host name size (see Note #1).
*
* Return(s) : none.
*
* Note(s) : (1) 'p_name' ASCII string size, including the terminating NULL character, MUST be less
* than or equal to CPU_CFG_NAME_SIZE.
*********************************************************************************************************
*/
#if (CPU_CFG_NAME_EN == DEF_ENABLED)
void CPU_NameSet (const CPU_CHAR *p_name,
CPU_ERR *p_err)
{
CPU_SIZE_T len;
CPU_SR_ALLOC();
if (p_err == (CPU_ERR *)0) {
CPU_SW_EXCEPTION(;);
}
if (p_name == (const CPU_CHAR *)0) {
*p_err = CPU_ERR_NULL_PTR;
return;
}
len = Str_Len_N(p_name,
CPU_CFG_NAME_SIZE);
if (len < CPU_CFG_NAME_SIZE) { /* If cfg name len < max name size, ... */
CPU_CRITICAL_ENTER();
(void)Str_Copy_N(&CPU_Name[0], /* ... copy cfg name to CPU host name. */
p_name,
CPU_CFG_NAME_SIZE);
CPU_CRITICAL_EXIT();
*p_err = CPU_ERR_NONE;
} else {
*p_err = CPU_ERR_NAME_SIZE;
}
}
#endif
/*
*********************************************************************************************************
* CPU_TS_Get32()
*
* Description : Get current 32-bit CPU timestamp.
*
* Argument(s) : none.
*
* Return(s) : Current 32-bit CPU timestamp (in timestamp timer counts).
*
* Note(s) : (1) When applicable, the amount of time measured by CPU timestamps is calculated by
* either of the following equations :
*
* (a) Time measured = Number timer counts * Timer period
*
* where
*
* Number timer counts Number of timer counts measured
* Timer period Timer's period in some units of
* (fractional) seconds
* Time measured Amount of time measured, in same
* units of (fractional) seconds
* as the Timer period
*
* Number timer counts
* (b) Time measured = ---------------------
* Timer frequency
*
* where
*
* Number timer counts Number of timer counts measured
* Timer frequency Timer's frequency in some units
* of counts per second
* Time measured Amount of time measured, in seconds
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TS_TmrRd() Note #2c1'.
*
* (2) In case the CPU timestamp timer has lower precision than the 32-bit CPU timestamp;
* its precision is extended via periodic updates by accumulating the deltas of the
* timestamp timer count values into the higher-precision 32-bit CPU timestamp.
*
* (3) After initialization, 'CPU_TS_32_Accum' & 'CPU_TS_32_TmrPrev' MUST ALWAYS
* be accessed AND updated exclusively with interrupts disabled -- but NOT
* with critical sections.
*********************************************************************************************************
*/
#if (CPU_CFG_TS_32_EN == DEF_ENABLED)
CPU_TS32 CPU_TS_Get32 (void)
{
CPU_TS32 ts;
#if (CPU_CFG_TS_TMR_SIZE < CPU_WORD_SIZE_32)
CPU_TS_TMR tmr_cur;
CPU_TS_TMR tmr_delta;
CPU_SR_ALLOC();
#endif
#if (CPU_CFG_TS_TMR_SIZE >= CPU_WORD_SIZE_32)
ts = (CPU_TS32)CPU_TS_TmrRd(); /* Get cur ts tmr val (in 32-bit ts cnts). */
#else
CPU_INT_DIS();
tmr_cur = (CPU_TS_TMR) CPU_TS_TmrRd(); /* Get cur ts tmr val (in ts tmr cnts). */
tmr_delta = (CPU_TS_TMR)(tmr_cur - CPU_TS_32_TmrPrev); /* Calc delta ts tmr cnts. */
CPU_TS_32_Accum += (CPU_TS32 ) tmr_delta; /* Inc ts by delta ts tmr cnts (see Note #2). */
CPU_TS_32_TmrPrev = (CPU_TS_TMR) tmr_cur; /* Save cur ts tmr cnts for next update. */
ts = (CPU_TS32 ) CPU_TS_32_Accum;
CPU_INT_EN();
#endif
return (ts);
}
#endif
/*
*********************************************************************************************************
* CPU_TS_Get64()
*
* Description : Get current 64-bit CPU timestamp.
*
* Argument(s) : none.
*
* Return(s) : Current 64-bit CPU timestamp (in timestamp timer counts).
*
* Note(s) : (1) When applicable, the amount of time measured by CPU timestamps is calculated by
* either of the following equations :
*
* (a) Time measured = Number timer counts * Timer period
*
* where
*
* Number timer counts Number of timer counts measured
* Timer period Timer's period in some units of
* (fractional) seconds
* Time measured Amount of time measured, in same
* units of (fractional) seconds
* as the Timer period
*
* Number timer counts
* (b) Time measured = ---------------------
* Timer frequency
*
* where
*
* Number timer counts Number of timer counts measured
* Timer frequency Timer's frequency in some units
* of counts per second
* Time measured Amount of time measured, in seconds
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TS_TmrRd() Note #2c1'.
*
* (2) In case the CPU timestamp timer has lower precision than the 64-bit CPU timestamp;
* its precision is extended via periodic updates by accumulating the deltas of the
* timestamp timer count values into the higher-precision 64-bit CPU timestamp.
*
* (3) After initialization, 'CPU_TS_64_Accum' & 'CPU_TS_64_TmrPrev' MUST ALWAYS
* be accessed AND updated exclusively with interrupts disabled -- but NOT
* with critical sections.
*********************************************************************************************************
*/
#if (CPU_CFG_TS_64_EN == DEF_ENABLED)
CPU_TS64 CPU_TS_Get64 (void)
{
CPU_TS64 ts;
#if (CPU_CFG_TS_TMR_SIZE < CPU_WORD_SIZE_64)
CPU_TS_TMR tmr_cur;
CPU_TS_TMR tmr_delta;
CPU_SR_ALLOC();
#endif
#if (CPU_CFG_TS_TMR_SIZE >= CPU_WORD_SIZE_64)
ts = (CPU_TS64)CPU_TS_TmrRd(); /* Get cur ts tmr val (in 64-bit ts cnts). */
#else
CPU_INT_DIS();
tmr_cur = (CPU_TS_TMR) CPU_TS_TmrRd(); /* Get cur ts tmr val (in ts tmr cnts). */
tmr_delta = (CPU_TS_TMR)(tmr_cur - CPU_TS_64_TmrPrev); /* Calc delta ts tmr cnts. */
CPU_TS_64_Accum += (CPU_TS64 ) tmr_delta; /* Inc ts by delta ts tmr cnts (see Note #2). */
CPU_TS_64_TmrPrev = (CPU_TS_TMR) tmr_cur; /* Save cur ts tmr cnts for next update. */
ts = (CPU_TS64 ) CPU_TS_64_Accum;
CPU_INT_EN();
#endif
return (ts);
}
#endif
/*
*********************************************************************************************************
* CPU_TS_Update()
*
* Description : Update current CPU timestamp(s).
*
* Argument(s) : none.
*
* Return(s) : none.
*
* Note(s) : (1) (a) CPU timestamp(s) MUST be updated periodically by some application (or BSP) time
* handler in order to (adequately) maintain CPU timestamp(s)' time.
*
* (b) CPU timestamp(s) MUST be updated more frequently than the CPU timestamp timer
* overflows; otherwise, CPU timestamp(s) will lose time.
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TS_TmrRd() Note #2c2'.
*********************************************************************************************************
*/
#if (CPU_CFG_TS_EN == DEF_ENABLED)
void CPU_TS_Update (void)
{
#if ((CPU_CFG_TS_32_EN == DEF_ENABLED) && \
(CPU_CFG_TS_TMR_SIZE < CPU_WORD_SIZE_32))
(void)CPU_TS_Get32();
#endif
#if ((CPU_CFG_TS_64_EN == DEF_ENABLED) && \
(CPU_CFG_TS_TMR_SIZE < CPU_WORD_SIZE_64))
(void)CPU_TS_Get64();
#endif
}
#endif
/*
*********************************************************************************************************
* CPU_TS_TmrFreqGet()
*
* Description : Get CPU timestamp's timer frequency.
*
* Argument(s) : p_err Pointer to variable that will receive the return error code from this function :
*
* CPU_ERR_NONE CPU timestamp's timer frequency successfully
* returned.
* CPU_ERR_TS_FREQ_INVALID CPU timestamp's timer frequency invalid &/or
* NOT yet configured.
*
* Return(s) : CPU timestamp's timer frequency (in Hertz), if NO error(s).
*
* 0, otherwise.
*
* Note(s) : none.
*********************************************************************************************************
*/
#if (CPU_CFG_TS_TMR_EN == DEF_ENABLED)
CPU_TS_TMR_FREQ CPU_TS_TmrFreqGet (CPU_ERR *p_err)
{
CPU_TS_TMR_FREQ freq_hz;
if (p_err == (CPU_ERR *)0) {
CPU_SW_EXCEPTION(0);
}
freq_hz = CPU_TS_TmrFreq_Hz;
*p_err = (freq_hz != 0u) ? CPU_ERR_NONE : CPU_ERR_TS_FREQ_INVALID;
return (freq_hz);
}
#endif
/*
*********************************************************************************************************
* CPU_TS_TmrFreqSet()
*
* Description : Set CPU timestamp's timer frequency.
*
* Argument(s) : freq_hz Frequency (in Hertz) to set for CPU timestamp's timer.
*
* Return(s) : none.
*
* Note(s) : (1) (a) (1) CPU timestamp timer frequency is NOT required for internal CPU timestamp
* operations but may OPTIONALLY be configured by CPU_TS_TmrInit() or other
* application/BSP initialization functions.
*
* (2) CPU timestamp timer frequency MAY be used with optional CPU_TSxx_to_uSec()
* to convert CPU timestamps from timer counts into microseconds.
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TSxx_to_uSec() Note #2a'.
*
* (b) CPU timestamp timer period SHOULD be less than the typical measured time but MUST
* be less than the maximum measured time; otherwise, timer resolution inadequate to
* measure desired times.
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TSxx_to_uSec() Note #2b'.
*********************************************************************************************************
*/
#if (CPU_CFG_TS_TMR_EN == DEF_ENABLED)
void CPU_TS_TmrFreqSet (CPU_TS_TMR_FREQ freq_hz)
{
CPU_TS_TmrFreq_Hz = freq_hz;
}
#endif
/*
*********************************************************************************************************
* CPU_IntDisMeasMaxCurReset()
*
* Description : Reset current maximum interrupts disabled time.
*
* Argument(s) : none.
*
* Return(s) : Maximum interrupts disabled time (in CPU timestamp timer counts) before resetting.
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TS_TmrRd() Note #2c'
* & 'cpu_core.h FUNCTION PROTOTYPES CPU_TSxx_to_uSec() Note #2'.
*
* Note(s) : (1) After initialization, 'CPU_IntDisMeasMaxCur_cnts' MUST ALWAYS be accessed
* exclusively with interrupts disabled -- but NOT with critical sections.
*********************************************************************************************************
*/
#ifdef CPU_CFG_INT_DIS_MEAS_EN
CPU_TS_TMR CPU_IntDisMeasMaxCurReset (void)
{
CPU_TS_TMR time_max_cnts;
CPU_SR_ALLOC();
time_max_cnts = CPU_IntDisMeasMaxCurGet();
CPU_INT_DIS();
CPU_IntDisMeasMaxCur_cnts = 0u;
CPU_INT_EN();
return (time_max_cnts);
}
#endif
/*
*********************************************************************************************************
* CPU_IntDisMeasMaxCurGet()
*
* Description : Get current maximum interrupts disabled time.
*
* Argument(s) : none.
*
* Return(s) : Current maximum interrupts disabled time (in CPU timestamp timer counts).
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TS_TmrRd() Note #2c'
* & 'cpu_core.h FUNCTION PROTOTYPES CPU_TSxx_to_uSec() Note #2'.
*
* Note(s) : (1) After initialization, 'CPU_IntDisMeasMaxCur_cnts' MUST ALWAYS be accessed
* exclusively with interrupts disabled -- but NOT with critical sections.
*********************************************************************************************************
*/
#ifdef CPU_CFG_INT_DIS_MEAS_EN
CPU_TS_TMR CPU_IntDisMeasMaxCurGet (void)
{
CPU_TS_TMR time_tot_cnts;
CPU_TS_TMR time_max_cnts;
CPU_SR_ALLOC();
CPU_INT_DIS();
time_tot_cnts = CPU_IntDisMeasMaxCur_cnts;
CPU_INT_EN();
time_max_cnts = CPU_IntDisMeasMaxCalc(time_tot_cnts);
return (time_max_cnts);
}
#endif
/*
*********************************************************************************************************
* CPU_IntDisMeasMaxGet()
*
* Description : Get (non-resetable) maximum interrupts disabled time.
*
* Argument(s) : none.
*
* Return(s) : (Non-resetable) maximum interrupts disabled time (in CPU timestamp timer counts).
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TS_TmrRd() Note #2c'
* & 'cpu_core.h FUNCTION PROTOTYPES CPU_TSxx_to_uSec() Note #2'.
*
* Note(s) : (1) After initialization, 'CPU_IntDisMeasMax_cnts' MUST ALWAYS be accessed
* exclusively with interrupts disabled -- but NOT with critical sections.
*********************************************************************************************************
*/
#ifdef CPU_CFG_INT_DIS_MEAS_EN
CPU_TS_TMR CPU_IntDisMeasMaxGet (void)
{
CPU_TS_TMR time_tot_cnts;
CPU_TS_TMR time_max_cnts;
CPU_SR_ALLOC();
CPU_INT_DIS();
time_tot_cnts = CPU_IntDisMeasMax_cnts;
CPU_INT_EN();
time_max_cnts = CPU_IntDisMeasMaxCalc(time_tot_cnts);
return (time_max_cnts);
}
#endif
/*
*********************************************************************************************************
* CPU_IntDisMeasStart()
*
* Description : Start interrupts disabled time measurement.
*
* Argument(s) : none.
*
* Return(s) : none.
*
* Note(s) : none.
*********************************************************************************************************
*/
#ifdef CPU_CFG_INT_DIS_MEAS_EN
void CPU_IntDisMeasStart (void)
{
CPU_IntDisMeasCtr++;
if (CPU_IntDisNestCtr == 0u) { /* If ints NOT yet dis'd, ... */
CPU_IntDisMeasStart_cnts = CPU_TS_TmrRd(); /* ... get ints dis'd start time. */
}
CPU_IntDisNestCtr++;
}
#endif
/*
*********************************************************************************************************
* CPU_IntDisMeasStop()
*
* Description : Stop interrupts disabled time measurement.
*
* Argument(s) : none.
*
* Return(s) : none.
*
* Note(s) : (1) (a) The total amount of time interrupts are disabled by system &/or application code
* during critical sections is calculated by the following equations :
*
* (1) When interrupts disabled time measurements are disabled :
*
*
* | CRITICAL | | CRITICAL |
* |<- SECTION ->| |<- SECTION ->|
* | ENTER | | EXIT |
*
* Disable Enable
* Interrupts Interrupts
*
* || || || ||
* || || || ||
* || | ||<------------------------->|| | ||
* || |<->|| | ||<----->| ||
* || | | || | || | | ||
* | | | | |
* interrupts time interrupts
* disabled interrupts |enabled
* | disabled |
* | (via application) |
* time time
* interrupts interrupts
* disabled ovrhd enabled ovrhd
*
*
* (A) time = [ time - time ] - time
* interrupts [ interrupts interrupts ] total
* disabled [ enabled disabled ] ovrhd
* (via application)
*
*
* (B) time = time + time
* total interrupts interrupts
* ovrhd enabled ovrhd disabled ovrhd
*
*
* where
*
* time time interrupts are disabled between
* interrupts first critical section enter &
* disabled last critical section exit (i.e.
* (via application) minus total overhead time)
*
* time time when interrupts are disabled
* interrupts
* disabled
*
* time time when interrupts are enabled
* interrupts
* enabled
*
*
* time total overhead time to disable/enable
* total interrupts during critical section
* ovrhd enter & exit
*
* time total overhead time to disable interrupts
* interrupts during critical section enter
* disabled ovrhd
*
* time total overhead time to enable interrupts
* interrupts during critical section exit
* enabled ovrhd
*
*
* (2) When interrupts disabled time measurements are enabled :
*
*
* | | | |
* |<----- CRITICAL SECTION ENTER ----->| |<------- CRITICAL SECTION EXIT ------->|
* | | | |
*
* Time Time
* Disable Measurement Measurement Enable
* Interrupts Start Stop Interrupts
*
* || | || || | ||
* || | || || | ||
* || | | ||<------------------------->|| | | ||
* || | | |<----------->|| | ||<------------->| | | ||
* || | | | | || | || | | | | ||
* | | | | | | |
* interrupts get | time | get interrupts
* disabled start time | interrupts | stop time enabled
* meas | disabled | meas
* time (via application) time
* start meas stop meas
* ovrhd ovrhd
*
*
* (A) time = [ time - time ] - time
* interrupts [ stop start ] total meas
* disabled [ meas meas ] ovrhd
* (via application)
*
*
* (B) time = time + time
* total meas start meas stop meas
* ovrhd ovrhd ovrhd
*
*
* where
*
* time time interrupts are disabled between first
* interrupts critical section enter & last critical
* disabled section exit (i.e. minus measurement
* (via application) overhead time; however, this does NOT
* include any overhead time to disable
* or enable interrupts during critical
* section enter & exit)
*
* time time of disable interrupts start time
* start measurement (in timer counts)
* meas
*
* time time of disable interrupts stop time
* stop measurement (in timer counts)
* meas
*
*
* time total overhead time to start/stop disabled
* total meas interrupts time measurements (in timer
* ovrhd counts)
*
* time total overhead time after getting start
* start meas time until end of start measurement
* ovrhd function (in timer counts)
*
* time total overhead time from beginning of stop
* stop meas measurement function until after getting
* ovrhd stop time (in timer counts)
*
*
* (b) (1) (A) In order to correctly handle unsigned subtraction overflows of start times
* from stop times, CPU timestamp timer count values MUST be returned via
* word-size-configurable 'CPU_TS_TMR' data type.
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TS_TmrRd() Note #2a'.
*
* (B) Since unsigned subtraction of start times from stop times assumes increasing
* values, timestamp timer count values MUST increase with each time count.
*
* See also 'cpu_core.h FUNCTION PROTOTYPES CPU_TS_TmrRd() Note #2b'.
*
* (2) (A) To expedite & reduce interrupts disabled time measurement overhead; only the
* subtraction of start times from stop times is performed.
*
* (B) The final calculations to subtract the interrupts disabled time measurement
* overhead is performed asynchronously in appropriate API functions.
*
* See also 'CPU_IntDisMeasMaxCalc() Note #1b'.
*********************************************************************************************************
*/
#ifdef CPU_CFG_INT_DIS_MEAS_EN
void CPU_IntDisMeasStop (void)
{
CPU_TS_TMR time_ints_disd_cnts;
CPU_IntDisNestCtr--;
if (CPU_IntDisNestCtr == 0u) { /* If ints NO longer dis'd, ... */
CPU_IntDisMeasStop_cnts = CPU_TS_TmrRd(); /* ... get ints dis'd stop time & ... */
/* ... calc ints dis'd tot time (see Note #1b2A). */
time_ints_disd_cnts = CPU_IntDisMeasStop_cnts -
CPU_IntDisMeasStart_cnts;
/* Calc max ints dis'd times. */
if (CPU_IntDisMeasMaxCur_cnts < time_ints_disd_cnts) {
CPU_IntDisMeasMaxCur_cnts = time_ints_disd_cnts;
}
if (CPU_IntDisMeasMax_cnts < time_ints_disd_cnts) {
CPU_IntDisMeasMax_cnts = time_ints_disd_cnts;
}
}
}
#endif
/*
*********************************************************************************************************
* CPU_CntLeadZeros()
*
* Description : Count the number of contiguous, most-significant, leading zero bits in a data value.
*
* Argument(s) : val Data value to count leading zero bits.
*
* Return(s) : Number of contiguous, most-significant, leading zero bits in 'val', if NO error(s).
*
* DEF_INT_CPU_U_MAX_VAL, otherwise.
*
* Note(s) : (1) (a) Supports the following data value sizes :
*
* (1) 8-bits
* (2) 16-bits
* (3) 32-bits
* (4) 64-bits
*
* See also 'cpu_def.h CPU WORD CONFIGURATION Note #1'.
*
* (b) (1) For 8-bit values :
*
* b07 b06 b05 b04 b03 b02 b01 b00 # Leading Zeros
* --- --- --- --- --- --- --- --- ---------------
* 1 x x x x x x x 0
* 0 1 x x x x x x 1
* 0 0 1 x x x x x 2
* 0 0 0 1 x x x x 3
* 0 0 0 0 1 x x x 4
* 0 0 0 0 0 1 x x 5
* 0 0 0 0 0 0 1 x 6
* 0 0 0 0 0 0 0 1 7
* 0 0 0 0 0 0 0 0 8
*
*
* (2) For 16-bit values :
*
* b15 b14 b13 ... b04 b03 b02 b01 b00 # Leading Zeros
* --- --- --- --- --- --- --- --- ---------------
* 1 x x x x x x x 0