build: add DFUProg.

This commit is contained in:
Florent Kermarrec 2020-06-11 14:45:50 +02:00
parent 653edd17ca
commit d6f92d1ffd
1 changed files with 21 additions and 0 deletions

21
litex/build/dfu.py Normal file
View File

@ -0,0 +1,21 @@
# This file is Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD
import subprocess
from litex.build.tools import write_to_file
from litex.build.generic_programmer import GenericProgrammer
# DFUProg ------------------------------------------------------------------------------------------
class DFUProg(GenericProgrammer):
needs_bitreverse = False
def __init__(self, vid, pid):
self.vid = vid
self.pid = pid
def load_bitstream(self, bitstream_file):
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"])