-
Notifications
You must be signed in to change notification settings - Fork 43
/
flake.nix
133 lines (116 loc) · 4.13 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
description = "Environment for synthesizing and simulating the ibex-demo-system.";
inputs = {
lowrisc-nix.url = "github:lowRISC/lowrisc-nix";
nixpkgs.follows = "lowrisc-nix/nixpkgs";
flake-utils.follows = "lowrisc-nix/flake-utils";
poetry2nix.follows = "lowrisc-nix/poetry2nix";
};
outputs = inputs @ {
self,
lowrisc-nix,
nixpkgs,
flake-utils,
...
}: let
all_system_outputs = flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
};
pythonEnv = let
poetry2nix = inputs.poetry2nix.lib.mkPoetry2Nix {inherit pkgs;};
poetryOverrides = lowrisc-nix.lib.poetryOverrides {inherit pkgs;};
in
poetry2nix.mkPoetryEnv {
projectDir = ./.;
overrides = [
poetryOverrides
poetry2nix.defaultPoetryOverrides
];
};
in {
devShells.default = pkgs.mkShellNoCC {
name = "labenv";
buildInputs = with pkgs; [
# Needed in DPI code
libelf
# Needed when running verilator with FST support
zlib
];
nativeBuildInputs =
[
pythonEnv
]
++ (with pkgs; [
cmake
openocd
screen
# Needed to compile verilator generated files
gcc
gtkwave
srecord
openfpgaloader
# Poetry tool not required, add for convience in case update is needed
poetry
# By default mkShell adds non-interactive bash to PATH
bashInteractive
rustup
cargo-binutils
minicom
])
++ (with lowrisc-nix.packages.${system}; [
spike-ibex-cosim
lowrisc-toolchain-gcc-rv32imcb
verilator_ot
]);
shellHook = ''
# FIXME This works on Ubuntu, may not on other distros. FIXME
export LOCALE_ARCHIVE=/usr/lib/locale/locale-archive
if [ -z "$DIRENV_IN_ENVRC" ]; then
export PS1='labenv(HiPEAC) (ibex-demo-system) \$ '
echo
echo
cat ./data/lowrisc.art
fi
echo "---------------------------------------------------"
echo "Welcome to the 'ibex-demo-system' nix environment!"
echo "---------------------------------------------------"
helpme(){ cat <<'EOF'
Build ibex software :
mkdir sw/c/build && pushd sw/c/build && cmake ../ && make && popd
Build ibex simulation verilator model :
fusesoc --cores-root=. run --target=sim --tool=verilator --setup --build lowrisc:ibex:demo_system
Run ibex simulator verilator model :
./build/lowrisc_ibex_demo_system_0/sim-verilator/Vtop_verilator -t \
--meminit=ram,sw/c/build/demo/hello_world/demo
Build ibex-demo-system FPGA bitstream for Arty-A7 :
fusesoc --cores-root=. run --target=synth --setup --build lowrisc:ibex:demo_system
Program Arty-A7 FPGA with bitstream :
openFPGALoader -b arty_a7_35t build/lowrisc_ibex_demo_system_0/synth-vivado/lowrisc_ibex_demo_system_0.bit
Load ibex software to the programmed FPGA :
./util/load_demo_system.sh run ./sw/c/build/demo/lcd_st7735/lcd_st7735
Start an OpenOCD instance, connected to the Arty-A7 ibex
openocd -f util/arty-a7-openocd-cfg.tcl
Connect gdb to a running program on the FPGA (In a different terminal to the OpenOCD instance):
riscv32-unknown-elf-gdb -ex "target extended-remote localhost:3333" ./sw/c/build/demo/hello_world/demo
EOF
if [ -z "$DIRENV_IN_ENVRC" ]; then
cat <<'EOF'
To leave the environment:
exit
EOF
fi
}
helpme
if [ -z "$DIRENV_IN_ENVRC" ]; then
echo
echo "Run 'helpme' in your shell to see this message again."
echo
fi
'';
};
formatter = pkgs.alejandra;
});
in
all_system_outputs;
}