diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2012-07-24 18:33:39 -0400 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2012-07-24 18:35:21 -0400 |
commit | 81014c9dc82e9bf8f9507c00d71bb9609b9c79a6 (patch) | |
tree | 326ffa3894585b9cb54ed67a99d958b3fd5ca149 | |
parent | 48ad581c4e56e93391f05109a0a8080584b0feeb (diff) | |
download | librambutan-81014c9dc82e9bf8f9507c00d71bb9609b9c79a6.tar.gz librambutan-81014c9dc82e9bf8f9507c00d71bb9609b9c79a6.zip |
stm32loader.py: Updates for F2 and F4.
Support the extended erase memory command, which replaced the erase
memory command in the bootloader protocol as of version 3.0. This
takes a long time, so tweak _wait_for_ask to take an extra timeout for
special cases like this.
Use this under if __name__ == '__main__' to support F2 and
F4. Additionally, produce a human-readable report of the target chip
from its chip ID.
Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
-rwxr-xr-x | support/stm32loader.py | 58 |
1 files changed, 51 insertions, 7 deletions
diff --git a/support/stm32loader.py b/support/stm32loader.py index a17b835..2b96031 100755 --- a/support/stm32loader.py +++ b/support/stm32loader.py @@ -46,6 +46,17 @@ def mdebug(level, message): if(QUIET >= level): print(message, file=sys.stderr) +# Takes chip IDs (obtained via Get ID command) to human-readable names +CHIP_ID_STRS = {0x410: 'STM32F1, performance, medium-density', + 0x411: 'STM32F2', + 0x412: 'STM32F1, performance, low-density', + 0x413: 'STM32F4', + 0x414: 'STM32F1, performance, high-density', + 0x416: 'STM32L1, performance, medium-density', + 0x418: 'STM32F1, connectivity', + 0x420: 'STM32F1, value, medium-density', + 0x428: 'STM32F1, value, high-density', + 0x430: 'STM32F1, performance, XL-density'} class CmdException(Exception): pass @@ -64,8 +75,13 @@ class CommandInterface(object): ) - def _wait_for_ask(self, info = ""): - got = self.sp.read(1) + def _wait_for_ask(self, info="", timeout=0): + stop = time.time() + timeout + got = None + while not got: + got = self.sp.read(1) + if time.time() > stop: + break if not got: raise CmdException("No response to %s" % info) @@ -228,6 +244,24 @@ class CommandInterface(object): else: raise CmdException("Erase memory (0x43) failed") + + # TODO support for non-global mass erase + GLOBAL_ERASE_TIMEOUT_SECONDS = 20 # This takes a while + def cmdExtendedEraseMemory(self): + if self.cmdGeneric(0x44): + mdebug(10, "*** Extended erase memory command") + # Global mass erase + self.sp.write(chr(0xFF)) + self.sp.write(chr(0xFF)) + # Checksum + self.sp.write(chr(0x00)) + self._wait_for_ask("0x44 extended erase failed", + timeout=self.GLOBAL_ERASE_TIMEOUT_SECONDS) + mdebug(10, " Extended erase memory done") + else: + raise CmdException("Extended erase memory (0x44) failed") + + def cmdWriteProtect(self, sectors): if self.cmdGeneric(0x63): mdebug(10, "*** Write protect command") @@ -457,14 +491,24 @@ if __name__ == "__main__": if bootversion < 20 or bootversion >= 100: raise Exception('Unreasonable bootloader version %d' % bootversion) - id = [ord(x) for x in cmd.cmdGetID()] - mdebug(0, "Chip id '%s'" % ' '.join('0x%x' % x for x in id)) + chip_id = cmd.cmdGetID() + assert len(chip_id) == 2, "Unreasonable chip id: %s" % repr(chip_id) + chip_id_num = (ord(chip_id[0]) << 8) | ord(chip_id[1]) + chip_id_str = CHIP_ID_STRS.get(chip_id_num, None) - if len(id) < 2 or id[0] != 0x04: - raise Exception('Unrecognised chip ID') + if chip_id_str is None: + mdebug(0, 'Warning: unrecognised chip ID 0x%x' % chip_id_num) + else: + mdebug(0, "Chip id 0x%x, %s" % (chip_id_num, chip_id_str)) if conf['erase']: - cmd.cmdEraseMemory() + # Pre-3.0 bootloaders use the erase memory + # command. Starting with 3.0, extended erase memory + # replaced this command. + if bootversion < 0x30: + cmd.cmdEraseMemory() + else: + cmd.cmdExtendedEraseMemory() if conf['write']: cmd.writeMemory(conf['address'], data) |