Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bespoke-silicon-group/bsg_sv2v

A tool that converts SystemVerilog to Verilog. Uses Design Compiler, so it is 100% compatible.
https://github.com/bespoke-silicon-group/bsg_sv2v

Last synced: 18 days ago
JSON representation

A tool that converts SystemVerilog to Verilog. Uses Design Compiler, so it is 100% compatible.

Awesome Lists containing this project

README

        

# BSG SystemVerilog to Verilog (SV2V)

BSG SV2V takes a hardware design written in SystemVerilog and converts it into
a single HDL file that is Verilog-2005 compliant. The Verilog-2005 standard is
compatible with a much wider variety of CAD tools, thus this converter can help
bridge the gap between code bases employing advanced synthesizable
SystemVerilog features and older or less sophisticated tools.

The tool uses Synopsys Design Compiler (DC) to perform elaboration of the
design, and then post-processes to map DC's gtech/generic/datapath
representation back to standard Verilog. Thus a DC license is required by the
party running the tool, but is not required to use the converted file.

This approach maximizes compatibility with code that was written and targets
DC. Of course it would also be neat if somebody wrote a totally open source SV
to V!

Here is a [Youtube Demo](https://youtu.be/H3p5hwI8WR0).

## Setup

For this converter, you will need Synopsys Design Compiler installed (verified
on version M-2016.12-SP5-5) and access to a valid license file. If you have
access to *bsg_cadenv* and it is setup for the machine you are working on, then
you can simply clone *bsg_sv2v* and *bsg_cadenv* into the same directory and
the CAD tools should be setup automatically to run on our machines. For all
other users, you should open the Makefile in the root of the repository and set
the following two variables:

```
export LM_LICENSE_FILE ?=
```

```
export DC_SHELL ?=
```

The BSG SV2V converter also depends on
[Icarus Verilog](http://iverilog.icarus.com/),
[Pyverilog](https://pypi.org/project/pyverilog/), and
[pypy](https://pypy.org/). To download and build these tools, simply run:

```
$ make tools
```

## Usage

### Design Filelist

To use the BSG SV2V converter flow, first you must first create a filelist. The
filelist is the main way of linking together all of the bits to elaborate the
design. The format of the filelist is fairly basic and is based on Synopsys VCS
filelists. Each line in the filelist can be 1 of 5 things:

- A comments starting with the `#` character
- A macro definition in the format `+define+NAME=VALUE`
- A top-level parameter definition in the format `-pvalue+NAME=VALUE`
- An include search directory in the format `+incdir+DIRECTORY`
- An HDL file path (no format, just the file path)

You may also use environment variables inside the filelist by using the `$`
character followed by the name of the environment variable.

Below is a mock filelist as an example:

```bash
### My Design Filelist
# Macros
+define+SYNTHESIS
+define+DEBUG=0
# Parameters
-pvalue+data_width=32
# Search paths
+incdir+$INCLUDE_DIR/vh/
+incdir+$INCLUDE_DIR/pkgs/
# Files
$SRC_DIR/top.v
$SRC_DIR/sub_design/file1.v
$SRC_DIR/sub_design/file2.v
$SRC_DIR/sub_design/file3.v
```

### Running the Flow

Now that you have setup the tools and created a design filelist, you are ready
to run the flow! The main target is:

```
$ make convert_sv2v DESIGN_NAME= DESIGN_FILELIST= DESIGN_DIRECTORIES_MK=
```

If you'd prefer, you can modify the Makefile and set `DESIGN_NAME`,
`DESIGN_FILELIST`, and `DESIGN_DIRECTORIES_MK` rather than specifying them as
part of the makefile target. `DESIGN_NAME` should be set to the name of the
toplevel module in the design and `DESIGN_FILELIST` should be the filelist for
the design discussed in the previous section. `DESIGN_DIRECTORIES_MK` is
optional and can point to a makefile fragment that can setup environment
variables for use inside the design filelist.

This command will first launch Synopsys Design Compiler and elaborate the
design. It will then call a python script that will take the elaborated design
and turn it back into synthesizable RTL that is Verilog-05 compatible. All
output files can be found in the `results` directory. The main converted file
will be in:

```
./results/${DESIGN_NAME}.sv2v.v
```

### Example

A very simple example has been include in the `examples` directory. To test out
the example, run:

```
$ make convert_sv2v DESIGN_NAME=gcd DESIGN_FILELIST=examples/gcd/gcd.flist
```

To see the converted file, run:

```
$ cat ./results/gcd.sv2v.v
```

### Log Level

The `bsg_elab_to_rtl.py` script logs various information throughout the process
of converting the DC elaborated netlist to RTL. By default, the logger level is
set to `info` however you can change the log level. Available options are `debug`,
`info`,`warning`,`error`, and `critical`. Inside of the Makefile, you can set the
`LOGLVL` variable to the logging level desired.

### Optimization Passes

As part of the BSG SV2V flow, after all components have been swapped with their RTL
equivalents, additional passes of the netlist are performed to try and cleanup and
optimize the netlist. By default, every optimization pass is enabled, however every
optimization pass can be disabled using flags passed to the `bsg_elab_to_rtl.py`
script. In the Makefile, you can add these flags to the `SV2V_OPTIONS` variable to
disable these optimizations.

| Optimization Name | Disable Flag | Description |
|:--------------------:|:----------------------:|:-------------------------------------------------------------------------------------------------------------------|
| Wire/Reg Declaration | no_wire_reg_decl_opt | Takes individual wire and reg declarations and combines them into comma separated multi-variable declarations. |
| Always@ Reduction | no_always_at_redux_opt | Squashes always@ blocks based on sensitivity lists and conditional statements. |
| Concat Reduction | no_concat_redux_opt | Squashes bits in large concats that share the same base bus name. |

### Adding Wrapper Module

BSG SV2V supports adding a wrapper module for the toplevel by using the
optional `-wrapper ` flag (where `` is the wrapper module name).
This can be useful when using BSG SV2V in other infrastructure where you would
like to control the toplevel module name. To determine which module is the
toplevel that should be wrapper, the user must define the `DESIGN_NAME`
environment variable. You can also add the `-wrapper` flag to the
`SV2V_OPTIONS` variable inside the Makefile.

### Converting Timing Constraints

BSG SV2V can also take an optional tcl or sdc file that will then be applied to
the design and written back out as an SDC file that has been fully expanded to
the given design (for example: if the folloing timing constraint is applied:
`set_output_delay 10 -clock clk [all_outputs]` the the resulting output SDC
file will expand that constraint such that every output port for the design has
a `set_output_delay` command. To specify a constraint file to convert, set the
`DESIGN_CONSTRAINTS_FILE` variable inside the Makefile or set the variable at
runtime using the following syntax:

```
$ make convert_sv2v DESIGN_CONSTRAINTS_FILE=
```

### Elaborating a Different Top-level Module

When dealing with hierarchical designs, it can some be useful to elaborate the
design higher up the logical hierarchy than the point that you are acutally
interested in (ie. the design being converted). This is primarily useful to
push parameters from higher up the hierarchy. To specify a different point to
elaborate, set the `DESIGN_ELAB_NAME` variable inside the Makefile or set the
variable at runtime using the following syntax:

```
$ make convert_sv2v DESIGN_ELAB_NAME=
```

Note: the point that you elaborate from must instantiate an instance of the
`DESIGN_NAME` module. Said another way, it must be higher up the local
hierarchy. Also, every instances of `DESIGN_NAME` must have the same
parameterization as there is no way to disambiguous which parameterization you
are interested in converting.