-
Notifications
You must be signed in to change notification settings - Fork 539
Expand file tree
/
Copy pathhdk_setup.sh
More file actions
279 lines (233 loc) · 8.39 KB
/
Copy pathhdk_setup.sh
File metadata and controls
279 lines (233 loc) · 8.39 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# Amazon FPGA Hardware Development Kit
#
# Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Amazon Software License (the "License"). You may not use
# this file except in compliance with the License. A copy of the License is
# located at
#
# http://aws.amazon.com/asl/
#
# or in the "license" file accompanying this file. This file is distributed on
# an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or
# implied. See the License for the specific language governing permissions and
# limitations under the License.
# Script must be sourced from a bash shell or it will not work
# When being sourced $0 will be the interactive shell and $BASH_SOURCE_ will contain the script being sourced
# When being run $0 and $_ will be the same.
script=${BASH_SOURCE[0]}
if [ $script == $0 ]; then
echo "ERROR: You must source this script"
exit 2
fi
full_script=$(readlink -f $script)
script_name=$(basename $full_script)
script_dir=$(dirname $full_script)
current_dir=$(pwd)
debug=0
skip_downloads=0
function usage {
echo -e "USAGE: source [\$AWS_FPGA_REPO_DIR/]$script_name [-d|-debug] [-s|-skip_downloads][-h|-help]"
}
function help {
info_msg "$script_name"
info_msg " "
info_msg "Sets up the environment for AWS FPGA HDK tools."
info_msg " "
info_msg "hdk_setup.sh script will:"
info_msg " (1) Check if Xilinx Vivado is installed,"
info_msg " (2) Set up key environment variables HDK_*, and"
info_msg " (3) Download shell and setup submodules (unless --skip_downloads is used)"
echo " "
usage
}
function sha256_check {
sha_file=$1
xsa_file=$2
s3_sha=$(awk '{print $1}' $sha_file)
local_sha=$(sha256sum "$2" | awk '{print $1}')
if [[ "$s3_sha" != "$local_sha" ]]; then
err_msg "SHA256 mismatch for $2"
info_msg " Expected: $s3_sha"
info_msg " Actual: $local_sha"
info_msg "Moving existing $2 to $2.back"
mv $2 $2.back
err_msg "HDK setup has FAILED!!!"
return 1
fi
return 0
}
function check_git_lfs {
if ! command -v git-lfs &> /dev/null; then
echo "ERROR: git-lfs is not installed" >&2
echo "Please install git-lfs:" >&2
echo " For Ubuntu/Debian: sudo apt-get install git-lfs" >&2
echo " For Rocky Linux/RHEL: sudo dnf install git-lfs" >&2
return 1
fi
return 0
}
# Process command line args
args=("$@")
for ((i = 0; i < ${#args[@]}; i++)); do
arg=${args[$i]}
case $arg in
-d | -debug)
debug=1
;;
-h | -help)
help
return 0
;;
-s | -skip_downloads)
skip_downloads=1
;;
*)
err_msg "Invalid option: $arg\n"
usage
return 1
;;
esac
done
if ! source $script_dir/shared/bin/set_common_functions.sh; then
err_msg "Couldn't set up common functions for HDK! Exiting!"
return 1
fi
if ! source $script_dir/shared/bin/set_common_env_vars.sh; then
err_msg "Couldn't set up env vars for HDK! Exiting!"
return 1
fi
debug_msg "Checking for Vivado install:"
# before going too far make sure Vivado is available
if ! is_vivado_available; then
err_msg "Please install/enable Vivado."
err_msg " If you are using the FPGA Developer AMI then please open an issue on GitHub."
return 1
fi
# Searching for Vivado version and comparing it with the list of supported versions
export VIVADO_VER=$(vivado -version | grep -i Vivado | head -1)
info_msg "Using $VIVADO_VER"
VIVADO_VERSION_CHECK=0
check_vivado_version "$VIVADO_VER" $AWS_FPGA_REPO_DIR/supported_vivado_versions.txt 0
if [ $VIVADO_VERSION_CHECK -eq 1 ]; then
debug_msg "$VIVADO_VER is supported by this HDK release."
else
err_msg "$VIVADO_VER is not supported by this HDK release."
err_msg "Supported versions are:"
cat $AWS_FPGA_REPO_DIR/supported_vivado_versions.txt
return 1
fi
VIVADO_TOOL_VERSION=$(vivado -version | grep -i Vivado | head -1 | sed 's/[Vv]ivado v//' | sed 's/^\(.\{6\}\).*$/\1/')
export VIVADO_TOOL_VERSION
info_msg "VIVADO_TOOL_VERSION is $VIVADO_TOOL_VERSION"
debug_msg "Vivado check succeeded"
# The CL_DIR is where the actual Custom Logic design resides. The developer is expected to override this.
# export CL_DIR=$HDK_DIR/cl/developer_designs
debug_msg "Done setting environment variables."
# Shell release version
shell_ver_file=$HDK_SHELL_DIR/shell_version.txt
# Shell files to be downloaded
declare -a s3_hdk_files=("cl_bb_routed.small_shell.dcp")
if [ $skip_downloads -eq 0 ]; then
# Downloading the shell files
for shell_file in "${s3_hdk_files[@]}"; do
sub_dir="checkpoints"
hdk_shell_dir=$HDK_SHELL_DIR/build/$sub_dir
hdk_shell_dir_from_aws=$hdk_shell_dir/from_aws
hdk_file=$hdk_shell_dir_from_aws/$shell_file
hdk_file_sha256=$hdk_shell_dir_from_aws/$shell_file.sha256
shell_file_sha256=$shell_file.sha256
if [ ! -d $hdk_shell_dir ]; then
if ! mkdir $hdk_shell_dir; then
err_msg "Failed to create $hdk_shell_dir"
return 2
fi
fi
if [ ! -d $hdk_shell_dir_from_aws ]; then
if ! mkdir $hdk_shell_dir_from_aws; then
err_msg "Failed to create $hdk_shell_dir_from_aws"
return 2
fi
fi
shell_type=$(echo $shell_file | cut -d'.' -f2)
shell_ver=$(cat $shell_ver_file | grep "$shell_type" | cut -d '=' -f2)
s3_hdk_dir_url=https://aws-fpga-hdk-resources.s3.amazonaws.com/hdk
s3_shell_dir=${s3_hdk_dir_url}/shell_v${shell_ver:2}
if ! wget $s3_shell_dir/$shell_file -O $hdk_file -q; then
err_msg "Failed to download HDK shell $shell_file version $shell_ver"
return 2
fi
if ! wget $s3_shell_dir/$shell_file_sha256 -O $hdk_file_sha256 -q; then
err_msg "Failed to download HDK shell $shell_file_sha256 version $shell_ver"
return 2
fi
sha256_check $hdk_file_sha256 $hdk_file
if [ $? -ne 0 ]; then
return 1
fi
done
else
info_msg "Skipping shell downloads and submodule setup (--skip_downloads specified)"
fi
info_msg "Settting up CL_IP for Vivado version $VIVADO_TOOL_VERSION"
cl_ip_path="hdk/common/ip"
cl_ip_branch="Vivado_$VIVADO_TOOL_VERSION-$cl_ip_path"
if [ $skip_downloads -eq 0 ]; then
check_git_lfs
if [ $? -ne 0 ]; then
return 1
fi
git submodule sync --recursive
# To ensure that users don't have to manually input git credentials
GIT_LFS_SKIP_SMUDGE=1 git submodule update --init $cl_ip_path
GIT_LFS_USERNAME="" GIT_LFS_PASSWORD="" git -C $cl_ip_path lfs pull
git -C $cl_ip_path checkout $cl_ip_branch
git -C $cl_ip_path pull origin $cl_ip_branch
else
info_msg "Skipping shell downloads and submodule setup (--skip_downloads specified)"
fi
debug_msg "Checking for CL_IP Vivado version"
cl_ip_ver=$(cat $AWS_FPGA_REPO_DIR/$cl_ip_path/VIVADO_VERSION | xargs)
if [ "$VIVADO_TOOL_VERSION" == "$cl_ip_ver" ]; then
debug_msg "CL_IP was created using the expected Vivado version $VIVADO_TOOL_VERSION"
else
err_msg "Detected CL_IP version mistch, expecting version $VIVADO_TOOL_VERSION "
err_msg "However, CL_IP was created in version $(cat $AWS_FPGA_REPO_DIR/$cl_ip_path/VIVADO_VERSION)"
return 1
fi
info_msg "Setting up IP environment variables"
unset HDK_IP_SRC_DIR
unset HDK_BD_SRC_DIR
unset HDK_BD_GEN_DIR
export HDK_IP_SRC_DIR=$(realpath -s $HDK_COMMON_DIR/ip/cl_ip/cl_ip.srcs/sources_1/ip)
export HDK_BD_SRC_DIR=$(realpath -s $HDK_COMMON_DIR/ip/cl_ip/cl_ip.srcs/sources_1/bd)
export HDK_BD_GEN_DIR=$(realpath -s $HDK_COMMON_DIR/ip/cl_ip/cl_ip.gen/sources_1/bd)
info_msg "HDK shell is up-to-date"
if [[ -z "${CL_DIR:-}" ]]; then
warn_msg "Don't forget to set the CL_DIR variable for the directory of your Custom Logic."
else
info_msg "CL_DIR is $CL_DIR"
if [ ! -d "${CL_DIR}" ]; then
err_msg "CL_DIR doesn't exist. Set CL_DIR to a valid directory."
unset CL_DIR
fi
fi
info_msg "Setting up HLx environment"
hlx_path="hdk/common/shell_stable/hlx"
hlx_branch="Hlx_1.0-$hlx_path"
if [ $skip_downloads -eq 0 ]; then
check_git_lfs
if [ $? -ne 0 ]; then
return 1
fi
git submodule sync --recursive
# To ensure that users don't have to manually input git credentials
GIT_LFS_SKIP_SMUDGE=1 git submodule update --init $hlx_path
GIT_LFS_USERNAME="" GIT_LFS_PASSWORD="" git -C $hlx_path lfs pull
git -C $hlx_path checkout $hlx_branch
git -C $hlx_path pull origin $hlx_branch
else
info_msg "Skipping shell downloads and submodule setup (--skip_downloads specified)"
fi
cd $current_dir
info_msg "AWS HDK setup PASSED."