Skip to content

Commit

Permalink
free up some ram
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Jul 5, 2015
1 parent bcecdcd commit e355695
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions targets/atlys.py
Expand Up @@ -152,11 +152,12 @@ class BaseSoC(SDRAMSoC):
}
mem_map.update(SDRAMSoC.mem_map)

def __init__(self, platform, firmware_ram_size=0x10000, **kwargs):
def __init__(self, platform, firmware_ram_size=0x8000, **kwargs):
clk_freq = 75*1000000
SDRAMSoC.__init__(self, platform, clk_freq,
integrated_rom_size=0x8000,
sdram_controller_settings=LASMIconSettings(with_bandwidth=True),
sdram_controller_settings=LASMIconSettings(l2_size=128,
with_bandwidth=True),
**kwargs)

self.submodules.crg = _CRG(platform, clk_freq)
Expand Down

0 comments on commit e355695

Please sign in to comment.