A CLI-based HDL project management tool.
hdlman new
Creates boilerplate top-file, Makefile, and Yosys script. Also includes any LPF files for your given target / dev-board.
Example:
$ hdlman new --project-name blinky_project --target ecp5-85k --dev-board ulx3s
Created new HDL project 'blinky_project' with target 'ecp5-85k' and dev-board 'ulx3s'
$ cd blinky_project
$ make prog
Snip output. This synthesizes your source files, place-and-routes the result,
and uploads the bitstream to your target (i.e programs, or "prog"s, the FPGA).
$ tree
.
├── blinky_project.v
├── blinky_project.ys
├── build
│ ├── blinky_project.json
│ ├── blinky_project_out.config
│ └── out.bit
├── Makefile
└── resources
└── ulx3s_v20.lpf
hdlman
can be configured by creating a file named .hdlman.toml
and placing it in the following directory:
Platform | Value | Example |
---|---|---|
Linux | $HOME |
/home/alice |
macOS | $HOME |
/Users/Alice |
Windows | {FOLDERID_Profile} |
C:\Users\Alice |
Here is a comprehensive list of respected configurations:
default-target = "<TARGET>"
- If this is specified, the
new
command will use this target if one is not passed via--target
- If this is specified, the
default-dev-board = "<DEV_BOARD>"
- If this is specified, the
new
command will use this dev-board if one is not passed via--dev-board
- If this is specified, the
hdlman
has the notion of "targets" and "dev-boards", where the actual FPGA is the target (e.g. ECP5-85k LUTs) and the
dev-board is a host to an FPGA plus other goodies. The ULX3S is an example of a dev-board.
This distinction is important for some commands such as hdlman new
.
ecp-85k
ulx3s
There are no official builds of hdlman
, so you'll have to build it yourself to use it.
- Install
git
: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git - Clone this repository:
git clone [email protected]:twilco/hdlman.git && cd hdlman
- Download Rust: https://www.rust-lang.org/tools/install
- Build
hdlman
:cargo build --release
- This creates an
hdlman
executable intarget/release/hdlman
. Place it somewhere globally accessible in your environment.- Linux:
sudo cp target/release/hdlman /usr/local/bin
- Linux:
I created hdlman
for my personal use as a way to automate some of the boilerplate involved in HDL
development. Vivado,
ISE, etc. would normally be the tools doing this work, but I'm
running a ULX3S with the fully open-source toolchain,
so I wanted a lightweight project management tool to make my life easier.
Right now, this project is heavily opinionated towards my workflow, tools, and hardware (Verilog, Verilator, Yosys, the ULX3s, ...).
However, I'm not opposed to making hdlman
more generic, and PRs are welcome!
GPLv3.0