2dae6551571051e6f2724b0474e6e96cb1347496
[fw/openocd] / tcl / target / stm8s.cfg
1 # script for stm8s family
2
3 #
4 # stm8 devices support SWIM transports only.
5 #
6
7 transport select swim
8
9 if { [info exists CHIPNAME] } {
10    set _CHIPNAME $CHIPNAME
11 } else {
12    set _CHIPNAME stm8s
13 }
14
15 # Work-area is a space in RAM used for flash programming
16 # By default use 1kB
17 if { [info exists WORKAREASIZE] } {
18    set _WORKAREASIZE $WORKAREASIZE
19 } else {
20    set _WORKAREASIZE 0x400
21 }
22
23 if { [info exists FLASHSTART] } {
24    set _FLASHSTART $FLASHSTART
25 } else {
26    set _FLASHSTART 0x8000
27 }
28
29 if { [info exists FLASHEND] } {
30    set _FLASHEND $FLASHEND
31 } else {
32    set _FLASHEND 0xffff
33 }
34
35 if { [info exists EEPROMSTART] } {
36    set _EEPROMSTART $EEPROMSTART
37 } else {
38    set _EEPROMSTART 0x4000
39 }
40
41 if { [info exists EEPROMEND] } {
42    set _EEPROMEND $EEPROMEND
43 } else {
44    set _EEPROMEND 0x43ff
45 }
46
47 if { [info exists OPTIONSTART] } {
48    set _OPTIONSTART $OPTIONSTART
49 } else {
50    set _OPTIONSTART 0x4800
51 }
52
53 if { [info exists OPTIONEND] } {
54    set _OPTIONEND $OPTIONEND
55 } else {
56    set _OPTIONEND 0x487f
57 }
58
59 if { [info exists BLOCKSIZE] } {
60    set _BLOCKSIZE $BLOCKSIZE
61 } else {
62    set _BLOCKSIZE 0x80
63 }
64
65 swim newtap $_CHIPNAME cpu
66
67 set _TARGETNAME $_CHIPNAME.cpu
68
69 target create $_TARGETNAME stm8 -chain-position $_CHIPNAME.cpu
70
71 $_TARGETNAME configure -work-area-phys 0x0 -work-area-size $_WORKAREASIZE -work-area-backup 1
72 $_TARGETNAME configure -flashstart $_FLASHSTART -flashend $_FLASHEND -eepromstart $_EEPROMSTART -eepromend $_EEPROMEND
73 $_TARGETNAME configure -optionstart $_OPTIONSTART -optionend $_OPTIONEND -blocksize $_BLOCKSIZE
74
75 # Uncomment this line to enable interrupts while instruction step
76 #$_TARGETNAME configure -enable_step_irq
77
78 # Set high speed
79 adapter speed 800
80 # Set low speed
81 #adapter speed 363
82
83 reset_config srst_only
84
85 # uncomment this line to connect under reset
86 #reset_config srst_nogate connect_assert_srst