bench/targets: set buffer_depth to 255 (max).
This commit is contained in:
parent
c3e1dad289
commit
5abf44d89a
|
@ -42,7 +42,7 @@ class BenchSoC(SoCCore):
|
||||||
pads = self.platform.request("eth"),
|
pads = self.platform.request("eth"),
|
||||||
with_hw_init_reset = False)
|
with_hw_init_reset = False)
|
||||||
self.add_csr("ethphy")
|
self.add_csr("ethphy")
|
||||||
self.add_etherbone(phy=self.ethphy, buffer_depth=128)
|
self.add_etherbone(phy=self.ethphy, buffer_depth=255)
|
||||||
|
|
||||||
# SRAM -------------------------------------------------------------------------------------
|
# SRAM -------------------------------------------------------------------------------------
|
||||||
self.add_ram("sram", 0x20000000, 0x1000)
|
self.add_ram("sram", 0x20000000, 0x1000)
|
||||||
|
|
|
@ -43,7 +43,7 @@ class BenchSoC(SoCCore):
|
||||||
tx_delay = 0e-9,
|
tx_delay = 0e-9,
|
||||||
with_hw_init_reset = False)
|
with_hw_init_reset = False)
|
||||||
self.add_csr("ethphy")
|
self.add_csr("ethphy")
|
||||||
self.add_etherbone(phy=self.ethphy, buffer_depth=128)
|
self.add_etherbone(phy=self.ethphy, buffer_depth=255)
|
||||||
|
|
||||||
# SRAM -------------------------------------------------------------------------------------
|
# SRAM -------------------------------------------------------------------------------------
|
||||||
self.add_ram("sram", 0x20000000, 0x1000)
|
self.add_ram("sram", 0x20000000, 0x1000)
|
||||||
|
|
|
@ -42,7 +42,7 @@ class BenchSoC(SoCCore):
|
||||||
pads = self.platform.request("eth"),
|
pads = self.platform.request("eth"),
|
||||||
with_hw_init_reset = False)
|
with_hw_init_reset = False)
|
||||||
self.add_csr("ethphy")
|
self.add_csr("ethphy")
|
||||||
self.add_etherbone(phy=self.ethphy, buffer_depth=128)
|
self.add_etherbone(phy=self.ethphy, buffer_depth=255)
|
||||||
|
|
||||||
# SRAM -------------------------------------------------------------------------------------
|
# SRAM -------------------------------------------------------------------------------------
|
||||||
self.add_ram("sram", 0x20000000, 0x1000)
|
self.add_ram("sram", 0x20000000, 0x1000)
|
||||||
|
|
Loading…
Reference in New Issue