Skip to content

Commit

Permalink
targets/pcie: switch to PCIe X4 on all boards that support it.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed May 7, 2020
1 parent f993953 commit 27c242b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion litex_boards/targets/aller.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def __init__(self, platform, **kwargs):

# PCIe -------------------------------------------------------------------------------------
# PHY
self.submodules.pcie_phy = S7PCIEPHY(platform, platform.request("pcie_x1"),
self.submodules.pcie_phy = S7PCIEPHY(platform, platform.request("pcie_x4"),
data_width = 64,
bar0_size = 0x20000)
self.pcie_phy.add_timing_constraints(platform)
Expand Down
2 changes: 1 addition & 1 deletion litex_boards/targets/nereid.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def __init__(self, platform, **kwargs):

# PCIe -------------------------------------------------------------------------------------
# PHY
self.submodules.pcie_phy = S7PCIEPHY(platform, platform.request("pcie_x1"),
self.submodules.pcie_phy = S7PCIEPHY(platform, platform.request("pcie_x4"),
data_width = 64,
bar0_size = 0x20000)
self.pcie_phy.add_timing_constraints(platform)
Expand Down

0 comments on commit 27c242b

Please sign in to comment.