File size: 3,999 Bytes
cb65407 | 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 | ##################################
The cocotb ``regulator`` Testbench
##################################
.. versionadded:: 1.5
This is the testbench :mod:`test_regulator` for the design ``regulator`` showing
how cocotb can be used in an analog-mixed signal (AMS) simulation.
.. note:: The analog probe module used in this testcase is currently only implemented for the
Cadence Incisive and Xcelium simulators (with the AMS option available).
Help is appreciated to provide equivalent modules for other simulators.
******************
Overview Schematic
******************
.. image:: diagrams/svg/example_regulator.svg
:width: 100%
**********
The Design
**********
The design ``i_regulator`` consists of a trimmable regulator model written in Verilog-AMS
(instance name ``i_regulator_block``), and load resistor (instance name ``i_resistor``).
.. literalinclude:: ../../examples/mixed_signal/hdl/regulator.sv
:caption: regulator.sv
:language: systemverilog
:start-at: module regulator
The regulator block itself is modeled as shown below:
.. literalinclude:: ../../examples/mixed_signal/hdl/regulator_block.vams
:caption: regulator_block.vams
:language: systemverilog
:start-at: `include "disciplines.vams"
*************
The Testbench
*************
The testbench consists of both an :term:`HDL` part and a Python/cocotb part.
While having HDL as part of the testbench is not common with cocotb, it is perfectly possible.
The HDL part of the Testbench
=============================
The testbench HDL part is written in SystemVerilog and instantiates the design described above
as ``i_regulator``.
It also contains a probe module for analog values as instance ``i_analog_probe`` —
imagine this being a multimeter that you quickly connect to different nodes in the design,
measuring either voltage or current.
.. literalinclude:: ../../examples/mixed_signal/hdl/tb_regulator.sv
:caption: tb_regulator.sv
:language: systemverilog
:start-at: import nettypes_pkg
The probe module can capture voltage and current of a node specified by ``node_to_probe``
(a string in this module containing a hierarchical path).
The capturing occurs whenever there is an edge on the logic signals
``probe_voltage_toggle`` or ``probe_current_toggle``.
The captured values can be read on real-value signals ``voltage`` and ``current`` in this module.
Here is the capture code for ``voltage`` with the "user-interface" highlighted:
.. literalinclude:: ../../examples/mixed_signal/hdl/analog_probe_cadence.sv
:caption: analog_probe_cadence.sv
:language: systemverilog
:start-at: var string node_to_probe
:end-at: end // probe_voltage
:emphasize-lines: 1-4
:dedent: 2
The cocotb part of the Testbench
================================
test_regulator_plot
-------------------
The testcase first sets a ``vdd`` voltage and three different trim values,
saving the resulting output voltage ``vout`` for each.
The saved data is written as a PNG file containing a graph.
.. note:: This testcase depends on `matplotlib <https://matplotlib.org/>`_.
.. image:: regulator.png
To run this testcase, call:
.. code-block:: bash
make SIM=xcelium TOPLEVEL=tb_regulator MODULE=test_regulator_plot
test_regulator_trim
-------------------
This testcase runs an automatic trimming routine :meth:`~test_regulator.Regulator_TB.find_trim_val()`
to find the best trim value for a given target voltage.
The determined trim value and the resulting regulator output voltage
are printed to the console.
.. code-block:: bash
0.00ns INFO Running trimming algorithm for target voltage 3.013 V
3.00ns INFO Best trimming value is -1 --> voltage is 3.1 V (difference to target is 0.087 V)
Note that the output voltage does not exactly hit the target value because of
the discrete nature of the trim steps.
To run this testcase, call:
.. code-block:: bash
make SIM=xcelium TOPLEVEL=tb_regulator MODULE=test_regulator_trim
|