From c744204e1d4e2519187ac79eaefdd86597687860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Boczar?= Date: Wed, 15 Apr 2020 16:19:39 +0200 Subject: [PATCH] modules: fix nrows in MT8KTF51264 --- litedram/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litedram/modules.py b/litedram/modules.py index ec5f4ba..b93e7f4 100644 --- a/litedram/modules.py +++ b/litedram/modules.py @@ -575,7 +575,7 @@ class MT8KTF51264(SDRAMModule): memtype = "DDR3" # geometry nbanks = 8 - nrows = 16384 + nrows = 65536 ncols = 1024 # timings technology_timings = _TechnologyTimings(tREFI=64e6/8192, tWTR=(4, 7.5), tCCD=(4, None), tRRD=(4, 10), tZQCS=(64, 80))