Skip to content

Commit

Permalink
030-iob18: remove code for IN_TERM, which does not exist on high spee…
Browse files Browse the repository at this point in the history
…d banks

Signed-off-by: Hans Baier <hansfbaier@gmail.com>
  • Loading branch information
hansfbaier committed Mar 3, 2022
1 parent a4125d2 commit b6d3cb8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
5 changes: 0 additions & 5 deletions fuzzers/030-iob18/generate.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ proc loc_pins {} {
set drive [lindex $line 4]
set slew [lindex $line 5]
set pulltype [lindex $line 6]
set in_term [lindex $line 7]

# Have: site
# Want: pin for site
Expand All @@ -77,10 +76,6 @@ proc loc_pins {} {
lappend props SLEW $slew
}

if {$in_term != "None"} {
lappend props IN_TERM $in_term
}

puts $props

set_property -dict "$props" $port
Expand Down
3 changes: 1 addition & 2 deletions fuzzers/030-iob18/top.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def gen_sites():


def write_params(params):
pinstr = 'tile,site,pin,iostandard,drive,slew\n'
pinstr = 'tile,site,pin,iostandard,drive,slew,pulltype\n'
for vals in params:
pinstr += ','.join(map(str, vals)) + '\n'

Expand Down Expand Up @@ -276,7 +276,6 @@ def run():
p['DRIVE'],
verilog.unquote(p['SLEW']) if p['SLEW'] else None,
verilog.unquote(p['PULLTYPE']),
p['IN_TERM'] if 'IN_TERM' in p else None,
))
params['tiles'].append(p)

Expand Down

0 comments on commit b6d3cb8

Please sign in to comment.