Add CSRs touched by riscv-tests, and a new `kisa` CSR

- riscv-tests uses a few CSRs that we did not explicitly implement
  (version/architecture CSRs) -- define them in the HDL so we can
  potentially give them meaningful values in the near future.
- Add a custom CSR `kisa`, which is intended to help software detect
  what version of Kelvin they're running on, and what features it
  supports. Initially, the value of the CSR is 0, which indicates that
  Kelvin only supports the features of the initial open-source release.

Change-Id: Ide3362805e72d8970f02c351c491ec0d5fbb67ad
1 file changed
tree: a4729f4155664cc7c35973a5d9c09da168b04ea9
  1. doc/
  2. external/
  3. hdl/
  4. lib/
  5. rules/
  6. tests/
  7. utils/
  8. .bazelrc
  9. .gitignore
  10. CONTRIBUTING.md
  11. LICENSE
  12. PREUPLOAD.cfg
  13. README.md
  14. WORKSPACE
README.md

Kelvin

Kelvin is a RISC-V32IM core with a custom instruction set.

Kelvin block diagram

More information on the design can be found in the overview.

Building

Kelvin uses bazel as it's build system. The Verilated simulator for Kelvin can be generated using:

bazel build //tests/verilator_sim:core_sim

The verilog source for the Kelvin core can be generated using:

bazel build //hdl/chisel:core_cc_library_emit_verilog

Verilog source for the Matcha SoC can be generated using:

bazel clean --expunge  # To generate the ToT sha
bazel build //hdl/chisel:matcha_kelvin_verilog