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
|
@ -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 New Issue