aboutsummaryrefslogtreecommitdiff
path: root/tcl
diff options
context:
space:
mode:
authorChristopher Kilgour <techie@whiterocker.com>2012-05-23 11:05:28 -0700
committerSpencer Oliver <spen@spen-soft.co.uk>2012-06-26 11:53:37 +0000
commitaeb3c4f37e9c83e45ea1b9ef9f23bbdbb451fca2 (patch)
tree95e76e6f85c6d04c37b6725168ffd547eb056b8c /tcl
parent4b6af9797846b07c6aee3eb45898c2044bdf167e (diff)
downloadriscv-openocd-aeb3c4f37e9c83e45ea1b9ef9f23bbdbb451fca2.zip
riscv-openocd-aeb3c4f37e9c83e45ea1b9ef9f23bbdbb451fca2.tar.gz
riscv-openocd-aeb3c4f37e9c83e45ea1b9ef9f23bbdbb451fca2.tar.bz2
kinetis: update support for all program flash granularities
Updates the Kinetis NOR flash support to handle all known block and sector sizes. Previously only 2kiB sectors were hard-coded, now all four known combinations non-volatile sector sizes are supported. The premise of separating Kinetis Program Flash (PFLASH) from FlexNVM is also introduced. This means each "block" of flash (in Freescale terms) is treated as a bank in OpenOCD. Correspondingly, the existing board configuration for the TWR-K60M512 eval system is updated to recognize two banks instead of one. A board config for the TWR-K60F120M is also added. Bank and sector erase and programming has been checked with both of the mentioned eval boards. Change-Id: Iae2d10ebf8f548d0a3698df5430bbbe1ccadc58a Signed-off-by: Christopher Kilgour <techie@whiterocker.com> Reviewed-on: http://openocd.zylin.com/663 Tested-by: jenkins Reviewed-by: Mathias Küster <kesmtp@freenet.de> Reviewed-by: Jan Dakinevich <jan.dakinevich@gmail.com> Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'tcl')
-rw-r--r--tcl/board/twr-k60f120m.cfg17
-rw-r--r--tcl/board/twr-k60n512.cfg3
2 files changed, 19 insertions, 1 deletions
diff --git a/tcl/board/twr-k60f120m.cfg b/tcl/board/twr-k60f120m.cfg
new file mode 100644
index 0000000..119eb74
--- /dev/null
+++ b/tcl/board/twr-k60f120m.cfg
@@ -0,0 +1,17 @@
+#
+# Freescale TWRK60F120M development board
+#
+
+source [find target/k60.cfg]
+
+$_TARGETNAME configure -event reset-init {
+ puts "-event reset-init occured"
+}
+
+#
+# Bank definition for the 'program flash' (instructions and/or data)
+#
+flash bank pflash.0 kinetis 0x00000000 0x40000 0 4 $_TARGETNAME
+flash bank pflash.1 kinetis 0x00040000 0x40000 0 4 $_TARGETNAME
+flash bank pflash.2 kinetis 0x00080000 0x40000 0 4 $_TARGETNAME
+flash bank pflash.3 kinetis 0x000c0000 0x40000 0 4 $_TARGETNAME
diff --git a/tcl/board/twr-k60n512.cfg b/tcl/board/twr-k60n512.cfg
index 4fe35bb..3b3b02f 100644
--- a/tcl/board/twr-k60n512.cfg
+++ b/tcl/board/twr-k60n512.cfg
@@ -11,4 +11,5 @@ $_TARGETNAME configure -event reset-init {
#
# Bank definition for the 'program flash' (instructions and/or data)
#
-flash bank pflash.pflash kinetis 0x00000000 0x80000 0 4 $_TARGETNAME
+flash bank pflash.0 kinetis 0x00000000 0x40000 0 4 $_TARGETNAME
+flash bank pflash.1 kinetis 0x00040000 0x40000 0 4 $_TARGETNAME