Skip to content

Commit f78e3c6

Browse files
committed
scripts: Update uploader to read git hash from bootloader
1 parent 6df8acd commit f78e3c6

File tree

1 file changed

+49
-7
lines changed

1 file changed

+49
-7
lines changed

Tools/scripts/uploader.py

+49-7
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,16 @@ class uploader(object):
237237

238238
CHIP_FULL_ERASE = b'\x40' # full erase of flash
239239

240-
INFO_BL_REV = b'\x01' # bootloader protocol revision
241-
BL_REV_MIN = 2 # minimum supported bootloader protocol
242-
BL_REV_MAX = 5 # maximum supported bootloader protocol
243-
INFO_BOARD_ID = b'\x02' # board type
244-
INFO_BOARD_REV = b'\x03' # board revision
245-
INFO_FLASH_SIZE = b'\x04' # max firmware size in bytes
246-
INFO_EXTF_SIZE = b'\x06' # available external flash size
240+
INFO_BL_REV = b'\x01' # bootloader protocol revision
241+
BL_REV_MIN = 2 # minimum supported bootloader protocol
242+
BL_REV_MAX = 5 # maximum supported bootloader protocol
243+
INFO_BOARD_ID = b'\x02' # board type
244+
INFO_BOARD_REV = b'\x03' # board revision
245+
INFO_FLASH_SIZE = b'\x04' # max firmware size in bytes
246+
INFO_EXTF_SIZE = b'\x06' # available external flash size
247+
INFO_SW_BL_BUILD = b'\x07' # information about bootloader software build version
248+
INFO_SW_BL_OPTS = b'\x08' # information about bootloader build options
249+
INFO_SW_APP_BUILD = b'\x09' # information about application software build version
247250

248251
PROG_MULTI_MAX = 252 # protocol max is 255, must be multiple of 4
249252
READ_MULTI_MAX = 252 # protocol max is 255
@@ -737,6 +740,21 @@ def identify(self):
737740
self.board_rev = self.__getInfo(uploader.INFO_BOARD_REV)
738741
self.fw_maxsize = self.__getInfo(uploader.INFO_FLASH_SIZE)
739742

743+
try:
744+
self.bootloader_options = self.__getInfo(uploader.INFO_SW_BL_OPTS)
745+
except Exception:
746+
self.__sync()
747+
748+
try:
749+
self.git_hash_bl = self.__getInfo(uploader.INFO_SW_BL_BUILD)
750+
except Exception:
751+
self.__sync()
752+
753+
try:
754+
self.git_hash_app = self.__getInfo(uploader.INFO_SW_APP_BUILD)
755+
except Exception:
756+
self.__sync()
757+
740758
def dump_board_info(self):
741759
# OTP added in v4:
742760
print("Bootloader Protocol: %u" % self.bl_rev)
@@ -839,6 +857,30 @@ def dump_board_info(self):
839857
print(" board_type: %u" % self.board_type)
840858
print(" board_rev: %u" % self.board_rev)
841859

860+
if hasattr(self, "git_hash_bl") and self.git_hash_bl is not None:
861+
git_hash_bl = "%x" % (self.git_hash_bl)
862+
print(" git hash (Bootloader): %s" % git_hash_bl)
863+
864+
if hasattr(self, "bootloader_options") and self.bootloader_options is not None:
865+
def decode_bootloader_options(bootloader_options):
866+
'''decode the bootloader options bits'''
867+
print(f" bootloader options: {bootloader_options:032b}")
868+
option_bits = {
869+
0: "UnsignedFirmware", # CheckFirmware Enabled, Unsigned Firmware
870+
1: "SignedFirmware", # CheckFirmware Enabled, Signed Firmware
871+
2: "FlashFromSDCard", # Flash From SD Card Supported
872+
3: "OptionCheckFWOk", # CheckFirmware Enabled, firmware check is good
873+
}
874+
for i in range(32):
875+
if (bootloader_options & (1 << i)) == (1 << i):
876+
print(f" - {option_bits.get(i, 'Unknown Option')}")
877+
878+
decode_bootloader_options(self.bootloader_options)
879+
880+
if hasattr(self, "git_hash_app") and self.git_hash_app is not None:
881+
git_hash_app = "%x" % (self.git_hash_app)
882+
print(" git hash (Application): %s" % git_hash_app)
883+
842884
print("Identification complete")
843885

844886
def board_name_for_board_id(self, board_id):

0 commit comments

Comments
 (0)