Commit e7ed194d authored by Sebastien Bourdeauducq's avatar Sebastien Bourdeauducq
Browse files

sayma_amc: do not constrain Ethernet clocks

parent cfd6fcdd
...@@ -324,15 +324,5 @@ class Platform(XilinxPlatform): ...@@ -324,15 +324,5 @@ class Platform(XilinxPlatform):
self, "xcku040-ffva1156-1-c", _io, _connectors, self, "xcku040-ffva1156-1-c", _io, _connectors,
toolchain="vivado") toolchain="vivado")
def do_finalize(self, fragment): # We do not contrain Ethernet clocks here, since we do not know
XilinxPlatform.do_finalize(self, fragment) # if they are RGMII (125MHz) or MII (25MHz)
try:
self.add_period_constraint(
self.lookup_request("eth_clocks").rx, 8.0)
except ConstraintError:
pass
try:
self.add_period_constraint(
self.lookup_request("eth_clocks").tx, 8.0)
except ConstraintError:
pass
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment