Skip to content

Commit

Permalink
targets: reduce firmware_ram and HDMIIn fifo_depth on opsis (should f…
Browse files Browse the repository at this point in the history
…ix the build)
  • Loading branch information
enjoy-digital committed Sep 14, 2015
1 parent 5868565 commit 70d371c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion targets/atlys_base.py
Expand Up @@ -136,7 +136,7 @@ class BaseSoC(SDRAMSoC):
mem_map.update(SDRAMSoC.mem_map)

def __init__(self, platform,
firmware_ram_size=0x10000,
firmware_ram_size=0xa000,
firmware_filename=None,
**kwargs):
clk_freq = 75*1000000
Expand Down
2 changes: 1 addition & 1 deletion targets/opsis_base.py
Expand Up @@ -141,7 +141,7 @@ class BaseSoC(SDRAMSoC):
mem_map.update(SDRAMSoC.mem_map)

def __init__(self, platform,
firmware_ram_size=0x10000,
firmware_ram_size=0xa000,
firmware_filename=None,
**kwargs):
clk_freq = 50*1000000
Expand Down
4 changes: 2 additions & 2 deletions targets/opsis_hdmi2usb.py
Expand Up @@ -27,10 +27,10 @@ def __init__(self, platform, **kwargs):
opsis_base_soc.__init__(self, platform, **kwargs)
self.submodules.hdmi_in0 = HDMIIn(platform.request("hdmi_in", 0),
self.sdram.crossbar.get_master(),
fifo_depth=1024)
fifo_depth=512)
self.submodules.hdmi_in1 = HDMIIn(platform.request("hdmi_in", 1),
self.sdram.crossbar.get_master(),
fifo_depth=1024)
fifo_depth=512)
self.submodules.hdmi_out0 = HDMIOut(platform.request("hdmi_out", 0),
self.sdram.crossbar.get_master())
self.submodules.hdmi_out1 = HDMIOut(platform.request("hdmi_out", 1),
Expand Down

0 comments on commit 70d371c

Please sign in to comment.