2017-01-30 09:24:43 +08:00
|
|
|
#!/usr/bin/env python3
|
2015-11-04 00:35:03 +08:00
|
|
|
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
from migen import *
|
2015-07-27 20:12:17 +08:00
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
from migen.genlib.cdc import MultiReg
|
2015-11-04 00:35:03 +08:00
|
|
|
from migen.build.generic_platform import *
|
|
|
|
from migen.build.xilinx.vivado import XilinxVivadoToolchain
|
|
|
|
from migen.build.xilinx.ise import XilinxISEToolchain
|
2015-02-27 12:50:52 +08:00
|
|
|
|
2015-11-04 00:35:03 +08:00
|
|
|
from misoc.interconnect.csr import *
|
|
|
|
from misoc.cores import gpio
|
|
|
|
from misoc.targets.kc705 import MiniSoC, soc_kc705_args, soc_kc705_argdict
|
2016-03-07 00:18:47 +08:00
|
|
|
from misoc.integration.builder import builder_args, builder_argdict
|
2015-02-27 12:50:52 +08:00
|
|
|
|
2017-01-19 05:28:14 +08:00
|
|
|
from artiq.gateware.amp import AMPSoC, build_artiq_soc
|
2016-11-21 23:13:55 +08:00
|
|
|
from artiq.gateware import rtio, nist_clock, nist_qc2
|
2016-07-22 21:56:09 +08:00
|
|
|
from artiq.gateware.rtio.phy import (ttl_simple, ttl_serdes_7series,
|
2017-10-23 20:09:05 +08:00
|
|
|
dds, spi, ad5360_monitor)
|
2015-11-10 22:44:38 +08:00
|
|
|
from artiq import __version__ as artiq_version
|
2015-02-27 12:50:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
class _RTIOCRG(Module, AutoCSR):
|
|
|
|
def __init__(self, platform, rtio_internal_clk):
|
2015-04-02 18:22:18 +08:00
|
|
|
self._clock_sel = CSRStorage()
|
2015-07-27 20:12:17 +08:00
|
|
|
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)
|
2015-02-27 12:50:52 +08:00
|
|
|
|
2015-07-28 18:56:35 +08:00
|
|
|
# 10 MHz when using 125MHz input
|
|
|
|
self.clock_domains.cd_ext_clkout = ClockDomain(reset_less=True)
|
2016-07-07 14:53:01 +08:00
|
|
|
ext_clkout = platform.request("user_sma_gpio_p_33")
|
2015-07-28 18:56:35 +08:00
|
|
|
self.sync.ext_clkout += ext_clkout.eq(~ext_clkout)
|
|
|
|
|
|
|
|
|
2015-02-27 12:50:52 +08:00
|
|
|
rtio_external_clk = Signal()
|
|
|
|
user_sma_clock = platform.request("user_sma_clock")
|
|
|
|
platform.add_period_constraint(user_sma_clock.p, 8.0)
|
|
|
|
self.specials += Instance("IBUFDS",
|
|
|
|
i_I=user_sma_clock.p, i_IB=user_sma_clock.n,
|
|
|
|
o_O=rtio_external_clk)
|
2015-07-27 20:12:17 +08:00
|
|
|
|
|
|
|
pll_locked = Signal()
|
|
|
|
rtio_clk = Signal()
|
|
|
|
rtiox4_clk = Signal()
|
2015-07-28 18:56:35 +08:00
|
|
|
ext_clkout_clk = Signal()
|
2015-07-27 20:12:17 +08:00
|
|
|
self.specials += [
|
|
|
|
Instance("PLLE2_ADV",
|
|
|
|
p_STARTUP_WAIT="FALSE", o_LOCKED=pll_locked,
|
|
|
|
|
|
|
|
p_REF_JITTER1=0.01,
|
2016-02-22 17:52:40 +08:00
|
|
|
p_CLKIN1_PERIOD=8.0, p_CLKIN2_PERIOD=8.0,
|
|
|
|
i_CLKIN1=rtio_internal_clk, i_CLKIN2=rtio_external_clk,
|
2015-07-27 20:12:17 +08:00
|
|
|
# Warning: CLKINSEL=0 means CLKIN2 is selected
|
|
|
|
i_CLKINSEL=~self._clock_sel.storage,
|
|
|
|
|
2016-02-22 17:52:40 +08:00
|
|
|
# VCO @ 1GHz when using 125MHz input
|
|
|
|
p_CLKFBOUT_MULT=8, p_DIVCLK_DIVIDE=1,
|
2015-07-27 20:12:17 +08:00
|
|
|
i_CLKFBIN=self.cd_rtio.clk,
|
|
|
|
i_RST=self._pll_reset.storage,
|
|
|
|
|
|
|
|
o_CLKFBOUT=rtio_clk,
|
2015-07-27 20:31:37 +08:00
|
|
|
|
|
|
|
p_CLKOUT0_DIVIDE=2, p_CLKOUT0_PHASE=0.0,
|
2015-07-28 18:56:35 +08:00
|
|
|
o_CLKOUT0=rtiox4_clk,
|
|
|
|
|
|
|
|
p_CLKOUT1_DIVIDE=50, p_CLKOUT1_PHASE=0.0,
|
|
|
|
o_CLKOUT1=ext_clkout_clk),
|
2015-07-27 20:12:17 +08:00
|
|
|
Instance("BUFG", i_I=rtio_clk, o_O=self.cd_rtio.clk),
|
|
|
|
Instance("BUFG", i_I=rtiox4_clk, o_O=self.cd_rtiox4.clk),
|
2015-07-28 18:56:35 +08:00
|
|
|
Instance("BUFG", i_I=ext_clkout_clk, o_O=self.cd_ext_clkout.clk),
|
2015-07-27 20:12:17 +08:00
|
|
|
|
|
|
|
AsyncResetSynchronizer(self.cd_rtio, ~pll_locked),
|
|
|
|
MultiReg(pll_locked, self._pll_locked.status)
|
|
|
|
]
|
2015-02-27 12:50:52 +08:00
|
|
|
|
|
|
|
|
2016-07-07 14:53:01 +08:00
|
|
|
# The default user SMA voltage on KC705 is 2.5V, and the Migen platform
|
|
|
|
# follows this default. But since the SMAs are on the same bank as the DDS,
|
|
|
|
# which is set to 3.3V by reprogramming the KC705 power ICs, we need to
|
2016-11-20 17:49:06 +08:00
|
|
|
# redefine them here.
|
2016-07-07 14:53:01 +08:00
|
|
|
_sma33_io = [
|
|
|
|
("user_sma_gpio_p_33", 0, Pins("Y23"), IOStandard("LVCMOS33")),
|
|
|
|
("user_sma_gpio_n_33", 0, Pins("Y24"), IOStandard("LVCMOS33")),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2016-02-29 05:41:17 +08:00
|
|
|
_ams101_dac = [
|
|
|
|
("ams101_dac", 0,
|
|
|
|
Subsignal("ldac", Pins("XADC:GPIO0")),
|
|
|
|
Subsignal("clk", Pins("XADC:GPIO1")),
|
|
|
|
Subsignal("mosi", Pins("XADC:GPIO2")),
|
|
|
|
Subsignal("cs_n", Pins("XADC:GPIO3")),
|
|
|
|
IOStandard("LVTTL")
|
|
|
|
)
|
|
|
|
]
|
|
|
|
|
2017-07-12 00:27:44 +08:00
|
|
|
_sdcard_spi_33 = [
|
2017-10-31 23:14:39 +08:00
|
|
|
("sdcard_spi_33", 0,
|
2017-07-24 22:26:16 +08:00
|
|
|
Subsignal("miso", Pins("AC20"), Misc("PULLUP")),
|
2017-07-12 00:27:44 +08:00
|
|
|
Subsignal("clk", Pins("AB23")),
|
|
|
|
Subsignal("mosi", Pins("AB22")),
|
|
|
|
Subsignal("cs_n", Pins("AC21")),
|
|
|
|
IOStandard("LVCMOS33")
|
2017-10-31 23:14:39 +08:00
|
|
|
)
|
2017-07-12 00:27:44 +08:00
|
|
|
]
|
|
|
|
|
2017-10-23 15:04:30 +08:00
|
|
|
_zotino = [
|
2017-10-31 23:14:39 +08:00
|
|
|
("fmcdio_dirctl", 0,
|
|
|
|
Subsignal("clk", Pins("HPC:LA32_N")),
|
|
|
|
Subsignal("ser", Pins("HPC:LA33_P")),
|
|
|
|
Subsignal("latch", Pins("HPC:LA32_P")),
|
2018-01-02 19:42:52 +08:00
|
|
|
IOStandard("LVCMOS25")
|
2017-10-31 23:14:39 +08:00
|
|
|
),
|
2017-10-23 15:04:30 +08:00
|
|
|
("zotino_spi_p", 0,
|
|
|
|
Subsignal("clk", Pins("HPC:LA08_P")),
|
|
|
|
Subsignal("mosi", Pins("HPC:LA09_P")),
|
|
|
|
Subsignal("miso", Pins("HPC:LA10_P")),
|
|
|
|
Subsignal("cs_n", Pins("HPC:LA11_P")),
|
|
|
|
IOStandard("LVDS_25")
|
2017-10-31 23:14:39 +08:00
|
|
|
),
|
2017-10-23 15:04:30 +08:00
|
|
|
("zotino_spi_n", 0,
|
|
|
|
Subsignal("clk", Pins("HPC:LA08_N")),
|
|
|
|
Subsignal("mosi", Pins("HPC:LA09_N")),
|
|
|
|
Subsignal("miso", Pins("HPC:LA10_N")),
|
|
|
|
Subsignal("cs_n", Pins("HPC:LA11_N")),
|
|
|
|
IOStandard("LVDS_25")
|
2017-10-31 23:14:39 +08:00
|
|
|
),
|
2017-10-23 15:04:30 +08:00
|
|
|
("zotino_ldac", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA13_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA13_N")),
|
|
|
|
IOStandard("LVDS_25"), Misc("DIFF_TERM=TRUE")
|
2017-10-31 23:14:39 +08:00
|
|
|
)
|
2017-10-23 15:04:30 +08:00
|
|
|
]
|
2016-02-29 05:41:17 +08:00
|
|
|
|
2018-01-02 19:01:24 +08:00
|
|
|
|
|
|
|
# FMC DIO 32ch LVDS a v1.2 on HPC to VHDCI-Carrier v1.1
|
|
|
|
# uring the upper/right VHDCI connector: LVDS7 and LVDS8
|
|
|
|
# using the lower/left VHDCI connector: LVDS3 and LVDS4
|
|
|
|
_urukul = [
|
|
|
|
("urukul_spi_p", 0,
|
|
|
|
Subsignal("clk", Pins("HPC:LA17_CC_P")),
|
|
|
|
Subsignal("mosi", Pins("HPC:LA16_P")),
|
|
|
|
Subsignal("miso", Pins("HPC:LA24_P")),
|
|
|
|
Subsignal("cs_n", Pins("HPC:LA19_P HPC:LA20_P HPC:LA21_P")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_spi_n", 0,
|
|
|
|
Subsignal("clk", Pins("HPC:LA17_CC_N")),
|
|
|
|
Subsignal("mosi", Pins("HPC:LA16_N")),
|
|
|
|
Subsignal("miso", Pins("HPC:LA24_N")),
|
|
|
|
Subsignal("cs_n", Pins("HPC:LA19_N HPC:LA20_N HPC:LA21_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_io_update", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA22_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA22_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_dds_reset", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA23_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA23_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_sync_clk", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA18_CC_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA18_CC_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_sync_in", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA25_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA25_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_io_update_ret", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA26_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA26_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_sw0", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA28_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA28_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_sw1", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA29_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA29_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_sw2", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA30_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA30_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
),
|
|
|
|
("urukul_sw3", 0,
|
|
|
|
Subsignal("p", Pins("HPC:LA31_P")),
|
|
|
|
Subsignal("n", Pins("HPC:LA31_N")),
|
|
|
|
IOStandard("LVDS_25"),
|
|
|
|
)
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2016-01-21 10:23:38 +08:00
|
|
|
class _NIST_Ions(MiniSoC, AMPSoC):
|
2015-04-11 21:32:01 +08:00
|
|
|
mem_map = {
|
2017-04-06 01:14:01 +08:00
|
|
|
"cri_con": 0x10000000,
|
2016-12-01 16:31:00 +08:00
|
|
|
"rtio": 0x20000000,
|
|
|
|
"rtio_dma": 0x30000000,
|
|
|
|
"mailbox": 0x70000000
|
2015-04-11 21:32:01 +08:00
|
|
|
}
|
|
|
|
mem_map.update(MiniSoC.mem_map)
|
2015-02-27 12:50:52 +08:00
|
|
|
|
2015-11-04 00:35:03 +08:00
|
|
|
def __init__(self, cpu_type="or1k", **kwargs):
|
|
|
|
MiniSoC.__init__(self,
|
2015-06-17 21:36:12 +08:00
|
|
|
cpu_type=cpu_type,
|
2015-11-04 00:35:03 +08:00
|
|
|
sdram_controller_type="minicon",
|
|
|
|
l2_size=128*1024,
|
2015-11-10 22:44:38 +08:00
|
|
|
ident=artiq_version,
|
2017-01-30 15:42:27 +08:00
|
|
|
ethmac_nrxslots=4,
|
|
|
|
ethmac_ntxslots=4,
|
2015-11-10 22:44:38 +08:00
|
|
|
**kwargs)
|
2015-05-01 18:51:24 +08:00
|
|
|
AMPSoC.__init__(self)
|
2016-01-07 06:40:28 +08:00
|
|
|
if isinstance(self.platform.toolchain, XilinxVivadoToolchain):
|
|
|
|
self.platform.toolchain.bitstream_commands.extend([
|
|
|
|
"set_property BITSTREAM.GENERAL.COMPRESS True [current_design]",
|
|
|
|
])
|
|
|
|
if isinstance(self.platform.toolchain, XilinxISEToolchain):
|
|
|
|
self.platform.toolchain.bitgen_opt += " -g compress"
|
2015-11-04 00:35:03 +08:00
|
|
|
|
2015-02-27 12:50:52 +08:00
|
|
|
self.submodules.leds = gpio.GPIOOut(Cat(
|
2015-11-04 00:35:03 +08:00
|
|
|
self.platform.request("user_led", 0),
|
|
|
|
self.platform.request("user_led", 1)))
|
2016-09-24 20:48:37 +08:00
|
|
|
self.csr_devices.append("leds")
|
2015-02-27 12:50:52 +08:00
|
|
|
|
2016-07-07 14:53:01 +08:00
|
|
|
self.platform.add_extension(_sma33_io)
|
2016-02-29 05:41:17 +08:00
|
|
|
self.platform.add_extension(_ams101_dac)
|
2017-07-12 00:27:44 +08:00
|
|
|
self.platform.add_extension(_sdcard_spi_33)
|
2017-10-23 15:04:30 +08:00
|
|
|
self.platform.add_extension(_zotino)
|
2018-01-02 19:01:24 +08:00
|
|
|
self.platform.add_extension(_urukul)
|
2016-02-29 05:41:17 +08:00
|
|
|
|
2016-03-05 00:19:59 +08:00
|
|
|
i2c = self.platform.request("i2c")
|
|
|
|
self.submodules.i2c = gpio.GPIOTristate([i2c.scl, i2c.sda])
|
2017-01-05 04:04:38 +08:00
|
|
|
self.csr_devices.append("i2c")
|
2016-03-05 00:19:59 +08:00
|
|
|
self.config["I2C_BUS_COUNT"] = 1
|
|
|
|
|
2016-11-08 23:33:03 +08:00
|
|
|
self.config["HAS_DDS"] = None
|
|
|
|
|
2015-06-29 03:37:27 +08:00
|
|
|
def add_rtio(self, rtio_channels):
|
2015-07-27 20:12:17 +08:00
|
|
|
self.submodules.rtio_crg = _RTIOCRG(self.platform, self.crg.cd_sys.clk)
|
2016-09-24 20:48:37 +08:00
|
|
|
self.csr_devices.append("rtio_crg")
|
2016-11-22 22:46:50 +08:00
|
|
|
self.submodules.rtio_core = rtio.Core(rtio_channels)
|
2016-12-09 14:16:55 +08:00
|
|
|
self.csr_devices.append("rtio_core")
|
2016-12-01 16:31:00 +08:00
|
|
|
self.submodules.rtio = rtio.KernelInitiator()
|
2017-03-31 15:35:28 +08:00
|
|
|
self.submodules.rtio_dma = ClockDomainsRenamer("sys_kernel")(
|
|
|
|
rtio.DMA(self.get_native_sdram_if()))
|
2016-03-03 15:12:15 +08:00
|
|
|
self.register_kernel_cpu_csrdevice("rtio")
|
2016-12-01 16:31:00 +08:00
|
|
|
self.register_kernel_cpu_csrdevice("rtio_dma")
|
|
|
|
self.submodules.cri_con = rtio.CRIInterconnectShared(
|
|
|
|
[self.rtio.cri, self.rtio_dma.cri],
|
|
|
|
[self.rtio_core.cri])
|
2017-04-06 00:10:53 +08:00
|
|
|
self.register_kernel_cpu_csrdevice("cri_con")
|
2015-06-29 03:37:27 +08:00
|
|
|
self.submodules.rtio_moninj = rtio.MonInj(rtio_channels)
|
2016-09-24 20:48:37 +08:00
|
|
|
self.csr_devices.append("rtio_moninj")
|
2015-06-29 03:37:27 +08:00
|
|
|
|
2016-10-29 21:17:13 +08:00
|
|
|
self.rtio_crg.cd_rtio.clk.attr.add("keep")
|
2016-03-03 02:56:24 +08:00
|
|
|
self.platform.add_period_constraint(self.rtio_crg.cd_rtio.clk, 8.)
|
|
|
|
self.platform.add_false_path_constraints(
|
2016-10-30 11:12:36 +08:00
|
|
|
self.crg.cd_sys.clk,
|
2016-10-29 21:28:01 +08:00
|
|
|
self.rtio_crg.cd_rtio.clk)
|
2015-06-29 03:37:27 +08:00
|
|
|
|
2017-03-02 18:47:56 +08:00
|
|
|
self.submodules.rtio_analyzer = rtio.Analyzer(self.rtio_core.cri,
|
|
|
|
self.get_native_sdram_if())
|
2016-09-24 20:48:37 +08:00
|
|
|
self.csr_devices.append("rtio_analyzer")
|
2015-12-16 17:36:52 +08:00
|
|
|
|
2015-06-29 03:37:27 +08:00
|
|
|
|
2016-01-21 10:23:38 +08:00
|
|
|
class NIST_CLOCK(_NIST_Ions):
|
|
|
|
"""
|
|
|
|
NIST clock hardware, with old backplane and 11 DDS channels
|
|
|
|
"""
|
|
|
|
def __init__(self, cpu_type="or1k", **kwargs):
|
|
|
|
_NIST_Ions.__init__(self, cpu_type, **kwargs)
|
|
|
|
|
|
|
|
platform = self.platform
|
|
|
|
platform.add_extension(nist_clock.fmc_adapter_io)
|
|
|
|
|
|
|
|
rtio_channels = []
|
|
|
|
for i in range(16):
|
|
|
|
if i % 4 == 3:
|
2017-03-14 14:18:55 +08:00
|
|
|
phy = ttl_serdes_7series.InOut_8X(platform.request("ttl", i))
|
2016-01-21 10:23:38 +08:00
|
|
|
self.submodules += phy
|
2016-11-20 21:35:07 +08:00
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
2016-01-21 10:23:38 +08:00
|
|
|
else:
|
|
|
|
phy = ttl_serdes_7series.Output_8X(platform.request("ttl", i))
|
|
|
|
self.submodules += phy
|
2016-11-20 21:35:07 +08:00
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
2016-01-21 10:23:38 +08:00
|
|
|
|
|
|
|
for i in range(2):
|
2017-03-14 14:18:55 +08:00
|
|
|
phy = ttl_serdes_7series.InOut_8X(platform.request("pmt", i))
|
2016-01-21 10:23:38 +08:00
|
|
|
self.submodules += phy
|
2016-11-20 21:35:07 +08:00
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
2016-01-21 10:23:38 +08:00
|
|
|
|
2017-03-14 14:18:55 +08:00
|
|
|
phy = ttl_serdes_7series.InOut_8X(platform.request("user_sma_gpio_n_33"))
|
2016-01-21 10:23:38 +08:00
|
|
|
self.submodules += phy
|
2016-02-22 22:35:15 +08:00
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
2016-01-21 10:23:38 +08:00
|
|
|
|
|
|
|
phy = ttl_simple.Output(platform.request("user_led", 2))
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
|
2016-03-01 05:19:39 +08:00
|
|
|
ams101_dac = self.platform.request("ams101_dac", 0)
|
|
|
|
phy = ttl_simple.Output(ams101_dac.ldac)
|
2016-02-29 04:17:53 +08:00
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
|
2016-03-02 02:40:32 +08:00
|
|
|
phy = ttl_simple.ClockGen(platform.request("la32_p"))
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
|
2016-03-01 05:19:39 +08:00
|
|
|
phy = spi.SPIMaster(ams101_dac)
|
2016-02-29 04:17:53 +08:00
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(
|
|
|
|
phy, ofifo_depth=4, ififo_depth=4))
|
|
|
|
|
2016-03-04 07:03:48 +08:00
|
|
|
for i in range(3):
|
2016-03-01 05:19:39 +08:00
|
|
|
phy = spi.SPIMaster(self.platform.request("spi", i))
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(
|
|
|
|
phy, ofifo_depth=128, ififo_depth=128))
|
2017-07-12 00:27:44 +08:00
|
|
|
|
2017-10-31 23:14:39 +08:00
|
|
|
phy = spi.SPIMaster(platform.request("sdcard_spi_33"))
|
2017-07-12 00:27:44 +08:00
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(
|
|
|
|
phy, ofifo_depth=4, ififo_depth=4))
|
2017-10-23 15:04:30 +08:00
|
|
|
|
2017-10-31 23:14:39 +08:00
|
|
|
fmcdio_dirctl = self.platform.request("fmcdio_dirctl")
|
|
|
|
for s in fmcdio_dirctl.clk, fmcdio_dirctl.ser, fmcdio_dirctl.latch:
|
|
|
|
phy = ttl_simple.Output(s)
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
|
|
|
|
sdac_phy = spi.SPIMaster(self.platform.request("zotino_spi_p"),
|
|
|
|
self.platform.request("zotino_spi_n"))
|
2017-10-23 20:09:05 +08:00
|
|
|
self.submodules += sdac_phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(sdac_phy, ififo_depth=4))
|
2017-10-23 15:04:30 +08:00
|
|
|
|
|
|
|
pads = platform.request("zotino_ldac")
|
2017-10-23 20:09:05 +08:00
|
|
|
ldac_phy = ttl_serdes_7series.Output_8X(pads.p, pads.n)
|
|
|
|
self.submodules += ldac_phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(ldac_phy))
|
|
|
|
|
|
|
|
dac_monitor = ad5360_monitor.AD5360Monitor(sdac_phy.rtlink, ldac_phy.rtlink)
|
|
|
|
self.submodules += dac_monitor
|
|
|
|
sdac_phy.probes.extend(dac_monitor.probes)
|
2017-10-23 15:04:30 +08:00
|
|
|
|
2018-01-02 19:12:52 +08:00
|
|
|
phy = spi.SPIMaster(self.platform.request("urukul_spi_p"),
|
|
|
|
self.platform.request("urukul_spi_n"))
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=4))
|
|
|
|
|
|
|
|
for signal in "io_update dds_reset sw0 sw1 sw2 sw3".split():
|
|
|
|
pads = platform.request("urukul_{}".format(signal))
|
|
|
|
phy = ttl_serdes_7series.Output_8X(pads.p, pads.n)
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
|
|
|
|
2016-01-21 10:23:38 +08:00
|
|
|
phy = dds.AD9914(platform.request("dds"), 11, onehot=True)
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy,
|
2016-11-20 21:35:07 +08:00
|
|
|
ofifo_depth=512,
|
2016-01-21 10:23:38 +08:00
|
|
|
ififo_depth=4))
|
|
|
|
|
2016-11-23 10:48:26 +08:00
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
2016-01-21 10:23:38 +08:00
|
|
|
self.config["RTIO_LOG_CHANNEL"] = len(rtio_channels)
|
|
|
|
rtio_channels.append(rtio.LogChannel())
|
|
|
|
|
|
|
|
self.add_rtio(rtio_channels)
|
|
|
|
|
|
|
|
|
|
|
|
class NIST_QC2(_NIST_Ions):
|
2016-01-21 10:17:19 +08:00
|
|
|
"""
|
|
|
|
NIST QC2 hardware, as used in Quantum I and Quantum II, with new backplane
|
2016-11-20 17:49:06 +08:00
|
|
|
and 24 DDS channels. Two backplanes are used.
|
2016-01-21 10:17:19 +08:00
|
|
|
"""
|
2015-11-04 20:09:37 +08:00
|
|
|
def __init__(self, cpu_type="or1k", **kwargs):
|
2016-01-21 10:23:38 +08:00
|
|
|
_NIST_Ions.__init__(self, cpu_type, **kwargs)
|
2015-11-04 00:35:03 +08:00
|
|
|
|
|
|
|
platform = self.platform
|
2015-06-29 03:37:27 +08:00
|
|
|
platform.add_extension(nist_qc2.fmc_adapter_io)
|
2015-04-02 16:53:57 +08:00
|
|
|
|
2015-06-29 03:37:27 +08:00
|
|
|
rtio_channels = []
|
2016-03-16 16:19:56 +08:00
|
|
|
clock_generators = []
|
2016-05-19 10:41:46 +08:00
|
|
|
|
|
|
|
# All TTL channels are In+Out capable
|
|
|
|
for i in range(40):
|
2017-03-14 14:18:55 +08:00
|
|
|
phy = ttl_serdes_7series.InOut_8X(
|
2016-05-19 10:41:46 +08:00
|
|
|
platform.request("ttl", i))
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
2016-11-20 17:49:06 +08:00
|
|
|
|
2016-05-19 10:41:46 +08:00
|
|
|
# CLK0, CLK1 are for clock generators, on backplane SMP connectors
|
2016-11-20 17:49:06 +08:00
|
|
|
for i in range(2):
|
2016-03-16 16:19:56 +08:00
|
|
|
phy = ttl_simple.ClockGen(
|
2016-05-19 10:41:46 +08:00
|
|
|
platform.request("clkout", i))
|
2016-01-21 10:17:19 +08:00
|
|
|
self.submodules += phy
|
2016-11-20 17:49:06 +08:00
|
|
|
clock_generators.append(rtio.Channel.from_phy(phy))
|
2015-06-29 03:37:27 +08:00
|
|
|
|
2016-05-19 10:41:46 +08:00
|
|
|
# user SMA on KC705 board
|
2017-03-14 14:18:55 +08:00
|
|
|
phy = ttl_serdes_7series.InOut_8X(platform.request("user_sma_gpio_n_33"))
|
2015-08-18 15:20:42 +08:00
|
|
|
self.submodules += phy
|
2016-02-22 22:35:15 +08:00
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy, ififo_depth=512))
|
2016-11-20 17:49:06 +08:00
|
|
|
|
2015-06-29 03:37:27 +08:00
|
|
|
phy = ttl_simple.Output(platform.request("user_led", 2))
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
2016-04-13 01:40:58 +08:00
|
|
|
|
2016-05-19 10:41:46 +08:00
|
|
|
# AMS101 DAC on KC705 XADC header - optional
|
2016-04-13 01:40:58 +08:00
|
|
|
ams101_dac = self.platform.request("ams101_dac", 0)
|
|
|
|
phy = ttl_simple.Output(ams101_dac.ldac)
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy))
|
2015-06-29 03:37:27 +08:00
|
|
|
|
2017-02-25 12:14:56 +08:00
|
|
|
# add clock generators after TTLs
|
2016-03-16 16:19:56 +08:00
|
|
|
rtio_channels += clock_generators
|
2015-07-03 00:20:26 +08:00
|
|
|
|
2016-04-13 01:40:58 +08:00
|
|
|
phy = spi.SPIMaster(ams101_dac)
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(
|
|
|
|
phy, ofifo_depth=4, ififo_depth=4))
|
|
|
|
|
|
|
|
for i in range(4):
|
|
|
|
phy = spi.SPIMaster(self.platform.request("spi", i))
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(
|
|
|
|
phy, ofifo_depth=128, ififo_depth=128))
|
|
|
|
|
2016-03-16 16:19:56 +08:00
|
|
|
for backplane_offset in range(2):
|
|
|
|
phy = dds.AD9914(
|
|
|
|
platform.request("dds", backplane_offset), 12, onehot=True)
|
|
|
|
self.submodules += phy
|
|
|
|
rtio_channels.append(rtio.Channel.from_phy(phy,
|
|
|
|
ofifo_depth=512,
|
|
|
|
ififo_depth=4))
|
2015-12-26 22:44:01 +08:00
|
|
|
|
2016-11-23 10:48:26 +08:00
|
|
|
self.config["HAS_RTIO_LOG"] = None
|
2015-12-26 22:44:01 +08:00
|
|
|
self.config["RTIO_LOG_CHANNEL"] = len(rtio_channels)
|
|
|
|
rtio_channels.append(rtio.LogChannel())
|
|
|
|
|
2015-06-29 03:37:27 +08:00
|
|
|
self.add_rtio(rtio_channels)
|
2015-04-02 16:53:57 +08:00
|
|
|
|
2015-04-14 19:44:45 +08:00
|
|
|
|
2015-11-04 00:35:03 +08:00
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(
|
2017-01-06 01:40:56 +08:00
|
|
|
description="ARTIQ device binary builder / single-FPGA KC705-based "
|
|
|
|
"systems with AD9 DDS (NIST Ions hardware)")
|
2015-11-04 00:35:03 +08:00
|
|
|
builder_args(parser)
|
|
|
|
soc_kc705_args(parser)
|
2016-04-29 18:00:37 +08:00
|
|
|
parser.add_argument("-H", "--hw-adapter", default="nist_clock",
|
2016-04-05 16:07:29 +08:00
|
|
|
help="hardware adapter type: "
|
2016-11-21 23:13:55 +08:00
|
|
|
"nist_clock/nist_qc2 "
|
2015-11-04 00:35:03 +08:00
|
|
|
"(default: %(default)s)")
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
hw_adapter = args.hw_adapter.lower()
|
2016-11-21 23:13:55 +08:00
|
|
|
if hw_adapter == "nist_clock":
|
2016-01-21 10:23:38 +08:00
|
|
|
cls = NIST_CLOCK
|
2016-04-05 16:07:29 +08:00
|
|
|
elif hw_adapter == "nist_qc2":
|
2015-11-04 00:35:03 +08:00
|
|
|
cls = NIST_QC2
|
|
|
|
else:
|
2016-04-05 16:07:29 +08:00
|
|
|
raise SystemExit("Invalid hardware adapter string (-H/--hw-adapter)")
|
2015-11-04 00:35:03 +08:00
|
|
|
|
|
|
|
soc = cls(**soc_kc705_argdict(args))
|
2016-03-07 00:18:47 +08:00
|
|
|
build_artiq_soc(soc, builder_argdict(args))
|
2015-11-04 00:35:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|