Start of SERDES timing.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2020-02-11 16:52:12 -08:00
parent d8168d9ffe
commit b9f8f962f1
1 changed files with 11 additions and 0 deletions

View File

@ -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