From 2cbbe9abf5dab934bf7abd6f4e0a3f8f9dec81f0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20F=C3=A4rber?= Date: Tue, 20 Oct 2015 00:22:50 +0200 Subject: [PATCH] tcl/target: Add LPC4357 config MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reuse the flashless LPC4350 as base and amend it as necessary. The LPC43x7 have 2x 512 KB of flash. Change-Id: Ia7ffbc7101023479971984b839f171ed4be6b089 Signed-off-by: Andreas Färber Reviewed-on: http://openocd.zylin.com/3037 Tested-by: jenkins Reviewed-by: Freddie Chopin --- tcl/target/lpc4350.cfg | 9 +++++++++ tcl/target/lpc4357.cfg | 12 ++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 tcl/target/lpc4357.cfg diff --git a/tcl/target/lpc4350.cfg b/tcl/target/lpc4350.cfg index fae54f776..4e23ffb0d 100644 --- a/tcl/target/lpc4350.cfg +++ b/tcl/target/lpc4350.cfg @@ -51,6 +51,15 @@ if { [using_jtag] } { target create $_CHIPNAME.m0 cortex_m -chain-position $_CHIPNAME.m0 } +# LPC4350 has 96+32 KB SRAM +if { [info exists WORKAREASIZE] } { + set _WORKAREASIZE $WORKAREASIZE +} else { + set _WORKAREASIZE 0x20000 +} +$_CHIPNAME.m4 configure -work-area-phys 0x10000000 \ + -work-area-size $_WORKAREASIZE -work-area-backup 0 + if {![using_hla]} { # on this CPU we should use VECTRESET to perform a soft reset and # manually reset the periphery diff --git a/tcl/target/lpc4357.cfg b/tcl/target/lpc4357.cfg new file mode 100644 index 000000000..1a15ad623 --- /dev/null +++ b/tcl/target/lpc4357.cfg @@ -0,0 +1,12 @@ +# +# NXP LPC4357 +# + +if { ![info exists CHIPNAME] } { + set CHIPNAME lpc4357 +} +set WORKAREASIZE 0x8000 +source [find target/lpc4350.cfg] + +flash bank $_CHIPNAME.flasha lpc2000 0x1A000000 0x80000 0 0 $_CHIPNAME.m4 lpc4300 204000 calc_checksum +flash bank $_CHIPNAME.flashb lpc2000 0x1B000000 0x80000 0 0 $_CHIPNAME.m4 lpc4300 204000 calc_checksum -- 2.30.2