forked from lowRISC/opentitan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clkmgr.hjson
953 lines (897 loc) · 25.9 KB
/
clkmgr.hjson
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
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
//
// ------------------- W A R N I N G: A U T O - G E N E R A T E D C O D E !! -------------------//
// PLEASE DO NOT HAND-EDIT THIS FILE. IT HAS BEEN AUTO-GENERATED WITH THE FOLLOWING COMMAND:
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
# CLKMGR register template
#
{
name: "clkmgr",
human_name: "Clock Manager",
one_line_desc: "Derives and monitors on-chip clock signals, handles clock gating requests from power manager and software",
one_paragraph_desc: '''
Clock Manager derives on-chip clocks from root clock signals provided by Analog Sensor Top (AST).
Input and output clocks may be asynchronous to each other.
During clock derivation, Clock Manager can divide clocks to lower frequencies and gate clocks based on control signals from the power manager and to a limited extent from software.
For example, the idle status of relevant hardware blocks is tracked and clock gating requests from software are ignored as long as these blocks are active.
Further security features include switchable clock jitter, continuous monitoring of clock frequencies, and various countermeasures to deter fault injection (FI) attacks.
'''
design_spec: "../doc",
dv_doc: "../doc/dv",
hw_checklist: "../doc/checklist",
sw_checklist: "/sw/device/lib/dif/dif_clkmgr",
revisions: [
{
version: "1.0",
life_stage: "L1",
design_stage: "D2S",
verification_stage: "V2S",
dif_stage: "S2",
}
]
scan: "true",
clocking: [
{clock: "clk_i", reset: "rst_ni", primary: true},
{reset: "rst_root_ni"},
{clock: "clk_main_i", reset: "rst_main_ni"},
{clock: "clk_io_i", reset: "rst_io_ni"},
{clock: "clk_usb_i", reset: "rst_usb_ni"},
{clock: "clk_aon_i", reset: "rst_aon_ni"},
{clock: "clk_io_div2_i", reset: "rst_io_div2_ni", internal: true},
{clock: "clk_io_div4_i", reset: "rst_io_div4_ni", internal: true},
{reset: "rst_root_main_ni"},
{reset: "rst_root_io_ni"},
{reset: "rst_root_io_div2_ni"},
{reset: "rst_root_io_div4_ni"},
{reset: "rst_root_usb_ni"},
]
bus_interfaces: [
{ protocol: "tlul", direction: "device" }
],
alert_list: [
{ name: "recov_fault",
desc: '''
This recoverable alert is triggered when there are measurement errors.
'''
}
{ name: "fatal_fault",
desc: '''
This fatal alert is triggered when a fatal TL-UL bus integrity fault is detected.
'''
}
],
regwidth: "32",
param_list: [
{ name: "NumGroups",
desc: "Number of clock groups",
type: "int",
default: "7",
local: "true"
},
{ name: "NumSwGateableClocks",
desc: "Number of SW gateable clocks",
type: "int",
default: "4",
local: "true"
},
{ name: "NumHintableClocks",
desc: "Number of hintable clocks",
type: "int",
default: "4",
local: "true"
},
],
inter_signal_list: [
{ struct: "clkmgr_out",
type: "uni",
name: "clocks",
act: "req",
package: "clkmgr_pkg",
},
{ struct: "clkmgr_cg_en",
type: "uni",
name: "cg_en",
act: "req",
package: "clkmgr_pkg",
},
{ struct: "lc_tx",
type: "uni",
name: "lc_hw_debug_en",
act: "rcv",
package: "lc_ctrl_pkg",
},
{ struct: "mubi4",
type: "uni",
name: "io_clk_byp_req",
act: "req",
package: "prim_mubi_pkg",
},
{ struct: "mubi4",
type: "uni",
name: "io_clk_byp_ack",
act: "rcv",
package: "prim_mubi_pkg",
},
{ struct: "mubi4",
type: "uni",
name: "all_clk_byp_req",
act: "req",
package: "prim_mubi_pkg",
},
{ struct: "mubi4",
type: "uni",
name: "all_clk_byp_ack",
act: "rcv",
package: "prim_mubi_pkg",
},
{ struct: "mubi4",
type: "uni",
name: "hi_speed_sel",
act: "req",
package: "prim_mubi_pkg",
},
{ struct: "mubi4",
type: "uni",
name: "div_step_down_req",
act: "rcv",
package: "prim_mubi_pkg",
},
{ struct: "lc_tx",
type: "uni",
name: "lc_clk_byp_req",
act: "rcv",
package: "lc_ctrl_pkg",
},
{ struct: "lc_tx",
type: "uni",
name: "lc_clk_byp_ack",
act: "req",
package: "lc_ctrl_pkg",
},
{ struct: "mubi4",
type: "uni",
name: "jitter_en",
act: "req",
package: "prim_mubi_pkg"
},
// Exported clocks
{ struct: "pwr_clk",
type: "req_rsp",
name: "pwr",
act: "rsp",
},
{ struct: "mubi4",
type: "uni",
name: "idle",
act: "rcv",
package: "prim_mubi_pkg",
width: "4"
},
{ struct: "mubi4",
desc: "Indicates clocks are calibrated and frequencies accurate",
type: "uni",
name: "calib_rdy",
act: "rcv",
package: "prim_mubi_pkg",
default: "prim_mubi_pkg::MuBi4True"
},
],
countermeasures: [
{ name: "BUS.INTEGRITY",
desc: "End-to-end bus integrity scheme."
},
{ name: "TIMEOUT.CLK.BKGN_CHK",
desc: "Background check for clock timeout."
},
{ name: "MEAS.CLK.BKGN_CHK",
desc: "Background check for clock frequency."
},
{ name: "MEAS.CONFIG.SHADOW",
desc: "Measurement configurations are shadowed."
}
{ name: "IDLE.INTERSIG.MUBI",
desc: "Idle inputs are multibit encoded."
}
{ name: "LC_CTRL.INTERSIG.MUBI",
desc: "The life cycle control signals are multibit encoded."
}
{ name: "LC_CTRL_CLK_HANDSHAKE.INTERSIG.MUBI",
desc: "The life cycle clock req/ack signals are multibit encoded."
}
{ name: "CLK_HANDSHAKE.INTERSIG.MUBI",
desc: "The external clock req/ack signals are multibit encoded."
}
{ name: "DIV.INTERSIG.MUBI",
desc: "Divider step down request is multibit encoded."
}
{ name: "JITTER.CONFIG.MUBI",
desc: "The jitter enable configuration is multibit encoded."
}
{ name: "IDLE.CTR.REDUN",
desc: "Idle counter is duplicated."
}
{ name: "MEAS.CONFIG.REGWEN",
desc: "The measurement controls protected with regwen."
}
{ name: "CLK_CTRL.CONFIG.REGWEN",
desc: "Software controlled clock requests are proteced with regwen."
}
]
registers: [
{ name: "EXTCLK_CTRL_REGWEN",
desc: "External clock control write enable",
swaccess: "rw0c",
hwaccess: "none",
fields: [
{ bits: "0",
name: "EN",
resval: "1"
desc: '''
When 1, the value of !!EXTCLK_CTRL can be set. When 0, writes to !!EXTCLK_CTRL have no
effect.
'''
},
]
},
{ name: "EXTCLK_CTRL",
desc: '''
Select external clock
''',
regwen: "EXTCLK_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hro",
fields: [
{
bits: "3:0",
name: "SEL",
mubi: true,
desc: '''
When the current value is not kMultiBitBool4True, writing a value of kMultiBitBool4True
selects external clock as clock for the system. Writing any other value has
no impact.
When the current value is kMultiBitBool4True, writing a value of kMultiBitBool4False
selects internal clock as clock for the system. Writing any other value during this stage
has no impact.
While this register can always be programmed, it only takes effect when debug functions are enabled
in life cycle TEST, DEV or RMA states.
'''
resval: "false"
},
{
bits: "7:4",
name: "HI_SPEED_SEL",
mubi: true,
desc: '''
A value of kMultiBitBool4True selects nominal speed external clock.
All other values selects low speed clocks.
Note this field only has an effect when the !!EXTCLK_CTRL.SEL field is set to
kMultiBitBool4True.
Nominal speed means the external clock is approximately the same frequency as
the internal oscillator source. When this option is used, all clocks operate
at roughly the nominal frequency.
Low speed means the external clock is approximately half the frequency of the
internal oscillator source. When this option is used, the internal dividers are
stepped down. As a result, previously undivided clocks now run at half frequency,
while previously divided clocks run at roughly the nominal frequency.
See external clock switch support in documentation for more details.
'''
resval: false
}
]
// avoid writing random values to this register as it could trigger transient checks
// in mubi sync
tags: ["excl:CsrAllTests:CsrExclWrite"]
},
{ name: "EXTCLK_STATUS",
desc: '''
Status of requested external clock switch
''',
swaccess: "ro",
hwaccess: "hwo",
hwext: "true",
fields: [
{
bits: "3:0",
name: "ACK",
mubi: true,
desc: '''
When !!EXTCLK_CTRL.SEL is set to kMultiBitBool4True, this field reflects
whether the clock has been switched the external source.
kMultiBitBool4True indicates the switch is complete.
kMultiBitBool4False indicates the switch is either not possible or still ongoing.
'''
resval: "false"
},
]
},
{ name: "JITTER_REGWEN",
desc: "Jitter write enable",
swaccess: "rw0c",
hwaccess: "none",
fields: [
{ bits: "0",
name: "EN",
resval: "1"
desc: '''
When 1, the value of !!JITTER_ENABLE can be changed. When 0, writes have no
effect.
'''
},
]
},
{ name: "JITTER_ENABLE",
desc: '''
Enable jittery clock
''',
swaccess: "rw",
hwaccess: "hro",
fields: [
{
mubi: true,
bits: "3:0",
name: "VAL",
desc: '''
Enable jittery clock.
A value of kMultiBitBool4False disables the jittery clock,
while all other values enable jittery clock.
''',
resval: false
// avoid writing random values to this register as it could trigger transient checks
// in mubi sync
tags: ["excl:CsrAllTests:CsrExclWrite"]
}
]
},
{ name: "CLK_ENABLES",
desc: '''
Clock enable for software gateable clocks.
These clocks are directly controlled by software.
''',
swaccess: "rw",
hwaccess: "hro",
fields: [
{
bits: "0",
name: "CLK_IO_DIV4_PERI_EN",
resval: 1,
desc: '''
0 CLK_IO_DIV4_PERI is disabled.
1 CLK_IO_DIV4_PERI is enabled.
'''
}
{
bits: "1",
name: "CLK_IO_DIV2_PERI_EN",
resval: 1,
desc: '''
0 CLK_IO_DIV2_PERI is disabled.
1 CLK_IO_DIV2_PERI is enabled.
'''
}
{
bits: "2",
name: "CLK_IO_PERI_EN",
resval: 1,
desc: '''
0 CLK_IO_PERI is disabled.
1 CLK_IO_PERI is enabled.
'''
}
{
bits: "3",
name: "CLK_USB_PERI_EN",
resval: 1,
desc: '''
0 CLK_USB_PERI is disabled.
1 CLK_USB_PERI is enabled.
'''
}
]
// the CLK_ENABLE register cannot be written.
// During top level randomized tests, it is possible to disable the clocks and then access
// a register in the disabled block. This would lead to a top level hang.
tags: ["excl:CsrAllTests:CsrExclAll"]
},
{ name: "CLK_HINTS",
desc: '''
Clock hint for software gateable transactional clocks during active mode.
During low power mode, all clocks are gated off regardless of the software hint.
Transactional clocks are not fully controlled by software. Instead software provides only a disable hint.
When software provides a disable hint, the clock manager checks to see if the associated hardware block is idle.
If the hardware block is idle, then the clock is disabled.
If the hardware block is not idle, the clock is kept on.
For the enable case, the software hint is immediately honored and the clock turned on. Hardware does not provide any
feedback in this case.
''',
swaccess: "rw",
hwaccess: "hro",
fields: [
{
bits: "0",
name: "CLK_MAIN_AES_HINT",
resval: 1,
desc: '''
0 CLK_MAIN_AES can be disabled.
1 CLK_MAIN_AES is enabled.
'''
}
{
bits: "1",
name: "CLK_MAIN_HMAC_HINT",
resval: 1,
desc: '''
0 CLK_MAIN_HMAC can be disabled.
1 CLK_MAIN_HMAC is enabled.
'''
}
{
bits: "2",
name: "CLK_MAIN_KMAC_HINT",
resval: 1,
desc: '''
0 CLK_MAIN_KMAC can be disabled.
1 CLK_MAIN_KMAC is enabled.
'''
}
{
bits: "3",
name: "CLK_MAIN_OTBN_HINT",
resval: 1,
desc: '''
0 CLK_MAIN_OTBN can be disabled.
1 CLK_MAIN_OTBN is enabled.
'''
}
]
// the CLK_HINT register cannot be written.
// During top level randomized tests, it is possible to disable the clocks to transactional blocks
// and then access a register in the disabled block. This would lead to a top level hang.
tags: ["excl:CsrAllTests:CsrExclAll"]
},
{ name: "CLK_HINTS_STATUS",
desc: '''
Since the final state of !!CLK_HINTS is not always determined by software,
this register provides read feedback for the current clock state.
''',
swaccess: "ro",
hwaccess: "hwo",
fields: [
{
bits: "0",
name: "CLK_MAIN_AES_VAL",
resval: 1,
desc: '''
0 CLK_MAIN_AES is disabled.
1 CLK_MAIN_AES is enabled.
'''
}
{
bits: "1",
name: "CLK_MAIN_HMAC_VAL",
resval: 1,
desc: '''
0 CLK_MAIN_HMAC is disabled.
1 CLK_MAIN_HMAC is enabled.
'''
}
{
bits: "2",
name: "CLK_MAIN_KMAC_VAL",
resval: 1,
desc: '''
0 CLK_MAIN_KMAC is disabled.
1 CLK_MAIN_KMAC is enabled.
'''
}
{
bits: "3",
name: "CLK_MAIN_OTBN_VAL",
resval: 1,
desc: '''
0 CLK_MAIN_OTBN is disabled.
1 CLK_MAIN_OTBN is enabled.
'''
}
]
// the CLK_HINT_STATUS register is read-only and cannot be checked.
// This register's value depends on the IDLE inputs, so cannot be predicted.
tags: ["excl:CsrNonInitTests:CsrExclCheck:CsrExclCheck"]
},
{ name: "MEASURE_CTRL_REGWEN",
desc: "Measurement control write enable",
swaccess: "rw0c",
hwaccess: "hrw",
fields: [
{ bits: "0",
name: "EN",
resval: "1"
desc: '''
When 1, the value of the measurement control can be set. When 0, writes have no
effect.
'''
},
]
},
{ name: "IO_MEAS_CTRL_EN",
desc: '''
Enable for measurement control
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hrw",
async: "clk_io_i",
fields: [
{
bits: "3:0",
name: "EN",
desc: "Enable measurement for io",
mubi: true,
resval: false,
},
]
// Measurements can cause recoverable errors depending on the
// thresholds which randomized CSR tests will not predict correctly.
// To provide better CSR coverage we allow writing the threshold
// fields, but not enabling the counters.
tags: ["excl:CsrAllTests:CsrExclWrite"]
},
{ name: "IO_MEAS_CTRL_SHADOWED",
desc: '''
Configuration controls for io measurement.
The threshold fields are made wider than required (by 1 bit) to ensure
there is room to adjust for measurement inaccuracies.
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hro",
async: "clk_io_i",
shadowed: "true",
update_err_alert: "recov_fault",
storage_err_alert: "fatal_fault",
fields: [
{
bits: "9:0",
name: "HI",
desc: "Max threshold for io measurement",
resval: "490"
},
{
bits: "19:10",
name: "LO",
desc: "Min threshold for io measurement",
resval: "470"
},
]
},
{ name: "IO_DIV2_MEAS_CTRL_EN",
desc: '''
Enable for measurement control
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hrw",
async: "clk_io_div2_i",
fields: [
{
bits: "3:0",
name: "EN",
desc: "Enable measurement for io_div2",
mubi: true,
resval: false,
},
]
// Measurements can cause recoverable errors depending on the
// thresholds which randomized CSR tests will not predict correctly.
// To provide better CSR coverage we allow writing the threshold
// fields, but not enabling the counters.
tags: ["excl:CsrAllTests:CsrExclWrite"]
},
{ name: "IO_DIV2_MEAS_CTRL_SHADOWED",
desc: '''
Configuration controls for io_div2 measurement.
The threshold fields are made wider than required (by 1 bit) to ensure
there is room to adjust for measurement inaccuracies.
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hro",
async: "clk_io_div2_i",
shadowed: "true",
update_err_alert: "recov_fault",
storage_err_alert: "fatal_fault",
fields: [
{
bits: "8:0",
name: "HI",
desc: "Max threshold for io_div2 measurement",
resval: "250"
},
{
bits: "17:9",
name: "LO",
desc: "Min threshold for io_div2 measurement",
resval: "230"
},
]
},
{ name: "IO_DIV4_MEAS_CTRL_EN",
desc: '''
Enable for measurement control
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hrw",
async: "clk_io_div4_i",
fields: [
{
bits: "3:0",
name: "EN",
desc: "Enable measurement for io_div4",
mubi: true,
resval: false,
},
]
// Measurements can cause recoverable errors depending on the
// thresholds which randomized CSR tests will not predict correctly.
// To provide better CSR coverage we allow writing the threshold
// fields, but not enabling the counters.
tags: ["excl:CsrAllTests:CsrExclWrite"]
},
{ name: "IO_DIV4_MEAS_CTRL_SHADOWED",
desc: '''
Configuration controls for io_div4 measurement.
The threshold fields are made wider than required (by 1 bit) to ensure
there is room to adjust for measurement inaccuracies.
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hro",
async: "clk_io_div4_i",
shadowed: "true",
update_err_alert: "recov_fault",
storage_err_alert: "fatal_fault",
fields: [
{
bits: "7:0",
name: "HI",
desc: "Max threshold for io_div4 measurement",
resval: "130"
},
{
bits: "15:8",
name: "LO",
desc: "Min threshold for io_div4 measurement",
resval: "110"
},
]
},
{ name: "MAIN_MEAS_CTRL_EN",
desc: '''
Enable for measurement control
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hrw",
async: "clk_main_i",
fields: [
{
bits: "3:0",
name: "EN",
desc: "Enable measurement for main",
mubi: true,
resval: false,
},
]
// Measurements can cause recoverable errors depending on the
// thresholds which randomized CSR tests will not predict correctly.
// To provide better CSR coverage we allow writing the threshold
// fields, but not enabling the counters.
tags: ["excl:CsrAllTests:CsrExclWrite"]
},
{ name: "MAIN_MEAS_CTRL_SHADOWED",
desc: '''
Configuration controls for main measurement.
The threshold fields are made wider than required (by 1 bit) to ensure
there is room to adjust for measurement inaccuracies.
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hro",
async: "clk_main_i",
shadowed: "true",
update_err_alert: "recov_fault",
storage_err_alert: "fatal_fault",
fields: [
{
bits: "9:0",
name: "HI",
desc: "Max threshold for main measurement",
resval: "510"
},
{
bits: "19:10",
name: "LO",
desc: "Min threshold for main measurement",
resval: "490"
},
]
},
{ name: "USB_MEAS_CTRL_EN",
desc: '''
Enable for measurement control
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hrw",
async: "clk_usb_i",
fields: [
{
bits: "3:0",
name: "EN",
desc: "Enable measurement for usb",
mubi: true,
resval: false,
},
]
// Measurements can cause recoverable errors depending on the
// thresholds which randomized CSR tests will not predict correctly.
// To provide better CSR coverage we allow writing the threshold
// fields, but not enabling the counters.
tags: ["excl:CsrAllTests:CsrExclWrite"]
},
{ name: "USB_MEAS_CTRL_SHADOWED",
desc: '''
Configuration controls for usb measurement.
The threshold fields are made wider than required (by 1 bit) to ensure
there is room to adjust for measurement inaccuracies.
''',
regwen: "MEASURE_CTRL_REGWEN",
swaccess: "rw",
hwaccess: "hro",
async: "clk_usb_i",
shadowed: "true",
update_err_alert: "recov_fault",
storage_err_alert: "fatal_fault",
fields: [
{
bits: "8:0",
name: "HI",
desc: "Max threshold for usb measurement",
resval: "250"
},
{
bits: "17:9",
name: "LO",
desc: "Min threshold for usb measurement",
resval: "230"
},
]
},
{ name: "RECOV_ERR_CODE",
desc: "Recoverable Error code ",
swaccess: "rw1c",
hwaccess: "hwo",
fields: [
{ bits: "0",
name: "SHADOW_UPDATE_ERR",
resval: 0
desc: '''
One of the shadow registers encountered an update error.
'''
},
{
bits: "1",
name: "IO_MEASURE_ERR",
resval: 0,
desc: '''
io has encountered a measurement error.
'''
},
{
bits: "2",
name: "IO_DIV2_MEASURE_ERR",
resval: 0,
desc: '''
io_div2 has encountered a measurement error.
'''
},
{
bits: "3",
name: "IO_DIV4_MEASURE_ERR",
resval: 0,
desc: '''
io_div4 has encountered a measurement error.
'''
},
{
bits: "4",
name: "MAIN_MEASURE_ERR",
resval: 0,
desc: '''
main has encountered a measurement error.
'''
},
{
bits: "5",
name: "USB_MEASURE_ERR",
resval: 0,
desc: '''
usb has encountered a measurement error.
'''
},
{
bits: "6",
name: "IO_TIMEOUT_ERR",
resval: 0,
desc: '''
io has timed out.
'''
}
{
bits: "7",
name: "IO_DIV2_TIMEOUT_ERR",
resval: 0,
desc: '''
io_div2 has timed out.
'''
}
{
bits: "8",
name: "IO_DIV4_TIMEOUT_ERR",
resval: 0,
desc: '''
io_div4 has timed out.
'''
}
{
bits: "9",
name: "MAIN_TIMEOUT_ERR",
resval: 0,
desc: '''
main has timed out.
'''
}
{
bits: "10",
name: "USB_TIMEOUT_ERR",
resval: 0,
desc: '''
usb has timed out.
'''
}
]
},
{ name: "FATAL_ERR_CODE",
desc: "Error code ",
swaccess: "ro",
hwaccess: "hrw",
fields: [
{ bits: "0",
name: "REG_INTG",
resval: 0
desc: '''
Register file has experienced a fatal integrity error.
'''
},
{ bits: "1",
name: "IDLE_CNT",
resval: 0
desc: '''
One of the idle counts encountered a duplicate error.
'''
},
{ bits: "2",
name: "SHADOW_STORAGE_ERR",
resval: 0
desc: '''
One of the shadow registers encountered a storage error.
'''
},
]
},
]
}