// TCL scrip to disable the phase detector set_property OUTPUT_VALUE 1 [get_hw_probes vio_phase_det_dis -of_objects [get_hw_vios -of_objects [get_hw_devices xcvu125_0] -filter {CELL_NAME=~"vio_phase_det_INST"}]] commit_hw_vio [get_hw_probes {vio_phase_det_dis} -of_objects [get_hw_vios -of_objects [get_hw_devices xcvu125_0] -filter {CELL_NAME=~"vio_phase_det_INST"}]] //TCL scrip to reset the MGT for { set a 10} {$a < 2000} {incr a} { after 5000 startgroup set_property OUTPUT_VALUE 1 [get_hw_probes glbrst -of_objects [get_hw_vios -of_objects [get_hw_devices xcvu125_0] -filter {CELL_NAME=~"vio_glbrst_INST"}]] commit_hw_vio [get_hw_probes {glbrst} -of_objects [get_hw_vios -of_objects [get_hw_devices xcvu125_0] -filter {CELL_NAME=~"vio_glbrst_INST"}]] endgroup startgroup set_property OUTPUT_VALUE 0 [get_hw_probes glbrst -of_objects [get_hw_vios -of_objects [get_hw_devices xcvu125_0] -filter {CELL_NAME=~"vio_glbrst_INST"}]] commit_hw_vio [get_hw_probes {glbrst} -of_objects [get_hw_vios -of_objects [get_hw_devices xcvu125_0] -filter {CELL_NAME=~"vio_glbrst_INST"}]] endgroup }