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