the github repo, but with bad_apple_oled. stuff https://github.com/pbsds/nmigen-learning
Go to file
Peder Bergebakken Sundt b865a8d19a Add common.deduce_ports, improve to_signed 2020-08-19 16:34:16 +02:00
fpga Add common.deduce_ports, improve to_signed 2020-08-19 16:34:16 +02:00
tests Initial commit 2020-08-06 20:52:49 +02:00
.gitignore Switch to new nmigen repo, add wasmtime extras 2020-08-08 01:56:02 +02:00
README.md More readme 2020-08-09 18:47:08 +02:00
poetry.lock Update dependencies 2020-08-16 23:38:09 +02:00
pyproject.toml Switch to new nmigen repo, add wasmtime extras 2020-08-08 01:56:02 +02:00

README.md

This thing

This is me playing around with my new Icebreaker FPGA and nmigen(_dg). The goal is to find a nice project structure and perhaps find a way to work on my Arty a7 with a fully FOSS toolchain for once.

My focus is currently on:

* Effortless dependency management
* Helper functions for inspection and documentation of the design
* Helper functions for targeting multiple FPGA platforms and boards
* Creating PRs to other projects with stuff i find here
* Having fun with my FPGA

Setup

pip install --user poetry
poetry config --local virtualenvs.in-project true # optional, makes cleanup easier
poetry install

And these optional dependencies, installed inside the virtualenv:

poetry install -E yosys
poetry install -E nextpnr-ice40
poetry install -E nextpnr-ecp5

Running stuff

poetry run python -m fpga.icebreaker
poetry run python -m fpga.modules.blinker generate

To reduce the amount of typing:

poetry shell

todo:

  • Diagrams are nice
  • Documentation generation would be nice
  • A central nmigen-pmod library would be nice
  • A RISCV toolchain would be nice (make socs, and compile C, C++ or Rust)
  • nextpnr-xray or vtr would be nice
  • Batch setup of Vivado would be nice
  • Ability to synth on a host accessible with ssh would be nice