2022-07-12 11:06:15 +00:00
|
|
|
source ../../../scripts/adi_env.tcl
|
2018-08-14 08:43:32 +00:00
|
|
|
source $ad_hdl_dir/projects/scripts/adi_project_xilinx.tcl
|
2015-06-26 09:04:19 +00:00
|
|
|
source $ad_hdl_dir/projects/scripts/adi_board.tcl
|
|
|
|
|
2022-01-26 11:34:14 +00:00
|
|
|
# get_env_param retrieves parameter value from the environment if exists,
|
|
|
|
# other case use the default value
|
|
|
|
#
|
|
|
|
# Use over-writable parameters from the environment.
|
|
|
|
#
|
|
|
|
# e.g.
|
|
|
|
# make RX_JESD_L=4 RX_JESD_M=2 TX_JESD_L=4 TX_JESD_M=2
|
|
|
|
|
|
|
|
# Parameter description:
|
|
|
|
# [RX/TX]_JESD_M : Number of converters per link
|
|
|
|
# [RX/TX]_JESD_L : Number of lanes per link
|
|
|
|
# [RX/TX]_JESD_S : Number of samples per frame
|
|
|
|
|
|
|
|
adi_project daq3_zc706 0 [list \
|
|
|
|
RX_JESD_M [get_env_param RX_JESD_M 2 ] \
|
|
|
|
RX_JESD_L [get_env_param RX_JESD_L 4 ] \
|
|
|
|
RX_JESD_S [get_env_param RX_JESD_S 1 ] \
|
|
|
|
TX_JESD_M [get_env_param TX_JESD_M 2 ] \
|
|
|
|
TX_JESD_L [get_env_param TX_JESD_L 4 ] \
|
|
|
|
TX_JESD_S [get_env_param TX_JESD_S 1 ] \
|
|
|
|
]
|
|
|
|
|
2015-06-26 09:04:19 +00:00
|
|
|
adi_project_files daq3_zc706 [list \
|
|
|
|
"../common/daq3_spi.v" \
|
|
|
|
"system_top.v" \
|
|
|
|
"system_constr.xdc"\
|
2020-09-23 08:30:18 +00:00
|
|
|
"$ad_hdl_dir/library/common/ad_iobuf.v" \
|
2017-02-22 20:56:37 +00:00
|
|
|
"$ad_hdl_dir/projects/common/zc706/zc706_plddr3_constr.xdc" \
|
2015-06-26 09:04:19 +00:00
|
|
|
"$ad_hdl_dir/projects/common/zc706/zc706_system_constr.xdc" ]
|
|
|
|
|
2018-12-20 16:35:11 +00:00
|
|
|
set_property strategy Performance_ExtraTimingOpt [get_runs impl_1]
|
|
|
|
|
|
|
|
|
2017-01-20 20:55:33 +00:00
|
|
|
set_property part "xc7z045ffg900-3" [get_runs synth_1]
|
|
|
|
set_property part "xc7z045ffg900-3" [get_runs impl_1]
|
2015-06-26 09:04:19 +00:00
|
|
|
adi_project_run daq3_zc706
|
|
|
|
|