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