Skip to content

Commit

Permalink
targets/artiq_ppro: use new sdram_controller_settings parameter
Browse files Browse the repository at this point in the history
enjoy-digital authored and sbourdeauducq committed Mar 21, 2015
1 parent e4a71e6 commit 494c670
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions soc/targets/artiq_ppro.py
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@
from mibuild.generic_platform import *

from misoclib.cpu.peripherals import gpio
from misoclib.mem.sdram.core.minicon import MiniconSettings
from targets.ppro import BaseSoC

from artiq.gateware import rtio, ad9858
@@ -93,11 +94,10 @@ class ARTIQMiniSoC(BaseSoC):
csr_map.update(BaseSoC.csr_map)

def __init__(self, platform, cpu_type="or1k",
ramcon_type="minicon", with_l2=False,
with_test_gen=False, **kwargs):
BaseSoC.__init__(self, platform,
cpu_type=cpu_type, ramcon_type=ramcon_type,
with_l2=with_l2,
cpu_type=cpu_type,
sdram_controller_settings=MiniconSettings(),
**kwargs)
platform.add_extension(_tester_io)

0 comments on commit 494c670

Please sign in to comment.