Note for all Windows users: many tools we‘re using can in theory work on Windows. However, we didn’t test on Windows and things will be broken there. Unless you are experienced in debugging various tool problems on Windows using Linux will improve your developer experience significantly.
This guide makes assumes the following system setup.
TODO: Be more specific about the system requirements, especially the Linux distribution.
By convention tools which are not provided through a package manager will be installed into /tools
. This directory can be replaced by any sufficiently large directory without spaces in the directory name. It is assumed that the user executing the build instructions has full write permissions to this directory; the following commands ensure that.
$ sudo mkdir /tools $ sudo chown $(id -un) /tools
If you intend to contribute back to OpenTitan you will want your own fork of the repository on GitHub and to work using that, see the [notes for using GitHub]({{< relref “doc/ug/github_notes.md” >}}). Otherwise make a simple clone of the main OpenTitan repository.
$ cd <working-area> $ git clone https://github.com/lowRISC/opentitan.git
The repository will be checked out into <working-area>/opentitan
(this is the $REPO_TOP
path).
A number of software packages from the distribution's package manager is required. All installation instructions below are for Ubuntu 16.04. Adjust as necessary for other Linux distributions.
{{< apt_cmd >}}
Some tools in this repository are written in Python 3 and require Python dependencies to be installed through pip
. (Note that the diff_generated_util_output.py
tool works better with Python 3.6 or later where the order is preserved in dict
types, earlier versions of Python will show spurious differences caused by things being reordered.)
$ cd $REPO_TOP $ pip3 install --user -r python-requirements.txt
The pip
installation instructions use the --user
flag to install without root permissions. Binaries are installed to ~/.local/bin
; check that this directory is listed in your PATH
by running fusesoc --version
. If the fusesoc
binary is not found, add ~/.local/bin
to your PATH
, e.g. by modifying your ~/.bashrc
file.
To build device software you need a baremetal RV32IMC compiler toolchain. You can either build your own or use a prebuilt one. We recommend installing the toolchain to /tools/riscv
.
lowRISC provides a prebuilt GCC toolchain for the OpenTitan project. Download the file starting with lowrisc-toolchain-gcc-rv32imc-
from GitHub releases and unpack it to /tools/riscv
.
Or alternatively, use a in-tree helper script.
$ cd $REPO_TOP $ ./util/get-toolchain.py
Install all build prerequisites listed in the documentation.
Build the toolchain (this should be done outside the $REPO_TOP
directory):
$ git clone --recursive https://github.com/riscv/riscv-gnu-toolchain $ cd riscv-gnu-toolchain $ ./configure --prefix=/tools/riscv --with-abi=ilp32 --with-arch=rv32imc --with-cmodel=medany $ make
The make
command installs the toolchain to /tools/riscv
, no additional make install
step is needed.
OpenOCD is a tool to connect with the target chip over JTAG and similar transports. It also provides a GDB server which is an “intermediate” when debugging software on the chip with GDB.
Unfortunately the upstream sources of OpenOCD do not contain all necessary patches to support RISC-V, and hence typical distribution packages don't work. We therefore need to build OpenOCD from source from a forked repository.
To build OpenOCD (this should be done outside the $REPO_TOP
directory):
$ git clone https://github.com/riscv/riscv-openocd.git $ cd riscv-openocd $ ./bootstrap $ mkdir build $ cd build $ ../configure --enable-ftdi --enable-verbose-jtag-io --disable-vsllink --enable-remote-bitbang --prefix=/tools/openocd $ make -j4 $ sudo make install
Even though Verilator is packaged for most Linux distributions these versions tend to be too old to be usable. We recommend compiling Verilator from source, as outlined here.
Then you can fetch, build and install Verilator itself (this should be done outside the $REPO_TOP
directory).
$ export VERILATOR_VERSION={{< tool_version "verilator" >}} $ git clone http://git.veripool.org/git/verilator $ cd verilator $ git checkout v$VERILATOR_VERSION $ autoconf $ ./configure --prefix=/tools/verilator/$VERILATOR_VERSION $ make $ make install
After installation you need to add /tools/verilator/$VERILATOR_VERSION/bin
to your PATH
environment variable.
Verible is an open source SystemVerilog style linter and formatting tool. The style linter is relatively mature and we use it as part of our [RTL design flow]({{< relref “doc/ug/design” >}}). The formatter is still under active development, and hence its usage is more experimental in OpenTitan.
You can download and build Verible from scratch as explained on the Verible GitHub page. But since this requires the Bazel build system the recommendation is to download and install a pre-built binary as described below.
Go to this page and download the correct binary archive for your machine. The example below is for Ubuntu-16.04:
$ export VERIBLE_VERSION={{< tool_version "verible" >}} $ wget https://github.com/google/verible/releases/download/v${VERIBLE_VERSION}/verible-v${VERIBLE_VERSION}-Ubuntu-16.04-xenial-x86_64.tar.gz $ tar -xf verible-v${VERIBLE_VERSION}-Ubuntu-16.04-xenial-x86_64.tar.gz $ sudo mkdir -p /tools/verible/${VERIBLE_VERSION}/ $ sudo mv verible-v${VERIBLE_VERSION}/* /tools/verible/${VERIBLE_VERSION}/
After installation you need to add /tools/verible/$VERIBLE_VERSION/bin
to your PATH
environment variable.
Note that we currently use version {{< tool_version “verible” >}}, but it is expected that this version is going to be updated frequently, since the tool is under active develpment.
To generate a bitstream for Xilinx devices a software called Vivado is required. Vivado is provided by Xilinx, it is freeware for certain (smaller) FPGA devices but requires a commercial license for larger FPGAs. The free version is called “WebPACK”, the commercial version “Design Edition”. The installation instructions below are valid for both installation methods.
Most lowRISC designs support at least one FPGA board which works with a free WebPACK license.
Vivado Version: Vivado 2019.1 and all its updates are not compatible with this project. A discussion on this problem can be found in the Github issue.
Vivado can be installed in two ways: either through an “All OS installer Single-File Download”, or via the “Linux Self Extracting Web Installer”. Neither option is great: the “All OS installer” is a huge download of around 20 GB (and the Xilinx download servers seem to be overloaded regularly), but it supports an unattended installation. The web installer downloads only necessary subsets of the software, which significantly reduces the download size. But unfortunately it doesn't support the batch mode for unattended installations, requiring users to click through the GUI and select the right options.
To get started faster we use the web installer in the following.
Go to the Xilinx download page and download two files for Vivado 2018.3. (The version can be chosen on the left side if version 2018.3 is not already selected.)
You need to register for a free Xilinx account to download the software, and you‘ll need it again later to install the software. Create a new account if you don’t have one yet.
Before you proceed ensure that the download didn't get corrupted by verifying the checksum.
$ sha512sum --check Xilinx_Vivado_SDK_Web_2018.3_1207_2324_Lin64.bin.digests Xilinx_Vivado_SDK_Web_2018.3_1207_2324_Lin64.bin: OK sha512sum: WARNING: 22 lines are improperly formatted
If you see an “OK” after the downloaded file proceed to the next step. Otherwise delete the download and start over. (You can ignore the warning produced by sha512sum
.)
Run the graphical installer.
$ sh Xilinx_Vivado_SDK_Web_2018.3_1207_2324_Lin64.bin
Now you need to click through the installer. Click “Next” on the first screen.
Type in your Xilinx User ID (your email address) and the associated password. Choose the “Download and Install Now” option. Click “Next” to continue.
Click all “I Agree” checkboxes, and click on “Next” to continue.
Choose “Vivado HL WebPACK” if you do not have a commercial Vivado license, or “Vivado HL Design Edition” if you have a valid license. In this walk through we'll install the WebPACK edition.
Choose the features to install. You can restrict the features to the ones shown in the screenshot below. Click “Next” to continue.
Choose an installation location. Any location which doesn't have a whitespace in its path and enough free space is fine. We use /tools
in our example, but a path in /opt
or within the home directory works equally well. Click “Next” to continue.
Double-check the installation summary and click on “Install” to start the installation process.
To program FPGAs user using Vivado typically needs to have permission to USB devices connected to the PC. Depending on your security policy you can take different steps to enable this access. One way of doing so is given in the udev rule outlined below.
To do so, create a file named /etc/udev/rules.d/90-lowrisc.rules
and add the following content to it:
# Grant access to board peripherals connected over USB: # - The USB devices itself (used e.g. by Vivado to program the FPGA) # - Virtual UART at /dev/tty/XXX # Future Technology Devices International, Ltd FT2232C/D/H Dual UART/FIFO IC # used on Digilent boards ACTION=="add|change", SUBSYSTEM=="usb|tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6010", ATTRS{manufacturer}=="Digilent", MODE="0666" # Future Technology Devices International, Ltd FT232 Serial (UART) IC ACTION=="add|change", SUBSYSTEM=="usb|tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", MODE="0666"
You then need to reload the udev rules:
$ sudo udevadm control --reload