2020-12-10 08:49:18 -05:00
|
|
|
#!/bin/bash
|
2020-12-14 08:09:05 -05:00
|
|
|
#
|
2022-02-02 13:41:06 -05:00
|
|
|
# Copyright 2020-2022 F4PGA Authors
|
2020-12-14 08:09:05 -05:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2020-12-10 08:49:18 -05:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
source ${CURRENT_DIR}/common.sh
|
|
|
|
|
|
|
|
# -- validate input ----------------------------------------------------------
|
|
|
|
|
|
|
|
function help() {
|
|
|
|
echo
|
|
|
|
echo "Build examples from the repository"
|
|
|
|
echo
|
|
|
|
echo "Syntax: $0 fpga_family [examples]..."
|
|
|
|
echo "Arguments:"
|
|
|
|
echo " fpga_family - A supported FPGA family"
|
|
|
|
echo " examples - A name of an available example"
|
|
|
|
echo
|
|
|
|
}
|
|
|
|
|
|
|
|
if [[ ! $# -ge 1 ]]; then
|
|
|
|
echo "Invalid number of arguments!"
|
|
|
|
help
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# -- tuttest -----------------------------------------------------------------
|
|
|
|
|
|
|
|
fpga_family=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
examples="$@"
|
|
|
|
if [ "$fpga_family" == "xc7" -a -z "$examples" ]; then
|
2021-11-24 10:00:11 -05:00
|
|
|
examples="counter picosoc litex litex_linux litex_sata button_controller timer pulse_width_led hello-a"
|
2020-12-10 08:49:18 -05:00
|
|
|
elif [ "$fpga_family" == "eos-s3" -a -z "$examples" ]; then
|
|
|
|
examples="counter"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# activate conda and enter example dir
|
2021-09-30 12:17:50 -04:00
|
|
|
activate_env="docs/building-examples.rst:export-install-dir,fpga-fam-$fpga_family,conda-prep-env-$fpga_family,conda-act-env"
|
|
|
|
snippets="${activate_env},enter-dir-$fpga_family"
|
|
|
|
additionalDesigns="${activate_env},enter-dir-$fpga_family,additional_examples"
|
|
|
|
|
2020-12-10 08:49:18 -05:00
|
|
|
|
|
|
|
# Xilinx 7-Series examples
|
|
|
|
if [ "$fpga_family" = "xc7" ]; then
|
|
|
|
for example in $examples; do
|
|
|
|
case $example in
|
|
|
|
"counter")
|
2021-01-19 16:52:16 -05:00
|
|
|
snippets="${snippets} xc7/counter_test/README.rst:example-counter-*-group"
|
2020-12-10 08:49:18 -05:00
|
|
|
;;
|
|
|
|
"picosoc")
|
2021-01-19 16:52:16 -05:00
|
|
|
snippets="${snippets} xc7/picosoc_demo/README.rst:example-picosoc-*-group"
|
2020-12-10 08:49:18 -05:00
|
|
|
;;
|
2020-12-15 04:06:43 -05:00
|
|
|
"litex")
|
2021-06-18 04:36:36 -04:00
|
|
|
snippets="${snippets} xc7/litex_demo/README.rst:example-litex-dir,example-litex-req,example-litex_picorv32-*-group,example-litex_vexriscv-*-group"
|
2020-12-15 04:06:43 -05:00
|
|
|
;;
|
2020-12-10 08:49:18 -05:00
|
|
|
"litex_linux")
|
2021-06-18 04:36:36 -04:00
|
|
|
snippets="${snippets} xc7/linux_litex_demo/README.rst:example-litex-*-group"
|
2020-12-10 08:49:18 -05:00
|
|
|
;;
|
2021-11-24 10:00:11 -05:00
|
|
|
"litex_sata")
|
|
|
|
snippets="${snippets} xc7/litex_sata_demo/README.rst:example-litex-sata-*-group"
|
|
|
|
;;
|
2021-07-21 19:44:47 -04:00
|
|
|
|
|
|
|
#Additional examples:
|
|
|
|
"button_controller")
|
|
|
|
snippets="${additionalDesigns} xc7/additional_examples/button_controller/README.rst:example-debouncer-basys3"
|
|
|
|
;;
|
2021-07-22 15:46:39 -04:00
|
|
|
"pulse_width_led")
|
|
|
|
snippets="${snippets} xc7/pulse_width_led/README.rst:example-pulse-arty-35t"
|
|
|
|
;;
|
|
|
|
"timer")
|
|
|
|
snippets="${snippets} xc7/timer/README.rst:example-watch-basys3"
|
2021-09-04 17:50:24 -04:00
|
|
|
;;
|
2021-08-27 12:53:59 -04:00
|
|
|
|
|
|
|
# Project F examples
|
|
|
|
"hello-a")
|
2021-10-25 08:52:11 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/A/README.rst:hello-arty-a"
|
2021-07-22 15:46:39 -04:00
|
|
|
;;
|
2021-10-23 19:40:31 -04:00
|
|
|
"hello-b")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/B/README.rst:hello-arty-b"
|
2021-10-23 19:40:31 -04:00
|
|
|
;;
|
|
|
|
"hello-c")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/C/README.rst:hello-arty-c"
|
2021-10-23 19:40:31 -04:00
|
|
|
;;
|
|
|
|
"hello-d")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/D/README.rst:hello-arty-d"
|
2021-10-23 19:40:31 -04:00
|
|
|
;;
|
2021-10-23 21:42:30 -04:00
|
|
|
"hello-e")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/E/README.rst:hello-arty-e"
|
2021-10-23 21:42:30 -04:00
|
|
|
;;
|
|
|
|
"hello-f")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/F/README.rst:hello-arty-f"
|
2021-10-23 21:42:30 -04:00
|
|
|
;;
|
|
|
|
"hello-g")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/G/README.rst:hello-arty-g"
|
2021-10-23 21:42:30 -04:00
|
|
|
;;
|
|
|
|
"hello-h")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/H/README.rst:hello-arty-h"
|
2021-10-23 21:42:30 -04:00
|
|
|
;;
|
|
|
|
"hello-i")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/I/README.rst:hello-arty-i"
|
2021-10-23 21:42:30 -04:00
|
|
|
;;
|
|
|
|
"hello-j")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/J/README.rst:hello-arty-j"
|
2021-10-23 21:42:30 -04:00
|
|
|
;;
|
2021-10-23 21:50:28 -04:00
|
|
|
"hello-k")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/K/README.rst:hello-arty-k"
|
2021-10-23 21:50:28 -04:00
|
|
|
;;
|
|
|
|
"hello-l")
|
2021-10-25 10:02:46 -04:00
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/L/README.rst:hello-arty-l"
|
|
|
|
;;
|
|
|
|
"hello-b")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/B/README.rst:hello-arty-b"
|
|
|
|
;;
|
|
|
|
"hello-c")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/C/README.rst:hello-arty-c"
|
|
|
|
;;
|
|
|
|
"hello-d")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/D/README.rst:hello-arty-d"
|
|
|
|
;;
|
|
|
|
"hello-e")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/E/README.rst:hello-arty-e"
|
|
|
|
;;
|
|
|
|
"hello-f")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/F/README.rst:hello-arty-f"
|
|
|
|
;;
|
|
|
|
"hello-g")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/G/README.rst:hello-arty-g"
|
|
|
|
;;
|
|
|
|
"hello-h")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/H/README.rst:hello-arty-h"
|
|
|
|
;;
|
|
|
|
"hello-i")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/I/README.rst:hello-arty-i"
|
|
|
|
;;
|
|
|
|
"hello-j")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/J/README.rst:hello-arty-j"
|
|
|
|
;;
|
|
|
|
"hello-k")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/K/README.rst:hello-arty-k"
|
|
|
|
;;
|
|
|
|
"hello-l")
|
|
|
|
snippets="${activate_env} projf-makefiles/hello/hello-arty/L/README.rst:hello-arty-l"
|
2021-10-23 21:50:28 -04:00
|
|
|
;;
|
2020-12-10 08:49:18 -05:00
|
|
|
*)
|
2021-01-19 15:14:39 -05:00
|
|
|
echo "ERROR: Unknown example name: $example" >&2
|
2020-12-10 08:49:18 -05:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
# QuickLogic EOS-S3 examples
|
|
|
|
elif [ "$fpga_family" = "eos-s3" ]; then
|
|
|
|
for example in $examples; do
|
|
|
|
case $example in
|
|
|
|
"counter")
|
2021-01-19 16:52:16 -05:00
|
|
|
snippets="${snippets} eos-s3/btn_counter/README.rst:eos-s3-counter"
|
2020-12-10 08:49:18 -05:00
|
|
|
;;
|
|
|
|
*)
|
2021-01-19 15:14:39 -05:00
|
|
|
echo "ERROR: Unknown example name: $example" >&2
|
2020-12-10 08:49:18 -05:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
else
|
2021-01-19 15:14:39 -05:00
|
|
|
echo "ERROR: Unknown fpga_family: $fpga_family" >&2
|
2021-01-19 13:07:53 -05:00
|
|
|
exit 1
|
2020-12-10 08:49:18 -05:00
|
|
|
fi
|
2021-01-19 13:07:53 -05:00
|
|
|
|
|
|
|
# call tuttest
|
2021-01-19 16:52:16 -05:00
|
|
|
tuttest_exec ${snippets}
|