integration/soc/add_etherbone: Exclude MAC from CSRs when in hybrid board since added externally.
This commit is contained in:
parent
9f88137ab6
commit
57782309a2
|
@ -1804,6 +1804,8 @@ class LiteXSoC(SoC):
|
|||
interface = interface,
|
||||
endianness = endianness,
|
||||
)
|
||||
if interface == "hybrid":
|
||||
ethcore.autocsr_exclude = {"mac"} # Exclude MAC here since added externally.
|
||||
if not with_sys_datapath:
|
||||
# Use PHY's eth_tx/eth_rx clock domains.
|
||||
ethcore = ClockDomainsRenamer({
|
||||
|
|
Loading…
Reference in New Issue