aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/docs/usrp3/sim/simulation_libraries.md
blob: bd9b877638cd294effefd3d5ba036556048bc8f9 (plain)
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
# Simulation Libraries

Several simulation libraries are available for use in your testbenches, in the
form of SystemVerilog packages, classes, and interfaces. The bus functional
models (BFM) are implemented as SystemVerilog classes and use SystemVerilog
interfaces to connect to your device under test (DUT). These classes provide
member functions and tasks for communicating with the BFMs.

A few commonly used SystemVerilog packages are described below. See each
package file for additional documentation.

## PktTestExec

`PktTestExec.sv` contains utilities for testbench reporting, assertions, and
simulation timeouts. The associated header file, `test_exec.svh`, contains
macros for use with PkgTestExec. These macros are used to implement
SystemVerilog assertions. The header also defines `timeunit` and
`timeprecision`.

**Note:** The `timeunit` must be `1ns` in order for PkgTestExec to use
and report times correctly.

### PkgTestExec Tasks and Functions

Below are some of the methods available in PkgTestExec. See `PkgTestExec.sv`
for additional documentation.

- <b>`start_tb(string tb_name, realtime time_limit = 10ms)`</b><br>
Called at the start of the testbench. A time limit can be specified to prevent 
the testbench from never ending.
- <b>`end_tb(bit finish = 1)`</b><br>
Called at the end of the testbench. Displays final results and optionally calls
`$finish`.
- <b>`start_test(string test_name, realtime time_limit = 0)`</b><br>
Called at the start of a test. A time limit can be given to cause an error if
the test takes longer than expected or never ends.
- <b>`end_test(int test_result = 1)`</b><br>
Called at the end of a test. A pass (1) or fail (0) can be passed to indicate
if the test passed or failed. Any failed assertion, using the `test_exec.svh`
macros, will also be considered when deciding if the test passed or failed. If
any fatal or error assertions failed during the test then it will be considered
to have failed.
- <b>`start_timeout(`<br>
     &nbsp;&nbsp;&nbsp;&nbsp;`output timeout_t  handle,`<br>
     &nbsp;&nbsp;&nbsp;&nbsp;`input  realtime   timeout_delay,`<br>
     &nbsp;&nbsp;&nbsp;&nbsp;`input  string     message = "Timeout",`<br>
     &nbsp;&nbsp;&nbsp;&nbsp;`input  severity_t severity = SEV_ERROR)`<br></b>
Called to start a timeout countdown. If the timeout is not ended before the
indicated simulation time elapses then an assertion of the given severity will
be thrown. This is very useful for ensuring that tests complete in a timely
manner and to report which timeout was exceeded.
- <b>`end_timeout(timeout_t handle)`</b><br>
Called to end a timeout countdown when it is no longer needed.

### Macros

The following macros are defined in `test_exec.svh`. These update internal
variables to track the state of the testbench and to report the final results.

- <b>`ASSERT_FATAL(EXPR, MESSAGE)`</b><br>
Encapsulates a SystemVerilog $assert with a $fatal severity.
- <b>`ASSERT_ERROR(EXPR, MESSAGE) `</b><br>
Encapsulates a SystemVerilog $assert with a $error severity.
- <b>`ASSERT_WARNING(EXPR, MESSAGE)`</b><br>
Encapsulates a SystemVerilog $assert with a $warning severity.
- <b>`ASSERT_INFO(EXPR, MESSAGE)`</b><br>
Encapsulates a SystemVerilog $assert with an $info severity.

Where:
- <b>`EXPR`</b> is the condition for the assertion (what you expect to be true)
- <b>`MESSAGE`</b> is the message string to report if the assertion fails

## PkgChdrUtils

The `PkgChdrUtils` package includes various definitions and functions for
interacting with the RFNoC network protocol, called the Condensed Hierarchical
Datagram for RFNoC (CHDR). See `PkgChdrUtils.sv` for additional documentation.

## PkgChdrData

The `PkgChdrData` package contains the CHDR and item data types, as well as
utilities, that are useful for interacting with RFNoC data. An *item* refers to
an RF data sample or whatever unit of data an RFNoC block expects.

For example, the CHDR protocol data word type (`chdr_word_t`) and the RF sample
data type (`item_t`) can be defined using the following example:

    localparam CHDR_W = 64;    // CHDR bus width
    localparam ITEM_W = 32;    // RF data sample size (sc16)
    typedef ChdrData #(CHDR_W, ITEM_W)::chdr_word_t chdr_word_t;
    typedef ChdrData #(CHDR_W, ITEM_W)::item_t      item_t;

