]> git.sur5r.net Git - openocd/blob - src/helper/startup.tcl
zy1000 1.49 snapshot
[openocd] / src / helper / startup.tcl
1 #
2 # Defines basic Tcl procs that must be there for
3 # OpenOCD to work.
4 #
5 # Embedded into OpenOCD executable
6 #
7
8
9 # Help text list. A list of command + help text pairs.
10 #
11 # Commands can be more than one word and they are stored
12 # as "flash banks" "help text x x x"
13
14 proc add_help_text {cmd cmd_help} {
15         global ocd_helptext
16         lappend ocd_helptext [list $cmd $cmd_help]
17 }
18
19 proc get_help_text {} {
20         global ocd_helptext
21         return $ocd_helptext
22 }
23
24
25 # Show flash in human readable form
26 # This is an example of a human readable form of a low level fn
27 proc flash_banks {} { 
28         set i 0         
29         set result ""
30         foreach {a} [ocd_flash_banks] {
31                 if {$i > 0} {
32                         set result "$result\n"
33                 }
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)]
35                 set i [expr $i+1]       
36         }       
37         return $result
38 }
39
40 # We need to explicitly redirect this to the OpenOCD command
41 # as Tcl defines the exit proc
42 proc exit {} {
43         ocd_throw exit
44 }
45
46 #Print help text for a command. Word wrap
47 #help text that is too wide inside column.
48 proc help {args} {
49         global ocd_helptext
50         set cmd $args
51         foreach a [lsort $ocd_helptext] {
52                 if {[string length $cmd]==0||[string first $cmd $a]!=-1||[string first $cmd [lindex $a 1]]!=-1} {
53                         set w 50
54                         set cmdname [lindex $a 0]
55                         set h [lindex $a 1]
56                         set n 0
57                         while 1 {
58                                 if {$n > [string length $h]} {break}
59                                 
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]} {
64                                         }
65                                         #set next_a -1
66                                         if {$lastpos!=-1} {
67                                                 set next_a [expr $lastpos+$n+1]
68                                         }
69                                 }
70                                 
71                                 
72                                 puts [format "%-25s %s" $cmdname [string range $h $n [expr $next_a-1]] ]
73                                 set cmdname ""
74                                 set n [expr $next_a]
75                         }
76                 }
77         }
78 }
79
80 add_help_text help "Tcl implementation of help command"
81
82
83 # If a fn is unknown to Tcl, we try to execute it as an OpenOCD command
84 #
85 # We also support two level commands. "flash banks" is translated to
86 # flash_banks
87 proc unknown {args} {
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                 # Fix?? add a check here if this is a command?
92                 # we'll strip away args until we fail anyway...
93                 return [eval "$cmd_name [lrange $args 2 end]"]
94         }
95         # This really is an unknown command.
96         return -code error "Unknown command: $args"
97 }
98
99 proc new_target_name { } {
100         return [target number [expr [target count] - 1 ]]
101 }
102
103 # Try flipping / and \ to find file if the filename does not
104 # match the precise spelling
105 proc find {filename} {
106         if {[catch {ocd_find $filename} t]==0} {
107                 return $t
108         }
109         if {[catch {ocd_find [string map {\ /} $filename} t]==0} {
110                 return $t
111         }
112         if {[catch {ocd_find [string map {/ \\} $filename} t]==0} {
113                 return $t
114         }
115         # make sure error message matches original input string
116         return -code error "Can't find $filename"
117 }
118 add_help_text find "<file> - print full path to file according to OpenOCD search rules"
119
120 # Run script
121 proc script {filename} {
122         source [find $filename]
123 }
124
125 #proc daemon_reset {} {
126 #       puts "Daemon reset is obsolete. Use -c init -c \"reset halt\" at end of openocd command line instead");
127 #}
128
129 add_help_text script "<filename> - filename of OpenOCD script (tcl) to run"
130
131 # Handle GDB 'R' packet. Can be overriden by configuration script,
132 # but it's not something one would expect target scripts to do
133 # normally
134 proc ocd_gdb_restart {target_num} {
135         # Fix!!! we're resetting all targets here! Really we should reset only
136         # one target
137         reset halt
138 }
139
140 # If RCLK is not supported, use fallback_speed_khz
141 proc jtag_rclk {fallback_speed_khz} {
142         if {[catch {jtag_khz 0}]!=0} {
143                 jtag_khz $fallback_speed_khz
144         }
145 }
146
147 add_help_text jtag_rclk "fallback_speed_khz - set JTAG speed to RCLK or use fallback speed"
148
149 proc ocd_process_reset { MODE } {
150
151         # If this target must be halted...
152         set halt -1
153         if { 0 == [string compare $MODE halt] } {
154                 set halt 1
155         }
156         if { 0 == [string compare $MODE init] } {
157                 set halt 1;
158         }
159         if { 0 == [string compare $MODE run ] } {
160                 set halt 0;
161         }
162         if { $halt < 0 } {
163                 return -error "Invalid mode: $MODE, must be one of: halt, init, or run";
164         }
165
166         foreach t [ target names ] {
167                 # New event script.
168                 $t invoke-event reset-start
169         }
170
171         # Init the tap controller.
172         jtag arp_init-reset
173
174         # Examine all targets.
175         foreach t [ target names ] {
176                 $t arp_examine
177         }
178
179         # Let the C code know we are asserting reset.
180         foreach t [ target names ] {
181                 $t invoke-event reset-assert-pre
182                 # C code needs to know if we expect to 'halt'
183                 $t arp_reset assert $halt
184                 $t invoke-event reset-assert-post
185         }
186
187         # Now de-assert reset.
188         foreach t [ target names ] {
189                 $t invoke-event reset-deassert-pre
190                 # Again, de-assert code needs to know..
191                 $t arp_reset deassert $halt
192                 $t invoke-event reset-deassert-post
193         }
194
195         # Pass 1 - Now try to halt.
196         if { $halt } {
197                 foreach t [target names] {
198         
199                         # Wait upto 1 second for target to halt.  Why 1sec? Cause
200                         # the JTAG tap reset signal might be hooked to a slow
201                         # resistor/capacitor circuit - and it might take a while
202                         # to charge
203                         
204                         # Catch, but ignore any errors.
205                         catch { $t arp_waitstate halted 1000 }
206                         
207                         # Did we succeed?
208                         set s [$t curstate]
209                         
210                         if { 0 != [string compare $s "halted" ] } {
211                                 return -error [format "TARGET: %s - Not halted" $t]
212                         }
213                 }
214         }
215
216         #Pass 2 - if needed "init"
217         if { 0 == [string compare init $MODE] } {
218                 foreach t [target names] {
219                         set err [catch "$t arp_waitstate halted 5000"]
220                         # Did it halt?
221                         if { $err == 0 } {
222                                 $t invoke-event reset-init              
223                         }
224                 }
225         }
226
227         foreach t [ target names ] {
228                 $t invoke-event reset-end
229         }
230 }
231
232 # stubs for targets scripts that do not have production procedure
233 proc production_info {} {
234         return "Imagine an explanation here..."
235 }
236 add_help_text production_info "Displays information on production procedure for target script. Implement this procedure in target script."
237
238 proc production {firmwarefile serialnumber} {
239         puts "Imagine production procedure running successfully. Programmed $firmwarefile with serial number $serialnumber"
240 }
241
242 add_help_text production "<serialnumber> - Runs production procedure. Throws exception if procedure failed. Prints progress messages. Implement this procedure in the target script."
243
244 proc production_test {} {
245         puts "Imagine nifty test procedure having run to completion here."
246 }
247 add_help_text production "Runs test procedure. Throws exception if procedure failed. Prints progress messages. Implement in target script."
248
249 add_help_text cpu "<name> - prints out target options and a comment on CPU which matches name"
250
251 # A list of names of CPU and options required
252 set ocd_cpu_list {
253         {
254                 name IXP42x 
255                 options {xscale -variant IXP42x} 
256                 comment {IXP42x cpu}
257         }
258         {
259                 name arm7 
260                 options {arm7tdmi -variant arm7tdmi} 
261                 comment {vanilla ARM7}
262         }
263 }
264
265 # Invoked from Tcl code
266 proc ocd_cpu {args} {
267         set name $args
268         set result ""
269         global ocd_cpu_list
270         foreach a [lsort $ocd_cpu_list] {
271                 if {[string length $args]==0||[string first [string toupper $name] [string toupper "$a(name)$a(options)$a(comment)"]]!=-1} {
272                         lappend result $a 
273                 }
274         }
275         return $result
276 }
277
278 proc cpu {args} {
279     #     0123456789012345678901234567890123456789012345678901234567890123456789
280         puts "CPU                 Options                                 Comment"
281         foreach a [lsort [ocd_cpu $args]] {
282                 puts [format "%-20s%-40s%s" $a(name) $a(options) $a(comment)]
283         }
284 }
285
286 proc power_restore {} {
287         puts "Sensed power restore."
288         reset init
289 }
290
291 add_help_text power_restore "Overridable procedure run when power restore is detected. Runs 'reset init' by default."
292
293 proc power_dropout {} {
294         puts "Sensed power dropout."
295 }
296
297 proc srst_deasserted {} {
298         puts "Sensed nSRST deasserted."
299         reset init
300 }
301 add_help_text srst_deasserted "Overridable procedure run when srst deassert is detected. Runs 'reset init' by default."
302
303 proc srst_asserted {} {
304         puts "Sensed nSRST asserted."
305 }
306
307 # catch any exceptions, capture output and return output
308 proc capture_catch {a} {
309         catch {
310                 capture {uplevel $a}
311         } result
312         return $result 
313 }