2019-02-22 17:19:48 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import sys
|
|
|
|
import json
|
|
|
|
import textwrap
|
|
|
|
from collections import defaultdict
|
2019-02-22 19:20:46 +08:00
|
|
|
from itertools import count
|
2019-02-22 17:19:48 +08:00
|
|
|
|
2019-11-14 11:42:31 +08:00
|
|
|
from artiq import __version__ as artiq_version
|
|
|
|
|
2019-02-22 17:19:48 +08:00
|
|
|
|
|
|
|
def process_header(output, description):
|
|
|
|
if description["target"] != "kasli":
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
print(textwrap.dedent("""
|
|
|
|
# Autogenerated for the {variant} variant
|
|
|
|
core_addr = "{core_addr}"
|
|
|
|
|
|
|
|
device_db = {{
|
|
|
|
"core": {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.core",
|
|
|
|
"class": "Core",
|
|
|
|
"arguments": {{"host": core_addr, "ref_period": {ref_period}}}
|
|
|
|
}},
|
|
|
|
"core_log": {{
|
|
|
|
"type": "controller",
|
|
|
|
"host": "::1",
|
|
|
|
"port": 1068,
|
|
|
|
"command": "aqctl_corelog -p {{port}} --bind {{bind}} " + core_addr
|
|
|
|
}},
|
|
|
|
"core_cache": {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.cache",
|
|
|
|
"class": "CoreCache"
|
|
|
|
}},
|
|
|
|
"core_dma": {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.dma",
|
|
|
|
"class": "CoreDMA"
|
|
|
|
}},
|
|
|
|
|
|
|
|
"i2c_switch0": {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.i2c",
|
|
|
|
"class": "PCA9548",
|
|
|
|
"arguments": {{"address": 0xe0}}
|
|
|
|
}},
|
|
|
|
"i2c_switch1": {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.i2c",
|
|
|
|
"class": "PCA9548",
|
|
|
|
"arguments": {{"address": 0xe2}}
|
|
|
|
}},
|
|
|
|
}}
|
|
|
|
""").format(
|
|
|
|
variant=description["variant"],
|
|
|
|
core_addr=description.get("core_addr", "192.168.1.70"),
|
|
|
|
ref_period=1/(8*description.get("rtio_frequency", 125e6))),
|
|
|
|
file=output)
|
|
|
|
|
|
|
|
|
|
|
|
class PeripheralManager:
|
|
|
|
def __init__(self, output, master_description):
|
|
|
|
self.counts = defaultdict(int)
|
|
|
|
self.output = output
|
|
|
|
self.master_description = master_description
|
|
|
|
|
|
|
|
def get_name(self, ty):
|
|
|
|
count = self.counts[ty]
|
|
|
|
self.counts[ty] = count + 1
|
|
|
|
return "{}{}".format(ty, count)
|
|
|
|
|
2019-02-22 19:20:46 +08:00
|
|
|
def gen(self, string, **kwargs):
|
|
|
|
print(textwrap.dedent(string).format(**kwargs), file=self.output)
|
|
|
|
|
2019-02-22 17:19:48 +08:00
|
|
|
def process_dio(self, rtio_offset, peripheral):
|
|
|
|
class_names = {
|
|
|
|
"input": "TTLInOut",
|
|
|
|
"output": "TTLOut"
|
|
|
|
}
|
|
|
|
classes = [
|
|
|
|
class_names[peripheral["bank_direction_low"]],
|
|
|
|
class_names[peripheral["bank_direction_high"]]
|
|
|
|
]
|
2019-05-09 17:20:13 +08:00
|
|
|
channel = count(0)
|
2019-02-22 17:19:48 +08:00
|
|
|
for i in range(8):
|
2019-02-22 19:20:46 +08:00
|
|
|
self.gen("""
|
2019-02-22 17:19:48 +08:00
|
|
|
device_db["{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "{class_name}",
|
|
|
|
"arguments": {{"channel": 0x{channel:06x}}},
|
|
|
|
}}
|
2019-02-22 19:20:46 +08:00
|
|
|
""",
|
|
|
|
name=self.get_name("ttl"),
|
|
|
|
class_name=classes[i//4],
|
2019-05-09 17:20:13 +08:00
|
|
|
channel=rtio_offset+next(channel))
|
|
|
|
if peripheral.get("edge_counter", False):
|
|
|
|
for i in range(8):
|
|
|
|
class_name = classes[i//4]
|
|
|
|
if class_name == "TTLInOut":
|
|
|
|
self.gen("""
|
|
|
|
device_db["{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.edge_counter",
|
|
|
|
"class": "EdgeCounter",
|
|
|
|
"arguments": {{"channel": 0x{channel:06x}}},
|
|
|
|
}}
|
|
|
|
""",
|
|
|
|
name=self.get_name("ttl_counter"),
|
|
|
|
channel=rtio_offset+next(channel))
|
|
|
|
return next(channel)
|
2019-02-22 17:19:48 +08:00
|
|
|
|
|
|
|
def process_urukul(self, rtio_offset, peripheral):
|
2019-02-22 19:20:46 +08:00
|
|
|
urukul_name = self.get_name("urukul")
|
|
|
|
synchronization = peripheral.get("synchronization", False)
|
|
|
|
channel = count(0)
|
|
|
|
self.gen("""
|
2019-03-13 15:34:23 +08:00
|
|
|
device_db["eeprom_{name}"]={{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.kasli_i2c",
|
|
|
|
"class": "KasliEEPROM",
|
|
|
|
"arguments": {{"port": "EEM{eem}"}}
|
2019-06-13 19:30:22 +08:00
|
|
|
}}
|
2019-03-13 15:34:23 +08:00
|
|
|
|
2019-02-22 19:20:46 +08:00
|
|
|
device_db["spi_{name}"]={{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.spi2",
|
|
|
|
"class": "SPIMaster",
|
|
|
|
"arguments": {{"channel": 0x{channel:06x}}}
|
|
|
|
}}""",
|
|
|
|
name=urukul_name,
|
2019-03-13 15:34:23 +08:00
|
|
|
eem=peripheral["ports"][0],
|
2019-02-22 19:20:46 +08:00
|
|
|
channel=rtio_offset+next(channel))
|
|
|
|
if synchronization:
|
|
|
|
self.gen("""
|
|
|
|
device_db["ttl_{name}_sync"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "TTLClockGen",
|
|
|
|
"arguments": {{"channel": 0x{channel:06x}, "acc_width": 4}}
|
|
|
|
}}""",
|
|
|
|
name=urukul_name,
|
|
|
|
channel=rtio_offset+next(channel))
|
|
|
|
self.gen("""
|
|
|
|
device_db["ttl_{name}_io_update"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "TTLOut",
|
|
|
|
"arguments": {{"channel": 0x{channel:06x}}}
|
|
|
|
}}""",
|
|
|
|
name=urukul_name,
|
|
|
|
channel=rtio_offset+next(channel))
|
2019-06-13 20:18:58 +08:00
|
|
|
if len(peripheral["ports"]) > 1:
|
|
|
|
for i in range(4):
|
|
|
|
self.gen("""
|
|
|
|
device_db["ttl_{name}_sw{uchn}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "TTLOut",
|
|
|
|
"arguments": {{"channel": 0x{channel:06x}}}
|
|
|
|
}}""",
|
|
|
|
name=urukul_name,
|
|
|
|
uchn=i,
|
|
|
|
channel=rtio_offset+next(channel))
|
2019-02-22 19:20:46 +08:00
|
|
|
self.gen("""
|
|
|
|
device_db["{name}_cpld"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.urukul",
|
|
|
|
"class": "CPLD",
|
|
|
|
"arguments": {{
|
|
|
|
"spi_device": "spi_{name}",
|
|
|
|
"sync_device": {sync_device},
|
|
|
|
"io_update_device": "ttl_{name}_io_update",
|
|
|
|
"refclk": {refclk},
|
|
|
|
"clk_sel": {clk_sel}
|
|
|
|
}}
|
|
|
|
}}""",
|
|
|
|
name=urukul_name,
|
|
|
|
sync_device="\"ttl_{name}_sync\"".format(name=urukul_name) if synchronization else "None",
|
|
|
|
refclk=peripheral.get("refclk", self.master_description.get("rtio_frequency", 125e6)),
|
|
|
|
clk_sel=peripheral["clk_sel"])
|
|
|
|
dds = peripheral.get("dds", "ad9910")
|
2019-02-22 22:59:20 +08:00
|
|
|
pll_vco = peripheral.get("pll_vco", None)
|
2019-02-22 19:20:46 +08:00
|
|
|
for i in range(4):
|
|
|
|
if dds == "ad9910":
|
|
|
|
self.gen("""
|
|
|
|
device_db["{name}_ch{uchn}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ad9910",
|
|
|
|
"class": "AD9910",
|
|
|
|
"arguments": {{
|
2019-06-14 18:51:29 +08:00
|
|
|
"pll_n": {pll_n},
|
2019-02-22 19:20:46 +08:00
|
|
|
"chip_select": {chip_select},
|
2019-06-14 18:51:29 +08:00
|
|
|
"cpld_device": "{name}_cpld"{sw}{pll_vco}{sync_delay_seed}{io_update_delay}
|
2019-02-22 19:20:46 +08:00
|
|
|
}}
|
|
|
|
}}""",
|
|
|
|
name=urukul_name,
|
|
|
|
chip_select=4 + i,
|
2019-02-22 22:59:20 +08:00
|
|
|
uchn=i,
|
2019-06-13 20:18:58 +08:00
|
|
|
sw=",\n \"sw_device\": \"ttl_{name}_sw{uchn}\"".format(name=urukul_name, uchn=i) if len(peripheral["ports"]) > 1 else "",
|
2019-03-13 15:42:51 +08:00
|
|
|
pll_vco=",\n \"pll_vco\": {}".format(pll_vco) if pll_vco is not None else "",
|
2019-06-14 18:51:29 +08:00
|
|
|
pll_n=peripheral.get("pll_n", 32),
|
2019-03-15 17:57:35 +08:00
|
|
|
sync_delay_seed=",\n \"sync_delay_seed\": \"eeprom_{}:{}\"".format(urukul_name, 64 + 4*i) if synchronization else "",
|
|
|
|
io_update_delay=",\n \"io_update_delay\": \"eeprom_{}:{}\"".format(urukul_name, 64 + 4*i) if synchronization else "")
|
2019-02-22 19:20:46 +08:00
|
|
|
elif dds == "ad9912":
|
|
|
|
self.gen("""
|
|
|
|
device_db["{name}_ch{uchn}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ad9912",
|
|
|
|
"class": "AD9912",
|
|
|
|
"arguments": {{
|
2019-06-14 18:51:29 +08:00
|
|
|
"pll_n": {pll_n},
|
2019-02-22 19:20:46 +08:00
|
|
|
"chip_select": {chip_select},
|
2019-06-14 18:51:29 +08:00
|
|
|
"cpld_device": "{name}_cpld"{sw}{pll_vco}
|
2019-02-22 19:20:46 +08:00
|
|
|
}}
|
|
|
|
}}""",
|
|
|
|
name=urukul_name,
|
|
|
|
chip_select=4 + i,
|
2019-02-22 22:59:20 +08:00
|
|
|
uchn=i,
|
2019-06-14 18:51:29 +08:00
|
|
|
sw=",\n \"sw_device\": \"ttl_{name}_sw{uchn}\"".format(name=urukul_name, uchn=i) if len(peripheral["ports"]) > 1 else "",
|
|
|
|
pll_vco=",\n \"pll_vco\": {}".format(pll_vco) if pll_vco is not None else "",
|
|
|
|
pll_n=peripheral.get("pll_n", 8))
|
2019-02-22 19:20:46 +08:00
|
|
|
else:
|
|
|
|
raise ValueError
|
|
|
|
return next(channel)
|
2019-02-22 17:19:48 +08:00
|
|
|
|
2019-12-20 19:26:03 +08:00
|
|
|
def process_mirny(self, rtio_offset, peripheral):
|
|
|
|
mirny_name = self.get_name("mirny")
|
|
|
|
channel = count(0)
|
|
|
|
self.gen("""
|
|
|
|
device_db["spi_{name}"]={{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.spi2",
|
|
|
|
"class": "SPIMaster",
|
|
|
|
"arguments": {{"channel": 0x{channel:06x}}}
|
|
|
|
}}""",
|
|
|
|
name=mirny_name,
|
|
|
|
channel=rtio_offset+next(channel))
|
|
|
|
|
|
|
|
for i in range(4):
|
|
|
|
self.gen("""
|
|
|
|
device_db["ttl_{name}_sw{mchn}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "TTLOut",
|
|
|
|
"arguments": {{"channel": 0x{ttl_channel:06x}}}
|
|
|
|
}}""",
|
|
|
|
name=mirny_name,
|
|
|
|
mchn=i,
|
|
|
|
ttl_channel=rtio_offset+next(channel))
|
|
|
|
|
|
|
|
for i in range(4):
|
|
|
|
self.gen("""
|
|
|
|
device_db["{name}_ch{mchn}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.adf5355",
|
|
|
|
"class": "ADF5355",
|
|
|
|
"arguments": {{
|
|
|
|
"channel": {mchn},
|
|
|
|
"sw_device": "ttl_{name}_sw{mchn}",
|
|
|
|
"cpld_device": "{name}_cpld",
|
|
|
|
}}
|
|
|
|
}}""",
|
|
|
|
name=mirny_name,
|
|
|
|
mchn=i)
|
|
|
|
|
|
|
|
self.gen("""
|
|
|
|
device_db["{name}_cpld"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.mirny",
|
|
|
|
"class": "Mirny",
|
|
|
|
"arguments": {{"spi_device": "spi_{name}"}},
|
|
|
|
}}""",
|
|
|
|
name=mirny_name)
|
|
|
|
|
|
|
|
return next(channel)
|
|
|
|
|
2019-09-09 15:00:45 +08:00
|
|
|
def process_novogorny(self, rtio_offset, peripheral):
|
|
|
|
self.gen("""
|
|
|
|
device_db["spi_{name}_adc"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.spi2",
|
|
|
|
"class": "SPIMaster",
|
|
|
|
"arguments": {{"channel": 0x{adc_channel:06x}}}
|
|
|
|
}}
|
|
|
|
device_db["ttl_{name}_cnv"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "TTLOut",
|
|
|
|
"arguments": {{"channel": 0x{cnv_channel:06x}}},
|
|
|
|
}}
|
|
|
|
device_db["{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.novogorny",
|
|
|
|
"class": "Novogorny",
|
|
|
|
"arguments": {{
|
|
|
|
"spi_adc_device": "spi_{name}_adc",
|
|
|
|
"cnv_device": "ttl_{name}_cnv"
|
|
|
|
}}
|
|
|
|
}}""",
|
|
|
|
name=self.get_name("novogorny"),
|
|
|
|
adc_channel=rtio_offset,
|
|
|
|
cnv_channel=rtio_offset + 1)
|
|
|
|
return 2
|
|
|
|
|
2019-02-22 17:19:48 +08:00
|
|
|
def process_sampler(self, rtio_offset, peripheral):
|
2019-02-22 20:07:15 +08:00
|
|
|
self.gen("""
|
|
|
|
device_db["spi_{name}_adc"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.spi2",
|
|
|
|
"class": "SPIMaster",
|
|
|
|
"arguments": {{"channel": 0x{adc_channel:06x}}}
|
|
|
|
}}
|
|
|
|
device_db["spi_{name}_pgia"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.spi2",
|
|
|
|
"class": "SPIMaster",
|
|
|
|
"arguments": {{"channel": 0x{pgia_channel:06x}}}
|
|
|
|
}}
|
2019-09-09 14:57:42 +08:00
|
|
|
device_db["ttl_{name}_cnv"] = {{
|
2019-02-22 20:07:15 +08:00
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "TTLOut",
|
|
|
|
"arguments": {{"channel": 0x{cnv_channel:06x}}},
|
|
|
|
}}
|
|
|
|
device_db["{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.sampler",
|
|
|
|
"class": "Sampler",
|
|
|
|
"arguments": {{
|
|
|
|
"spi_adc_device": "spi_{name}_adc",
|
|
|
|
"spi_pgia_device": "spi_{name}_pgia",
|
2019-09-09 14:57:42 +08:00
|
|
|
"cnv_device": "ttl_{name}_cnv"
|
2019-02-22 20:07:15 +08:00
|
|
|
}}
|
|
|
|
}}""",
|
|
|
|
name=self.get_name("sampler"),
|
|
|
|
adc_channel=rtio_offset,
|
|
|
|
pgia_channel=rtio_offset + 1,
|
|
|
|
cnv_channel=rtio_offset + 2)
|
|
|
|
return 3
|
2019-02-22 17:19:48 +08:00
|
|
|
|
2019-09-11 15:52:25 +08:00
|
|
|
def process_suservo(self, rtio_offset, peripheral):
|
|
|
|
suservo_name = self.get_name("suservo")
|
|
|
|
sampler_name = self.get_name("sampler")
|
|
|
|
urukul0_name = self.get_name("urukul")
|
|
|
|
urukul1_name = self.get_name("urukul")
|
|
|
|
channel = count(0)
|
|
|
|
for i in range(8):
|
|
|
|
self.gen("""
|
|
|
|
device_db["{suservo_name}_ch{suservo_chn}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.suservo",
|
|
|
|
"class": "Channel",
|
|
|
|
"arguments": {{"channel": 0x{suservo_channel:06x}, "servo_device": "{suservo_name}"}}
|
|
|
|
}}""",
|
|
|
|
suservo_name=suservo_name,
|
|
|
|
suservo_chn=i,
|
|
|
|
suservo_channel=rtio_offset+next(channel))
|
|
|
|
self.gen("""
|
|
|
|
device_db["{suservo_name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.suservo",
|
|
|
|
"class": "SUServo",
|
|
|
|
"arguments": {{
|
|
|
|
"channel": 0x{suservo_channel:06x},
|
|
|
|
"pgia_device": "spi_{sampler_name}_pgia",
|
|
|
|
"cpld0_device": "{urukul0_name}_cpld",
|
|
|
|
"cpld1_device": "{urukul1_name}_cpld",
|
|
|
|
"dds0_device": "{urukul0_name}_dds",
|
|
|
|
"dds1_device": "{urukul1_name}_dds"
|
|
|
|
}}
|
|
|
|
}}""",
|
|
|
|
suservo_name=suservo_name,
|
|
|
|
sampler_name=sampler_name,
|
|
|
|
urukul0_name=urukul0_name,
|
|
|
|
urukul1_name=urukul1_name,
|
|
|
|
suservo_channel=rtio_offset+next(channel))
|
|
|
|
self.gen("""
|
|
|
|
device_db["spi_{sampler_name}_pgia"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.spi2",
|
|
|
|
"class": "SPIMaster",
|
|
|
|
"arguments": {{"channel": 0x{sampler_channel:06x}}}
|
|
|
|
}}""",
|
|
|
|
sampler_name=sampler_name,
|
|
|
|
sampler_channel=rtio_offset+next(channel))
|
|
|
|
pll_vco = peripheral.get("pll_vco", None)
|
|
|
|
for urukul_name in (urukul0_name, urukul1_name):
|
|
|
|
self.gen("""
|
|
|
|
device_db["spi_{urukul_name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.spi2",
|
|
|
|
"class": "SPIMaster",
|
|
|
|
"arguments": {{"channel": 0x{urukul_channel:06x}}}
|
|
|
|
}}
|
|
|
|
device_db["{urukul_name}_cpld"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.urukul",
|
|
|
|
"class": "CPLD",
|
|
|
|
"arguments": {{
|
|
|
|
"spi_device": "spi_{urukul_name}",
|
|
|
|
"refclk": {refclk},
|
|
|
|
"clk_sel": {clk_sel}
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
device_db["{urukul_name}_dds"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ad9910",
|
|
|
|
"class": "AD9910",
|
|
|
|
"arguments": {{
|
|
|
|
"pll_n": {pll_n},
|
|
|
|
"chip_select": 3,
|
|
|
|
"cpld_device": "{urukul_name}_cpld"{pll_vco}
|
|
|
|
}}
|
|
|
|
}}""",
|
|
|
|
urukul_name=urukul_name,
|
|
|
|
urukul_channel=rtio_offset+next(channel),
|
|
|
|
refclk=peripheral.get("refclk", self.master_description.get("rtio_frequency", 125e6)),
|
|
|
|
clk_sel=peripheral["clk_sel"],
|
|
|
|
pll_vco=",\n \"pll_vco\": {}".format(pll_vco) if pll_vco is not None else "",
|
|
|
|
pll_n=peripheral.get("pll_n", 32))
|
|
|
|
return next(channel)
|
|
|
|
|
2019-02-22 17:19:48 +08:00
|
|
|
def process_zotino(self, rtio_offset, peripheral):
|
2019-02-22 20:07:15 +08:00
|
|
|
self.gen("""
|
|
|
|
device_db["spi_{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.spi2",
|
|
|
|
"class": "SPIMaster",
|
|
|
|
"arguments": {{"channel": 0x{spi_channel:06x}}}
|
|
|
|
}}
|
|
|
|
device_db["ttl_{name}_ldac"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "TTLOut",
|
|
|
|
"arguments": {{"channel": 0x{ldac_channel:06x}}}
|
|
|
|
}}
|
|
|
|
device_db["ttl_{name}_clr"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "TTLOut",
|
|
|
|
"arguments": {{"channel": 0x{clr_channel:06x}}}
|
|
|
|
}}
|
|
|
|
device_db["{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.zotino",
|
|
|
|
"class": "Zotino",
|
|
|
|
"arguments": {{
|
|
|
|
"spi_device": "spi_{name}",
|
|
|
|
"ldac_device": "ttl_{name}_ldac",
|
|
|
|
"clr_device": "ttl_{name}_clr"
|
|
|
|
}}
|
|
|
|
}}""",
|
|
|
|
name=self.get_name("zotino"),
|
|
|
|
spi_channel=rtio_offset,
|
|
|
|
ldac_channel=rtio_offset + 1,
|
|
|
|
clr_channel=rtio_offset + 2)
|
|
|
|
return 3
|
2019-02-22 17:19:48 +08:00
|
|
|
|
|
|
|
def process_grabber(self, rtio_offset, peripheral):
|
2019-02-22 20:07:15 +08:00
|
|
|
self.gen("""
|
|
|
|
device_db["{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.grabber",
|
|
|
|
"class": "Grabber",
|
|
|
|
"arguments": {{"channel_base": 0x{channel:06x}}}
|
|
|
|
}}""",
|
|
|
|
name=self.get_name("grabber"),
|
|
|
|
channel=rtio_offset)
|
|
|
|
return 2
|
2019-02-22 17:19:48 +08:00
|
|
|
|
2019-09-17 01:28:36 +08:00
|
|
|
def process_fastino(self, rtio_offset, peripheral):
|
|
|
|
self.gen("""
|
|
|
|
device_db["{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.fastino",
|
|
|
|
"class": "Fastino",
|
|
|
|
"arguments": {{"channel": 0x{channel:06x}}}
|
|
|
|
}}""",
|
|
|
|
name=self.get_name("fastino"),
|
|
|
|
channel=rtio_offset)
|
|
|
|
return 1
|
|
|
|
|
2020-08-24 22:51:50 +08:00
|
|
|
def process_phaser(self, rtio_offset, peripheral):
|
|
|
|
self.gen("""
|
|
|
|
device_db["{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.phaser",
|
|
|
|
"class": "Phaser",
|
2020-08-24 23:46:31 +08:00
|
|
|
"arguments": {{
|
|
|
|
"channel_base": 0x{channel:06x},
|
2020-08-26 23:10:50 +08:00
|
|
|
"miso_delay": 1,
|
2020-08-24 23:46:31 +08:00
|
|
|
}}
|
2020-08-24 22:51:50 +08:00
|
|
|
}}""",
|
|
|
|
name=self.get_name("phaser"),
|
|
|
|
channel=rtio_offset)
|
2020-12-04 22:40:59 +08:00
|
|
|
return 6
|
2020-08-24 22:51:50 +08:00
|
|
|
|
2019-02-22 17:19:48 +08:00
|
|
|
def process(self, rtio_offset, peripheral):
|
|
|
|
processor = getattr(self, "process_"+str(peripheral["type"]))
|
|
|
|
return processor(rtio_offset, peripheral)
|
|
|
|
|
2019-02-22 20:07:15 +08:00
|
|
|
def add_sfp_leds(self, rtio_offset):
|
|
|
|
for i in range(2):
|
|
|
|
self.gen("""
|
|
|
|
device_db["{name}"] = {{
|
|
|
|
"type": "local",
|
|
|
|
"module": "artiq.coredevice.ttl",
|
|
|
|
"class": "TTLOut",
|
|
|
|
"arguments": {{"channel": 0x{channel:06x}}}
|
|
|
|
}}""",
|
|
|
|
name=self.get_name("led"),
|
|
|
|
channel=rtio_offset+i)
|
|
|
|
return 2
|
|
|
|
|
2019-02-22 17:19:48 +08:00
|
|
|
|
|
|
|
def process(output, master_description, satellites):
|
|
|
|
base = master_description["base"]
|
|
|
|
if base not in ("standalone", "master"):
|
|
|
|
raise ValueError("Invalid master base")
|
|
|
|
|
|
|
|
if base == "standalone" and satellites:
|
|
|
|
raise ValueError("A standalone system cannot have satellites")
|
|
|
|
|
|
|
|
process_header(output, master_description)
|
|
|
|
|
|
|
|
pm = PeripheralManager(output, master_description)
|
|
|
|
|
|
|
|
print("# {} peripherals".format(base), file=output)
|
|
|
|
rtio_offset = 0
|
|
|
|
for peripheral in master_description["peripherals"]:
|
|
|
|
n_channels = pm.process(rtio_offset, peripheral)
|
|
|
|
rtio_offset += n_channels
|
2020-07-08 18:15:36 +08:00
|
|
|
if base == "standalone" and master_description["hw_rev"] in ("v1.0", "v1.1"):
|
2019-02-22 20:07:15 +08:00
|
|
|
n_channels = pm.add_sfp_leds(rtio_offset)
|
|
|
|
rtio_offset += n_channels
|
2019-02-22 17:19:48 +08:00
|
|
|
|
|
|
|
for destination, description in satellites:
|
|
|
|
if description["base"] != "satellite":
|
|
|
|
raise ValueError("Invalid base for satellite at destination {}".format(destination))
|
|
|
|
|
|
|
|
print("# DEST#{} peripherals".format(destination), file=output)
|
|
|
|
rtio_offset = destination << 16
|
|
|
|
for peripheral in description["peripherals"]:
|
|
|
|
n_channels = pm.process(rtio_offset, peripheral)
|
|
|
|
rtio_offset += n_channels
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description="ARTIQ device database template builder")
|
2019-11-14 11:42:31 +08:00
|
|
|
parser.add_argument("--version", action="version",
|
|
|
|
version="ARTIQ v{}".format(artiq_version),
|
|
|
|
help="print the ARTIQ version number")
|
2019-02-22 17:19:48 +08:00
|
|
|
parser.add_argument("master_description", metavar="MASTER_DESCRIPTION",
|
|
|
|
help="JSON system description file for the standalone or master node")
|
|
|
|
parser.add_argument("-o", "--output",
|
|
|
|
help="output file, defaults to standard output if omitted")
|
|
|
|
parser.add_argument("-s", "--satellite", nargs=2, action="append",
|
|
|
|
default=[], metavar=("DESTINATION", "DESCRIPTION"), type=str,
|
|
|
|
help="add DRTIO satellite at the given destination number with "
|
|
|
|
"devices from the given JSON description")
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
with open(args.master_description, "r") as f:
|
|
|
|
master_description = json.load(f)
|
|
|
|
|
|
|
|
satellites = []
|
|
|
|
for destination, description in args.satellite:
|
|
|
|
with open(description, "r") as f:
|
2019-02-23 15:27:18 +08:00
|
|
|
satellites.append((int(destination, 0), json.load(f)))
|
2019-02-22 17:19:48 +08:00
|
|
|
|
|
|
|
if args.output is not None:
|
|
|
|
with open(args.output, "w") as f:
|
|
|
|
process(f, master_description, satellites)
|
|
|
|
else:
|
|
|
|
process(sys.stdout, master_description, satellites)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|