96 lines
2.4 KiB
Nix
96 lines
2.4 KiB
Nix
let
|
|
mozillaOverlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
|
|
pkgs = import <nixpkgs> {overlays = [mozillaOverlay];};
|
|
in with pkgs;
|
|
let
|
|
migen = callPackage ./nix/migen.nix {};
|
|
openocd = callPackage ./nix/openocd.nix {};
|
|
rustPlatform = callPackage ./nix/rustPlatform.nix {};
|
|
itm = callPackage ./nix/itm.nix {inherit rustPlatform;};
|
|
|
|
runOpenOcd = writeShellScriptBin "run-openocd" ''
|
|
openocd \
|
|
-f board/st_nucleo_h743zi.cfg \
|
|
-c init &
|
|
sleep 1
|
|
'';
|
|
|
|
runOpenOcdBlock = writeShellScriptBin "run-openocd-block" ''
|
|
openocd -f board/st_nucleo_h743zi.cfg
|
|
'';
|
|
|
|
setGDBConfigFile = writeShellScriptBin "set-gdb-config-file" ''
|
|
if [[ $1 == "" ]]
|
|
then
|
|
sed -i "2s/.*/runner = \"gdb -q -x gdb_config\/openocd.gdb\"/" .cargo/config
|
|
echo "GDB config file: openocd.gdb"
|
|
else
|
|
sed -i "2s/.*/runner = \"gdb -q -x gdb_config\/$1.gdb\"/" .cargo/config
|
|
echo "GDB config file: $1.gdb"
|
|
fi
|
|
'';
|
|
|
|
runEthernetServer = writeShellScriptBin "run-ethernet-server" ''
|
|
set-gdb-config-file && cargo run --example ethernet
|
|
'';
|
|
|
|
editMigenScript = writeShellScriptBin "edit-migen-script" ''
|
|
nano -m migen/fpga_config.py
|
|
'';
|
|
|
|
compileMigenScript = writeShellScriptBin "compile-migen-script" ''
|
|
python3 migen/fpga_config.py
|
|
echo "Compiled fpga_config.py to top.bin"
|
|
'';
|
|
|
|
flashFPGAConfig = writeShellScriptBin "flash-fpga-config" ''
|
|
set-gdb-config-file "fpga_config" && cargo run --example fpga_config
|
|
'';
|
|
|
|
configureFPGA = writeShellScriptBin "configure-fpga" ''
|
|
nc -zv localhost 3333 \
|
|
&& compile-migen-script \
|
|
&& flash-fpga-config \
|
|
|| echo "Please run OpenOcd first."
|
|
'';
|
|
|
|
verifyFPGAConfig = writeShellScriptBin "verify-fpga-config" ''
|
|
gdb -x gdb_config/fpga_verify.gdb
|
|
diff build/top.bin mem.bin
|
|
rm mem.bin
|
|
'';
|
|
|
|
resetFlash = writeShellScriptBin "reset-flash" ''
|
|
gdb -batch -x gdb_config/reset.gdb
|
|
echo "Reset is complete, please reset the openocd server."
|
|
'';
|
|
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "nix-shell";
|
|
buildInputs = with rustPlatform.rust; [
|
|
(pkgs.python3.withPackages(ps: [ migen ]))
|
|
pkgs.yosys
|
|
pkgs.nextpnr
|
|
pkgs.arachne-pnr
|
|
pkgs.icestorm
|
|
pkgs.gdb
|
|
openocd
|
|
rustc
|
|
cargo
|
|
itm
|
|
runOpenOcd
|
|
runOpenOcdBlock
|
|
setGDBConfigFile
|
|
runEthernetServer
|
|
editMigenScript
|
|
compileMigenScript
|
|
flashFPGAConfig
|
|
configureFPGA
|
|
verifyFPGAConfig
|
|
resetFlash
|
|
];
|
|
|
|
RUST_BACKTRACE = 1;
|
|
}
|