20 lines
823 B
Plaintext
20 lines
823 B
Plaintext
###############################################################################
|
|
## Copyright (C) 2021-2023 Analog Devices, Inc. All rights reserved.
|
|
### SPDX short identifier: ADIBSD
|
|
###############################################################################
|
|
|
|
# Primary clock definitions
|
|
create_clock -name refclk -period 2.667 [get_ports fpga_refclk_in_p]
|
|
|
|
# device clock
|
|
create_clock -name tx_device_clk -period 4.000 [get_ports clkin6_p]
|
|
create_clock -name rx_device_clk -period 4.000 [get_ports clkin10_p]
|
|
|
|
# Constraint SYSREFs
|
|
# Assumption is that REFCLK and SYSREF have similar propagation delay,
|
|
# and the SYSREF is a source synchronous Edge-Aligned signal to REFCLK
|
|
set_input_delay -clock [get_clocks tx_device_clk] \
|
|
[get_property PERIOD [get_clocks tx_device_clk]] \
|
|
[get_ports {sysref2_*}]
|
|
|