forked from lowRISC/opentitan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spi_host_testplan.hjson
416 lines (386 loc) · 13.1 KB
/
spi_host_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
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
// Copyright lowRISC contributors (OpenTitan project).
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
{
name: "spi_host"
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/mem_testplan.hjson",
"hw/dv/tools/dvsim/testplans/stress_all_with_reset_testplan.hjson",
"hw/dv/tools/dvsim/testplans/tl_device_access_types_testplan.hjson",
"spi_host_sec_cm_testplan.hjson"],
testpoints: [
{
name: smoke
desc: '''
SPI_HOST smoke test in which random (rd/wr) transactions are sent to the DUT and
received asynchronously with scoreboard checks.
Stimulus:
- Enable spi_host ip
- Write data in standard mode - and read it back
Checking:
- Ensure transactions are transmitted/received correctly
'''
stage: V1
tests: ["spi_host_smoke"]
}
{
name: performance
desc: '''
Send/receive transactions at max bandwidth
Stimulus:
- Program the content of timing fields of CONFIGOPTS to the min values
- Programming TX1_CNT and TXN_CNT to issue read/write back-to-back transactions
- Read/write rx_fifo/tx_fifo as soon as possible (avoid stalling transactions)
Checking:
- Ensure transactions are transmitted/received correctly
'''
stage: V2
tests: ["spi_host_performance"]
}
{
name: error_event_intr
desc: '''
This test includes multi tasks which verify error/event interrupt assertion
(except TX OVERFLOW error interrupt is verified in separate test)
Stimulus:
- Program ERROR_ENABLE/EVENT_ENABLE register to enable
corresponding error/event interrupt assertion
- Program transaction with proper constraints to assert error/event interrupts
Checking:
- Ensure transactions are transmitted/received correctly
- Ensure the matching between the bit-field values of ERROR_STATUS
and ERROR_ENABLE respectively once the error interrupt pin is asserted
- Ensure the matching between the bit-field values of ERROR_ENABLE
once the event interrupt pin is asserted
'''
stage: V2
tests: ["spi_host_overflow_underflow", "spi_host_error_cmd", "spi_host_event"]
}
{
name: clock_rate
desc: '''
Stimulus:
- select different settings for:
* CONFIGOPTS_0.CSNIDLE_0
* CONFIGOPTS_0.CSNLEAD_0
* CONFIGOPTS_0.CSNTRAIL_0
Checking:
- verify that merging of commands work correctly
- verify that the DUT can handle different sck -> cs_n timings
'''
stage: V2
tests: ["spi_host_speed"]
}
{
name: speed
desc: '''
Stimulus:
- randomly select the DUT to run single/dual/quad mode
Checking:
- verify that all speeds are supported
'''
stage: V2
tests: ["spi_host_speed"]
}
{
name: chip_select_timing
desc: '''
Stimulus:
- Randomly select a setting for the 16bit clock divider
Checking:
- Check that the DUT operates correctly under different SPI clock speeds
'''
stage: V2
tests: ["spi_host_speed"]
}
{
name: sw_reset
desc: '''
verify software reset behavior
Stimulus:
- Reset the spi_host randomly
after a random number of data shows up on fifos
Checking:
- Ensure that reads to RXDATA register yield 0s after the rx_fifo is reset
- Ensure that transactions are dropped in both the scoreboard and spi_agent monitor
after the tx_fifo or spi_fsm is reset
'''
stage: V2
tests: ["spi_host_sw_reset"]
}
{
name: passthrough_mode
desc: '''
- Verify the function of spi_host in passthrough_mode
Stimulus:
- Enable Passthrough Mode
Checking:
- Ensure Host to Device and Device to Host paths are switched to Passthrough ports
'''
stage: V2
tests: ["spi_host_passthrough_mode"]
}
{
name: cpol_cpha
desc: '''
Stimulus:
- Randomly chip select for different polarity / phase
Checking:
- Check that the DUT operates correctly under different cs_n settings
'''
stage: V2
tests: ["spi_host_speed"]
}
{
name: full_cycle
desc: '''
Stimulus:
- randomly select FULLCYC to be set
Checking:
- Check that the data can be read one full cycle after the data was asserted
'''
stage: V2
tests: ["spi_host_speed"]
}
{
name: duplex
desc: '''
Stimulus:
- in standard mode set the DUT to run full duplex
Checking:
- verify that the DUT support both half and full duplex in standard mode.
'''
stage: V2
tests: ["spi_host_smoke"]
}
{
name: tx_rx_only
desc: '''
Stimulus:
- in standard mode enable tx only and have the env send garbage back
- in standard mode enable rx only and have the env ignore the incoming data
Checking:
- verify that the DUT ignores rx line when in tx only mode
- verify that the DUT does not drain the tx fifo in rx only mode
'''
stage: V2
tests: ["spi_host_smoke"]
}
{
name: stress_all
desc: '''
Support vseq (context) switching with random reset in between.
Stimulus:
- Combine the above sequences in one test to run sequentially
except csr sequence and (requires zero_delays)
- Randomly add reset between each sequence
Checking:
- Ensure transactions are transmitted/received correctly
- Ensure reset is handled correctly
'''
stage: V2
tests: ["spi_host_stress_all"]
}
{
name: spien
desc: '''
Check that with mid-transaction writes to CONTROL.SPIEN, the block behaves according
to the documentation.
- Writing a zero to this register temporarily suspends any previously
submitted transactions.
- If the block is re-enabled by writing a one to CONTROL.SPIEN, any previously
executing commands will continue from wherever they left off.
Stimulus:
- Issue a transaction
- De-assert CONTROL.SPIEN after the command byte is receieved
- Re-assert after a randomized delay
Checking:
- Ensure transactions are transmitted/received correctly, even with a large
temporary suspension in the middle.
'''
stage: V2
tests: ["spi_host_spien"]
}
{
name: stall
desc: '''
Stimulus:
- Ongoing transaction has stalled due to lack of available space in the RX FIFO
and continues when RX fifo is cleared
- Ongoing transaction has stalled due to lack of data in the TX FIFO
and continues when data is provided in TX FIFO
Checking:
- Ensure Rxstall occurs and recovers
- Ensure Txstall occurs and recovers
'''
stage: V2
tests: ["spi_host_status_stall"]
}
{
name: Idlecsbactive
desc: '''
Stimulus:
- Pause next segment availability and idly wait for next command
Checking:
- Ensure transactions goes through even with a segment pause and idle wait
in the state IdleCsbActive
'''
stage: V2
tests: ["spi_host_idlecsbactive"]
}
{
name: data_fifo_status
desc: '''
Ensure we are modelling the Fifo depths, to ensure we can compare against predictions
of their state, particularly current depth.
- TXDATA
Push on CSR writes, Pop on submitting new word to ByteSel/SR
- RXDATA
Push on new word from SR/ByteMerge, Pop on CSR read
Stimulus:
- Create transactions that Pop/Push to the data fifos
- Readback the queue depths at various points during active and after completed
transactions.
Checking:
- Ensure rx/tx_qd and rx/tx_full/empty match predictions.
'''
stage: V2
tests: ["spi_host_overflow_underflow"]
}
{
name: winbond
desc: '''
Replace SPI agent with the Winbond Flash model
Stimulus:
- constraint the Sequence to create welformed transactions that the model understands
Checking:
- Verify the DUT against the WindBond bfm by making the spi agent passive
to verify that we comply with the spi targeted for opentitan
'''
stage: V3
tests: []
}
]
covergroups: [
{
name: tx_fifo_overflow_cg
desc: '''
Collect coverage to verify that an attempt was made to overflow the TX FIFO
by attempting to write to a full FIFO
'''
}
{
name: rx_fifo_underflow_cg
desc: '''
Collect coverage to verify that an attempt was made to underflow the RX FIFO
by attempting to read from an empty FIFO
'''
}
{
name: config_opts_cg
desc: '''
Collect coverage on the config opts register, some important crosses:
- CPOL and CPHA, check all 4 combinations are tested
- CSNLEAD, CSNTRAIL and CSNIDLE
'''
}
{
name: unaligned_data_cg
desc: '''
Collect coverage the alignment of writes to the data window
to verify that all possible alignments was seen
'''
}
{
name: duplex_cg
desc: '''
Collect coverage that we verified both duplex and half duplex
'''
}
{
name: control_cg
desc: '''
Collect coverage on the control register to make sure all options are excercised
- Tx and RX water mark should have a bin for min value, max value
and one for everything in between
'''
}
{
name: status_cg
desc: '''
Collect coverage on the status register to make sure all scenarios are checked
'''
}
{
name: csid_cg
desc: '''
Collect coverage that different IDs are used.
'''
}
{
name: command_cg
desc: '''
Collect coverage that different commant settings, important cross:
- Direction and SPEED
- CSAAT and SPEED
'''
}
{
name: error_en_cg
desc: '''
Collect coverage that all possible errors was enabled
'''
}
{
name: error_status_cg
desc: '''
Collect coverage that all possible errors was seen
'''
}
{
name: event_en_cg
desc: '''
Collect coverage that all events was enabled and seen
'''
}
{
name: interrupt_cg
desc: '''
Collect coverage that all types of interrupt was seen
- check that we see all scenarios that can cause an interrupt and that the interrupts is fired.
- also check we can clear the interrupt
(Coverage gathered in base class :: intr_test_cg)
'''
}
{
name: different_ch_settings_cg
desc: '''
- Check that multiple end points was running at different speeds concurrently.
- Collect coverage that multiple SPI endpoints was run with different config opts
'''
}
{
name: num_segment_cg
desc: '''
- Check that the DUT only transmits what is in a command even if more segments are in the TX FIFO
'''
}
{
name: segment_speed_cg
desc: '''
- Check that we test with transactions that uses different speeds
i.e first segment in standard mode, followed by segments in dual or quad mode
'''
}
{
name: passthrough_cg
desc: '''
Check that the pass through data is transmitted instead of the data in the tx fifo.
- Cover that passthrough is activated when a normal transaction is in progress.
- Cover that data on the passthrough interface is ignored while passthroug disabled.
'''
}
]
}