uf2conv.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. #!/usr/bin/env python3
  2. # Copyright (c) Microsoft Corporation
  3. # SPDX-License-Identifier: MIT
  4. # Copied from 7a9e1f4 of https://github.com/microsoft/uf2/blob/master/utils/uf2conv.py
  5. # pylint: skip-file
  6. import sys
  7. import struct
  8. import subprocess
  9. import re
  10. import os
  11. import os.path
  12. import argparse
  13. UF2_MAGIC_START0 = 0x0A324655 # "UF2\n"
  14. UF2_MAGIC_START1 = 0x9E5D5157 # Randomly selected
  15. UF2_MAGIC_END = 0x0AB16F30 # Ditto
  16. families = {
  17. 'SAMD21': 0x68ed2b88,
  18. 'SAML21': 0x1851780a,
  19. 'SAMD51': 0x55114460,
  20. 'NRF52': 0x1b57745f,
  21. 'STM32F0': 0x647824b6,
  22. 'STM32F1': 0x5ee21072,
  23. 'STM32F2': 0x5d1a0a2e,
  24. 'STM32F3': 0x6b846188,
  25. 'STM32F4': 0x57755a57,
  26. 'STM32F7': 0x53b80f00,
  27. 'STM32G0': 0x300f5633,
  28. 'STM32G4': 0x4c71240a,
  29. 'STM32H7': 0x6db66082,
  30. 'STM32L0': 0x202e3a91,
  31. 'STM32L1': 0x1e1f432d,
  32. 'STM32L4': 0x00ff6919,
  33. 'STM32L5': 0x04240bdf,
  34. 'STM32WB': 0x70d16653,
  35. 'STM32WL': 0x21460ff0,
  36. 'ATMEGA32': 0x16573617,
  37. 'MIMXRT10XX': 0x4FB2D5BD,
  38. 'LPC55': 0x2abc77ec,
  39. 'GD32F350': 0x31D228C6,
  40. 'ESP32S2': 0xbfdd4eee,
  41. 'RP2040': 0xe48bff56
  42. }
  43. INFO_FILE = "/INFO_UF2.TXT"
  44. appstartaddr = 0x2000
  45. familyid = 0x0
  46. def is_uf2(buf):
  47. w = struct.unpack("<II", buf[0:8])
  48. return w[0] == UF2_MAGIC_START0 and w[1] == UF2_MAGIC_START1
  49. def is_hex(buf):
  50. try:
  51. w = buf[0:30].decode("utf-8")
  52. except UnicodeDecodeError:
  53. return False
  54. if w[0] == ':' and re.match(b"^[:0-9a-fA-F\r\n]+$", buf):
  55. return True
  56. return False
  57. def convert_from_uf2(buf):
  58. global appstartaddr
  59. numblocks = len(buf) // 512
  60. curraddr = None
  61. outp = []
  62. for blockno in range(numblocks):
  63. ptr = blockno * 512
  64. block = buf[ptr:ptr + 512]
  65. hd = struct.unpack(b"<IIIIIIII", block[0:32])
  66. if hd[0] != UF2_MAGIC_START0 or hd[1] != UF2_MAGIC_START1:
  67. print("Skipping block at " + ptr + "; bad magic")
  68. continue
  69. if hd[2] & 1:
  70. # NO-flash flag set; skip block
  71. continue
  72. datalen = hd[4]
  73. if datalen > 476:
  74. assert False, "Invalid UF2 data size at " + ptr
  75. newaddr = hd[3]
  76. if curraddr == None:
  77. appstartaddr = newaddr
  78. curraddr = newaddr
  79. padding = newaddr - curraddr
  80. if padding < 0:
  81. assert False, "Block out of order at " + ptr
  82. if padding > 10*1024*1024:
  83. assert False, "More than 10M of padding needed at " + ptr
  84. if padding % 4 != 0:
  85. assert False, "Non-word padding size at " + ptr
  86. while padding > 0:
  87. padding -= 4
  88. outp += b"\x00\x00\x00\x00"
  89. outp.append(block[32 : 32 + datalen])
  90. curraddr = newaddr + datalen
  91. return b"".join(outp)
  92. def convert_to_carray(file_content):
  93. outp = "const unsigned long bindata_len = %d;\n" % len(file_content)
  94. outp += "const unsigned char bindata[] __attribute__((aligned(16))) = {"
  95. for i in range(len(file_content)):
  96. if i % 16 == 0:
  97. outp += "\n"
  98. outp += "0x%02x, " % file_content[i]
  99. outp += "\n};\n"
  100. return bytes(outp, "utf-8")
  101. def convert_to_uf2(file_content):
  102. global familyid
  103. datapadding = b""
  104. while len(datapadding) < 512 - 256 - 32 - 4:
  105. datapadding += b"\x00\x00\x00\x00"
  106. numblocks = (len(file_content) + 255) // 256
  107. outp = []
  108. for blockno in range(numblocks):
  109. ptr = 256 * blockno
  110. chunk = file_content[ptr:ptr + 256]
  111. flags = 0x0
  112. if familyid:
  113. flags |= 0x2000
  114. hd = struct.pack(b"<IIIIIIII",
  115. UF2_MAGIC_START0, UF2_MAGIC_START1,
  116. flags, ptr + appstartaddr, 256, blockno, numblocks, familyid)
  117. while len(chunk) < 256:
  118. chunk += b"\x00"
  119. block = hd + chunk + datapadding + struct.pack(b"<I", UF2_MAGIC_END)
  120. assert len(block) == 512
  121. outp.append(block)
  122. return b"".join(outp)
  123. class Block:
  124. def __init__(self, addr):
  125. self.addr = addr
  126. self.bytes = bytearray(256)
  127. def encode(self, blockno, numblocks):
  128. global familyid
  129. flags = 0x0
  130. if familyid:
  131. flags |= 0x2000
  132. hd = struct.pack("<IIIIIIII",
  133. UF2_MAGIC_START0, UF2_MAGIC_START1,
  134. flags, self.addr, 256, blockno, numblocks, familyid)
  135. hd += self.bytes[0:256]
  136. while len(hd) < 512 - 4:
  137. hd += b"\x00"
  138. hd += struct.pack("<I", UF2_MAGIC_END)
  139. return hd
  140. def convert_from_hex_to_uf2(buf):
  141. global appstartaddr
  142. appstartaddr = None
  143. upper = 0
  144. currblock = None
  145. blocks = []
  146. for line in buf.split('\n'):
  147. if line[0] != ":":
  148. continue
  149. i = 1
  150. rec = []
  151. while i < len(line) - 1:
  152. rec.append(int(line[i:i+2], 16))
  153. i += 2
  154. tp = rec[3]
  155. if tp == 4:
  156. upper = ((rec[4] << 8) | rec[5]) << 16
  157. elif tp == 2:
  158. upper = ((rec[4] << 8) | rec[5]) << 4
  159. assert (upper & 0xffff) == 0
  160. elif tp == 1:
  161. break
  162. elif tp == 0:
  163. addr = upper | (rec[1] << 8) | rec[2]
  164. if appstartaddr == None:
  165. appstartaddr = addr
  166. i = 4
  167. while i < len(rec) - 1:
  168. if not currblock or currblock.addr & ~0xff != addr & ~0xff:
  169. currblock = Block(addr & ~0xff)
  170. blocks.append(currblock)
  171. currblock.bytes[addr & 0xff] = rec[i]
  172. addr += 1
  173. i += 1
  174. numblocks = len(blocks)
  175. resfile = b""
  176. for i in range(0, numblocks):
  177. resfile += blocks[i].encode(i, numblocks)
  178. return resfile
  179. def to_str(b):
  180. return b.decode("utf-8")
  181. def get_drives():
  182. drives = []
  183. if sys.platform == "win32":
  184. r = subprocess.check_output(["wmic", "PATH", "Win32_LogicalDisk",
  185. "get", "DeviceID,", "VolumeName,",
  186. "FileSystem,", "DriveType"])
  187. for line in to_str(r).split('\n'):
  188. words = re.split('\s+', line)
  189. if len(words) >= 3 and words[1] == "2" and words[2] == "FAT":
  190. drives.append(words[0])
  191. else:
  192. rootpath = "/media"
  193. if sys.platform == "darwin":
  194. rootpath = "/Volumes"
  195. elif sys.platform == "linux":
  196. tmp = rootpath + "/" + os.environ["USER"]
  197. if os.path.isdir(tmp):
  198. rootpath = tmp
  199. for d in os.listdir(rootpath):
  200. drives.append(os.path.join(rootpath, d))
  201. def has_info(d):
  202. try:
  203. return os.path.isfile(d + INFO_FILE)
  204. except:
  205. return False
  206. return list(filter(has_info, drives))
  207. def board_id(path):
  208. with open(path + INFO_FILE, mode='r') as file:
  209. file_content = file.read()
  210. return re.search("Board-ID: ([^\r\n]*)", file_content).group(1)
  211. def list_drives():
  212. for d in get_drives():
  213. print(d, board_id(d))
  214. def write_file(name, buf):
  215. with open(name, "wb") as f:
  216. f.write(buf)
  217. print("Wrote %d bytes to %s" % (len(buf), name))
  218. def main():
  219. global appstartaddr, familyid
  220. def error(msg):
  221. print(msg)
  222. sys.exit(1)
  223. parser = argparse.ArgumentParser(description='Convert to UF2 or flash directly.')
  224. parser.add_argument('input', metavar='INPUT', type=str, nargs='?',
  225. help='input file (HEX, BIN or UF2)')
  226. parser.add_argument('-b' , '--base', dest='base', type=str,
  227. default="0x2000",
  228. help='set base address of application for BIN format (default: 0x2000)')
  229. parser.add_argument('-o' , '--output', metavar="FILE", dest='output', type=str,
  230. help='write output to named file; defaults to "flash.uf2" or "flash.bin" where sensible')
  231. parser.add_argument('-d' , '--device', dest="device_path",
  232. help='select a device path to flash')
  233. parser.add_argument('-l' , '--list', action='store_true',
  234. help='list connected devices')
  235. parser.add_argument('-c' , '--convert', action='store_true',
  236. help='do not flash, just convert')
  237. parser.add_argument('-D' , '--deploy', action='store_true',
  238. help='just flash, do not convert')
  239. parser.add_argument('-f' , '--family', dest='family', type=str,
  240. default="0x0",
  241. help='specify familyID - number or name (default: 0x0)')
  242. parser.add_argument('-C' , '--carray', action='store_true',
  243. help='convert binary file to a C array, not UF2')
  244. args = parser.parse_args()
  245. appstartaddr = int(args.base, 0)
  246. if args.family.upper() in families:
  247. familyid = families[args.family.upper()]
  248. else:
  249. try:
  250. familyid = int(args.family, 0)
  251. except ValueError:
  252. error("Family ID needs to be a number or one of: " + ", ".join(families.keys()))
  253. if args.list:
  254. list_drives()
  255. else:
  256. if not args.input:
  257. error("Need input file")
  258. with open(args.input, mode='rb') as f:
  259. inpbuf = f.read()
  260. from_uf2 = is_uf2(inpbuf)
  261. ext = "uf2"
  262. if args.deploy:
  263. outbuf = inpbuf
  264. elif from_uf2:
  265. outbuf = convert_from_uf2(inpbuf)
  266. ext = "bin"
  267. elif is_hex(inpbuf):
  268. outbuf = convert_from_hex_to_uf2(inpbuf.decode("utf-8"))
  269. elif args.carray:
  270. outbuf = convert_to_carray(inpbuf)
  271. ext = "h"
  272. else:
  273. outbuf = convert_to_uf2(inpbuf)
  274. print("Converting to %s, output size: %d, start address: 0x%x" %
  275. (ext, len(outbuf), appstartaddr))
  276. if args.convert or ext != "uf2":
  277. drives = []
  278. if args.output == None:
  279. args.output = "flash." + ext
  280. else:
  281. drives = get_drives()
  282. if args.output:
  283. write_file(args.output, outbuf)
  284. else:
  285. if len(drives) == 0:
  286. error("No drive to deploy.")
  287. for d in drives:
  288. print("Flashing %s (%s)" % (d, board_id(d)))
  289. write_file(d + "/NEW.UF2", outbuf)
  290. if __name__ == "__main__":
  291. main()