-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add FPGA tools nMigen and Glasgow #67827
Conversation
2779081
to
948f878
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work!
f81b377
to
e9e73ab
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All the changes here look great as usual @emilazy, thank you! (though I haven't tested them all myself).
Would you mind doing one thing: could we just flatten commit e9e73ab6ed321c33e3932b1f9c37519b86fde4b5 ("nextpnr: fix build on clang/macOS"
) directly into ef19eba10e0b79e764dad6ea5a856d0114345058 ("nextpnr: 2019.08.21 -> 2019.08.31"
) so that the update and fix are all-in-one? (I realize not everyone likes rebasing like this, but generally I prefer to avoid incurring commits for things that only strictly fix build breaks introduced by something else -- it makes git bisect
for example more annoying to use.)
But the actual changes themselves look fine. So let's go ahead and try to start getting borg to cycle things.
@@ -26,6 +26,8 @@ stdenv.mkDerivation rec { | |||
substituteInPlace $out/bin/sby \ | |||
--replace "##yosys-sys-path##" \ | |||
"sys.path += [p + \"/share/yosys/python3/\" for p in [\"$out\", \"${yosys}\"]]" | |||
substituteInPlace $out/share/yosys/python3/sby_core.py \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sigh. I'm thinking we should really just patch the SymbiYosys build system at this point to make these parameters optional or more robust for discovery. (We can work something out and submit a PR to Clifford later, though)
@GrahamcOfBorg build libfx2 glasgow |
/usr/bin/env works on NixOS normally, but previously sby would fail if used from inside the Nix sandbox.
Pretty sure 19.03 has been branched off by now.
e9e73ab
to
f327846
Compare
Fixed-output derivations are the bane of my existence... should be fixed now, the long build is progressing locally. Squashed the nextpnr commits too and let |
Hurrah, was just about to ask about that. @GrahamcOfBorg build libfx2 glasgow |
The build succeeds on Linux, but fails on Darwin due to nextpnr, which hasn't been working: https://hydra.nixos.org/job/nixpkgs/trunk/nextpnr.x86_64-darwin We might have missed that before with a builder timeout or something in previous PRs. Oh well, not a huge deal. I think we should just merge this otherwise. I'll follow with a commit to restrict nextpnr on Darwin for now, I suppose. |
I definitely had |
Motivation for this change
This PR adds two pieces of FPGA-related software (and also bumps/fixes some of the EDA tools as required):
nMigen
nMigen is the new version of M-Labs' popular Python-based hardware description language and build system Migen (used in e.g. MiSoC, LiteX, ARTIQ, Milkymist, HDMI2USB...). Although it hasn't received an official stable release yet, it has a compatibility layer for the original Migen and it's already achieved some serious adoption through e.g. Glasgow (described below) and Minerva (a free-gateware RISC-V core), and it's rapidly approaching stabilization. It integrates with the FOSS EDA tools already in nixpkgs (
(symbi)yosys
,icestorm
,trellis
,nextpnr
) as well as supporting proprietary vendor toolchains.Glasgow
Glasgow is an FPGA-based adaptable digital interface multitool/"Scots Army Knife for electronics" powered by nMigen that should be in mass production soon. It uses Python software on the host to synthesize, program and communicate with the FPGA on the fly, and communicates with the on-board microcontroller using libfx2 (which provides both the Python module
fx2
andfx2tool(1)
, an end-user bootloader recovery program). It's also intended to serve as a Python framework for development of custom applets.I'm due to receive a preproduction model soon, so I spent the time to get it packaged for Nix. Glasgow has also not seen a proper release yet, but devices are already in the wild and the plan is for it to be updated in a rolling-release fashion from git commits, so this shouldn't be a major issue.
(These projects aren't mine and I've only made a few contributions to both so far, so hopefully this isn't taken as spamminess but rather rationales for inclusion ^^; I've talked with @whitequark and she's fine to see them packaged as-is.)
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Notify maintainers
cc @thoughtpolice for the yosys/nextpnr changes
cc @FRidh for Python assistance – is there a better way to handle the default
checkPhase
for Python packages unconditionally running thebuild_ext
step, even if the build has already been done at an earlier stage?