Merge pull request #719 from davidlattimore/no-error-recovery
lxterm: Speed up CRC checked uploads
This commit is contained in:
commit
136db6a0ca
|
@ -58,12 +58,11 @@ sfl_prompt_ack = b"\x06"
|
||||||
sfl_magic_req = b"sL5DdSMmkekro\n"
|
sfl_magic_req = b"sL5DdSMmkekro\n"
|
||||||
sfl_magic_ack = b"z6IHG7cYDID6o\n"
|
sfl_magic_ack = b"z6IHG7cYDID6o\n"
|
||||||
|
|
||||||
sfl_payload_length = 64
|
sfl_payload_length = 255
|
||||||
|
|
||||||
# General commands
|
# General commands
|
||||||
sfl_cmd_abort = b"\x00"
|
sfl_cmd_abort = b"\x00"
|
||||||
sfl_cmd_load = b"\x01"
|
sfl_cmd_load = b"\x01"
|
||||||
sfl_cmd_load_no_crc = b"\x03"
|
|
||||||
sfl_cmd_jump = b"\x02"
|
sfl_cmd_jump = b"\x02"
|
||||||
sfl_cmd_flash = b"\x04"
|
sfl_cmd_flash = b"\x04"
|
||||||
sfl_cmd_reboot = b"\x05"
|
sfl_cmd_reboot = b"\x05"
|
||||||
|
@ -137,7 +136,7 @@ def crc16(l):
|
||||||
# LiteXTerm ----------------------------------------------------------------------------------------
|
# LiteXTerm ----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
class LiteXTerm:
|
class LiteXTerm:
|
||||||
def __init__(self, serial_boot, kernel_image, kernel_address, json_images, no_crc, flash):
|
def __init__(self, serial_boot, kernel_image, kernel_address, json_images, flash):
|
||||||
self.serial_boot = serial_boot
|
self.serial_boot = serial_boot
|
||||||
assert not (kernel_image is not None and json_images is not None)
|
assert not (kernel_image is not None and json_images is not None)
|
||||||
self.mem_regions = {}
|
self.mem_regions = {}
|
||||||
|
@ -149,7 +148,6 @@ class LiteXTerm:
|
||||||
self.mem_regions.update(json.load(f))
|
self.mem_regions.update(json.load(f))
|
||||||
self.boot_address = self.mem_regions[list(self.mem_regions.keys())[-1]]
|
self.boot_address = self.mem_regions[list(self.mem_regions.keys())[-1]]
|
||||||
f.close()
|
f.close()
|
||||||
self.no_crc = no_crc
|
|
||||||
self.flash = flash
|
self.flash = flash
|
||||||
|
|
||||||
self.reader_alive = False
|
self.reader_alive = False
|
||||||
|
@ -189,7 +187,6 @@ class LiteXTerm:
|
||||||
retry = 1
|
retry = 1
|
||||||
while retry:
|
while retry:
|
||||||
self.port.write(frame.encode())
|
self.port.write(frame.encode())
|
||||||
if not self.no_crc:
|
|
||||||
# Get the reply from the device
|
# Get the reply from the device
|
||||||
reply = self.port.read()
|
reply = self.port.read()
|
||||||
if reply == sfl_ack_success:
|
if reply == sfl_ack_success:
|
||||||
|
@ -199,10 +196,18 @@ class LiteXTerm:
|
||||||
else:
|
else:
|
||||||
print("[LXTERM] Got unknown reply '{}' from the device, aborting.".format(reply))
|
print("[LXTERM] Got unknown reply '{}' from the device, aborting.".format(reply))
|
||||||
return 0
|
return 0
|
||||||
else:
|
|
||||||
retry = 0
|
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
|
def receive_upload_response(self):
|
||||||
|
reply = self.port.read()
|
||||||
|
if reply == sfl_ack_success:
|
||||||
|
return
|
||||||
|
elif reply == sfl_ack_crcerror:
|
||||||
|
print("[LXTERM] Upload to device failed due to data corruption (CRC error)")
|
||||||
|
else:
|
||||||
|
print(f"[LXTERM] Got unexpected response from device '{reply}'")
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
def upload(self, filename, address):
|
def upload(self, filename, address):
|
||||||
f = open(filename, "rb")
|
f = open(filename, "rb")
|
||||||
f.seek(0, 2)
|
f.seek(0, 2)
|
||||||
|
@ -214,6 +219,7 @@ class LiteXTerm:
|
||||||
position = 0
|
position = 0
|
||||||
start = time.time()
|
start = time.time()
|
||||||
remaining = length
|
remaining = length
|
||||||
|
outstanding = 0
|
||||||
while remaining:
|
while remaining:
|
||||||
sys.stdout.write("|{}>{}| {}%\r".format('=' * (20*position//length),
|
sys.stdout.write("|{}>{}| {}%\r".format('=' * (20*position//length),
|
||||||
' ' * (20-20*position//length),
|
' ' * (20-20*position//length),
|
||||||
|
@ -224,15 +230,20 @@ class LiteXTerm:
|
||||||
if self.flash:
|
if self.flash:
|
||||||
frame.cmd = sfl_cmd_flash
|
frame.cmd = sfl_cmd_flash
|
||||||
else:
|
else:
|
||||||
frame.cmd = sfl_cmd_load if not self.no_crc else sfl_cmd_load_no_crc
|
frame.cmd = sfl_cmd_load
|
||||||
frame.payload = current_address.to_bytes(4, "big")
|
frame.payload = current_address.to_bytes(4, "big")
|
||||||
frame.payload += frame_data
|
frame.payload += frame_data
|
||||||
if self.send_frame(frame) == 0:
|
self.port.write(frame.encode())
|
||||||
return
|
outstanding += 1
|
||||||
|
if self.port.in_waiting:
|
||||||
|
self.receive_upload_response()
|
||||||
|
outstanding -= 1
|
||||||
current_address += len(frame_data)
|
current_address += len(frame_data)
|
||||||
position += len(frame_data)
|
position += len(frame_data)
|
||||||
remaining -= len(frame_data)
|
remaining -= len(frame_data)
|
||||||
time.sleep(1e-5) # Inter-frame delay for fast UARTs (ex: FT245).
|
time.sleep(1e-5) # Inter-frame delay for fast UARTs (ex: FT245).
|
||||||
|
for _ in range(outstanding):
|
||||||
|
self.receive_upload_response()
|
||||||
end = time.time()
|
end = time.time()
|
||||||
elapsed = end - start
|
elapsed = end - start
|
||||||
f.close()
|
f.close()
|
||||||
|
@ -365,7 +376,9 @@ def _get_args():
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
args = _get_args()
|
args = _get_args()
|
||||||
term = LiteXTerm(args.serial_boot, args.kernel, args.kernel_adr, args.images, args.no_crc, args.flash)
|
if args.no_crc:
|
||||||
|
print("[LXTERM] --no-crc is deprecated and now does nothing (CRC checking is now fast)")
|
||||||
|
term = LiteXTerm(args.serial_boot, args.kernel, args.kernel_adr, args.images, args.flash)
|
||||||
term.open(args.port, int(float(args.speed)))
|
term.open(args.port, int(float(args.speed)))
|
||||||
term.console.configure()
|
term.console.configure()
|
||||||
term.start()
|
term.start()
|
||||||
|
|
Loading…
Reference in New Issue