Update lowrisc_ibex to lowRISC/ibex@7e22830

Update code from upstream repository
https://github.com/lowRISC/ibex.git to revision
7e2283056b18cf3b1733d12cfd877a46102ab201

The import required the following updates to our in-tree code:
- Update top_earlgrey to align its Verilator simulation with the changes
  made to simutil_verilator.
- Update the test harness to always use `--meminit=flash,...`, instead of
  `--meminit flash,...`. The variant with space doesn't work any more
  (and isn't documented to work).

* [rtl] Trigger C decoder assertions only if instr valid (Pirmin
  Vogel)
* [DV] Continue argument parsing (Tobias Wölfel)
* [ci] Add clang-format checking to CI (Tom Roberts)
* [verilator] Fix ELF processing (Bryan Cantrill)
* SimCtrlExtension: Add a default destructor (Philipp Wagner)
* [verilator] Modify verilator examples for memutils (Tom Roberts)
* [verilator] Separate out memory loading utilities (Tom Roberts)
* [make] Fix target reference (Tobias Wölfel)
* [rtl] By default, forward incoming instruction in C decoder (Pirmin
  Vogel)
* [rtl] Use macros for all SystemVerilog assertions (Pirmin Vogel)
* [rtl] Remove X assignments, add SVAs for selector signals (Pirmin
  Vogel)
* [rtl] Consistently use `data_offset` signal in LSU (Pirmin Vogel)
* [DV] Fix TB read responses (lowRISC/ibex#531) (udinator)
* Update google_riscv-dv to google/riscv-dv@9ecee87 (lowRISC/ibex#530)
  (udinator)
* Update google_riscv-dv to google/riscv-dv@74b8cb6 (lowRISC/ibex#529)
  (udinator)
* [DV] fix incorrect irq_seq handle name (lowRISC/ibex#525) (udinator)
* [DV] update MISA csr yaml description (lowRISC/ibex#513) (udinator)
* [DV] Enable sending multiple interrupts at once (lowRISC/ibex#519)
  (udinator)
* [DV] update override to riscv_asm_program gen in Makefile
  (lowRISC/ibex#520) (udinator)
* [RTL] Only restore from mstack in nmi mode (Greg Chadwick)
* Update google_riscv-dv to google/riscv-dv@5b1dd4e (lowRISC/ibex#523)
  (udinator)
* [DV] add support_unaligned_load_store setting (lowRISC/ibex#521)
  (udinator)
* [DV] Fix xRET wait checks (lowRISC/ibex#515) (udinator)
* [doc] Add a comment on mhpmcounter optimization (Tom Roberts)
* [dbg] Add minimal hardware breakpoint support (Tom Roberts)
* [verilator] Clarify ELF BSS handling (Tobias Wölfel)
* [examples] Fix spelling for description type (Tobias Wölfel)
* [csr] Add U Mode support to misa (Tom Roberts)
* RTL simulation scripts for Cadence tool was added (Taras Dulibianyk)
* Add Synopsys VCS Support for Ibex Simple System (Mehrdad Biglari)
* Pluseargs parsing was corrected (Taras Dulibianyk)
* [ci] Add CS registers TB to CI (Tom Roberts)

Signed-off-by: Philipp Wagner <phw@lowrisc.org>
140 files changed
tree: 4f1fa0c78a81b69e320c6a6c32032af87271ed43
  1. .github/
  2. ci/
  3. doc/
  4. hw/
  5. site/
  6. sw/
  7. test/
  8. util/
  9. .clang-format
  10. .gitignore
  11. .style.yapf
  12. _index.md
  13. apt-requirements.txt
  14. azure-pipelines.yml
  15. CLA
  16. COMMITTERS
  17. CONTRIBUTING.md
  18. LICENSE
  19. meson.build
  20. meson_init.sh
  21. meson_options.txt
  22. python-requirements.txt
  23. README.md
  24. 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 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 either access it online or build it locally by following the steps below.

  1. Ensure that you have the required Python modules installed (to be executed in the repository root):
$ sudo apt install curl python3 python3-pip
$ pip3 install --user -r python-requirements.txt
  1. Execute the build script:
$ ./util/build_docs.py --preview

This compiles the documentation into ./build/docs and starts a local server, which allows you to access the documentation at http://127.0.0.1:1313.

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).