2020-12-21 02:59:56 +08:00
|
|
|
# Install Vivado in /opt and add to /etc/nixos/configuration.nix:
|
|
|
|
# nix.sandboxPaths = ["/opt"];
|
|
|
|
|
|
|
|
{ pkgs
|
2020-12-22 08:21:43 +08:00
|
|
|
, vivado ? import ./fast/vivado.nix { inherit pkgs; }
|
2020-12-21 02:59:56 +08:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2020-12-22 08:21:43 +08:00
|
|
|
version = import ./fast/pkgs/artiq-version.nix (with pkgs; { inherit stdenv fetchgit git; });
|
|
|
|
artiqSrc = import ./fast/pkgs/artiq-src.nix { fetchgit = pkgs.fetchgit; };
|
|
|
|
artiqpkgs = import ./fast/default.nix { inherit pkgs; };
|
|
|
|
fetchcargo = import ./fast/fetchcargo.nix {
|
2020-12-21 02:59:56 +08:00
|
|
|
inherit (pkgs) stdenv cacert git;
|
|
|
|
inherit (artiqpkgs) cargo cargo-vendor;
|
|
|
|
};
|
|
|
|
cargoDeps = fetchcargo rec {
|
|
|
|
name = "artiq-firmware-cargo-deps";
|
|
|
|
src = "${artiqSrc}/artiq/firmware";
|
|
|
|
sha256 = (import "${artiqSrc}/artiq/firmware/cargosha256.nix");
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoVendored = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "artiq-firmware-cargo-vendored";
|
|
|
|
src = cargoDeps;
|
|
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
mkdir -p $out/registry
|
|
|
|
cat << EOF > $out/config
|
|
|
|
[source.crates-io]
|
|
|
|
registry = "https://github.com/rust-lang/crates.io-index"
|
|
|
|
replace-with = "vendored-sources"
|
|
|
|
|
|
|
|
[source."https://github.com/m-labs/libfringe"]
|
|
|
|
git = "https://github.com/m-labs/libfringe"
|
|
|
|
rev = "b8a6d8f"
|
|
|
|
replace-with = "vendored-sources"
|
|
|
|
|
|
|
|
[source.vendored-sources]
|
|
|
|
directory = "$out/registry"
|
|
|
|
EOF
|
|
|
|
cp -R * $out/registry
|
|
|
|
'';
|
|
|
|
};
|
2020-12-23 22:30:38 +08:00
|
|
|
|
|
|
|
# Funnelling the source code through a Nix string allows dropping
|
|
|
|
# all dependencies via `unsafeDiscardStringContext`.
|
|
|
|
discardContextFromPath = { name, src }:
|
|
|
|
let
|
|
|
|
packed = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "${name}.nar.base64";
|
|
|
|
buildInputs = [ pkgs.nix ];
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = "nix-store --dump ${src} | base64 -w0 > $out";
|
|
|
|
};
|
|
|
|
unpacked = archive:
|
|
|
|
pkgs.stdenvNoCC.mkDerivation {
|
|
|
|
name = builtins.unsafeDiscardStringContext name;
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
buildInputs = [ pkgs.nix ];
|
|
|
|
installPhase = "base64 -d < ${archive} | nix-store --restore $out";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
unpacked (
|
|
|
|
builtins.toFile "${builtins.unsafeDiscardStringContext name}.nar.base64" (
|
|
|
|
builtins.unsafeDiscardStringContext (
|
|
|
|
builtins.readFile packed
|
|
|
|
))) ;
|
2020-12-21 02:59:56 +08:00
|
|
|
in
|
|
|
|
{ target
|
|
|
|
, variant
|
|
|
|
, src ? null
|
|
|
|
, buildCommand ? "python -m artiq.gateware.targets.${target} -V ${variant}"
|
|
|
|
, extraInstallCommands ? ""}:
|
|
|
|
let
|
|
|
|
name = "artiq-board-${target}-${variant}-${version}";
|
2020-12-22 08:22:16 +08:00
|
|
|
installPath = builtins.unsafeDiscardStringContext "${pkgs.python3Packages.python.sitePackages}/artiq/board-support/${target}-${variant}";
|
|
|
|
pythonEnv = pkgs.python3.withPackages (ps: with ps; [
|
2021-01-15 16:36:48 +08:00
|
|
|
jinja2 jsonschema numpy artiqpkgs.migen artiqpkgs.microscope artiqpkgs.misoc artiqpkgs.jesd204b artiqpkgs.artiq
|
2021-01-15 17:22:48 +08:00
|
|
|
]);
|
2020-12-21 02:59:56 +08:00
|
|
|
|
2020-12-22 08:22:16 +08:00
|
|
|
generatedSources =
|
2020-12-21 02:59:56 +08:00
|
|
|
pkgs.stdenv.mkDerivation {
|
2020-12-22 08:22:16 +08:00
|
|
|
name = "${name}-src";
|
2020-12-21 02:59:56 +08:00
|
|
|
inherit version src;
|
|
|
|
phases = [ "buildPhase" "installCheckPhase" "installPhase" "checkPhase" ];
|
2020-12-22 08:22:16 +08:00
|
|
|
buildInputs = [ pythonEnv ];
|
|
|
|
buildPhase =
|
|
|
|
''
|
|
|
|
${buildCommand} --no-compile-software --no-compile-gateware --gateware-identifier-str=unprogrammed
|
|
|
|
'';
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -ar artiq_${target}/${variant}/{gateware,software} $out
|
|
|
|
substituteInPlace $out/software/Makefile \
|
|
|
|
--replace /build/artiq_${target}/${variant}/software/ ""
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
# Board packages are Python modules so that they get added to the ARTIQ Python
|
|
|
|
# environment, and artiq_flash finds them.
|
|
|
|
software =
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
|
|
name = "${name}-software";
|
2020-12-23 22:30:38 +08:00
|
|
|
src = "${generatedSources}/software";
|
2020-12-21 02:59:56 +08:00
|
|
|
nativeBuildInputs = [
|
2020-12-22 08:22:16 +08:00
|
|
|
pkgs.gnumake pkgs.which pythonEnv
|
2020-12-21 02:59:56 +08:00
|
|
|
artiqpkgs.cargo
|
|
|
|
artiqpkgs.rustc
|
|
|
|
artiqpkgs.binutils-or1k
|
|
|
|
artiqpkgs.llvm-or1k
|
|
|
|
];
|
|
|
|
buildPhase =
|
|
|
|
''
|
|
|
|
export CARGO_HOME=${cargoVendored}
|
|
|
|
export TARGET_AR=or1k-linux-ar
|
2020-12-22 08:22:16 +08:00
|
|
|
|
2020-12-23 22:28:51 +08:00
|
|
|
make BUILDINC_DIRECTORY=`pwd`/include
|
2020-12-21 02:59:56 +08:00
|
|
|
'';
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
TARGET_DIR=$out/${installPath}
|
2020-12-22 08:22:16 +08:00
|
|
|
mkdir -p $TARGET_DIR
|
2020-12-21 02:59:56 +08:00
|
|
|
|
2020-12-23 22:30:38 +08:00
|
|
|
if [ -e bootloader/bootloader.bin ]
|
|
|
|
then cp bootloader/bootloader.bin $TARGET_DIR
|
2020-12-21 02:59:56 +08:00
|
|
|
fi
|
2020-12-23 22:30:38 +08:00
|
|
|
if [ -e runtime ]
|
|
|
|
then cp runtime/runtime.{elf,fbi} $TARGET_DIR
|
|
|
|
else cp satman/satman.{elf,fbi} $TARGET_DIR
|
2020-12-21 02:59:56 +08:00
|
|
|
fi
|
|
|
|
${extraInstallCommands}
|
|
|
|
'';
|
|
|
|
# don't mangle ELF files as they are not for NixOS
|
|
|
|
dontFixup = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
identifierStr = "${version};${variant}";
|
|
|
|
identifiers = import (
|
|
|
|
pkgs.runCommandLocal "${name}-identifiers.nix" {
|
|
|
|
buildInputs = [ pkgs.python3 ];
|
|
|
|
} ''python ${./generate-identifier.py} "${identifierStr}" > $out''
|
|
|
|
);
|
|
|
|
|
|
|
|
# Depends on just Vivado and the generated Bitstream source
|
|
|
|
vivadoCheckpoint = pkgs.stdenvNoCC.mkDerivation {
|
|
|
|
name = builtins.unsafeDiscardStringContext "${name}-vivado-checkpoint";
|
|
|
|
|
2020-12-23 22:30:38 +08:00
|
|
|
src = discardContextFromPath {
|
|
|
|
name = "${name}-gateware";
|
|
|
|
src = "${generatedSources}/gateware";
|
|
|
|
};
|
2020-12-21 02:59:56 +08:00
|
|
|
buildInputs = [ vivado pkgs.nix ];
|
|
|
|
buildPhase = ''
|
|
|
|
vivado -mode batch -source top_route.tcl
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
|
|
|
|
chmod a+r top_route.dcp
|
|
|
|
cp top_route.dcp $out
|
|
|
|
cp top_bitstream.tcl $out
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
vivadoOutput = pkgs.stdenvNoCC.mkDerivation {
|
|
|
|
name = builtins.unsafeDiscardStringContext "${name}-vivado-output";
|
|
|
|
src = vivadoCheckpoint;
|
|
|
|
buildInputs = [ vivado ];
|
|
|
|
buildPhase =
|
|
|
|
''
|
|
|
|
cat >top.tcl <<EOF
|
|
|
|
open_checkpoint top_route.dcp
|
|
|
|
'' +
|
|
|
|
(pkgs.lib.concatMapStrings ({ cell, init }:
|
|
|
|
''
|
|
|
|
set_property INIT ${init} [get_cell ${cell}]
|
|
|
|
''
|
|
|
|
) identifiers) +
|
|
|
|
''
|
|
|
|
source "top_bitstream.tcl"
|
|
|
|
EOF
|
|
|
|
vivado -mode batch -source top.tcl
|
|
|
|
'';
|
|
|
|
installPhase = ''
|
2020-12-22 08:22:16 +08:00
|
|
|
TARGET_DIR=$out/${installPath}
|
2020-12-21 02:59:56 +08:00
|
|
|
mkdir -p $TARGET_DIR
|
|
|
|
chmod a+r top.bit
|
|
|
|
cp top.bit $TARGET_DIR/
|
|
|
|
'';
|
|
|
|
|
|
|
|
# temporarily disabled because there is currently always at least one Kasli bitstream
|
|
|
|
# that fails timing and blocks the conda channel.
|
|
|
|
doCheck = false;
|
|
|
|
checkPhase = ''
|
|
|
|
# Search for PCREs in the Vivado output to check for errors
|
|
|
|
check_log() {
|
|
|
|
set +e
|
|
|
|
grep -Pe "$1" vivado.log
|
|
|
|
FOUND=$?
|
|
|
|
set -e
|
|
|
|
if [ $FOUND != 1 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
check_log "\d+ constraint not met\."
|
|
|
|
check_log "Timing constraints are not met\."
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
in
|
|
|
|
pkgs.python3Packages.toPythonModule (
|
|
|
|
pkgs.buildEnv rec {
|
|
|
|
inherit name;
|
2020-12-22 08:22:16 +08:00
|
|
|
paths = [ software vivadoOutput ];
|
2020-12-21 02:59:56 +08:00
|
|
|
pathsToLink = [ "/${installPath}" ];
|
|
|
|
})
|