61 lines
1.7 KiB
Tcl
61 lines
1.7 KiB
Tcl
###############################################################################
|
|
## Copyright (C) 2019-2023 Analog Devices, Inc. All rights reserved.
|
|
### SPDX short identifier: ADIBSD
|
|
###############################################################################
|
|
|
|
source ../../../scripts/adi_env.tcl
|
|
source $ad_hdl_dir/projects/scripts/adi_project_xilinx.tcl
|
|
source $ad_hdl_dir/projects/scripts/adi_board.tcl
|
|
|
|
##--------------------------------------------------------------
|
|
# IMPORTANT: Set AD7616 operation and interface mode
|
|
#
|
|
# The get_env_param procedure retrieves parameter value from the environment if exists,
|
|
# other case returns the default value specified in its second parameter field.
|
|
#
|
|
# How to use over-writable parameters from the environment:
|
|
#
|
|
# e.g.
|
|
# make SI_OR_PI=0
|
|
#
|
|
# SI_OR_PI - Defines the interface type (serial OR parallel)
|
|
#
|
|
# LEGEND: Serial - 0
|
|
# Parallel - 1
|
|
#
|
|
# NOTE : This switch is a 'hardware' switch. Please reimplenent the
|
|
# design if the variable has been changed.
|
|
#
|
|
##--------------------------------------------------------------
|
|
|
|
if {[info exists ::env(SI_OR_PI)]} {
|
|
set S_SI_OR_PI [get_env_param SI_OR_PI 0]
|
|
} elseif {![info exists SI_OR_PI]} {
|
|
set S_SI_OR_PI 0
|
|
}
|
|
|
|
adi_project ad7616_sdz_zed 0 [list \
|
|
SI_OR_PI $S_SI_OR_PI \
|
|
]
|
|
|
|
adi_project_files ad7616_sdz_zed [list \
|
|
"$ad_hdl_dir/library/common/ad_iobuf.v" \
|
|
"$ad_hdl_dir/projects/common/zed/zed_system_constr.xdc"]
|
|
|
|
switch $S_SI_OR_PI {
|
|
0 {
|
|
adi_project_files ad7616_sdz_zed [list \
|
|
"system_top_si.v" \
|
|
"serial_if_constr.xdc"
|
|
]
|
|
}
|
|
1 {
|
|
adi_project_files ad7616_sdz_zed [list \
|
|
"system_top_pi.v" \
|
|
"parallel_if_constr.xdc"
|
|
]
|
|
}
|
|
}
|
|
|
|
adi_project_run ad7616_sdz_zed
|