From b9f8f962f150ab232805c515be8397bdd6802d08 Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Tue, 11 Feb 2020 16:52:12 -0800 Subject: [PATCH] Start of SERDES timing. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- fuzzers/007-timing/bel/runme.tcl | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/fuzzers/007-timing/bel/runme.tcl b/fuzzers/007-timing/bel/runme.tcl index 8e32f5e9..7ceb4243 100644 --- a/fuzzers/007-timing/bel/runme.tcl +++ b/fuzzers/007-timing/bel/runme.tcl @@ -123,6 +123,17 @@ proc dump {} { set tile [randsample_list 1 [get_tiles -filter "TYPE == $type"]] dump_tile_timings $tile $timing_fp $property_fp $pins_fp $tile_pins_fp } + + set other_site_types [list ISERDESE2 OSERDESE2] + foreach site_type $other_site_types { + set cell [create_cell -reference $site_type test] + place_design + set tile [get_tiles -of [get_sites -of $cell]] + dump_tile_timings $tile $timing_fp $property_fp $pins_fp $tile_pins_fp + unplace_cell $cell + remove_cell $cell + } + close $pins_fp close $timing_fp close $property_fp