forked from lowRISC/opentitan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pwm_testplan.hjson
209 lines (199 loc) · 6.15 KB
/
pwm_testplan.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
// Copyright lowRISC contributors (OpenTitan project).
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
{
name: "pwm"
import_testplans: ["hw/dv/tools/dvsim/testplans/csr_testplan.hjson",
"hw/dv/tools/dvsim/testplans/alert_test_testplan.hjson",
"hw/dv/tools/dvsim/testplans/intr_test_testplan.hjson",
"hw/dv/tools/dvsim/testplans/tl_device_access_types_testplan.hjson",
"pwm_sec_cm_testplan.hjson"],
testpoints: [
{
name: smoke
desc: '''
pwm_smoke tests pulse and blink mode for a single channel
Stimulus:
- configure the envionment for one PWM channel
- program the duty cycle a and b values
- configure the ClkDiv and Resn
Checking:
- ensure pulses are generated correctly in pulse or blink mode
'''
stage: V1
tests: ["pwm_smoke"]
}
{
name: dutycycle
desc: '''
Verify different duty cycle settings in Pulse, Blink and Heart Beat mode.
'''
stage: V2
tests: ["pwm_rand_output"]
}
{
name: pulse
desc: '''
Verify the pulse mode of the PWM
by de-asserting blink_en field in the PWM_PARAM register
'''
stage: V2
tests: ["pwm_rand_output"]
}
{
name: blink
desc: '''
Verify the blink mode of the PWM
by asserting the blink_en field in the PWM_PARAM register
'''
stage: V2
tests: ["pwm_rand_output"]
}
{
name: heartbeat
desc: '''
Verify the Heart Beat mode of the PWM
by asserting the blink_en and HTBT field in the PWM_PARAM register
'''
stage: V2
tests: ["pwm_rand_output"]
}
{
name: resolution
desc: '''
Verify the PWM generates correct duty cycle for different resolution settings
'''
stage: V2
tests: ["pwm_rand_output"]
}
{
name: multi_channel
desc: '''
Verifies that PWM correctly generates pulses on multiple channels concurrently
'''
stage: V2
tests: ["pwm_rand_output"]
}
{
name: polarity
desc: '''
Verify that the polarity of the pulse can be inverted by setting the invert channel bit in the invert register
'''
stage: V2
tests: ["pwm_rand_output"]
}
{
name: phase
desc: '''
Check that the relative phase between pulses matches the setting in the phase_delay field in the PWM_PARAM register.
'''
stage: V2
tests: ["pwm_rand_output"]
}
{
name: lowpower
desc: '''
Verify the PWM can continue when the chip is in low power mode.
Stimulus:
- start PWM on one or more channels
- stop the TL UL clock
Checks:
- Ensure pulses are still generated when in LP mode
'''
stage: V2
tests: ["pwm_rand_output"]
}
{
name: perf
desc: '''
Checking ip operation at min/max bandwidth
Stimulus:
- Program timing registers (CLK_DIV, DC_RESN) to high/low values (slow/fast data rate)
- Program other required registers for pwm operation
- Start pwm channels
Checks:
- Ensure the output pulses are correctly modulated for all channels
'''
stage: V2
tests: ["pwm_perf"]
}
{
name: stress_all
desc: '''
Combine above sequences in one test then randomly select for running
Stimulus:
- Start sequences and randomly add reset between each sequence
Checking:
- All sequences should be finished and checked by the scoreboard
'''
stage: V2
tests: ["pwm_stress_all"]
}
]
covergroups: [
{
name: cfg_cg
desc: '''
Covers that valid settings for the PWM.CFG register has been tested.
This includes values for:
- clk_div
- dc_resn
- cntr_en
'''
}
{
name: pwm_en_cg
desc: '''
Covers that both runs with a single PWM channel and multiple channels has been tested.
Verifies both when the channels are enabled for parallel behavior (activated at the same time)
and activated individually
'''
}
{
name: invert_cg
desc: '''
Covers that channels have been tested with different polarity
Also cover that a mix channels with invert enabled and disabled concurrently have been tested.
'''
}
{
name: pwm_param_cg
desc: '''
Covers that both pulse, blink and heart beat mode have been tested.
Also covers that.
- various phase delays have been tested
- different delays on different concurrent channels
'''
}
{
name: duty_cycle_cg
desc: '''
Covers that a good range of combinations of values for A and B have been send.
Also cover that multiple channels can run concurrently with different settings for A and B.
Cover these cases:
- A > B
- A < B
- A == B
'''
}
{
name: blink_param_cg
desc: '''
Covers that a good range of combinations of values for X and Y have been seend.
Also cover that multiple channels can run concurrently with different settings for X and Y.
'''
}
{
name: lowpower_cg
desc: '''
Covers that the DUT will continue to produce pulses with TL clock disabled (low power mode)
'''
}
{
name: clock_cg
desc: '''
Cover that a range of frequencies have been tested for the PWM clock including a clock that matches the TL clk.
'''
}
]
}