diff --git a/configs/fpgas/marsellus/virtex7.sh b/configs/fpgas/marsellus/virtex7.sh new file mode 100644 index 0000000..02a6612 --- /dev/null +++ b/configs/fpgas/marsellus/virtex7.sh @@ -0,0 +1,23 @@ + +#!/bin/bash -e + +export PULPRT_TARGET=marsellus +export PULPRUN_TARGET=marsellus + +if [ -n "${ZSH_VERSION:-}" ]; then + DIR="$(readlink -f -- "${(%):-%x}")" + scriptDir="$(dirname $DIR)" +else + + scriptDir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" + +fi + +source $scriptDir/../../common.sh + +export PULPRUN_PLATFORM=fpga + +#Virtex7 uses 50MHz SoC Frequency +export PULPRT_CONFIG_CFLAGS='-DARCHI_FPGA_FREQUENCY=50000000' + +export io=uart \ No newline at end of file diff --git a/configs/fpgas/pulp/virtex7.sh b/configs/fpgas/pulp/virtex7.sh new file mode 100644 index 0000000..5b31806 --- /dev/null +++ b/configs/fpgas/pulp/virtex7.sh @@ -0,0 +1,23 @@ + +#!/bin/bash -e + +export PULPRT_TARGET=pulp +export PULPRUN_TARGET=pulp + +if [ -n "${ZSH_VERSION:-}" ]; then + DIR="$(readlink -f -- "${(%):-%x}")" + scriptDir="$(dirname $DIR)" +else + + scriptDir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" + +fi + +source $scriptDir/../../common.sh + +export PULPRUN_PLATFORM=fpga + +#Virtex7 uses 50MHz SoC Frequency +export PULPRT_CONFIG_CFLAGS='-DARCHI_FPGA_FREQUENCY=50000000' + +export io=uart \ No newline at end of file