2 # Defines basic Tcl procs that must be there for
5 # Embedded into OpenOCD executable
9 # Help text list. A list of command + help text pairs.
11 # Commands can be more than one word and they are stored
12 # as "flash banks" "help text x x x"
14 proc add_help_text
{cmd cmd_help
} {
16 lappend ocd_helptext
[list $cmd $cmd_help]
19 proc get_help_text
{} {
25 # Show flash in human readable form
26 # This is an example of a human readable form of a low level fn
30 foreach {a
} [ocd_flash_banks
] {
32 set result
"$result\n"
34 set result
[format "$result#%d: %s at 0x%08x, size 0x%08x, buswidth %d, chipwidth %d" $i $a(name
) $a(base
) $a(size
) $a(bus_width
) $a(chip_width
)]
40 # We need to explicitly redirect this to the OpenOCD command
41 # as Tcl defines the exit proc
46 #Print help text for a command. Word wrap
47 #help text that is too wide inside column.
51 foreach a
[lsort $ocd_helptext] {
52 if {[string length
$cmd]==0||
[string first
$cmd $a]!=-1||
[string first
$cmd [lindex $a 1]]!=-1} {
54 set cmdname
[lindex $a 0]
58 if {$n > [string length
$h]} {break}
60 set next_a
[expr $n+$w]
61 if {[string length
$h]>$n+$w} {
62 set xxxx
[string range
$h $n [expr $n+$w]]
63 for {set lastpos
[expr [string length
$xxxx]-1]} {$lastpos>=0&&[string compare
[string range
$xxxx $lastpos $lastpos] " "]!=0} {set lastpos
[expr $lastpos-1]} {
67 set next_a
[expr $lastpos+$n+1]
72 puts [format "%-25s %s" $cmdname [string range
$h $n [expr $next_a-1]] ]
80 add_help_text help
"Tcl implementation of help command"
83 # If a fn is unknown to Tcl, we try to execute it as an OpenOCD command
85 # We also support two level commands. "flash banks" is translated to
88 # do the name mangling from "flash banks" to "flash_banks"
89 if {[llength $args]>=2} {
90 set cmd_name
"[lindex $args 0]_[lindex $args 1]"
91 if {[catch {info body
$cmd_name}]==0} {
92 # the command exists, try it...
93 return [eval "$cmd_name [lrange $args 2 end]"]
96 # This really is an unknown command.
97 return -code error "Unknown command: $args"
100 proc new_target_name
{ } {
101 return [target number
[expr [target count
] - 1 ]]
104 # Try flipping / and \ to find file if the filename does not
105 # match the precise spelling
106 proc find
{filename} {
107 if {[catch {ocd_find
$filename} t
]==0} {
110 if {[catch {ocd_find
[string map
{\ /} $filename} t
]==0} {
113 if {[catch {ocd_find
[string map
{/ \\} $filename} t
]==0} {
116 # make sure error message matches original input string
117 return -code error "Can't find $filename"
119 add_help_text find
"<file> - print full path to file according to OpenOCD search rules"
122 proc script
{filename} {
123 source [find
$filename]
126 add_help_text script
"<filename> - filename of OpenOCD script (tcl) to run"
128 # Handle GDB 'R' packet. Can be overriden by configuration script,
129 # but it's not something one would expect target scripts to do
131 proc ocd_gdb_restart
{target_id
} {
132 # Fix!!! we're resetting all targets here! Really we should reset only
137 global in_process_reset
138 set in_process_reset
0
140 # Catch reset recursion
141 proc ocd_process_reset
{ MODE
} {
142 global in_process_reset
143 if {$in_process_reset} {
144 set in_process_reset
0
145 return -code error "'reset' can not be invoked recursively"
148 set in_process_reset
1
149 set success [expr [catch {ocd_process_reset_inner
$MODE} result
]==0]
150 set in_process_reset
0
155 return -code error $result
159 proc ocd_process_reset_inner
{ MODE
} {
160 set targets
[target names
]
162 # If this target must be halted...
164 if { 0 == [string compare
$MODE halt
] } {
167 if { 0 == [string compare
$MODE init
] } {
170 if { 0 == [string compare
$MODE run
] } {
174 return -error "Invalid mode: $MODE, must be one of: halt, init, or run";
177 # Target event handlers *might* change which TAPs are enabled
178 # or disabled, so we fire all of them. But don't issue any
179 # target "arp_*" commands, which may issue JTAG transactions,
180 # unless we know the underlying TAP is active.
182 # NOTE: ARP == "Advanced Reset Process" ... "advanced" is
183 # relative to a previous restrictive scheme
187 $t invoke-event reset-start
190 # Use TRST or TMS/TCK operations to reset all the tap controllers.
191 # TAP reset events get reported; they might enable some taps.
193 # REVISIT arp_init-reset pulses SRST (if it can) with TRST active;
194 # but SRST events aren't reported (unlike "jtag arp_reset", below)
197 # Examine all targets on enabled taps.
199 if {[jtag tapisenabled
[$t cget
-chain-position
]]} {
204 # Assert SRST, and report the pre/post events.
205 # Note: no target sees SRST before "pre" or after "post".
207 $t invoke-event reset-assert-pre
210 # C code needs to know if we expect to 'halt'
211 if {[jtag tapisenabled
[$t cget
-chain-position
]]} {
212 $t arp_reset assert
$halt
216 $t invoke-event reset-assert-post
219 # Now de-assert SRST, and report the pre/post events.
220 # Note: no target sees !SRST before "pre" or after "post".
222 $t invoke-event reset-deassert-pre
225 # Again, de-assert code needs to know if we 'halt'
226 if {[jtag tapisenabled
[$t cget
-chain-position
]]} {
227 $t arp_reset deassert
$halt
231 $t invoke-event reset-deassert-post
234 # Pass 1 - Now wait for any halt (requested as part of reset
235 # assert/deassert) to happen. Ideally it takes effect without
236 # first executing any instructions.
239 if {[jtag tapisenabled
[$t cget
-chain-position
]] == 0} {
243 # Wait upto 1 second for target to halt. Why 1sec? Cause
244 # the JTAG tap reset signal might be hooked to a slow
245 # resistor/capacitor circuit - and it might take a while
248 # Catch, but ignore any errors.
249 catch { $t arp_waitstate halted
1000 }
254 if { 0 != [string compare
$s "halted" ] } {
255 return -error [format "TARGET: %s - Not halted" $t]
260 #Pass 2 - if needed "init"
261 if { 0 == [string compare init
$MODE] } {
263 if {[jtag tapisenabled
[$t cget
-chain-position
]] == 0} {
267 set err
[catch "$t arp_waitstate halted 5000"]
270 $t invoke-event reset-init
276 $t invoke-event reset-end
280 # stubs for targets scripts that do not have production procedure
281 proc production_info
{} {
282 return "Imagine an explanation here..."
284 add_help_text production_info
"Displays information on production procedure for target script. Implement this procedure in target script."
286 proc production
{firmwarefile serialnumber
} {
287 puts "Imagine production procedure running successfully. Programmed $firmwarefile with serial number $serialnumber"
290 add_help_text production
"<serialnumber> - Runs production procedure. Throws exception if procedure failed. Prints progress messages. Implement this procedure in the target script."
292 proc production_test
{} {
293 puts "Imagine nifty test procedure having run to completion here."
295 add_help_text production_test
"Runs test procedure. Throws exception if procedure failed. Prints progress messages. Implement in target script."
297 add_help_text cpu
"<name> - prints out target options and a comment on CPU which matches name"
299 # A list of names of CPU and options required
303 options {xscale
-variant IXP42x
}
308 options {arm7tdmi
-variant arm7tdmi
}
309 comment
{vanilla ARM7
}
313 # Invoked from Tcl code
314 proc ocd_cpu
{args
} {
318 foreach a
[lsort $ocd_cpu_list] {
319 if {[string length
$args]==0||
[string first
[string toupper
$name] [string toupper
"$a(name)$a(options)$a(comment)"]]!=-1} {
327 # 0123456789012345678901234567890123456789012345678901234567890123456789
328 puts "CPU Options Comment"
329 foreach a
[lsort [ocd_cpu
$args]] {
330 puts [format "%-20s%-40s%s" $a(name
) $a(options) $a(comment
)]
334 proc power_restore
{} {
335 puts "Sensed power restore."
339 add_help_text power_restore
"Overridable procedure run when power restore is detected. Runs 'reset init' by default."
341 proc power_dropout
{} {
342 puts "Sensed power dropout."
345 proc srst_deasserted
{} {
346 puts "Sensed nSRST deasserted."
349 add_help_text srst_deasserted
"Overridable procedure run when srst deassert is detected. Runs 'reset init' by default."
351 proc srst_asserted
{} {
352 puts "Sensed nSRST asserted."
355 # catch any exceptions, capture output and return output
356 proc capture_catch
{a
} {
364 # Executed during "init". Can be implemented by target script
367 if {[catch {jtag arp_init
} err
]!=0} {
368 # try resetting additionally