Crates.io | marlin |
lib.rs | marlin |
version | |
source | src |
created_at | 2025-02-09 02:22:43.605741+00 |
updated_at | 2025-03-30 22:00:43.217805+00 |
description | 🦀 No nonsense hardware testing in Rust 🛠️ |
homepage | |
repository | https://github.com/ethanuppal/marlin |
max_upload_size | |
id | 1548590 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Read the documentation | Read the API reference
Marlin is a really powerful library (and API) that lets you "import" hardware modules into Rust (or Rust functions into hardware modules!).
No precompilation step and manual updates with verilator
harnesses; no
Makefiles and quirky decorators with cocotb
testbenches. You're writing a regular Rust crate here.
Add this library to your Cargo.toml
like any other library. Use hardware
modules as struct
s like any other Rust struct
. Hook them up to tokio
or
serde
even. cargo test
as hard as you want.
Marlin works out of the box on macOS and Linux (verified under continuous integration).
[!NOTE] The above screenshot is pre-0.1.0, so it's a bit out of date -- Marlin has improved a lot since then!
Why does hardware testing suck? Consider the ways we have to test (System)Verilog:
The problem gets worse with custom HDLs, so they've come up with some creative solutions:
verilator
integration involves absurd
macro magic and using
cocotb
requires putting the design-under-test in a code comment.Still, a lot of these are less than optimal.
verilator
Marlin is on crates.io, so just use cargo add --dev marlin
to add Marlin as a
dependency for your tests (dev-dependencies
).
I'll write more on this once I get further in the development process.
The TLDR is procedural macros + dlopen
.
Simulation tools take an absurd amount of time to run. For example, when you use Marlin in a Spade project, it calls out to:
swim build
, which recompiles the entire Spade compiler from sourceverilator
, which compiles and links C++ codeMarlin automatically runs them with all the right flags and arguments --- and it caches and only invokes them when needed.
Marlin is licensed under the Mozilla Public License 2.0. This license is similar to the Lesser GNU Public License, except that the copyleft applies only to the source code of this library, not any library that uses it. That means you can statically or dynamically link with unfree code (see https://www.mozilla.org/en-US/MPL/2.0/FAQ/#virality).
I use cargo-deny
(see the
deny.toml
to ensure no licensing violations occur. I also check
this on CI to prevent merging any new dependencies or dependency updates that
introduce incompatible licenses.
Verilator is licensed under the Lesser GNU General Public License 3.0. However,
Marlin will dlopen
Verilated code, which is permitted via this clause:
- Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.
Through VerilatorRuntimeOptions::verilator_executable
,
you can specify your own interface-compatible Verilator wrapper, enabling (b).