SystemVerilog queues are used to store CHDR words and data samples. A queue of
CHDR words or data samples can be reorganized into queues of different data
widths using the following example:

    chdr_word_t chdr_words[$];  // Queue of CHDR packet words
    item_t      samples[$];     // Queue of RF data samples
    logic [7:0] bytes[$];       // Queue of bytes
    
    // Convert the CHDR words to samples
    samples = ChdrData#(CHDR_W, ITEM_W)::chdr_to_item(chdr_words);
    
    // Convert the samples to CHDR words
    chdr_words = ChdrData#(CHDR_W, ITEM_W)::item_to_chdr(samples);
    
    // Convert the samples to a queue of bytes
    bytes = ChdrData#(ITEM_W, 8)::chdr_to_item(samples);

    // Convert the bytes to a queue of samples
    bytes = ChdrData#(ITEM_W, 8)::item_to_chdr(samples);

## PkgRfnocBlockCtrlBfm

The `PkgRfnocBlockCtrlBfm` package contains the `RfnocBlockCtrlBfm` bus
functional model (BFM) used to emulate a software block controller for an RFNoC
block. This is the BFM used to interact with an RFNoC block in simulation. See
the \ref md_usrp3_sim_writing_sim_top "testbench example" for an example
of how to instantiate and connect the BFM to your DUT.

To be used, the BFM must be connected to the RFNoC block using an
`RfnocBackendIf` interface for the RFNoC backend interface and `AxiStreamIf`
interfaces for the AXIS-CHDR ports.

Once connected, several member functions are available through the BFM. A few
examples are shown below, but many more are available. Refer to
`PkgRfnocBlockCtrlBfm.sv` for additional documentation.

- <b>`RfnocBlockCtrlBfm::run()`</b><br>
Start the BFMs running. This should be called at the start of the testbench
after `start_tb()` and before the BFM is used.
- <b>`RfnocBlockCtrlBfm::reg_read(input  ctrl_address_t addr, output ctrl_word_t word)`</b><br>
Read a register from the RFNoC block.
- <b>`RfnocBlockCtrlBfm::reg_write(ctrl_address_t addr, ctrl_word_t word)`</b><br>
Write to a register on the RFNoC block.
- <b>`send_items(int port, item_t items[$], chdr_word_t metadata[$] = {}, packet_info_t pkt_info = 0)`</b><br>
Enqueue a packet of samples (or other data items) to be sent by the BFM to the
RFNoC block on the indicated block port.
- <b>`recv(int port, output chdr_word_t data[$], output int data_bytes)`</b><br>
Recv a packet of samples (or other data items) from the indicated port on the
RFNoC block.
- <b>`set_master_stall_prob(int stall_probability = DEF_STALL_PROB)`</b><br>
Set the probability, as value from 0-100, of the BFM's AXI-Stream master
stalling (deasserting TVALID) between transfers.
- <b>`set_slave_stall_prob(int stall_probability = DEF_STALL_PROB)`</b><br>
Set the probability, as value from 0-100, of the BFM's AXI-Stream slave
stalling (deasserting TREADY) on a given clock cycle.

The level of push-back on the flow control used by the AXI-Stream interfaces of
the BFM are controlled by setting a probability. This allows you to easily test
underflow and overflow tolerance in your testbenches.

Low-level tasks and functions are also available for inputting raw packets
directly.

## sim_clock_gen

The `sim_clock_gen` module makes it easy create clocks and synchronous resets,
and to interact with them. See `sim_clock_gen.sv` for additional documentation.

Some features include:

- Start and stop the clock
- Change the frequency
- Change the duty cycle
- Kill the clock (prevent any new simulation events)
- Wait for \em n rising/falling clock edges

## PkgAxiStream

The `PkgAxiStreamBfm` package contains the `AxistreamPacket` and `AxiStreamBfm`
classes which are used to model AXI4-Stream interfaces in the testbenches.
`AxiStreamIf` is the interface used for AXI-Stream. The RFNoC CHDR BFMs inherit
from AxiStreamBfm in order to implement the AXI-Stream interfaces used by
RFNoC.

The AXI-Stream BFMs provide typical SystemVerilog `put()`, `get()`,
`try_put()`, and `try_get()` tasks and functions for interacting with the
models. Many other useful functions are also available. See the package file
for details.