[beken-72xx] Add UF2 uploading based on bk7231tools

This commit is contained in:
Kuba Szczodrzyński
2022-06-23 14:23:22 +02:00
parent 236e9ccda6
commit 45af7c188a
8 changed files with 89 additions and 3 deletions

57
tools/soc/uf2_bk72xx.py Normal file
View File

@@ -0,0 +1,57 @@
# Copyright (c) Kuba Szczodrzyński 2022-06-23.
import sys
try:
from platformio.package.manager.tool import ToolPackageManager
manager = ToolPackageManager()
pkg = manager.get_package("tool-bk7231tools")
sys.path.append(pkg.path)
from bk7231tools.serial import BK7231Serial
except (ImportError, AttributeError):
print("You need PlatformIO and tool-bk7231tools package to run this program.")
exit(1)
from tools.upload.ctx import UploadContext
def upload_uart(
ctx: UploadContext,
port: str,
baud: int = None,
**kwargs,
) -> bool:
prefix = "| |--"
# connect to chip
bk = BK7231Serial(port=port, baudrate=baud or ctx.baudrate or 115200)
# collect continuous blocks of data
parts = ctx.collect(ota_idx=1)
# write blocks to flash
for offs, data in parts.items():
length = len(data.getvalue())
data.seek(0)
print(prefix, f"Writing {length} bytes to 0x{offs:06x}")
try:
bk.program_flash(
data,
length,
offs,
verbose=False,
crc_check=True,
dry_run=False,
really_erase=True,
)
except ValueError as e:
print(prefix, f"Writing failed: {e.args[0]}")
return False
return True
def upload(ctx: UploadContext, protocol: str, **kwargs) -> bool:
if protocol == "uart":
return upload_uart(ctx, **kwargs)
print(f"Unknown upload protocol - {protocol}")
return False

67
tools/soc/uf2_rtltool.py Normal file
View File

@@ -0,0 +1,67 @@
# Copyright (c) Kuba Szczodrzyński 2022-06-02.
from io import BytesIO
from tools.upload.ctx import UploadContext
from tools.upload.rtltool import RTLXMD
from tools.util.intbin import letoint
def upload_uart(
ctx: UploadContext,
port: str,
baud: int = None,
**kwargs,
) -> bool:
prefix = "| |--"
rtl = RTLXMD(port=port)
print(prefix, f"Connecting to {port}...")
if not rtl.connect():
print(prefix, f"Failed to connect on port {port}")
return False
# read system data to get active OTA index
io = BytesIO()
if not rtl.ReadBlockFlash(io, offset=0x9000, size=256):
print(prefix, "Failed to read from 0x9000")
return False
# get as bytes
system = io.getvalue()
if len(system) != 256:
print(prefix, f"Length invalid while reading from 0x9000 - {len(system)}")
return False
# read OTA switch value
ota_switch = bin(letoint(system[4:8]))[2:]
# count 0-bits
ota_idx = 1 + (ota_switch.count("0") % 2)
# validate OTA2 address in system data
if ota_idx == 2:
ota2_addr = letoint(system[0:4]) & 0xFFFFFF
part_addr = ctx.get_offset("ota2", 0)
if ota2_addr != part_addr:
print(
prefix,
f"Invalid OTA2 address on chip - found {ota2_addr}, expected {part_addr}",
)
return False
print(prefix, f"Flashing image to OTA {ota_idx}...")
# collect continuous blocks of data
parts = ctx.collect(ota_idx=ota_idx)
# write blocks to flash
for offs, data in parts.items():
offs |= 0x8000000
length = len(data.getvalue())
data.seek(0)
print(prefix, f"Writing {length} bytes to 0x{offs:06x}")
if not rtl.WriteBlockFlash(data, offs, length):
print(prefix, f"Writing failed at 0x{offs:x}")
return False
return True
def upload(ctx: UploadContext, protocol: str, **kwargs) -> bool:
if protocol == "uart":
return upload_uart(ctx, **kwargs)
print(f"Unknown upload protocol - {protocol}")
return False