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
|
2018-01-19 15:39:55 +08:00
|
|
|
import re
|
2018-01-20 14:21:32 +08:00
|
|
|
import atexit
|
2017-11-01 17:34:10 +08:00
|
|
|
from functools import partial
|
2018-01-27 23:43:27 +08:00
|
|
|
from collections import defaultdict
|
2016-01-05 07:50:59 +08:00
|
|
|
|
2016-01-26 09:04:06 +08:00
|
|
|
from artiq import __artiq_dir__ as artiq_dir
|
2018-01-19 16:28:04 +08:00
|
|
|
from artiq.tools import verbosity_args, init_logger
|
|
|
|
from artiq.remoting import SSHClient, LocalClient
|
2016-01-05 07:50:59 +08:00
|
|
|
from artiq.frontend.bit2bin import bit2bin
|
|
|
|
|
2018-01-19 16:28:04 +08:00
|
|
|
|
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
|
|
|
* 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-31 12:08:11 +08:00
|
|
|
* firmware: write firmware 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.
|
|
|
|
""")
|
2018-01-19 15:39:55 +08:00
|
|
|
|
|
|
|
verbosity_args(parser)
|
|
|
|
|
2018-01-20 00:24:59 +08:00
|
|
|
parser.add_argument("-n", "--dry-run",
|
|
|
|
default=False, action="store_true",
|
2018-01-20 01:44:23 +08:00
|
|
|
help="only show the openocd script that would be run")
|
2018-01-19 15:39:55 +08:00
|
|
|
parser.add_argument("-H", "--host", metavar="HOSTNAME",
|
|
|
|
type=str, default=None,
|
|
|
|
help="SSH host where the development board is located")
|
2016-01-05 07:50:59 +08:00
|
|
|
parser.add_argument("-t", "--target", default="kc705",
|
2018-01-17 09:21:19 +08:00
|
|
|
help="target board, default: %(default)s, one of: "
|
2018-01-28 03:53:43 +08:00
|
|
|
"kc705 kasli sayma")
|
2018-01-22 18:25:10 +08:00
|
|
|
parser.add_argument("-V", "--variant", default=None,
|
2017-12-22 16:53:58 +08:00
|
|
|
help="board variant")
|
2018-01-20 01:44:23 +08:00
|
|
|
parser.add_argument("-I", "--preinit-command", default=[], action="append",
|
2017-11-01 17:34:10 +08:00
|
|
|
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-31 12:08:11 +08:00
|
|
|
parser.add_argument("--srcbuild", help="look for bitstream, bootloader and firmware in this "
|
2017-12-14 10:36:03 +08:00
|
|
|
"ARTIQ source build tree")
|
2016-04-22 16:33:44 +08:00
|
|
|
parser.add_argument("action", metavar="ACTION", nargs="*",
|
2018-01-27 23:43:27 +08:00
|
|
|
default="gateware bootloader firmware 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
|
|
|
|
|
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
def find_proxy_bitfile(filename):
|
|
|
|
for p in [proxy_path(), os.path.expanduser("~/.migen"),
|
|
|
|
"/usr/local/share/migen", "/usr/share/migen"]:
|
|
|
|
full_path = os.path.join(p, filename)
|
|
|
|
if os.access(full_path, os.R_OK):
|
|
|
|
return full_path
|
2018-01-20 15:22:27 +08:00
|
|
|
raise FileNotFoundError("Cannot find proxy bitstream {}"
|
2018-01-20 14:40:35 +08:00
|
|
|
.format(filename))
|
|
|
|
|
|
|
|
|
|
|
|
def add_commands(script, *commands, **substs):
|
|
|
|
script += [command.format(**substs) for command in commands]
|
|
|
|
|
|
|
|
|
2017-08-21 05:23:56 +08:00
|
|
|
class Programmer:
|
2018-01-20 01:44:23 +08:00
|
|
|
def __init__(self, client, preinit_script):
|
|
|
|
self._client = client
|
2018-01-20 14:40:35 +08:00
|
|
|
self._board_script = []
|
2018-01-20 01:44:23 +08:00
|
|
|
self._preinit_script = preinit_script
|
2018-01-27 23:43:27 +08:00
|
|
|
self._loaded = defaultdict(lambda: None)
|
2018-01-20 01:44:23 +08:00
|
|
|
self._script = []
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2018-01-19 15:39:55 +08:00
|
|
|
def _transfer_script(self, script):
|
2018-01-20 01:44:23 +08:00
|
|
|
if isinstance(self._client, LocalClient):
|
|
|
|
return "[find {}]".format(script)
|
2018-01-19 15:39:55 +08:00
|
|
|
|
|
|
|
def rewriter(content):
|
|
|
|
def repl(match):
|
2018-01-19 16:28:04 +08:00
|
|
|
return self._transfer_script(match.group(1).decode()).encode()
|
|
|
|
return re.sub(rb"\[find (.+?)\]", repl, content, re.DOTALL)
|
2018-01-19 15:39:55 +08:00
|
|
|
|
|
|
|
script = os.path.join(scripts_path(), script)
|
2018-01-28 00:26:02 +08:00
|
|
|
return self._client.upload(script, rewriter)
|
2018-01-20 01:44:23 +08:00
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
def add_flash_bank(self, name, tap, index):
|
|
|
|
add_commands(self._board_script,
|
|
|
|
"target create {tap}.{name}.proxy testee -chain-position {tap}.tap",
|
|
|
|
"flash bank {name} jtagspi 0 0 0 0 {tap}.{name}.proxy {ir:#x}",
|
|
|
|
tap=tap, name=name, ir=0x02 + index)
|
|
|
|
|
|
|
|
def load(self, bitfile, pld):
|
2018-01-27 23:43:27 +08:00
|
|
|
os.stat(bitfile) # check for existence
|
|
|
|
|
|
|
|
if self._loaded[pld] == bitfile:
|
|
|
|
return
|
|
|
|
self._loaded[pld] = bitfile
|
|
|
|
|
2018-01-28 00:26:02 +08:00
|
|
|
bitfile = self._client.upload(bitfile)
|
2018-01-20 14:40:35 +08:00
|
|
|
add_commands(self._script,
|
|
|
|
"pld load {pld} {filename}",
|
|
|
|
pld=pld, filename=bitfile)
|
|
|
|
|
|
|
|
def load_proxy(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2018-01-28 00:26:02 +08:00
|
|
|
def write_binary(self, bankname, address, filename):
|
2018-01-27 23:43:27 +08:00
|
|
|
self.load_proxy()
|
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
size = os.path.getsize(filename)
|
2018-01-28 00:26:02 +08:00
|
|
|
filename = self._client.upload(filename)
|
2018-01-20 14:40:35 +08:00
|
|
|
add_commands(self._script,
|
|
|
|
"flash probe {bankname}",
|
|
|
|
"flash erase_sector {bankname} {firstsector} {lastsector}",
|
|
|
|
"flash write_bank {bankname} {filename} {address:#x}",
|
|
|
|
"flash verify_bank {bankname} {filename} {address:#x}",
|
|
|
|
bankname=bankname, address=address, filename=filename,
|
|
|
|
firstsector=address // self._sector_size,
|
|
|
|
lastsector=(address + size - 1) // self._sector_size)
|
|
|
|
|
2018-01-28 00:26:02 +08:00
|
|
|
def read_binary(self, bankname, address, length, filename):
|
|
|
|
self.load_proxy()
|
|
|
|
|
|
|
|
filename = self._client.prepare_download(filename)
|
|
|
|
add_commands(self._script,
|
|
|
|
"flash probe {bankname}",
|
|
|
|
"flash read_bank {bankname} {filename} {address:#x} {length}",
|
|
|
|
bankname=bankname, filename=filename, address=address, length=length)
|
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
def start(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2018-01-20 01:44:23 +08:00
|
|
|
def script(self):
|
|
|
|
return [
|
2018-01-20 14:40:35 +08:00
|
|
|
*self._board_script,
|
2018-01-20 01:44:23 +08:00
|
|
|
*self._preinit_script,
|
|
|
|
"init",
|
|
|
|
*self._script,
|
|
|
|
"exit"
|
|
|
|
]
|
2018-01-19 15:39:55 +08:00
|
|
|
|
2018-01-20 01:44:23 +08:00
|
|
|
def run(self):
|
|
|
|
cmdline = ["openocd"]
|
|
|
|
if isinstance(self._client, LocalClient):
|
|
|
|
cmdline += ["-s", scripts_path()]
|
2018-01-20 02:53:49 +08:00
|
|
|
cmdline += ["-c", "; ".join(self.script())]
|
2018-01-19 15:39:55 +08:00
|
|
|
|
2018-01-20 02:53:49 +08:00
|
|
|
cmdline = [arg.replace("{", "{{").replace("}", "}}") for arg in cmdline]
|
2018-01-20 01:44:23 +08:00
|
|
|
self._client.run_command(cmdline)
|
2018-01-28 00:26:02 +08:00
|
|
|
self._client.download()
|
|
|
|
|
|
|
|
self._script = []
|
2017-11-01 17:34:10 +08:00
|
|
|
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
class ProgrammerXC7(Programmer):
|
|
|
|
_sector_size = 0x10000
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
def __init__(self, client, preinit_script, board, proxy):
|
2018-01-20 01:44:23 +08:00
|
|
|
Programmer.__init__(self, client, preinit_script)
|
2018-01-20 14:40:35 +08:00
|
|
|
self._proxy = proxy
|
2018-01-20 01:44:23 +08:00
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
add_commands(self._board_script,
|
|
|
|
"source {boardfile}",
|
|
|
|
boardfile=self._transfer_script("board/{}.cfg".format(board)))
|
|
|
|
self.add_flash_bank("spi0", "xc7", index=0)
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
def load_proxy(self):
|
|
|
|
self.load(find_proxy_bitfile(self._proxy), pld=0)
|
2017-08-21 05:23:56 +08:00
|
|
|
|
|
|
|
def start(self):
|
2018-01-20 14:40:35 +08:00
|
|
|
add_commands(self._script,
|
|
|
|
"xc7_program xc7.tap")
|
2017-08-21 05:23:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ProgrammerSayma(Programmer):
|
2018-01-20 14:40:35 +08:00
|
|
|
_sector_size = 0x10000
|
2017-12-13 21:20:16 +08:00
|
|
|
|
2018-01-20 01:44:23 +08:00
|
|
|
def __init__(self, client, preinit_script):
|
2018-01-20 14:40:35 +08:00
|
|
|
Programmer.__init__(self, client, preinit_script)
|
2018-01-19 15:39:55 +08:00
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
add_commands(self._board_script,
|
2017-08-21 05:23:56 +08:00
|
|
|
"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",
|
|
|
|
"adapter_khz 5000",
|
2017-08-21 05:23:56 +08:00
|
|
|
"transport select jtag",
|
2018-01-19 16:28:04 +08:00
|
|
|
# tap 0, pld 0
|
|
|
|
"source {}".format(self._transfer_script("cpld/xilinx-xc7.cfg")),
|
|
|
|
# tap 1, pld 1
|
2017-11-01 20:11:18 +08:00
|
|
|
"set CHIP XCKU040",
|
2018-01-20 14:40:35 +08:00
|
|
|
"source {}".format(self._transfer_script("cpld/xilinx-xcu.cfg")))
|
|
|
|
self.add_flash_bank("spi0", "xcu", index=0)
|
|
|
|
self.add_flash_bank("spi1", "xcu", index=1)
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
def load_proxy(self):
|
|
|
|
self.load(find_proxy_bitfile("bscan_spi_xcku040-sayma.bit"), pld=1)
|
2017-08-21 05:23:56 +08:00
|
|
|
|
|
|
|
def start(self):
|
2018-01-20 14:40:35 +08:00
|
|
|
add_commands(self._script,
|
|
|
|
"xcu_program xcu.tap")
|
2017-08-21 05:23:56 +08:00
|
|
|
|
|
|
|
|
2016-01-19 12:41:42 +08:00
|
|
|
def main():
|
2018-01-19 15:39:55 +08:00
|
|
|
args = get_argparser().parse_args()
|
|
|
|
init_logger(args)
|
2016-01-05 07:50:59 +08:00
|
|
|
|
|
|
|
config = {
|
|
|
|
"kc705": {
|
2018-01-20 14:40:35 +08:00
|
|
|
"programmer": partial(ProgrammerXC7, board="kc705", proxy="bscan_spi_xc7k325t.bit"),
|
|
|
|
"variants": ["nist_clock", "nist_qc2"],
|
|
|
|
"gateware": ("spi0", 0x000000),
|
|
|
|
"bootloader": ("spi0", 0xaf0000),
|
|
|
|
"storage": ("spi0", 0xb30000),
|
|
|
|
"firmware": ("spi0", 0xb40000),
|
2017-08-21 05:23:56 +08:00
|
|
|
},
|
2018-01-15 20:59:11 +08:00
|
|
|
"kasli": {
|
2018-01-20 14:40:35 +08:00
|
|
|
"programmer": partial(ProgrammerXC7, board="kasli", proxy="bscan_spi_xc7a100t.bit"),
|
2018-01-25 00:00:07 +08:00
|
|
|
"variants": ["opticlock", "master", "satellite"],
|
2018-01-20 14:40:35 +08:00
|
|
|
"gateware": ("spi0", 0x000000),
|
|
|
|
"bootloader": ("spi0", 0x400000),
|
|
|
|
"storage": ("spi0", 0x440000),
|
|
|
|
"firmware": ("spi0", 0x450000),
|
2018-01-15 20:59:11 +08:00
|
|
|
},
|
2018-01-28 03:53:43 +08:00
|
|
|
"sayma": {
|
2018-01-20 14:40:35 +08:00
|
|
|
"programmer": ProgrammerSayma,
|
|
|
|
"variants": ["standalone", "master", "satellite"],
|
|
|
|
"gateware": ("spi0", 0x000000),
|
|
|
|
"bootloader": ("spi1", 0x000000),
|
|
|
|
"storage": ("spi1", 0x040000),
|
|
|
|
"firmware": ("spi1", 0x050000),
|
2016-01-05 07:50:59 +08:00
|
|
|
},
|
2018-01-19 15:39:55 +08:00
|
|
|
}[args.target]
|
2016-01-05 07:50:59 +08:00
|
|
|
|
2018-01-19 15:39:55 +08:00
|
|
|
variant = args.variant
|
2018-01-17 09:21:19 +08:00
|
|
|
if "variants" in config:
|
|
|
|
if variant is not None and variant not in config["variants"]:
|
|
|
|
raise SystemExit("Invalid variant for this board")
|
|
|
|
if variant is None:
|
|
|
|
variant = config["variants"][0]
|
2018-01-20 14:40:35 +08:00
|
|
|
|
2018-01-19 15:39:55 +08:00
|
|
|
bin_dir = args.dir
|
2017-08-21 05:23:56 +08:00
|
|
|
if bin_dir is None:
|
2018-01-20 14:40:35 +08:00
|
|
|
bin_name = args.target
|
2018-01-17 09:21:19 +08:00
|
|
|
if variant:
|
2018-01-20 14:40:35 +08:00
|
|
|
bin_name += "-" + variant
|
2018-01-17 09:21:19 +08:00
|
|
|
bin_dir = os.path.join(artiq_dir, "binaries", bin_name)
|
2018-01-20 14:40:35 +08:00
|
|
|
|
2018-01-19 15:39:55 +08:00
|
|
|
if args.host is None:
|
|
|
|
client = LocalClient()
|
|
|
|
else:
|
|
|
|
client = SSHClient(args.host)
|
|
|
|
|
2018-01-20 14:40:35 +08:00
|
|
|
programmer = config["programmer"](client, preinit_script=args.preinit_command)
|
2016-01-05 07:50:59 +08:00
|
|
|
|
2018-01-20 15:22:27 +08:00
|
|
|
def artifact_path(*path_filename):
|
|
|
|
if args.srcbuild is None:
|
|
|
|
*path, filename = path_filename
|
|
|
|
return os.path.join(bin_dir, filename)
|
|
|
|
else:
|
|
|
|
return os.path.join(args.srcbuild, *path_filename)
|
|
|
|
|
2018-01-27 23:43:27 +08:00
|
|
|
try:
|
|
|
|
for action in args.action:
|
|
|
|
if action == "gateware":
|
|
|
|
gateware_bin = artifact_path("gateware", "top.bin")
|
|
|
|
if not os.access(gateware_bin, os.R_OK):
|
|
|
|
bin_handle, gateware_bin = tempfile.mkstemp()
|
|
|
|
gateware_bit = artifact_path("gateware", "top.bit")
|
|
|
|
with open(gateware_bit, "rb") as bit_file, open(bin_handle, "wb") as bin_file:
|
|
|
|
bit2bin(bit_file, bin_file)
|
|
|
|
atexit.register(lambda: os.unlink(gateware_bin))
|
|
|
|
|
2018-01-28 00:26:02 +08:00
|
|
|
programmer.write_binary(*config["gateware"], gateware_bin)
|
2018-01-27 23:43:27 +08:00
|
|
|
elif action == "bootloader":
|
|
|
|
bootloader_bin = artifact_path("software", "bootloader", "bootloader.bin")
|
2018-01-28 00:26:02 +08:00
|
|
|
programmer.write_binary(*config["bootloader"], bootloader_bin)
|
2018-01-27 23:43:27 +08:00
|
|
|
elif action == "storage":
|
|
|
|
storage_img = args.storage
|
2018-01-28 00:26:02 +08:00
|
|
|
programmer.write_binary(*config["storage"], storage_img)
|
2018-01-27 23:43:27 +08:00
|
|
|
elif action == "firmware":
|
|
|
|
if variant == "satellite":
|
|
|
|
firmware = "satman"
|
|
|
|
else:
|
|
|
|
firmware = "runtime"
|
|
|
|
|
|
|
|
firmware_fbi = artifact_path("software", firmware, firmware + ".fbi")
|
2018-01-28 00:26:02 +08:00
|
|
|
programmer.write_binary(*config["firmware"], firmware_fbi)
|
2018-01-27 23:43:27 +08:00
|
|
|
elif action == "load":
|
2018-01-28 03:53:43 +08:00
|
|
|
if args.target == "sayma":
|
2018-01-28 22:27:08 +08:00
|
|
|
rtm_gateware_bit = artifact_path("rtm_gateware", "rtm.bit")
|
2018-01-28 03:53:43 +08:00
|
|
|
programmer.load(rtm_gateware_bit, 0)
|
2018-01-27 23:43:27 +08:00
|
|
|
gateware_bit = artifact_path("gateware", "top.bit")
|
|
|
|
programmer.load(gateware_bit, 1)
|
|
|
|
else:
|
|
|
|
gateware_bit = artifact_path("gateware", "top.bit")
|
|
|
|
programmer.load(gateware_bit, 0)
|
|
|
|
elif action == "start":
|
|
|
|
programmer.start()
|
2017-12-14 10:36:03 +08:00
|
|
|
else:
|
2018-01-27 23:43:27 +08:00
|
|
|
raise ValueError("invalid action", action)
|
|
|
|
except FileNotFoundError as e:
|
|
|
|
raise SystemExit(e)
|
2017-08-21 05:23:56 +08:00
|
|
|
|
2018-01-20 00:24:59 +08:00
|
|
|
if args.dry_run:
|
2018-01-20 01:44:23 +08:00
|
|
|
print("\n".join(programmer.script()))
|
2018-01-20 00:24:59 +08:00
|
|
|
else:
|
2018-01-20 14:21:32 +08:00
|
|
|
programmer.run()
|
2016-01-05 07:50:59 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|