Merge pull request #967 from antmicro/036-iob-ologic-data-rate-oq

036-iob-ologic: Solve bits for DATA_RATE_OQ
This commit is contained in:
litghost 2019-07-23 07:16:25 -07:00 committed by GitHub
commit 293074ee42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 11 deletions

View File

@ -18,16 +18,6 @@ def handle_data_width(segmk, d):
d['DATA_WIDTH'] == opt)
def handle_data_rate(segmk, d):
if 'DATA_WIDTH' not in d:
return
for opt in ['SDR', 'DDR']:
segmk.add_site_tag(
d['site'], 'OSERDESE.DATA_RATE.{}'.format(opt),
verilog.unquote(d['DATA_RATE_OQ']) == opt)
def main():
print("Loading tags")
segmk = Segmaker("design.bits")
@ -39,7 +29,6 @@ def main():
site = d['site']
handle_data_width(segmk, d)
handle_data_rate(segmk, d)
if d['use_oserdese2']:
if 'SRTYPE' in d: