-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed the cl_uram_example Constraints (#569)
Co-authored-by: czfpga <[email protected]>
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
7 changes: 4 additions & 3 deletions
7
hdk/cl/examples/cl_uram_example/build/constraints/cl_pnr_user.xdc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# This contains the CL specific constraints for Top level PNR | ||
|
||
# False path between vled on CL clock and Shell asynchronous clock | ||
set_false_path -from [get_cells WRAPPER_INST/CL/vled_q_reg*] | ||
# Constrain the generated clocks in CL | ||
create_generated_clock -name clk_div2 -source [get_pins WRAPPER_INST/CL/uram_ctrl_i/clk_div2_reg/C] -divide_by 2 [get_pins WRAPPER_INST/CL/uram_ctrl_i/clk_div2_reg/Q] | ||
create_generated_clock -name clk_div4 -source [get_pins WRAPPER_INST/CL/uram_ctrl_i/clk_div4_reg/C] -divide_by 4 [get_pins WRAPPER_INST/CL/uram_ctrl_i/clk_div4_reg/Q] | ||
create_generated_clock -name clk_div8 -source [get_pins WRAPPER_INST/CL/uram_ctrl_i/clk_div8_reg/C] -divide_by 8 [get_pins WRAPPER_INST/CL/uram_ctrl_i/clk_div8_reg/Q] | ||
|
||
# False paths between main clock and tck | ||
set_clock_groups -name TIG_SRAI_1 -asynchronous -group [get_clocks -of_objects [get_pins static_sh/SH_DEBUG_BRIDGE/inst/bsip/inst/USE_SOFTBSCAN.U_TAP_TCKBUFG/O]] -group [get_clocks -of_objects [get_pins WRAPPER_INST/SH/kernel_clks_i/clkwiz_sys_clk/inst/CLK_CORE_DRP_I/clk_inst/mmcme3_adv_inst/CLKOUT0]] | ||
set_clock_groups -name TIG_SRAI_2 -asynchronous -group [get_clocks -of_objects [get_pins static_sh/SH_DEBUG_BRIDGE/inst/bsip/inst/USE_SOFTBSCAN.U_TAP_TCKBUFG/O]] -group [get_clocks drck] | ||
set_clock_groups -name TIG_SRAI_3 -asynchronous -group [get_clocks -of_objects [get_pins static_sh/SH_DEBUG_BRIDGE/inst/bsip/inst/USE_SOFTBSCAN.U_TAP_TCKBUFG/O]] -group [get_clocks -of_objects [get_pins static_sh/pcie_inst/inst/gt_top_i/diablo_gt.diablo_gt_phy_wrapper/phy_clk_i/bufg_gt_userclk/O]] | ||
|