Silver Oak is a research project at Google Research exploring alternative techniques for producing high assurance circuits and systems based on an approach that unifies specification, implementation and formal verification in a single system, specifically the Coq interactive theorem prover. We follow an approach inspired by the vision set out by Adam Chlipala at MIT in his book Certified Programming with Dependent Types.
The Silver Oak project focuses on the design and verification of high assurance variants of some of the peripherals used in the OpenTitan silicon root of trust e.g. the AES crypto-accelerator block. We focus on the specification, implementation and verification of low-level structural circuits built bottom up by composing basic circuit elements (gates, registers, wires) using powerful higher order combinators in the style of Lava. Another Coq-based approache for producing hardware is Kami which encodes aspects of the Bluespec hardware description language as a EDSL in Coq. Kami and Bluespec are powerful tools for designing processor-style control-orientated circuits. We focus instead on "network-style" and "daatpath" low level circuits e.g. hardware accelerators for AES.
A key design goal for our project is to produce hardware which are just as efficient as the existing blocks written by hardware engineers in SystemVerilog. Consequently our design decisions focus on giving the designer a lot of control over the generated circuit netlist by using high level combinators to make low level circuit design more productive and more ameanble to formal verification. The EDSL we are developing for this task is called Cava (Coq + Lava).
Our verification work is focused on specification and verification of circuit designs (i.e. "programs") and not currently on the "compiler" i.e. the infrastructure that maps form Cava EDSL in Coq to SystemVerilog. Complementary work is under way at other research groups that tackle the compiler verification challenge for hardware RTL synthesis to gates e.g. Verified Compilation on a Verified Processor.
The code is currently very experimental and in constant flux! Please see the contributing guide for how to submit push requests.
Please install the following components:
- The Coq proof assistant version 8.13.0.
- The GHC Haskell compiler version 8.6 or later (note that if you install the Haskell Platform then you get Cabal, too).
- Cabal version 3.0.0.0 or later.
- Verilator version 4.104 (as specified by the OpenTitan documentation).
To re-build the OpenTitan system with the Cava versions of the high assurance peripherals you will also need to install OpenTitan. You can follow the instructions here.
To build the Cava system and its examples and run tests, type make
in the root directory of the repo.
$ cd silveroak
$ git submodule update --init --recursive
$ make
To remove all automatically generated files (this may be needed after upgrading Coq, for example):
$ make cleanall
To remove files generated as part of silveroak
, but leave dependencies' in-tree compilation artifacts:
$ make clean
Although infrequent, commits may update the git submodules used by this project.
Git does not automatically update submodules, and so to cleanly update submodule
dependencies run the make update-third_party
rule.
$ cd silveroak
$ make update-third_party
or equivalently
$ cd silveroak
$ git submodule update --init --recursive
$ make cleanall
Documentation is either in automatically-built .md
files under docs/
, or in
Coq files under demos/
that are converted to HTML using the Alectryon tool.
To build these Alectryon files, you need to install Alectryon as an optional
dependency. The procedure is:
- Install alectryon dependencies following their README
- Clone alectryon
- Set an environment variable
ALECTRYON_PATH
to the path to your clone - Call
make html
from thedemos/
directory
See Cava Examples for a few examples of circuits described in Cava, proofs about their behaviour and extraction to SystemVerilog circuits for simulation and FPGA implementation.