mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
soc/add_etherbone: Fix UDPIPCore clock domain (should still run at eth_clk even if Etherbone is running in sys_clk) since data-width convertion is done on UDP.
This commit is contained in:
parent
a1e54671be
commit
5af8e5c934
1 changed files with 2 additions and 1 deletions
|
@ -1408,7 +1408,8 @@ class LiteXSoC(SoC):
|
|||
clk_freq = self.clk_freq)
|
||||
ethcore = ClockDomainsRenamer({
|
||||
"eth_tx": phy_cd + "_tx",
|
||||
"eth_rx": phy_cd + "_rx"})(ethcore)
|
||||
"eth_rx": phy_cd + "_rx",
|
||||
"sys": phy_cd + "_rx"})(ethcore)
|
||||
self.submodules.ethcore = ethcore
|
||||
|
||||
# Clock domain renaming
|
||||
|
|
Loading…
Reference in a new issue