A toolkit of uvm tb generate.
Project description
icdk (IC Deveplopment Toolkit)
Introduction
uvmgen includes a uvm testbench generation tool uvmgen
and an experimental code snippets generation tool sudef
.
uvmgen
is a command-line interface (CLI) program for generating testbench structures based on a provided JSON/YAML/TOML/XML configuration file.sudef
is an command-line tool designed to process SystemVerilog files containing mako-style templates. By parsing specific comment formats, sudef generates SystemVerilog code that adheres to the defined templates.
Installing
Prerequisites
- Operating systems
- Windows
- Linux
- macOS
- Python: 3.8 ~ 3.12
Use Python's package installer pip to install uvmgen:
python3 -m pip install uvmgen
uvmgen - uvm testbench generator
Usage
The basic usage of uvmgen is as follows:
uvmgen --input <input_cfg_file> --output <output_directory>
Options
--input <input_cfg_file>
: Specifies the input configuration file containing the configuration for the testbench structure.--output <output_directory>
: Specifies the directory where the generated files will be placed.
Help
For additional help and options, you can use the -h or --help option:
uvmgen -h
SyoSil ApS UVM Scoreboard
The SyoSil ApS UVM Scoreboard is a feature of uvmgen that allows you to integrate SyoSil ApS UVM Scoreboard in environments. To use this feature, you need to add pk_syoscb
to import_pkgs
of env_pkg, and set the SYOSCB_HOME
environment variables to SyoSil ApS UVM Scoreboard installed directory. The bash command is printed after uvmgen is successful, and the other shells can be replaced with the corresponding commands.
Example
Suppose you have a JSON configuration file named testbench_config.json and you want to generate the testbench structure in a directory named tb, you would run the following command:
uvmgen --input testbench_config.json --output tb
# or
uvmgen -i testbench_config.json -o tb
# or
uvmgen -i testbench_config.json
You can use test/json/example/typical.json
to generate a complete UVM environment, or use test/json/base_pkg/***.***
to generate a single package.
sudef - SV File Template Generator
Overview
sudef is a command-line tool designed to process SystemVerilog (.sv) files that contain mako-style templates in comments. The tool generates code based on the provided templates, supporting both inline code generation and the inclusion of external files. By invoking sudef , you can automatically generate the desired SystemVerilog code based on the specified template definitions.
Usage
The basic usage of sudef is as follows:
sudef <input>
where <input>
is the path to the SystemVerilog file or directory, and if <input>
is a directory, sudef will process all .sv files in the directory and subdirectories.
- Inline Mode
Whensuper_define()
is called with no arguments, sudef operates in inline mode. In this mode, the generated code is directly inserted into the original .sv file, replacing the template placeholders with the appropriate values. - External File Mode
Whensuper_define()
is called with arguments, sudef enters external file mode. In this mode, the generated code is written to a separate external file. The path and name of the external file are specified as arguments tosuper_define()
.
Experimental Nature
Due to its experimental nature, sudef may contain features that are not yet fully tested. You may encounter unexpected behavior or errors during usage. We encourage you to report any issues or suggested improvements to help us continually improve this program.
Example
Let's consider a simple example where we have a SystemVerilog file named example.sv that contains a mako template:
/* super_define()
<%
%>\
% for i in range(3):
int cfg_${i};
% endfor
`uvm_object_utils_begin(mycfg)
% for i in range(3):
`uvm_field_int(cfg_${i}, UVM_DEFAULT)
% endfor
`uvm_object_utils_end
*/
You can use sudef to generate the code by running:
sudef example.sv
The generated code will be:
/* super_define()
<%
%>\
% for i in range(3):
int cfg_${i};
% endfor
`uvm_object_utils_begin(mycfg)
% for i in range(3):
`uvm_field_int(cfg_${i}, UVM_DEFAULT)
% endfor
`uvm_object_utils_end
*/
// super_define generate begin
int cfg_0;
int cfg_1;
int cfg_2;
`uvm_object_utils_begin(mycfg)
`uvm_field_int(cfg_0, UVM_DEFAULT)
`uvm_field_int(cfg_1, UVM_DEFAULT)
`uvm_field_int(cfg_2, UVM_DEFAULT)
`uvm_object_utils_end
// super_define generate end
If you want to generate the code to an external file, you can use super_define() with arguments:
/* super_define(cfg_inc.svh)
<%
%>\
% for i in range(3):
int cfg_${i};
% endfor
`uvm_object_utils_begin(mycfg)
% for i in range(3):
`uvm_field_int(cfg_${i}, UVM_DEFAULT)
% endfor
`uvm_object_utils_end
*/
This will generate the same code as above but write it to a file named cfg_inc.svh and included by this file.
Contribute
Contributions are always welcome! Simple fork this repo and submit a pull request.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file uvmgen-0.6.1.tar.gz
.
File metadata
- Download URL: uvmgen-0.6.1.tar.gz
- Upload date:
- Size: 144.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06a69a89957f28b4e69d2c75f11eca5422845ef4b2cd34dbbe989463538cc864 |
|
MD5 | 1a9320603356c7e4225db0305bc0963d |
|
BLAKE2b-256 | d6c82c2b3658082141bb26194ce2700d29b45dbe9a6339c9405a1dd2bd284ee8 |
File details
Details for the file uvmgen-0.6.1-py3-none-any.whl
.
File metadata
- Download URL: uvmgen-0.6.1-py3-none-any.whl
- Upload date:
- Size: 208.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6798a5e4bae741ffb92e4b140610b0dc0aa9a253028764d51492086c97113caf |
|
MD5 | 73c9776d1ebd23b0e14e3e9e53cbdb20 |
|
BLAKE2b-256 | d304a2db9194ef84c96d9dfa1018d0dbe26b708e874335c573c1728c13ab3912 |