mirror of
https://github.com/litex-hub/litex-boards.git
synced 2025-01-03 03:43:36 -05:00
targets/netv2/pcie: reduce max_pending_requests to 2 to reduce resource usage.
This commit is contained in:
parent
d256cc8bd6
commit
5fd04a97ea
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ class BaseSoC(SoCCore):
|
|||
data_width = 128,
|
||||
bar0_size = 0x20000)
|
||||
self.add_csr("pcie_phy")
|
||||
self.add_pcie(phy=self.pcie_phy, ndmas=1)
|
||||
self.add_pcie(phy=self.pcie_phy, ndmas=1, max_pending_requests=2)
|
||||
|
||||
# Leds -------------------------------------------------------------------------------------
|
||||
self.submodules.leds = LedChaser(
|
||||
|
|
Loading…
Reference in a new issue