forked from M-Labs/artiq
Sebastien Bourdeauducq
b27fa8964b
Also add without-sawg suffixes on Sayma. Closes #1060 Closes #1059
898 lines
34 KiB
Python
Executable File
898 lines
34 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import argparse
|
|
|
|
from migen import *
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
from migen.genlib.cdc import MultiReg
|
|
from migen.genlib.io import DifferentialOutput
|
|
|
|
from misoc.interconnect.csr import *
|
|
from misoc.cores import gpio
|
|
from misoc.cores.a7_gtp import *
|
|
from misoc.targets.kasli import (
|
|
BaseSoC, MiniSoC, soc_kasli_args, soc_kasli_argdict)
|
|
from misoc.integration.builder import builder_args, builder_argdict
|
|
|
|
from artiq.gateware.amp import AMPSoC
|
|
from artiq.gateware import rtio
|
|
from artiq.gateware.rtio.phy import ttl_simple, ttl_serdes_7series
|
|
from artiq.gateware import eem
|
|
from artiq.gateware.drtio.transceiver import gtp_7series
|
|
from artiq.gateware.drtio.siphaser import SiPhaser7Series
|
|
from artiq.gateware.drtio.rx_synchronizer import XilinxRXSynchronizer
|
|
from artiq.gateware.drtio import DRTIOMaster, DRTIOSatellite
|
|
from artiq.build_soc import *
|
|
|
|
|
|
class _RTIOCRG(Module, AutoCSR):
|
|
def __init__(self, platform):
|
|
self._pll_reset = CSRStorage(reset=1)
|
|
self._pll_locked = CSRStatus()
|
|
self.clock_domains.cd_rtio = ClockDomain()
|
|
self.clock_domains.cd_rtiox4 = ClockDomain(reset_less=True)
|
|
|
|
clk_synth = platform.request("si5324_clkout_fabric")
|
|
clk_synth_se = Signal()
|
|
clk_synth_buffered = Signal()
|
|
platform.add_period_constraint(clk_synth.p, 8.0)
|
|
self.specials += [
|
|
Instance("IBUFGDS",
|
|
p_DIFF_TERM="TRUE", p_IBUF_LOW_PWR="TRUE",
|
|
i_I=clk_synth.p, i_IB=clk_synth.n, o_O=clk_synth_se),
|
|
Instance("BUFG", i_I=clk_synth_se, o_O=clk_synth_buffered),
|
|
]
|
|
|
|
pll_locked = Signal()
|
|
rtio_clk = Signal()
|
|
rtiox4_clk = Signal()
|
|
ext_clkout_clk = Signal()
|
|
self.specials += [
|
|
Instance("PLLE2_ADV",
|
|
p_STARTUP_WAIT="FALSE", o_LOCKED=pll_locked,
|
|
|
|
p_REF_JITTER1=0.01,
|
|
p_CLKIN1_PERIOD=8.0, p_CLKIN2_PERIOD=8.0,
|
|
i_CLKIN2=clk_synth_buffered,
|
|
# Warning: CLKINSEL=0 means CLKIN2 is selected
|
|
i_CLKINSEL=0,
|
|
|
|
# VCO @ 1GHz when using 125MHz input
|
|
p_CLKFBOUT_MULT=8, p_DIVCLK_DIVIDE=1,
|
|
i_CLKFBIN=self.cd_rtio.clk,
|
|
i_RST=self._pll_reset.storage,
|
|
|
|
o_CLKFBOUT=rtio_clk,
|
|
|
|
p_CLKOUT0_DIVIDE=2, p_CLKOUT0_PHASE=0.0,
|
|
o_CLKOUT0=rtiox4_clk),
|
|
Instance("BUFG", i_I=rtio_clk, o_O=self.cd_rtio.clk),
|
|
Instance("BUFG", i_I=rtiox4_clk, o_O=self.cd_rtiox4.clk),
|
|
|
|
AsyncResetSynchronizer(self.cd_rtio, ~pll_locked),
|
|
MultiReg(pll_locked, self._pll_locked.status)
|
|
]
|
|
|
|
|
|
def fix_serdes_timing_path(platform):
|
|
# ignore timing of path from OSERDESE2 through the pad to ISERDESE2
|
|
platform.add_platform_command(
|
|
"set_false_path -quiet "
|
|
"-through [get_pins -filter {{REF_PIN_NAME == OQ || REF_PIN_NAME == TQ}} "
|
|
"-of [get_cells -filter {{REF_NAME == OSERDESE2}}]] "
|
|
"-to [get_pins -filter {{REF_PIN_NAME == D}} "
|
|
"-of [get_cells -filter {{REF_NAME == ISERDESE2}}]]"
|
|
)
|
|
|
|
|
|
class _StandaloneBase(MiniSoC, AMPSoC):
|
|
mem_map = {
|
|
"cri_con": 0x10000000,
|
|
"rtio": 0x20000000,
|
|
"rtio_dma": 0x30000000,
|
|
"mailbox": 0x70000000
|
|
}
|
|
mem_map.update(MiniSoC.mem_map)
|
|
|
|
def __init__(self, **kwargs):
|
|
MiniSoC.__init__(self,
|
|
cpu_type="or1k",
|
|
sdram_controller_type="minicon",
|
|
l2_size=128*1024,
|
|
ethmac_nrxslots=4,
|
|
ethmac_ntxslots=4,
|
|
**kwargs)
|
|
AMPSoC.__init__(self)
|
|
add_identifier(self)
|
|
|
|
self.submodules.leds = gpio.GPIOOut(Cat(
|
|
self.platform.request("user_led", 0)))
|
|
self.csr_devices.append("leds")
|
|
|
|
i2c = self.platform.request("i2c")
|
|
self.submodules.i2c = gpio.GPIOTristate([i2c.scl, i2c.sda])
|
|
self.csr_devices.append("i2c")
|
|
self.config["I2C_BUS_COUNT"] = 1
|
|
self.config["HAS_SI5324"] = None
|
|
self.config["SI5324_SOFT_RESET"] = None
|
|
|
|
def add_rtio(self, rtio_channels):
|
|
self.submodules.rtio_crg = _RTIOCRG(self.platform)
|
|
self.csr_devices.append("rtio_crg")
|
|
fix_serdes_timing_path(self.platform)
|
|
self.submodules.rtio_core = rtio.Core(rtio_channels)
|
|
self.csr_devices.append("rtio_core")
|
|
self.submodules.rtio = rtio.KernelInitiator()
|
|
self.submodules.rtio_dma = ClockDomainsRenamer("sys_kernel")(
|
|
rtio.DMA(self.get_native_sdram_if()))
|
|
self.register_kernel_cpu_csrdevice("rtio")
|
|
self.register_kernel_cpu_csrdevice("rtio_dma")
|
|
self.submodules.cri_con = rtio.CRIInterconnectShared(
|
|
[self.rtio.cri, self.rtio_dma.cri],
|
|
[self.rtio_core.cri])
|
|
self.register_kernel_cpu_csrdevice("cri_con")
|
|
self.submodules.rtio_moninj = rtio.MonInj(rtio_channels)
|
|
self.csr_devices.append("rtio_moninj")
|
|
|
|
self.platform.add_false_path_constraints(
|
|
self.crg.cd_sys.clk,
|
|
self.rtio_crg.cd_rtio.clk)
|
|
|
|
self.submodules.rtio_analyzer = rtio.Analyzer(self.rtio_core.cri,
|
|
self.get_native_sdram_if())
|
|
self.csr_devices.append("rtio_analyzer")
|
|
|
|
|
|
class Opticlock(_StandaloneBase):
|
|
"""
|
|
Opticlock extension variant configuration
|
|
"""
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.0"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
# self.config["SI5324_EXT_REF"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
eem.DIO.add_std(self, 0,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 1,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 2,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.Novogorny.add_std(self, 3, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 5, 4, ttl_serdes_7series.Output_8X)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
eem.Urukul.add_std(self, 6, None, ttl_serdes_7series.Output_8X)
|
|
eem.Zotino.add_std(self, 7, ttl_serdes_7series.Output_8X)
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
|
|
|
|
class SUServo(_StandaloneBase):
|
|
"""
|
|
SUServo (Sampler-Urukul-Servo) extension variant configuration
|
|
"""
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.1"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
# self.config["SI5324_EXT_REF"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
# EEM0, EEM1: DIO
|
|
eem.DIO.add_std(self, 0,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 1,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
|
|
# EEM3/2: Sampler, EEM5/4: Urukul, EEM7/6: Urukul
|
|
eem.SUServo.add_std(
|
|
self, eems_sampler=(3, 2),
|
|
eems_urukul0=(5, 4), eems_urukul1=(7, 6))
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
|
|
pads = self.platform.lookup_request("sampler3_adc_data_p")
|
|
self.platform.add_false_path_constraints(
|
|
pads.clkout, self.rtio_crg.cd_rtio.clk)
|
|
self.platform.add_false_path_constraints(
|
|
pads.clkout, self.crg.cd_sys.clk)
|
|
|
|
|
|
class SYSU(_StandaloneBase):
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.0"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
eem.DIO.add_std(self, 2,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
for i in range(3, 7):
|
|
eem.DIO.add_std(self, i,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 1, 0, ttl_serdes_7series.Output_8X)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
|
|
|
|
class MITLL(_StandaloneBase):
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.1"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
self.grabber_csr_group = []
|
|
eem.DIO.add_std(self, 4,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.InOut_8X)
|
|
eem.Urukul.add_std(self, 3, 2, ttl_serdes_7series.Output_8X)
|
|
eem.Zotino.add_std(self, 5, ttl_serdes_7series.Output_8X)
|
|
eem.Zotino.add_std(self, 6, ttl_serdes_7series.Output_8X)
|
|
eem.Grabber.add_std(self, 1, 0)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
self.config["HAS_GRABBER"] = None
|
|
self.add_csr_group("grabber", self.grabber_csr_group)
|
|
|
|
|
|
class USTC(_StandaloneBase):
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.1"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
self.grabber_csr_group = []
|
|
eem.DIO.add_std(self, 5,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 6,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 7,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 2, 1, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 4, 3, ttl_serdes_7series.Output_8X)
|
|
eem.Grabber.add_std(self, 0)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
self.config["HAS_GRABBER"] = None
|
|
self.add_csr_group("grabber", self.grabber_csr_group)
|
|
|
|
|
|
class Tsinghua(_StandaloneBase):
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.1"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
self.grabber_csr_group = []
|
|
eem.DIO.add_std(self, 4,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 3, 2, ttl_serdes_7series.Output_8X)
|
|
eem.Sampler.add_std(self, 6, 5, ttl_serdes_7series.Output_8X)
|
|
eem.Zotino.add_std(self, 7, ttl_serdes_7series.Output_8X)
|
|
eem.Grabber.add_std(self, 1, 0)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
self.config["HAS_GRABBER"] = None
|
|
self.add_csr_group("grabber", self.grabber_csr_group)
|
|
|
|
|
|
class WIPM(_StandaloneBase):
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.1"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
eem.DIO.add_std(self, 4,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 1, 0, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 3, 2, ttl_serdes_7series.Output_8X)
|
|
eem.Sampler.add_std(self, 6, 5, ttl_serdes_7series.Output_8X)
|
|
eem.Zotino.add_std(self, 7, ttl_serdes_7series.Output_8X)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
|
|
|
|
class PTB(_StandaloneBase):
|
|
"""PTB Kasli variant
|
|
|
|
F.k.a. ptb-schmidt, ptb-mehlstaeubler, ptb-huntemann-11, ptb-huntemann-19,
|
|
and ufr-warring in the artiq-setup repository
|
|
"""
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.1"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
# self.config["SI5324_EXT_REF"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
eem.DIO.add_std(self, 0,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 1,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 2,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.Sampler.add_std(self, 3, None, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 5, 4, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 6, None, ttl_serdes_7series.Output_8X)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
eem.Zotino.add_std(self, 7, ttl_serdes_7series.Output_8X)
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
|
|
|
|
class HUB(_StandaloneBase):
|
|
"""HUB Kasli variant
|
|
|
|
F.k.a. hub-krutzik, luh-ospelkaus-13, and luh-ospelkaus-14
|
|
in the artiq-setup repository
|
|
"""
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.1"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
# self.config["SI5324_EXT_REF"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
eem.DIO.add_std(self, 0,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 1,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 2,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.Sampler.add_std(self, 3, None, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 4, None, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 5, None, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 6, None, ttl_serdes_7series.Output_8X)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
eem.Zotino.add_std(self, 7, ttl_serdes_7series.Output_8X)
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
|
|
|
|
class LUH(_StandaloneBase):
|
|
"""LUH Kasli variant
|
|
|
|
F.k.a. luh-ospelkaus-16, luh-ospelkaus-18 in the artiq-setup repository
|
|
"""
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.1"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
# self.config["SI5324_EXT_REF"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
self.grabber_csr_group = []
|
|
eem.DIO.add_std(self, 0,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 1,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.DIO.add_std(self, 2,
|
|
ttl_serdes_7series.Output_8X, ttl_serdes_7series.Output_8X)
|
|
eem.Sampler.add_std(self, 3, None, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 4, None, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 5, None, ttl_serdes_7series.Output_8X)
|
|
eem.Grabber.add_std(self, 6)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
eem.Zotino.add_std(self, 7, ttl_serdes_7series.Output_8X)
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
self.config["HAS_GRABBER"] = None
|
|
self.add_csr_group("grabber", self.grabber_csr_group)
|
|
|
|
|
|
class Tester(_StandaloneBase):
|
|
"""
|
|
Configuration for CI tests. Contains the maximum number of different EEMs.
|
|
"""
|
|
def __init__(self, hw_rev=None, **kwargs):
|
|
if hw_rev is None:
|
|
hw_rev = "v1.1"
|
|
_StandaloneBase.__init__(self, hw_rev=hw_rev, **kwargs)
|
|
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
# self.config["SI5324_EXT_REF"] = None
|
|
self.config["RTIO_FREQUENCY"] = "125.0"
|
|
if hw_rev == "v1.0":
|
|
# EEM clock fan-out from Si5324, not MMCX
|
|
self.comb += self.platform.request("clk_sel").eq(1)
|
|
|
|
self.rtio_channels = []
|
|
eem.DIO.add_std(self, 5,
|
|
ttl_serdes_7series.InOut_8X, ttl_serdes_7series.Output_8X)
|
|
eem.Urukul.add_std(self, 1, 0, ttl_serdes_7series.Output_8X)
|
|
eem.Sampler.add_std(self, 3, 2, ttl_serdes_7series.Output_8X)
|
|
eem.Zotino.add_std(self, 4, ttl_serdes_7series.Output_8X)
|
|
|
|
for i in (1, 2):
|
|
sfp_ctl = self.platform.request("sfp_ctl", i)
|
|
phy = ttl_simple.Output(sfp_ctl.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
|
|
|
|
class _RTIOClockMultiplier(Module):
|
|
def __init__(self, rtio_clk_freq):
|
|
self.clock_domains.cd_rtiox4 = ClockDomain(reset_less=True)
|
|
|
|
# See "Global Clock Network Deskew Using Two BUFGs" in ug472.
|
|
clkfbout = Signal()
|
|
clkfbin = Signal()
|
|
rtiox4_clk = Signal()
|
|
self.specials += [
|
|
Instance("MMCME2_BASE",
|
|
p_CLKIN1_PERIOD=1e9/rtio_clk_freq,
|
|
i_CLKIN1=ClockSignal("rtio"),
|
|
i_RST=ResetSignal("rtio"),
|
|
|
|
p_CLKFBOUT_MULT_F=8.0, p_DIVCLK_DIVIDE=1,
|
|
|
|
o_CLKFBOUT=clkfbout, i_CLKFBIN=clkfbin,
|
|
|
|
p_CLKOUT0_DIVIDE_F=2.0, o_CLKOUT0=rtiox4_clk,
|
|
),
|
|
Instance("BUFG", i_I=clkfbout, o_O=clkfbin),
|
|
Instance("BUFG", i_I=rtiox4_clk, o_O=self.cd_rtiox4.clk)
|
|
]
|
|
|
|
|
|
class _MasterBase(MiniSoC, AMPSoC):
|
|
mem_map = {
|
|
"cri_con": 0x10000000,
|
|
"rtio": 0x20000000,
|
|
"rtio_dma": 0x30000000,
|
|
"drtio_aux": 0x50000000,
|
|
"mailbox": 0x70000000
|
|
}
|
|
mem_map.update(MiniSoC.mem_map)
|
|
|
|
def __init__(self, **kwargs):
|
|
MiniSoC.__init__(self,
|
|
cpu_type="or1k",
|
|
sdram_controller_type="minicon",
|
|
l2_size=128*1024,
|
|
ethmac_nrxslots=4,
|
|
ethmac_ntxslots=4,
|
|
**kwargs)
|
|
AMPSoC.__init__(self)
|
|
add_identifier(self)
|
|
|
|
platform = self.platform
|
|
rtio_clk_freq = 150e6
|
|
|
|
i2c = self.platform.request("i2c")
|
|
self.submodules.i2c = gpio.GPIOTristate([i2c.scl, i2c.sda])
|
|
self.csr_devices.append("i2c")
|
|
self.config["I2C_BUS_COUNT"] = 1
|
|
self.config["HAS_SI5324"] = None
|
|
self.config["SI5324_SOFT_RESET"] = None
|
|
self.config["SI5324_AS_SYNTHESIZER"] = None
|
|
self.config["RTIO_FREQUENCY"] = str(rtio_clk_freq/1e6)
|
|
|
|
self.sfp_ctl = [platform.request("sfp_ctl", i) for i in range(1, 3)]
|
|
self.comb += [sc.tx_disable.eq(0) for sc in self.sfp_ctl]
|
|
self.submodules.drtio_transceiver = gtp_7series.GTP(
|
|
qpll_channel=self.drtio_qpll_channel,
|
|
data_pads=[platform.request("sfp", i) for i in range(1, 3)],
|
|
sys_clk_freq=self.clk_freq,
|
|
rtio_clk_freq=rtio_clk_freq)
|
|
self.csr_devices.append("drtio_transceiver")
|
|
self.sync += self.disable_si5324_ibuf.eq(
|
|
~self.drtio_transceiver.stable_clkin.storage)
|
|
|
|
drtio_csr_group = []
|
|
drtio_memory_group = []
|
|
self.drtio_cri = []
|
|
for i in range(2):
|
|
core_name = "drtio" + str(i)
|
|
memory_name = "drtio" + str(i) + "_aux"
|
|
drtio_csr_group.append(core_name)
|
|
drtio_memory_group.append(memory_name)
|
|
|
|
core = ClockDomainsRenamer({"rtio_rx": "rtio_rx" + str(i)})(
|
|
DRTIOMaster(self.drtio_transceiver.channels[i]))
|
|
setattr(self.submodules, core_name, core)
|
|
self.drtio_cri.append(core.cri)
|
|
self.csr_devices.append(core_name)
|
|
|
|
memory_address = self.mem_map["drtio_aux"] + 0x800*i
|
|
self.add_wb_slave(memory_address, 0x800,
|
|
core.aux_controller.bus)
|
|
self.add_memory_region(memory_name, memory_address | self.shadow_base, 0x800)
|
|
self.config["HAS_DRTIO"] = None
|
|
self.add_csr_group("drtio", drtio_csr_group)
|
|
self.add_memory_group("drtio_aux", drtio_memory_group)
|
|
|
|
rtio_clk_period = 1e9/rtio_clk_freq
|
|
gtp = self.drtio_transceiver.gtps[0]
|
|
platform.add_period_constraint(gtp.txoutclk, rtio_clk_period)
|
|
platform.add_period_constraint(gtp.rxoutclk, rtio_clk_period)
|
|
platform.add_false_path_constraints(
|
|
self.crg.cd_sys.clk,
|
|
gtp.txoutclk, gtp.rxoutclk)
|
|
for gtp in self.drtio_transceiver.gtps[1:]:
|
|
platform.add_period_constraint(gtp.rxoutclk, rtio_clk_period)
|
|
platform.add_false_path_constraints(
|
|
self.crg.cd_sys.clk, gtp.rxoutclk)
|
|
|
|
self.submodules.rtio_clkmul = _RTIOClockMultiplier(rtio_clk_freq)
|
|
fix_serdes_timing_path(platform)
|
|
|
|
def add_rtio(self, rtio_channels):
|
|
self.submodules.rtio_moninj = rtio.MonInj(rtio_channels)
|
|
self.csr_devices.append("rtio_moninj")
|
|
|
|
self.submodules.rtio_core = rtio.Core(rtio_channels, glbl_fine_ts_width=3)
|
|
self.csr_devices.append("rtio_core")
|
|
|
|
self.submodules.rtio = rtio.KernelInitiator()
|
|
self.submodules.rtio_dma = ClockDomainsRenamer("sys_kernel")(
|
|
rtio.DMA(self.get_native_sdram_if()))
|
|
self.register_kernel_cpu_csrdevice("rtio")
|
|
self.register_kernel_cpu_csrdevice("rtio_dma")
|
|
self.submodules.cri_con = rtio.CRIInterconnectShared(
|
|
[self.rtio.cri, self.rtio_dma.cri],
|
|
[self.rtio_core.cri] + self.drtio_cri)
|
|
self.register_kernel_cpu_csrdevice("cri_con")
|
|
|
|
self.submodules.rtio_analyzer = rtio.Analyzer(self.cri_con.switch.slave,
|
|
self.get_native_sdram_if())
|
|
self.csr_devices.append("rtio_analyzer")
|
|
|
|
# Never running out of stupid features, GTs on A7 make you pack
|
|
# unrelated transceiver PLLs into one GTPE2_COMMON yourself.
|
|
def create_qpll(self):
|
|
# The GTP acts up if you send any glitch to its
|
|
# clock input, even while the PLL is held in reset.
|
|
self.disable_si5324_ibuf = Signal(reset=1)
|
|
self.disable_si5324_ibuf.attr.add("no_retiming")
|
|
si5324_clkout = self.platform.request("si5324_clkout")
|
|
si5324_clkout_buf = Signal()
|
|
self.specials += Instance("IBUFDS_GTE2",
|
|
i_CEB=self.disable_si5324_ibuf,
|
|
i_I=si5324_clkout.p, i_IB=si5324_clkout.n,
|
|
o_O=si5324_clkout_buf)
|
|
# Note precisely the rules Xilinx made up:
|
|
# refclksel=0b001 GTREFCLK0 selected
|
|
# refclksel=0b010 GTREFCLK1 selected
|
|
# but if only one clock is used, then it must be 001.
|
|
qpll_drtio_settings = QPLLSettings(
|
|
refclksel=0b001,
|
|
fbdiv=4,
|
|
fbdiv_45=5,
|
|
refclk_div=1)
|
|
qpll_eth_settings = QPLLSettings(
|
|
refclksel=0b010,
|
|
fbdiv=4,
|
|
fbdiv_45=5,
|
|
refclk_div=1)
|
|
qpll = QPLL(si5324_clkout_buf, qpll_drtio_settings,
|
|
self.crg.clk125_buf, qpll_eth_settings)
|
|
self.submodules += qpll
|
|
self.drtio_qpll_channel, self.ethphy_qpll_channel = qpll.channels
|
|
|
|
|
|
class _SatelliteBase(BaseSoC):
|
|
mem_map = {
|
|
"drtio_aux": 0x50000000,
|
|
}
|
|
mem_map.update(BaseSoC.mem_map)
|
|
|
|
def __init__(self, **kwargs):
|
|
BaseSoC.__init__(self,
|
|
cpu_type="or1k",
|
|
sdram_controller_type="minicon",
|
|
l2_size=128*1024,
|
|
**kwargs)
|
|
add_identifier(self)
|
|
|
|
platform = self.platform
|
|
rtio_clk_freq = 150e6
|
|
|
|
disable_si5324_ibuf = Signal(reset=1)
|
|
disable_si5324_ibuf.attr.add("no_retiming")
|
|
si5324_clkout = platform.request("si5324_clkout")
|
|
si5324_clkout_buf = Signal()
|
|
self.specials += Instance("IBUFDS_GTE2",
|
|
i_CEB=disable_si5324_ibuf,
|
|
i_I=si5324_clkout.p, i_IB=si5324_clkout.n,
|
|
o_O=si5324_clkout_buf)
|
|
qpll_drtio_settings = QPLLSettings(
|
|
refclksel=0b001,
|
|
fbdiv=4,
|
|
fbdiv_45=5,
|
|
refclk_div=1)
|
|
qpll = QPLL(si5324_clkout_buf, qpll_drtio_settings)
|
|
self.submodules += qpll
|
|
|
|
self.comb += platform.request("sfp_ctl", 0).tx_disable.eq(0)
|
|
self.submodules.drtio_transceiver = gtp_7series.GTP(
|
|
qpll_channel=qpll.channels[0],
|
|
data_pads=[platform.request("sfp", 0)],
|
|
sys_clk_freq=self.clk_freq,
|
|
rtio_clk_freq=rtio_clk_freq)
|
|
self.csr_devices.append("drtio_transceiver")
|
|
self.sync += disable_si5324_ibuf.eq(
|
|
~self.drtio_transceiver.stable_clkin.storage)
|
|
|
|
self.config["RTIO_FREQUENCY"] = str(rtio_clk_freq/1e6)
|
|
self.submodules.siphaser = SiPhaser7Series(
|
|
si5324_clkin=platform.request("si5324_clkin"),
|
|
si5324_clkout_fabric=platform.request("si5324_clkout_fabric"),
|
|
ref_clk=self.crg.clk125_div2, ref_div2=True)
|
|
platform.add_false_path_constraints(
|
|
self.crg.cd_sys.clk, self.siphaser.mmcm_freerun_output)
|
|
self.csr_devices.append("siphaser")
|
|
i2c = self.platform.request("i2c")
|
|
self.submodules.i2c = gpio.GPIOTristate([i2c.scl, i2c.sda])
|
|
self.csr_devices.append("i2c")
|
|
self.config["I2C_BUS_COUNT"] = 1
|
|
self.config["HAS_SI5324"] = None
|
|
self.config["SI5324_SOFT_RESET"] = None
|
|
|
|
rtio_clk_period = 1e9/rtio_clk_freq
|
|
gtp = self.drtio_transceiver.gtps[0]
|
|
platform.add_period_constraint(gtp.txoutclk, rtio_clk_period)
|
|
platform.add_period_constraint(gtp.rxoutclk, rtio_clk_period)
|
|
platform.add_false_path_constraints(
|
|
self.crg.cd_sys.clk,
|
|
gtp.txoutclk, gtp.rxoutclk)
|
|
|
|
self.submodules.rtio_clkmul = _RTIOClockMultiplier(rtio_clk_freq)
|
|
fix_serdes_timing_path(platform)
|
|
|
|
def add_rtio(self, rtio_channels):
|
|
self.submodules.rtio_moninj = rtio.MonInj(rtio_channels)
|
|
self.csr_devices.append("rtio_moninj")
|
|
|
|
rx0 = ClockDomainsRenamer({"rtio_rx": "rtio_rx0"})
|
|
self.submodules.rx_synchronizer = rx0(XilinxRXSynchronizer())
|
|
self.submodules.drtio0 = rx0(DRTIOSatellite(
|
|
self.drtio_transceiver.channels[0], rtio_channels,
|
|
self.rx_synchronizer))
|
|
self.csr_devices.append("drtio0")
|
|
self.add_wb_slave(self.mem_map["drtio_aux"], 0x800,
|
|
self.drtio0.aux_controller.bus)
|
|
self.add_memory_region("drtio0_aux", self.mem_map["drtio_aux"] | self.shadow_base, 0x800)
|
|
self.config["HAS_DRTIO"] = None
|
|
self.add_csr_group("drtio", ["drtio0"])
|
|
self.add_memory_group("drtio_aux", ["drtio0_aux"])
|
|
|
|
|
|
class Master(_MasterBase):
|
|
def __init__(self, *args, **kwargs):
|
|
_MasterBase.__init__(self, *args, **kwargs)
|
|
|
|
self.rtio_channels = []
|
|
|
|
phy = ttl_simple.Output(self.platform.request("user_led", 0))
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
for sc in self.sfp_ctl:
|
|
phy = ttl_simple.Output(sc.led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
eem.DIO.add_std(self, 0, ttl_serdes_7series.InOut_8X, ttl_serdes_7series.InOut_8X)
|
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
|
self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels)
|
|
self.rtio_channels.append(rtio.LogChannel())
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
|
|
|
|
class Satellite(_SatelliteBase):
|
|
def __init__(self, *args, **kwargs):
|
|
_SatelliteBase.__init__(self, *args, **kwargs)
|
|
|
|
|
|
self.rtio_channels = []
|
|
phy = ttl_simple.Output(self.platform.request("user_led", 0))
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
for i in range(1, 3):
|
|
phy = ttl_simple.Output(self.platform.request("sfp_ctl", i).led)
|
|
self.submodules += phy
|
|
self.rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
eem.DIO.add_std(self, 0, ttl_serdes_7series.InOut_8X, ttl_serdes_7series.InOut_8X)
|
|
|
|
self.add_rtio(self.rtio_channels)
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser(
|
|
description="ARTIQ device binary builder for Kasli systems")
|
|
builder_args(parser)
|
|
soc_kasli_args(parser)
|
|
parser.set_defaults(output_dir="artiq_kasli")
|
|
variants = {cls.__name__.lower(): cls for cls in [
|
|
Opticlock, SUServo, SYSU, MITLL, USTC, Tsinghua, WIPM, PTB, HUB, LUH,
|
|
Tester, Master, Satellite]}
|
|
parser.add_argument("-V", "--variant", default="opticlock",
|
|
help="variant: {} (default: %(default)s)".format(
|
|
"/".join(sorted(variants.keys()))))
|
|
args = parser.parse_args()
|
|
|
|
variant = args.variant.lower()
|
|
try:
|
|
cls = variants[variant]
|
|
except KeyError:
|
|
raise SystemExit("Invalid variant (-V/--variant)")
|
|
|
|
soc = cls(**soc_kasli_argdict(args))
|
|
build_artiq_soc(soc, builder_argdict(args))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|