mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-19 00:16:29 +08:00
126 lines
3.1 KiB
Python
126 lines
3.1 KiB
Python
core_addr = "kasli-1.lab.m-labs.hk"
|
|
|
|
device_db = {
|
|
"core": {
|
|
"type": "local",
|
|
"module": "artiq.coredevice.core",
|
|
"class": "Core",
|
|
"arguments": {"host": core_addr, "ref_period": 1e-9}
|
|
},
|
|
"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}
|
|
},
|
|
}
|
|
|
|
for i in range(40):
|
|
device_db["ttl" + str(i)] = {
|
|
"type": "local",
|
|
"module": "artiq.coredevice.ttl",
|
|
"class": "TTLInOut" if i < 4 else "TTLOut",
|
|
"arguments": {"channel": i},
|
|
}
|
|
|
|
device_db.update(
|
|
spi_urukul0={
|
|
"type": "local",
|
|
"module": "artiq.coredevice.spi2",
|
|
"class": "SPIMaster",
|
|
"arguments": {"channel": 40}
|
|
},
|
|
ttl_urukul0_io_update={
|
|
"type": "local",
|
|
"module": "artiq.coredevice.ttl",
|
|
"class": "TTLOut",
|
|
"arguments": {"channel": 41}
|
|
},
|
|
ttl_urukul0_sw0={
|
|
"type": "local",
|
|
"module": "artiq.coredevice.ttl",
|
|
"class": "TTLOut",
|
|
"arguments": {"channel": 42}
|
|
},
|
|
ttl_urukul0_sw1={
|
|
"type": "local",
|
|
"module": "artiq.coredevice.ttl",
|
|
"class": "TTLOut",
|
|
"arguments": {"channel": 43}
|
|
},
|
|
ttl_urukul0_sw2={
|
|
"type": "local",
|
|
"module": "artiq.coredevice.ttl",
|
|
"class": "TTLOut",
|
|
"arguments": {"channel": 44}
|
|
},
|
|
ttl_urukul0_sw3={
|
|
"type": "local",
|
|
"module": "artiq.coredevice.ttl",
|
|
"class": "TTLOut",
|
|
"arguments": {"channel": 45}
|
|
},
|
|
urukul0_cpld={
|
|
"type": "local",
|
|
"module": "artiq.coredevice.urukul",
|
|
"class": "CPLD",
|
|
"arguments": {
|
|
"spi_device": "spi_urukul0",
|
|
"io_update_device": "ttl_urukul0_io_update",
|
|
"refclk": 125e6,
|
|
"clk_sel": 0
|
|
}
|
|
}
|
|
)
|
|
|
|
for i in range(4):
|
|
device_db["urukul0_ch" + str(i)] = {
|
|
"type": "local",
|
|
"module": "artiq.coredevice.ad9910",
|
|
"class": "AD9910",
|
|
"arguments": {
|
|
"pll_n": 32,
|
|
"chip_select": 4 + i,
|
|
"cpld_device": "urukul0_cpld",
|
|
"sw_device": "ttl_urukul0_sw" + str(i)
|
|
}
|
|
}
|
|
|
|
device_db.update(
|
|
led0={
|
|
"type": "local",
|
|
"module": "artiq.coredevice.ttl",
|
|
"class": "TTLOut",
|
|
"arguments": {"channel": 46}
|
|
},
|
|
led1={
|
|
"type": "local",
|
|
"module": "artiq.coredevice.ttl",
|
|
"class": "TTLOut",
|
|
"arguments": {"channel": 47}
|
|
}
|
|
)
|