em357: added target files for em357 and em358
[fw/openocd] / tcl / target / em357.cfg
1 #
2 # Target configuration for the Silicon Labs EM357 chips
3 #
4
5 #
6 # em357 family supports JTAG and SWD transports
7 #
8 source [find target/swj-dp.tcl]
9
10 if { [info exists CHIPNAME] } {
11    set _CHIPNAME $CHIPNAME
12 } else {
13    set _CHIPNAME em357
14 }
15
16 # Work-area is a space in RAM used for flash programming
17 # By default use 4kB
18 if { [info exists WORKAREASIZE] } {
19    set _WORKAREASIZE $WORKAREASIZE
20 } else {
21    set _WORKAREASIZE 0x1000
22 }
23
24 if { [info exists CPUTAPID] } {
25    set _CPUTAPID $CPUTAPID
26 } else {
27    if { [using_jtag] } {
28       set _CPUTAPID 0x3ba00477
29    } else {
30       set _CPUTAPID 0x1ba00477
31    }
32 }
33
34 if { [info exists BSTAPID] } {
35    set _BSTAPID $BSTAPID
36 } else {
37   set _BSTAPID 0x069aa62b
38 }
39
40 if { [info exists CHIPNAME] } {
41    set _CHIPNAME $CHIPNAME
42 } else {
43    set _CHIPNAME em358
44 }
45
46 if { [info exists FLASHSIZE] } {
47     set _FLASHSIZE $FLASHSIZE
48 } else {
49     set _FLASHSIZE 0x30000
50 }
51
52 swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID
53 if { [using_jtag] } {
54     swj_newdap $_CHIPNAME bs -irlen 4 -expected-id $_BSTAPID -ircapture 0xe -irmask 0xf
55 }
56
57 set _TARGETNAME $_CHIPNAME.cpu
58 target create $_TARGETNAME cortex_m -endian little -chain-position $_TARGETNAME
59
60 $_TARGETNAME configure -work-area-phys 0x20000000 -work-area-size $_WORKAREASIZE -work-area-backup 0
61
62 set _FLASHNAME $_CHIPNAME.flash
63 flash bank $_FLASHNAME em357 0x08000000 $_FLASHSIZE 0 0 $_TARGETNAME
64
65 if { ![using_hla]} {
66     cortex_m reset_config sysresetreq
67 }