commit | 7fe6abc6f12cfdc6a8d3f5eea93bca395f03cefc | [log] [tgz] |
---|---|---|
author | Stefan Wallentowitz <stefan.wallentowitz@gi-de.com> | Thu Jun 25 11:05:29 2020 +0200 |
committer | Rupert Swarbrick <rswarbrick@gmail.com> | Fri Aug 21 16:09:29 2020 +0100 |
tree | c9d1da89516402c052b01b700a7d0772946b9186 | |
parent | 21167d2118874f62091feb8b71926052de0a77a2 [diff] |
[otbn] Initial OTBN python simulator This adds the first iteration of the python instruction set simulator (ISS) for OTBN. Right now it only has RV32I, but it lays the fundamental groundwork. The base model is an external dependency ("riscv-model", which is hosted on pypi and will be installed by pip as part of python-requirements.txt). The OTBN model is currently a small wrapper that loads up imem and dmem contents, instantiates the base model, runs that, and dumps some results to files. This will expand as we add support for the rest of the OTBN instruction set. As well as including a basic ISS, this patch has a C++ wrapper that can be used through DPI to run the ISS inside an RTL simulation. The wrapper grabs imem and dmem contents from the simulation and dumps them to files. It then finds the path to the Python simulator (based on the location of the binary) and runs that. Finally it grabs the contents of dmem after the run, together with the number of cycles taken by the simulation (which it returns). Use `fusesoc ... --OTBN_MODEL` to use this OTBN model instead of the RTL implementation. Signed-off-by: Stefan Wallentowitz <stefan.wallentowitz@gi-de.com> Co-authored-by: Rupert Swarbrick <rswarbrick@lowrisc.org> Co-authored-by: Philipp Wagner <phw@lowrisc.org>
OpenTitan is an open source silicon Root of Trust (RoT) project. OpenTitan will make the silicon RoT design and implementation more transparent, trustworthy, and secure for enterprises, platform providers, and chip manufacturers. OpenTitan is administered by lowRISC CIC as a collaborative project to produce high quality, open IP for instantiation as a full-featured product. See the OpenTitan site and OpenTitan docs for more information about the project.
This repository contains hardware, software and utilities written as part of the OpenTitan project. It is structured as monolithic repository, or “monorepo”, where all components live in one repository. It exists to enable collaboration across partners participating in the OpenTitan project.
The project contains comprehensive documentation of all IPs and tools. You can access it online at docs.opentitan.org.
Have a look at CONTRIBUTING for guidelines on how to contribute code to this repository.
Unless otherwise noted, everything in this repository is covered by the Apache License, Version 2.0 (see LICENSE for full text).