build for NIST variants

core0-buffer
Sebastien Bourdeauducq 2020-05-14 15:30:50 +08:00
parent af08b1ad00
commit 15b2b253cf
2 changed files with 36 additions and 21 deletions

View File

@ -7,11 +7,11 @@ let
rustPlatform = (import ./rustPlatform.nix { inherit pkgs; }); rustPlatform = (import ./rustPlatform.nix { inherit pkgs; });
artiqpkgs = import <artiq-fast/default.nix> { inherit pkgs; }; artiqpkgs = import <artiq-fast/default.nix> { inherit pkgs; };
vivado = import <artiq-fast/vivado.nix> { inherit pkgs; }; vivado = import <artiq-fast/vivado.nix> { inherit pkgs; };
zc706-fsbl = import ./fsbl.nix { inherit pkgs; };
mkbootimage = (import ./mkbootimage.nix { inherit pkgs; }); mkbootimage = (import ./mkbootimage.nix { inherit pkgs; });
in build-zc706 = { variant }: let
rec { firmware = rustPlatform.buildRustPackage rec {
zc706-firmware = rustPlatform.buildRustPackage rec { name = "zc706-${variant}-firmware";
name = "zc706-firmware";
version = "0.1.0"; version = "0.1.0";
src = ./src; src = ./src;
@ -27,7 +27,7 @@ in
buildPhase = '' buildPhase = ''
export XARGO_RUST_SRC="${rustPlatform.rust.rustc.src}/src" export XARGO_RUST_SRC="${rustPlatform.rust.rustc.src}/src"
export CARGO_HOME=$(mktemp -d cargo-home.XXX) export CARGO_HOME=$(mktemp -d cargo-home.XXX)
make make VARIANT=${variant}
''; '';
installPhase = '' installPhase = ''
@ -41,7 +41,7 @@ in
doCheck = false; doCheck = false;
dontFixup = true; dontFixup = true;
}; };
zc706-gateware = pkgs.runCommand "zc706-gateware" gateware = pkgs.runCommand "zc706-${variant}-gateware"
{ {
nativeBuildInputs = [ nativeBuildInputs = [
(pkgs.python3.withPackages(ps: (with artiqpkgs; [ migen migen-axi misoc artiq ]))) (pkgs.python3.withPackages(ps: (with artiqpkgs; [ migen migen-axi misoc artiq ])))
@ -49,20 +49,20 @@ in
]; ];
} }
'' ''
python ${./src/zc706.py} -g build python ${./src/zc706.py} -g build -V ${variant}
mkdir -p $out $out/nix-support mkdir -p $out $out/nix-support
cp build/top.bit $out cp build/top.bit $out
echo file binary-dist $out/top.bit >> $out/nix-support/hydra-build-products echo file binary-dist $out/top.bit >> $out/nix-support/hydra-build-products
''; '';
# SZL startup # SZL startup
zc706-jtag = pkgs.runCommand "zc706-jtag" {} jtag = pkgs.runCommand "zc706-${variant}-jtag" {}
'' ''
mkdir $out mkdir $out
ln -s ${zc706-firmware}/szl.elf $out ln -s ${firmware}/szl.elf $out
ln -s ${zc706-gateware}/top.bit $out ln -s ${gateware}/top.bit $out
''; '';
zc706-sd = pkgs.runCommand "zc706-sd" sd = pkgs.runCommand "zc706-${variant}-sd"
{ {
buildInputs = [ mkbootimage ]; buildInputs = [ mkbootimage ];
} }
@ -71,7 +71,7 @@ in
# can't write software (mkbootimage will segfault). # can't write software (mkbootimage will segfault).
bifdir=`mktemp -d` bifdir=`mktemp -d`
cd $bifdir cd $bifdir
ln -s ${zc706-firmware}/szl.elf szl.elf ln -s ${firmware}/szl.elf szl.elf
cat > boot.bif << EOF cat > boot.bif << EOF
the_ROM_image: the_ROM_image:
{ {
@ -80,21 +80,20 @@ in
EOF EOF
mkdir $out mkdir $out
mkbootimage boot.bif $out/boot.bin mkbootimage boot.bif $out/boot.bin
ln -s ${zc706-gateware}/top.bit $out ln -s ${gateware}/top.bit $out
''; '';
zc706-sd-zip = pkgs.runCommand "zc706-sd-zip" sd-zip = pkgs.runCommand "zc706-${variant}-sd-zip"
{ {
buildInputs = [ pkgs.zip ]; buildInputs = [ pkgs.zip ];
} }
'' ''
mkdir -p $out $out/nix-support mkdir -p $out $out/nix-support
zip -j $out/sd.zip ${zc706-sd}/* zip -j $out/sd.zip ${sd}/*
echo file binary-dist $out/sd.zip >> $out/nix-support/hydra-build-products echo file binary-dist $out/sd.zip >> $out/nix-support/hydra-build-products
''; '';
# FSBL startup # FSBL startup
zc706-fsbl = import ./fsbl.nix { inherit pkgs; }; fsbl-sd = pkgs.runCommand "zc706-${variant}-fsbl-sd"
zc706-fsbl-sd = pkgs.runCommand "zc706-fsbl-sd"
{ {
buildInputs = [ mkbootimage ]; buildInputs = [ mkbootimage ];
} }
@ -103,8 +102,8 @@ in
bifdir=`mktemp -d` bifdir=`mktemp -d`
cd $bifdir cd $bifdir
ln -s ${./fsbl.elf} fsbl.elf ln -s ${./fsbl.elf} fsbl.elf
ln -s ${zc706-gateware}/top.bit top.bit ln -s ${gateware}/top.bit top.bit
ln -s ${zc706-firmware}/runtime.elf runtime.elf ln -s ${firmware}/runtime.elf runtime.elf
cat > boot.bif << EOF cat > boot.bif << EOF
the_ROM_image: the_ROM_image:
{ {
@ -117,4 +116,18 @@ in
mkbootimage boot.bif $out/boot.bin mkbootimage boot.bif $out/boot.bin
echo file binary-dist $out/boot.bin >> $out/nix-support/hydra-build-products echo file binary-dist $out/boot.bin >> $out/nix-support/hydra-build-products
''; '';
} in {
"zc706-${variant}-firmware" = firmware;
"zc706-${variant}-gateware" = gateware;
"zc706-${variant}-jtag" = jtag;
"zc706-${variant}-sd" = sd;
"zc706-${variant}-sd-zip" = sd-zip;
"zc706-${variant}-fsbl-sd" = fsbl-sd;
};
in
(
(build-zc706 { variant = "simple"; }) //
(build-zc706 { variant = "nist_clock"; }) //
(build-zc706 { variant = "nist_qc2"; }) //
{ inherit zc706-fsbl; }
)

View File

@ -1,3 +1,5 @@
VARIANT := simple
all: ../build/firmware/armv7-none-eabihf/release/szl all: ../build/firmware/armv7-none-eabihf/release/szl
.PHONY: all .PHONY: all
@ -5,7 +7,7 @@ all: ../build/firmware/armv7-none-eabihf/release/szl
../build/pl.rs: zc706.py ../build/pl.rs: zc706.py
mkdir -p ../build mkdir -p ../build
python zc706.py -r ../build/pl.rs python zc706.py -r ../build/pl.rs -V $(VARIANT)
../build/firmware/armv7-none-eabihf/release/runtime: .cargo/* armv7-none-eabihf.json Cargo.lock Cargo.toml libdyld/* libdyld/src/* runtime/* runtime/src/* ../build/pl.rs ../build/firmware/armv7-none-eabihf/release/runtime: .cargo/* armv7-none-eabihf.json Cargo.lock Cargo.toml libdyld/* libdyld/src/* runtime/* runtime/src/* ../build/pl.rs
XBUILD_SYSROOT_PATH=`pwd`/../build/sysroot cargo xbuild --release -p runtime --target-dir ../build/firmware XBUILD_SYSROOT_PATH=`pwd`/../build/sysroot cargo xbuild --release -p runtime --target-dir ../build/firmware