From: Tim 'mithro' Ansell Date: Sun, 5 Jul 2015 08:43:40 +0000 (+1000) Subject: Allow using non-milkymist cables with UrJTAG. X-Git-Tag: 24jan2021_ls180~2099^2~41 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1d1f8510d3b2a48634afb2a71b2bd5cabcfd958b;p=litex.git Allow using non-milkymist cables with UrJTAG. --- diff --git a/mibuild/platforms/m1.py b/mibuild/platforms/m1.py index 93e213b2..01b9e866 100644 --- a/mibuild/platforms/m1.py +++ b/mibuild/platforms/m1.py @@ -127,7 +127,7 @@ class Platform(XilinxPlatform): XilinxPlatform.__init__(self, "xc6slx45-fgg484-2", _io) def create_programmer(self): - return UrJTAG("fjmem-m1.bit") + return UrJTAG(cable="milkymist", flash_proxy_basename="fjmem-m1.bit") def do_finalize(self, fragment): XilinxPlatform.do_finalize(self, fragment) diff --git a/mibuild/xilinx/programmer.py b/mibuild/xilinx/programmer.py index ac3d0cff..6ea7f4bc 100644 --- a/mibuild/xilinx/programmer.py +++ b/mibuild/xilinx/programmer.py @@ -14,17 +14,21 @@ def _run_urjtag(cmds): class UrJTAG(GenericProgrammer): needs_bitreverse = True + def __init__(self, cable, flash_proxy_basename=None): + GenericProgrammer.__init__(self, flash_proxy_basename) + self.cable = cable + def load_bitstream(self, bitstream_file): - cmds = """cable milkymist + cmds = """cable {cable} detect pld load {bitstream} quit -""".format(bitstream=bitstream_file) +""".format(bitstream=bitstream_file, cable=self.cable) _run_urjtag(cmds) def flash(self, address, data_file): flash_proxy = self.find_flash_proxy() - cmds = """cable milkymist + cmds = """cable {cable} detect pld load "{flash_proxy}" initbus fjmem opcode=000010 @@ -32,7 +36,8 @@ frequency 6000000 detectflash 0 endian big flashmem "{address}" "{data_file}" noverify -""".format(flash_proxy=flash_proxy, address=address, data_file=data_file) +""".format(flash_proxy=flash_proxy, address=address, data_file=data_file, + cable=self.cable) _run_urjtag(cmds)