2016-11-12 22:33:28 +01:00
yosys – Yosys Open SYnthesis Suite
2013-01-05 11:13:26 +01:00
===================================
2013-02-28 14:17:57 +01:00
This is a framework for RTL synthesis tools. It currently has
extensive Verilog-2005 support and provides a basic set of
synthesis algorithms for various application domains.
2013-01-05 11:13:26 +01:00
2013-02-28 14:17:57 +01:00
Yosys can be adapted to perform any synthesis job by combining
the existing passes (algorithms) using synthesis scripts and
2013-03-16 21:20:38 +01:00
adding additional passes as needed by extending the yosys C++
code base.
2013-01-05 11:13:26 +01:00
Yosys is free software licensed under the ISC license (a GPL
2013-03-16 21:20:38 +01:00
compatible license that is similar in terms to the MIT license
2013-01-05 11:13:26 +01:00
or the 2-clause BSD license).
2024-10-17 00:11:10 +02:00
Third-party software distributed alongside this software
is licensed under compatible licenses.
Please refer to `abc` and `libs` subdirectories for their license terms.
2013-01-05 11:13:26 +01:00
2019-03-01 23:29:17 +01:00
Web Site and Other Resources
============================
2013-07-21 15:04:37 +02:00
More information and documentation can be found on the Yosys web site:
2021-06-09 12:16:56 +02:00
- https://yosyshq.net/yosys/
2019-03-01 23:29:17 +01:00
The "Documentation" page on the web site contains links to more resources,
including a manual that even describes some of the Yosys internals:
2021-06-09 12:16:56 +02:00
- https://yosyshq.net/yosys/documentation.html
2019-03-01 23:29:17 +01:00
Users interested in formal verification might want to use the formal verification
front-end for Yosys, SymbiYosys:
- https://symbiyosys.readthedocs.io/en/latest/
- https://github.com/YosysHQ/SymbiYosys
2013-07-21 15:04:37 +02:00
2022-01-04 15:44:37 +01:00
Installation
============
Yosys is part of the [Tabby CAD Suite ](https://www.yosyshq.com/tabby-cad-datasheet ) and the [OSS CAD Suite ](https://github.com/YosysHQ/oss-cad-suite-build )! The easiest way to use yosys is to install the binary software suite, which contains all required dependencies and related tools.
* [Contact YosysHQ ](https://www.yosyshq.com/contact ) for a [Tabby CAD Suite ](https://www.yosyshq.com/tabby-cad-datasheet ) Evaluation License and download link
* OR go to https://github.com/YosysHQ/oss-cad-suite-build/releases to download the free OSS CAD Suite
* Follow the [Install Instructions on GitHub ](https://github.com/YosysHQ/oss-cad-suite-build#installation )
Make sure to get a Tabby CAD Suite Evaluation License if you need features such as industry-grade SystemVerilog and VHDL parsers!
For more information about the difference between Tabby CAD Suite and the OSS CAD Suite, please visit https://www.yosyshq.com/tabby-cad-datasheet
2022-01-17 12:49:32 +01:00
Many Linux distributions also provide Yosys binaries, some more up to date than others. Check with your package manager!
2022-01-04 15:44:37 +01:00
Building from Source
====================
2013-01-06 14:40:15 +01:00
2024-06-17 17:08:13 +02:00
You need a C++ compiler with C++17 support (up-to-date CLANG or GCC is
2013-10-11 22:25:23 +02:00
recommended) and some standard tools such as GNU Flex, GNU Bison, and GNU Make.
2017-02-04 17:02:13 +01:00
TCL, readline and libffi are optional (see ``ENABLE_*`` settings in Makefile).
2016-11-19 17:34:13 +01:00
Xdot (graphviz) is used by the ``show`` command in yosys to display schematics.
2017-02-07 15:12:31 +01:00
2016-09-03 18:49:53 +02:00
For example on Ubuntu Linux 16.04 LTS the following commands will install all
2014-09-02 03:52:46 +02:00
prerequisites for building yosys:
2024-07-22 21:33:46 +02:00
$ sudo apt-get install build-essential clang lld bison flex \
2018-05-15 14:19:05 +02:00
libreadline-dev gawk tcl-dev libffi-dev git \
2019-04-03 11:18:34 +02:00
graphviz xdot pkg-config python3 libboost-system-dev \
2019-07-26 11:23:58 +02:00
libboost-python-dev libboost-filesystem-dev zlib1g-dev
2014-04-18 10:19:46 +02:00
2020-02-15 09:44:32 +01:00
Similarily, on Mac OS X Homebrew can be used to install dependencies (from within cloned yosys repository):
2017-02-07 15:12:31 +01:00
2017-09-28 01:52:20 +02:00
$ brew tap Homebrew/bundle & & brew bundle
2019-08-23 10:37:50 +02:00
or MacPorts:
2017-02-09 23:08:21 +01:00
$ sudo port install bison flex readline gawk libffi \
2019-08-23 10:37:50 +02:00
git graphviz pkgconfig python36 boost zlib tcl
2017-02-07 15:12:31 +01:00
2018-05-06 18:22:18 +02:00
On FreeBSD use the following command to install all prerequisites:
# pkg install bison flex readline gawk libffi\
2019-07-14 18:25:07 +02:00
git graphviz pkgconf python3 python36 tcl-wrapper boost-libs
2018-05-06 18:22:18 +02:00
On FreeBSD system use gmake instead of make. To run tests use:
% MAKE=gmake CC=cc gmake test
2018-09-19 10:16:53 +02:00
For Cygwin use the following command to install all prerequisites, or select these additional packages:
2019-07-26 11:23:58 +02:00
setup-x86_64.exe -q --packages=bison,flex,gcc-core,gcc-g++,git,libffi-devel,libreadline-devel,make,pkg-config,python3,tcl-devel,boost-build,zlib-devel
2018-09-19 10:16:53 +02:00
2024-03-07 23:09:03 +01:00
The environment variable `CXX` can be used to control the C++ compiler used, or
run one of the following:
2013-03-18 19:26:35 +01:00
2014-09-02 03:52:46 +02:00
$ make config-clang
$ make config-gcc
2013-03-18 19:26:35 +01:00
2024-03-07 23:09:03 +01:00
Note that these will result in `make` ignoring the `CXX` environment variable,
unless `CXX` is assigned in the call to make, e.g.
$ make CXX=$CXX
2024-08-05 19:28:09 +02:00
The Makefile has many variables influencing the build process. These can be
adjusted by modifying the Makefile.conf file which is created at the
`make config-...` step (see above), or they can be set by passing an option
to the make command directly.
For example, if you have clang, and (a compatible version of) `ld.lld`
available in PATH, it's recommended to speed up incremental builds with
lld by enabling LTO:
$ make ENABLE_LTO=1
2024-10-22 12:45:06 +02:00
On macOS, LTO requires using clang from homebrew which isn't in PATH
rather than xcode clang.
$ make ENABLE_LTO=1 CXX=$(brew --prefix)/opt/llvm/bin/clang++
2013-03-18 19:26:35 +01:00
For other compilers and build configurations it might be
necessary to make some changes to the config section of the
2024-10-22 12:45:06 +02:00
Makefile. It's also an alternative way to set the make variables
mentioned above.
2013-01-06 14:40:15 +01:00
2016-11-12 22:33:28 +01:00
$ vi Makefile # ..or..
2014-04-18 10:19:46 +02:00
$ vi Makefile.conf
2013-03-18 19:26:35 +01:00
To build Yosys simply type 'make' in this directory.
2013-01-06 14:40:15 +01:00
$ make
$ sudo make install
2013-11-27 09:08:35 +01:00
Note that this also downloads, builds and installs ABC (using yosys-abc
2015-08-14 22:23:01 +02:00
as executable name).
2013-06-08 23:48:19 +02:00
2019-03-16 13:20:59 +01:00
Tests are located in the tests subdirectory and can be executed using the test target. Note that you need gawk as well as a recent version of iverilog (i.e. build from git). Then, execute tests via:
$ make test
2020-04-24 20:07:13 +02:00
To use a separate (out-of-tree) build directory, provide a path to the Makefile.
$ mkdir build; cd build
$ make -f ../Makefile
Out-of-tree builds require a clean source tree.
2017-02-07 15:12:31 +01:00
Getting Started
===============
2013-03-16 21:20:38 +01:00
Yosys can be used with the interactive command shell, with
synthesis scripts or with command line arguments. Let's perform
2013-01-06 14:40:15 +01:00
a simple synthesis job using the interactive command shell:
$ ./yosys
yosys>
2016-11-19 17:34:13 +01:00
the command ``help`` can be used to print a list of all available
commands and ``help < command > `` to print details on the specified command:
2013-02-28 14:17:57 +01:00
yosys> help help
2019-07-29 10:40:30 +02:00
reading and elaborating the design using the Verilog frontend:
2013-01-06 14:40:15 +01:00
2019-07-29 10:40:30 +02:00
yosys> read -sv tests/simple/fiedler-cooley.v
yosys> hierarchy -top up3down5
2013-01-06 14:40:15 +01:00
2023-07-10 12:54:02 +02:00
writing the design to the console in the RTLIL format used by Yosys
internally:
2013-01-06 14:40:15 +01:00
2023-07-10 12:54:02 +02:00
yosys> write_rtlil
2013-01-06 14:40:15 +01:00
2016-11-19 17:34:13 +01:00
convert processes (``always`` blocks) to netlist elements and perform
2013-01-06 14:40:15 +01:00
some simple optimizations:
yosys> proc; opt
2016-11-19 17:34:13 +01:00
display design netlist using ``xdot``:
2013-01-06 14:40:15 +01:00
2013-04-27 14:41:46 +02:00
yosys> show
2016-11-19 17:34:13 +01:00
the same thing using ``gv`` as postscript viewer:
2013-04-27 14:41:46 +02:00
yosys> show -format ps -viewer gv
2013-01-06 14:40:15 +01:00
translating netlist to gate logic and perform some simple optimizations:
yosys> techmap; opt
2015-08-14 22:23:01 +02:00
write design netlist to a new Verilog file:
2013-01-06 14:40:15 +01:00
yosys> write_verilog synth.v
or using a simple synthesis script:
$ cat synth.ys
2019-07-29 10:40:30 +02:00
read -sv tests/simple/fiedler-cooley.v
hierarchy -top up3down5
proc; opt; techmap; opt
2013-01-06 14:40:15 +01:00
write_verilog synth.v
2013-01-16 17:32:11 +01:00
$ ./yosys synth.ys
2013-01-06 14:40:15 +01:00
2013-12-08 15:42:27 +01:00
If ABC is enabled in the Yosys build configuration and a cell library is given
2016-11-19 19:51:50 +01:00
in the liberty file ``mycells.lib``, the following synthesis script will
synthesize for the given cell library:
2013-01-06 14:40:15 +01:00
2019-07-29 10:40:30 +02:00
# read design
read -sv tests/simple/fiedler-cooley.v
hierarchy -top up3down5
2013-01-06 14:40:15 +01:00
# the high-level stuff
2019-07-29 10:40:30 +02:00
proc; fsm; opt; memory; opt
2013-01-06 14:40:15 +01:00
# mapping to internal cell library
2013-02-28 14:17:57 +01:00
techmap; opt
2013-01-06 14:40:15 +01:00
# mapping flip-flops to mycells.lib
dfflibmap -liberty mycells.lib
# mapping logic to mycells.lib
abc -liberty mycells.lib
# cleanup
2014-01-29 11:11:10 +01:00
clean
2013-01-06 14:40:15 +01:00
2013-10-31 11:15:00 +01:00
If you do not have a liberty file but want to test this synthesis script,
2019-07-29 10:40:30 +02:00
you can use the file ``examples/cmos/cmos_cells.lib`` from the yosys sources
as simple example.
2013-10-31 11:15:00 +01:00
2015-11-12 13:15:19 +01:00
Liberty file downloads for and information about free and open ASIC standard
cell libraries can be found here:
2014-06-28 12:11:42 +02:00
2016-11-12 22:33:28 +01:00
- http://www.vlsitechnology.org/html/libraries.html
- http://www.vlsitechnology.org/synopsys/vsclib013.lib
2014-06-28 12:11:42 +02:00
2016-11-19 19:51:50 +01:00
The command ``synth`` provides a good default synthesis script (see
2019-07-29 10:40:30 +02:00
``help synth``):
2014-09-14 16:09:06 +02:00
2019-07-29 10:40:30 +02:00
read -sv tests/simple/fiedler-cooley.v
synth -top up3down5
2014-09-14 16:09:06 +02:00
2019-07-29 10:40:30 +02:00
# mapping to target cells
2014-09-14 16:09:06 +02:00
dfflibmap -liberty mycells.lib
abc -liberty mycells.lib
clean
2019-07-29 10:40:30 +02:00
The command ``prep`` provides a good default word-level synthesis script, as
used in SMT-based formal verification.
2013-01-06 14:40:15 +01:00
2024-11-05 01:42:16 +01:00
Additional information
======================
The ``read_verilog`` command, used by default when calling ``read`` with Verilog
2024-11-08 16:30:06 +01:00
source input, does not perform syntax checking. You should instead lint your
source with another tool such as
2024-11-05 01:42:16 +01:00
[Verilator ](https://www.veripool.org/verilator/ ) first, e.g. by calling
``verilator --lint-only``.
2016-04-03 14:26:46 +02:00
Building the documentation
==========================
2016-05-09 12:43:49 +02:00
Note that there is no need to build the manual if you just want to read it.
2022-12-07 17:51:07 +01:00
Simply visit https://yosys.readthedocs.io/en/latest/ instead.
2016-05-09 12:43:49 +02:00
2022-12-07 17:51:07 +01:00
In addition to those packages listed above for building Yosys from source, the
following are used for building the website:
2022-11-15 12:55:22 +01:00
2023-08-02 23:20:24 +02:00
$ sudo apt install pdf2svg faketime
2022-11-15 12:55:22 +01:00
2024-08-23 02:53:38 +02:00
Or for MacOS, using homebrew:
$ brew install pdf2svg libfaketime
2022-11-15 12:55:22 +01:00
PDFLaTeX, included with most LaTeX distributions, is also needed during the
2023-08-02 23:20:24 +02:00
build process for the website. Or, run the following:
2023-08-28 00:09:34 +02:00
$ sudo apt install texlive-latex-base texlive-latex-extra latexmk
2022-11-15 12:55:22 +01:00
2024-09-03 09:15:12 +02:00
Or for MacOS, using homebrew:
$ brew install basictex
$ sudo tlmgr update --self
$ sudo tlmgr install collection-latexextra latexmk tex-gyre
2022-11-15 12:55:22 +01:00
The Python package, Sphinx, is needed along with those listed in
`docs/source/requirements.txt` :
$ pip install -U sphinx -r docs/source/requirements.txt
From the root of the repository, run `make docs` . This will build/rebuild yosys
as necessary before generating the website documentation from the yosys help
commands. To build for pdf instead of html, call
`make docs DOC_TARGET=latexpdf` .
2024-12-04 21:21:12 +01:00
Building for Windows
====================
Creating the Visual Studio Template Project
-------------------------------------------
1. Create an empty Visual C++ Win32 Console App project
Microsoft Visual Studio Express 2013 for Windows Desktop
Open New Project Wizard (File -> New Project..)
Project Name: YosysVS
Solution Name: YosysVS
[X] Create directory for solution
[ ] Add to source control
[X] Console applications
[X] Empty Project
[ ] SDL checks
2. Open YosysVS Project Properties
Select Configuration: All Configurations
C/C++ -> General -> Additional Include Directories
Add: ..\yosys
C/C++ -> Preprocessor -> Preprocessor Definitions
Add: _YOSYS_ ;_CRT_SECURE_NO_WARNINGS
3. Resulting file system tree:
YosysVS/
YosysVS/YosysVS
YosysVS/YosysVS/YosysVS.vcxproj
YosysVS/YosysVS/YosysVS.vcxproj.filters
YosysVS/YosysVS.sdf
YosysVS/YosysVS.sln
YosysVS/YosysVS.v12.suo
4. Zip YosysVS as YosysVS-Tpl-v1.zip
Compiling with Visual Studio
----------------------------
Visual Studio builds are not directly supported by build scripts, but they are still possible.
1. Easy way
- Go to https://github.com/YosysHQ/yosys/actions/workflows/vs.yml?query=branch%3Amain
- Click on the most recent completed run
- In Artifacts region find vcxsrc and click on it to download
- Unpack downloaded ZIP file
- Open YosysVS.sln with Visual Studio
2. Using WSL or MSYS2
- Make sure to have make, python3 and git available
- Git clone yosys repository
- Execute ```make vcxsrc YOSYS_VER=latest```
- File yosys-win32-vcxsrc-latest.zip will be created
- Transfer that file to location visible by Windows application
- Unpack ZIP
- Open YosysVS.sln with Visual Studio