Merge pull request #2079 from VOGL-electronic/efinix_iface_fixups
build: efinix: ifacewriter: some fixes
This commit is contained in:
commit
c67dfa82cc
|
@ -295,7 +295,8 @@ class EfinixDDRTristateImpl(Module):
|
|||
"out_reg" : "DDIO_RESYNC",
|
||||
"out_clk_pin" : clk,
|
||||
"oe_reg" : "REG",
|
||||
"is_inclk_inverted" : False,
|
||||
"in_clk_inv" : 0,
|
||||
"out_clk_inv" : 0,
|
||||
"drive_strength" : io_prop_dict.get("DRIVE_STRENGTH", "4")
|
||||
}
|
||||
platform.toolchain.ifacewriter.blocks.append(block)
|
||||
|
@ -333,7 +334,8 @@ class EfinixSDRTristateImpl(EfinixDDRTristateImpl):
|
|||
"out_reg" : "REG",
|
||||
"out_clk_pin" : clk,
|
||||
"oe_reg" : "REG",
|
||||
"is_inclk_inverted" : False,
|
||||
"in_clk_inv" : 0,
|
||||
"out_clk_inv" : 0,
|
||||
"drive_strength" : io_prop_dict.get("DRIVE_STRENGTH", "4")
|
||||
}
|
||||
platform.toolchain.ifacewriter.blocks.append(block)
|
||||
|
@ -365,7 +367,7 @@ class EfinixSDROutputImpl(Module):
|
|||
"size" : 1,
|
||||
"out_reg" : "REG",
|
||||
"out_clk_pin" : clk,
|
||||
"is_inclk_inverted" : False,
|
||||
"out_clk_inv" : 0,
|
||||
"drive_strength" : io_prop_dict.get("DRIVE_STRENGTH", "4")
|
||||
}
|
||||
platform.toolchain.ifacewriter.blocks.append(block)
|
||||
|
@ -399,7 +401,7 @@ class EfinixDDROutputImpl(Module):
|
|||
"size" : 1,
|
||||
"out_reg" : "DDIO_RESYNC",
|
||||
"out_clk_pin" : clk,
|
||||
"is_inclk_inverted" : False,
|
||||
"out_clk_inv" : 0,
|
||||
"drive_strength" : io_prop_dict.get("DRIVE_STRENGTH", "4")
|
||||
}
|
||||
platform.toolchain.ifacewriter.blocks.append(block)
|
||||
|
@ -460,7 +462,7 @@ class EfinixDDRInputImpl(Module):
|
|||
"size" : 1,
|
||||
"in_reg" : "DDIO_RESYNC",
|
||||
"in_clk_pin" : clk,
|
||||
"is_inclk_inverted" : False
|
||||
"in_clk_inv" : 0
|
||||
}
|
||||
platform.toolchain.ifacewriter.blocks.append(block)
|
||||
platform.toolchain.excluded_ios.append(platform.get_pin(i))
|
||||
|
|
|
@ -166,9 +166,6 @@ design.create("{2}", "{3}", "./../gateware", overwrite=True)
|
|||
cmd += f'design.assign_pkg_pin("{name}[{i}]","{pad}")\n'
|
||||
|
||||
if "out_reg" in block:
|
||||
cmd += f'design.set_property("{name}","oe_REG","{block["out_reg"]}")\n'
|
||||
|
||||
if "oe_reg" in block:
|
||||
cmd += f'design.set_property("{name}","OUT_REG","{block["out_reg"]}")\n'
|
||||
cmd += f'design.set_property("{name}","OUT_CLK_PIN","{block["out_clk_pin"]}")\n'
|
||||
if "out_delay" in block:
|
||||
|
@ -176,7 +173,6 @@ design.create("{2}", "{3}", "./../gateware", overwrite=True)
|
|||
|
||||
if "out_clk_inv" in block:
|
||||
cmd += f'design.set_property("{name}","IS_OUTCLK_INVERTED","{block["out_clk_inv"]}")\n'
|
||||
cmd += f'design.set_property("{name}","OE_CLK_PIN_INV","{block["out_clk_inv"]}")\n'
|
||||
|
||||
if "in_reg" in block:
|
||||
cmd += f'design.set_property("{name}","IN_REG","{block["in_reg"]}")\n'
|
||||
|
@ -189,8 +185,6 @@ design.create("{2}", "{3}", "./../gateware", overwrite=True)
|
|||
|
||||
if "oe_reg" in block:
|
||||
cmd += f'design.set_property("{name}","OE_REG","{block["oe_reg"]}")\n'
|
||||
if "oe_clk_pin" in block:
|
||||
cmd += f'design.set_property("{name}","OE_CLK_PIN","{block["oe_clk_pin"]}")\n'
|
||||
|
||||
if "drive_strength" in block:
|
||||
cmd += 'design.set_property("{}","DRIVE_STRENGTH","{}")\n'.format(name, block["drive_strength"])
|
||||
|
@ -225,6 +219,8 @@ design.create("{2}", "{3}", "./../gateware", overwrite=True)
|
|||
cmd += f'design.set_property("{name}","IN_CLK_PIN","{in_clk_pin}")\n'
|
||||
if "in_delay" in block:
|
||||
cmd += f'design.set_property("{name}","INDELAY","{block["in_delay"]}")\n'
|
||||
if "in_clk_inv" in block:
|
||||
cmd += f'design.set_property("{name}","IS_INCLK_INVERTED","{block["in_clk_inv"]}")\n'
|
||||
if prop:
|
||||
for p, val in prop:
|
||||
cmd += 'design.set_property("{}","{}","{}")\n'.format(name, p, val)
|
||||
|
@ -248,7 +244,6 @@ design.create("{2}", "{3}", "./../gateware", overwrite=True)
|
|||
|
||||
if "out_clk_inv" in block:
|
||||
cmd += f'design.set_property("{name}","IS_OUTCLK_INVERTED","{block["out_clk_inv"]}")\n'
|
||||
cmd += f'design.set_property("{name}","OE_CLK_PIN_INV","{block["out_clk_inv"]}")\n'
|
||||
|
||||
if "drive_strength" in block:
|
||||
cmd += 'design.set_property("{}","DRIVE_STRENGTH","{}")\n'.format(name, block["drive_strength"])
|
||||
|
|
Loading…
Reference in New Issue