aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tcl/target/xmc1xxx.cfg27
1 files changed, 27 insertions, 0 deletions
diff --git a/tcl/target/xmc1xxx.cfg b/tcl/target/xmc1xxx.cfg
new file mode 100644
index 00000000..0a0e47ee
--- /dev/null
+++ b/tcl/target/xmc1xxx.cfg
@@ -0,0 +1,27 @@
+#
+# Infineon XMC1100/XMC1200/XMC1300 family (ARM Cortex-M0 @ 32 MHz)
+#
+
+if { [info exists CHIPNAME] } {
+ set _CHIPNAME $CHIPNAME
+} else {
+ set _CHIPNAME xmc1000
+}
+
+#
+# Only SWD and SPD supported
+#
+source [find target/swj-dp.tcl]
+
+if { [info exists CPUTAPID] } {
+ set _CPU_SWD_TAPID $CPUTAPID
+} else {
+ set _CPU_SWD_TAPID 0x0BB11477
+}
+
+swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPU_SWD_TAPID
+
+set _TARGETNAME $_CHIPNAME.cpu
+target create $_TARGETNAME cortex_m -endian little -chain-position $_TARGETNAME
+
+adapter_khz 1000