diff options
author | Ivan Meleca <ivan@artekit.eu> | 2016-03-05 19:14:52 +0100 |
---|---|---|
committer | Freddie Chopin <freddie.chopin@gmail.com> | 2016-05-04 22:32:23 +0100 |
commit | 5396ec5dcc64354c8101f8d3f16d498ca3b10326 (patch) | |
tree | 3fa9bf1219acb3a8436d33df5aed09a7cfc9d04a /doc/openocd.texi | |
parent | bfb02d5ba1238bb88cdf28863492cf1521ab2bab (diff) | |
download | riscv-openocd-5396ec5dcc64354c8101f8d3f16d498ca3b10326.zip riscv-openocd-5396ec5dcc64354c8101f8d3f16d498ca3b10326.tar.gz riscv-openocd-5396ec5dcc64354c8101f8d3f16d498ca3b10326.tar.bz2 |
flash: Added support for Freescale Kinetis KE family.
Tested with MKE04Z8VTG4, MKE02Z64VLC4 and MKE02Z64VLD2.
Change-Id: I606e32a2746a3b96d3e50f3656ba78d40c41c1ea
Signed-off-by: Ivan Meleca <ivan@artekit.eu>
Reviewed-on: http://openocd.zylin.com/3380
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Diffstat (limited to 'doc/openocd.texi')
-rw-r--r-- | doc/openocd.texi | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/openocd.texi b/doc/openocd.texi index fb987e7..8e7c7f8 100644 --- a/doc/openocd.texi +++ b/doc/openocd.texi @@ -5248,6 +5248,33 @@ Command disables watchdog timer. @end deffn @end deffn +@deffn {Flash Driver} kinetis_ke +@cindex kinetis_ke +KE members of the Kinetis microcontroller family from Freescale include +internal flash and use ARM Cortex M0+. The driver automatically recognizes +the KE family and sub-family using the chip identification register, and +autoconfigures itself. + +@example +flash bank $_FLASHNAME kinetis_ke 0 0 0 0 $_TARGETNAME +@end example + +@deffn Command {kinetis_ke mdm check_security} +Checks status of device security lock. Used internally in examine-end event. +@end deffn + +@deffn Command {kinetis_ke mdm mass_erase} +Issues a complete Flash erase via the MDM-AP. +This can be used to erase a chip back to its factory state. +Command removes security lock from a device (use of SRST highly recommended). +It does not require the processor to be halted. +@end deffn + +@deffn Command {kinetis_ke disable_wdog} +Command disables watchdog timer. +@end deffn +@end deffn + @deffn {Flash Driver} fm4 All members of the FM4 microcontroller family from Spansion (formerly Fujitsu) include internal flash and use ARM Cortex-M4 cores. |