Merge pull request #952 from smunaut/dfu

build/DFUProg: Allow to specify alt interface and to not reboot
This commit is contained in:
enjoy-digital 2021-06-22 12:03:43 +02:00 committed by GitHub
commit 26df3fa2c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,11 +14,18 @@ from litex.build.generic_programmer import GenericProgrammer
class DFUProg(GenericProgrammer):
needs_bitreverse = False
def __init__(self, vid, pid):
def __init__(self, vid, pid, alt=None):
self.vid = vid
self.pid = pid
self.alt = alt
def load_bitstream(self, bitstream_file):
def load_bitstream(self, bitstream_file, reset=True):
subprocess.call(["cp", bitstream_file, bitstream_file + ".dfu"])
subprocess.call(["dfu-suffix", "-v", self.vid, "-p", self.pid, "-a", bitstream_file + ".dfu"])
subprocess.call(["dfu-util", "--download", bitstream_file + ".dfu", "-R"])
flash_cmd = ["dfu-util", "--download", bitstream_file + ".dfu"]
if reset:
flash_cmd.append("-R")
if self.alt is not None:
flash_cmd.extend(["-a", str(self.alt)])
subprocess.call(flash_cmd)