2017-01-30 09:24:43 +08:00
|
|
|
#!/usr/bin/env python3
|
2016-01-05 07:50:59 +08:00
|
|
|
|
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import tempfile
|
2016-07-15 21:31:27 +08:00
|
|
|
import shutil
|
2017-11-01 17:34:10 +08:00
|
|
|
from functools import partial
|
2016-01-05 07:50:59 +08:00
|
|
|
|
2016-01-26 09:04:06 +08:00
|
|
|
from artiq import __artiq_dir__ as artiq_dir
|
2016-01-05 07:50:59 +08:00
|
|
|
from artiq.frontend.bit2bin import bit2bin
|
|
|
|
|
|
|
|
|
2016-01-19 12:41:42 +08:00
|
|
|
def get_argparser():
|
2016-01-05 07:50:59 +08:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
|
|
description="ARTIQ flashing/deployment tool",
|
|
|
|
epilog="""\
|
|
|
|
Valid actions:
|
|
|
|
|
2016-03-01 03:45:41 +08:00
|
|
|
* proxy: load the flash proxy gateware bitstream
|
|
|
|
* gateware: write gateware bitstream to flash
|
2017-12-28 03:14:41 +08:00
|
|
|
* bootloader: write bootloader to flash
|
2016-01-05 07:50:59 +08:00
|
|
|
* storage: write storage image to flash
|
2017-12-28 03:14:41 +08:00
|
|
|
* runtime: write runtime to flash
|
2016-03-01 03:45:41 +08:00
|
|
|
* load: load gateware bitstream into device (volatile but fast)
|
|
|
|
* start: trigger the target to (re)load its gateware bitstream from flash
|
2016-01-05 07:50:59 +08:00
|
|
|
|
|
|
|
Prerequisites:
|
|
|
|
|
|
|
|
* Connect the board through its/a JTAG adapter.
|
|
|
|
* Have OpenOCD installed and in your $PATH.
|
|
|
|
* Have access to the JTAG adapter's devices. Udev rules from OpenOCD:
|
|
|
|
'sudo cp openocd/contrib/99-openocd.rules /etc/udev/rules.d'
|
|
|
|
and replug the device. Ensure you are member of the
|
|
|
|
plugdev group: 'sudo adduser $USER plugdev' and re-login.
|
|
|
|
""")
|
|
|
|
parser.add_argument("-t", "--target", default="kc705",
|
|
|
|
help="target board, default: %(default)s")
|
2017-12-22 16:53:58 +08:00
|
|
|
parser.add_argument("-m", "--variant", default=None,
|
|
|
|
help="board variant")
|
2017-11-01 17:34:10 +08:00
|
|
|
parser.add_argument("--preinit-command", default=[], action="append",
|
|
|
|
help="add a pre-initialization OpenOCD command. "
|
2017-12-26 10:48:36 +08:00
|
|
|
"Useful for selecting a development board "
|
2017-11-01 17:34:10 +08:00
|
|
|
"when several are connected.")
|
2016-01-05 07:50:59 +08:00
|
|
|
parser.add_argument("-f", "--storage", help="write file to storage area")
|
|
|
|
parser.add_argument("-d", "--dir", help="look for files in this directory")
|
2017-12-14 10:36:03 +08:00
|
|
|
parser.add_argument("--srcbuild", help="look for bitstream, BIOS and runtime in this "
|
|
|
|
"ARTIQ source build tree")
|
2016-04-22 16:33:44 +08:00
|
|
|
parser.add_argument("action", metavar="ACTION", nargs="*",
|
2017-12-28 03:14:41 +08:00
|
|
|
default="proxy gateware bootloader runtime start".split(),
|
2016-01-05 07:50:59 +08:00
|
|
|
help="actions to perform, default: %(default)s")
|
2016-01-19 12:41:42 +08:00
|
|
|
return parser
|
|
|
|
|
|
|
|
|
2017-08-21 05:23:56 +08:00
|
|
|
def scripts_path():
|
|
|
|
p = ["share", "openocd", "scripts"]
|
|
|
|
if os.name == "nt":
|
|
|
|
p.insert(0, "Library")
|
|
|
|
p = os.path.abspath(os.path.join(
|
|
|
|
os.path.dirname(shutil.which("openocd")),
|
|
|
|
"..", *p))
|
|
|
|
return p
|
|
|
|
|
|
|
|
|
2017-10-23 21:21:51 +08:00
|
|
|
def proxy_path():
|
|
|
|
p = ["share", "bscan-spi-bitstreams"]
|
|
|
|
p = os.path.abspath(os.path.join(
|
|
|
|
os.path.dirname(shutil.which("openocd")),
|
|
|
|
"..", *p))
|
|
|
|
return p
|
|
|
|
|
|
|
|
|
2017-08-21 05:23:56 +08:00
|
|
|
class Programmer:
|
2017-11-01 17:34:10 +08:00
|
|
|
def __init__(self, target_file, preinit_commands):
|
2017-08-21 05:23:56 +08:00
|
|
|
self.target_file = target_file
|
2017-11-01 17:34:10 +08:00
|
|
|
self.preinit_commands = preinit_commands
|
2017-08-21 05:23:56 +08:00
|
|
|
self.prog = []
|
|
|
|
|
2017-11-01 17:34:10 +08:00
|
|
|
def init(self):
|
|
|
|
self.prog.extend(self.preinit_commands)
|
|
|
|
self.prog.append("init")
|
|
|
|
|
2017-08-21 05:23:56 +08:00
|
|
|
def load(self, bitfile):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def proxy(self, proxy_bitfile):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def flash_binary(self, flashno, address, filename):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def do(self):
|
|
|
|
self.prog.append("exit")
|
|
|
|
cmdline = [
|
|
|
|
"openocd",
|
|
|
|
"-s", scripts_path()
|
|
|
|
]
|
|
|
|
if self.target_file is not None:
|
2017-08-31 12:16:52 +08:00
|
|
|
cmdline += ["-f", self.target_file]
|
2017-08-21 05:23:56 +08:00
|
|
|
cmdline += ["-c", "; ".join(self.prog)]
|
|
|
|
subprocess.check_call(cmdline)
|
|
|
|
|
|
|
|
|
|
|
|
class ProgrammerJtagSpi7(Programmer):
|
2017-11-01 17:34:10 +08:00
|
|
|
def __init__(self, target, preinit_commands):
|
|
|
|
Programmer.__init__(self, os.path.join("board", target + ".cfg"),
|
|
|
|
preinit_commands)
|
|
|
|
self.init()
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2017-11-01 21:45:07 +08:00
|
|
|
def load(self, bitfile, pld=0):
|
|
|
|
self.prog.append("pld load {} {{{}}}".format(pld, bitfile))
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2017-11-01 21:45:07 +08:00
|
|
|
def proxy(self, proxy_bitfile, pld=0):
|
|
|
|
self.prog.append("jtagspi_init {} {{{}}}".format(pld, proxy_bitfile))
|
2017-08-21 05:23:56 +08:00
|
|
|
|
|
|
|
def flash_binary(self, flashno, address, filename):
|
|
|
|
# jtagspi_program supports only one flash
|
|
|
|
assert flashno == 0
|
|
|
|
self.prog.append("jtagspi_program {{{}}} 0x{:x}".format(
|
|
|
|
filename, address))
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
self.prog.append("xc7_program xc7.tap")
|
|
|
|
|
|
|
|
|
|
|
|
class ProgrammerSayma(Programmer):
|
2017-12-13 21:20:16 +08:00
|
|
|
sector_size = 0x10000
|
|
|
|
|
2017-11-01 17:34:10 +08:00
|
|
|
def __init__(self, preinit_commands):
|
2017-08-21 05:23:56 +08:00
|
|
|
# TODO: support Sayma RTM
|
2017-11-01 17:34:10 +08:00
|
|
|
Programmer.__init__(self, None, preinit_commands)
|
2017-08-21 05:23:56 +08:00
|
|
|
self.proxy_loaded = False
|
|
|
|
self.prog += [
|
|
|
|
"interface ftdi",
|
|
|
|
"ftdi_device_desc \"Quad RS232-HS\"",
|
|
|
|
"ftdi_vid_pid 0x0403 0x6011",
|
|
|
|
"ftdi_channel 0",
|
|
|
|
# EN_USB_JTAG on ADBUS7: out, high
|
|
|
|
# nTRST on ADBUS4: out, high, but R46 is DNP
|
|
|
|
"ftdi_layout_init 0x0098 0x008b",
|
2017-11-01 20:11:18 +08:00
|
|
|
"reset_config none",
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2017-11-01 20:11:18 +08:00
|
|
|
"adapter_khz 5000",
|
2017-08-21 05:23:56 +08:00
|
|
|
"transport select jtag",
|
|
|
|
|
2017-11-01 21:45:07 +08:00
|
|
|
"source [find cpld/xilinx-xc7.cfg]", # tap 0, pld 0
|
2017-11-01 20:11:18 +08:00
|
|
|
"set CHIP XCKU040",
|
2017-11-01 21:45:07 +08:00
|
|
|
"source [find cpld/xilinx-xcu.cfg]", # tap 1, pld 1
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2017-12-13 21:20:16 +08:00
|
|
|
"target create xcu.proxy testee -chain-position xcu.tap",
|
2017-08-21 05:23:56 +08:00
|
|
|
"set XILINX_USER1 0x02",
|
|
|
|
"set XILINX_USER2 0x03",
|
2017-11-01 20:11:18 +08:00
|
|
|
"flash bank xcu.spi0 jtagspi 0 0 0 0 xcu.proxy $XILINX_USER1",
|
|
|
|
"flash bank xcu.spi1 jtagspi 0 0 0 0 xcu.proxy $XILINX_USER2"
|
2017-08-21 05:23:56 +08:00
|
|
|
]
|
2017-11-01 17:34:10 +08:00
|
|
|
self.init()
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2017-11-01 21:45:07 +08:00
|
|
|
def load(self, bitfile, pld=1):
|
|
|
|
self.prog.append("pld load {} {{{}}}".format(pld, bitfile))
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2017-11-01 21:45:07 +08:00
|
|
|
def proxy(self, proxy_bitfile, pld=1):
|
|
|
|
self.load(proxy_bitfile, pld)
|
|
|
|
self.prog.append("reset halt")
|
2017-08-21 05:23:56 +08:00
|
|
|
|
|
|
|
def flash_binary(self, flashno, address, filename):
|
2017-12-13 21:20:16 +08:00
|
|
|
sector_first = address // self.sector_size
|
|
|
|
size = os.path.getsize(filename)
|
|
|
|
assert size
|
|
|
|
sector_last = sector_first + (size - 1) // self.sector_size
|
|
|
|
assert sector_last >= sector_first
|
2017-08-21 05:23:56 +08:00
|
|
|
self.prog += [
|
2017-11-01 20:11:18 +08:00
|
|
|
"flash probe xcu.spi{}".format(flashno),
|
2017-12-13 21:20:16 +08:00
|
|
|
"flash erase_sector {} {} {}".format(flashno, sector_first, sector_last),
|
|
|
|
"flash write_bank {} {{{}}} 0x{:x}".format(flashno, filename, address),
|
|
|
|
"flash verify_bank {} {{{}}} 0x{:x}".format(flashno, filename, address),
|
2017-08-21 05:23:56 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
def start(self):
|
|
|
|
self.proxy_loaded = False
|
|
|
|
self.prog.append("xcu_program xcu.tap")
|
|
|
|
|
|
|
|
|
2016-01-19 12:41:42 +08:00
|
|
|
def main():
|
|
|
|
parser = get_argparser()
|
2016-01-05 07:50:59 +08:00
|
|
|
opts = parser.parse_args()
|
|
|
|
|
|
|
|
config = {
|
|
|
|
"kc705": {
|
2017-11-01 17:34:10 +08:00
|
|
|
"programmer_factory": partial(ProgrammerJtagSpi7, "kc705"),
|
2017-08-21 05:23:56 +08:00
|
|
|
"proxy_bitfile": "bscan_spi_xc7k325t.bit",
|
2017-12-22 16:53:58 +08:00
|
|
|
"variants": ["nist_clock", "nist_qc2"],
|
2017-12-28 03:14:41 +08:00
|
|
|
"gateware": (0, 0x000000),
|
|
|
|
"bootloader": (0, 0xaf0000),
|
|
|
|
"storage": (0, 0xb00000),
|
|
|
|
"runtime": (0, 0xb10000),
|
2017-08-21 05:23:56 +08:00
|
|
|
},
|
|
|
|
"sayma": {
|
|
|
|
"programmer_factory": ProgrammerSayma,
|
2017-11-01 14:57:30 +08:00
|
|
|
"proxy_bitfile": "bscan_spi_xcku040-sayma.bit",
|
2017-12-22 16:53:58 +08:00
|
|
|
"variants": ["standalone"],
|
2017-12-28 03:14:41 +08:00
|
|
|
"gateware": (0, 0x000000),
|
|
|
|
"bootloader": (1, 0x000000),
|
|
|
|
"storage": (1, 0x010000),
|
|
|
|
"runtime": (1, 0x020000),
|
2016-01-05 07:50:59 +08:00
|
|
|
},
|
|
|
|
}[opts.target]
|
|
|
|
|
2017-12-22 16:53:58 +08:00
|
|
|
variant = opts.variant
|
|
|
|
if variant is not None and variant not in config["variants"]:
|
|
|
|
raise SystemExit("Invalid variant for this board")
|
|
|
|
if variant is None and config["variants"]:
|
|
|
|
variant = config["variants"][0]
|
2017-08-21 05:23:56 +08:00
|
|
|
bin_dir = opts.dir
|
|
|
|
if bin_dir is None:
|
2017-12-22 16:53:58 +08:00
|
|
|
if variant is None:
|
2017-08-21 05:23:56 +08:00
|
|
|
bin_dir = os.path.join(artiq_dir, "binaries",
|
|
|
|
"{}".format(opts.target))
|
|
|
|
else:
|
|
|
|
bin_dir = os.path.join(artiq_dir, "binaries",
|
2017-12-22 16:53:58 +08:00
|
|
|
"{}-{}".format(opts.target, variant))
|
2017-12-14 10:36:03 +08:00
|
|
|
if opts.srcbuild is None and not os.path.exists(bin_dir) and opts.action != ["start"]:
|
2016-04-05 16:09:41 +08:00
|
|
|
raise SystemExit("Binaries directory '{}' does not exist"
|
2017-08-21 05:23:56 +08:00
|
|
|
.format(bin_dir))
|
2016-01-05 07:50:59 +08:00
|
|
|
|
2017-11-01 17:34:10 +08:00
|
|
|
programmer = config["programmer_factory"](opts.preinit_command)
|
2016-01-05 07:50:59 +08:00
|
|
|
|
2017-08-21 05:23:56 +08:00
|
|
|
conv = False
|
2016-04-22 16:33:44 +08:00
|
|
|
for action in opts.action:
|
2016-01-05 07:50:59 +08:00
|
|
|
if action == "proxy":
|
2017-08-21 05:23:56 +08:00
|
|
|
proxy_found = False
|
2017-10-23 21:21:51 +08:00
|
|
|
for p in [bin_dir, proxy_path(), os.path.expanduser("~/.migen"),
|
2016-03-01 03:45:41 +08:00
|
|
|
"/usr/local/share/migen", "/usr/share/migen"]:
|
2017-08-21 05:23:56 +08:00
|
|
|
proxy_bitfile = os.path.join(p, config["proxy_bitfile"])
|
|
|
|
if os.access(proxy_bitfile, os.R_OK):
|
|
|
|
programmer.proxy(proxy_bitfile)
|
|
|
|
proxy_found = True
|
2016-01-05 07:50:59 +08:00
|
|
|
break
|
2017-08-21 05:23:56 +08:00
|
|
|
if not proxy_found:
|
2016-01-05 07:50:59 +08:00
|
|
|
raise SystemExit(
|
2017-08-21 05:23:56 +08:00
|
|
|
"proxy gateware bitstream {} not found".format(config["proxy_bitfile"]))
|
2016-03-01 03:45:41 +08:00
|
|
|
elif action == "gateware":
|
2017-12-14 10:36:03 +08:00
|
|
|
if opts.srcbuild is None:
|
|
|
|
path = bin_dir
|
|
|
|
else:
|
|
|
|
path = os.path.join(opts.srcbuild, "gateware")
|
|
|
|
bin = os.path.join(path, "top.bin")
|
2016-01-05 07:50:59 +08:00
|
|
|
if not os.access(bin, os.R_OK):
|
2016-05-17 03:30:16 +08:00
|
|
|
bin_handle, bin = tempfile.mkstemp()
|
2017-12-14 10:36:03 +08:00
|
|
|
bit = os.path.join(path, "top.bit")
|
2017-12-13 21:20:16 +08:00
|
|
|
with open(bit, "rb") as f, open(bin_handle, "wb") as g:
|
|
|
|
bit2bin(f, g)
|
2016-01-05 07:50:59 +08:00
|
|
|
conv = True
|
2017-08-21 05:23:56 +08:00
|
|
|
programmer.flash_binary(*config["gateware"], bin)
|
2017-12-28 03:14:41 +08:00
|
|
|
elif action == "bootloader":
|
2017-12-14 10:36:03 +08:00
|
|
|
if opts.srcbuild is None:
|
|
|
|
path = bin_dir
|
|
|
|
else:
|
|
|
|
path = os.path.join(opts.srcbuild, "software", "bios")
|
2017-12-28 03:14:41 +08:00
|
|
|
programmer.flash_binary(*config["bootloader"], os.path.join(path, "bios.bin"))
|
|
|
|
elif action == "storage":
|
|
|
|
programmer.flash_binary(*config["storage"], opts.storage)
|
2016-01-05 07:50:59 +08:00
|
|
|
elif action == "runtime":
|
2017-12-14 10:36:03 +08:00
|
|
|
if opts.srcbuild is None:
|
|
|
|
path = bin_dir
|
|
|
|
else:
|
|
|
|
path = os.path.join(opts.srcbuild, "software", "runtime")
|
|
|
|
programmer.flash_binary(*config["runtime"], os.path.join(path, "runtime.fbi"))
|
2016-01-05 07:50:59 +08:00
|
|
|
elif action == "load":
|
2017-12-14 10:36:03 +08:00
|
|
|
if opts.srcbuild is None:
|
|
|
|
path = bin_dir
|
|
|
|
else:
|
|
|
|
path = os.path.join(opts.srcbuild, "gateware")
|
|
|
|
programmer.load(os.path.join(path, "top.bit"))
|
2016-01-05 07:50:59 +08:00
|
|
|
elif action == "start":
|
2017-08-21 05:23:56 +08:00
|
|
|
programmer.start()
|
2016-01-05 07:50:59 +08:00
|
|
|
else:
|
|
|
|
raise ValueError("invalid action", action)
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2016-01-05 07:50:59 +08:00
|
|
|
try:
|
2017-08-21 05:23:56 +08:00
|
|
|
programmer.do()
|
2016-01-05 07:50:59 +08:00
|
|
|
finally:
|
|
|
|
if conv:
|
|
|
|
os.unlink(bin)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|