Merge pull request #985 from litghost/add_additional_hclk_ioi_pips

Relax pip filtering to find additional HCLK_IOI3 pip bits.
This commit is contained in:
litghost 2019-07-30 17:11:16 -07:00 committed by GitHub
commit 2b3dfee577
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 8 deletions

View File

@ -39,10 +39,11 @@ DB_SIMPLE=\
$(addsuffix _r, $(DB_SIMPLE_LR) $(DB_SIMPLE_R)) \
segbits_cmt_top_l_upper_t \
segbits_cmt_top_r_upper_t \
segbits_lioi3 \
segbits_rioi3 \
segbits_liob33 \
segbits_riob33
segbits_lioi3 \
segbits_rioi3 \
segbits_liob33 \
segbits_riob33 \
segbits_hclk_ioi3 \
BLOCK_RAM_EXTRA_FOR=\
mask_bram \

View File

@ -63,9 +63,6 @@ def main():
tiledata[tile]["srcs"].add(dst)
tiledata[tile]["dsts"].add(src)
if pnum == 1 or pdir == 0:
ignpip.add((src, dst))
for tile, pips_srcs_dsts in tiledata.items():
tile_type = pips_srcs_dsts["type"]
pips = pips_srcs_dsts["pips"]

View File

@ -18,7 +18,10 @@ proc print_tile_pips {tile_type filename} {
continue
}
if {[llength [get_nodes -uphill -of_objects $dst_node]] > 1} {
set dst_wire [regsub {.*/} $dst ""]
set dst_match [regexp {HCLK_IOI_CK_IGCLK[0-9]+} $dst_wire]
if {[llength [get_nodes -uphill -of_objects $dst_node]] > 1 || $dst_match} {
set pip_string "$tile_type.[regsub {.*/} $dst ""].[regsub {.*/} $src ""]"
if ![dict exists $pips $pip_string] {
puts $fp $pip_string