From: Florent Kermarrec Date: Sat, 28 Mar 2015 15:35:15 +0000 (+0100) Subject: sdram/module: fix MT8JTF12864, rowbits is 14 and not 16.... (16 was used from the... X-Git-Tag: 24jan2021_ls180~2423 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a8d91c0c1d8d40bd5f978329c22291263a15693b;p=litex.git sdram/module: fix MT8JTF12864, rowbits is 14 and not 16.... (16 was used from the beginning, but it does not fix the runtime issue) --- diff --git a/misoclib/mem/sdram/module.py b/misoclib/mem/sdram/module.py index 75daaab2..af807b86 100644 --- a/misoclib/mem/sdram/module.py +++ b/misoclib/mem/sdram/module.py @@ -161,7 +161,7 @@ class MT47H128M8(SDRAMModule): class MT8JTF12864(SDRAMModule): geom_settings = { "nbanks": 8, - "nrows": 65536, + "nrows": 16384, "ncols": 1024 } timing_settings = {