gdb_server: run control fixes for vCont
[openocd.git] / src / target / startup.tcl
blobcf844e1f64c3734a0f5b76978688c52048e52b1b
1 # Defines basic Tcl procs for OpenOCD target module
3 proc new_target_name { } {
4 return [target number [expr [target count] - 1 ]]
7 global in_process_reset
8 set in_process_reset 0
10 # Catch reset recursion
11 proc ocd_process_reset { MODE } {
12 global in_process_reset
13 if {$in_process_reset} {
14 set in_process_reset 0
15 return -code error "'reset' can not be invoked recursively"
18 set in_process_reset 1
19 set success [expr [catch {ocd_process_reset_inner $MODE} result]==0]
20 set in_process_reset 0
22 if {$success} {
23 return $result
24 } else {
25 return -code error $result
29 proc ocd_process_reset_inner { MODE } {
30 set targets [target names]
32 # If this target must be halted...
33 set halt -1
34 if { 0 == [string compare $MODE halt] } {
35 set halt 1
37 if { 0 == [string compare $MODE init] } {
38 set halt 1;
40 if { 0 == [string compare $MODE run ] } {
41 set halt 0;
43 if { $halt < 0 } {
44 return -code error "Invalid mode: $MODE, must be one of: halt, init, or run";
47 # Target event handlers *might* change which TAPs are enabled
48 # or disabled, so we fire all of them. But don't issue any
49 # target "arp_*" commands, which may issue JTAG transactions,
50 # unless we know the underlying TAP is active.
52 # NOTE: ARP == "Advanced Reset Process" ... "advanced" is
53 # relative to a previous restrictive scheme
55 foreach t $targets {
56 # New event script.
57 $t invoke-event reset-start
60 # Use TRST or TMS/TCK operations to reset all the tap controllers.
61 # TAP reset events get reported; they might enable some taps.
62 init_reset $MODE
64 # Examine all targets on enabled taps.
65 foreach t $targets {
66 if {![using_jtag] || [jtag tapisenabled [$t cget -chain-position]]} {
67 $t invoke-event examine-start
68 set err [catch "$t arp_examine allow-defer"]
69 if { $err == 0 } {
70 $t invoke-event examine-end
75 # Assert SRST, and report the pre/post events.
76 # Note: no target sees SRST before "pre" or after "post".
77 foreach t $targets {
78 $t invoke-event reset-assert-pre
80 foreach t $targets {
81 # C code needs to know if we expect to 'halt'
82 if {![using_jtag] || [jtag tapisenabled [$t cget -chain-position]]} {
83 $t arp_reset assert $halt
86 foreach t $targets {
87 $t invoke-event reset-assert-post
90 # Now de-assert SRST, and report the pre/post events.
91 # Note: no target sees !SRST before "pre" or after "post".
92 foreach t $targets {
93 $t invoke-event reset-deassert-pre
95 foreach t $targets {
96 # Again, de-assert code needs to know if we 'halt'
97 if {![using_jtag] || [jtag tapisenabled [$t cget -chain-position]]} {
98 $t arp_reset deassert $halt
101 foreach t $targets {
102 $t invoke-event reset-deassert-post
105 # Pass 1 - Now wait for any halt (requested as part of reset
106 # assert/deassert) to happen. Ideally it takes effect without
107 # first executing any instructions.
108 if { $halt } {
109 foreach t $targets {
110 if {[using_jtag] && ![jtag tapisenabled [$t cget -chain-position]]} {
111 continue
114 # don't wait for targets where examination is deferred
115 # they can not be halted anyway at this point
116 if { ![$t was_examined] && [$t examine_deferred] } {
117 continue
120 # Wait upto 1 second for target to halt. Why 1sec? Cause
121 # the JTAG tap reset signal might be hooked to a slow
122 # resistor/capacitor circuit - and it might take a while
123 # to charge
125 # Catch, but ignore any errors.
126 catch { $t arp_waitstate halted 1000 }
128 # Did we succeed?
129 set s [$t curstate]
131 if { 0 != [string compare $s "halted" ] } {
132 return -code error [format "TARGET: %s - Not halted" $t]
137 #Pass 2 - if needed "init"
138 if { 0 == [string compare init $MODE] } {
139 foreach t $targets {
140 if {[using_jtag] && ![jtag tapisenabled [$t cget -chain-position]]} {
141 continue
144 # don't wait for targets where examination is deferred
145 # they can not be halted anyway at this point
146 if { ![$t was_examined] && [$t examine_deferred] } {
147 continue
150 set err [catch "$t arp_waitstate halted 5000"]
151 # Did it halt?
152 if { $err == 0 } {
153 $t invoke-event reset-init
158 foreach t $targets {
159 $t invoke-event reset-end
163 proc using_jtag {} {
164 set _TRANSPORT [ transport select ]
165 expr { [ string first "jtag" $_TRANSPORT ] != -1 }
168 proc using_swd {} {
169 set _TRANSPORT [ transport select ]
170 expr { [ string first "swd" $_TRANSPORT ] != -1 }
173 proc using_hla {} {
174 set _TRANSPORT [ transport select ]
175 expr { [ string first "hla" $_TRANSPORT ] != -1 }
178 #########
180 # Temporary migration aid. May be removed starting in January 2011.
181 proc armv4_5 params {
182 echo "DEPRECATED! use 'arm $params' not 'armv4_5 $params'"
183 arm $params
186 # Target/chain configuration scripts can either execute commands directly
187 # or define a procedure which is executed once all configuration
188 # scripts have completed.
190 # By default(classic) the config scripts will set up the target configuration
191 proc init_targets {} {
194 proc set_default_target_event {t e s} {
195 if {[$t cget -event $e] == ""} {
196 $t configure -event $e $s
200 proc init_target_events {} {
201 set targets [target names]
203 foreach t $targets {
204 set_default_target_event $t gdb-flash-erase-start "reset init"
205 set_default_target_event $t gdb-flash-write-end "reset halt"
206 set_default_target_event $t gdb-attach "halt"
210 # Additionally board config scripts can define a procedure init_board that will be executed after init and init_targets
211 proc init_board {} {
214 # deprecated target name cmds
215 proc cortex_m3 args {
216 echo "DEPRECATED! use 'cortex_m' not 'cortex_m3'"
217 eval cortex_m $args
220 proc cortex_a8 args {
221 echo "DEPRECATED! use 'cortex_a' not 'cortex_a8'"
222 eval cortex_a $args