[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>
8 files changed
tree: c9d1da89516402c052b01b700a7d0772946b9186
  1. .github/
  2. ci/
  3. doc/
  4. hw/
  5. site/
  6. sw/
  7. test/
  8. util/
  9. .clang-format
  10. .dockerignore
  11. .flake8
  12. .gitignore
  13. .style.yapf
  14. _index.md
  15. apt-requirements.txt
  16. azure-pipelines.yml
  17. check_tool_requirements.core
  18. CLA
  19. COMMITTERS
  20. CONTRIBUTING.md
  21. LICENSE
  22. meson.build
  23. meson_init.sh
  24. meson_options.txt
  25. python-requirements.txt
  26. README.md
  27. tool_requirements.py
  28. toolchain.txt
README.md

OpenTitan

OpenTitan logo

About the project

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.

About this repository

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.

Documentation

The project contains comprehensive documentation of all IPs and tools. You can access it online at docs.opentitan.org.

How to contribute

Have a look at CONTRIBUTING for guidelines on how to contribute code to this repository.

Licensing

Unless otherwise noted, everything in this repository is covered by the Apache License, Version 2.0 (see LICENSE for full text).