Skip to content

Commit

Permalink
Merge pull request #563 from smunaut/adi
Browse files Browse the repository at this point in the history
Some minor updates to the ADI ADRV2CRR board
  • Loading branch information
enjoy-digital authored Feb 6, 2024
2 parents a6f8f0e + b3caabc commit f7c7a5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions litex_boards/targets/adi_adrv2crr_fmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, platform, sys_clk_freq, ddram_channel):

# # #

self.pll = pll = USPMMCM(speedgrade=-1)
self.pll = pll = USPMMCM(speedgrade=-2)
self.comb += pll.reset.eq(self.rst)
pll.register_clkin(platform.request("ddram_refclk", ddram_channel), 300e6)
pll.create_clkout(self.cd_pll4x, sys_clk_freq*4, buf=None, with_reset=False)
Expand Down Expand Up @@ -93,9 +93,9 @@ def __init__(self, sys_clk_freq=150e6, ddram_channel=0,
if with_pcie:
assert self.csr_data_width == 32

self.pcie_phy = USPPCIEPHY(platform, platform.request("pcie_x4"),
self.pcie_phy = USPPCIEPHY(platform, platform.request("pcie_x8"),
speed = "gen3",
data_width = 128,
data_width = 256,
bar0_size = 0x20000)
self.add_pcie(phy=self.pcie_phy, ndmas=1)

Expand Down

0 comments on commit f7c7a5a

Please sign in to comment.