Skip to content

Commit

Permalink
targets/common.py: Do not place a false path between eth_tx and eth_r…
Browse files Browse the repository at this point in the history
…x clock

Internal-tag: [#67942]
Signed-off-by: Wiktoria Kuna <[email protected]>
  • Loading branch information
wkkuna committed Nov 18, 2024
1 parent a4f1816 commit 6efd222
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rowhammer_tester/targets/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ def add_host_bridge(self):
eth_tx_clk.attr.add("keep")
# Period constraint is specified in ns
self.platform.add_period_constraint(clock_pads.rx, 1e9/phy.rx_clk_freq)
self.platform.add_false_path_constraints(self.crg.cd_sys.clk, eth_rx_clk, eth_tx_clk)
self.platform.add_false_path_constraints(self.crg.cd_sys.clk, eth_rx_clk)
self.platform.add_false_path_constraints(self.crg.cd_sys.clk, eth_tx_clk)

# Common SoC configuration ---------------------------------------------------------------------

Expand Down

0 comments on commit 6efd222

Please sign in to comment.