Skip to content

Commit

Permalink
Merge pull request litex-hub#577 from hansfbaier/qmtech-ddr3-fix
Browse files Browse the repository at this point in the history
qmtech_artix7_fgg676/fbg484: fix wrong memory chip type
  • Loading branch information
enjoy-digital authored Apr 4, 2024
2 parents 27c02a4 + 5629f9e commit 44ab802
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions litex_boards/targets/qmtech_artix7_fbg484.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from litex.soc.cores.video import VideoVGAPHY
from litex.soc.cores.led import LedChaser

from litedram.modules import MT41J128M16
from litedram.modules import MT41K128M16
from litedram.phy import s7ddrphy

from liteeth.phy.mii import LiteEthPHYMII
Expand Down Expand Up @@ -100,7 +100,7 @@ def __init__(self, toolchain="vivado", kgates=200, sys_clk_freq=100e6, with_daug
sys_clk_freq = sys_clk_freq)
self.add_sdram("sdram",
phy = self.ddrphy,
module = MT41J128M16(sys_clk_freq, "1:4"),
module = MT41K128M16(sys_clk_freq, "1:4"),
l2_cache_size = kwargs.get("l2_size", 8192)
)

Expand Down
4 changes: 2 additions & 2 deletions litex_boards/targets/qmtech_artix7_fgg676.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from litex.soc.cores.video import VideoVGAPHY
from litex.soc.cores.led import LedChaser

from litedram.modules import MT41J128M16
from litedram.modules import MT41K128M16
from litedram.phy import s7ddrphy

from liteeth.phy.mii import LiteEthPHYMII
Expand Down Expand Up @@ -100,7 +100,7 @@ def __init__(self, toolchain="vivado", kgates=100, sys_clk_freq=100e6, with_daug
sys_clk_freq = sys_clk_freq)
self.add_sdram("sdram",
phy = self.ddrphy,
module = MT41J128M16(sys_clk_freq, "1:4"),
module = MT41K128M16(sys_clk_freq, "1:4"),
l2_cache_size = kwargs.get("l2_size", 8192)
)

Expand Down

0 comments on commit 44ab802

Please sign in to comment.