mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
SoCSDRAM: set default max_sdram_size to 1GB (maximum we can map with current mem_map)
This commit is contained in:
parent
46c1c5c16f
commit
36e5274a2b
1 changed files with 3 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
|||
# License: BSD
|
||||
|
||||
from math import log2
|
||||
import inspect
|
||||
|
||||
from migen import *
|
||||
from migen.genlib.record import *
|
||||
|
@ -138,8 +139,8 @@ def soc_sdram_args(parser):
|
|||
help="Minimum L2 cache datawidth (default=128)")
|
||||
|
||||
# SDRAM
|
||||
parser.add_argument("--max-sdram-size", default=None,
|
||||
help="Maximum SDRAM size mapped to the SoC (default=None))")
|
||||
parser.add_argument("--max-sdram-size", default=0x40000000,
|
||||
help="Maximum SDRAM size mapped to the SoC (default=1GB))")
|
||||
|
||||
def soc_sdram_argdict(args):
|
||||
r = soc_core_argdict(args)
|
||||
|
|
Loading…
Reference in a new issue