sdram/module: fix MT8JTF12864, rowbits is 14 and not 16.... (16 was used from the beginning, but it does not fix the runtime issue)
This commit is contained in:
parent
75ee8a5db9
commit
a8d91c0c1d
|
@ -161,7 +161,7 @@ class MT47H128M8(SDRAMModule):
|
|||
class MT8JTF12864(SDRAMModule):
|
||||
geom_settings = {
|
||||
"nbanks": 8,
|
||||
"nrows": 65536,
|
||||
"nrows": 16384,
|
||||
"ncols": 1024
|
||||
}
|
||||
timing_settings = {
|
||||
|
|
Loading…
Reference in New Issue